cmIfCommand.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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 cmIfCommand_h
  14. #define cmIfCommand_h
  15. #include "cmStandardIncludes.h"
  16. #include "cmCommand.h"
  17. #include "cmFunctionBlocker.h"
  18. /** \class cmIfFunctionBlocker
  19. * \brief subclass of function blocker
  20. *
  21. *
  22. */
  23. class cmIfFunctionBlocker : public cmFunctionBlocker
  24. {
  25. public:
  26. cmIfFunctionBlocker() {}
  27. virtual ~cmIfFunctionBlocker() {}
  28. virtual bool IsFunctionBlocked(const cmListFileFunction& lff,
  29. cmMakefile &mf);
  30. virtual bool ShouldRemove(const cmListFileFunction& lff,
  31. cmMakefile &mf);
  32. virtual void ScopeEnded(cmMakefile &mf);
  33. std::vector<cmListFileArgument> m_Args;
  34. bool m_IsBlocking;
  35. };
  36. /** \class cmIfCommand
  37. * \brief starts an if block
  38. *
  39. * cmIfCommand starts an if block
  40. */
  41. class cmIfCommand : public cmCommand
  42. {
  43. public:
  44. /**
  45. * This is a virtual constructor for the command.
  46. */
  47. virtual cmCommand* Clone()
  48. {
  49. return new cmIfCommand;
  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. * The name of the command as specified in CMakeList.txt.
  63. */
  64. virtual const char* GetName() { return "IF";}
  65. /**
  66. * Succinct documentation.
  67. */
  68. virtual const char* GetTerseDocumentation()
  69. {
  70. return "start an if block";
  71. }
  72. /**
  73. * This determines if the command gets propagated down
  74. * to makefiles located in subdirectories.
  75. */
  76. virtual bool IsInherited() {return true;}
  77. /**
  78. * More documentation.
  79. */
  80. virtual const char* GetFullDocumentation()
  81. {
  82. return
  83. "IF (define) Starts an if block. Optionally it can be invoked "
  84. "using (NOT define) (def AND def2) (def OR def2) (def MATCHES def2) "
  85. "(COMMAND cmd) (EXISTS file) MATCHES checks if def matches the "
  86. "regular expression def2. COMMAND checks if the cmake command cmd "
  87. "is in this cmake executable. EXISTS file checks if file exists."
  88. "Additionally you can do comparisons using LESS GREATER STRLESS "
  89. "and STRGREATER. LESS and GREATER do numeric comparison while "
  90. "STRLESS and STRGREATER do string comparisons.";
  91. }
  92. // this is a shared function for both If and Else to determine if
  93. // the arguments were valid, and if so, was the response true
  94. static bool IsTrue(const std::vector<std::string> &args,
  95. bool &isValid, const cmMakefile *mf);
  96. // Get a definition from the makefile. If it doesn't exist,
  97. // return the original string.
  98. static const char* GetVariableOrString(const char* str,
  99. const cmMakefile* mf);
  100. cmTypeMacro(cmIfCommand, cmCommand);
  101. };
  102. #endif