cmake/Source/cmGeneratorExpressionParser.cxx

253 lines
8.5 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. */
2013-03-16 19:13:01 +02:00
#include "cmGeneratorExpressionParser.h"
#include "cmGeneratorExpressionEvaluator.h"
2016-10-30 18:24:19 +01:00
#include <assert.h>
#include <stddef.h>
2013-03-16 19:13:01 +02:00
cmGeneratorExpressionParser::cmGeneratorExpressionParser(
2016-07-09 11:21:54 +02:00
const std::vector<cmGeneratorExpressionToken>& tokens)
: Tokens(tokens)
, NestingLevel(0)
2013-03-16 19:13:01 +02:00
{
}
void cmGeneratorExpressionParser::Parse(
2016-07-09 11:21:54 +02:00
std::vector<cmGeneratorExpressionEvaluator*>& result)
2013-03-16 19:13:01 +02:00
{
it = this->Tokens.begin();
2016-07-09 11:21:54 +02:00
while (this->it != this->Tokens.end()) {
2013-03-16 19:13:01 +02:00
this->ParseContent(result);
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
}
2016-07-09 11:21:54 +02:00
static void extendText(
std::vector<cmGeneratorExpressionEvaluator*>& result,
std::vector<cmGeneratorExpressionToken>::const_iterator it)
2013-03-16 19:13:01 +02:00
{
2016-07-09 11:21:54 +02:00
if (!result.empty() &&
(*(result.end() - 1))->GetType() ==
cmGeneratorExpressionEvaluator::Text) {
TextContent* textContent = static_cast<TextContent*>(*(result.end() - 1));
2013-03-16 19:13:01 +02:00
textContent->Extend(it->Length);
2016-07-09 11:21:54 +02:00
} else {
TextContent* textContent = new TextContent(it->Content, it->Length);
2013-03-16 19:13:01 +02:00
result.push_back(textContent);
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
}
2016-07-09 11:21:54 +02:00
static void extendResult(
std::vector<cmGeneratorExpressionEvaluator*>& result,
const std::vector<cmGeneratorExpressionEvaluator*>& contents)
2013-03-16 19:13:01 +02:00
{
2016-07-09 11:21:54 +02:00
if (!result.empty() &&
(*(result.end() - 1))->GetType() ==
cmGeneratorExpressionEvaluator::Text &&
(*contents.begin())->GetType() == cmGeneratorExpressionEvaluator::Text) {
TextContent* textContent = static_cast<TextContent*>(*(result.end() - 1));
2013-03-16 19:13:01 +02:00
textContent->Extend(
2016-07-09 11:21:54 +02:00
static_cast<TextContent*>(*contents.begin())->GetLength());
2013-03-16 19:13:01 +02:00
delete *contents.begin();
result.insert(result.end(), contents.begin() + 1, contents.end());
} else {
result.insert(result.end(), contents.begin(), contents.end());
}
}
void cmGeneratorExpressionParser::ParseGeneratorExpression(
2016-07-09 11:21:54 +02:00
std::vector<cmGeneratorExpressionEvaluator*>& result)
2013-03-16 19:13:01 +02:00
{
assert(this->it != this->Tokens.end());
unsigned int nestedLevel = this->NestingLevel;
++this->NestingLevel;
2016-07-09 11:21:54 +02:00
std::vector<cmGeneratorExpressionToken>::const_iterator startToken =
this->it - 1;
2013-03-16 19:13:01 +02:00
std::vector<cmGeneratorExpressionEvaluator*> identifier;
2016-07-09 11:21:54 +02:00
while (this->it->TokenType != cmGeneratorExpressionToken::EndExpression &&
this->it->TokenType != cmGeneratorExpressionToken::ColonSeparator) {
if (this->it->TokenType == cmGeneratorExpressionToken::CommaSeparator) {
2013-03-16 19:13:01 +02:00
extendText(identifier, this->it);
++this->it;
2016-07-09 11:21:54 +02:00
} else {
2013-03-16 19:13:01 +02:00
this->ParseContent(identifier);
2016-07-09 11:21:54 +02:00
}
if (this->it == this->Tokens.end()) {
2013-03-16 19:13:01 +02:00
break;
}
2016-07-09 11:21:54 +02:00
}
if (identifier.empty()) {
2013-03-16 19:13:01 +02:00
// ERROR
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
if (this->it != this->Tokens.end() &&
2016-07-09 11:21:54 +02:00
this->it->TokenType == cmGeneratorExpressionToken::EndExpression) {
GeneratorExpressionContent* content =
new GeneratorExpressionContent(startToken->Content, this->it->Content -
startToken->Content + this->it->Length);
2013-03-16 19:13:01 +02:00
assert(this->it != this->Tokens.end());
++this->it;
--this->NestingLevel;
content->SetIdentifier(identifier);
result.push_back(content);
return;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
std::vector<std::vector<cmGeneratorExpressionEvaluator*> > parameters;
std::vector<std::vector<cmGeneratorExpressionToken>::const_iterator>
2016-07-09 11:21:54 +02:00
commaTokens;
2013-03-16 19:13:01 +02:00
std::vector<cmGeneratorExpressionToken>::const_iterator colonToken;
2013-11-03 12:27:13 +02:00
bool emptyParamTermination = false;
2013-03-16 19:13:01 +02:00
if (this->it != this->Tokens.end() &&
2016-07-09 11:21:54 +02:00
this->it->TokenType == cmGeneratorExpressionToken::ColonSeparator) {
2013-03-16 19:13:01 +02:00
colonToken = this->it;
parameters.resize(parameters.size() + 1);
assert(this->it != this->Tokens.end());
++this->it;
2016-07-09 11:21:54 +02:00
if (this->it == this->Tokens.end()) {
2013-11-03 12:27:13 +02:00
emptyParamTermination = true;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
while (this->it != this->Tokens.end() &&
2016-07-09 11:21:54 +02:00
this->it->TokenType == cmGeneratorExpressionToken::CommaSeparator) {
2013-03-16 19:13:01 +02:00
commaTokens.push_back(this->it);
parameters.resize(parameters.size() + 1);
assert(this->it != this->Tokens.end());
++this->it;
2016-07-09 11:21:54 +02:00
if (this->it == this->Tokens.end()) {
2013-11-03 12:27:13 +02:00
emptyParamTermination = true;
2013-03-16 19:13:01 +02:00
}
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
while (this->it != this->Tokens.end() &&
2016-07-09 11:21:54 +02:00
this->it->TokenType == cmGeneratorExpressionToken::ColonSeparator) {
2013-03-16 19:13:01 +02:00
extendText(*(parameters.end() - 1), this->it);
assert(this->it != this->Tokens.end());
++this->it;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
while (this->it != this->Tokens.end() &&
2016-07-09 11:21:54 +02:00
this->it->TokenType != cmGeneratorExpressionToken::EndExpression) {
2013-03-16 19:13:01 +02:00
this->ParseContent(*(parameters.end() - 1));
2016-07-09 11:21:54 +02:00
if (this->it == this->Tokens.end()) {
2013-03-16 19:13:01 +02:00
break;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
while (this->it != this->Tokens.end() &&
2016-07-09 11:21:54 +02:00
this->it->TokenType ==
cmGeneratorExpressionToken::CommaSeparator) {
2013-03-16 19:13:01 +02:00
commaTokens.push_back(this->it);
parameters.resize(parameters.size() + 1);
assert(this->it != this->Tokens.end());
++this->it;
2016-07-09 11:21:54 +02:00
if (this->it == this->Tokens.end()) {
2013-11-03 12:27:13 +02:00
emptyParamTermination = true;
2013-03-16 19:13:01 +02:00
}
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
while (this->it != this->Tokens.end() &&
2016-07-09 11:21:54 +02:00
this->it->TokenType ==
cmGeneratorExpressionToken::ColonSeparator) {
2013-03-16 19:13:01 +02:00
extendText(*(parameters.end() - 1), this->it);
assert(this->it != this->Tokens.end());
++this->it;
}
}
2016-07-09 11:21:54 +02:00
if (this->it != this->Tokens.end() &&
this->it->TokenType == cmGeneratorExpressionToken::EndExpression) {
--this->NestingLevel;
assert(this->it != this->Tokens.end());
++this->it;
}
}
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
if (nestedLevel != this->NestingLevel) {
2013-03-16 19:13:01 +02:00
// There was a '$<' in the text, but no corresponding '>'. Rebuild to
// treat the '$<' as having been plain text, along with the
// corresponding : and , tokens that might have been found.
extendText(result, startToken);
extendResult(result, identifier);
2016-07-09 11:21:54 +02:00
if (!parameters.empty()) {
2013-03-16 19:13:01 +02:00
extendText(result, colonToken);
typedef std::vector<cmGeneratorExpressionEvaluator*> EvaluatorVector;
typedef std::vector<cmGeneratorExpressionToken> TokenVector;
std::vector<EvaluatorVector>::const_iterator pit = parameters.begin();
const std::vector<EvaluatorVector>::const_iterator pend =
2016-07-09 11:21:54 +02:00
parameters.end();
2013-03-16 19:13:01 +02:00
std::vector<TokenVector::const_iterator>::const_iterator commaIt =
2016-07-09 11:21:54 +02:00
commaTokens.begin();
2013-03-16 19:13:01 +02:00
assert(parameters.size() > commaTokens.size());
2016-07-09 11:21:54 +02:00
for (; pit != pend; ++pit, ++commaIt) {
if (!pit->empty() && !emptyParamTermination) {
2013-11-03 12:27:13 +02:00
extendResult(result, *pit);
2016-07-09 11:21:54 +02:00
}
if (commaIt != commaTokens.end()) {
2013-03-16 19:13:01 +02:00
extendText(result, *commaIt);
2016-07-09 11:21:54 +02:00
} else {
2013-03-16 19:13:01 +02:00
break;
}
}
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
return;
}
2016-07-09 11:21:54 +02:00
size_t contentLength =
((this->it - 1)->Content - startToken->Content) + (this->it - 1)->Length;
GeneratorExpressionContent* content =
new GeneratorExpressionContent(startToken->Content, contentLength);
2013-03-16 19:13:01 +02:00
content->SetIdentifier(identifier);
content->SetParameters(parameters);
result.push_back(content);
}
void cmGeneratorExpressionParser::ParseContent(
2016-07-09 11:21:54 +02:00
std::vector<cmGeneratorExpressionEvaluator*>& result)
2013-03-16 19:13:01 +02:00
{
assert(this->it != this->Tokens.end());
2016-07-09 11:21:54 +02:00
switch (this->it->TokenType) {
case cmGeneratorExpressionToken::Text: {
if (this->NestingLevel == 0) {
if (!result.empty() &&
(*(result.end() - 1))->GetType() ==
cmGeneratorExpressionEvaluator::Text) {
2013-03-16 19:13:01 +02:00
// A comma in 'plain text' could have split text that should
// otherwise be continuous. Extend the last text content instead of
// creating a new one.
2016-07-09 11:21:54 +02:00
TextContent* textContent =
static_cast<TextContent*>(*(result.end() - 1));
2013-03-16 19:13:01 +02:00
textContent->Extend(this->it->Length);
assert(this->it != this->Tokens.end());
++this->it;
return;
}
2016-07-09 11:21:54 +02:00
}
cmGeneratorExpressionEvaluator* n =
new TextContent(this->it->Content, this->it->Length);
2013-03-16 19:13:01 +02:00
result.push_back(n);
assert(this->it != this->Tokens.end());
++this->it;
2016-07-09 11:21:54 +02:00
return;
2013-03-16 19:13:01 +02:00
}
case cmGeneratorExpressionToken::BeginExpression:
assert(this->it != this->Tokens.end());
++this->it;
this->ParseGeneratorExpression(result);
return;
case cmGeneratorExpressionToken::EndExpression:
case cmGeneratorExpressionToken::ColonSeparator:
case cmGeneratorExpressionToken::CommaSeparator:
2016-07-09 11:21:54 +02:00
if (this->NestingLevel == 0) {
2013-03-16 19:13:01 +02:00
extendText(result, this->it);
2016-07-09 11:21:54 +02:00
} else {
2017-04-14 19:02:05 +02:00
assert(false && "Got unexpected syntax token.");
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
assert(this->it != this->Tokens.end());
++this->it;
return;
2016-07-09 11:21:54 +02:00
}
2017-04-14 19:02:05 +02:00
assert(false && "Unhandled token in generator expression.");
2013-03-16 19:13:01 +02:00
}