cmWhileCommand.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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() {Executing = false;}
  27. virtual ~cmWhileFunctionBlocker() {}
  28. virtual bool IsFunctionBlocked(const cmListFileFunction& lff,
  29. cmMakefile &mf);
  30. virtual bool ShouldRemove(const cmListFileFunction& lff, cmMakefile &mf);
  31. virtual void ScopeEnded(cmMakefile &mf);
  32. std::vector<cmListFileArgument> Args;
  33. std::vector<cmListFileFunction> Functions;
  34. bool Executing;
  35. };
  36. /** \class cmWhileCommand
  37. * \brief starts a while loop
  38. *
  39. * cmWhileCommand starts a while loop
  40. */
  41. class cmWhileCommand : public cmCommand
  42. {
  43. public:
  44. /**
  45. * This is a virtual constructor for the command.
  46. */
  47. virtual cmCommand* Clone()
  48. {
  49. return new cmWhileCommand;
  50. }
  51. /**
  52. * This overrides the default InvokeInitialPass implementation.
  53. * It records the arguments before expansion.
  54. */
  55. virtual bool InvokeInitialPass(const std::vector<cmListFileArgument>& args);
  56. /**
  57. * This is called when the command is first encountered in
  58. * the CMakeLists.txt file.
  59. */
  60. virtual bool InitialPass(std::vector<std::string> const&) { return false; }
  61. /**
  62. * This determines if the command is invoked when in script mode.
  63. */
  64. virtual bool IsScriptable() { return true; }
  65. /**
  66. * The name of the command as specified in CMakeList.txt.
  67. */
  68. virtual const char* GetName() { return "WHILE";}
  69. /**
  70. * Succinct documentation.
  71. */
  72. virtual const char* GetTerseDocumentation()
  73. {
  74. return "Evaluate a group of commands while a condition is true";
  75. }
  76. /**
  77. * More documentation.
  78. */
  79. virtual const char* GetFullDocumentation()
  80. {
  81. return
  82. " WHILE(condition)\n"
  83. " COMMAND1(ARGS ...)\n"
  84. " COMMAND2(ARGS ...)\n"
  85. " ...\n"
  86. " ENDWHILE(condition)\n"
  87. "All commands between WHILE and the matching ENDWHILE are recorded "
  88. "without being invoked. Once the ENDWHILE is evaluated, the "
  89. "recorded list of commands is invoked as long as the condition "
  90. "is true. The condition is evaulated using the same logic as the "
  91. "IF command.";
  92. }
  93. cmTypeMacro(cmWhileCommand, cmCommand);
  94. };
  95. #endif