| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 | 
							- /*============================================================================
 
-   CMake - Cross Platform Makefile Generator
 
-   Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
 
-   Distributed under the OSI-approved BSD License (the "License");
 
-   see accompanying file Copyright.txt for details.
 
-   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.
 
- ============================================================================*/
 
- #include "cmCTestSubmitCommand.h"
 
- #include "cmCTest.h"
 
- #include "cmCTestGenericHandler.h"
 
- #include "cmCTestSubmitHandler.h"
 
- cmCTestGenericHandler* cmCTestSubmitCommand::InitializeHandler()
 
- {
 
-   const char* ctestDropMethod
 
-     = this->Makefile->GetDefinition("CTEST_DROP_METHOD");
 
-   const char* ctestDropSite
 
-     = this->Makefile->GetDefinition("CTEST_DROP_SITE");
 
-   const char* ctestDropLocation
 
-     = this->Makefile->GetDefinition("CTEST_DROP_LOCATION");
 
-   const char* ctestTriggerSite
 
-     = this->Makefile->GetDefinition("CTEST_TRIGGER_SITE");
 
-   bool ctestDropSiteCDash
 
-     = this->Makefile->IsOn("CTEST_DROP_SITE_CDASH");
 
-   if ( !ctestDropMethod )
 
-     {
 
-     ctestDropMethod = "http";
 
-     }
 
-   if ( !ctestDropSite )
 
-     {
 
-     // error: CDash requires CTEST_DROP_SITE definition
 
-     // in CTestConfig.cmake
 
-     }
 
-   if ( !ctestDropLocation )
 
-     {
 
-     // error: CDash requires CTEST_DROP_LOCATION definition
 
-     // in CTestConfig.cmake
 
-     }
 
-   this->CTest->SetCTestConfiguration("DropMethod", ctestDropMethod);
 
-   this->CTest->SetCTestConfiguration("DropSite", ctestDropSite);
 
-   this->CTest->SetCTestConfiguration("DropLocation", ctestDropLocation);
 
-   this->CTest->SetCTestConfiguration("IsCDash",
 
-     ctestDropSiteCDash ? "TRUE" : "FALSE");
 
-   // Only propagate TriggerSite for non-CDash projects:
 
-   //
 
-   if ( !ctestDropSiteCDash )
 
-     {
 
-     this->CTest->SetCTestConfiguration("TriggerSite",  ctestTriggerSite);
 
-     }
 
-   this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
 
-     "CurlOptions", "CTEST_CURL_OPTIONS");
 
-   this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
 
-     "DropSiteUser", "CTEST_DROP_SITE_USER");
 
-   this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
 
-     "DropSitePassword", "CTEST_DROP_SITE_PASSWORD");
 
-   this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
 
-     "ScpCommand", "CTEST_SCP_COMMAND");
 
-   const char* notesFilesVariable
 
-     = this->Makefile->GetDefinition("CTEST_NOTES_FILES");
 
-   if (notesFilesVariable)
 
-     {
 
-     std::vector<std::string> notesFiles;
 
-     cmCTest::VectorOfStrings newNotesFiles;
 
-     cmSystemTools::ExpandListArgument(notesFilesVariable,notesFiles);
 
-     newNotesFiles.insert(newNotesFiles.end(),
 
-                          notesFiles.begin(), notesFiles.end());
 
-     this->CTest->GenerateNotesFile(newNotesFiles);
 
-     }
 
-   const char* extraFilesVariable
 
-     = this->Makefile->GetDefinition("CTEST_EXTRA_SUBMIT_FILES");
 
-   if (extraFilesVariable)
 
-     {
 
-     std::vector<std::string> extraFiles;
 
-     cmCTest::VectorOfStrings newExtraFiles;
 
-     cmSystemTools::ExpandListArgument(extraFilesVariable,extraFiles);
 
-     newExtraFiles.insert(newExtraFiles.end(),
 
-                          extraFiles.begin(), extraFiles.end());
 
-     if ( !this->CTest->SubmitExtraFiles(newExtraFiles))
 
-       {
 
-       this->SetError("problem submitting extra files.");
 
-       return 0;
 
-       }
 
-     }
 
-   cmCTestGenericHandler* handler
 
-     = this->CTest->GetInitializedHandler("submit");
 
-   if ( !handler )
 
-     {
 
-     this->SetError("internal CTest error. Cannot instantiate submit handler");
 
-     return 0;
 
-     }
 
-   // If no FILES or PARTS given, *all* PARTS are submitted by default.
 
-   //
 
-   // If FILES are given, but not PARTS, only the FILES are submitted
 
-   // and *no* PARTS are submitted.
 
-   //  (This is why we select the empty "noParts" set in the
 
