CMake/Source/CTest/cmCTestGenericHandler.cxx

134 lines
3.5 KiB
C++
Raw Normal View History

2005-01-27 19:43:22 +03: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-01-27 19:43:22 +03:00
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include "cmCTestGenericHandler.h"
#include "cmCTest.h"
//----------------------------------------------------------------------
2005-01-27 19:43:22 +03:00
cmCTestGenericHandler::cmCTestGenericHandler()
{
2006-03-10 23:03:09 +03:00
this->HandlerVerbose = false;
this->CTest = 0;
this->SubmitIndex = 0;
2005-01-27 19:43:22 +03:00
}
//----------------------------------------------------------------------
2005-01-27 23:54:47 +03:00
cmCTestGenericHandler::~cmCTestGenericHandler()
{
}
//----------------------------------------------------------------------
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() )
{
2006-03-10 23:03:09 +03:00
this->Options.erase(remit);
}
return;
}
2006-03-10 23:03:09 +03:00
this->Options[op] = value;
}
//----------------------------------------------------------------------
void cmCTestGenericHandler::Initialize()
{
2006-03-10 23:03:09 +03:00
this->Options.clear();
}
//----------------------------------------------------------------------
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() )
{
return 0;
}
return remit->second.c_str();
}
2005-01-27 23:54:47 +03:00
//----------------------------------------------------------------------
2006-03-09 19:17:10 +03:00
bool cmCTestGenericHandler::StartResultingXML(const char* name,
cmGeneratedFileStream& xofs)
{
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;);
return false;
}
cmOStringStream ostr;
ostr << name;
2006-03-10 23:03:09 +03:00
if ( this->SubmitIndex > 0 )
{
2006-03-10 23:03:09 +03:00
ostr << "_" << this->SubmitIndex;
}
ostr << ".xml";
2006-03-10 23:03:09 +03:00
if( !this->CTest->OpenOutputFile(this->CTest->GetCurrentTag(),
ostr.str().c_str(), xofs, true) )
{
2006-03-10 23:03:09 +03:00
cmCTestLog(this->CTest, ERROR_MESSAGE,
"Cannot create resulting XML file: " << ostr.str().c_str()
<< std::endl);
return false;
}
2006-03-10 23:03:09 +03:00
this->CTest->AddSubmitFile(ostr.str().c_str());
return true;
}
//----------------------------------------------------------------------
2006-03-09 19:17:10 +03:00
bool cmCTestGenericHandler::StartLogFile(const char* name,
cmGeneratedFileStream& xofs)
{
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;);
return false;
}
cmOStringStream ostr;
ostr << "Last" << name;
2006-03-10 23:03:09 +03:00
if ( this->SubmitIndex > 0 )
{
2006-03-10 23:03:09 +03:00
ostr << "_" << this->SubmitIndex;
}
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
}
ostr << ".log";
2006-03-10 23:03:09 +03:00
if( !this->CTest->OpenOutputFile("Temporary", ostr.str().c_str(), xofs) )
{
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);
return false;
}
return true;
}