2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2000-08-29 23:26:29 +04: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.
|
2000-08-29 23:26:29 +04: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.
|
|
|
|
============================================================================*/
|
2000-09-12 13:30:35 +04:00
|
|
|
#ifndef cmSystemTools_h
|
|
|
|
#define cmSystemTools_h
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
#include "cmStandardIncludes.h"
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2003-06-23 16:58:58 +04:00
|
|
|
#include <cmsys/SystemTools.hxx>
|
2006-04-04 21:04:28 +04:00
|
|
|
#include <cmsys/Process.h>
|
|
|
|
|
2008-04-14 19:43:45 +04:00
|
|
|
class cmSystemToolsFileTime;
|
2003-06-23 16:58:58 +04:00
|
|
|
|
2001-01-11 22:47:38 +03:00
|
|
|
/** \class cmSystemTools
|
|
|
|
* \brief A collection of useful functions for CMake.
|
|
|
|
*
|
|
|
|
* cmSystemTools is a class that provides helper functions
|
|
|
|
* for the CMake build system.
|
|
|
|
*/
|
2003-06-23 16:58:58 +04:00
|
|
|
class cmSystemTools: public cmsys::SystemTools
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
|
|
|
public:
|
2003-06-24 18:16:28 +04:00
|
|
|
typedef cmsys::SystemTools Superclass;
|
2011-07-28 18:23:13 +04:00
|
|
|
|
2011-11-10 04:28:01 +04:00
|
|
|
/** Expand out any arguments in the vector that have ; separated
|
|
|
|
* strings into multiple arguments. A new vector is created
|
2002-03-06 18:10:46 +03:00
|
|
|
* containing the expanded versions of all arguments in argsIn.
|
|
|
|
*/
|
2002-12-12 02:13:33 +03:00
|
|
|
static void ExpandList(std::vector<std::string> const& argsIn,
|
|
|
|
std::vector<std::string>& argsOut);
|
|
|
|
static void ExpandListArgument(const std::string& arg,
|
2006-02-10 03:03:27 +03:00
|
|
|
std::vector<std::string>& argsOut,
|
|
|
|
bool emptyArgs=false);
|
2002-03-06 18:10:46 +03:00
|
|
|
|
2001-05-11 18:53:17 +04:00
|
|
|
/**
|
|
|
|
* Look for and replace registry values in a string
|
|
|
|
*/
|
2008-05-27 22:47:00 +04:00
|
|
|
static void ExpandRegistryValues(std::string& source,
|
|
|
|
KeyWOW64 view = KeyWOW64_Default);
|
2001-05-11 18:53:17 +04:00
|
|
|
|
2002-02-22 21:38:33 +03:00
|
|
|
///! Escape quotes in a string.
|
|
|
|
static std::string EscapeQuotes(const char* str);
|
2009-06-24 23:09:50 +04:00
|
|
|
|
2011-11-11 09:00:35 +04:00
|
|
|
/**
|
|
|
|
* Returns a string that has whitespace removed from the start and the end.
|
|
|
|
*/
|
|
|
|
static std::string TrimWhitespace(const std::string& s);
|
|
|
|
|
2002-09-18 22:18:43 +04:00
|
|
|
typedef void (*ErrorCallback)(const char*, const char*, bool&, void*);
|
2001-10-29 18:19:34 +03:00
|
|
|
/**
|
2012-11-07 20:13:09 +04:00
|
|
|
* Set the function used by GUIs to display error messages
|
2011-07-28 18:23:13 +04:00
|
|
|
* Function gets passed: message as a const char*,
|
2001-10-29 18:19:34 +03:00
|
|
|
* title as a const char*, and a reference to bool that when
|
|
|
|
* set to false, will disable furthur messages (cancel).
|
|
|
|
*/
|
2002-09-18 22:18:43 +04:00
|
|
|
static void SetErrorCallback(ErrorCallback f, void* clientData=0);
|
2001-10-29 18:19:34 +03:00
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
/**
|
|
|
|
* Display an error message.
|
|
|
|
*/
|
2001-03-13 02:30:58 +03:00
|
|
|
static void Error(const char* m, const char* m2=0,
|
|
|
|
const char* m3=0, const char* m4=0);
|
2001-02-23 03:24:43 +03:00
|
|
|
|
2001-06-05 00:55:37 +04:00
|
|
|
/**
|
|
|
|
* Display a message.
|
|
|
|
*/
|
|
|
|
static void Message(const char* m, const char* title=0);
|
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
///! Send a string to stdout
|
|
|
|
static void Stdout(const char* s);
|
|
|
|
static void Stdout(const char* s, int length);
|
|
|
|
typedef void (*StdoutCallback)(const char*, int length, void*);
|
|
|
|
static void SetStdoutCallback(StdoutCallback, void* clientData=0);
|
|
|
|
|
2011-07-26 11:36:40 +04:00
|
|
|
///! Send a string to stderr. Stdout callbacks will not be invoced.
|
|
|
|
static void Stderr(const char* s, int length);
|
|
|
|
|
2012-01-02 22:07:43 +04:00
|
|
|
|
|
|
|
typedef bool (*InterruptCallback)(void*);
|
|
|
|
static void SetInterruptCallback(InterruptCallback f, void* clientData=0);
|
|
|
|
static bool GetInterruptFlag();
|
|
|
|
|
2001-02-23 03:24:43 +03:00
|
|
|
///! Return true if there was an error at any point.
|
2011-07-28 18:23:13 +04:00
|
|
|
static bool GetErrorOccuredFlag()
|
2001-02-23 03:24:43 +03:00
|
|
|
{
|
2011-07-28 18:23:13 +04:00
|
|
|
return cmSystemTools::s_ErrorOccured ||
|
2012-09-04 18:50:21 +04:00
|
|
|
cmSystemTools::s_FatalErrorOccured ||
|
|
|
|
GetInterruptFlag();
|
2003-01-21 20:50:48 +03:00
|
|
|
}
|
|
|
|
///! If this is set to true, cmake stops processing commands.
|
|
|
|
static void SetFatalErrorOccured()
|
|
|
|
{
|
|
|
|
cmSystemTools::s_FatalErrorOccured = true;
|
|
|
|
}
|
2004-03-17 17:42:32 +03:00
|
|
|
static void SetErrorOccured()
|
|
|
|
{
|
|
|
|
cmSystemTools::s_ErrorOccured = true;
|
|
|
|
}
|
2003-01-21 20:50:48 +03:00
|
|
|
///! Return true if there was an error at any point.
|
2011-07-28 18:23:13 +04:00
|
|
|
static bool GetFatalErrorOccured()
|
2003-01-21 20:50:48 +03:00
|
|
|
{
|
2012-01-02 22:07:43 +04:00
|
|
|
return cmSystemTools::s_FatalErrorOccured || GetInterruptFlag();
|
2001-02-23 03:24:43 +03:00
|
|
|
}
|
2001-06-07 22:52:29 +04:00
|
|
|
|
2003-01-21 20:50:48 +03:00
|
|
|
///! Set the error occured flag and fatal error back to false
|
2001-06-07 22:52:29 +04:00
|
|
|
static void ResetErrorOccuredFlag()
|
|
|
|
{
|
2003-01-21 20:50:48 +03:00
|
|
|
cmSystemTools::s_FatalErrorOccured = false;
|
2001-06-07 22:52:29 +04:00
|
|
|
cmSystemTools::s_ErrorOccured = false;
|
|
|
|
}
|
2011-07-28 18:23:13 +04:00
|
|
|
|
2010-08-23 18:14:40 +04:00
|
|
|
/**
|
|
|
|
* Does a string indicates that CMake/CPack/CTest internally
|
|
|
|
* forced this value. This is not the same as On, but this
|
|
|
|
* may be considered as "internally switched on".
|
|
|
|
*/
|
|
|
|
static bool IsInternallyOn(const char* val);
|
2011-07-28 18:23:13 +04:00
|
|
|
/**
|
2001-04-30 22:56:06 +04:00
|
|
|
* does a string indicate a true or on value ? This is not the same
|
2011-07-28 18:23:13 +04:00
|
|
|
* as ifdef.
|
|
|
|
*/
|
2001-04-26 18:49:12 +04:00
|
|
|
static bool IsOn(const char* val);
|
2011-07-28 18:23:13 +04:00
|
|
|
|
|
|
|
/**
|
2001-04-30 22:56:06 +04:00
|
|
|
* does a string indicate a false or off value ? Note that this is
|
|
|
|
* not the same as !IsOn(...) because there are a number of
|
|
|
|
* ambiguous values such as "/usr/local/bin" a path will result in
|
|
|
|
* IsON and IsOff both returning false. Note that the special path
|
2011-07-28 18:23:13 +04:00
|
|
|
* NOTFOUND, *-NOTFOUND or IGNORE will cause IsOff to return true.
|
2001-04-30 22:56:06 +04:00
|
|
|
*/
|
2001-05-09 22:53:32 +04:00
|
|
|
static bool IsOff(const char* val);
|
2001-04-30 22:56:06 +04:00
|
|
|
|
2003-01-31 21:50:42 +03:00
|
|
|
///! Return true if value is NOTFOUND or ends in -NOTFOUND.
|
|
|
|
static bool IsNOTFOUND(const char* value);
|
2005-12-26 21:14:19 +03:00
|
|
|
///! Return true if the path is a framework
|
|
|
|
static bool IsPathToFramework(const char* value);
|
2011-07-28 18:23:13 +04:00
|
|
|
|
2003-06-19 22:27:01 +04:00
|
|
|
static bool DoesFileExistWithExtensions(
|
|
|
|
const char *name,
|
|
|
|
const std::vector<std::string>& sourceExts);
|
|
|
|
|
2009-04-21 19:36:59 +04:00
|
|
|
/**
|
|
|
|
* Check if the given file exists in one of the parent directory of the
|
|
|
|
* given file or directory and if it does, return the name of the file.
|
|
|
|
* Toplevel specifies the top-most directory to where it will look.
|
|
|
|
*/
|
|
|
|
static std::string FileExistsInParentDirectories(const char* fname,
|
|
|
|
const char* directory, const char* toplevel);
|
|
|
|
|
2001-06-21 20:01:18 +04:00
|
|
|
static void Glob(const char *directory, const char *regexp,
|
|
|
|
std::vector<std::string>& files);
|
2001-09-20 18:54:29 +04:00
|
|
|
static void GlobDirs(const char *fullPath, std::vector<std::string>& files);
|
2002-11-05 16:51:40 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Try to find a list of files that match the "simple" globbing
|
|
|
|
* expression. At this point in time the globbing expressions have
|
|
|
|
* to be in form: /directory/partial_file_name*. The * character has
|
|
|
|
* to be at the end of the string and it does not support ?
|
|
|
|
* []... The optional argument type specifies what kind of files you
|
|
|
|
* want to find. 0 means all files, -1 means directories, 1 means
|
|
|
|
* files only. This method returns true if search was succesfull.
|
|
|
|
*/
|
2011-07-28 18:23:13 +04:00
|
|
|
static bool SimpleGlob(const cmStdString& glob,
|
|
|
|
std::vector<cmStdString>& files,
|
2002-11-05 16:51:40 +03:00
|
|
|
int type = 0);
|
2011-07-28 18:23:13 +04:00
|
|
|
|
2003-06-23 16:58:58 +04:00
|
|
|
///! Copy a file.
|
|
|
|
static bool cmCopyFile(const char* source, const char* destination);
|
2011-07-28 18:23:13 +04:00
|
|
|
static bool CopyFileIfDifferent(const char* source,
|
2004-01-26 23:50:38 +03:00
|
|
|
const char* destination);
|
2001-02-23 03:24:43 +03:00
|
|
|
|
2009-04-15 17:57:57 +04:00
|
|
|
/** Rename a file or directory within a single disk volume (atomic
|
|
|
|
if possible). */
|
|
|
|
static bool RenameFile(const char* oldname, const char* newname);
|
|
|
|
|
2007-07-16 18:54:32 +04:00
|
|
|
///! Compute the md5sum of a file
|
|
|
|
static bool ComputeFileMD5(const char* source, char* md5out);
|
|
|
|
|
2008-01-24 22:41:18 +03:00
|
|
|
/** Compute the md5sum of a string. */
|
|
|
|
static std::string ComputeStringMD5(const char* input);
|
|
|
|
|
2001-05-04 19:30:46 +04:00
|
|
|
/**
|
|
|
|
* Run an executable command and put the stdout in output.
|
|
|
|
* A temporary file is created in the binaryDir for storing the
|
|
|
|
* output because windows does not have popen.
|
2001-07-23 19:53:52 +04:00
|
|
|
*
|
|
|
|
* If verbose is false, no user-viewable output from the program
|
|
|
|
* being run will be generated.
|
2002-10-04 18:38:14 +04:00
|
|
|
*
|
|
|
|
* If timeout is specified, the command will be terminated after
|
|
|
|
* timeout expires.
|
2001-05-04 19:30:46 +04:00
|
|
|
*/
|
2011-07-28 18:23:13 +04:00
|
|
|
static bool RunCommand(const char* command, std::string& output,
|
2002-10-04 18:38:14 +04:00
|
|
|
const char* directory = 0,
|
|
|
|
bool verbose = true, int timeout = 0);
|
2001-08-23 19:12:19 +04:00
|
|
|
static bool RunCommand(const char* command, std::string& output,
|
2011-07-28 18:23:13 +04:00
|
|
|
int &retVal, const char* directory = 0,
|
|
|
|
bool verbose = true, int timeout = 0);
|
2003-08-04 06:32:15 +04:00
|
|
|
/**
|
2011-07-26 11:26:18 +04:00
|
|
|
* Run a single executable command
|
2003-08-04 06:32:15 +04:00
|
|
|
*
|
2011-07-26 11:26:18 +04:00
|
|
|
* Output is controlled with outputflag. If outputflag is OUTPUT_NONE, no
|
|
|
|
* user-viewable output from the program being run will be generated.
|
|
|
|
* OUTPUT_MERGE is the legacy behaviour where stdout and stderr are merged
|
2011-07-26 11:36:40 +04:00
|
|
|
* into stdout. OUTPUT_NORMAL passes through the output to stdout/stderr as
|
|
|
|
* it was received.
|
2003-08-04 06:32:15 +04:00
|
|
|
*
|
|
|
|
* If timeout is specified, the command will be terminated after
|
|
|
|
* timeout expires. Timeout is specified in seconds.
|
|
|
|
*
|
|
|
|
* Argument retVal should be a pointer to the location where the
|
2011-07-28 18:23:13 +04:00
|
|
|
* exit code will be stored. If the retVal is not specified and
|
|
|
|
* the program exits with a code other than 0, then the this
|
2003-08-04 06:32:15 +04:00
|
|
|
* function will return false.
|
2004-10-25 21:16:05 +04:00
|
|
|
*
|
|
|
|
* If the command has spaces in the path the caller MUST call
|
|
|
|
* cmSystemTools::ConvertToRunCommandPath on the command before passing
|
|
|
|
* it into this function or it will not work. The command must be correctly
|
2011-07-28 18:23:13 +04:00
|
|
|
* escaped for this to with spaces.
|
2003-08-04 06:32:15 +04:00
|
|
|
*/
|
2011-07-26 11:26:18 +04:00
|
|
|
enum OutputOption
|
|
|
|
{
|
|
|
|
OUTPUT_NONE = 0,
|
2011-07-26 11:36:40 +04:00
|
|
|
OUTPUT_MERGE,
|
|
|
|
OUTPUT_NORMAL
|
2011-07-26 11:26:18 +04:00
|
|
|
};
|
2003-08-04 06:32:15 +04:00
|
|
|
static bool RunSingleCommand(const char* command, std::string* output = 0,
|
2011-07-28 18:23:13 +04:00
|
|
|
int* retVal = 0, const char* dir = 0,
|
2011-07-26 11:26:18 +04:00
|
|
|
OutputOption outputflag = OUTPUT_MERGE,
|
2006-03-10 19:13:15 +03:00
|
|
|
double timeout = 0.0);
|
2011-07-28 18:23:13 +04:00
|
|
|
/**
|
2008-01-01 23:13:41 +03:00
|
|
|
* In this version of RunSingleCommand, command[0] should be
|
|
|
|
* the command to run, and each argument to the command should
|
|
|
|
* be in comand[1]...command[command.size()]
|
|
|
|
*/
|
|
|
|
static bool RunSingleCommand(std::vector<cmStdString> const& command,
|
|
|
|
std::string* output = 0,
|
2011-07-28 18:23:13 +04:00
|
|
|
int* retVal = 0, const char* dir = 0,
|
2011-07-26 11:26:18 +04:00
|
|
|
OutputOption outputflag = OUTPUT_MERGE,
|
2008-01-01 23:13:41 +03:00
|
|
|
double timeout = 0.0);
|
2003-08-08 03:00:53 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse arguments out of a single string command
|
|
|
|
*/
|
|
|
|
static std::vector<cmStdString> ParseArguments(const char* command);
|
2007-02-01 19:45:37 +03:00
|
|
|
|
|
|
|
/** Parse arguments out of a windows command line string. */
|
|
|
|
static void ParseWindowsCommandLine(const char* command,
|
|
|
|
std::vector<std::string>& args);
|
|
|
|
|
2009-07-14 00:22:48 +04:00
|
|
|
/** Parse arguments out of a unix command line string. */
|
|
|
|
static void ParseUnixCommandLine(const char* command,
|
|
|
|
std::vector<std::string>& args);
|
2011-05-18 17:44:28 +04:00
|
|
|
static void ParseUnixCommandLine(const char* command,
|
|
|
|
std::vector<cmStdString>& args);
|
2009-07-14 00:22:48 +04:00
|
|
|
|
2007-02-01 19:45:37 +03:00
|
|
|
/** Compute an escaped version of the given argument for use in a
|
|
|
|
windows shell. See kwsys/System.h.in for details. */
|
|
|
|
static std::string EscapeWindowsShellArgument(const char* arg,
|
|
|
|
int shell_flags);
|
|
|
|
|
2001-11-20 01:52:08 +03:00
|
|
|
static void EnableMessages() { s_DisableMessages = false; }
|
|
|
|
static void DisableMessages() { s_DisableMessages = true; }
|
2001-11-27 02:28:27 +03:00
|
|
|
static void DisableRunCommandOutput() {s_DisableRunCommandOutput = true; }
|
|
|
|
static void EnableRunCommandOutput() {s_DisableRunCommandOutput = false; }
|
2002-09-19 22:35:53 +04:00
|
|
|
static bool GetRunCommandOutput() { return s_DisableRunCommandOutput; }
|
2002-09-25 17:30:49 +04:00
|
|
|
|
|
|
|
/**
|
2013-06-11 11:52:30 +04:00
|
|
|
* Some constants for different file formats.
|
2002-09-25 17:30:49 +04:00
|
|
|
*/
|
2002-11-08 23:46:08 +03:00
|
|
|
enum FileFormat {
|
2002-09-25 17:30:49 +04:00
|
|
|
NO_FILE_FORMAT = 0,
|
|
|
|
C_FILE_FORMAT,
|
|
|
|
CXX_FILE_FORMAT,
|
2004-08-06 22:51:41 +04:00
|
|
|
FORTRAN_FILE_FORMAT,
|
2002-09-25 17:30:49 +04:00
|
|
|
JAVA_FILE_FORMAT,
|
|
|
|
HEADER_FILE_FORMAT,
|
|
|
|
RESOURCE_FILE_FORMAT,
|
|
|
|
DEFINITION_FILE_FORMAT,
|
|
|
|
STATIC_LIBRARY_FILE_FORMAT,
|
|
|
|
SHARED_LIBRARY_FILE_FORMAT,
|
|
|
|
MODULE_FILE_FORMAT,
|
|
|
|
OBJECT_FILE_FORMAT,
|
|
|
|
UNKNOWN_FILE_FORMAT
|
|
|
|
};
|
|
|
|
|
2009-12-21 20:27:04 +03:00
|
|
|
enum CompareOp {
|
|
|
|
OP_LESS,
|
|
|
|
OP_GREATER,
|
|
|
|
OP_EQUAL
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Compare versions
|
|
|
|
*/
|
|
|
|
static bool VersionCompare(CompareOp op, const char* lhs, const char* rhs);
|
|
|
|
|
2002-09-25 17:30:49 +04:00
|
|
|
/**
|
|
|
|
* Determine the file type based on the extension
|
|
|
|
*/
|
2002-11-08 23:46:08 +03:00
|
|
|
static FileFormat GetFileFormat(const char* ext);
|
2002-09-25 17:30:49 +04:00
|
|
|
|
2002-09-28 01:28:15 +04:00
|
|
|
/**
|
|
|
|
* On Windows 9x we need a comspec (command.com) substitute to run
|
|
|
|
* programs correctly. This string has to be constant available
|
|
|
|
* through the running of program. This method does not create a copy.
|
|
|
|
*/
|
|
|
|
static void SetWindows9xComspecSubstitute(const char*);
|
|
|
|
static const char* GetWindows9xComspecSubstitute();
|
|
|
|
|
2002-11-08 23:46:08 +03:00
|
|
|
/** Windows if this is true, the CreateProcess in RunCommand will
|
2011-07-28 18:23:13 +04:00
|
|
|
* not show new consol windows when running programs.
|
2002-11-08 23:46:08 +03:00
|
|
|
*/
|
|
|
|
static void SetRunCommandHideConsole(bool v){s_RunCommandHideConsole = v;}
|
|
|
|
static bool GetRunCommandHideConsole(){ return s_RunCommandHideConsole;}
|
2003-02-06 06:26:55 +03:00
|
|
|
/** Call cmSystemTools::Error with the message m, plus the
|
|
|
|
* result of strerror(errno)
|
|
|
|
*/
|
|
|
|
static void ReportLastSystemError(const char* m);
|
2011-07-28 18:23:13 +04:00
|
|
|
|
2006-04-04 21:04:28 +04:00
|
|
|
/** a general output handler for cmsysProcess */
|
|
|
|
static int WaitForLine(cmsysProcess* process, std::string& line,
|
|
|
|
double timeout,
|
|
|
|
std::vector<char>& out,
|
|
|
|
std::vector<char>& err);
|
2011-07-28 18:23:13 +04:00
|
|
|
|
2003-06-23 16:58:58 +04:00
|
|
|
/** Split a string on its newlines into multiple lines. Returns
|
|
|
|
false only if the last line stored had no newline. */
|
2011-07-28 18:23:13 +04:00
|
|
|
static bool Split(const char* s, std::vector<cmStdString>& l);
|
2003-08-22 00:22:23 +04:00
|
|
|
static void SetForceUnixPaths(bool v)
|
|
|
|
{
|
|
|
|
s_ForceUnixPaths = v;
|
|
|
|
}
|
2004-08-30 21:50:00 +04:00
|
|
|
static bool GetForceUnixPaths()
|
|
|
|
{
|
|
|
|
return s_ForceUnixPaths;
|
|
|
|
}
|
|
|
|
|
2004-06-24 00:34:38 +04:00
|
|
|
// ConvertToOutputPath use s_ForceUnixPaths
|
2003-08-22 00:22:23 +04:00
|
|
|
static std::string ConvertToOutputPath(const char* path);
|
2007-03-08 19:49:26 +03:00
|
|
|
static void ConvertToOutputSlashes(std::string& path);
|
|
|
|
|
2004-06-24 00:34:38 +04:00
|
|
|
// ConvertToRunCommandPath does not use s_ForceUnixPaths and should
|
2011-07-28 18:23:13 +04:00
|
|
|
// be used when RunCommand is called from cmake, because the
|
2004-06-24 00:34:38 +04:00
|
|
|
// running cmake needs paths to be in its format
|
|
|
|
static std::string ConvertToRunCommandPath(const char* path);
|
2003-10-30 03:49:50 +03:00
|
|
|
//! Check if the first string ends with the second one.
|
|
|
|
static bool StringEndsWith(const char* str1, const char* str2);
|
2011-07-28 18:23:13 +04:00
|
|
|
|
|
|
|
/** compute the relative path from local to remote. local must
|
|
|
|
be a directory. remote can be a file or a directory.
|
2004-10-13 19:37:55 +04:00
|
|
|
Both remote and local must be full paths. Basically, if
|
|
|
|
you are in directory local and you want to access the file in remote
|
|
|
|
what is the relative path to do that. For example:
|
|
|
|
/a/b/c/d to /a/b/c1/d1 -> ../../c1/d1
|
|
|
|
from /usr/src to /usr/src/test/blah/foo.cpp -> test/blah/foo.cpp
|
|
|
|
*/
|
2003-12-22 20:24:26 +03:00
|
|
|
static std::string RelativePath(const char* local, const char* remote);
|
2006-02-07 18:23:17 +03:00
|
|
|
|
2013-06-19 16:35:23 +04:00
|
|
|
/** Joins two paths while collapsing x/../ parts
|
|
|
|
* For example CollapseCombinedPath("a/b/c", "../../d") results in "a/d"
|
|
|
|
*/
|
|
|
|
static std::string CollapseCombinedPath(std::string const& dir,
|
|
|
|
std::string const& file);
|
|
|
|
|
2006-03-17 23:46:20 +03:00
|
|
|
#ifdef CMAKE_BUILD_WITH_CMAKE
|
2006-03-17 19:44:07 +03:00
|
|
|
/** Remove an environment variable */
|
|
|
|
static bool UnsetEnv(const char* value);
|
|
|
|
|
|
|
|
/** Get the list of all environment variables */
|
2006-03-17 19:14:14 +03:00
|
|
|
static std::vector<std::string> GetEnvironmentVariables();
|
2008-11-26 22:38:43 +03:00
|
|
|
|
2012-04-25 00:24:17 +04:00
|
|
|
/** Append multiple variables to the current environment. */
|
|
|
|
static void AppendEnv(std::vector<std::string> const& env);
|
2009-12-23 22:34:46 +03:00
|
|
|
|
|
|
|
/** Helper class to save and restore the environment.
|
|
|
|
Instantiate this class as an automatic variable on
|
|
|
|
the stack. Its constructor saves a copy of the current
|
|
|
|
environment and then its destructor restores the
|
|
|
|
original environment. */
|
|
|
|
class SaveRestoreEnvironment
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SaveRestoreEnvironment();
|
|
|
|
virtual ~SaveRestoreEnvironment();
|
|
|
|
private:
|
|
|
|
std::vector<std::string> Env;
|
|
|
|
};
|
2006-03-17 23:46:20 +03:00
|
|
|
#endif
|
2004-01-26 22:55:57 +03:00
|
|
|
|
2006-02-15 18:22:55 +03:00
|
|
|
/** Setup the environment to enable VS 8 IDE output. */
|
|
|
|
static void EnableVSConsoleOutput();
|
|
|
|
|
2005-12-29 00:30:55 +03:00
|
|
|
/** Create tar */
|
2006-03-10 19:13:15 +03:00
|
|
|
static bool ListTar(const char* outFileName,
|
2006-05-12 21:53:21 +04:00
|
|
|
bool gzip, bool verbose);
|
2006-03-10 19:13:15 +03:00
|
|
|
static bool CreateTar(const char* outFileName,
|
|
|
|
const std::vector<cmStdString>& files, bool gzip,
|
2009-11-05 23:00:15 +03:00
|
|
|
bool bzip2, bool verbose);
|
2011-07-28 18:23:13 +04:00
|
|
|
static bool ExtractTar(const char* inFileName, bool gzip,
|
2006-03-10 19:13:15 +03:00
|
|
|
bool verbose);
|
2007-09-11 19:21:36 +04:00
|
|
|
// This should be called first thing in main
|
|
|
|
// it will keep child processes from inheriting the
|
|
|
|
// stdin and stdout of this process. This is important
|
|
|
|
// if you want to be able to kill child processes and
|
|
|
|
// not get stuck waiting for all the output on the pipes.
|
|
|
|
static void DoNotInheritStdPipes();
|
2007-10-05 17:46:28 +04:00
|
|
|
|
|
|
|
/** Copy the file create/access/modify times from the file named by
|
|
|
|
the first argument to that named by the second. */
|
|
|
|
static bool CopyFileTime(const char* fromFile, const char* toFile);
|
|
|
|
|
2008-04-14 19:43:45 +04:00
|
|
|
/** Save and restore file times. */
|
|
|
|
static cmSystemToolsFileTime* FileTimeNew();
|
|
|
|
static void FileTimeDelete(cmSystemToolsFileTime*);
|
|
|
|
static bool FileTimeGet(const char* fname, cmSystemToolsFileTime* t);
|
|
|
|
static bool FileTimeSet(const char* fname, cmSystemToolsFileTime* t);
|
|
|
|
|
2011-05-17 18:07:26 +04:00
|
|
|
/** Random seed generation. */
|
|
|
|
static unsigned int RandomSeed();
|
|
|
|
|
2007-12-14 01:56:50 +03:00
|
|
|
/** Find the directory containing the running executable. Save it
|
|
|
|
in a global location to be queried by GetExecutableDirectory
|
|
|
|
later. */
|
|
|
|
static void FindExecutableDirectory(const char* argv0);
|
|
|
|
|
|
|
|
/** Get the directory containing the currently running executable. */
|
|
|
|
static const char* GetExecutableDirectory();
|
|
|
|
|
2007-12-20 01:15:41 +03:00
|
|
|
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
|
|
|
/** Echo a message in color using KWSys's Terminal cprintf. */
|
|
|
|
static void MakefileColorEcho(int color, const char* message,
|
2007-12-20 17:35:14 +03:00
|
|
|
bool newLine, bool enabled);
|
2007-12-20 01:15:41 +03:00
|
|
|
#endif
|
|
|
|
|
2008-02-21 21:58:41 +03:00
|
|
|
/** Try to guess the soname of a shared library. */
|
|
|
|
static bool GuessLibrarySOName(std::string const& fullPath,
|
|
|
|
std::string& soname);
|
|
|
|
|
2013-04-27 08:04:44 +04:00
|
|
|
/** Try to guess the install name of a shared library. */
|
|
|
|
static bool GuessLibraryInstallName(std::string const& fullPath,
|
|
|
|
std::string& soname);
|
|
|
|
|
2008-03-01 20:51:07 +03:00
|
|
|
/** Try to set the RPATH in an ELF binary. */
|
|
|
|
static bool ChangeRPath(std::string const& file,
|
2008-03-02 22:35:23 +03:00
|
|
|
std::string const& oldRPath,
|
2008-03-01 20:51:07 +03:00
|
|
|
std::string const& newRPath,
|
2008-05-27 18:22:03 +04:00
|
|
|
std::string* emsg = 0,
|
|
|
|
bool* changed = 0);
|
2008-03-01 20:51:07 +03:00
|
|
|
|
2008-04-14 23:02:34 +04:00
|
|
|
/** Try to remove the RPATH from an ELF binary. */
|
2008-08-14 17:53:26 +04:00
|
|
|
static bool RemoveRPath(std::string const& file, std::string* emsg = 0,
|
|
|
|
bool* removed = 0);
|
2008-04-14 23:02:34 +04:00
|
|
|
|
|
|
|
/** Check whether the RPATH in an ELF binary contains the path
|
|
|
|
given. */
|
|
|
|
static bool CheckRPath(std::string const& file,
|
|
|
|
std::string const& newRPath);
|
|
|
|
|
2010-06-04 22:32:08 +04:00
|
|
|
/** Remove a directory; repeat a few times in case of locked files. */
|
|
|
|
static bool RepeatedRemoveDirectory(const char* dir);
|
|
|
|
|
2011-02-15 16:34:14 +03:00
|
|
|
/** Tokenize a string */
|
|
|
|
static std::vector<std::string> tokenize(const std::string& str,
|
|
|
|
const std::string& sep);
|
2001-02-23 03:24:43 +03:00
|
|
|
private:
|
2003-08-22 00:22:23 +04:00
|
|
|
static bool s_ForceUnixPaths;
|
2002-11-08 23:46:08 +03:00
|
|
|
static bool s_RunCommandHideConsole;
|
2001-02-23 03:24:43 +03:00
|
|
|
static bool s_ErrorOccured;
|
2003-01-21 20:50:48 +03:00
|
|
|
static bool s_FatalErrorOccured;
|
2001-11-20 01:52:08 +03:00
|
|
|
static bool s_DisableMessages;
|
2001-11-27 02:28:27 +03:00
|
|
|
static bool s_DisableRunCommandOutput;
|
2001-10-29 18:19:34 +03:00
|
|
|
static ErrorCallback s_ErrorCallback;
|
2004-01-07 19:24:22 +03:00
|
|
|
static StdoutCallback s_StdoutCallback;
|
2012-01-02 22:07:43 +04:00
|
|
|
static InterruptCallback s_InterruptCallback;
|
2002-09-18 22:18:43 +04:00
|
|
|
static void* s_ErrorCallbackClientData;
|
2004-01-07 19:24:22 +03:00
|
|
|
static void* s_StdoutCallbackClientData;
|
2012-01-02 22:07:43 +04:00
|
|
|
static void* s_InterruptCallbackClientData;
|
2002-09-28 01:28:15 +04:00
|
|
|
|
|
|
|
static std::string s_Windows9xComspecSubstitute;
|
2000-08-29 23:26:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|