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

#include <mbgl/style/property_value.hpp>
#include <mbgl/style/conversion/constant.hpp>
#include <mbgl/style/conversion/function.hpp>
#include <mbgl/style/conversion.hpp>
#include <mbgl/style/expression/value.hpp>
#include <mbgl/style/expression/is_constant.hpp>
#include <mbgl/style/expression/is_expression.hpp>
#include <mbgl/style/expression/parsing_context.hpp>
#include <mbgl/style/expression/literal.hpp>

namespace mbgl {
namespace style {
namespace conversion {

template <class T>
struct Converter<PropertyValue<T>> {
    optional<PropertyValue<T>> operator()(const Convertible& value, Error& error, bool allowDataExpressions, bool convertTokens) const;

    template <class S>
    PropertyValue<T> maybeConvertTokens(const S& t) const {
        return PropertyValue<T>(t);
    };

    PropertyValue<T> maybeConvertTokens(const std::string& t) const {
        return hasTokens(t)
            ? PropertyValue<T>(PropertyExpression<T>(convertTokenStringToExpression(t)))
            : PropertyValue<T>(t);
    }
    
    PropertyValue<T> maybeConvertTokens(const expression::Formatted& t) const {
        // This only works with a single-section `Formatted` created automatically
        // by parsing a plain-text `text-field` property.
        // Token conversion happens later than the initial string->Formatted conversion
        // General purpose `format` expressions with embedded tokens are not supported
        const std::string& firstUnformattedSection = t.sections[0].text;
        return hasTokens(firstUnformattedSection)
            ? PropertyValue<T>(PropertyExpression<T>(convertTokenStringToFormatExpression(firstUnformattedSection)))
            : PropertyValue<T>(t);
    }
};

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