cmake/Source/cmGeneratorExpressionEvaluator.h

116 lines
3.4 KiB
C
Raw Normal View History

2013-03-16 19:13:01 +02: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
2015-08-17 11:37:30 +02:00
#include "cmGeneratorExpressionContext.h"
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
#include "cmListFileCache.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
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:
2016-07-09 11:21:54 +02:00
cmGeneratorExpressionEvaluator(const cmGeneratorExpressionEvaluator&);
void operator=(const 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*,
cmGeneratorExpressionDAGChecker*) const
2013-03-16 19:13:01 +02:00
{
return std::string(this->Content, this->Length);
}
2016-07-09 11:21:54 +02:00
Type GetType() const { 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);
2013-03-16 19:13:01 +02:00
void SetIdentifier(std::vector<cmGeneratorExpressionEvaluator*> identifier)
{
this->IdentifierChildren = identifier;
}
void SetParameters(
2016-07-09 11:21:54 +02:00
std::vector<std::vector<cmGeneratorExpressionEvaluator*> > parameters)
2013-03-16 19:13:01 +02:00
{
this->ParamChildren = parameters;
}
2016-07-09 11:21:54 +02:00
Type GetType() const { return cmGeneratorExpressionEvaluator::Generator; }
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
std::string Evaluate(cmGeneratorExpressionContext* context,
cmGeneratorExpressionDAGChecker*) const;
2013-03-16 19:13:01 +02:00
std::string GetOriginalExpression() const;
~GeneratorExpressionContent();
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