CMake/Source/cmSystemTools.h

99 lines
2.6 KiB
C
Raw Normal View History

/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2000 National Library of Medicine
All rights reserved.
See COPYRIGHT.txt for copyright details.
=========================================================================*/
#ifndef cmSystemTools_h
#define cmSystemTools_h
#include "cmStandardIncludes.h"
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.
*/
class cmSystemTools
{
public:
/**
* Make a new directory if it is not there. This function
* can make a full path even if none of the directories existed
* prior to calling this function.
*/
static bool MakeDirectory(const char* path);
2001-01-11 22:47:38 +03:00
/**
2001-01-11 22:47:38 +03:00
* Replace replace all occurances of the string in
* the source string.
*/
static void ReplaceString(std::string& source,
const char* replace,
const char* with);
2001-01-11 22:47:38 +03:00
/**
2001-01-11 22:47:38 +03:00
* Replace Windows file system slashes with Unix-style slashes.
*/
static void ConvertToUnixSlashes(std::string& path);
/**
2001-01-11 22:47:38 +03:00
* Return true if a file exists in the current directory.
*/
static bool FileExists(const char* filename);
2001-01-11 22:47:38 +03:00
/**
2001-01-11 22:47:38 +03:00
* Return the number of times the given expression occurs in the file
* specified by the concatenation of dir/file.
*/
static int Grep(const char* dir, const char* file, const char* expression);
/**
2001-01-11 22:47:38 +03:00
* Convert a path containing a cygwin drive specifier to its natural
* equivalent.
*/
static void ConvertCygwinPath(std::string& pathname);
/**
2001-01-18 19:20:24 +03:00
* Read a CMake command (or function) from an input file. This
* returns the name of the function and a list of its
* arguments.
*/
static bool ParseFunction(std::ifstream&,
std::string& name,
std::vector<std::string>& arguments);
2001-01-11 22:47:38 +03:00
/**
2001-01-11 22:47:38 +03:00
* Extract white-space separated arguments from a string.
* Double quoted strings are accepted with spaces.
* This is called by ParseFunction.
*/
static void GetArguments(std::string& line,
std::vector<std::string>& arguments);
2001-01-11 22:47:38 +03:00
/**
* Add the paths from the environment variable PATH to the
* string vector passed in.
*/
static void GetPath(std::vector<std::string>& path);
/**
* Display an error message.
*/
static void Error(const char* m, const char* m2=0 );
};
#endif