cmMacroCommand.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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 cmMacroCommand_h
  14. #define cmMacroCommand_h
  15. #include "cmCommand.h"
  16. #include "cmFunctionBlocker.h"
  17. /** \class cmMacroFunctionBlocker
  18. * \brief subclass of function blocker
  19. *
  20. *
  21. */
  22. class cmMacroFunctionBlocker : public cmFunctionBlocker
  23. {
  24. public:
  25. cmMacroFunctionBlocker() {this->Depth=0;}
  26. virtual ~cmMacroFunctionBlocker() {}
  27. virtual bool IsFunctionBlocked(const cmListFileFunction&,
  28. cmMakefile &mf,
  29. cmExecutionStatus &);
  30. virtual bool ShouldRemove(const cmListFileFunction&, cmMakefile &mf);
  31. std::vector<std::string> Args;
  32. std::vector<cmListFileFunction> Functions;
  33. int Depth;
  34. };
  35. /** \class cmMacroCommand
  36. * \brief starts an if block
  37. *
  38. * cmMacroCommand starts an if block
  39. */
  40. class cmMacroCommand : public cmCommand
  41. {
  42. public:
  43. /**
  44. * This is a virtual constructor for the command.
  45. */
  46. virtual cmCommand* Clone()
  47. {
  48. return new cmMacroCommand;
  49. }
  50. /**
  51. * This is called when the command is first encountered in
  52. * the CMakeLists.txt file.
  53. */
  54. virtual bool InitialPass(std::vector<std::string> const& args,
  55. cmExecutionStatus &status);
  56. /**
  57. * This determines if the command is invoked when in script mode.
  58. */
  59. virtual bool IsScriptable() { return true; }
  60. /**
  61. * The name of the command as specified in CMakeList.txt.
  62. */
  63. virtual const char* GetName() { return "macro";}
  64. /**
  65. * Succinct documentation.
  66. */
  67. virtual const char* GetTerseDocumentation()
  68. {
  69. return "Start recording a macro for later invocation as a command.";
  70. }
  71. /**
  72. * More documentation.
  73. */
  74. virtual const char* GetFullDocumentation()
  75. {
  76. return
  77. " macro(<name> [arg1 [arg2 [arg3 ...]]])\n"
  78. " COMMAND1(ARGS ...)\n"
  79. " COMMAND2(ARGS ...)\n"
  80. " ...\n"
  81. " endmacro(<name>)\n"
  82. "Define a macro named <name> that takes arguments named "
  83. "arg1 arg2 arg3 (...). Commands listed after macro, "
  84. "but before the matching endmacro, are not invoked until the macro "
  85. "is invoked. When it is invoked, the commands recorded in the "
  86. "macro are first modified by replacing formal parameters (${arg1}) "
  87. "with the arguments passed, and then invoked as normal commands. In "
  88. "addition to referencing the formal parameters you can reference "
  89. "the values ${ARGC} which will be set to the number of arguments "
  90. "passed into the function as well as ${ARGV0} ${ARGV1} ${ARGV2} "
  91. "... which "
  92. "will have the actual values of the arguments passed in. This "
  93. "facilitates creating macros with optional arguments. Additionally "
  94. "${ARGV} holds the list of all arguments given to the macro and "
  95. "${ARGN} "
  96. "holds the list of argument past the last expected argument. "
  97. "Note that the parameters to a macro and values such as ARGN "
  98. "are not variables in the usual CMake sense. They are string "
  99. "replacements much like the c preprocessor would do with a "
  100. "macro. If you want true CMake variables you should look at "
  101. "the function command."
  102. "\n"
  103. "See the cmake_policy() command documentation for the behavior of "
  104. "policies inside macros."
  105. ;
  106. }
  107. cmTypeMacro(cmMacroCommand, cmCommand);
  108. };
  109. #endif