summaryrefslogtreecommitdiff
path: root/include/mbgl/style/filter_expression.hpp
blob: 8c6f447770cb1ede3de8961d121699b84b386f79 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#ifndef MBGL_STYLE_FILTER_EXPRESSION
#define MBGL_STYLE_FILTER_EXPRESSION

#include <mbgl/style/value.hpp>

#include <rapidjson/document.h>

#include <string>
#include <vector>

namespace mbgl {

typedef mapbox::util::variant<
    struct NullExpression,
    struct EqualsExpression,
    struct NotEqualsExpression,
    struct LessThanExpression,
    struct LessThanEqualsExpression,
    struct GreaterThanExpression,
    struct GreaterThanEqualsExpression,
    struct InExpression,
    struct NotInExpression,
    struct AnyExpression,
    struct AllExpression,
    struct NoneExpression
    > FilterExpression;

FilterExpression parseFilterExpression(const rapidjson::Value&);

template <class Extractor>
bool evaluate(const FilterExpression&, const Extractor&);

struct NullExpression {
    template <class Extractor>
    bool evaluate(const Extractor&) const { return true; }
};

struct EqualsExpression {
    std::string key;
    Value value;

    template <class Extractor>
    bool evaluate(const Extractor&) const;
};

struct NotEqualsExpression {
    std::string key;
    Value value;

    template <class Extractor>
    bool evaluate(const Extractor&) const;
};

struct LessThanExpression {
    std::string key;
    Value value;

    template <class Extractor>
    bool evaluate(const Extractor&) const;
};

struct LessThanEqualsExpression {
    std::string key;
    Value value;

    template <class Extractor>
    bool evaluate(const Extractor&) const;
};

struct GreaterThanExpression {
    std::string key;
    Value value;

    template <class Extractor>
    bool evaluate(const Extractor&) const;
};

struct GreaterThanEqualsExpression {
    std::string key;
    Value value;

    template <class Extractor>
    bool evaluate(const Extractor&) const;
};

struct InExpression {
    std::string key;
    std::vector<Value> values;

    template <class Extractor>
    bool evaluate(const Extractor&) const;
};

struct NotInExpression {
    std::string key;
    std::vector<Value> values;

    template <class Extractor>
    bool evaluate(const Extractor&) const;
};

struct AnyExpression {
    std::vector<FilterExpression> expressions;

    template <class Extractor>
    bool evaluate(const Extractor&) const;
};

struct AllExpression {
    std::vector<FilterExpression> expressions;

    template <class Extractor>
    bool evaluate(const Extractor&) const;
};

struct NoneExpression {
    std::vector<FilterExpression> expressions;

    template <class Extractor>
    bool evaluate(const Extractor&) const;
};

}

#endif