2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-11-06 17:35:27 -05:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2002-11-06 17:35:27 -05:00
|
|
|
|
2009-09-28 11: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-06 17:35:27 -05:00
|
|
|
#ifndef cmStringCommand_h
|
|
|
|
#define cmStringCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
2007-08-29 11:58:38 -04:00
|
|
|
class cmMakefile;
|
2016-05-16 10:34:04 -04:00
|
|
|
namespace cmsys {
|
|
|
|
class RegularExpression;
|
2007-08-21 12:34:06 -04:00
|
|
|
}
|
|
|
|
|
2002-11-06 17:35:27 -05:00
|
|
|
/** \class cmStringCommand
|
|
|
|
* \brief Common string operations
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class cmStringCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2016-06-27 21:25:27 +02:00
|
|
|
cmCommand* Clone() CM_OVERRIDE { return new cmStringCommand; }
|
2002-11-06 17:35:27 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2016-06-27 21:25:27 +02:00
|
|
|
bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus& status) CM_OVERRIDE;
|
2002-11-06 17:35:27 -05:00
|
|
|
|
2004-02-06 13:47:11 -05:00
|
|
|
/**
|
|
|
|
* This determines if the command is invoked when in script mode.
|
|
|
|
*/
|
2016-06-27 21:25:27 +02:00
|
|
|
bool IsScriptable() const CM_OVERRIDE { return true; }
|
2004-02-06 13:47:11 -05:00
|
|
|
|
2002-11-06 17:35:27 -05:00
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2016-06-27 21:25:27 +02:00
|
|
|
std::string GetName() const CM_OVERRIDE { return "string"; }
|
2002-11-06 17:35:27 -05:00
|
|
|
|
|
|
|
cmTypeMacro(cmStringCommand, cmCommand);
|
2016-05-16 10:34:04 -04:00
|
|
|
|
2002-11-06 17:35:27 -05:00
|
|
|
protected:
|
2004-03-04 10:05:14 -05:00
|
|
|
bool HandleConfigureCommand(std::vector<std::string> const& args);
|
2003-01-01 17:34:47 -05:00
|
|
|
bool HandleAsciiCommand(std::vector<std::string> const& args);
|
2002-11-06 17:35:27 -05: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 10:12:18 -05:00
|
|
|
bool HandleHashCommand(std::vector<std::string> const& args);
|
2006-03-10 11:13:15 -05:00
|
|
|
bool HandleToUpperLowerCommand(std::vector<std::string> const& args,
|
|
|
|
bool toUpper);
|
2002-12-04 18:44:39 -05:00
|
|
|
bool HandleCompareCommand(std::vector<std::string> const& args);
|
2005-10-17 09:10:20 -04:00
|
|
|
bool HandleReplaceCommand(std::vector<std::string> const& args);
|
2005-10-17 09:56:42 -04:00
|
|
|
bool HandleLengthCommand(std::vector<std::string> const& args);
|
|
|
|
bool HandleSubstringCommand(std::vector<std::string> const& args);
|
2015-07-06 22:28:04 +02:00
|
|
|
bool HandleAppendCommand(std::vector<std::string> const& args);
|
2013-10-21 12:49:15 -04:00
|
|
|
bool HandleConcatCommand(std::vector<std::string> const& args);
|
2007-04-26 21:50:52 -04:00
|
|
|
bool HandleStripCommand(std::vector<std::string> const& args);
|
2007-04-23 11:04:12 -04:00
|
|
|
bool HandleRandomCommand(std::vector<std::string> const& args);
|
2011-02-15 11:20:47 +01:00
|
|
|
bool HandleFindCommand(std::vector<std::string> const& args);
|
2012-10-05 21:55:07 +02:00
|
|
|
bool HandleTimestampCommand(std::vector<std::string> const& args);
|
2013-03-21 19:34:32 +01:00
|
|
|
bool HandleMakeCIdentifierCommand(std::vector<std::string> const& args);
|
2014-03-18 16:21:08 +01:00
|
|
|
bool HandleGenexStripCommand(std::vector<std::string> const& args);
|
2014-08-25 22:44:06 +02:00
|
|
|
bool HandleUuidCommand(std::vector<std::string> const& args);
|
2007-08-21 12:34:06 -04:00
|
|
|
|
2002-11-06 17:35:27 -05:00
|
|
|
class RegexReplacement
|
|
|
|
{
|
|
|
|
public:
|
2016-05-16 10:34:04 -04: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 21:35:22 +02:00
|
|
|
RegexReplacement() {}
|
2002-11-06 17:35:27 -05:00
|
|
|
int number;
|
|
|
|
std::string value;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|