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;
|
2016-05-16 17:34:04 +03:00
|
|
|
namespace cmsys {
|
|
|
|
class RegularExpression;
|
2007-08-21 20:34:06 +04:00
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
cmCommand* Clone() CM_OVERRIDE { return new cmStringCommand; }
|
2002-11-07 01:35:27 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus& status) CM_OVERRIDE;
|
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.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
bool IsScriptable() const CM_OVERRIDE { return true; }
|
2004-02-06 21:47:11 +03:00
|
|
|
|
2002-11-07 01:35:27 +03:00
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
std::string GetName() const CM_OVERRIDE { return "string"; }
|
2002-11-07 01:35:27 +03:00
|
|
|
|
|
|
|
cmTypeMacro(cmStringCommand, cmCommand);
|
2016-05-16 17:34:04 +03:00
|
|
|
|
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);
|
2011-11-16 19:12:18 +04:00
|
|
|
bool HandleHashCommand(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);
|
2015-07-06 23:28:04 +03:00
|
|
|
bool HandleAppendCommand(std::vector<std::string> const& args);
|
2013-10-21 20:49:15 +04:00
|
|
|
bool HandleConcatCommand(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);
|
2012-10-05 23:55:07 +04:00
|
|
|
bool HandleTimestampCommand(std::vector<std::string> const& args);
|
2013-03-21 22:34:32 +04:00
|
|
|
bool HandleMakeCIdentifierCommand(std::vector<std::string> const& args);
|
2014-03-18 19:21:08 +04:00
|
|
|
bool HandleGenexStripCommand(std::vector<std::string> const& args);
|
2014-08-26 00:44:06 +04:00
|
|
|
bool HandleUuidCommand(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:
|
2016-05-16 17:34:04 +03:00
|
|
|
RegexReplacement(const char* s)
|
|
|
|
: number(-1)
|
|
|
|
, value(s)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
RegexReplacement(const std::string& s)
|
|
|
|
: number(-1)
|
|
|
|
, value(s)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
RegexReplacement(int n)
|
|
|
|
: number(n)
|
|
|
|
, value()
|
|
|
|
{
|
|
|
|
}
|
2014-04-03 23:35:22 +04:00
|
|
|
RegexReplacement() {}
|
2002-11-07 01:35:27 +03:00
|
|
|
int number;
|
|
|
|
std::string value;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|