2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-01-27 19:43:22 +03: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.
|
2005-01-27 19:43:22 +03: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.
|
|
|
|
============================================================================*/
|
2005-01-27 19:43:22 +03:00
|
|
|
|
|
|
|
#include "cmCTestGenericHandler.h"
|
2007-08-04 00:44:57 +04:00
|
|
|
#include "cmSystemTools.h"
|
2005-01-27 19:43:22 +03:00
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
#include "cmCTest.h"
|
|
|
|
|
2005-06-03 22:42:33 +04:00
|
|
|
//----------------------------------------------------------------------
|
2005-01-27 19:43:22 +03:00
|
|
|
cmCTestGenericHandler::cmCTestGenericHandler()
|
|
|
|
{
|
2011-07-26 11:26:18 +04:00
|
|
|
this->HandlerVerbose = cmSystemTools::OUTPUT_NONE;
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CTest = 0;
|
|
|
|
this->SubmitIndex = 0;
|
2009-01-12 17:11:29 +03:00
|
|
|
this->AppendXML = false;
|
2005-01-27 19:43:22 +03:00
|
|
|
}
|
|
|
|
|
2005-06-03 22:42:33 +04:00
|
|
|
//----------------------------------------------------------------------
|
2005-01-27 23:54:47 +03:00
|
|
|
cmCTestGenericHandler::~cmCTestGenericHandler()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-06-03 22:42:33 +04:00
|
|
|
//----------------------------------------------------------------------
|
2005-02-17 23:22:29 +03:00
|
|
|
void cmCTestGenericHandler::SetOption(const char* op, const char* value)
|
|
|
|
{
|
|
|
|
if ( !op )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ( !value )
|
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
cmCTestGenericHandler::t_StringToString::iterator remit
|
2006-03-10 23:03:09 +03:00
|
|
|
= this->Options.find(op);
|
|
|
|
if ( remit != this->Options.end() )
|
2005-02-17 23:22:29 +03:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
this->Options.erase(remit);
|
2005-02-17 23:22:29 +03:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
this->Options[op] = value;
|
2005-02-17 23:22:29 +03:00
|
|
|
}
|
|
|
|
|
2006-04-28 19:59:31 +04:00
|
|
|
//----------------------------------------------------------------------
|
2012-08-13 21:42:58 +04:00
|
|
|
void cmCTestGenericHandler::SetPersistentOption(const char* op,
|
2006-05-10 21:50:44 +04:00
|
|
|
const char* value)
|
2006-04-28 19:59:31 +04:00
|
|
|
{
|
2006-04-30 11:16:37 +04:00
|
|
|
this->SetOption(op, value);
|
2006-04-28 19:59:31 +04:00
|
|
|
if ( !op )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ( !value )
|
|
|
|
{
|
|
|
|
cmCTestGenericHandler::t_StringToString::iterator remit
|
|
|
|
= this->PersistentOptions.find(op);
|
|
|
|
if ( remit != this->PersistentOptions.end() )
|
|
|
|
{
|
|
|
|
this->PersistentOptions.erase(remit);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->PersistentOptions[op] = value;
|
|
|
|
}
|
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void cmCTestGenericHandler::Initialize()
|
|
|
|
{
|
2009-01-15 21:24:54 +03:00
|
|
|
this->AppendXML = false;
|
2006-03-10 23:03:09 +03:00
|
|
|
this->Options.clear();
|
2006-04-28 19:59:31 +04:00
|
|
|
t_StringToString::iterator it;
|
2012-08-13 21:42:58 +04:00
|
|
|
for ( it = this->PersistentOptions.begin();
|
2006-04-28 19:59:31 +04:00
|
|
|
it != this->PersistentOptions.end();
|
|
|
|
++ it )
|
|
|
|
{
|
|
|
|
this->Options[it->first.c_str()] = it->second.c_str();
|
|
|
|
}
|
2005-06-23 21:04:18 +04:00
|
|
|
}
|
|
|
|
|
2005-06-03 22:42:33 +04:00
|
|
|
//----------------------------------------------------------------------
|
2005-02-17 23:22:29 +03:00
|
|
|
const char* cmCTestGenericHandler::GetOption(const char* op)
|
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
cmCTestGenericHandler::t_StringToString::iterator remit
|
2006-03-10 23:03:09 +03:00
|
|
|
= this->Options.find(op);
|
|
|
|
if ( remit == this->Options.end() )
|
2005-02-17 23:22:29 +03:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return remit->second.c_str();
|
|
|
|
}
|
2005-01-27 23:54:47 +03:00
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
//----------------------------------------------------------------------
|
2009-01-12 18:37:55 +03:00
|
|
|
bool cmCTestGenericHandler::StartResultingXML(cmCTest::Part part,
|
|
|
|
const char* name,
|
|
|
|
cmGeneratedFileStream& xofs)
|
2005-06-23 21:04:18 +04:00
|
|
|
{
|
|
|
|
if ( !name )
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
2006-03-09 19:17:10 +03:00
|
|
|
"Cannot create resulting XML file without providing the name"
|
|
|
|
<< std::endl;);
|
2005-06-23 21:04:18 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
cmOStringStream ostr;
|
|
|
|
ostr << name;
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( this->SubmitIndex > 0 )
|
2005-06-23 21:04:18 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
ostr << "_" << this->SubmitIndex;
|
2005-06-23 21:04:18 +04:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
ostr << ".xml";
|
2007-08-04 00:44:57 +04:00
|
|
|
if(this->CTest->GetCurrentTag().empty())
|
|
|
|
{
|
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
2008-12-30 17:13:02 +03:00
|
|
|
"Current Tag empty, this may mean NightlyStartTime / "
|
|
|
|
"CTEST_NIGHTLY_START_TIME was not set correctly. Or "
|
|
|
|
"maybe you forgot to call ctest_start() before calling "
|
|
|
|
"ctest_configure()." << std::endl);
|
2007-08-04 00:44:57 +04:00
|
|
|
cmSystemTools::SetFatalErrorOccured();
|
|
|
|
return false;
|
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
if( !this->CTest->OpenOutputFile(this->CTest->GetCurrentTag(),
|
|
|
|
ostr.str().c_str(), xofs, true) )
|
2005-06-23 21:04:18 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
|
|
|
"Cannot create resulting XML file: " << ostr.str().c_str()
|
|
|
|
<< std::endl);
|
2005-06-23 21:04:18 +04:00
|
|
|
return false;
|
|
|
|
}
|
2009-01-12 18:37:55 +03:00
|
|
|
this->CTest->AddSubmitFile(part, ostr.str().c_str());
|
2005-06-23 21:04:18 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2006-03-09 19:17:10 +03:00
|
|
|
bool cmCTestGenericHandler::StartLogFile(const char* name,
|
|
|
|
cmGeneratedFileStream& xofs)
|
2005-06-23 21:04:18 +04:00
|
|
|
{
|
|
|
|
if ( !name )
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
2006-03-09 19:17:10 +03:00
|
|
|
"Cannot create log file without providing the name" << std::endl;);
|
2005-06-23 21:04:18 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
cmOStringStream ostr;
|
|
|
|
ostr << "Last" << name;
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( this->SubmitIndex > 0 )
|
2005-06-23 21:04:18 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
ostr << "_" << this->SubmitIndex;
|
2005-06-23 21:04:18 +04:00
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( !this->CTest->GetCurrentTag().empty() )
|
2005-07-18 19:32:29 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
ostr << "_" << this->CTest->GetCurrentTag();
|
2005-07-18 19:32:29 +04:00
|
|
|
}
|
2005-06-23 21:04:18 +04:00
|
|
|
ostr << ".log";
|
2006-03-10 23:03:09 +03:00
|
|
|
if( !this->CTest->OpenOutputFile("Temporary", ostr.str().c_str(), xofs) )
|
2005-06-23 21:04:18 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE, "Cannot create log file: "
|
2006-03-09 19:17:10 +03:00
|
|
|
<< ostr.str().c_str() << std::endl);
|
2005-06-23 21:04:18 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|