summaryrefslogtreecommitdiff
path: root/include/mbgl/style/expression/parse/case.hpp
blob: 4465182f8f85db4da09dbb17e8ea0a88aba9aa14 (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
#pragma once

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

namespace mbgl {
namespace style {
namespace expression {

struct ParseCase {
    static ParseResult parse(const mbgl::style::conversion::Value& value, ParsingContext ctx) {
        using namespace mbgl::style::conversion;
        
        assert(isArray(value));
        auto length = arrayLength(value);
        if (length < 4) {
            ctx.error("Expected at least 3 arguments, but found only " + std::to_string(length - 1) + ".");
            return ParseResult();
        }
        
        // Expect even-length array: ["case", 2 * (n pairs)..., otherwise]
        if (length % 2 != 0) {
            ctx.error("Expected an odd number of arguments");
            return ParseResult();
        }
        
        optional<type::Type> outputType;
        if (ctx.expected && *ctx.expected != type::Value) {
            outputType = ctx.expected;
        }

        std::vector<Case::Branch> branches;
        for (size_t i = 1; i + 1 < length; i += 2) {
            auto test = parseExpression(arrayMember(value, i), ParsingContext(ctx, i, {type::Boolean}));
            if (!test) {
                return test;
            }

            auto output = parseExpression(arrayMember(value, i + 1), ParsingContext(ctx, i + 1, outputType));
            if (!output) {
                return output;
            }
            
            if (!outputType) {
                outputType = (*output)->getType();
            }

            branches.push_back(std::make_pair(std::move(*test), std::move(*output)));
        }
        
        assert(outputType);
        
        auto otherwise = parseExpression(arrayMember(value, length - 1), ParsingContext(ctx, length - 1, outputType));
        if (!otherwise) {
            return otherwise;
        }
        
        return ParseResult(std::make_unique<Case>(*outputType,
                                      std::move(branches),
                                      std::move(*otherwise)));
    }
};

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