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. */
|
2012-09-11 21:53:38 +04:00
|
|
|
#ifndef cmGeneratorExpressionEvaluator_h
|
|
|
|
#define cmGeneratorExpressionEvaluator_h
|
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <cmConfigure.h>
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <stddef.h>
|
2015-10-10 19:27:44 +03:00
|
|
|
#include <string>
|
2016-04-29 17:53:13 +03:00
|
|
|
#include <vector>
|
2012-09-12 06:23:31 +04:00
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
struct cmGeneratorExpressionContext;
|
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;
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
virtual std::string Evaluate(cmGeneratorExpressionContext* context,
|
|
|
|
cmGeneratorExpressionDAGChecker*) const = 0;
|
2012-09-11 21:53:38 +04:00
|
|
|
|
|
|
|
private:
|
2016-05-16 17:34:04 +03:00
|
|
|
cmGeneratorExpressionEvaluator(const cmGeneratorExpressionEvaluator&);
|
|
|
|
void operator=(const cmGeneratorExpressionEvaluator&);
|
2012-09-11 21:53:38 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct TextContent : public cmGeneratorExpressionEvaluator
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
TextContent(const char* start, size_t length)
|
|
|
|
: Content(start)
|
|
|
|
, Length(length)
|
2012-09-11 21:53:38 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string Evaluate(cmGeneratorExpressionContext*,
|
2016-06-27 22:25:27 +03:00
|
|
|
cmGeneratorExpressionDAGChecker*) const CM_OVERRIDE
|
2012-09-11 21:53:38 +04:00
|
|
|
{
|
|
|
|
return std::string(this->Content, this->Length);
|
|
|
|
}
|
|
|
|
|
2016-06-27 22:25:27 +03:00
|
|
|
Type GetType() const CM_OVERRIDE
|
|
|
|
{
|
|
|
|
return cmGeneratorExpressionEvaluator::Text;
|
|
|
|
}
|
2012-09-11 21:53:38 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void Extend(size_t length) { this->Length += length; }
|
2012-09-11 21:53:38 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
size_t GetLength() { return this->Length; }
|
2012-09-11 21:53:38 +04:00
|
|
|
|
|
|
|
private:
|
2016-05-16 17:34:04 +03:00
|
|
|
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
|
|
|
|
{
|
2016-05-16 17:34:04 +03: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(
|
2016-05-16 17:34:04 +03:00
|
|
|
std::vector<std::vector<cmGeneratorExpressionEvaluator*> > parameters)
|
2012-09-11 21:53:38 +04:00
|
|
|
{
|
|
|
|
this->ParamChildren = parameters;
|
|
|
|
}
|
|
|
|
|
2016-06-27 22:25:27 +03:00
|
|
|
Type GetType() const CM_OVERRIDE
|
|
|
|
{
|
|
|
|
return cmGeneratorExpressionEvaluator::Generator;
|
|
|
|
}
|
2012-09-11 21:53:38 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string Evaluate(cmGeneratorExpressionContext* context,
|
2016-06-27 22:25:27 +03:00
|
|
|
cmGeneratorExpressionDAGChecker*) const CM_OVERRIDE;
|
2012-09-11 21:53:38 +04:00
|
|
|
|
|
|
|
std::string GetOriginalExpression() const;
|
|
|
|
|
2016-06-27 22:25:27 +03:00
|
|
|
~GeneratorExpressionContent() CM_OVERRIDE;
|
2012-09-11 21:53:38 +04:00
|
|
|
|
2012-11-27 01:42:00 +04:00
|
|
|
private:
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string EvaluateParameters(const cmGeneratorExpressionNode* node,
|
|
|
|
const std::string& identifier,
|
|
|
|
cmGeneratorExpressionContext* context,
|
|
|
|
cmGeneratorExpressionDAGChecker* dagChecker,
|
|
|
|
std::vector<std::string>& parameters) const;
|
2012-11-27 01:42:00 +04:00
|
|
|
|
2013-04-25 15:54:18 +04:00
|
|
|
std::string ProcessArbitraryContent(
|
2016-05-16 17:34:04 +03:00
|
|
|
const cmGeneratorExpressionNode* node, const std::string& identifier,
|
|
|
|
cmGeneratorExpressionContext* context,
|
|
|
|
cmGeneratorExpressionDAGChecker* dagChecker,
|
2013-04-25 15:54:18 +04:00
|
|
|
std::vector<std::vector<cmGeneratorExpressionEvaluator*> >::const_iterator
|
2016-05-16 17:34:04 +03:00
|
|
|
pit) const;
|
2013-04-25 15:54:18 +04:00
|
|
|
|
2012-09-11 21:53:38 +04:00
|
|
|
private:
|
|
|
|
std::vector<cmGeneratorExpressionEvaluator*> IdentifierChildren;
|
|
|
|
std::vector<std::vector<cmGeneratorExpressionEvaluator*> > ParamChildren;
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* StartContent;
|
2013-10-21 21:18:16 +04:00
|
|
|
size_t ContentLength;
|
2012-09-11 21:53:38 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|