cmake/Source/cmGeneratorExpression.cxx

477 lines
14 KiB
C++
Raw Normal View History

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