summaryrefslogtreecommitdiff
path: root/include/mbgl/style/expression/format_expression.hpp
blob: b00674a88ef181f6254eeffc0d44f05eeffaad7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#pragma once

#include <mbgl/style/expression/expression.hpp>
#include <mbgl/style/expression/formatted.hpp>
#include <mbgl/style/expression/parsing_context.hpp>
#include <mbgl/style/conversion.hpp>

#include <memory>

namespace mbgl {
namespace style {
namespace expression {

struct FormatExpressionSection {
    FormatExpressionSection(std::unique_ptr<Expression> text_,
                            optional<std::unique_ptr<Expression>> fontScale_,
                            optional<std::unique_ptr<Expression>> textFont_);
    
    std::shared_ptr<Expression> text;
    optional<std::shared_ptr<Expression>> fontScale;
    optional<std::shared_ptr<Expression>> textFont;
};
    
class FormatExpression : public Expression {
public:
    FormatExpression(std::vector<FormatExpressionSection> sections);
    
    EvaluationResult evaluate(const EvaluationContext&) const override;
    static ParseResult parse(const mbgl::style::conversion::Convertible&, ParsingContext&);
    
    void eachChild(const std::function<void(const Expression&)>&) const override;
    
    bool operator==(const Expression& e) const override;
    
    std::vector<optional<Value>> possibleOutputs() const override {
        // Technically the combinatoric set of all children
        // Usually, this.text will be undefined anyway
        return { nullopt };
    }
    
    mbgl::Value serialize() const override;
    std::string getOperator() const override { return "format"; }
private:
    std::vector<FormatExpressionSection> sections;
    std::unique_ptr<Expression> text;
    optional<std::unique_ptr<Expression>> fontScale;
    optional<std::unique_ptr<Expression>> textFont;
};
    
} // namespace expression
} // namespace style
} // namespace mbgl