2000-08-29 23:26:29 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
/**
|
2000-09-12 13:30:35 +04:00
|
|
|
* cmSystemTools - a collection of useful functions for CMake.
|
2000-08-29 23:26:29 +04:00
|
|
|
*/
|
2000-09-12 13:30:35 +04:00
|
|
|
#ifndef cmSystemTools_h
|
|
|
|
#define cmSystemTools_h
|
2000-08-29 23:26:29 +04:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning ( disable : 4786 )
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <string>
|
2000-09-12 13:30:35 +04:00
|
|
|
#include <vector>
|
|
|
|
#include <fstream>
|
2000-08-29 23:26:29 +04:00
|
|
|
|
|
|
|
class cmSystemTools
|
|
|
|
{
|
|
|
|
public:
|
2000-09-12 13:30:35 +04:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2000-08-29 23:26:29 +04:00
|
|
|
static bool MakeDirectory(const char* path);
|
2000-09-12 13:30:35 +04:00
|
|
|
/**
|
|
|
|
* Replace replace all occurances of the string in in
|
|
|
|
* souce string.
|
|
|
|
*/
|
2000-08-29 23:26:29 +04:00
|
|
|
static void ReplaceString(std::string& source,
|
|
|
|
const char* replace,
|
|
|
|
const char* with);
|
2000-09-12 13:30:35 +04:00
|
|
|
/**
|
|
|
|
* Remove extra spaces and the trailing \ from a string.
|
|
|
|
*/
|
|
|
|
static std::string CleanUpName(const char* name);
|
|
|
|
/**
|
|
|
|
* Replace windows slashes with unix style slashes
|
|
|
|
*/
|
|
|
|
static void ConvertToUnixSlashes(std::string& path);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return true if a file exists
|
|
|
|
*/
|
|
|
|
static bool FileExists(const char* filename);
|
2000-09-27 23:01:19 +04:00
|
|
|
/**
|
|
|
|
* Return the number of times expression occurs in file in dir
|
|
|
|
*/
|
|
|
|
static int Grep(const char* dir, const char* file, const char* expression);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extract the right hand side of an asignment varibale = value
|
|
|
|
*/
|
|
|
|
static std::string ExtractVariable(const char* varible,
|
|
|
|
const char* line);
|
|
|
|
|
2000-09-12 13:30:35 +04:00
|
|
|
/**
|
|
|
|
* Read a list from a file into the array of strings.
|
|
|
|
* This function assumes that the first line of the
|
|
|
|
* list has been read. For example: NAME = \ was already
|
|
|
|
* read in. The reading stops when there are no more
|
|
|
|
* continuation characters.
|
|
|
|
*/
|
|
|
|
static void ReadList(std::vector<std::string>& stringList,
|
|
|
|
std::ifstream& fin);
|
2000-08-29 23:26:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|