cmake/Source/CTest/cmCTestGenericHandler.cxx

146 lines
4.2 KiB
C++
Raw Normal View History

2009-10-04 10:30:41 +03:00
/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
2009-10-04 10:30:41 +03:00
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
2009-10-04 10:30:41 +03: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.
============================================================================*/
#include "cmCTestGenericHandler.h"
2016-07-09 11:21:54 +02:00
#include "cmSystemTools.h"
#include "cmCTest.h"
cmCTestGenericHandler::cmCTestGenericHandler()
{
2012-02-18 12:40:36 +02:00
this->HandlerVerbose = cmSystemTools::OUTPUT_NONE;
this->CTest = 0;
this->SubmitIndex = 0;
2009-10-04 10:30:41 +03:00
this->AppendXML = false;
2015-08-17 11:37:30 +02:00
this->Quiet = false;
2015-11-17 17:22:37 +01:00
this->TestLoad = 0;
}
cmCTestGenericHandler::~cmCTestGenericHandler()
{
}
2015-04-27 22:25:09 +02:00
void cmCTestGenericHandler::SetOption(const std::string& op, const char* value)
{
2016-07-09 11:21:54 +02:00
if (!value) {
cmCTestGenericHandler::t_StringToString::iterator remit =
this->Options.find(op);
if (remit != this->Options.end()) {
this->Options.erase(remit);
}
2016-07-09 11:21:54 +02:00
return;
}
this->Options[op] = value;
}
2015-04-27 22:25:09 +02:00
void cmCTestGenericHandler::SetPersistentOption(const std::string& op,
const char* value)
{
this->SetOption(op, value);
2016-07-09 11:21:54 +02:00
if (!value) {
cmCTestGenericHandler::t_StringToString::iterator remit =
this->PersistentOptions.find(op);
if (remit != this->PersistentOptions.end()) {
this->PersistentOptions.erase(remit);
}
2016-07-09 11:21:54 +02:00
return;
}
this->PersistentOptions[op] = value;
}
void cmCTestGenericHandler::Initialize()
{
2009-10-04 10:30:41 +03:00
this->AppendXML = false;
2015-11-17 17:22:37 +01:00
this->TestLoad = 0;
this->Options.clear();
t_StringToString::iterator it;
2016-07-09 11:21:54 +02:00
for (it = this->PersistentOptions.begin();
it != this->PersistentOptions.end(); ++it) {
this->Options[it->first] = it->second;
}
}
2015-04-27 22:25:09 +02:00
const char* cmCTestGenericHandler::GetOption(const std::string& op)
{
2016-07-09 11:21:54 +02:00
cmCTestGenericHandler::t_StringToString::iterator remit =
this->Options.find(op);
if (remit == this->Options.end()) {
return 0;
2016-07-09 11:21:54 +02:00
}
return remit->second.c_str();
}
2009-10-04 10:30:41 +03:00
bool cmCTestGenericHandler::StartResultingXML(cmCTest::Part part,
const char* name,
cmGeneratedFileStream& xofs)
{
2016-07-09 11:21:54 +02:00
if (!name) {
cmCTestLog(this->CTest, ERROR_MESSAGE,
2016-07-09 11:21:54 +02:00
"Cannot create resulting XML file without providing the name"
<< std::endl;);
return false;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
std::ostringstream ostr;
ostr << name;
2016-07-09 11:21:54 +02:00
if (this->SubmitIndex > 0) {
ostr << "_" << this->SubmitIndex;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
ostr << ".xml";
2016-07-09 11:21:54 +02:00
if (this->CTest->GetCurrentTag().empty()) {
cmCTestLog(this->CTest, ERROR_MESSAGE,
2009-10-04 10:30:41 +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 "
2016-07-09 11:21:54 +02:00
"ctest_configure()."
<< std::endl);
cmSystemTools::SetFatalErrorOccured();
return false;
2016-07-09 11:21:54 +02:00
}
if (!this->CTest->OpenOutputFile(this->CTest->GetCurrentTag(), ostr.str(),
xofs, true)) {
cmCTestLog(this->CTest, ERROR_MESSAGE, "Cannot create resulting XML file: "
<< ostr.str() << std::endl);
return false;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
this->CTest->AddSubmitFile(part, ostr.str().c_str());
return true;
}
bool cmCTestGenericHandler::StartLogFile(const char* name,
2016-07-09 11:21:54 +02:00
cmGeneratedFileStream& xofs)
{
2016-07-09 11:21:54 +02:00
if (!name) {
cmCTestLog(this->CTest, ERROR_MESSAGE,
2016-07-09 11:21:54 +02:00
"Cannot create log file without providing the name"
<< std::endl;);
return false;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
std::ostringstream ostr;
ostr << "Last" << name;
2016-07-09 11:21:54 +02:00
if (this->SubmitIndex > 0) {
ostr << "_" << this->SubmitIndex;
2016-07-09 11:21:54 +02:00
}
if (!this->CTest->GetCurrentTag().empty()) {
ostr << "_" << this->CTest->GetCurrentTag();
2016-07-09 11:21:54 +02:00
}
ostr << ".log";
2016-07-09 11:21:54 +02:00
if (!this->CTest->OpenOutputFile("Temporary", ostr.str(), xofs)) {
cmCTestLog(this->CTest, ERROR_MESSAGE,
"Cannot create log file: " << ostr.str() << std::endl);
return false;
2016-07-09 11:21:54 +02:00
}
return true;
}