cmake/Source/cmGeneratorExpressionEvaluator.h

114 lines
3.0 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
#ifndef cmGeneratorExpressionEvaluator_h
#define cmGeneratorExpressionEvaluator_h
2017-07-20 19:35:53 +02:00
#include "cmConfigure.h"
2016-07-09 11:21:54 +02:00
2016-10-30 18:24:19 +01:00
#include <stddef.h>
2016-03-13 13:35:51 +01:00
#include <string>
2016-07-09 11:21:54 +02:00
#include <vector>
2013-03-16 19:13:01 +02:00
2016-10-30 18:24:19 +01:00
struct cmGeneratorExpressionContext;
2013-03-16 19:13:01 +02:00
struct cmGeneratorExpressionDAGChecker;
struct cmGeneratorExpressionNode;
struct cmGeneratorExpressionEvaluator
{
cmGeneratorExpressionEvaluator() {}
virtual ~cmGeneratorExpressionEvaluator() {}
enum Type
{
Text,
Generator
};
virtual Type GetType() const = 0;
2016-07-09 11:21:54 +02:00
virtual std::string Evaluate(cmGeneratorExpressionContext* context,
cmGeneratorExpressionDAGChecker*) const = 0;
2013-03-16 19:13:01 +02:00
private:
2017-07-20 19:35:53 +02:00
CM_DISABLE_COPY(cmGeneratorExpressionEvaluator)
2013-03-16 19:13:01 +02:00
};
struct TextContent : public cmGeneratorExpressionEvaluator
{
2016-07-09 11:21:54 +02:00
TextContent(const char* start, size_t length)
: Content(start)
, Length(length)
2013-03-16 19:13:01 +02:00
{
}
2016-07-09 11:21:54 +02:00
std::string Evaluate(cmGeneratorExpressionContext*,
2016-10-30 18:24:19 +01:00
cmGeneratorExpressionDAGChecker*) const CM_OVERRIDE
2013-03-16 19:13:01 +02:00
{
return std::string(this->Content, this->Length);
}
2016-10-30 18:24:19 +01:00
Type GetType() const CM_OVERRIDE
{
return cmGeneratorExpressionEvaluator::Text;
}
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
void Extend(size_t length) { this->Length += length; }
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
size_t GetLength() { return this->Length; }
2013-03-16 19:13:01 +02:00
private:
2016-07-09 11:21:54 +02:00
const char* Content;
2014-08-03 19:52:23 +02:00
size_t Length;
2013-03-16 19:13:01 +02:00
};
struct GeneratorExpressionContent : public cmGeneratorExpressionEvaluator
{
2016-07-09 11:21:54 +02:00
GeneratorExpressionContent(const char* startContent, size_t length);
2017-04-14 19:02:05 +02:00
void SetIdentifier(
std::vector<cmGeneratorExpressionEvaluator*> const& identifier)
2013-03-16 19:13:01 +02:00
{
this->IdentifierChildren = identifier;
}
void SetParameters(
2017-04-14 19:02:05 +02:00
std::vector<std::vector<cmGeneratorExpressionEvaluator*> > const&
parameters)
2013-03-16 19:13:01 +02:00
{
this->ParamChildren = parameters;
}
2016-10-30 18:24:19 +01:00
Type GetType() const CM_OVERRIDE
{
return cmGeneratorExpressionEvaluator::Generator;
}
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
std::string Evaluate(cmGeneratorExpressionContext* context,
2016-10-30 18:24:19 +01:00
cmGeneratorExpressionDAGChecker*) const CM_OVERRIDE;
2013-03-16 19:13:01 +02:00
std::string GetOriginalExpression() const;
2016-10-30 18:24:19 +01:00
~GeneratorExpressionContent() CM_OVERRIDE;
2013-03-16 19:13:01 +02:00
private:
2016-07-09 11:21:54 +02:00
std::string EvaluateParameters(const cmGeneratorExpressionNode* node,
const std::string& identifier,
cmGeneratorExpressionContext* context,
cmGeneratorExpressionDAGChecker* dagChecker,
std::vector<std::string>& parameters) const;
2013-03-16 19:13:01 +02:00
2013-11-03 12:27:13 +02:00
std::string ProcessArbitraryContent(
2016-07-09 11:21:54 +02:00
const cmGeneratorExpressionNode* node, const std::string& identifier,
cmGeneratorExpressionContext* context,
cmGeneratorExpressionDAGChecker* dagChecker,
2013-11-03 12:27:13 +02:00
std::vector<std::vector<cmGeneratorExpressionEvaluator*> >::const_iterator
2016-07-09 11:21:54 +02:00
pit) const;
2013-11-03 12:27:13 +02:00
2013-03-16 19:13:01 +02:00
private:
std::vector<cmGeneratorExpressionEvaluator*> IdentifierChildren;
std::vector<std::vector<cmGeneratorExpressionEvaluator*> > ParamChildren;
2016-07-09 11:21:54 +02:00
const char* StartContent;
2014-08-03 19:52:23 +02:00
size_t ContentLength;
2013-03-16 19:13:01 +02:00
};
#endif