2005-05-03 16:17:39 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
|
2006-03-09 19:17:10 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
2005-05-03 16:17:39 +04:00
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmCTestSubmitCommand.h"
|
|
|
|
|
|
|
|
#include "cmCTest.h"
|
|
|
|
#include "cmCTestGenericHandler.h"
|
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
cmCTestGenericHandler* cmCTestSubmitCommand::InitializeHandler()
|
2005-05-03 16:17:39 +04:00
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
const char* ctestDropMethod
|
2006-03-15 19:02:08 +03:00
|
|
|
= this->Makefile->GetDefinition("CTEST_DROP_METHOD");
|
2006-03-09 19:17:10 +03:00
|
|
|
const char* ctestDropSite
|
2006-03-15 19:02:08 +03:00
|
|
|
= this->Makefile->GetDefinition("CTEST_DROP_SITE");
|
2006-03-09 19:17:10 +03:00
|
|
|
const char* ctestDropLocation
|
2006-03-15 19:02:08 +03:00
|
|
|
= this->Makefile->GetDefinition("CTEST_DROP_LOCATION");
|
2006-03-09 19:17:10 +03:00
|
|
|
const char* ctestTriggerSite
|
2006-03-15 19:02:08 +03:00
|
|
|
= this->Makefile->GetDefinition("CTEST_TRIGGER_SITE");
|
2005-05-05 18:18:41 +04:00
|
|
|
|
|
|
|
if ( !ctestDropMethod )
|
|
|
|
{
|
|
|
|
ctestDropMethod = "http";
|
|
|
|
}
|
|
|
|
if ( !ctestDropSite )
|
|
|
|
{
|
|
|
|
ctestDropSite = "public.kitware.com";
|
|
|
|
}
|
|
|
|
if ( !ctestDropLocation )
|
|
|
|
{
|
|
|
|
ctestDropLocation = "/cgi-bin/HTTPUploadDartFile.cgi";
|
|
|
|
}
|
|
|
|
if ( !ctestTriggerSite )
|
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
ctestTriggerSite
|
|
|
|
= "http://public.kitware.com/cgi-bin/Submit-Random-TestingResults.cgi";
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT, "* Use default trigger site: "
|
2006-03-09 19:17:10 +03:00
|
|
|
<< ctestTriggerSite << std::endl;);
|
2005-05-05 18:18:41 +04:00
|
|
|
}
|
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CTest->SetCTestConfiguration("DropMethod", ctestDropMethod);
|
|
|
|
this->CTest->SetCTestConfiguration("DropSite", ctestDropSite);
|
|
|
|
this->CTest->SetCTestConfiguration("DropLocation", ctestDropLocation);
|
|
|
|
this->CTest->SetCTestConfiguration("TriggerSite", ctestTriggerSite);
|
2005-05-05 18:18:41 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2006-03-09 19:17:10 +03:00
|
|
|
"DropSiteUser", "CTEST_DROP_SITE_USER");
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2006-03-09 19:17:10 +03:00
|
|
|
"DropSitePassword", "CTEST_DROP_SITE_PASSWORD");
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2006-03-09 19:17:10 +03:00
|
|
|
"ScpCommand", "CTEST_SCP_COMMAND");
|
2005-05-03 16:17:39 +04:00
|
|
|
|
2006-03-09 19:17:10 +03:00
|
|
|
const char* notesFilesVariable
|
2006-03-15 19:02:08 +03:00
|
|
|
= this->Makefile->GetDefinition("CTEST_NOTES_FILES");
|
2005-05-08 21:49:06 +04:00
|
|
|
if (notesFilesVariable)
|
|
|
|
{
|
|
|
|
std::vector<std::string> notesFiles;
|
|
|
|
std::vector<cmStdString> newNotesFiles;
|
|
|
|
cmSystemTools::ExpandListArgument(notesFilesVariable,notesFiles);
|
|
|
|
std::vector<std::string>::iterator it;
|
2006-03-09 19:17:10 +03:00
|
|
|
for ( it = notesFiles.begin();
|
2005-05-08 21:49:06 +04:00
|
|
|
it != notesFiles.end();
|
|
|
|
++ it )
|
|
|
|
{
|
|
|
|
newNotesFiles.push_back(*it);
|
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CTest->GenerateNotesFile(newNotesFiles);
|
2005-05-08 21:49:06 +04:00
|
|
|
}
|
2006-03-09 19:17:10 +03:00
|
|
|
const char* extraFilesVariable
|
2006-03-15 19:02:08 +03:00
|
|
|
= this->Makefile->GetDefinition("CTEST_EXTRA_SUBMIT_FILES");
|
2005-07-18 20:53:48 +04:00
|
|
|
if (extraFilesVariable)
|
|
|
|
{
|
|
|
|
std::vector<std::string> extraFiles;
|
|
|
|
std::vector<cmStdString> newExtraFiles;
|
|
|
|
cmSystemTools::ExpandListArgument(extraFilesVariable,extraFiles);
|
|
|
|
std::vector<std::string>::iterator it;
|
2006-03-09 19:17:10 +03:00
|
|
|
for ( it = extraFiles.begin();
|
2005-07-18 20:53:48 +04:00
|
|
|
it != extraFiles.end();
|
|
|
|
++ it )
|
|
|
|
{
|
|
|
|
newExtraFiles.push_back(*it);
|
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( !this->CTest->SubmitExtraFiles(newExtraFiles))
|
2005-07-18 20:53:48 +04:00
|
|
|
{
|
|
|
|
this->SetError("problem submitting extra files.");
|
2006-03-29 21:33:41 +04:00
|
|
|
return 0;
|
2005-07-18 20:53:48 +04:00
|
|
|
}
|
|
|
|
}
|
2005-05-08 21:49:06 +04:00
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestGenericHandler* handler
|
|
|
|
= this->CTest->GetInitializedHandler("submit");
|
2005-05-03 16:17:39 +04:00
|
|
|
if ( !handler )
|
|
|
|
{
|
|
|
|
this->SetError("internal CTest error. Cannot instantiate submit handler");
|
2006-03-29 21:33:41 +04:00
|
|
|
return 0;
|
2005-05-03 16:17:39 +04:00
|
|
|
}
|
2006-03-29 21:01:24 +04:00
|
|
|
return handler;
|
2005-05-03 16:17:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|