cmake/Source/cmStringCommand.cxx

928 lines
26 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmStringCommand.h"
2016-07-09 11:21:54 +02:00
2017-07-20 19:35:53 +02:00
#include "cmsys/RegularExpression.hxx"
#include <ctype.h>
2017-04-14 19:02:05 +02:00
#include <sstream>
#include <stdio.h>
#include <stdlib.h>
2017-04-14 19:02:05 +02:00
#include "cmAlgorithms.h"
#include "cmCryptoHash.h"
#include "cmGeneratorExpression.h"
#include "cmMakefile.h"
#include "cmSystemTools.h"
#include "cmTimestamp.h"
#include "cmUuid.h"
#include "cm_auto_ptr.hxx"
class cmExecutionStatus;
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
bool cmStringCommand::InitialPass(std::vector<std::string> const& args,
cmExecutionStatus&)
{
2016-10-30 18:24:19 +01:00
if (args.empty()) {
this->SetError("must be called with at least one argument.");
return false;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
const std::string& subCommand = args[0];
if (subCommand == "REGEX") {
return this->HandleRegexCommand(args);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "REPLACE") {
return this->HandleReplaceCommand(args);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "MD5" || subCommand == "SHA1" || subCommand == "SHA224" ||
subCommand == "SHA256" || subCommand == "SHA384" ||
2017-04-14 19:02:05 +02:00
subCommand == "SHA512" || subCommand == "SHA3_224" ||
subCommand == "SHA3_256" || subCommand == "SHA3_384" ||
subCommand == "SHA3_512") {
2012-02-18 12:40:36 +02:00
return this->HandleHashCommand(args);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "TOLOWER") {
return this->HandleToUpperLowerCommand(args, false);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "TOUPPER") {
return this->HandleToUpperLowerCommand(args, true);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "COMPARE") {
return this->HandleCompareCommand(args);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "ASCII") {
return this->HandleAsciiCommand(args);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "CONFIGURE") {
return this->HandleConfigureCommand(args);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "LENGTH") {
return this->HandleLengthCommand(args);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "APPEND") {
2015-11-17 17:22:37 +01:00
return this->HandleAppendCommand(args);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "CONCAT") {
2014-08-03 19:52:23 +02:00
return this->HandleConcatCommand(args);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "SUBSTRING") {
return this->HandleSubstringCommand(args);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "STRIP") {
return this->HandleStripCommand(args);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "RANDOM") {
return this->HandleRandomCommand(args);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "FIND") {
2011-06-19 15:41:06 +03:00
return this->HandleFindCommand(args);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "TIMESTAMP") {
2013-03-16 19:13:01 +02:00
return this->HandleTimestampCommand(args);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "MAKE_C_IDENTIFIER") {
2013-11-03 12:27:13 +02:00
return this->HandleMakeCIdentifierCommand(args);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "GENEX_STRIP") {
2015-04-27 22:25:09 +02:00
return this->HandleGenexStripCommand(args);
2016-10-30 18:24:19 +01:00
}
if (subCommand == "UUID") {
2015-04-27 22:25:09 +02:00
return this->HandleUuidCommand(args);
2016-07-09 11:21:54 +02:00
}
2011-06-19 15:41:06 +03:00
2016-07-09 11:21:54 +02:00
std::string e = "does not recognize sub-command " + subCommand;
2015-04-27 22:25:09 +02:00
this->SetError(e);
return false;
}
2012-02-18 12:40:36 +02:00
bool cmStringCommand::HandleHashCommand(std::vector<std::string> const& args)
{
#if defined(CMAKE_BUILD_WITH_CMAKE)
2016-07-09 11:21:54 +02:00
if (args.size() != 3) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2012-02-18 12:40:36 +02:00
e << args[0] << " requires an output variable and an input string";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2012-02-18 12:40:36 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
2012-02-18 12:40:36 +02:00
2016-10-30 18:24:19 +01:00
CM_AUTO_PTR<cmCryptoHash> hash(cmCryptoHash::New(args[0].c_str()));
2016-07-09 11:21:54 +02:00
if (hash.get()) {
2015-04-27 22:25:09 +02:00
std::string out = hash->HashString(args[2]);
this->Makefile->AddDefinition(args[1], out.c_str());
2012-02-18 12:40:36 +02:00
return true;
2016-07-09 11:21:54 +02:00
}
2012-02-18 12:40:36 +02:00
return false;
#else
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2012-02-18 12:40:36 +02:00
e << args[0] << " not available during bootstrap";
this->SetError(e.str().c_str());
return false;
#endif
}
bool cmStringCommand::HandleToUpperLowerCommand(
std::vector<std::string> const& args, bool toUpper)
{
2016-07-09 11:21:54 +02:00
if (args.size() < 3) {
this->SetError("no output variable specified");
return false;
2016-07-09 11:21:54 +02:00
}
2017-07-20 19:35:53 +02:00
std::string const& outvar = args[2];
std::string output;
2016-07-09 11:21:54 +02:00
if (toUpper) {
output = cmSystemTools::UpperCase(args[1]);
2016-07-09 11:21:54 +02:00
} else {
output = cmSystemTools::LowerCase(args[1]);
2016-07-09 11:21:54 +02:00
}
// Store the output in the provided variable.
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(outvar, output.c_str());
return true;
}
bool cmStringCommand::HandleAsciiCommand(std::vector<std::string> const& args)
{
2016-07-09 11:21:54 +02:00
if (args.size() < 3) {
this->SetError("No output variable specified");
return false;
2016-07-09 11:21:54 +02:00
}
std::string::size_type cc;
2017-07-20 19:35:53 +02:00
std::string const& outvar = args[args.size() - 1];
2017-04-14 19:02:05 +02:00
std::string output;
2016-07-09 11:21:54 +02:00
for (cc = 1; cc < args.size() - 1; cc++) {
int ch = atoi(args[cc].c_str());
2016-07-09 11:21:54 +02:00
if (ch > 0 && ch < 256) {
output += static_cast<char>(ch);
2016-07-09 11:21:54 +02:00
} else {
std::string error = "Character with code ";
2009-10-04 10:30:41 +03:00
error += args[cc];
error += " does not exist.";
2015-04-27 22:25:09 +02:00
this->SetError(error);
return false;
}
2016-07-09 11:21:54 +02:00
}
// Store the output in the provided variable.
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(outvar, output.c_str());
return true;
}
bool cmStringCommand::HandleConfigureCommand(
std::vector<std::string> const& args)
{
2016-07-09 11:21:54 +02:00
if (args.size() < 2) {
this->SetError("No input string specified.");
return false;
2016-10-30 18:24:19 +01:00
}
if (args.size() < 3) {
this->SetError("No output variable specified.");
return false;
2016-07-09 11:21:54 +02:00
}
// Parse options.
bool escapeQuotes = false;
bool atOnly = false;
2016-07-09 11:21:54 +02:00
for (unsigned int i = 3; i < args.size(); ++i) {
if (args[i] == "@ONLY") {
atOnly = true;
2016-07-09 11:21:54 +02:00
} else if (args[i] == "ESCAPE_QUOTES") {
escapeQuotes = true;
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
std::ostringstream err;
err << "Unrecognized argument \"" << args[i] << "\"";
2015-04-27 22:25:09 +02:00
this->SetError(err.str());
return false;
}
2016-07-09 11:21:54 +02:00
}
// Configure the string.
std::string output;
this->Makefile->ConfigureString(args[1], output, atOnly, escapeQuotes);
// Store the output in the provided variable.
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(args[2], output.c_str());
return true;
}
bool cmStringCommand::HandleRegexCommand(std::vector<std::string> const& args)
{
2016-07-09 11:21:54 +02:00
if (args.size() < 2) {
this->SetError("sub-command REGEX requires a mode to be specified.");
return false;
2016-07-09 11:21:54 +02:00
}
2017-07-20 19:35:53 +02:00
std::string const& mode = args[1];
2016-07-09 11:21:54 +02:00
if (mode == "MATCH") {
if (args.size() < 5) {
this->SetError("sub-command REGEX, mode MATCH needs "
"at least 5 arguments total to command.");
return false;
}
2016-07-09 11:21:54 +02:00
return this->RegexMatch(args);
2016-10-30 18:24:19 +01:00
}
if (mode == "MATCHALL") {
2016-07-09 11:21:54 +02:00
if (args.size() < 5) {
this->SetError("sub-command REGEX, mode MATCHALL needs "
"at least 5 arguments total to command.");
return false;
}
2016-07-09 11:21:54 +02:00
return this->RegexMatchAll(args);
2016-10-30 18:24:19 +01:00
}
if (mode == "REPLACE") {
2016-07-09 11:21:54 +02:00
if (args.size() < 6) {
this->SetError("sub-command REGEX, mode REPLACE needs "
"at least 6 arguments total to command.");
return false;
}
2016-07-09 11:21:54 +02:00
return this->RegexReplace(args);
}
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
std::string e = "sub-command REGEX does not recognize mode " + mode;
2015-04-27 22:25:09 +02:00
this->SetError(e);
return false;
}
bool cmStringCommand::RegexMatch(std::vector<std::string> const& args)
{
//"STRING(REGEX MATCH <regular_expression> <output variable>
// <input> [<input>...])\n";
2017-07-20 19:35:53 +02:00
std::string const& regex = args[2];
std::string const& outvar = args[3];
2013-03-16 19:13:01 +02:00
2015-04-27 22:25:09 +02:00
this->Makefile->ClearMatches();
// Compile the regular expression.
cmsys::RegularExpression re;
2016-07-09 11:21:54 +02:00
if (!re.compile(regex.c_str())) {
2013-03-16 19:13:01 +02:00
std::string e =
2016-07-09 11:21:54 +02:00
"sub-command REGEX, mode MATCH failed to compile regex \"" + regex +
"\".";
2015-04-27 22:25:09 +02:00
this->SetError(e);
return false;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
2015-08-17 11:37:30 +02:00
// Concatenate all the last arguments together.
2015-11-17 17:22:37 +01:00
std::string input = cmJoin(cmMakeRange(args).advance(4), std::string());
2015-08-17 11:37:30 +02:00
// Scan through the input for all matches.
std::string output;
2016-07-09 11:21:54 +02:00
if (re.find(input.c_str())) {
2015-04-27 22:25:09 +02:00
this->Makefile->StoreMatches(re);
std::string::size_type l = re.start();
std::string::size_type r = re.end();
2016-07-09 11:21:54 +02:00
if (r - l == 0) {
std::string e = "sub-command REGEX, mode MATCH regex \"" + regex +
"\" matched an empty string.";
2015-04-27 22:25:09 +02:00
this->SetError(e);
return false;
}
2016-07-09 11:21:54 +02:00
output = input.substr(l, r - l);
}
2013-03-16 19:13:01 +02:00
// Store the output in the provided variable.
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(outvar, output.c_str());
return true;
}
bool cmStringCommand::RegexMatchAll(std::vector<std::string> const& args)
{
2013-03-16 19:13:01 +02:00
//"STRING(REGEX MATCHALL <regular_expression> <output variable> <input>
// [<input>...])\n";
2017-07-20 19:35:53 +02:00
std::string const& regex = args[2];
std::string const& outvar = args[3];
2013-03-16 19:13:01 +02:00
2015-04-27 22:25:09 +02:00
this->Makefile->ClearMatches();
// Compile the regular expression.
cmsys::RegularExpression re;
2016-07-09 11:21:54 +02:00
if (!re.compile(regex.c_str())) {
std::string e =
2016-07-09 11:21:54 +02:00
"sub-command REGEX, mode MATCHALL failed to compile regex \"" + regex +
"\".";
2015-04-27 22:25:09 +02:00
this->SetError(e);
return false;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
2015-08-17 11:37:30 +02:00
// Concatenate all the last arguments together.
2015-11-17 17:22:37 +01:00
std::string input = cmJoin(cmMakeRange(args).advance(4), std::string());
2015-08-17 11:37:30 +02:00
// Scan through the input for all matches.
std::string output;
const char* p = input.c_str();
2016-07-09 11:21:54 +02:00
while (re.find(p)) {
2015-04-27 22:25:09 +02:00
this->Makefile->StoreMatches(re);
std::string::size_type l = re.start();
std::string::size_type r = re.end();
2016-07-09 11:21:54 +02:00
if (r - l == 0) {
std::string e = "sub-command REGEX, mode MATCHALL regex \"" + regex +
"\" matched an empty string.";
2015-04-27 22:25:09 +02:00
this->SetError(e);
return false;
2016-07-09 11:21:54 +02:00
}
if (!output.empty()) {
output += ";";
}
2016-07-09 11:21:54 +02:00
output += std::string(p + l, r - l);
p += r;
}
2013-03-16 19:13:01 +02:00
// Store the output in the provided variable.
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(outvar, output.c_str());
return true;
}
bool cmStringCommand::RegexReplace(std::vector<std::string> const& args)
{
2013-03-16 19:13:01 +02:00
//"STRING(REGEX REPLACE <regular_expression> <replace_expression>
// <output variable> <input> [<input>...])\n"
2017-07-20 19:35:53 +02:00
std::string const& regex = args[2];
std::string const& replace = args[3];
std::string const& outvar = args[4];
2013-03-16 19:13:01 +02:00
// Pull apart the replace expression to find the escaped [0-9] values.
std::vector<RegexReplacement> replacement;
std::string::size_type l = 0;
2016-07-09 11:21:54 +02:00
while (l < replace.length()) {
2017-04-14 19:02:05 +02:00
std::string::size_type r = replace.find('\\', l);
2016-07-09 11:21:54 +02:00
if (r == std::string::npos) {
r = replace.length();
2016-07-09 11:21:54 +02:00
replacement.push_back(replace.substr(l, r - l));
} else {
if (r - l > 0) {
replacement.push_back(replace.substr(l, r - l));
}
2016-07-09 11:21:54 +02:00
if (r == (replace.length() - 1)) {
this->SetError("sub-command REGEX, mode REPLACE: "
"replace-expression ends in a backslash.");
return false;
2016-07-09 11:21:54 +02:00
}
if ((replace[r + 1] >= '0') && (replace[r + 1] <= '9')) {
replacement.push_back(replace[r + 1] - '0');
} else if (replace[r + 1] == 'n') {
replacement.push_back("\n");
2016-07-09 11:21:54 +02:00
} else if (replace[r + 1] == '\\') {
replacement.push_back("\\");
2016-07-09 11:21:54 +02:00
} else {
std::string e = "sub-command REGEX, mode REPLACE: Unknown escape \"";
e += replace.substr(r, 2);
2009-10-11 10:55:36 +03:00
e += "\" in replace-expression.";
2015-04-27 22:25:09 +02:00
this->SetError(e);
return false;
}
2016-07-09 11:21:54 +02:00
r += 2;
}
2016-07-09 11:21:54 +02:00
l = r;
}
2013-03-16 19:13:01 +02:00
2015-04-27 22:25:09 +02:00
this->Makefile->ClearMatches();
// Compile the regular expression.
cmsys::RegularExpression re;
2016-07-09 11:21:54 +02:00
if (!re.compile(regex.c_str())) {
2013-03-16 19:13:01 +02:00
std::string e =
2016-07-09 11:21:54 +02:00
"sub-command REGEX, mode REPLACE failed to compile regex \"" + regex +
"\".";
2015-04-27 22:25:09 +02:00
this->SetError(e);
return false;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
2015-08-17 11:37:30 +02:00
// Concatenate all the last arguments together.
2015-11-17 17:22:37 +01:00
std::string input = cmJoin(cmMakeRange(args).advance(5), std::string());
2015-08-17 11:37:30 +02:00
// Scan through the input for all matches.
std::string output;
std::string::size_type base = 0;
2016-07-09 11:21:54 +02:00
while (re.find(input.c_str() + base)) {
2015-04-27 22:25:09 +02:00
this->Makefile->StoreMatches(re);
std::string::size_type l2 = re.start();
std::string::size_type r = re.end();
2013-03-16 19:13:01 +02:00
// Concatenate the part of the input that was not matched.
output += input.substr(base, l2);
2013-03-16 19:13:01 +02:00
// Make sure the match had some text.
2016-07-09 11:21:54 +02:00
if (r - l2 == 0) {
std::string e = "sub-command REGEX, mode REPLACE regex \"" + regex +
"\" matched an empty string.";
2015-04-27 22:25:09 +02:00
this->SetError(e);
return false;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
// Concatenate the replacement for the match.
2016-07-09 11:21:54 +02:00
for (unsigned int i = 0; i < replacement.size(); ++i) {
if (replacement[i].number < 0) {
// This is just a plain-text part of the replacement.
output += replacement[i].value;
2016-07-09 11:21:54 +02:00
} else {
// Replace with part of the match.
int n = replacement[i].number;
std::string::size_type start = re.start(n);
std::string::size_type end = re.end(n);
2016-07-09 11:21:54 +02:00
std::string::size_type len = input.length() - base;
if ((start != std::string::npos) && (end != std::string::npos) &&
(start <= len) && (end <= len)) {
output += input.substr(base + start, end - start);
} else {
std::string e =
2016-07-09 11:21:54 +02:00
"sub-command REGEX, mode REPLACE: replace expression \"" +
replace + "\" contains an out-of-range escape for regex \"" +
regex + "\".";
2015-04-27 22:25:09 +02:00
this->SetError(e);
return false;
}
}
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
// Move past the match.
base += r;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
// Concatenate the text after the last match.
2016-07-09 11:21:54 +02:00
output += input.substr(base, input.length() - base);
2013-03-16 19:13:01 +02:00
// Store the output in the provided variable.
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(outvar, output.c_str());
return true;
}
2016-07-09 11:21:54 +02:00
bool cmStringCommand::HandleFindCommand(std::vector<std::string> const& args)
2011-06-19 15:41:06 +03:00
{
// check if all required parameters were passed
2016-07-09 11:21:54 +02:00
if (args.size() < 4 || args.size() > 5) {
2011-06-19 15:41:06 +03:00
this->SetError("sub-command FIND requires 3 or 4 parameters.");
return false;
2016-07-09 11:21:54 +02:00
}
2011-06-19 15:41:06 +03:00
// check if the reverse flag was set or not
bool reverseMode = false;
2016-07-09 11:21:54 +02:00
if (args.size() == 5 && args[4] == "REVERSE") {
2011-06-19 15:41:06 +03:00
reverseMode = true;
2016-07-09 11:21:54 +02:00
}
2011-06-19 15:41:06 +03:00
// if we have 5 arguments the last one must be REVERSE
2016-07-09 11:21:54 +02:00
if (args.size() == 5 && args[4] != "REVERSE") {
2011-06-19 15:41:06 +03:00
this->SetError("sub-command FIND: unknown last parameter");
return false;
2016-07-09 11:21:54 +02:00
}
2011-06-19 15:41:06 +03:00
// local parameter names.
const std::string& sstring = args[1];
const std::string& schar = args[2];
const std::string& outvar = args[3];
// ensure that the user cannot accidentally specify REVERSE as a variable
2016-07-09 11:21:54 +02:00
if (outvar == "REVERSE") {
this->SetError("sub-command FIND does not allow one to select REVERSE as "
2011-06-19 15:41:06 +03:00
"the output variable. "
"Maybe you missed the actual output variable?");
return false;
2016-07-09 11:21:54 +02:00
}
2011-06-19 15:41:06 +03:00
// try to find the character and return its position
size_t pos;
2016-07-09 11:21:54 +02:00
if (!reverseMode) {
2011-06-19 15:41:06 +03:00
pos = sstring.find(schar);
2016-07-09 11:21:54 +02:00
} else {
2011-06-19 15:41:06 +03:00
pos = sstring.rfind(schar);
2016-07-09 11:21:54 +02:00
}
if (std::string::npos != pos) {
2015-04-27 22:25:09 +02:00
std::ostringstream s;
2011-06-19 15:41:06 +03:00
s << pos;
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(outvar, s.str().c_str());
2011-06-19 15:41:06 +03:00
return true;
2016-07-09 11:21:54 +02:00
}
2011-06-19 15:41:06 +03:00
// the character was not found, but this is not really an error
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(outvar, "-1");
2011-06-19 15:41:06 +03:00
return true;
}
2016-07-09 11:21:54 +02:00
bool cmStringCommand::HandleCompareCommand(
std::vector<std::string> const& args)
{
2016-07-09 11:21:54 +02:00
if (args.size() < 2) {
this->SetError("sub-command COMPARE requires a mode to be specified.");
return false;
2016-07-09 11:21:54 +02:00
}
2017-07-20 19:35:53 +02:00
std::string const& mode = args[1];
2016-07-09 11:21:54 +02:00
if ((mode == "EQUAL") || (mode == "NOTEQUAL") || (mode == "LESS") ||
2016-10-30 18:24:19 +01:00
(mode == "LESS_EQUAL") || (mode == "GREATER") ||
(mode == "GREATER_EQUAL")) {
2016-07-09 11:21:54 +02:00
if (args.size() < 5) {
std::string e = "sub-command COMPARE, mode ";
e += mode;
e += " needs at least 5 arguments total to command.";
2015-04-27 22:25:09 +02:00
this->SetError(e);
return false;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
const std::string& left = args[2];
2013-03-16 19:13:01 +02:00
const std::string& right = args[3];
const std::string& outvar = args[4];
bool result;
2016-07-09 11:21:54 +02:00
if (mode == "LESS") {
result = (left < right);
2016-10-30 18:24:19 +01:00
} else if (mode == "LESS_EQUAL") {
result = (left <= right);
2016-07-09 11:21:54 +02:00
} else if (mode == "GREATER") {
result = (left > right);
2016-10-30 18:24:19 +01:00
} else if (mode == "GREATER_EQUAL") {
result = (left >= right);
2016-07-09 11:21:54 +02:00
} else if (mode == "EQUAL") {
result = (left == right);
2016-07-09 11:21:54 +02:00
} else // if(mode == "NOTEQUAL")
{
result = !(left == right);
2016-07-09 11:21:54 +02:00
}
if (result) {
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(outvar, "1");
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(outvar, "0");
2013-03-16 19:13:01 +02:00
}
2016-07-09 11:21:54 +02:00
return true;
}
std::string e = "sub-command COMPARE does not recognize mode " + mode;
2015-04-27 22:25:09 +02:00
this->SetError(e);
return false;
}
2016-07-09 11:21:54 +02:00
bool cmStringCommand::HandleReplaceCommand(
std::vector<std::string> const& args)
{
2016-07-09 11:21:54 +02:00
if (args.size() < 5) {
2009-10-11 10:55:36 +03:00
this->SetError("sub-command REPLACE requires at least four arguments.");
return false;
2016-07-09 11:21:54 +02:00
}
const std::string& matchExpression = args[1];
const std::string& replaceExpression = args[2];
const std::string& variableName = args[3];
2015-11-17 17:22:37 +01:00
std::string input = cmJoin(cmMakeRange(args).advance(4), std::string());
2013-03-16 19:13:01 +02:00
cmsys::SystemTools::ReplaceString(input, matchExpression.c_str(),
replaceExpression.c_str());
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(variableName, input.c_str());
return true;
}
2016-07-09 11:21:54 +02:00
bool cmStringCommand::HandleSubstringCommand(
std::vector<std::string> const& args)
{
2016-07-09 11:21:54 +02:00
if (args.size() != 5) {
2009-10-11 10:55:36 +03:00
this->SetError("sub-command SUBSTRING requires four arguments.");
return false;
2016-07-09 11:21:54 +02:00
}
const std::string& stringValue = args[1];
int begin = atoi(args[2].c_str());
int end = atoi(args[3].c_str());
const std::string& variableName = args[4];
size_t stringLength = stringValue.size();
int intStringLength = static_cast<int>(stringLength);
2016-07-09 11:21:54 +02:00
if (begin < 0 || begin > intStringLength) {
2015-04-27 22:25:09 +02:00
std::ostringstream ostr;
ostr << "begin index: " << begin << " is out of range 0 - "
<< stringLength;
2015-04-27 22:25:09 +02:00
this->SetError(ostr.str());
return false;
2016-07-09 11:21:54 +02:00
}
if (end < -1) {
2015-04-27 22:25:09 +02:00
std::ostringstream ostr;
ostr << "end index: " << end << " should be -1 or greater";
this->SetError(ostr.str());
return false;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(variableName,
stringValue.substr(begin, end).c_str());
return true;
}
2016-07-09 11:21:54 +02:00
bool cmStringCommand::HandleLengthCommand(std::vector<std::string> const& args)
{
2016-07-09 11:21:54 +02:00
if (args.size() != 3) {
this->SetError("sub-command LENGTH requires two arguments.");
return false;
2016-07-09 11:21:54 +02:00
}
const std::string& stringValue = args[1];
const std::string& variableName = args[2];
size_t length = stringValue.size();
char buffer[1024];
sprintf(buffer, "%d", static_cast<int>(length));
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(variableName, buffer);
return true;
}
2015-11-17 17:22:37 +01:00
bool cmStringCommand::HandleAppendCommand(std::vector<std::string> const& args)
{
2016-07-09 11:21:54 +02:00
if (args.size() < 2) {
2015-11-17 17:22:37 +01:00
this->SetError("sub-command APPEND requires at least one argument.");
return false;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
// Skip if nothing to append.
2016-07-09 11:21:54 +02:00
if (args.size() < 3) {
2015-11-17 17:22:37 +01:00
return true;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
const std::string& variable = args[1];
std::string value;
const char* oldValue = this->Makefile->GetDefinition(variable);
2016-07-09 11:21:54 +02:00
if (oldValue) {
2015-11-17 17:22:37 +01:00
value = oldValue;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
value += cmJoin(cmMakeRange(args).advance(2), std::string());
this->Makefile->AddDefinition(variable, value.c_str());
return true;
}
2016-07-09 11:21:54 +02:00
bool cmStringCommand::HandleConcatCommand(std::vector<std::string> const& args)
2014-08-03 19:52:23 +02:00
{
2016-07-09 11:21:54 +02:00
if (args.size() < 2) {
2014-08-03 19:52:23 +02:00
this->SetError("sub-command CONCAT requires at least one argument.");
return false;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
std::string const& variableName = args[1];
2015-11-17 17:22:37 +01:00
std::string value = cmJoin(cmMakeRange(args).advance(2), std::string());
2014-08-03 19:52:23 +02:00
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(variableName, value.c_str());
2014-08-03 19:52:23 +02:00
return true;
}
2016-07-09 11:21:54 +02:00
bool cmStringCommand::HandleMakeCIdentifierCommand(
std::vector<std::string> const& args)
2013-11-03 12:27:13 +02:00
{
2016-07-09 11:21:54 +02:00
if (args.size() != 3) {
2013-11-03 12:27:13 +02:00
this->SetError("sub-command MAKE_C_IDENTIFIER requires two arguments.");
return false;
2016-07-09 11:21:54 +02:00
}
2013-11-03 12:27:13 +02:00
const std::string& input = args[1];
const std::string& variableName = args[2];
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(variableName,
2016-07-09 11:21:54 +02:00
cmSystemTools::MakeCidentifier(input).c_str());
2015-04-27 22:25:09 +02:00
return true;
}
2016-07-09 11:21:54 +02:00
bool cmStringCommand::HandleGenexStripCommand(
std::vector<std::string> const& args)
2015-04-27 22:25:09 +02:00
{
2016-07-09 11:21:54 +02:00
if (args.size() != 3) {
2015-04-27 22:25:09 +02:00
this->SetError("sub-command GENEX_STRIP requires two arguments.");
return false;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
const std::string& input = args[1];
2016-07-09 11:21:54 +02:00
std::string result = cmGeneratorExpression::Preprocess(
input, cmGeneratorExpression::StripAllGeneratorExpressions);
2015-04-27 22:25:09 +02:00
const std::string& variableName = args[2];
this->Makefile->AddDefinition(variableName, result.c_str());
2013-11-03 12:27:13 +02:00
return true;
}
2016-07-09 11:21:54 +02:00
bool cmStringCommand::HandleStripCommand(std::vector<std::string> const& args)
{
2016-07-09 11:21:54 +02:00
if (args.size() != 3) {
2009-10-11 10:55:36 +03:00
this->SetError("sub-command STRIP requires two arguments.");
return false;
2016-07-09 11:21:54 +02:00
}
const std::string& stringValue = args[1];
const std::string& variableName = args[2];
size_t inStringLength = stringValue.size();
size_t startPos = inStringLength + 1;
size_t endPos = 0;
const char* ptr = stringValue.c_str();
size_t cc;
2016-07-09 11:21:54 +02:00
for (cc = 0; cc < inStringLength; ++cc) {
if (!isspace(*ptr)) {
if (startPos > inStringLength) {
startPos = cc;
}
2016-07-09 11:21:54 +02:00
endPos = cc;
}
2016-07-09 11:21:54 +02:00
++ptr;
}
size_t outLength = 0;
2013-03-16 19:13:01 +02:00
// if the input string didn't contain any non-space characters, return
// an empty string
2016-07-09 11:21:54 +02:00
if (startPos > inStringLength) {
outLength = 0;
startPos = 0;
2016-07-09 11:21:54 +02:00
} else {
outLength = endPos - startPos + 1;
}
2016-07-09 11:21:54 +02:00
this->Makefile->AddDefinition(
variableName, stringValue.substr(startPos, outLength).c_str());
return true;
}
2016-07-09 11:21:54 +02:00
bool cmStringCommand::HandleRandomCommand(std::vector<std::string> const& args)
{
2016-07-09 11:21:54 +02:00
if (args.size() < 2 || args.size() == 3 || args.size() == 5) {
this->SetError("sub-command RANDOM requires at least one argument.");
return false;
2016-07-09 11:21:54 +02:00
}
2009-11-14 01:56:15 +02:00
static bool seeded = false;
bool force_seed = false;
2011-06-19 15:41:06 +03:00
unsigned int seed = 0;
int length = 5;
const char cmStringCommandDefaultAlphabet[] = "qwertyuiopasdfghjklzxcvbnm"
2016-07-09 11:21:54 +02:00
"QWERTYUIOPASDFGHJKLZXCVBNM"
"0123456789";
std::string alphabet;
2016-07-09 11:21:54 +02:00
if (args.size() > 3) {
size_t i = 1;
size_t stopAt = args.size() - 2;
2016-07-09 11:21:54 +02:00
for (; i < stopAt; ++i) {
if (args[i] == "LENGTH") {
++i;
length = atoi(args[i].c_str());
2016-07-09 11:21:54 +02:00
} else if (args[i] == "ALPHABET") {
++i;
alphabet = args[i];
2016-07-09 11:21:54 +02:00
} else if (args[i] == "RANDOM_SEED") {
2009-11-14 01:56:15 +02:00
++i;
2011-06-19 15:41:06 +03:00
seed = static_cast<unsigned int>(atoi(args[i].c_str()));
2009-11-14 01:56:15 +02:00
force_seed = true;
}
}
2016-07-09 11:21:54 +02:00
}
if (alphabet.empty()) {
alphabet = cmStringCommandDefaultAlphabet;
2016-07-09 11:21:54 +02:00
}
2010-11-13 01:00:53 +02:00
double sizeofAlphabet = static_cast<double>(alphabet.size());
2016-07-09 11:21:54 +02:00
if (sizeofAlphabet < 1) {
this->SetError("sub-command RANDOM invoked with bad alphabet.");
return false;
2016-07-09 11:21:54 +02:00
}
if (length < 1) {
this->SetError("sub-command RANDOM invoked with bad length.");
return false;
2016-07-09 11:21:54 +02:00
}
const std::string& variableName = args[args.size() - 1];
std::vector<char> result;
2009-11-14 01:56:15 +02:00
2016-07-09 11:21:54 +02:00
if (!seeded || force_seed) {
2009-11-14 01:56:15 +02:00
seeded = true;
2016-07-09 11:21:54 +02:00
srand(force_seed ? seed : cmSystemTools::RandomSeed());
}
2009-11-14 01:56:15 +02:00
const char* alphaPtr = alphabet.c_str();
int cc;
2016-07-09 11:21:54 +02:00
for (cc = 0; cc < length; cc++) {
int idx = (int)(sizeofAlphabet * rand() / (RAND_MAX + 1.0));
result.push_back(*(alphaPtr + idx));
2016-07-09 11:21:54 +02:00
}
result.push_back(0);
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(variableName, &*result.begin());
return true;
}
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
bool cmStringCommand::HandleTimestampCommand(
std::vector<std::string> const& args)
2013-03-16 19:13:01 +02:00
{
2016-07-09 11:21:54 +02:00
if (args.size() < 2) {
2013-03-16 19:13:01 +02:00
this->SetError("sub-command TIMESTAMP requires at least one argument.");
return false;
2016-10-30 18:24:19 +01:00
}
if (args.size() > 4) {
2013-03-16 19:13:01 +02:00
this->SetError("sub-command TIMESTAMP takes at most three arguments.");
return false;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
unsigned int argsIndex = 1;
2016-07-09 11:21:54 +02:00
const std::string& outputVariable = args[argsIndex++];
2013-03-16 19:13:01 +02:00
std::string formatString;
2016-07-09 11:21:54 +02:00
if (args.size() > argsIndex && args[argsIndex] != "UTC") {
2013-03-16 19:13:01 +02:00
formatString = args[argsIndex++];
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
bool utcFlag = false;
2016-07-09 11:21:54 +02:00
if (args.size() > argsIndex) {
if (args[argsIndex] == "UTC") {
2013-03-16 19:13:01 +02:00
utcFlag = true;
2016-07-09 11:21:54 +02:00
} else {
2013-03-16 19:13:01 +02:00
std::string e = " TIMESTAMP sub-command does not recognize option " +
2016-07-09 11:21:54 +02:00
args[argsIndex] + ".";
2015-04-27 22:25:09 +02:00
this->SetError(e);
2013-03-16 19:13:01 +02:00
return false;
}
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
cmTimestamp timestamp;
std::string result = timestamp.CurrentTime(formatString, utcFlag);
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(outputVariable, result.c_str());
2013-03-16 19:13:01 +02:00
return true;
}
2015-04-27 22:25:09 +02:00
2016-07-09 11:21:54 +02:00
bool cmStringCommand::HandleUuidCommand(std::vector<std::string> const& args)
2015-04-27 22:25:09 +02:00
{
#if defined(CMAKE_BUILD_WITH_CMAKE)
unsigned int argsIndex = 1;
2016-07-09 11:21:54 +02:00
if (args.size() < 2) {
2015-04-27 22:25:09 +02:00
this->SetError("UUID sub-command requires an output variable.");
return false;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
2016-07-09 11:21:54 +02:00
const std::string& outputVariable = args[argsIndex++];
2015-04-27 22:25:09 +02:00
std::string uuidNamespaceString;
std::string uuidName;
std::string uuidType;
bool uuidUpperCase = false;
2016-07-09 11:21:54 +02:00
while (args.size() > argsIndex) {
if (args[argsIndex] == "NAMESPACE") {
2015-04-27 22:25:09 +02:00
++argsIndex;
2016-07-09 11:21:54 +02:00
if (argsIndex >= args.size()) {
2015-04-27 22:25:09 +02:00
this->SetError("UUID sub-command, NAMESPACE requires a value.");
return false;
}
2016-07-09 11:21:54 +02:00
uuidNamespaceString = args[argsIndex++];
} else if (args[argsIndex] == "NAME") {
2015-04-27 22:25:09 +02:00
++argsIndex;
2016-07-09 11:21:54 +02:00
if (argsIndex >= args.size()) {
2015-04-27 22:25:09 +02:00
this->SetError("UUID sub-command, NAME requires a value.");
return false;
}
2016-07-09 11:21:54 +02:00
uuidName = args[argsIndex++];
} else if (args[argsIndex] == "TYPE") {
2015-04-27 22:25:09 +02:00
++argsIndex;
2016-07-09 11:21:54 +02:00
if (argsIndex >= args.size()) {
2015-04-27 22:25:09 +02:00
this->SetError("UUID sub-command, TYPE requires a value.");
return false;
}
2016-07-09 11:21:54 +02:00
uuidType = args[argsIndex++];
} else if (args[argsIndex] == "UPPER") {
2015-04-27 22:25:09 +02:00
++argsIndex;
uuidUpperCase = true;
2016-07-09 11:21:54 +02:00
} else {
std::string e =
"UUID sub-command does not recognize option " + args[argsIndex] + ".";
2015-04-27 22:25:09 +02:00
this->SetError(e);
return false;
}
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
std::string uuid;
cmUuid uuidGenerator;
std::vector<unsigned char> uuidNamespace;
2016-07-09 11:21:54 +02:00
if (!uuidGenerator.StringToBinary(uuidNamespaceString, uuidNamespace)) {
2015-04-27 22:25:09 +02:00
this->SetError("UUID sub-command, malformed NAMESPACE UUID.");
return false;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
2016-07-09 11:21:54 +02:00
if (uuidType == "MD5") {
2015-04-27 22:25:09 +02:00
uuid = uuidGenerator.FromMd5(uuidNamespace, uuidName);
2016-07-09 11:21:54 +02:00
} else if (uuidType == "SHA1") {
2015-04-27 22:25:09 +02:00
uuid = uuidGenerator.FromSha1(uuidNamespace, uuidName);
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
std::string e = "UUID sub-command, unknown TYPE '" + uuidType + "'.";
this->SetError(e);
return false;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
2016-07-09 11:21:54 +02:00
if (uuid.empty()) {
2015-04-27 22:25:09 +02:00
this->SetError("UUID sub-command, generation failed.");
return false;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
2016-07-09 11:21:54 +02:00
if (uuidUpperCase) {
2015-04-27 22:25:09 +02:00
uuid = cmSystemTools::UpperCase(uuid);
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(outputVariable, uuid.c_str());
return true;
#else
std::ostringstream e;
e << args[0] << " not available during bootstrap";
this->SetError(e.str().c_str());
return false;
#endif
}