2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2004-09-07 17:17:15 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2004-09-07 17:17:15 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2004-09-07 17:17:15 +04:00
|
|
|
|
|
|
|
#include "cmCTestUpdateHandler.h"
|
|
|
|
|
|
|
|
#include "cmCTest.h"
|
|
|
|
#include "cmake.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmLocalGenerator.h"
|
|
|
|
#include "cmGlobalGenerator.h"
|
2004-10-22 23:44:54 +04:00
|
|
|
#include "cmVersion.h"
|
2005-01-27 18:15:01 +03:00
|
|
|
#include "cmGeneratedFileStream.h"
|
2005-02-16 21:28:47 +03:00
|
|
|
#include "cmXMLParser.h"
|
2009-02-06 00:31:37 +03:00
|
|
|
#include "cmXMLSafe.h"
|
2004-09-07 17:17:15 +04:00
|
|
|
|
2009-02-24 18:39:55 +03:00
|
|
|
#include "cmCTestVC.h"
|
|
|
|
#include "cmCTestCVS.h"
|
|
|
|
#include "cmCTestSVN.h"
|
2009-05-15 00:13:52 +04:00
|
|
|
#include "cmCTestBZR.h"
|
2009-04-22 17:19:06 +04:00
|
|
|
#include "cmCTestGIT.h"
|
2009-07-10 19:08:05 +04:00
|
|
|
#include "cmCTestHG.h"
|
2013-10-23 02:11:22 +04:00
|
|
|
#include "cmCTestP4.h"
|
2009-02-24 18:39:55 +03:00
|
|
|
|
|
|
|
#include <cmsys/auto_ptr.hxx>
|
|
|
|
|
2004-09-07 17:17:15 +04:00
|
|
|
//#include <cmsys/RegularExpression.hxx>
|
|
|
|
#include <cmsys/Process.h>
|
|
|
|
|
|
|
|
// used for sleep
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include "windows.h"
|
|
|
|
#endif
|
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
#include <stdlib.h>
|
2004-09-07 17:17:15 +04:00
|
|
|
#include <math.h>
|
|
|
|
#include <float.h>
|
|
|
|
|
2005-06-17 21:04:56 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
static const char* cmCTestUpdateHandlerUpdateStrings[] =
|
|
|
|
{
|
|
|
|
"Unknown",
|
|
|
|
"CVS",
|
2009-04-22 17:19:06 +04:00
|
|
|
"SVN",
|
2009-05-15 00:13:52 +04:00
|
|
|
"BZR",
|
2009-07-10 19:08:05 +04:00
|
|
|
"GIT",
|
2013-10-23 02:11:22 +04:00
|
|
|
"HG",
|
|
|
|
"P4"
|
2005-06-17 21:04:56 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static const char* cmCTestUpdateHandlerUpdateToString(int type)
|
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
if ( type < cmCTestUpdateHandler::e_UNKNOWN ||
|
|
|
|
type >= cmCTestUpdateHandler::e_LAST )
|
2005-06-17 21:04:56 +04:00
|
|
|
{
|
|
|
|
return cmCTestUpdateHandlerUpdateStrings[cmCTestUpdateHandler::e_UNKNOWN];
|
|
|
|
}
|
|
|
|
return cmCTestUpdateHandlerUpdateStrings[type];
|
|
|
|
}
|
|
|
|
|
2009-01-06 22:58:30 +03:00
|
|
|
class cmCTestUpdateHandlerLocale
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmCTestUpdateHandlerLocale();
|
|
|
|
~cmCTestUpdateHandlerLocale();
|
|
|
|
private:
|
|
|
|
std::string saveLCMessages;
|
|
|
|
};
|
|
|
|
|
|
|
|
cmCTestUpdateHandlerLocale::cmCTestUpdateHandlerLocale()
|
|
|
|
{
|
|
|
|
const char* lcmess = cmSystemTools::GetEnv("LC_MESSAGES");
|
|
|
|
if(lcmess)
|
|
|
|
{
|
|
|
|
saveLCMessages = lcmess;
|
|
|
|
}
|
|
|
|
// if LC_MESSAGES is not set to C, then
|
|
|
|
// set it, so that svn/cvs info will be in english ascii
|
|
|
|
if(! (lcmess && strcmp(lcmess, "C") == 0))
|
|
|
|
{
|
|
|
|
cmSystemTools::PutEnv("LC_MESSAGES=C");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cmCTestUpdateHandlerLocale::~cmCTestUpdateHandlerLocale()
|
|
|
|
{
|
|
|
|
// restore the value of LC_MESSAGES after running the version control
|
|
|
|
// commands
|
|
|
|
if(saveLCMessages.size())
|
|
|
|
{
|
|
|
|
std::string put = "LC_MESSAGES=";
|
|
|
|
put += saveLCMessages;
|
|
|
|
cmSystemTools::PutEnv(put.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmSystemTools::UnsetEnv("LC_MESSAGES");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-09-07 17:17:15 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
cmCTestUpdateHandler::cmCTestUpdateHandler()
|
|
|
|
{
|
2005-06-17 21:04:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void cmCTestUpdateHandler::Initialize()
|
|
|
|
{
|
2005-06-23 21:04:18 +04:00
|
|
|
this->Superclass::Initialize();
|
2009-02-24 17:09:43 +03:00
|
|
|
this->UpdateCommand = "";
|
|
|
|
this->UpdateType = e_CVS;
|
2004-09-07 17:17:15 +04:00
|
|
|
}
|
|
|
|
|
2005-02-16 21:28:47 +03:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int cmCTestUpdateHandler::DetermineType(const char* cmd, const char* type)
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, DEBUG, "Determine update type from command: " << cmd
|
2006-03-09 19:17:10 +03:00
|
|
|
<< " and type: " << type << std::endl);
|
2005-02-16 21:28:47 +03:00
|
|
|
if ( type && *type )
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, DEBUG, "Type specified: " << type << std::endl);
|
2005-02-16 21:28:47 +03:00
|
|
|
std::string stype = cmSystemTools::LowerCase(type);
|
|
|
|
if ( stype.find("cvs") != std::string::npos )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_CVS;
|
|
|
|
}
|
|
|
|
if ( stype.find("svn") != std::string::npos )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_SVN;
|
|
|
|
}
|
2009-05-15 00:13:52 +04:00
|
|
|
if ( stype.find("bzr") != std::string::npos )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_BZR;
|
|
|
|
}
|
2009-04-22 17:19:06 +04:00
|
|
|
if ( stype.find("git") != std::string::npos )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_GIT;
|
|
|
|
}
|
2009-07-10 19:08:05 +04:00
|
|
|
if ( stype.find("hg") != std::string::npos )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_HG;
|
|
|
|
}
|
2013-10-23 02:11:22 +04:00
|
|
|
if ( stype.find("p4") != std::string::npos )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_P4;
|
|
|
|
}
|
2005-02-16 21:28:47 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, DEBUG, "Type not specified, check command: "
|
|
|
|
<< cmd << std::endl);
|
2005-02-16 21:28:47 +03:00
|
|
|
std::string stype = cmSystemTools::LowerCase(cmd);
|
|
|
|
if ( stype.find("cvs") != std::string::npos )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_CVS;
|
|
|
|
}
|
|
|
|
if ( stype.find("svn") != std::string::npos )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_SVN;
|
|
|
|
}
|
2009-05-15 00:13:52 +04:00
|
|
|
if ( stype.find("bzr") != std::string::npos )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_BZR;
|
|
|
|
}
|
2009-04-22 17:19:06 +04:00
|
|
|
if ( stype.find("git") != std::string::npos )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_GIT;
|
|
|
|
}
|
2009-07-10 19:08:05 +04:00
|
|
|
if ( stype.find("hg") != std::string::npos )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_HG;
|
|
|
|
}
|
2013-10-23 02:11:22 +04:00
|
|
|
if ( stype.find("p4") != std::string::npos )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_P4;
|
|
|
|
}
|
2005-02-16 21:28:47 +03:00
|
|
|
}
|
2005-06-17 21:04:56 +04:00
|
|
|
return cmCTestUpdateHandler::e_UNKNOWN;
|
2005-02-16 21:28:47 +03:00
|
|
|
}
|
2004-09-07 17:17:15 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
//clearly it would be nice if this were broken up into a few smaller
|
|
|
|
//functions and commented...
|
2005-01-27 23:54:47 +03:00
|
|
|
int cmCTestUpdateHandler::ProcessHandler()
|
2004-09-07 17:17:15 +04:00
|
|
|
{
|
2009-01-06 22:58:30 +03:00
|
|
|
// Make sure VCS tool messages are in English so we can parse them.
|
|
|
|
cmCTestUpdateHandlerLocale fixLocale;
|
|
|
|
static_cast<void>(fixLocale);
|
|
|
|
|
2005-02-16 21:28:47 +03:00
|
|
|
// Get source dir
|
2005-02-17 23:23:00 +03:00
|
|
|
const char* sourceDirectory = this->GetOption("SourceDirectory");
|
|
|
|
if ( !sourceDirectory )
|
2004-09-07 17:17:15 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
2006-03-09 19:17:10 +03:00
|
|
|
"Cannot find SourceDirectory key in the DartConfiguration.tcl"
|
|
|
|
<< std::endl);
|
2004-09-07 17:17:15 +04:00
|
|
|
return -1;
|
|
|
|
}
|
2005-02-16 21:28:47 +03:00
|
|
|
|
2005-06-16 21:18:21 +04:00
|
|
|
cmGeneratedFileStream ofs;
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( !this->CTest->GetShowOnly() )
|
2005-06-16 21:18:21 +04:00
|
|
|
{
|
2005-06-23 21:04:18 +04:00
|
|
|
this->StartLogFile("Update", ofs);
|
2005-06-16 21:18:21 +04:00
|
|
|
}
|
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT, " Updating the repository: "
|
2006-03-09 19:17:10 +03:00
|
|
|
<< sourceDirectory << std::endl);
|
2005-02-16 21:28:47 +03:00
|
|
|
|
2009-02-24 17:09:43 +03:00
|
|
|
if(!this->SelectVCS())
|
2005-02-16 21:28:47 +03:00
|
|
|
{
|
2009-02-24 17:09:43 +03:00
|
|
|
return -1;
|
2004-09-07 17:17:15 +04:00
|
|
|
}
|
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT, " Use "
|
2009-02-24 17:09:43 +03:00
|
|
|
<< cmCTestUpdateHandlerUpdateToString(this->UpdateType)
|
|
|
|
<< " repository type"
|
2006-03-09 19:17:10 +03:00
|
|
|
<< std::endl;);
|
2005-06-17 21:04:56 +04:00
|
|
|
|
2009-02-24 18:39:55 +03:00
|
|
|
// Create an object to interact with the VCS tool.
|
|
|
|
cmsys::auto_ptr<cmCTestVC> vc;
|
|
|
|
switch (this->UpdateType)
|
|
|
|
{
|
|
|
|
case e_CVS: vc.reset(new cmCTestCVS(this->CTest, ofs)); break;
|
|
|
|
case e_SVN: vc.reset(new cmCTestSVN(this->CTest, ofs)); break;
|
2009-05-15 00:13:52 +04:00
|
|
|
case e_BZR: vc.reset(new cmCTestBZR(this->CTest, ofs)); break;
|
2009-04-22 17:19:06 +04:00
|
|
|
case e_GIT: vc.reset(new cmCTestGIT(this->CTest, ofs)); break;
|
2009-07-10 19:08:05 +04:00
|
|
|
case e_HG: vc.reset(new cmCTestHG(this->CTest, ofs)); break;
|
2013-10-23 02:11:22 +04:00
|
|
|
case e_P4: vc.reset(new cmCTestP4(this->CTest, ofs)); break;
|
2009-02-24 18:39:55 +03:00
|
|
|
default: vc.reset(new cmCTestVC(this->CTest, ofs)); break;
|
|
|
|
}
|
|
|
|
vc->SetCommandLineTool(this->UpdateCommand);
|
|
|
|
vc->SetSourceDirectory(sourceDirectory);
|
|
|
|
|
2009-02-24 20:50:15 +03:00
|
|
|
// Cleanup the working tree.
|
|
|
|
vc->Cleanup();
|
|
|
|
|
2005-04-24 21:57:11 +04:00
|
|
|
//
|
|
|
|
// Now update repository and remember what files were updated
|
2006-03-10 23:03:09 +03:00
|
|
|
//
|
|
|
|
cmGeneratedFileStream os;
|
2009-01-12 18:37:55 +03:00
|
|
|
if(!this->StartResultingXML(cmCTest::PartUpdate, "Update", os))
|
2004-09-07 17:17:15 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE, "Cannot open log file"
|
|
|
|
<< std::endl);
|
2007-08-04 00:42:47 +04:00
|
|
|
return -1;
|
2004-09-07 17:17:15 +04:00
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
std::string start_time = this->CTest->CurrentTime();
|
2008-02-01 00:38:45 +03:00
|
|
|
unsigned int start_time_time =
|
|
|
|
static_cast<unsigned int>(cmSystemTools::GetTime());
|
2004-09-07 17:17:15 +04:00
|
|
|
double elapsed_time_start = cmSystemTools::GetTime();
|
|
|
|
|
2009-02-25 22:42:45 +03:00
|
|
|
bool updated = vc->Update();
|
2004-09-07 17:17:15 +04:00
|
|
|
|
|
|
|
os << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
|
2005-02-16 21:28:47 +03:00
|
|
|
<< "<Update mode=\"Client\" Generator=\"ctest-"
|
|
|
|
<< cmVersion::GetCMakeVersion() << "\">\n"
|
2006-03-10 23:03:09 +03:00
|
|
|
<< "\t<Site>" << this->CTest->GetCTestConfiguration("Site") << "</Site>\n"
|
|
|
|
<< "\t<BuildName>" << this->CTest->GetCTestConfiguration("BuildName")
|
2005-02-16 21:28:47 +03:00
|
|
|
<< "</BuildName>\n"
|
2006-03-10 23:03:09 +03:00
|
|
|
<< "\t<BuildStamp>" << this->CTest->GetCurrentTag() << "-"
|
|
|
|
<< this->CTest->GetTestModelString() << "</BuildStamp>" << std::endl;
|
2004-09-07 17:17:15 +04:00
|
|
|
os << "\t<StartDateTime>" << start_time << "</StartDateTime>\n"
|
2008-01-30 19:17:36 +03:00
|
|
|
<< "\t<StartTime>" << start_time_time << "</StartTime>\n"
|
2009-12-18 18:54:24 +03:00
|
|
|
<< "\t<UpdateCommand>"
|
|
|
|
<< cmXMLSafe(vc->GetUpdateCommandLine()).Quotes(false)
|
2005-06-17 21:04:56 +04:00
|
|
|
<< "</UpdateCommand>\n"
|
2009-02-06 00:31:37 +03:00
|
|
|
<< "\t<UpdateType>" << cmXMLSafe(
|
2009-02-24 17:09:43 +03:00
|
|
|
cmCTestUpdateHandlerUpdateToString(this->UpdateType))
|
2005-06-17 21:04:56 +04:00
|
|
|
<< "</UpdateType>\n";
|
2005-02-16 21:28:47 +03:00
|
|
|
|
2009-02-25 22:42:45 +03:00
|
|
|
vc->WriteXML(os);
|
2005-02-16 21:28:47 +03:00
|
|
|
|
2009-02-25 22:42:45 +03:00
|
|
|
int localModifications = 0;
|
2009-03-20 21:19:56 +03:00
|
|
|
int numUpdated = vc->GetPathCount(cmCTestVC::PathUpdated);
|
|
|
|
if(numUpdated)
|
2005-02-16 21:28:47 +03:00
|
|
|
{
|
2009-02-25 22:42:45 +03:00
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT,
|
|
|
|
" Found " << numUpdated << " updated files\n");
|
2005-02-16 21:28:47 +03:00
|
|
|
}
|
2009-02-25 22:42:45 +03:00
|
|
|
if(int numModified = vc->GetPathCount(cmCTestVC::PathModified))
|
2005-02-16 21:28:47 +03:00
|
|
|
{
|
2009-02-25 22:42:45 +03:00
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT,
|
|
|
|
" Found " << numModified << " locally modified files\n");
|
|
|
|
localModifications += numModified;
|
2005-02-16 21:28:47 +03:00
|
|
|
}
|
2009-02-25 22:42:45 +03:00
|
|
|
if(int numConflicting = vc->GetPathCount(cmCTestVC::PathConflicting))
|
2005-02-16 21:28:47 +03:00
|
|
|
{
|
2009-02-25 22:42:45 +03:00
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT,
|
|
|
|
" Found " << numConflicting << " conflicting files\n");
|
|
|
|
localModifications += numConflicting;
|
2004-09-07 17:17:15 +04:00
|
|
|
}
|
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, DEBUG, "End" << std::endl);
|
|
|
|
std::string end_time = this->CTest->CurrentTime();
|
2004-09-07 17:17:15 +04:00
|
|
|
os << "\t<EndDateTime>" << end_time << "</EndDateTime>\n"
|
2008-01-30 19:17:36 +03:00
|
|
|
<< "\t<EndTime>" << static_cast<unsigned int>(cmSystemTools::GetTime())
|
|
|
|
<< "</EndTime>\n"
|
2006-03-10 23:03:09 +03:00
|
|
|
<< "<ElapsedMinutes>" <<
|
|
|
|
static_cast<int>((cmSystemTools::GetTime() - elapsed_time_start)/6)/10.0
|
2005-04-22 02:23:28 +04:00
|
|
|
<< "</ElapsedMinutes>\n"
|
|
|
|
<< "\t<UpdateReturnStatus>";
|
2009-02-25 22:42:45 +03:00
|
|
|
if(localModifications)
|
2005-04-22 02:23:28 +04:00
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
os << "Update error: There are modified or conflicting files in the "
|
|
|
|
"repository";
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
2006-03-09 19:17:10 +03:00
|
|
|
" There are modified or conflicting files in the repository"
|
|
|
|
<< std::endl);
|
2005-04-22 02:23:28 +04:00
|
|
|
}
|
2009-02-25 22:42:45 +03:00
|
|
|
if(!updated)
|
2005-04-22 02:23:28 +04:00
|
|
|
{
|
2010-04-27 22:10:06 +04:00
|
|
|
os << "Update command failed:\n" << vc->GetUpdateCommandLine();
|
2009-02-25 22:42:45 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE, " Update command failed: "
|
|
|
|
<< vc->GetUpdateCommandLine() << "\n");
|
2005-04-22 02:23:28 +04:00
|
|
|
}
|
|
|
|
os << "</UpdateReturnStatus>" << std::endl;
|
|
|
|
os << "</Update>" << std::endl;
|
2009-03-20 21:19:56 +03:00
|
|
|
return numUpdated;
|
2004-09-07 17:17:15 +04:00
|
|
|
}
|
2009-02-24 17:09:14 +03:00
|
|
|
|
2009-02-24 17:09:43 +03:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int cmCTestUpdateHandler::DetectVCS(const char* dir)
|
|
|
|
{
|
|
|
|
std::string sourceDirectory = dir;
|
|
|
|
cmCTestLog(this->CTest, DEBUG, "Check directory: "
|
|
|
|
<< sourceDirectory.c_str() << std::endl);
|
|
|
|
sourceDirectory += "/.svn";
|
|
|
|
if ( cmSystemTools::FileExists(sourceDirectory.c_str()) )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_SVN;
|
|
|
|
}
|
|
|
|
sourceDirectory = dir;
|
|
|
|
sourceDirectory += "/CVS";
|
|
|
|
if ( cmSystemTools::FileExists(sourceDirectory.c_str()) )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_CVS;
|
|
|
|
}
|
2009-04-22 17:19:06 +04:00
|
|
|
sourceDirectory = dir;
|
2009-05-15 00:13:52 +04:00
|
|
|
sourceDirectory += "/.bzr";
|
|
|
|
if ( cmSystemTools::FileExists(sourceDirectory.c_str()) )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_BZR;
|
|
|
|
}
|
|
|
|
sourceDirectory = dir;
|
2009-04-22 17:19:06 +04:00
|
|
|
sourceDirectory += "/.git";
|
|
|
|
if ( cmSystemTools::FileExists(sourceDirectory.c_str()) )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_GIT;
|
|
|
|
}
|
2009-07-10 19:08:05 +04:00
|
|
|
sourceDirectory = dir;
|
|
|
|
sourceDirectory += "/.hg";
|
|
|
|
if ( cmSystemTools::FileExists(sourceDirectory.c_str()) )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_HG;
|
|
|
|
}
|
2013-10-23 02:11:22 +04:00
|
|
|
sourceDirectory = dir;
|
|
|
|
sourceDirectory += "/.p4";
|
|
|
|
if ( cmSystemTools::FileExists(sourceDirectory.c_str()) )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_P4;
|
|
|
|
}
|
|
|
|
sourceDirectory = dir;
|
|
|
|
sourceDirectory += "/.p4config";
|
|
|
|
if ( cmSystemTools::FileExists(sourceDirectory.c_str()) )
|
|
|
|
{
|
|
|
|
return cmCTestUpdateHandler::e_P4;
|
|
|
|
}
|
2009-02-24 17:09:43 +03:00
|
|
|
return cmCTestUpdateHandler::e_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
bool cmCTestUpdateHandler::SelectVCS()
|
|
|
|
{
|
|
|
|
// Get update command
|
|
|
|
this->UpdateCommand = this->CTest->GetCTestConfiguration("UpdateCommand");
|
|
|
|
|
|
|
|
// Detect the VCS managing the source tree.
|
|
|
|
this->UpdateType = this->DetectVCS(this->GetOption("SourceDirectory"));
|
|
|
|
if (this->UpdateType == e_UNKNOWN)
|
|
|
|
{
|
|
|
|
// The source tree does not have a recognized VCS. Check the
|
|
|
|
// configuration value or command name.
|
|
|
|
this->UpdateType = this->DetermineType(this->UpdateCommand.c_str(),
|
|
|
|
this->CTest->GetCTestConfiguration("UpdateType").c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
// If no update command was specified, lookup one for this VCS tool.
|
|
|
|
if (this->UpdateCommand.empty())
|
|
|
|
{
|
|
|
|
const char* key = 0;
|
|
|
|
switch (this->UpdateType)
|
|
|
|
{
|
|
|
|
case e_CVS: key = "CVSCommand"; break;
|
|
|
|
case e_SVN: key = "SVNCommand"; break;
|
2009-05-15 00:13:52 +04:00
|
|
|
case e_BZR: key = "BZRCommand"; break;
|
2009-04-22 17:19:06 +04:00
|
|
|
case e_GIT: key = "GITCommand"; break;
|
2009-07-10 19:08:05 +04:00
|
|
|
case e_HG: key = "HGCommand"; break;
|
2013-10-23 02:11:22 +04:00
|
|
|
case e_P4: key = "P4Command"; break;
|
2009-02-24 17:09:43 +03:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
if (key)
|
|
|
|
{
|
|
|
|
this->UpdateCommand = this->CTest->GetCTestConfiguration(key);
|
|
|
|
}
|
|
|
|
if (this->UpdateCommand.empty())
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "Cannot find UpdateCommand ";
|
|
|
|
if (key)
|
|
|
|
{
|
|
|
|
e << "or " << key;
|
|
|
|
}
|
|
|
|
e << " configuration key.";
|
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE, e.str() << std::endl);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|