-   //   FilesMentioned block below...)
 
-   //
 
-   // If PARTS are given, only the selected PARTS are submitted.
 
-   //
 
-   // If both PARTS and FILES are given, only the selected PARTS *and*
 
-   // all the given FILES are submitted.
 
-   // If given explicit FILES to submit, pass them to the handler.
 
-   //
 
-   if(this->FilesMentioned)
 
-     {
 
-     // Intentionally select *no* PARTS. (Pass an empty set.) If PARTS
 
-     // were also explicitly mentioned, they will be selected below...
 
-     // But FILES with no PARTS mentioned should just submit the FILES
 
-     // without any of the default parts.
 
-     //
 
-     std::set<cmCTest::Part> noParts;
 
-     static_cast<cmCTestSubmitHandler*>(handler)->SelectParts(noParts);
 
-     static_cast<cmCTestSubmitHandler*>(handler)->SelectFiles(this->Files);
 
-     }
 
-   // If a PARTS option was given, select only the named parts for submission.
 
-   //
 
-   if(this->PartsMentioned)
 
-     {
 
-     static_cast<cmCTestSubmitHandler*>(handler)->SelectParts(this->Parts);
 
-     }
 
-   static_cast<cmCTestSubmitHandler*>(handler)->SetOption("RetryDelay",
 
-     this->RetryDelay.c_str());
 
-   static_cast<cmCTestSubmitHandler*>(handler)->SetOption("RetryCount",
 
-     this->RetryCount.c_str());
 
-   static_cast<cmCTestSubmitHandler*>(handler)->SetOption("InternalTest",
 
-     this->InternalTest ? "ON" : "OFF");
 
-   return handler;
 
- }
 
- //----------------------------------------------------------------------------
 
- bool cmCTestSubmitCommand::CheckArgumentKeyword(std::string const& arg)
 
- {
 
-   // Look for arguments specific to this command.
 
-   if(arg == "PARTS")
 
-     {
 
-     this->ArgumentDoing = ArgumentDoingParts;
 
-     this->PartsMentioned = true;
 
-     return true;
 
-     }
 
-   if(arg == "FILES")
 
-     {
 
-     this->ArgumentDoing = ArgumentDoingFiles;
 
-     this->FilesMentioned = true;
 
-     return true;
 
-     }
 
-   if(arg == "RETRY_COUNT")
 
-     {
 
-     this->ArgumentDoing = ArgumentDoingRetryCount;
 
-     return true;
 
-     }
 
-   if(arg == "RETRY_DELAY")
 
-     {
 
-     this->ArgumentDoing = ArgumentDoingRetryDelay;
 
-     return true;
 
-     }
 
-   if(arg == "INTERNAL_TEST_CHECKSUM")
 
-     {
 
-     this->InternalTest = true;
 
-     return true;
 
-     }
 
-   // Look for other arguments.
 
-   return this->Superclass::CheckArgumentKeyword(arg);
 
- }
 
- //----------------------------------------------------------------------------
 
- bool cmCTestSubmitCommand::CheckArgumentValue(std::string const& arg)
 
- {
 
-   // Handle states specific to this command.
 
-   if(this->ArgumentDoing == ArgumentDoingParts)
 
-     {
 
-     cmCTest::Part p = this->CTest->GetPartFromName(arg.c_str());
 
-     if(p != cmCTest::PartCount)
 
-       {
 
-       this->Parts.insert(p);
 
-       }
 
-     else
 
-       {
 
-       cmOStringStream e;
 
-       e << "Part name \"" << arg << "\" is invalid.";
 
-       this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
 
-       this->ArgumentDoing = ArgumentDoingError;
 
-       }
 
-     return true;
 
-     }
 
-   if(this->ArgumentDoing == ArgumentDoingFiles)
 
-     {
 
-     std::string filename(arg);
 
-     if(cmSystemTools::FileExists(filename.c_str()))
 
-       {
 
-       this->Files.insert(filename);
 
-       }
 
-     else
 
-       {
 
-       cmOStringStream e;
 
-       e << "File \"" << filename << "\" does not exist. Cannot submit "
 
-           << "a non-existent file.";
 
-       this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
 
-       this->ArgumentDoing = ArgumentDoingError;
 
-       }
 
-     return true;
 
-     }
 
-   if(this->ArgumentDoing == ArgumentDoingRetryCount)
 
-     {
 
-     this->RetryCount = arg;
 
-     return true;
 
-     }
 
-   if(this->ArgumentDoing == ArgumentDoingRetryDelay)
 
-     {
 
-     this->RetryDelay = arg;
 
-     return true;
 
-     }
 
-   // Look for other arguments.
 
-   return this->Superclass::CheckArgumentValue(arg);
 
- }
 
 
  |