| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- /*=========================================================================
- 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.
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE. See the above copyright notices for more information.
- =========================================================================*/
- #include "cmCTestHandlerCommand.h"
- #include "cmCTest.h"
- #include "cmCTestGenericHandler.h"
- cmCTestHandlerCommand::cmCTestHandlerCommand()
- {
- const size_t INIT_SIZE = 100;
- size_t cc;
- this->Arguments.reserve(INIT_SIZE);
- for ( cc = 0; cc < INIT_SIZE; ++ cc )
- {
- this->Arguments.push_back(0);
- }
- this->Arguments[ct_RETURN_VALUE] = "RETURN_VALUE";
- this->Arguments[ct_SOURCE] = "SOURCE";
- this->Arguments[ct_BUILD] = "BUILD";
- this->Arguments[ct_SUBMIT_INDEX] = "SUBMIT_INDEX";
- this->Last = ct_LAST;
- }
- bool cmCTestHandlerCommand::InitialPass(
- std::vector<std::string> const& args)
- {
- if ( !this->ProcessArguments(args, this->Last, &*this->Arguments.begin(),
- this->Values) )
- {
- return false;
- }
- cmCTestGenericHandler* handler = this->InitializeHandler();
- if ( !handler )
- {
- this->SetError("internal CTest error. Cannot instantiate test handler");
- return false;
- }
- if ( this->Values[ct_BUILD] )
- {
- this->CTest->SetCTestConfiguration("BuildDirectory",
- this->Values[ct_BUILD]);
- }
- if ( this->Values[ct_SUBMIT_INDEX] )
- {
- if ( this->CTest->GetDartVersion() <= 1 )
- {
- cmCTestLog(this->CTest, ERROR_MESSAGE,
- "Dart before version 2.0 does not support collecting submissions."
- << std::endl
- << "Please upgrade the server to Dart 2 or higher, or do not use "
- "SUBMIT_INDEX." << std::endl);
- }
- else
- {
- handler->SetSubmitIndex(atoi(this->Values[ct_SUBMIT_INDEX]));
- }
- }
- std::string current_dir = cmSystemTools::GetCurrentWorkingDirectory();
- cmSystemTools::ChangeDirectory(
- this->CTest->GetCTestConfiguration("BuildDirectory").c_str());
- int res = handler->ProcessHandler();
- if ( this->Values[ct_RETURN_VALUE] && *this->Values[ct_RETURN_VALUE])
- {
- cmOStringStream str;
- str << res;
- this->Makefile->AddDefinition(
- this->Values[ct_RETURN_VALUE], str.str().c_str());
- }
- cmSystemTools::ChangeDirectory(current_dir.c_str());
- return true;
- }
- bool cmCTestHandlerCommand::ProcessArguments(
- std::vector<std::string> const& args, int last, const char** strings,
- std::vector<const char*>& values)
- {
- int state = 0;
- int cc;
- values.resize(last);
- for ( cc = 0; cc < last; ++ cc )
- {
- values[cc] = 0;
- }
- for(size_t i=0; i < args.size(); ++i)
- {
- if ( state > 0 && state < last )
- {
- values[state] = args[i].c_str();
- cmCTestLog(this->CTest, DEBUG, "Set " << strings[state] << " to "
- << args[i].c_str() << std::endl);
- state = 0;
- }
- else
- {
- bool found = false;
- for ( cc = 0; cc < last; ++ cc )
- {
- if ( strings[cc] && args[i] == strings[cc] )
- {
- state = cc;
- if ( values[state] )
- {
- cmOStringStream ostr;
- ostr << "called with incorrect number of arguments. "
- << strings[state] << " specified twice.";
- this->SetError(ostr.str().c_str());
- return false;
- }
- found = true;
- break;
- }
- }
- if ( !found )
- {
- cmOStringStream str;
- str
- << "called with incorrect number of arguments. Extra argument is: "
- << args[i].c_str() << ".";
- this->SetError(str.str().c_str());
- return false;
- }
- }
- }
- return true;
- }
|