2012-09-11 21:53:38 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2012 Stephen Kelly <steveire@gmail.com>
|
|
|
|
|
|
|
|
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.
|
|
|
|
============================================================================*/
|
|
|
|
#ifndef cmGeneratorExpressionEvaluator_h
|
|
|
|
#define cmGeneratorExpressionEvaluator_h
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
2012-09-12 06:23:31 +04:00
|
|
|
#include "cmListFileCache.h"
|
|
|
|
|
|
|
|
class cmTarget;
|
|
|
|
|
2012-09-11 21:53:38 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
struct cmGeneratorExpressionContext
|
|
|
|
{
|
|
|
|
cmListFileBacktrace Backtrace;
|
2013-02-09 14:12:20 +04:00
|
|
|
std::set<cmTarget*> DependTargets;
|
2013-10-30 01:21:20 +04:00
|
|
|
std::set<cmTarget const*> AllTargets;
|
2014-02-10 09:21:34 +04:00
|
|
|
std::set<std::string> SeenTargetProperties;
|
2014-05-15 13:32:30 +04:00
|
|
|
std::map<cmTarget const*, std::map<std::string, std::string> >
|
|
|
|
MaxLanguageStandard;
|
2012-09-11 21:53:38 +04:00
|
|
|
cmMakefile *Makefile;
|
2014-02-10 07:48:34 +04:00
|
|
|
std::string Config;
|
2013-10-30 01:21:20 +04:00
|
|
|
cmTarget const* HeadTarget; // The target whose property is being evaluated.
|
|
|
|
cmTarget const* CurrentTarget; // The dependent of HeadTarget which appears
|
|
|
|
// directly or indirectly in the property.
|
2012-09-11 21:53:38 +04:00
|
|
|
bool Quiet;
|
|
|
|
bool HadError;
|
2013-02-03 10:33:15 +04:00
|
|
|
bool HadContextSensitiveCondition;
|
2014-03-20 18:37:12 +04:00
|
|
|
bool EvaluateForBuildsystem;
|
2012-09-11 21:53:38 +04:00
|
|
|
};
|
|
|
|
|
2012-09-18 15:42:23 +04:00
|
|
|
struct cmGeneratorExpressionDAGChecker;
|
2012-11-27 01:42:00 +04:00
|
|
|
struct cmGeneratorExpressionNode;
|
2012-09-18 15:42:23 +04:00
|
|
|
|
2012-09-11 21:53:38 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
struct cmGeneratorExpressionEvaluator
|
|
|
|
{
|
|
|
|
cmGeneratorExpressionEvaluator() {}
|
|
|
|
virtual ~cmGeneratorExpressionEvaluator() {}
|
|
|
|
|
|
|
|
enum Type
|
|
|
|
{
|
|
|
|
Text,
|
|
|
|
Generator
|
|
|
|
};
|
|
|
|
|
|
|
|
virtual Type GetType() const = 0;
|
|
|
|
|
2012-09-18 15:42:23 +04:00
|
|
|
virtual std::string Evaluate(cmGeneratorExpressionContext *context,
|
|
|
|
cmGeneratorExpressionDAGChecker *) const = 0;
|
2012-09-11 21:53:38 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
cmGeneratorExpressionEvaluator(const cmGeneratorExpressionEvaluator &);
|
|
|
|
void operator=(const cmGeneratorExpressionEvaluator &);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct TextContent : public cmGeneratorExpressionEvaluator
|
|
|
|
{
|
2013-10-21 21:18:16 +04:00
|
|
|
TextContent(const char *start, size_t length)
|
2012-09-11 21:53:38 +04:00
|
|
|
: Content(start), Length(length)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-09-18 15:42:23 +04:00
|
|
|
std::string Evaluate(cmGeneratorExpressionContext *,
|
|
|
|
cmGeneratorExpressionDAGChecker *) const
|
2012-09-11 21:53:38 +04:00
|
|
|
{
|
|
|
|
return std::string(this->Content, this->Length);
|
|
|
|
}
|
|
|
|
|
|
|
|
Type GetType() const
|
|
|
|
{
|
|
|
|
return cmGeneratorExpressionEvaluator::Text;
|
|
|
|
}
|
|
|
|
|
2013-10-21 21:18:16 +04:00
|
|
|
void Extend(size_t length)
|
2012-09-11 21:53:38 +04:00
|
|
|
{
|
|
|
|
this->Length += length;
|
|
|
|
}
|
|
|
|
|
2013-10-21 21:18:16 +04:00
|
|
|
size_t GetLength()
|
2012-09-11 21:53:38 +04:00
|
|
|
{
|
|
|
|
return this->Length;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const char *Content;
|
2013-10-21 21:18:16 +04:00
|
|
|
size_t Length;
|
2012-09-11 21:53:38 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
struct GeneratorExpressionContent : public cmGeneratorExpressionEvaluator
|
|
|
|
{
|
2013-10-21 21:18:16 +04:00
|
|
|
GeneratorExpressionContent(const char *startContent, size_t length);
|
2012-09-11 21:53:38 +04:00
|
|
|
void SetIdentifier(std::vector<cmGeneratorExpressionEvaluator*> identifier)
|
|
|
|
{
|
|
|
|
this->IdentifierChildren = identifier;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetParameters(
|
|
|
|
std::vector<std::vector<cmGeneratorExpressionEvaluator*> > parameters)
|
|
|
|
{
|
|
|
|
this->ParamChildren = parameters;
|
|
|
|
}
|
|
|
|
|
|
|
|
Type GetType() const
|
|
|
|
{
|
|
|
|
return cmGeneratorExpressionEvaluator::Generator;
|
|
|
|
}
|
|
|
|
|
2012-09-18 15:42:23 +04:00
|
|
|
std::string Evaluate(cmGeneratorExpressionContext *context,
|
|
|
|
cmGeneratorExpressionDAGChecker *) const;
|
2012-09-11 21:53:38 +04:00
|
|
|
|
|
|
|
std::string GetOriginalExpression() const;
|
|
|
|
|
|
|
|
~GeneratorExpressionContent();
|
|
|
|
|
2012-11-27 01:42:00 +04:00
|
|
|
private:
|
|
|
|
std::string EvaluateParameters(const cmGeneratorExpressionNode *node,
|
|
|
|
const std::string &identifier,
|
|
|
|
cmGeneratorExpressionContext *context,
|
|
|
|
cmGeneratorExpressionDAGChecker *dagChecker,
|
|
|
|
std::vector<std::string> ¶meters) const;
|
|
|
|
|
2013-04-25 15:54:18 +04:00
|
|
|
std::string ProcessArbitraryContent(
|
|
|
|
const cmGeneratorExpressionNode *node,
|
|
|
|
const std::string &identifier,
|
|
|
|
cmGeneratorExpressionContext *context,
|
|
|
|
cmGeneratorExpressionDAGChecker *dagChecker,
|
|
|
|
std::vector<std::vector<cmGeneratorExpressionEvaluator*> >::const_iterator
|
|
|
|
pit) const;
|
|
|
|
|
2012-09-11 21:53:38 +04:00
|
|
|
private:
|
|
|
|
std::vector<cmGeneratorExpressionEvaluator*> IdentifierChildren;
|
|
|
|
std::vector<std::vector<cmGeneratorExpressionEvaluator*> > ParamChildren;
|
|
|
|
const char *StartContent;
|
2013-10-21 21:18:16 +04:00
|
|
|
size_t ContentLength;
|
2012-09-11 21:53:38 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|