2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-11-07 01:35:27 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2002-11-07 01:35:27 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2002-11-07 01:35:27 +03:00
|
|
|
#ifndef cmStringCommand_h
|
|
|
|
#define cmStringCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
2007-08-29 19:58:38 +04:00
|
|
|
class cmMakefile;
|
2007-08-21 20:34:06 +04:00
|
|
|
namespace cmsys
|
|
|
|
{
|
|
|
|
class RegularExpression;
|
|
|
|
}
|
|
|
|
|
2002-11-07 01:35:27 +03:00
|
|
|
/** \class cmStringCommand
|
|
|
|
* \brief Common string operations
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class cmStringCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
|
|
|
virtual cmCommand* Clone()
|
|
|
|
{
|
|
|
|
return new cmStringCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2008-01-23 18:28:26 +03:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus &status);
|
2002-11-07 01:35:27 +03:00
|
|
|
|
2004-02-06 21:47:11 +03:00
|
|
|
/**
|
|
|
|
* This determines if the command is invoked when in script mode.
|
|
|
|
*/
|
|
|
|
virtual bool IsScriptable() { return true; }
|
|
|
|
|
2002-11-07 01:35:27 +03:00
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2007-10-10 19:47:43 +04:00
|
|
|
virtual const char* GetName() { return "string";}
|
2002-11-07 01:35:27 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetTerseDocumentation()
|
|
|
|
{
|
|
|
|
return "String operations.";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2007-10-10 19:47:43 +04:00
|
|
|
" string(REGEX MATCH <regular_expression>\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
" <output variable> <input> [<input>...])\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" string(REGEX MATCHALL <regular_expression>\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
" <output variable> <input> [<input>...])\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" string(REGEX REPLACE <regular_expression>\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
" <replace_expression> <output variable>\n"
|
|
|
|
" <input> [<input>...])\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" string(REPLACE <match_string>\n"
|
2007-08-21 18:56:25 +04:00
|
|
|
" <replace_string> <output variable>\n"
|
2005-10-17 17:10:20 +04:00
|
|
|
" <input> [<input>...])\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" string(COMPARE EQUAL <string1> <string2> <output variable>)\n"
|
|
|
|
" string(COMPARE NOTEQUAL <string1> <string2> <output variable>)\n"
|
|
|
|
" string(COMPARE LESS <string1> <string2> <output variable>)\n"
|
|
|
|
" string(COMPARE GREATER <string1> <string2> <output variable>)\n"
|
|
|
|
" string(ASCII <number> [<number> ...] <output variable>)\n"
|
|
|
|
" string(CONFIGURE <string1> <output variable>\n"
|
2004-03-04 18:05:14 +03:00
|
|
|
" [@ONLY] [ESCAPE_QUOTES])\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" string(TOUPPER <string1> <output variable>)\n"
|
|
|
|
" string(TOLOWER <string1> <output variable>)\n"
|
|
|
|
" string(LENGTH <string> <output variable>)\n"
|
|
|
|
" string(SUBSTRING <string> <begin> <length> <output variable>)\n"
|
|
|
|
" string(STRIP <string> <output variable>)\n"
|
|
|
|
" string(RANDOM [LENGTH <length>] [ALPHABET <alphabet>]\n"
|
2009-11-06 18:07:10 +03:00
|
|
|
" [RANDOM_SEED <seed>] <output variable>)\n"
|
2011-02-15 13:20:47 +03:00
|
|
|
" string(FIND <string> <substring> <output variable> [REVERSE])\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
"REGEX MATCH will match the regular expression once and store the "
|
2003-07-08 06:54:26 +04:00
|
|
|
"match in the output variable.\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
"REGEX MATCHALL will match the regular expression as many times as "
|
2003-07-08 06:54:26 +04:00
|
|
|
"possible and store the matches in the output variable as a list.\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
"REGEX REPLACE will match the regular expression as many times as "
|
|
|
|
"possible and substitute the replacement expression for the match "
|
2004-05-03 18:10:57 +04:00
|
|
|
"in the output. The replace expression may refer to paren-delimited "
|
|
|
|
"subexpressions of the match using \\1, \\2, ..., \\9. Note that "
|
|
|
|
"two backslashes (\\\\1) are required in CMake code to get a "
|
|
|
|
"backslash through argument parsing.\n"
|
2008-01-10 06:09:19 +03:00
|
|
|
"REPLACE will replace all occurrences of match_string in the input with "
|
2007-08-21 18:56:25 +04:00
|
|
|
"replace_string and store the result in the output.\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
"COMPARE EQUAL/NOTEQUAL/LESS/GREATER will compare the strings and "
|
2003-07-08 06:54:26 +04:00
|
|
|
"store true or false in the output variable.\n"
|
2003-07-10 21:25:54 +04:00
|
|
|
"ASCII will convert all numbers into corresponding ASCII characters.\n"
|
2004-03-04 18:05:14 +03:00
|
|
|
"CONFIGURE will transform a string like CONFIGURE_FILE transforms "
|
|
|
|
"a file.\n"
|
2005-10-17 17:56:42 +04:00
|
|
|
"TOUPPER/TOLOWER will convert string to upper/lower characters.\n"
|
|
|
|
"LENGTH will return a given string's length.\n"
|
2007-04-23 19:04:12 +04:00
|
|
|
"SUBSTRING will return a substring of a given string.\n"
|
2007-04-27 05:50:52 +04:00
|
|
|
"STRIP will return a substring of a given string with leading "
|
|
|
|
"and trailing spaces removed.\n"
|
2007-04-23 19:04:12 +04:00
|
|
|
"RANDOM will return a random string of given length consisting of "
|
|
|
|
"characters from the given alphabet. Default length is 5 "
|
|
|
|
"characters and default alphabet is all numbers and upper and "
|
2009-11-06 18:07:10 +03:00
|
|
|
"lower case letters. If an integer RANDOM_SEED is given, its "
|
|
|
|
"value will be used to seed the random number generator.\n"
|
2011-02-15 13:20:47 +03:00
|
|
|
"FIND will return the position where the given substring was found "
|
|
|
|
"in the supplied string. If the REVERSE flag was used, the command "
|
|
|
|
"will search for the position of the last occurrence of the "
|
|
|
|
"specified substring.\n"
|
2007-08-29 22:05:46 +04:00
|
|
|
"The following characters have special meaning in regular expressions:\n"
|
|
|
|
" ^ Matches at beginning of a line\n"
|
|
|
|
" $ Matches at end of a line\n"
|
|
|
|
" . Matches any single character\n"
|
|
|
|
" [ ] Matches any character(s) inside the brackets\n"
|
|
|
|
" [^ ] Matches any character(s) not inside the brackets\n"
|
|
|
|
" - Matches any character in range on either side of a dash\n"
|
|
|
|
" * Matches preceding pattern zero or more times\n"
|
|
|
|
" + Matches preceding pattern one or more times\n"
|
|
|
|
" ? Matches preceding pattern zero or once only\n"
|
2007-08-30 18:26:01 +04:00
|
|
|
" | Matches a pattern on either side of the |\n"
|
2009-03-13 21:58:13 +03:00
|
|
|
" () Saves a matched subexpression, which can be referenced \n"
|
|
|
|
" in the REGEX REPLACE operation. Additionally it is saved\n"
|
|
|
|
" by all regular expression-related commands, including \n"
|
|
|
|
" e.g. if( MATCHES ), in the variables CMAKE_MATCH_(0..9).";
|
2002-11-07 01:35:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
cmTypeMacro(cmStringCommand, cmCommand);
|
2007-08-29 19:58:38 +04:00
|
|
|
static void ClearMatches(cmMakefile* mf);
|
|
|
|
static void StoreMatches(cmMakefile* mf, cmsys::RegularExpression& re);
|
2002-11-07 01:35:27 +03:00
|
|
|
protected:
|
2004-03-04 18:05:14 +03:00
|
|
|
bool HandleConfigureCommand(std::vector<std::string> const& args);
|
2003-01-02 01:34:47 +03:00
|
|
|
bool HandleAsciiCommand(std::vector<std::string> const& args);
|
2002-11-07 01:35:27 +03:00
|
|
|
bool HandleRegexCommand(std::vector<std::string> const& args);
|
|
|
|
bool RegexMatch(std::vector<std::string> const& args);
|
|
|
|
bool RegexMatchAll(std::vector<std::string> const& args);
|
|
|
|
bool RegexReplace(std::vector<std::string> const& args);
|
2006-03-10 19:13:15 +03:00
|
|
|
bool HandleToUpperLowerCommand(std::vector<std::string> const& args,
|
|
|
|
bool toUpper);
|
2002-12-05 02:44:39 +03:00
|
|
|
bool HandleCompareCommand(std::vector<std::string> const& args);
|
2005-10-17 17:10:20 +04:00
|
|
|
bool HandleReplaceCommand(std::vector<std::string> const& args);
|
2005-10-17 17:56:42 +04:00
|
|
|
bool HandleLengthCommand(std::vector<std::string> const& args);
|
|
|
|
bool HandleSubstringCommand(std::vector<std::string> const& args);
|
2007-04-27 05:50:52 +04:00
|
|
|
bool HandleStripCommand(std::vector<std::string> const& args);
|
2007-04-23 19:04:12 +04:00
|
|
|
bool HandleRandomCommand(std::vector<std::string> const& args);
|
2011-02-15 13:20:47 +03:00
|
|
|
bool HandleFindCommand(std::vector<std::string> const& args);
|
2007-08-21 20:34:06 +04:00
|
|
|
|
2002-11-07 01:35:27 +03:00
|
|
|
class RegexReplacement
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RegexReplacement(const char* s): number(-1), value(s) {}
|
|
|
|
RegexReplacement(const std::string& s): number(-1), value(s) {}
|
|
|
|
RegexReplacement(int n): number(n), value() {}
|
2006-01-17 18:21:45 +03:00
|
|
|
RegexReplacement() {};
|
2002-11-07 01:35:27 +03:00
|
|
|
int number;
|
|
|
|
std::string value;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|