2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2009-08-11 17:54:56 +04:00
|
|
|
#include "cmGeneratorExpression.h"
|
|
|
|
|
2012-10-15 12:27:42 +04:00
|
|
|
#include "assert.h"
|
2015-03-08 15:51:20 +03:00
|
|
|
#include "cmAlgorithms.h"
|
2016-09-01 21:59:28 +03:00
|
|
|
#include "cmGeneratorExpressionContext.h"
|
2012-09-11 21:53:38 +04:00
|
|
|
#include "cmGeneratorExpressionEvaluator.h"
|
|
|
|
#include "cmGeneratorExpressionLexer.h"
|
|
|
|
#include "cmGeneratorExpressionParser.h"
|
2016-09-01 21:59:28 +03:00
|
|
|
#include "cmSystemTools.h"
|
|
|
|
|
|
|
|
#include <cmsys/RegularExpression.hxx>
|
|
|
|
#include <utility>
|
2012-09-11 21:53:38 +04:00
|
|
|
|
2009-08-11 17:54:56 +04:00
|
|
|
cmGeneratorExpression::cmGeneratorExpression(
|
2016-05-16 17:34:04 +03:00
|
|
|
const cmListFileBacktrace& backtrace)
|
|
|
|
: Backtrace(backtrace)
|
2009-08-11 17:54:56 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-06-28 17:17:52 +03:00
|
|
|
CM_AUTO_PTR<cmCompiledGeneratorExpression> cmGeneratorExpression::Parse(
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string const& input)
|
2009-08-11 17:54:56 +04:00
|
|
|
{
|
2016-06-28 17:17:52 +03:00
|
|
|
return CM_AUTO_PTR<cmCompiledGeneratorExpression>(
|
2015-07-09 00:52:51 +03:00
|
|
|
new cmCompiledGeneratorExpression(this->Backtrace, input));
|
2009-08-11 17:54:56 +04:00
|
|
|
}
|
|
|
|
|
2016-06-28 17:17:52 +03:00
|
|
|
CM_AUTO_PTR<cmCompiledGeneratorExpression> cmGeneratorExpression::Parse(
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* input)
|
2009-08-11 17:54:56 +04:00
|
|
|
{
|
2014-02-08 21:01:01 +04:00
|
|
|
return this->Parse(std::string(input ? input : ""));
|
2012-09-12 17:11:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cmGeneratorExpression::~cmGeneratorExpression()
|
|
|
|
{
|
2012-08-13 17:49:53 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* cmCompiledGeneratorExpression::Evaluate(
|
|
|
|
cmLocalGenerator* lg, const std::string& config, bool quiet,
|
2015-09-16 05:38:52 +03:00
|
|
|
const cmGeneratorTarget* headTarget,
|
2016-05-16 17:34:04 +03:00
|
|
|
cmGeneratorExpressionDAGChecker* dagChecker,
|
|
|
|
std::string const& language) const
|
2012-11-06 19:06:31 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
return this->Evaluate(lg, config, quiet, headTarget, headTarget, dagChecker,
|
2015-02-22 19:43:13 +03:00
|
|
|
language);
|
2012-11-06 19:06:31 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* cmCompiledGeneratorExpression::Evaluate(
|
2015-07-25 17:56:52 +03:00
|
|
|
cmLocalGenerator* lg, const std::string& config, bool quiet,
|
2016-05-16 17:34:04 +03:00
|
|
|
const cmGeneratorTarget* headTarget, const cmGeneratorTarget* currentTarget,
|
|
|
|
cmGeneratorExpressionDAGChecker* dagChecker,
|
2015-02-22 19:43:13 +03:00
|
|
|
std::string const& language) const
|
2009-08-11 17:54:56 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
cmGeneratorExpressionContext context(
|
|
|
|
lg, config, quiet, headTarget, currentTarget ? currentTarget : headTarget,
|
|
|
|
this->EvaluateForBuildsystem, this->Backtrace, language);
|
2012-09-11 21:53:38 +04:00
|
|
|
|
2015-02-22 23:30:44 +03:00
|
|
|
return this->EvaluateWithContext(context, dagChecker);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* cmCompiledGeneratorExpression::EvaluateWithContext(
|
2016-05-16 17:34:04 +03:00
|
|
|
cmGeneratorExpressionContext& context,
|
|
|
|
cmGeneratorExpressionDAGChecker* dagChecker) const
|
2009-08-11 17:54:56 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->NeedsEvaluation) {
|
2012-11-19 22:30:56 +04:00
|
|
|
return this->Input.c_str();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-09-11 21:53:38 +04:00
|
|
|
|
|
|
|
this->Output = "";
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::vector<cmGeneratorExpressionEvaluator*>::const_iterator it =
|
|
|
|
this->Evaluators.begin();
|
|
|
|
const std::vector<cmGeneratorExpressionEvaluator*>::const_iterator end =
|
|
|
|
this->Evaluators.end();
|
2012-09-11 21:53:38 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
for (; it != end; ++it) {
|
2013-02-07 16:04:46 +04:00
|
|
|
this->Output += (*it)->Evaluate(&context, dagChecker);
|
2012-11-05 17:48:42 +04:00
|
|
|
|
2015-01-15 05:09:43 +03:00
|
|
|
this->SeenTargetProperties.insert(context.SeenTargetProperties.begin(),
|
|
|
|
context.SeenTargetProperties.end());
|
2016-05-16 17:34:04 +03:00
|
|
|
if (context.HadError) {
|
2012-09-11 21:53:38 +04:00
|
|
|
this->Output = "";
|
|
|
|
break;
|
2012-08-13 18:00:32 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-05-15 13:32:30 +04:00
|
|
|
|
|
|
|
this->MaxLanguageStandard = context.MaxLanguageStandard;
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!context.HadError) {
|
2013-02-03 10:33:15 +04:00
|
|
|
this->HadContextSensitiveCondition = context.HadContextSensitiveCondition;
|
2014-07-21 21:02:22 +04:00
|
|
|
this->HadHeadSensitiveCondition = context.HadHeadSensitiveCondition;
|
2014-11-05 01:24:54 +03:00
|
|
|
this->SourceSensitiveTargets = context.SourceSensitiveTargets;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-09-11 21:53:38 +04:00
|
|
|
|
2013-02-09 14:12:20 +04:00
|
|
|
this->DependTargets = context.DependTargets;
|
|
|
|
this->AllTargetsSeen = context.AllTargets;
|
2012-09-11 21:53:38 +04:00
|
|
|
// TODO: Return a std::string from here instead?
|
|
|
|
return this->Output.c_str();
|
2009-08-11 17:54:56 +04:00
|
|
|
}
|
|
|
|
|
2012-09-12 17:11:25 +04:00
|
|
|
cmCompiledGeneratorExpression::cmCompiledGeneratorExpression(
|
2016-05-16 17:34:04 +03:00
|
|
|
cmListFileBacktrace const& backtrace, const std::string& input)
|
|
|
|
: Backtrace(backtrace)
|
|
|
|
, Input(input)
|
|
|
|
, HadContextSensitiveCondition(false)
|
|
|
|
, HadHeadSensitiveCondition(false)
|
|
|
|
, EvaluateForBuildsystem(false)
|
2012-09-12 17:11:25 +04:00
|
|
|
{
|
2012-11-19 22:30:56 +04:00
|
|
|
cmGeneratorExpressionLexer l;
|
2016-05-16 17:34:04 +03:00
|
|
|
std::vector<cmGeneratorExpressionToken> tokens = l.Tokenize(this->Input);
|
2013-02-28 15:04:23 +04:00
|
|
|
this->NeedsEvaluation = l.GetSawGeneratorExpression();
|
2012-09-12 17:11:25 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->NeedsEvaluation) {
|
2012-11-19 22:30:56 +04:00
|
|
|
cmGeneratorExpressionParser p(tokens);
|
|
|
|
p.Parse(this->Evaluators);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-09-12 17:11:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cmCompiledGeneratorExpression::~cmCompiledGeneratorExpression()
|
2009-08-11 17:54:56 +04:00
|
|
|
{
|
2015-01-04 15:33:16 +03:00
|
|
|
cmDeleteAll(this->Evaluators);
|
2009-08-11 17:54:56 +04:00
|
|
|
}
|
2012-10-15 12:27:42 +04:00
|
|
|
|
2013-02-18 14:24:41 +04:00
|
|
|
std::string cmGeneratorExpression::StripEmptyListElements(
|
2016-05-16 17:34:04 +03:00
|
|
|
const std::string& input)
|
2013-01-13 12:39:29 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (input.find(';') == input.npos) {
|
2014-02-09 14:09:52 +04:00
|
|
|
return input;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-01-13 12:39:29 +04:00
|
|
|
std::string result;
|
2014-02-09 14:09:52 +04:00
|
|
|
result.reserve(input.size());
|
2013-01-13 12:39:29 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* c = input.c_str();
|
|
|
|
const char* last = c;
|
2013-01-13 12:39:29 +04:00
|
|
|
bool skipSemiColons = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (; *c; ++c) {
|
|
|
|
if (*c == ';') {
|
|
|
|
if (skipSemiColons) {
|
2014-02-09 14:09:52 +04:00
|
|
|
result.append(last, c - last);
|
|
|
|
last = c + 1;
|
2013-01-13 12:39:29 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
skipSemiColons = true;
|
|
|
|
} else {
|
2013-01-13 12:39:29 +04:00
|
|
|
skipSemiColons = false;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-02-09 14:09:52 +04:00
|
|
|
result.append(last);
|
2013-01-13 12:39:29 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!result.empty() && *(result.end() - 1) == ';') {
|
2013-01-13 12:39:29 +04:00
|
|
|
result.resize(result.size() - 1);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-01-13 12:39:29 +04:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
static std::string stripAllGeneratorExpressions(const std::string& input)
|
2012-10-15 12:27:42 +04:00
|
|
|
{
|
|
|
|
std::string result;
|
|
|
|
std::string::size_type pos = 0;
|
|
|
|
std::string::size_type lastPos = pos;
|
2013-09-13 19:22:05 +04:00
|
|
|
int nestingLevel = 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
while ((pos = input.find("$<", lastPos)) != input.npos) {
|
2012-10-15 12:27:42 +04:00
|
|
|
result += input.substr(lastPos, pos - lastPos);
|
|
|
|
pos += 2;
|
2013-09-13 19:22:05 +04:00
|
|
|
nestingLevel = 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* c = input.c_str() + pos;
|
|
|
|
const char* const cStart = c;
|
|
|
|
for (; *c; ++c) {
|
|
|
|
if (c[0] == '$' && c[1] == '<') {
|
2012-10-15 12:27:42 +04:00
|
|
|
++nestingLevel;
|
|
|
|
++c;
|
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (c[0] == '>') {
|
2012-10-15 12:27:42 +04:00
|
|
|
--nestingLevel;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (nestingLevel == 0) {
|
2012-10-15 12:27:42 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-10-15 12:27:42 +04:00
|
|
|
const std::string::size_type traversed = (c - cStart) + 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!*c) {
|
2012-10-15 12:27:42 +04:00
|
|
|
result += "$<" + input.substr(pos, traversed);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-10-15 12:27:42 +04:00
|
|
|
pos += traversed;
|
|
|
|
lastPos = pos;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (nestingLevel == 0) {
|
2013-09-13 19:22:05 +04:00
|
|
|
result += input.substr(lastPos);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-02-18 14:24:41 +04:00
|
|
|
return cmGeneratorExpression::StripEmptyListElements(result);
|
2012-10-15 12:27:42 +04:00
|
|
|
}
|
2012-09-23 15:16:44 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
static void prefixItems(const std::string& content, std::string& result,
|
|
|
|
const std::string& prefix)
|
2013-07-25 11:05:03 +04:00
|
|
|
{
|
|
|
|
std::vector<std::string> entries;
|
|
|
|
cmGeneratorExpression::Split(content, entries);
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* sep = "";
|
|
|
|
for (std::vector<std::string>::const_iterator ei = entries.begin();
|
|
|
|
ei != entries.end(); ++ei) {
|
2013-10-07 15:24:41 +04:00
|
|
|
result += sep;
|
|
|
|
sep = ";";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cmSystemTools::FileIsFullPath(ei->c_str()) &&
|
|
|
|
cmGeneratorExpression::Find(*ei) != 0) {
|
2013-07-25 11:05:03 +04:00
|
|
|
result += prefix;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
result += *ei;
|
|
|
|
}
|
2013-07-25 11:05:03 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
static std::string stripExportInterface(
|
|
|
|
const std::string& input, cmGeneratorExpression::PreprocessContext context,
|
|
|
|
bool resolveRelative)
|
2012-09-23 15:16:44 +04:00
|
|
|
{
|
|
|
|
std::string result;
|
|
|
|
|
2013-09-13 19:22:05 +04:00
|
|
|
int nestingLevel = 0;
|
2012-09-23 15:16:44 +04:00
|
|
|
std::string::size_type pos = 0;
|
|
|
|
std::string::size_type lastPos = pos;
|
2016-05-16 17:34:04 +03:00
|
|
|
while (true) {
|
2013-03-15 00:40:21 +04:00
|
|
|
std::string::size_type bPos = input.find("$<BUILD_INTERFACE:", lastPos);
|
|
|
|
std::string::size_type iPos = input.find("$<INSTALL_INTERFACE:", lastPos);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (bPos == std::string::npos && iPos == std::string::npos) {
|
2013-03-15 00:40:21 +04:00
|
|
|
break;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-03-15 00:40:21 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (bPos == std::string::npos) {
|
2013-03-15 00:40:21 +04:00
|
|
|
pos = iPos;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (iPos == std::string::npos) {
|
2013-03-15 00:40:21 +04:00
|
|
|
pos = bPos;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2013-03-15 00:40:21 +04:00
|
|
|
pos = (bPos < iPos) ? bPos : iPos;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-03-15 00:40:21 +04:00
|
|
|
|
2012-09-23 15:16:44 +04:00
|
|
|
result += input.substr(lastPos, pos - lastPos);
|
|
|
|
const bool gotInstallInterface = input[pos + 2] == 'I';
|
|
|
|
pos += gotInstallInterface ? sizeof("$<INSTALL_INTERFACE:") - 1
|
|
|
|
: sizeof("$<BUILD_INTERFACE:") - 1;
|
2013-09-13 19:22:05 +04:00
|
|
|
nestingLevel = 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* c = input.c_str() + pos;
|
|
|
|
const char* const cStart = c;
|
|
|
|
for (; *c; ++c) {
|
|
|
|
if (c[0] == '$' && c[1] == '<') {
|
2012-09-23 15:16:44 +04:00
|
|
|
++nestingLevel;
|
|
|
|
++c;
|
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (c[0] == '>') {
|
2012-09-23 15:16:44 +04:00
|
|
|
--nestingLevel;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (nestingLevel != 0) {
|
2012-09-23 15:16:44 +04:00
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (context == cmGeneratorExpression::BuildInterface &&
|
|
|
|
!gotInstallInterface) {
|
2012-09-23 15:16:44 +04:00
|
|
|
result += input.substr(pos, c - cStart);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (context == cmGeneratorExpression::InstallInterface &&
|
|
|
|
gotInstallInterface) {
|
2013-07-25 11:05:03 +04:00
|
|
|
const std::string content = input.substr(pos, c - cStart);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (resolveRelative) {
|
2013-07-25 11:05:03 +04:00
|
|
|
prefixItems(content, result, "${_IMPORT_PREFIX}/");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2013-07-25 11:05:03 +04:00
|
|
|
result += content;
|
2012-09-23 15:16:44 +04:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
break;
|
2012-09-23 15:16:44 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-09-23 15:16:44 +04:00
|
|
|
const std::string::size_type traversed = (c - cStart) + 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!*c) {
|
2012-09-23 15:16:44 +04:00
|
|
|
result += std::string(gotInstallInterface ? "$<INSTALL_INTERFACE:"
|
2016-05-16 17:34:04 +03:00
|
|
|
: "$<BUILD_INTERFACE:") +
|
|
|
|
input.substr(pos, traversed);
|
|
|
|
}
|
2012-09-23 15:16:44 +04:00
|
|
|
pos += traversed;
|
|
|
|
lastPos = pos;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (nestingLevel == 0) {
|
2013-09-13 19:22:05 +04:00
|
|
|
result += input.substr(lastPos);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-09-23 15:16:44 +04:00
|
|
|
|
2013-02-18 14:24:41 +04:00
|
|
|
return cmGeneratorExpression::StripEmptyListElements(result);
|
2012-09-23 15:16:44 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmGeneratorExpression::Split(const std::string& input,
|
|
|
|
std::vector<std::string>& output)
|
2012-12-10 15:00:34 +04:00
|
|
|
{
|
|
|
|
std::string::size_type pos = 0;
|
|
|
|
std::string::size_type lastPos = pos;
|
2016-05-16 17:34:04 +03:00
|
|
|
while ((pos = input.find("$<", lastPos)) != input.npos) {
|
2012-12-10 15:00:34 +04:00
|
|
|
std::string part = input.substr(lastPos, pos - lastPos);
|
|
|
|
std::string preGenex;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!part.empty()) {
|
2016-05-24 22:24:10 +03:00
|
|
|
std::string::size_type startPos = input.rfind(';', pos);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (startPos == std::string::npos) {
|
2013-02-28 20:39:27 +04:00
|
|
|
preGenex = part;
|
|
|
|
part = "";
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (startPos != pos - 1 && startPos >= lastPos) {
|
2012-12-10 15:00:34 +04:00
|
|
|
part = input.substr(lastPos, startPos - lastPos);
|
|
|
|
preGenex = input.substr(startPos + 1, pos - startPos - 1);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (!part.empty()) {
|
2014-03-11 03:04:11 +04:00
|
|
|
cmSystemTools::ExpandListArgument(part, output);
|
2012-12-10 15:00:34 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-12-10 15:00:34 +04:00
|
|
|
pos += 2;
|
|
|
|
int nestingLevel = 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* c = input.c_str() + pos;
|
|
|
|
const char* const cStart = c;
|
|
|
|
for (; *c; ++c) {
|
|
|
|
if (c[0] == '$' && c[1] == '<') {
|
2012-12-10 15:00:34 +04:00
|
|
|
++nestingLevel;
|
|
|
|
++c;
|
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (c[0] == '>') {
|
2012-12-10 15:00:34 +04:00
|
|
|
--nestingLevel;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (nestingLevel == 0) {
|
2012-12-10 15:00:34 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
for (; *c; ++c) {
|
2012-12-10 15:00:34 +04:00
|
|
|
// Capture the part after the genex and before the next ';'
|
2016-05-16 17:34:04 +03:00
|
|
|
if (c[0] == ';') {
|
2012-12-10 15:00:34 +04:00
|
|
|
--c;
|
|
|
|
break;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-12-10 15:00:34 +04:00
|
|
|
const std::string::size_type traversed = (c - cStart) + 1;
|
|
|
|
output.push_back(preGenex + "$<" + input.substr(pos, traversed));
|
|
|
|
pos += traversed;
|
|
|
|
lastPos = pos;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (lastPos < input.size()) {
|
2012-12-10 15:00:34 +04:00
|
|
|
cmSystemTools::ExpandListArgument(input.substr(lastPos), output);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-12-10 15:00:34 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string cmGeneratorExpression::Preprocess(const std::string& input,
|
2013-07-25 11:05:03 +04:00
|
|
|
PreprocessContext context,
|
|
|
|
bool resolveRelative)
|
2012-09-23 15:16:44 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (context == StripAllGeneratorExpressions) {
|
2012-09-23 15:16:44 +04:00
|
|
|
return stripAllGeneratorExpressions(input);
|
2016-08-18 21:36:29 +03:00
|
|
|
}
|
|
|
|
if (context == BuildInterface || context == InstallInterface) {
|
2013-07-25 11:05:03 +04:00
|
|
|
return stripExportInterface(input, context, resolveRelative);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-09-23 15:16:44 +04:00
|
|
|
|
2014-12-12 20:21:54 +03:00
|
|
|
assert(0 && "cmGeneratorExpression::Preprocess called with invalid args");
|
2012-09-23 15:16:44 +04:00
|
|
|
return std::string();
|
|
|
|
}
|
2013-02-06 16:18:10 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string::size_type cmGeneratorExpression::Find(const std::string& input)
|
2013-02-06 16:18:10 +04:00
|
|
|
{
|
|
|
|
const std::string::size_type openpos = input.find("$<");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (openpos != std::string::npos &&
|
2016-05-24 22:24:10 +03:00
|
|
|
input.find('>', openpos) != std::string::npos) {
|
2013-02-06 16:32:15 +04:00
|
|
|
return openpos;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-02-06 16:18:10 +04:00
|
|
|
return std::string::npos;
|
|
|
|
}
|
2013-02-06 16:32:15 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmGeneratorExpression::IsValidTargetName(const std::string& input)
|
2013-02-06 16:32:15 +04:00
|
|
|
{
|
|
|
|
// The ':' is supported to allow use with IMPORTED targets. At least
|
|
|
|
// Qt 4 and 5 IMPORTED targets use ':' as the namespace delimiter.
|
2014-04-30 21:12:29 +04:00
|
|
|
static cmsys::RegularExpression targetNameValidator("^[A-Za-z0-9_.:+-]+$");
|
2013-02-06 16:32:15 +04:00
|
|
|
|
2014-04-30 21:12:29 +04:00
|
|
|
return targetNameValidator.find(input);
|
2013-02-06 16:32:15 +04:00
|
|
|
}
|
2014-05-15 13:32:30 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmCompiledGeneratorExpression::GetMaxLanguageStandard(
|
|
|
|
const cmGeneratorTarget* tgt, std::map<std::string, std::string>& mapping)
|
2014-05-15 13:32:30 +04:00
|
|
|
{
|
2015-10-10 19:41:51 +03:00
|
|
|
typedef std::map<cmGeneratorTarget const*,
|
2016-05-16 17:34:04 +03:00
|
|
|
std::map<std::string, std::string> >
|
|
|
|
MapType;
|
2014-05-15 13:32:30 +04:00
|
|
|
MapType::const_iterator it = this->MaxLanguageStandard.find(tgt);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (it != this->MaxLanguageStandard.end()) {
|
2014-05-15 13:32:30 +04:00
|
|
|
mapping = it->second;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-05-15 13:32:30 +04:00
|
|
|
}
|