2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-07-26 00:52:51 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-07-26 00:52:51 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2001-07-26 00:52:51 +04:00
|
|
|
#ifndef cmForEachCommand_h
|
|
|
|
#define cmForEachCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
#include "cmFunctionBlocker.h"
|
2002-12-12 02:13:33 +03:00
|
|
|
#include "cmListFileCache.h"
|
2001-07-26 00:52:51 +04:00
|
|
|
|
|
|
|
/** \class cmForEachFunctionBlocker
|
|
|
|
* \brief subclass of function blocker
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class cmForEachFunctionBlocker : public cmFunctionBlocker
|
|
|
|
{
|
|
|
|
public:
|
2009-01-20 22:36:18 +03:00
|
|
|
cmForEachFunctionBlocker() {this->Depth = 0;}
|
2001-07-26 00:52:51 +04:00
|
|
|
virtual ~cmForEachFunctionBlocker() {}
|
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, cmMakefile &mf);
|
2001-07-26 00:52:51 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
std::vector<std::string> Args;
|
|
|
|
std::vector<cmListFileFunction> Functions;
|
2006-05-18 21:50:01 +04:00
|
|
|
private:
|
|
|
|
int Depth;
|
2001-07-26 00:52:51 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/** \class cmForEachCommand
|
|
|
|
* \brief starts an if block
|
|
|
|
*
|
|
|
|
* cmForEachCommand starts an if block
|
|
|
|
*/
|
|
|
|
class cmForEachCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
|
|
|
virtual cmCommand* Clone()
|
|
|
|
{
|
|
|
|
return new cmForEachCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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& args,
|
|
|
|
cmExecutionStatus &status);
|
2001-07-26 00:52:51 +04:00
|
|
|
|
2004-02-06 21:47:11 +03:00
|
|
|
/**
|
|
|
|
* This determines if the command is invoked when in script mode.
|
|
|
|
*/
|
|
|
|
virtual bool IsScriptable() { return true; }
|
|
|
|
|
2001-07-26 00:52:51 +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 "foreach";}
|
2001-07-26 00:52:51 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetTerseDocumentation()
|
|
|
|
{
|
2003-02-15 02:47:16 +03:00
|
|
|
return "Evaluate a group of commands for each value in a list.";
|
2001-07-26 00:52:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2007-10-10 19:47:43 +04:00
|
|
|
" foreach(loop_var arg1 arg2 ...)\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
" COMMAND1(ARGS ...)\n"
|
|
|
|
" COMMAND2(ARGS ...)\n"
|
|
|
|
" ...\n"
|
2007-10-15 22:50:18 +04:00
|
|
|
" endforeach(loop_var)\n"
|
|
|
|
"All commands between foreach and the matching endforeach are recorded "
|
|
|
|
"without being invoked. Once the endforeach is evaluated, the "
|
2003-02-15 02:47:16 +03:00
|
|
|
"recorded list of commands is invoked once for each argument listed "
|
2007-10-10 19:47:43 +04:00
|
|
|
"in the original foreach command. Before each iteration of the loop "
|
2005-06-22 22:20:16 +04:00
|
|
|
"\"${loop_var}\" will be set as a variable with "
|
2004-04-29 23:12:40 +04:00
|
|
|
"the current value in the list.\n"
|
2009-03-17 22:10:15 +03:00
|
|
|
" foreach(loop_var RANGE total)\n"
|
|
|
|
" foreach(loop_var RANGE start stop [step])\n"
|
2005-11-16 20:05:04 +03:00
|
|
|
"Foreach can also iterate over a generated range of numbers. "
|
|
|
|
"There are three types of this iteration:\n"
|
2004-04-29 23:12:40 +04:00
|
|
|
"* When specifying single number, the range will have elements "
|
|
|
|
"0 to \"total\".\n"
|
|
|
|
"* When specifying two numbers, the range will have elements from "
|
|
|
|
"the first number to the second number.\n"
|
|
|
|
"* The third optional number is the increment used to iterate from "
|
2009-03-17 22:10:15 +03:00
|
|
|
"the first number to the second number."
|
|
|
|
"\n"
|
|
|
|
" foreach(loop_var IN [LISTS [list1 [...]]]\n"
|
|
|
|
" [ITEMS [item1 [...]]])\n"
|
|
|
|
"Iterates over a precise list of items. "
|
|
|
|
"The LISTS option names list-valued variables to be traversed, "
|
|
|
|
"including empty elements (an empty string is a zero-length list). "
|
|
|
|
"The ITEMS option ends argument parsing and includes all arguments "
|
|
|
|
"following it in the iteration."
|
|
|
|
;
|
2001-07-26 00:52:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cmTypeMacro(cmForEachCommand, cmCommand);
|
2009-03-17 22:10:15 +03:00
|
|
|
private:
|
|
|
|
bool HandleInMode(std::vector<std::string> const& args);
|
2001-07-26 00:52:51 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|