cmStringCommand.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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 is invoked when in script mode.
  37. */
  38. virtual bool IsScriptable() { return true; }
  39. /**
  40. * The name of the command as specified in CMakeList.txt.
  41. */
  42. virtual const char* GetName() { return "STRING";}
  43. /**
  44. * Succinct documentation.
  45. */
  46. virtual const char* GetTerseDocumentation()
  47. {
  48. return "String operations.";
  49. }
  50. /**
  51. * More documentation.
  52. */
  53. virtual const char* GetFullDocumentation()
  54. {
  55. return
  56. " STRING(REGEX MATCH <regular_expression>\n"
  57. " <output variable> <input> [<input>...])\n"
  58. " STRING(REGEX MATCHALL <regular_expression>\n"
  59. " <output variable> <input> [<input>...])\n"
  60. " STRING(REGEX REPLACE <regular_expression>\n"
  61. " <replace_expression> <output variable>\n"
  62. " <input> [<input>...])\n"
  63. " STRING(COMPARE EQUAL <string1> <string2> <output variable>)\n"
  64. " STRING(COMPARE NOTEQUAL <string1> <string2> <output variable>)\n"
  65. " STRING(COMPARE LESS <string1> <string2> <output variable>)\n"
  66. " STRING(COMPARE GREATER <string1> <string2> <output variable>)\n"
  67. " STRING(ASCII <number> [<number> ...] <output variable>)\n"
  68. " STRING(CONFIGURE <string1> <output variable>\n"
  69. " [@ONLY] [ESCAPE_QUOTES])\n"
  70. " STRING(TOUPPER <string1> <output variable>)\n"
  71. " STRING(TOLOWER <string1> <output variable>)\n"
  72. "REGEX MATCH will match the regular expression once and store the "
  73. "match in the output variable.\n"
  74. "REGEX MATCHALL will match the regular expression as many times as "
  75. "possible and store the matches in the output variable as a list.\n"
  76. "REGEX REPLACE will match the regular expression as many times as "
  77. "possible and substitute the replacement expression for the match "
  78. "in the output. The replace expression may refer to paren-delimited "
  79. "subexpressions of the match using \\1, \\2, ..., \\9. Note that "
  80. "two backslashes (\\\\1) are required in CMake code to get a "
  81. "backslash through argument parsing.\n"
  82. "COMPARE EQUAL/NOTEQUAL/LESS/GREATER will compare the strings and "
  83. "store true or false in the output variable.\n"
  84. "ASCII will convert all numbers into corresponding ASCII characters.\n"
  85. "CONFIGURE will transform a string like CONFIGURE_FILE transforms "
  86. "a file.\n"
  87. "TOUPPER/TOLOWER will convert string to upper/lower characters.";
  88. }
  89. cmTypeMacro(cmStringCommand, cmCommand);
  90. protected:
  91. bool HandleConfigureCommand(std::vector<std::string> const& args);
  92. bool HandleAsciiCommand(std::vector<std::string> const& args);
  93. bool HandleRegexCommand(std::vector<std::string> const& args);
  94. bool RegexMatch(std::vector<std::string> const& args);
  95. bool RegexMatchAll(std::vector<std::string> const& args);
  96. bool RegexReplace(std::vector<std::string> const& args);
  97. bool HandleToUpperLowerCommand(std::vector<std::string> const& args, bool toUpper);
  98. bool HandleCompareCommand(std::vector<std::string> const& args);
  99. class RegexReplacement
  100. {
  101. public:
  102. RegexReplacement(const char* s): number(-1), value(s) {}
  103. RegexReplacement(const std::string& s): number(-1), value(s) {}
  104. RegexReplacement(int n): number(n), value() {}
  105. int number;
  106. std::string value;
  107. };
  108. };
  109. #endif