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.
|
|
|
|
*/
|
2012-08-13 21:42:58 +04:00
|
|
|
virtual cmCommand* Clone()
|
2002-11-07 01:35:27 +03:00
|
|
|
{
|
|
|
|
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.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual bool IsScriptable() const { 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.
|
|
|
|
*/
|
2014-02-25 05:19:17 +04:00
|
|
|
virtual std::string GetName() const { return "string";}
|
2002-11-07 01:35:27 +03:00
|
|
|
|
|
|
|
cmTypeMacro(cmStringCommand, cmCommand);
|
|
|
|
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);
|
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);
|
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() {}
|
2014-04-03 23:35:22 +04:00
|
|
|
RegexReplacement() {}
|
2002-11-07 01:35:27 +03:00
|
|
|
int number;
|
|
|
|
std::string value;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|