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

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

#include <memory>

namespace mbgl {
namespace style {
namespace conversion {

using namespace mbgl::style::expression;

template<> struct Converter<std::unique_ptr<Expression>> {
    optional<std::unique_ptr<Expression>> operator()(const Convertible& value, Error& error, type::Type expected) const {
        ParsingContext ctx(optional<type::Type> {expected});
        ParseResult parsed = ctx.parse(value);
        if (parsed) {
            return std::move(*parsed);
        }
        std::string combinedError;
        for (const ParsingError& parsingError : ctx.getErrors()) {
            if (combinedError.size() > 0) {
                combinedError += "\n";
            }
            if (parsingError.key.size() > 0) {
                combinedError += parsingError.key + ": ";
            }
            combinedError += parsingError.message;
        }
        error = { combinedError };
        return {};
    };
};

} // namespace conversion
} // namespace style
} // namespace mbgl