2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc.
|
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
|
|
|
|
|
|
|
#ifndef cmCTestGenericHandler_h
|
|
|
|
#define cmCTestGenericHandler_h
|
|
|
|
|
|
|
|
|
2005-06-17 21:04:56 +04:00
|
|
|
#include "cmObject.h"
|
2009-01-12 18:37:55 +03:00
|
|
|
#include "cmCTest.h"
|
2011-07-26 11:26:18 +04:00
|
|
|
#include "cmSystemTools.h" //OutputOption
|
2005-01-27 19:43:22 +03:00
|
|
|
|
|
|
|
class cmMakefile;
|
2005-06-16 21:18:21 +04:00
|
|
|
class cmCTestCommand;
|
2005-06-23 21:04:18 +04:00
|
|
|
class cmGeneratedFileStream;
|
2005-01-27 19:43:22 +03:00
|
|
|
|
|
|
|
/** \class cmCTestGenericHandler
|
|
|
|
* \brief A superclass of all CTest Handlers
|
|
|
|
*
|
|
|
|
*/
|
2005-06-17 21:04:56 +04:00
|
|
|
class cmCTestGenericHandler : public cmObject
|
2005-01-27 19:43:22 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* If verbose then more informaiton is printed out
|
|
|
|
*/
|
2011-07-26 11:26:18 +04:00
|
|
|
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
|
|
|
|
2005-06-03 22:42:33 +04: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; }
|
|
|
|
|
2005-06-17 21:04:56 +04:00
|
|
|
/**
|
|
|
|
* Initialize handler
|
|
|
|
*/
|
2005-06-23 21:04:18 +04:00
|
|
|
virtual void Initialize();
|
2005-06-17 21:04:56 +04:00
|
|
|
|
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
|
|
|
|
2005-02-17 23:22:29 +03:00
|
|
|
typedef std::map<cmStdString,cmStdString> t_StringToString;
|
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2006-04-28 19:59:31 +04:00
|
|
|
void SetPersistentOption(const char* op, const char* value);
|
2005-02-17 23:22:29 +03:00
|
|
|
void SetOption(const char* op, const char* value);
|
|
|
|
const char* GetOption(const char* op);
|
|
|
|
|
2005-06-16 21:18:21 +04:00
|
|
|
void SetCommand(cmCTestCommand* command)
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
this->Command = command;
|
2005-06-16 21:18:21 +04:00
|
|
|
}
|
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
void SetSubmitIndex(int idx) { this->SubmitIndex = idx; }
|
|
|
|
int GetSubmitIndex() { return this->SubmitIndex; }
|
2005-06-23 21:04:18 +04:00
|
|
|
|
2009-01-12 17:11:29 +03:00
|
|
|
void SetAppendXML(bool b) { this->AppendXML = b; }
|
|
|
|
|
2005-01-27 19:43:22 +03:00
|
|
|
protected:
|
2009-01-12 18:37:55 +03:00
|
|
|
bool StartResultingXML(cmCTest::Part part,
|
|
|
|
const char* name, cmGeneratedFileStream& xofs);
|
2005-06-23 21:04:18 +04:00
|
|
|
bool StartLogFile(const char* name, cmGeneratedFileStream& xofs);
|
2006-03-09 19:17:10 +03:00
|
|
|
|
2009-01-12 17:11:29 +03:00
|
|
|
bool AppendXML;
|
2011-07-26 11:26:18 +04:00
|
|
|
cmSystemTools::OutputOption HandlerVerbose;
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTest *CTest;
|
|
|
|
t_StringToString Options;
|
2006-04-28 19:59:31 +04:00
|
|
|
t_StringToString PersistentOptions;
|
2005-06-16 21:18:21 +04:00
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestCommand* Command;
|
|
|
|
int SubmitIndex;
|
2005-01-27 19:43:22 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|