125 lines
3.4 KiB
C++
125 lines
3.4 KiB
C++
/*=========================================================================
|
|
|
|
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 "cmCTestGenericHandler.h"
|
|
|
|
#include "cmCTest.h"
|
|
|
|
//----------------------------------------------------------------------
|
|
cmCTestGenericHandler::cmCTestGenericHandler()
|
|
{
|
|
m_HandlerVerbose = false;
|
|
m_CTest = 0;
|
|
m_SubmitIndex = 0;
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
cmCTestGenericHandler::~cmCTestGenericHandler()
|
|
{
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
void cmCTestGenericHandler::SetOption(const char* op, const char* value)
|
|
{
|
|
if ( !op )
|
|
{
|
|
return;
|
|
}
|
|
if ( !value )
|
|
{
|
|
cmCTestGenericHandler::t_StringToString::iterator remit
|
|
= m_Options.find(op);
|
|
if ( remit != m_Options.end() )
|
|
{
|
|
m_Options.erase(remit);
|
|
}
|
|
return;
|
|
}
|
|
|
|
m_Options[op] = value;
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
void cmCTestGenericHandler::Initialize()
|
|
{
|
|
m_Options.clear();
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
const char* cmCTestGenericHandler::GetOption(const char* op)
|
|
{
|
|
cmCTestGenericHandler::t_StringToString::iterator remit
|
|
= m_Options.find(op);
|
|
if ( remit == m_Options.end() )
|
|
{
|
|
return 0;
|
|
}
|
|
return remit->second.c_str();
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
bool cmCTestGenericHandler::StartResultingXML(const char* name, cmGeneratedFileStream& xofs)
|
|
{
|
|
if ( !name )
|
|
{
|
|
cmCTestLog(m_CTest, ERROR_MESSAGE, "Cannot create resulting XML file without providing the name" << std::endl;);
|
|
return false;
|
|
}
|
|
cmOStringStream ostr;
|
|
ostr << name;
|
|
if ( m_SubmitIndex > 0 )
|
|
{
|
|
ostr << "_" << m_SubmitIndex;
|
|
}
|
|
ostr << ".xml";
|
|
if( !m_CTest->OpenOutputFile(m_CTest->GetCurrentTag(), ostr.str().c_str(), xofs, true) )
|
|
{
|
|
cmCTestLog(m_CTest, ERROR_MESSAGE, "Cannot create resulting XML file: " << ostr.str().c_str() << std::endl);
|
|
return false;
|
|
}
|
|
m_CTest->AddSubmitFile(ostr.str().c_str());
|
|
return true;
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
bool cmCTestGenericHandler::StartLogFile(const char* name, cmGeneratedFileStream& xofs)
|
|
{
|
|
if ( !name )
|
|
{
|
|
cmCTestLog(m_CTest, ERROR_MESSAGE, "Cannot create log file without providing the name" << std::endl;);
|
|
return false;
|
|
}
|
|
cmOStringStream ostr;
|
|
ostr << "Last" << name;
|
|
if ( m_SubmitIndex > 0 )
|
|
{
|
|
ostr << "_" << m_SubmitIndex;
|
|
}
|
|
if ( !m_CTest->GetCurrentTag().empty() )
|
|
{
|
|
ostr << "_" << m_CTest->GetCurrentTag();
|
|
}
|
|
ostr << ".log";
|
|
if( !m_CTest->OpenOutputFile("Temporary", ostr.str().c_str(), xofs) )
|
|
{
|
|
cmCTestLog(m_CTest, ERROR_MESSAGE, "Cannot create log file: " << ostr.str().c_str() << std::endl);
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|