cmStringCommand.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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(REPLACE <match_string>\n"
  64. " <replace_string> <output variable>\n"
  65. " <input> [<input>...])\n"
  66. " STRING(COMPARE EQUAL <string1> <string2> <output variable>)\n"
  67. " STRING(COMPARE NOTEQUAL <string1> <string2> <output variable>)\n"
  68. " STRING(COMPARE LESS <string1> <string2> <output variable>)\n"
  69. " STRING(COMPARE GREATER <string1> <string2> <output variable>)\n"
  70. " STRING(ASCII <number> [<number> ...] <output variable>)\n"
  71. " STRING(CONFIGURE <string1> <output variable>\n"
  72. " [@ONLY] [ESCAPE_QUOTES])\n"
  73. " STRING(TOUPPER <string1> <output variable>)\n"
  74. " STRING(TOLOWER <string1> <output variable>)\n"
  75. " STRING(LENGTH <string> <output variable>)\n"
  76. " STRING(SUBSTRING <string> <begin> <length> <output variable>)\n"
  77. " STRING(STRIP <string> <output variable>)\n"
  78. " STRING(RANDOM [LENGTH <length>] [ALPHABET <alphabet>]\n"
  79. " <output variable>)\n"
  80. "REGEX MATCH will match the regular expression once and store the "
  81. "match in the output variable.\n"
  82. "REGEX MATCHALL will match the regular expression as many times as "
  83. "possible and store the matches in the output variable as a list.\n"
  84. "REGEX REPLACE will match the regular expression as many times as "
  85. "possible and substitute the replacement expression for the match "
  86. "in the output. The replace expression may refer to paren-delimited "
  87. "subexpressions of the match using \\1, \\2, ..., \\9. Note that "
  88. "two backslashes (\\\\1) are required in CMake code to get a "
  89. "backslash through argument parsing.\n"
  90. "REPLACE will replace all occurences of match_string in the input with "
  91. "replace_string and store the result in the output.\n"
  92. "COMPARE EQUAL/NOTEQUAL/LESS/GREATER will compare the strings and "
  93. "store true or false in the output variable.\n"
  94. "ASCII will convert all numbers into corresponding ASCII characters.\n"
  95. "CONFIGURE will transform a string like CONFIGURE_FILE transforms "
  96. "a file.\n"
  97. "TOUPPER/TOLOWER will convert string to upper/lower characters.\n"
  98. "LENGTH will return a given string's length.\n"
  99. "SUBSTRING will return a substring of a given string.\n"
  100. "STRIP will return a substring of a given string with leading "
  101. "and trailing spaces removed.\n"
  102. "RANDOM will return a random string of given length consisting of "
  103. "characters from the given alphabet. Default length is 5 "
  104. "characters and default alphabet is all numbers and upper and "
  105. "lower case letters.";
  106. }
  107. cmTypeMacro(cmStringCommand, cmCommand);
  108. protected:
  109. bool HandleConfigureCommand(std::vector<std::string> const& args);
  110. bool HandleAsciiCommand(std::vector<std::string> const& args);
  111. bool HandleRegexCommand(std::vector<std::string> const& args);
  112. bool RegexMatch(std::vector<std::string> const& args);
  113. bool RegexMatchAll(std::vector<std::string> const& args);
  114. bool RegexReplace(std::vector<std::string> const& args);
  115. bool HandleToUpperLowerCommand(std::vector<std::string> const& args,
  116. bool toUpper);
  117. bool HandleCompareCommand(std::vector<std::string> const& args);
  118. bool HandleReplaceCommand(std::vector<std::string> const& args);
  119. bool HandleLengthCommand(std::vector<std::string> const& args);
  120. bool HandleSubstringCommand(std::vector<std::string> const& args);
  121. bool HandleStripCommand(std::vector<std::string> const& args);
  122. bool HandleRandomCommand(std::vector<std::string> const& args);
  123. class RegexReplacement
  124. {
  125. public:
  126. RegexReplacement(const char* s): number(-1), value(s) {}
  127. RegexReplacement(const std::string& s): number(-1), value(s) {}
  128. RegexReplacement(int n): number(n), value() {}
  129. RegexReplacement() {};
  130. int number;
  131. std::string value;
  132. };
  133. };
  134. #endif