summaryrefslogtreecommitdiff
path: root/include/mbgl/style/expression/at.hpp
blob: 1e6f1c7dd23c09e735abf8f94f3626f97be1d056 (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
#pragma once

#include <mbgl/style/expression/expression.hpp>
#include <mbgl/style/conversion.hpp>
#include <memory>

namespace mbgl {
namespace style {
namespace expression {

class At : public Expression {
public:
    At(std::unique_ptr<Expression> index_, std::unique_ptr<Expression> input_) :
        Expression(input_->getType().get<type::Array>().itemType),
        index(std::move(index_)),
        input(std::move(input_))
    {}
    
    static ParseResult parse(const mbgl::style::conversion::Convertible& value, ParsingContext& ctx);
    
    EvaluationResult evaluate(const EvaluationContext& params) const override;
    void eachChild(const std::function<void(const Expression&)>&) const override;

    bool operator==(const Expression& e) const override {
        if (auto rhs = dynamic_cast<const At*>(&e)) {
            return *index == *(rhs->index) && *input == *(rhs->input);
        }
        return false;
    }

    std::vector<optional<Value>> possibleOutputs() const override {
        return { nullopt };
    }
    
    std::string getOperator() const override { return "at"; }

private:
    std::unique_ptr<Expression> index;
    std::unique_ptr<Expression> input;
};

} // namespace expression
} // namespace style
} // namespace mbgl