CMake/Source/CTest/cmProcess.h

75 lines
2.2 KiB
C
Raw Normal View History

2008-07-03 17:49:49 +04: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.
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.
=========================================================================*/
#ifndef cmProcess_h
#define cmProcess_h
2008-07-03 21:55:36 +04:00
#include "cmStandardIncludes.h"
2008-07-03 17:49:49 +04:00
#include <cmsys/Process.h>
/** \class cmProcess
* \brief run a process with c++
*
* cmProcess wraps the kwsys process stuff in a c++ class.
*/
class cmProcess
{
public:
cmProcess();
~cmProcess();
const char* GetCommand() { return this->Command.c_str();}
void SetCommand(const char* command);
void SetCommandArguments(std::vector<std::string> const& arg);
void SetWorkingDirectory(const char* dir) { this->WorkingDirectory = dir;}
void SetTimeout(double t) { this->Timeout = t;}
// Return true if the process starts
bool StartProcess();
// return false if process has exited, true otherwise
bool CheckOutput(double timeout);
2008-07-03 17:49:49 +04:00
// return the process status
int GetProcessStatus();
// return true if the process is running
bool IsRunning();
// Report the status of the program
int ReportStatus();
int GetId() { return this->Id; }
void SetId(int id) { this->Id = id;}
int GetExitValue() { return this->ExitValue;}
2009-08-12 06:02:49 +04:00
double GetTotalTime() { return this->TotalTime;}
int GetNextOutputLine(std::string& stdOutLine, std::string& stdErrLine,
bool& gotStdOut, bool& gotStdErr, bool running);
2008-07-03 17:49:49 +04:00
private:
int LastOutputPipe;
double Timeout;
2008-12-30 01:49:17 +03:00
double StartTime;
double TotalTime;
2008-07-03 17:49:49 +04:00
cmsysProcess* Process;
std::vector<char> StdErrorBuffer;
std::vector<char> StdOutBuffer;
std::string Command;
std::string WorkingDirectory;
std::vector<std::string> Arguments;
std::vector<const char*> ProcessArgs;
std::string Output;
int Id;
int ExitValue;
};
#endif