CMake/Source/CTest/cmCTestGenericHandler.h

108 lines
2.8 KiB
C
Raw Permalink Normal View History

/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc.
2005-01-27 19:43:22 +03: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
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
#ifndef cmCTestGenericHandler_h
#define cmCTestGenericHandler_h
#include "cmObject.h"
#include "cmCTest.h"
#include "cmSystemTools.h" //OutputOption
2005-01-27 19:43:22 +03:00
class cmMakefile;
class cmCTestCommand;
class cmGeneratedFileStream;
2005-01-27 19:43:22 +03:00
/** \class cmCTestGenericHandler
* \brief A superclass of all CTest Handlers
*
*/
class cmCTestGenericHandler : public cmObject
2005-01-27 19:43:22 +03:00
{
public:
/**
* If verbose then more informaiton is printed out
*/
void SetVerbose(bool val)
{ this->HandlerVerbose = val ?
cmSystemTools::OUTPUT_MERGE : cmSystemTools::OUTPUT_NONE; }
2005-01-27 19:43:22 +03:00
/**
* Populate internals from CTest custom scripts
*/
2005-01-27 23:54:47 +03:00
virtual void PopulateCustomVectors(cmMakefile *) {}
/**
* Do the actual processing. Subclass has to override it.
* Return < 0 if error.
*/
virtual int ProcessHandler() = 0;
2005-01-27 19:43:22 +03:00
/**
* Process command line arguments that are applicable for the handler
*/
virtual int ProcessCommandLineArguments(
const std::string& /*currentArg*/, size_t& /*idx*/,
const std::vector<std::string>& /*allArgs*/) { return 1; }
/**
* Initialize handler
*/
virtual void Initialize();
2005-01-27 19:43:22 +03:00
/**
* Set the CTest instance
*/
2006-03-10 23:03:09 +03:00
void SetCTestInstance(cmCTest* ctest) { this->CTest = ctest; }
cmCTest* GetCTestInstance() { return this->CTest; }
2005-01-27 19:43:22 +03:00
/**
* Construct handler
*/
cmCTestGenericHandler();
2005-01-27 23:54:47 +03:00
virtual ~cmCTestGenericHandler();
2005-01-27 19:43:22 +03:00
typedef std::map<std::string,std::string> t_StringToString;
void SetPersistentOption(const std::string& op, const char* value);
void SetOption(const std::string& op, const char* value);
const char* GetOption(const std::string& op);
void SetCommand(cmCTestCommand* command)
{
2006-03-10 23:03:09 +03:00
this->Command = command;
}
2006-03-10 23:03:09 +03:00
void SetSubmitIndex(int idx) { this->SubmitIndex = idx; }
int GetSubmitIndex() { return this->SubmitIndex; }
void SetAppendXML(bool b) { this->AppendXML = b; }
2005-01-27 19:43:22 +03:00
protected:
bool StartResultingXML(cmCTest::Part part,
const char* name, cmGeneratedFileStream& xofs);
bool StartLogFile(const char* name, cmGeneratedFileStream& xofs);
2006-03-09 19:17:10 +03:00
bool AppendXML;
cmSystemTools::OutputOption HandlerVerbose;
2006-03-10 23:03:09 +03:00
cmCTest *CTest;
t_StringToString Options;
t_StringToString PersistentOptions;
2006-03-10 23:03:09 +03:00
cmCTestCommand* Command;
int SubmitIndex;
2005-01-27 19:43:22 +03:00
};
#endif