2001-01-11 22:47:38 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-01-11 22:47:38 +03:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-01-11 22:47:38 +03:00
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
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.
|
2001-01-11 22:47:38 +03:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
/**
|
|
|
|
* Include header files as a function of the build process, compiler,
|
|
|
|
* and operating system.
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
#ifndef cmStandardIncludes_h
|
|
|
|
#define cmStandardIncludes_h
|
|
|
|
|
2003-02-14 05:57:05 +03:00
|
|
|
#define CMAKE_TO_STRING(x) CMAKE_TO_STRING0(x)
|
|
|
|
#define CMAKE_TO_STRING0(x) #x
|
|
|
|
|
2003-03-26 18:45:23 +03:00
|
|
|
// include configure generated header to define CMAKE_NO_ANSI_STREAM_HEADERS,
|
|
|
|
// CMAKE_NO_STD_NAMESPACE, and other macros.
|
2001-02-23 03:24:43 +03:00
|
|
|
#include "cmConfigure.h"
|
2001-01-05 19:41:20 +03:00
|
|
|
|
2003-07-08 07:20:30 +04:00
|
|
|
#define CMake_VERSION \
|
|
|
|
CMAKE_TO_STRING(CMake_VERSION_MAJOR) "." \
|
|
|
|
CMAKE_TO_STRING(CMake_VERSION_MINOR)
|
|
|
|
|
|
|
|
#define CMake_VERSION_FULL \
|
2003-02-14 05:57:05 +03:00
|
|
|
CMAKE_TO_STRING(CMake_VERSION_MAJOR) "." \
|
|
|
|
CMAKE_TO_STRING(CMake_VERSION_MINOR) "." \
|
|
|
|
CMAKE_TO_STRING(CMake_VERSION_PATCH)
|
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning ( disable : 4786 )
|
2001-07-06 17:22:41 +04:00
|
|
|
#pragma warning ( disable : 4503 )
|
2001-08-08 19:54:46 +04:00
|
|
|
#define CMAKE_NO_ANSI_FOR_SCOPE
|
2001-01-05 19:41:20 +03:00
|
|
|
#endif
|
|
|
|
|
2001-03-21 23:52:29 +03:00
|
|
|
#ifdef __ICL
|
|
|
|
#pragma warning ( disable : 985 )
|
|
|
|
#endif
|
|
|
|
|
2005-04-26 22:11:08 +04:00
|
|
|
#include <stdarg.h> // Work-around for SGI MIPSpro 7.4.2m header bug
|
|
|
|
|
2005-05-03 22:28:26 +04:00
|
|
|
// This is a hack to prevent warnings about these functions being
|
|
|
|
// declared but not referenced.
|
|
|
|
#if defined(__sgi) && !defined(__GNUC__)
|
|
|
|
# include <sys/termios.h>
|
|
|
|
class cmStandardIncludesHack
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
Ref1 = sizeof(cfgetospeed(0)),
|
|
|
|
Ref2 = sizeof(cfgetispeed(0)),
|
|
|
|
Ref3 = sizeof(tcgetattr(0, 0)),
|
|
|
|
Ref4 = sizeof(tcsetattr(0, 0, 0)),
|
|
|
|
Ref5 = sizeof(cfsetospeed(0,0)),
|
|
|
|
Ref6 = sizeof(cfsetispeed(0,0))
|
|
|
|
};
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
#ifndef CMAKE_NO_ANSI_STREAM_HEADERS
|
2002-06-19 23:21:49 +04:00
|
|
|
# include <fstream>
|
|
|
|
# include <iostream>
|
2005-05-31 01:26:38 +04:00
|
|
|
# include <iomanip>
|
2001-01-05 19:41:20 +03:00
|
|
|
#else
|
2002-06-19 23:21:49 +04:00
|
|
|
# include <fstream.h>
|
|
|
|
# include <iostream.h>
|
2005-05-31 01:26:38 +04:00
|
|
|
# include <iomanip.h>
|
2002-06-19 23:21:49 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(CMAKE_NO_ANSI_STRING_STREAM)
|
|
|
|
# include <sstream>
|
|
|
|
#elif !defined(CMAKE_NO_ANSI_STREAM_HEADERS)
|
|
|
|
# include <strstream>
|
|
|
|
#else
|
|
|
|
# include <strstream.h>
|
2001-01-05 19:41:20 +03:00
|
|
|
#endif
|
|
|
|
|
2001-08-08 19:54:46 +04:00
|
|
|
// we must have stl with the standard include style
|
2001-01-05 19:41:20 +03:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <iterator>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <functional>
|
|
|
|
#include <map>
|
2001-02-13 03:49:52 +03:00
|
|
|
#include <list>
|
2001-04-24 00:40:29 +04:00
|
|
|
#include <set>
|
2005-06-01 16:25:21 +04:00
|
|
|
#include <deque>
|
2001-01-05 19:41:20 +03:00
|
|
|
|
2001-08-08 19:54:46 +04:00
|
|
|
// include the "c" string header
|
2001-06-22 20:18:10 +04:00
|
|
|
#include <string.h>
|
2003-08-08 19:19:17 +04:00
|
|
|
#include <stdio.h>
|
2005-03-11 18:03:56 +03:00
|
|
|
#include <stdlib.h>
|
2001-06-22 20:18:10 +04:00
|
|
|
|
2006-01-24 23:48:05 +03:00
|
|
|
// Borland C++ defines several of the stdlib.h and string.h symbols in
|
|
|
|
// sub-headers search.h and mem.h. These sub-headers have using
|
|
|
|
// declarations to pull functions from the std namespace to the global
|
|
|
|
// namespace, but they are defined only if the header was not included
|
|
|
|
// through the C++-style cstdlib or cstring header. These outer
|
|
|
|
// headers are included by the streams library in C++-style and
|
|
|
|
// include blockers are put in place that prevent including the
|
|
|
|
// C-style versions from ever including the sub-headers. Therefore we
|
|
|
|
// have to include the sub-headers here to get the using declarations.
|
|
|
|
#if defined(__BORLANDC__)
|
|
|
|
# include <mem.h> /* mem... functions from string.h */
|
|
|
|
# include <search.h> /* search functions from stdlib.h */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2002-10-03 01:31:59 +04:00
|
|
|
#if !defined(_WIN32) && defined(__COMO__)
|
|
|
|
// Hack for como strict mode to avoid defining _SVID_SOURCE or _BSD_SOURCE.
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
extern FILE *popen (__const char *__command, __const char *__modes) __THROW;
|
|
|
|
extern int pclose (FILE *__stream) __THROW;
|
|
|
|
extern char *realpath (__const char *__restrict __name,
|
|
|
|
char *__restrict __resolved) __THROW;
|
|
|
|
extern char *strdup (__const char *__s) __THROW;
|
|
|
|
extern int putenv (char *__string) __THROW;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-08-08 19:54:46 +04:00
|
|
|
// if std:: is not supported, then just #define it away
|
2001-01-05 19:41:20 +03:00
|
|
|
#ifdef CMAKE_NO_STD_NAMESPACE
|
|
|
|
#define std
|
|
|
|
#endif
|
|
|
|
|
2001-08-08 19:54:46 +04:00
|
|
|
// if the compiler does not support ansi for scoping of vars use a
|
|
|
|
// #define hack
|
|
|
|
#ifdef CMAKE_NO_ANSI_FOR_SCOPE
|
|
|
|
#define for if(false) {} else for
|
|
|
|
#endif
|
2001-01-05 19:41:20 +03:00
|
|
|
|
2001-08-07 23:49:57 +04:00
|
|
|
// check for the 720 compiler on the SGI
|
|
|
|
// which has some strange properties that I don't think are worth
|
|
|
|
// checking for in a general way in configure
|
|
|
|
#if defined(__sgi) && !defined(__GNUC__)
|
|
|
|
# if (_COMPILER_VERSION >= 730)
|
|
|
|
# define CM_SGI_CC_730
|
|
|
|
# elif (_COMPILER_VERSION >= 720)
|
2001-11-20 16:28:54 +03:00
|
|
|
# define CM_HAS_STD_BUT_NOT_FOR_IOSTREAM
|
2001-08-07 23:49:57 +04:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2001-11-20 16:28:54 +03:00
|
|
|
#ifdef __DECCXX_VER
|
2002-01-30 19:23:07 +03:00
|
|
|
# if __DECCXX_VER <= 60390008
|
2001-11-20 16:28:54 +03:00
|
|
|
# define CM_HAS_STD_BUT_NOT_FOR_IOSTREAM
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2004-01-27 17:05:01 +03:00
|
|
|
#if defined( _MSC_VER )
|
2004-01-26 23:03:09 +03:00
|
|
|
typedef unsigned short mode_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2001-11-20 16:28:54 +03:00
|
|
|
#ifdef CM_HAS_STD_BUT_NOT_FOR_IOSTREAM
|
|
|
|
// some compilers have std:: but not for the stream library,
|
2001-08-07 23:49:57 +04:00
|
|
|
// so we have to bring it into the std namespace by hand.
|
|
|
|
namespace std {
|
|
|
|
using ::ostream;
|
|
|
|
using ::istream;
|
|
|
|
using ::ios;
|
|
|
|
using ::cout;
|
|
|
|
using ::cerr;
|
|
|
|
using ::cin;
|
|
|
|
using ::ifstream;
|
|
|
|
using ::ofstream;
|
2002-06-19 23:21:49 +04:00
|
|
|
|
|
|
|
#if !defined(CMAKE_NO_ANSI_STRING_STREAM)
|
2002-06-21 18:31:37 +04:00
|
|
|
using ::ostringstream;
|
2002-10-11 16:36:20 +04:00
|
|
|
using ::istringstream;
|
2002-06-19 23:21:49 +04:00
|
|
|
#else
|
2002-06-21 18:31:37 +04:00
|
|
|
using ::ostrstream;
|
2002-10-11 16:36:20 +04:00
|
|
|
using ::istrstream;
|
2002-06-19 23:21:49 +04:00
|
|
|
#endif
|
|
|
|
|
2001-08-07 23:49:57 +04:00
|
|
|
using ::endl;
|
|
|
|
using ::ends;
|
|
|
|
using ::flush;
|
2005-05-31 01:26:38 +04:00
|
|
|
using ::dec;
|
|
|
|
using ::hex;
|
|
|
|
using ::setw;
|
|
|
|
using ::setiosflags;
|
|
|
|
using ::setfill;
|
|
|
|
using ::setprecision;
|
2001-08-07 23:49:57 +04:00
|
|
|
}
|
|
|
|
// The string class is missing these operators so add them
|
2005-04-07 00:15:13 +04:00
|
|
|
#if !defined(cmsys_STL_STRING_NEQ_CHAR_DEFINED)
|
|
|
|
# define cmsys_STL_STRING_NO_NEQ_CHAR
|
2001-08-07 23:49:57 +04:00
|
|
|
inline bool operator!=(std::string const& a, const char* b)
|
|
|
|
{ return !(a==std::string(b)); }
|
2005-04-07 00:15:13 +04:00
|
|
|
#endif
|
2001-08-07 23:49:57 +04:00
|
|
|
|
|
|
|
inline bool operator==(std::string const& a, const char* b)
|
|
|
|
{ return (a==std::string(b)); }
|
2001-08-08 19:54:46 +04:00
|
|
|
# endif // end CM_SGI_CC_720
|
2001-08-07 23:49:57 +04:00
|
|
|
|
2005-05-03 22:58:13 +04:00
|
|
|
#if defined(__sgi) && !defined(__GNUC__)
|
|
|
|
# pragma set woff 1375 /* base class destructor not virtual */
|
|
|
|
#endif
|
|
|
|
|
2001-09-15 00:26:56 +04:00
|
|
|
// use this class to shrink the size of symbols in .o files
|
2001-08-24 00:00:46 +04:00
|
|
|
// std::string is really basic_string<....lots of stuff....>
|
|
|
|
// when combined with a map or set, the symbols can be > 2000 chars!
|
2006-02-07 18:11:40 +03:00
|
|
|
#include <cmsys/String.hxx>
|
|
|
|
typedef cmsys::String cmStdString;
|
2002-06-19 23:21:49 +04:00
|
|
|
|
2002-10-10 18:43:59 +04:00
|
|
|
// Define cmOStringStream and cmIStringStream wrappers to hide
|
|
|
|
// differences between std::stringstream and the old strstream.
|
2002-06-19 23:21:49 +04:00
|
|
|
#if !defined(CMAKE_NO_ANSI_STRING_STREAM)
|
2002-10-10 18:43:59 +04:00
|
|
|
class cmOStringStream: public std::ostringstream
|
2002-06-19 23:21:49 +04:00
|
|
|
{
|
|
|
|
public:
|
2002-10-10 18:43:59 +04:00
|
|
|
cmOStringStream() {}
|
2002-06-19 23:21:49 +04:00
|
|
|
private:
|
2002-10-10 18:43:59 +04:00
|
|
|
cmOStringStream(const cmOStringStream&);
|
|
|
|
void operator=(const cmOStringStream&);
|
2002-06-19 23:21:49 +04:00
|
|
|
};
|
2002-10-10 18:43:59 +04:00
|
|
|
class cmIStringStream: public std::istringstream
|
2002-10-10 16:11:05 +04:00
|
|
|
{
|
|
|
|
public:
|
2002-10-10 17:41:58 +04:00
|
|
|
typedef std::istringstream Superclass;
|
2002-10-10 18:43:59 +04:00
|
|
|
cmIStringStream() {}
|
|
|
|
cmIStringStream(const std::string& s): Superclass(s) {}
|
2002-10-10 16:11:05 +04:00
|
|
|
private:
|
2002-10-10 18:43:59 +04:00
|
|
|
cmIStringStream(const cmIStringStream&);
|
|
|
|
void operator=(const cmIStringStream&);
|
2002-10-10 16:11:05 +04:00
|
|
|
};
|
2002-06-19 23:21:49 +04:00
|
|
|
#else
|
2002-10-10 18:43:59 +04:00
|
|
|
class cmOStrStreamCleanup
|
2002-06-19 23:21:49 +04:00
|
|
|
{
|
|
|
|
public:
|
2002-10-10 18:43:59 +04:00
|
|
|
cmOStrStreamCleanup(std::ostrstream& ostr): m_OStrStream(ostr) {}
|
|
|
|
~cmOStrStreamCleanup() { m_OStrStream.rdbuf()->freeze(0); }
|
|
|
|
static void IgnoreUnusedVariable(const cmOStrStreamCleanup&) {}
|
2002-06-19 23:21:49 +04:00
|
|
|
protected:
|
2002-10-10 18:43:59 +04:00
|
|
|
std::ostrstream& m_OStrStream;
|
2002-06-19 23:21:49 +04:00
|
|
|
};
|
|
|
|
|
2002-10-10 18:43:59 +04:00
|
|
|
class cmOStringStream: public std::ostrstream
|
2002-06-19 23:21:49 +04:00
|
|
|
{
|
|
|
|
public:
|
2002-06-20 18:20:44 +04:00
|
|
|
typedef std::ostrstream Superclass;
|
2002-10-10 18:43:59 +04:00
|
|
|
cmOStringStream() {}
|
2002-06-19 23:21:49 +04:00
|
|
|
std::string str()
|
|
|
|
{
|
2002-10-10 18:43:59 +04:00
|
|
|
cmOStrStreamCleanup cleanup(*this);
|
|
|
|
cmOStrStreamCleanup::IgnoreUnusedVariable(cleanup);
|
|
|
|
int pcount = this->pcount();
|
|
|
|
const char* ptr = this->Superclass::str();
|
|
|
|
return std::string(ptr?ptr:"", pcount);
|
2002-06-19 23:21:49 +04:00
|
|
|
}
|
|
|
|
private:
|
2002-10-10 18:43:59 +04:00
|
|
|
cmOStringStream(const cmOStringStream&);
|
|
|
|
void operator=(const cmOStringStream&);
|
2002-06-19 23:21:49 +04:00
|
|
|
};
|
2002-10-10 18:43:59 +04:00
|
|
|
|
|
|
|
class cmIStringStream: private std::string, public std::istrstream
|
2002-10-10 16:11:05 +04:00
|
|
|
{
|
|
|
|
public:
|
2002-10-10 18:43:59 +04:00
|
|
|
typedef std::string StdString;
|
|
|
|
typedef std::istrstream IStrStream;
|
2002-11-08 23:46:08 +03:00
|
|
|
cmIStringStream(): StdString(), IStrStream(StdString::c_str()) {}
|
2002-10-10 18:43:59 +04:00
|
|
|
cmIStringStream(const std::string& s):
|
2002-11-08 23:46:08 +03:00
|
|
|
StdString(s), IStrStream(StdString::c_str()) {}
|
2002-10-10 18:43:59 +04:00
|
|
|
std::string str() const { return *this; }
|
|
|
|
void str(const std::string& s)
|
|
|
|
{
|
|
|
|
// Very dangerous. If this throws, the object is hosed. When the
|
|
|
|
// destructor is later called, the program is hosed too.
|
|
|
|
this->~cmIStringStream();
|
|
|
|
new (this) cmIStringStream(s);
|
|
|
|
}
|
2002-10-10 16:11:05 +04:00
|
|
|
private:
|
2002-10-10 18:43:59 +04:00
|
|
|
cmIStringStream(const cmIStringStream&);
|
|
|
|
void operator=(const cmIStringStream&);
|
2002-10-10 16:11:05 +04:00
|
|
|
};
|
2002-06-19 23:21:49 +04:00
|
|
|
#endif
|
|
|
|
|
2004-04-29 22:51:08 +04:00
|
|
|
/* Poison this operator to avoid common mistakes. */
|
|
|
|
extern void operator << (std::ostream&, const cmOStringStream&);
|
|
|
|
|
2003-02-14 18:53:37 +03:00
|
|
|
/** Standard documentation entry for cmDocumentation's formatting. */
|
|
|
|
struct cmDocumentationEntry
|
|
|
|
{
|
|
|
|
const char* name;
|
|
|
|
const char* brief;
|
|
|
|
const char* full;
|
|
|
|
};
|
|
|
|
|
2005-02-22 16:22:38 +03:00
|
|
|
/** Data structure to represent a single command line. */
|
|
|
|
class cmCustomCommandLine: public std::vector<std::string>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef std::vector<std::string> Superclass;
|
|
|
|
typedef Superclass::iterator iterator;
|
|
|
|
typedef Superclass::const_iterator const_iterator;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Data structure to represent a list of command lines. */
|
|
|
|
class cmCustomCommandLines: public std::vector<cmCustomCommandLine>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef std::vector<cmCustomCommandLine> Superclass;
|
|
|
|
typedef Superclass::iterator iterator;
|
|
|
|
typedef Superclass::const_iterator const_iterator;
|
|
|
|
};
|
|
|
|
|
2005-05-03 22:58:13 +04:00
|
|
|
#if defined(__sgi) && !defined(__GNUC__)
|
|
|
|
# pragma reset woff 1375 /* base class destructor not virtual */
|
|
|
|
#endif
|
|
|
|
|
2005-06-17 21:04:56 +04:00
|
|
|
// All subclasses of cmCommand or cmCTestGenericHandler should invoke this macro.
|
|
|
|
#define cmTypeMacro(thisClass,superclass) \
|
|
|
|
virtual const char* GetNameOfClass() { return #thisClass; } \
|
|
|
|
typedef superclass Superclass; \
|
|
|
|
static bool IsTypeOf(const char *type) \
|
|
|
|
{ \
|
|
|
|
if ( !strcmp(#thisClass,type) ) \
|
|
|
|
{ \
|
|
|
|
return true; \
|
|
|
|
} \
|
|
|
|
return Superclass::IsTypeOf(type); \
|
|
|
|
} \
|
|
|
|
virtual bool IsA(const char *type) \
|
|
|
|
{ \
|
|
|
|
return thisClass::IsTypeOf(type); \
|
|
|
|
} \
|
|
|
|
static thisClass* SafeDownCast(cmObject *c) \
|
|
|
|
{ \
|
|
|
|
if ( c && c->IsA(#thisClass) ) \
|
|
|
|
{ \
|
|
|
|
return (thisClass *)c; \
|
|
|
|
} \
|
|
|
|
return 0;\
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
#endif
|