2001-04-20 01:39:03 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-04-20 01:39:03 +04: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-04-20 01:39:03 +04: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-04-20 01:39:03 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmIfCommand_h
|
|
|
|
#define cmIfCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
#include "cmFunctionBlocker.h"
|
|
|
|
|
|
|
|
/** \class cmIfFunctionBlocker
|
|
|
|
* \brief subclass of function blocker
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class cmIfFunctionBlocker : public cmFunctionBlocker
|
|
|
|
{
|
|
|
|
public:
|
2008-01-23 18:28:26 +03:00
|
|
|
cmIfFunctionBlocker() {
|
|
|
|
this->HasRun = false; this->ScopeDepth = 0; this->Executing = false;}
|
2001-04-23 18:23:24 +04:00
|
|
|
virtual ~cmIfFunctionBlocker() {}
|
2002-12-12 02:13:33 +03:00
|
|
|
virtual bool IsFunctionBlocked(const cmListFileFunction& lff,
|
2008-01-23 18:28:26 +03:00
|
|
|
cmMakefile &mf,
|
|
|
|
cmExecutionStatus &);
|
2002-12-12 02:13:33 +03:00
|
|
|
virtual bool ShouldRemove(const cmListFileFunction& lff,
|
2001-07-26 00:53:13 +04:00
|
|
|
cmMakefile &mf);
|
|
|
|
virtual void ScopeEnded(cmMakefile &mf);
|
2001-05-04 16:46:05 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
std::vector<cmListFileArgument> Args;
|
2008-01-23 18:28:26 +03:00
|
|
|
std::vector<cmListFileFunction> Functions;
|
2006-03-15 19:02:08 +03:00
|
|
|
bool IsBlocking;
|
2006-09-22 19:23:51 +04:00
|
|
|
bool HasRun;
|
2006-12-12 18:07:20 +03:00
|
|
|
unsigned int ScopeDepth;
|
2008-01-23 18:28:26 +03:00
|
|
|
bool Executing;
|
2001-04-20 01:39:03 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/** \class cmIfCommand
|
|
|
|
* \brief starts an if block
|
|
|
|
*
|
|
|
|
* cmIfCommand starts an if block
|
|
|
|
*/
|
|
|
|
class cmIfCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
|
|
|
virtual cmCommand* Clone()
|
|
|
|
{
|
|
|
|
return new cmIfCommand;
|
|
|
|
}
|
|
|
|
|
2002-12-12 02:13:33 +03:00
|
|
|
/**
|
|
|
|
* This overrides the default InvokeInitialPass implementation.
|
|
|
|
* It records the arguments before expansion.
|
|
|
|
*/
|
2008-01-23 18:28:26 +03:00
|
|
|
virtual bool InvokeInitialPass(const std::vector<cmListFileArgument>& args,
|
|
|
|
cmExecutionStatus &);
|
2002-12-12 02:13:33 +03:00
|
|
|
|
2001-04-20 01:39:03 +04:00
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2008-01-23 18:28:26 +03:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const&,
|
|
|
|
cmExecutionStatus &) { return false;};
|
2001-04-20 01:39:03 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2007-10-10 19:47:43 +04:00
|
|
|
virtual const char* GetName() { return "if";}
|
2001-04-20 01:39:03 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetTerseDocumentation()
|
|
|
|
{
|
2003-02-15 02:47:16 +03:00
|
|
|
return "Conditionally execute a group of commands.";
|
2001-04-20 01:39:03 +04:00
|
|
|
}
|
|
|
|
|
2004-02-19 18:29:51 +03:00
|
|
|
/**
|
|
|
|
* This determines if the command is invoked when in script mode.
|
|
|
|
*/
|
|
|
|
virtual bool IsScriptable() { return true; }
|
|
|
|
|
2001-04-20 01:39:03 +04:00
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2007-10-10 19:47:43 +04:00
|
|
|
" if(expression)\n"
|
|
|
|
" # then section.\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
" COMMAND1(ARGS ...)\n"
|
|
|
|
" COMMAND2(ARGS ...)\n"
|
|
|
|
" ...\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" elseif(expression2)\n"
|
|
|
|
" # elseif section.\n"
|
2007-01-26 23:06:07 +03:00
|
|
|
" COMMAND1(ARGS ...)\n"
|
|
|
|
" COMMAND2(ARGS ...)\n"
|
|
|
|
" ...\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" else(expression)\n"
|
|
|
|
" # else section.\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
" COMMAND1(ARGS ...)\n"
|
|
|
|
" COMMAND2(ARGS ...)\n"
|
|
|
|
" ...\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" endif(expression)\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
"Evaluates the given expression. If the result is true, the commands "
|
|
|
|
"in the THEN section are invoked. Otherwise, the commands in the "
|
2007-10-10 19:47:43 +04:00
|
|
|
"else section are invoked. The elseif and else sections are "
|
|
|
|
"optional. You may have multiple elseif clauses. Note that "
|
|
|
|
"the same expression must be given to if, and endif. Long "
|
2005-11-16 22:11:09 +03:00
|
|
|
"expressions can be used and the order or precedence is that the "
|
2004-05-01 18:08:14 +04:00
|
|
|
"EXISTS, COMMAND, and DEFINED operators will be evaluated first. "
|
2004-06-14 20:02:12 +04:00
|
|
|
"Then any EQUAL, LESS, GREATER, STRLESS, STRGREATER, STREQUAL, MATCHES "
|
|
|
|
"will be evaluated. Then NOT operators and finally AND, OR operators "
|
|
|
|
"will be evaluated. Possible expressions are:\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" if(variable)\n"
|
2006-04-18 18:27:24 +04:00
|
|
|
"True if the variable's value is not empty, 0, N, NO, OFF, FALSE, "
|
|
|
|
"NOTFOUND, or <variable>-NOTFOUND.\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" if(NOT variable)\n"
|
2006-04-18 18:27:24 +04:00
|
|
|
"True if the variable's value is empty, 0, N, NO, OFF, FALSE, "
|
|
|
|
"NOTFOUND, or <variable>-NOTFOUND.\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" if(variable1 AND variable2)\n"
|
2005-05-24 23:36:11 +04:00
|
|
|
"True if both variables would be considered true individually.\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" if(variable1 OR variable2)\n"
|
2005-05-24 23:36:11 +04:00
|
|
|
"True if either variable would be considered true individually.\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" if(COMMAND command-name)\n"
|
2008-02-11 01:19:10 +03:00
|
|
|
"True if the given name is a command, macro or function that can be "
|
|
|
|
"invoked.\n"
|
2008-03-21 01:25:59 +03:00
|
|
|
" if(POLICY policy-id)\n"
|
|
|
|
"True if the given name is an existing policy "
|
|
|
|
"(of the form CMP<NNNN>).\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" if(EXISTS file-name)\n"
|
|
|
|
" if(EXISTS directory-name)\n"
|
2006-06-26 18:57:35 +04:00
|
|
|
"True if the named file or directory exists. "
|
|
|
|
"Behavior is well-defined only for full paths.\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" if(file1 IS_NEWER_THAN file2)\n"
|
2006-08-26 00:31:07 +04:00
|
|
|
"True if file1 is newer than file2 or if one of the two files "
|
|
|
|
"doesn't exist. "
|
|
|
|
"Behavior is well-defined only for full paths.\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" if(IS_DIRECTORY directory-name)\n"
|
2006-06-26 18:57:35 +04:00
|
|
|
"True if the given name is a directory. "
|
|
|
|
"Behavior is well-defined only for full paths.\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" if(IS_ABSOLUTE path)\n"
|
2007-06-06 16:49:18 +04:00
|
|
|
"True if the given path is an absolute path.\n "
|
2007-10-10 19:47:43 +04:00
|
|
|
" if(variable MATCHES regex)\n"
|
|
|
|
" if(string MATCHES regex)\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
"True if the given string or variable's value matches the given "
|
|
|
|
"regular expression.\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" if(variable LESS number)\n"
|
|
|
|
" if(string LESS number)\n"
|
|
|
|
" if(variable GREATER number)\n"
|
|
|
|
" if(string GREATER number)\n"
|
|
|
|
" if(variable EQUAL number)\n"
|
|
|
|
" if(string EQUAL number)\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
"True if the given string or variable's value is a valid number and "
|
2004-04-28 17:51:06 +04:00
|
|
|
"the inequality or equality is true.\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" if(variable STRLESS string)\n"
|
|
|
|
" if(string STRLESS string)\n"
|
|
|
|
" if(variable STRGREATER string)\n"
|
|
|
|
" if(string STRGREATER string)\n"
|
|
|
|
" if(variable STREQUAL string)\n"
|
|
|
|
" if(string STREQUAL string)\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
"True if the given string or variable's value is lexicographically "
|
2004-06-14 20:02:12 +04:00
|
|
|
"less (or greater, or equal) than the string on the right.\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" if(DEFINED variable)\n"
|
2004-05-01 18:08:14 +04:00
|
|
|
"True if the given variable is defined. It does not matter if the "
|
|
|
|
"variable is true or false just if it has been set.";
|
2001-04-20 01:39:03 +04:00
|
|
|
}
|
2002-07-01 16:49:36 +04:00
|
|
|
|
2006-05-11 23:50:11 +04:00
|
|
|
// this is a shared function for both If and Else to determine if the
|
|
|
|
// arguments were valid, and if so, was the response true. If there is
|
|
|
|
// an error, the errorString will be set.
|
2002-07-01 16:49:36 +04:00
|
|
|
static bool IsTrue(const std::vector<std::string> &args,
|
2008-06-28 19:16:36 +04:00
|
|
|
std::string &errorString, cmMakefile *mf);
|
2001-04-20 01:39:03 +04:00
|
|
|
|
2002-10-03 01:22:56 +04:00
|
|
|
// Get a definition from the makefile. If it doesn't exist,
|
|
|
|
// return the original string.
|
|
|
|
static const char* GetVariableOrString(const char* str,
|
|
|
|
const cmMakefile* mf);
|
2004-05-01 18:08:14 +04:00
|
|
|
static const char* GetVariableOrNumber(const char* str,
|
|
|
|
const cmMakefile* mf);
|
|
|
|
|
2002-10-03 01:22:56 +04:00
|
|
|
|
2001-04-20 01:39:03 +04:00
|
|
|
cmTypeMacro(cmIfCommand, cmCommand);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|