2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2009-08-11 17:54:56 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2009-08-11 17:54:56 +04:00
|
|
|
|
2009-09-28 19:43:28 +04: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.
|
|
|
|
============================================================================*/
|
2009-08-11 17:54:56 +04:00
|
|
|
#include "cmGeneratorExpression.h"
|
|
|
|
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmTarget.h"
|
|
|
|
|
2012-08-13 18:00:32 +04:00
|
|
|
#include <cmsys/String.h>
|
|
|
|
|
2012-09-11 21:53:38 +04:00
|
|
|
#include "cmGeneratorExpressionEvaluator.h"
|
|
|
|
#include "cmGeneratorExpressionLexer.h"
|
|
|
|
#include "cmGeneratorExpressionParser.h"
|
|
|
|
|
2009-08-11 17:54:56 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmGeneratorExpression::cmGeneratorExpression(
|
|
|
|
cmMakefile* mf, const char* config,
|
2010-12-08 21:32:09 +03:00
|
|
|
cmListFileBacktrace const& backtrace, bool quiet):
|
2012-09-11 21:53:38 +04:00
|
|
|
Makefile(mf), Config(config), Backtrace(backtrace), Quiet(quiet),
|
|
|
|
NeedsParsing(true)
|
2009-08-11 17:54:56 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmGeneratorExpression::Process(std::string const& input)
|
|
|
|
{
|
|
|
|
return this->Process(input.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmGeneratorExpression::Process(const char* input)
|
|
|
|
{
|
2012-09-11 21:53:38 +04:00
|
|
|
this->Parse(input);
|
|
|
|
return this->Evaluate(this->Makefile, this->Config, this->Quiet);
|
2009-08-11 17:54:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2012-09-11 21:53:38 +04:00
|
|
|
void cmGeneratorExpression::Parse(const char* input)
|
2009-08-11 17:54:56 +04:00
|
|
|
{
|
2012-09-11 21:53:38 +04:00
|
|
|
this->Evaluators.clear();
|
2009-08-11 17:54:56 +04:00
|
|
|
|
2012-09-11 21:53:38 +04:00
|
|
|
this->Input = input;
|
|
|
|
cmGeneratorExpressionLexer l;
|
|
|
|
std::vector<cmGeneratorExpressionToken> tokens = l.Tokenize(this->Input);
|
|
|
|
this->NeedsParsing = l.GetSawGeneratorExpression();
|
2009-08-11 17:54:56 +04:00
|
|
|
|
2012-09-11 21:53:38 +04:00
|
|
|
if (!this->NeedsParsing)
|
2009-08-11 17:54:56 +04:00
|
|
|
{
|
2012-09-11 21:53:38 +04:00
|
|
|
return;
|
2009-08-11 17:54:56 +04:00
|
|
|
}
|
|
|
|
|
2012-09-11 21:53:38 +04:00
|
|
|
cmGeneratorExpressionParser p(tokens);
|
|
|
|
p.Parse(this->Evaluators);
|
2012-08-13 17:49:53 +04:00
|
|
|
}
|
|
|
|
|
2009-08-11 17:54:56 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2012-09-11 21:53:38 +04:00
|
|
|
const char *cmGeneratorExpression::Evaluate(
|
|
|
|
cmMakefile* mf, const char* config, bool quiet)
|
2009-08-11 17:54:56 +04:00
|
|
|
{
|
2012-09-11 21:53:38 +04:00
|
|
|
if (!this->NeedsParsing)
|
2009-08-11 17:54:56 +04:00
|
|
|
{
|
2012-09-11 21:53:38 +04:00
|
|
|
return this->Input;
|
2009-08-11 17:54:56 +04:00
|
|
|
}
|
2012-09-11 21:53:38 +04:00
|
|
|
|
|
|
|
this->Output = "";
|
|
|
|
|
|
|
|
std::vector<cmGeneratorExpressionEvaluator*>::const_iterator it
|
|
|
|
= this->Evaluators.begin();
|
|
|
|
const std::vector<cmGeneratorExpressionEvaluator*>::const_iterator end
|
|
|
|
= this->Evaluators.end();
|
|
|
|
|
|
|
|
cmGeneratorExpressionContext context;
|
|
|
|
context.Makefile = mf;
|
|
|
|
context.Config = config;
|
|
|
|
context.Quiet = quiet;
|
|
|
|
context.HadError = false;
|
|
|
|
context.Backtrace = this->Backtrace;
|
|
|
|
|
|
|
|
for ( ; it != end; ++it)
|
2012-08-13 17:49:53 +04:00
|
|
|
{
|
2012-09-11 21:53:38 +04:00
|
|
|
this->Output += (*it)->Evaluate(&context);
|
|
|
|
if (context.HadError)
|
2012-08-13 17:49:53 +04:00
|
|
|
{
|
2012-09-11 21:53:38 +04:00
|
|
|
this->Output = "";
|
|
|
|
break;
|
2012-08-13 17:49:53 +04:00
|
|
|
}
|
2012-08-13 18:00:32 +04:00
|
|
|
}
|
2012-09-11 21:53:38 +04:00
|
|
|
|
|
|
|
this->Targets = context.Targets;
|
|
|
|
// TODO: Return a std::string from here instead?
|
|
|
|
return this->Output.c_str();
|
2009-08-11 17:54:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2012-09-11 21:53:38 +04:00
|
|
|
cmGeneratorExpression::~cmGeneratorExpression()
|
2009-08-11 17:54:56 +04:00
|
|
|
{
|
2012-09-11 21:53:38 +04:00
|
|
|
std::vector<cmGeneratorExpressionEvaluator*>::const_iterator it
|
|
|
|
= this->Evaluators.begin();
|
|
|
|
const std::vector<cmGeneratorExpressionEvaluator*>::const_iterator end
|
|
|
|
= this->Evaluators.end();
|
2009-08-11 17:54:56 +04:00
|
|
|
|
2012-09-11 21:53:38 +04:00
|
|
|
for ( ; it != end; ++it)
|
2009-08-11 17:54:56 +04:00
|
|
|
{
|
2012-09-11 21:53:38 +04:00
|
|
|
delete *it;
|
2009-08-11 17:54:56 +04:00
|
|
|
}
|
|
|
|
}
|