cmWhileCommand.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*=========================================================================
  2. Program: CMake - Cross-Platform Makefile Generator
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
  8. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
  9. This software is distributed WITHOUT ANY WARRANTY; without even
  10. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  11. PURPOSE. See the above copyright notices for more information.
  12. =========================================================================*/
  13. #ifndef cmWhileCommand_h
  14. #define cmWhileCommand_h
  15. #include "cmCommand.h"
  16. #include "cmFunctionBlocker.h"
  17. #include "cmListFileCache.h"
  18. /** \class cmWhileFunctionBlocker
  19. * \brief subclass of function blocker
  20. *
  21. *
  22. */
  23. class cmWhileFunctionBlocker : public cmFunctionBlocker
  24. {
  25. public:
  26. cmWhileFunctionBlocker() {this->Depth=0;}
  27. virtual ~cmWhileFunctionBlocker() {}
  28. virtual bool IsFunctionBlocked(const cmListFileFunction& lff,
  29. cmMakefile &mf,
  30. cmExecutionStatus &);
  31. virtual bool ShouldRemove(const cmListFileFunction& lff, cmMakefile &mf);
  32. std::vector<cmListFileArgument> Args;
  33. std::vector<cmListFileFunction> Functions;
  34. private:
  35. int Depth;
  36. };
  37. /** \class cmWhileCommand
  38. * \brief starts a while loop
  39. *
  40. * cmWhileCommand starts a while loop
  41. */
  42. class cmWhileCommand : public cmCommand
  43. {
  44. public:
  45. /**
  46. * This is a virtual constructor for the command.
  47. */
  48. virtual cmCommand* Clone()
  49. {
  50. return new cmWhileCommand;
  51. }
  52. /**
  53. * This overrides the default InvokeInitialPass implementation.
  54. * It records the arguments before expansion.
  55. */
  56. virtual bool InvokeInitialPass(const std::vector<cmListFileArgument>& args,
  57. cmExecutionStatus &);
  58. /**
  59. * This is called when the command is first encountered in
  60. * the CMakeLists.txt file.
  61. */
  62. virtual bool InitialPass(std::vector<std::string> const&,
  63. cmExecutionStatus &) { return false; }
  64. /**
  65. * This determines if the command is invoked when in script mode.
  66. */
  67. virtual bool IsScriptable() { return true; }
  68. /**
  69. * The name of the command as specified in CMakeList.txt.
  70. */
  71. virtual const char* GetName() { return "while";}
  72. /**
  73. * Succinct documentation.
  74. */
  75. virtual const char* GetTerseDocumentation()
  76. {
  77. return "Evaluate a group of commands while a condition is true";
  78. }
  79. /**
  80. * More documentation.
  81. */
  82. virtual const char* GetFullDocumentation()
  83. {
  84. return
  85. " while(condition)\n"
  86. " COMMAND1(ARGS ...)\n"
  87. " COMMAND2(ARGS ...)\n"
  88. " ...\n"
  89. " endwhile(condition)\n"
  90. "All commands between while and the matching endwhile are recorded "
  91. "without being invoked. Once the endwhile is evaluated, the "
  92. "recorded list of commands is invoked as long as the condition "
  93. "is true. The condition is evaluated using the same logic as the "
  94. "if command.";
  95. }
  96. cmTypeMacro(cmWhileCommand, cmCommand);
  97. };
  98. #endif