2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2005-01-21 17:38:04 +03:00
|
|
|
#ifndef cmWhileCommand_h
|
|
|
|
#define cmWhileCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2005-01-21 17:38:04 +03:00
|
|
|
#include "cmFunctionBlocker.h"
|
|
|
|
#include "cmListFileCache.h"
|
|
|
|
|
|
|
|
class cmWhileFunctionBlocker : public cmFunctionBlocker
|
|
|
|
{
|
|
|
|
public:
|
2015-06-22 18:31:04 +03:00
|
|
|
cmWhileFunctionBlocker(cmMakefile* mf);
|
2016-06-27 22:25:27 +03:00
|
|
|
~cmWhileFunctionBlocker() CM_OVERRIDE;
|
|
|
|
bool IsFunctionBlocked(const cmListFileFunction& lff, cmMakefile& mf,
|
|
|
|
cmExecutionStatus&) CM_OVERRIDE;
|
|
|
|
bool ShouldRemove(const cmListFileFunction& lff, cmMakefile& mf) CM_OVERRIDE;
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
std::vector<cmListFileArgument> Args;
|
|
|
|
std::vector<cmListFileFunction> Functions;
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2006-05-18 21:50:01 +04:00
|
|
|
private:
|
2015-06-22 18:31:04 +03:00
|
|
|
cmMakefile* Makefile;
|
2006-05-18 21:50:01 +04:00
|
|
|
int Depth;
|
2005-01-21 17:38:04 +03:00
|
|
|
};
|
|
|
|
|
2012-02-28 01:54:43 +04:00
|
|
|
/// \brief Starts a while loop
|
2005-01-21 17:38:04 +03:00
|
|
|
class cmWhileCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
cmCommand* Clone() CM_OVERRIDE { return new cmWhileCommand; }
|
2005-01-21 17:38:04 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This overrides the default InvokeInitialPass implementation.
|
|
|
|
* It records the arguments before expansion.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
bool InvokeInitialPass(const std::vector<cmListFileArgument>& args,
|
|
|
|
cmExecutionStatus&) CM_OVERRIDE;
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2005-01-21 17:38:04 +03:00
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
bool InitialPass(std::vector<std::string> const&,
|
|
|
|
cmExecutionStatus&) CM_OVERRIDE
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2005-01-21 17:38:04 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This determines if the command is invoked when in script mode.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
bool IsScriptable() const CM_OVERRIDE { return true; }
|
2005-01-21 17:38:04 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
std::string GetName() const CM_OVERRIDE { return "while"; }
|
2005-01-21 17:38:04 +03:00
|
|
|
|
|
|
|
cmTypeMacro(cmWhileCommand, cmCommand);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|