CMake/Source/cmStringCommand.h

94 lines
3.2 KiB
C
Raw Normal View History

/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
2002-11-07 01:35:27 +03: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
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"
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()
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.
*/
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() 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:
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);
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);
bool HandleCompareCommand(std::vector<std::string> const& args);
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);
bool HandleConcatCommand(std::vector<std::string> const& args);
2007-04-27 05:50:52 +04:00
bool HandleStripCommand(std::vector<std::string> const& args);
bool HandleRandomCommand(std::vector<std::string> const& args);
bool HandleFindCommand(std::vector<std::string> const& args);
bool HandleTimestampCommand(std::vector<std::string> const& args);
bool HandleMakeCIdentifierCommand(std::vector<std::string> const& args);
bool HandleGenexStripCommand(std::vector<std::string> const& args);
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:
RegexReplacement(const char* s): number(-1), value(s) {}
RegexReplacement(const std::string& s): number(-1), value(s) {}
RegexReplacement(int n): number(n), value() {}
RegexReplacement() {}
2002-11-07 01:35:27 +03:00
int number;
std::string value;
};
};
#endif