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:
|
2001-08-07 01:01:26 +04:00
|
|
|
cmIfFunctionBlocker() {}
|
2001-04-23 18:23:24 +04:00
|
|
|
virtual ~cmIfFunctionBlocker() {}
|
2002-12-12 02:13:33 +03:00
|
|
|
virtual bool IsFunctionBlocked(const cmListFileFunction& lff,
|
2001-07-26 00:53:13 +04:00
|
|
|
cmMakefile &mf);
|
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
|
|
|
|
2002-12-12 02:13:33 +03:00
|
|
|
std::vector<cmListFileArgument> m_Args;
|
2002-07-10 19:38:38 +04:00
|
|
|
bool m_IsBlocking;
|
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.
|
|
|
|
*/
|
|
|
|
virtual bool InvokeInitialPass(const std::vector<cmListFileArgument>& args);
|
|
|
|
|
2001-04-20 01:39:03 +04:00
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2002-12-13 17:18:01 +03:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const&) { return false; }
|
2001-04-20 01:39:03 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
|
|
|
virtual const char* GetName() { return "IF";}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
}
|
|
|
|
|
2001-04-25 19:47:03 +04:00
|
|
|
/**
|
|
|
|
* This determines if the command gets propagated down
|
|
|
|
* to makefiles located in subdirectories.
|
|
|
|
*/
|
|
|
|
virtual bool IsInherited() {return true;}
|
|
|
|
|
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
|
2003-02-15 02:47:16 +03:00
|
|
|
" IF(expression)\n"
|
|
|
|
" # THEN section.\n"
|
|
|
|
" COMMAND1(ARGS ...)\n"
|
|
|
|
" COMMAND2(ARGS ...)\n"
|
|
|
|
" ...\n"
|
|
|
|
" ELSE(expression)\n"
|
|
|
|
" # ELSE section.\n"
|
|
|
|
" COMMAND1(ARGS ...)\n"
|
|
|
|
" COMMAND2(ARGS ...)\n"
|
|
|
|
" ...\n"
|
|
|
|
" ENDIF(expression)\n"
|
|
|
|
"Evaluates the given expression. If the result is true, the commands "
|
|
|
|
"in the THEN section are invoked. Otherwise, the commands in the "
|
|
|
|
"ELSE section are invoked. The ELSE section is optional. Note that "
|
2004-05-01 18:08:14 +04:00
|
|
|
"the same expression must be given to IF, ELSE, and ENDIF. Long "
|
|
|
|
"exressions can be used and the order or precidence is that the "
|
|
|
|
"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"
|
2003-02-15 02:47:16 +03:00
|
|
|
" IF(variable)\n"
|
|
|
|
"True if the variable's value is not empty, 0, FALSE, OFF, or NOTFOUND.\n"
|
|
|
|
" IF(NOT variable)\n"
|
|
|
|
"True if the variable's value is empty, 0, FALSE, OFF, or NOTFOUND.\n"
|
|
|
|
" IF(variable1 AND variable2)\n"
|
|
|
|
"True if both variables would be considered true individually. Only "
|
|
|
|
"one AND is allowed to keep expressions short.\n"
|
|
|
|
" IF(variable1 OR variable2)\n"
|
|
|
|
"True if either variable would be considered true individually. Only "
|
|
|
|
"one OR is allowed to keep expressions short.\n"
|
|
|
|
" IF(COMMAND command-name)\n"
|
|
|
|
"True if the given name is a command that can be invoked.\n"
|
|
|
|
" IF(EXISTS file-name)\n"
|
|
|
|
" IF(EXISTS directory-name)\n"
|
|
|
|
"True if the named file or directory exists.\n"
|
|
|
|
" IF(variable MATCHES regex)\n"
|
|
|
|
" IF(string MATCHES regex)\n"
|
|
|
|
"True if the given string or variable's value matches the given "
|
|
|
|
"regular expression.\n"
|
|
|
|
" IF(variable LESS number)\n"
|
|
|
|
" IF(string LESS number)\n"
|
|
|
|
" IF(variable GREATER number)\n"
|
|
|
|
" IF(string GREATER number)\n"
|
2004-04-28 17:51:06 +04:00
|
|
|
" 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"
|
2003-02-15 02:47:16 +03:00
|
|
|
" IF(variable STRLESS string)\n"
|
|
|
|
" IF(string STRLESS string)\n"
|
|
|
|
" IF(variable STRGREATER string)\n"
|
|
|
|
" IF(string STRGREATER string)\n"
|
2004-06-14 20:02:12 +04:00
|
|
|
" 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"
|
2004-05-01 18:08:14 +04:00
|
|
|
" IF(DEFINED variable)\n"
|
|
|
|
"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
|
|
|
|
|
|
|
// this is a shared function for both If and Else to determine if
|
2004-08-03 16:13:54 +04:00
|
|
|
// 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,
|
2004-08-03 16:13:54 +04:00
|
|
|
char** errorString, const 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
|