cmStringCommand.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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 cmStringCommand_h
  14. #define cmStringCommand_h
  15. #include "cmCommand.h"
  16. /** \class cmStringCommand
  17. * \brief Common string operations
  18. *
  19. */
  20. class cmStringCommand : public cmCommand
  21. {
  22. public:
  23. /**
  24. * This is a virtual constructor for the command.
  25. */
  26. virtual cmCommand* Clone()
  27. {
  28. return new cmStringCommand;
  29. }
  30. /**
  31. * This is called when the command is first encountered in
  32. * the CMakeLists.txt file.
  33. */
  34. virtual bool InitialPass(std::vector<std::string> const& args);
  35. /**
  36. * This determines if the command gets propagated down
  37. * to makefiles located in subdirectories.
  38. */
  39. virtual bool IsInherited() {return true;}
  40. /**
  41. * This determines if the command is invoked when in script mode.
  42. */
  43. virtual bool IsScriptable() { return true; }
  44. /**
  45. * The name of the command as specified in CMakeList.txt.
  46. */
  47. virtual const char* GetName() { return "STRING";}
  48. /**
  49. * Succinct documentation.
  50. */
  51. virtual const char* GetTerseDocumentation()
  52. {
  53. return "String operations.";
  54. }
  55. /**
  56. * More documentation.
  57. */
  58. virtual const char* GetFullDocumentation()
  59. {
  60. return
  61. " STRING(REGEX MATCH <regular_expression>\n"
  62. " <output variable> <input> [<input>...])\n"
  63. " STRING(REGEX MATCHALL <regular_expression>\n"
  64. " <output variable> <input> [<input>...])\n"
  65. " STRING(REGEX REPLACE <regular_expression>\n"
  66. " <replace_expression> <output variable>\n"
  67. " <input> [<input>...])\n"
  68. " STRING(COMPARE EQUAL <string1> <string2> <output variable>)\n"
  69. " STRING(COMPARE NOTEQUAL <string1> <string2> <output variable>)\n"
  70. " STRING(COMPARE LESS <string1> <string2> <output variable>)\n"
  71. " STRING(COMPARE GREATER <string1> <string2> <output variable>)\n"
  72. " STRING(ASCII <number> [<number> ...] <output variable>)\n"
  73. " STRING(CONFIGURE <string1> <output variable>\n"
  74. " [@ONLY] [ESCAPE_QUOTES])\n"
  75. " STRING(TOUPPER <string1> <output variable>)\n"
  76. " STRING(TOLOWER <string1> <output variable>)\n"
  77. "REGEX MATCH will match the regular expression once and store the "
  78. "match in the output variable.\n"
  79. "REGEX MATCHALL will match the regular expression as many times as "
  80. "possible and store the matches in the output variable as a list.\n"
  81. "REGEX REPLACE will match the regular expression as many times as "
  82. "possible and substitute the replacement expression for the match "
  83. "in the output.\n"
  84. "COMPARE EQUAL/NOTEQUAL/LESS/GREATER will compare the strings and "
  85. "store true or false in the output variable.\n"
  86. "ASCII will convert all numbers into corresponding ASCII characters.\n"
  87. "CONFIGURE will transform a string like CONFIGURE_FILE transforms "
  88. "a file.\n"
  89. "TOUPPER/TOLOWER will convert string to upper/lower characters.";
  90. }
  91. cmTypeMacro(cmStringCommand, cmCommand);
  92. protected:
  93. bool HandleConfigureCommand(std::vector<std::string> const& args);
  94. bool HandleAsciiCommand(std::vector<std::string> const& args);
  95. bool HandleRegexCommand(std::vector<std::string> const& args);
  96. bool RegexMatch(std::vector<std::string> const& args);
  97. bool RegexMatchAll(std::vector<std::string> const& args);
  98. bool RegexReplace(std::vector<std::string> const& args);
  99. bool HandleToUpperLowerCommand(std::vector<std::string> const& args, bool toUpper);
  100. bool HandleCompareCommand(std::vector<std::string> const& args);
  101. class RegexReplacement
  102. {
  103. public:
  104. RegexReplacement(const char* s): number(-1), value(s) {}
  105. RegexReplacement(const std::string& s): number(-1), value(s) {}
  106. RegexReplacement(int n): number(n), value() {}
  107. int number;
  108. std::string value;
  109. };
  110. };
  111. #endif