summaryrefslogtreecommitdiff
path: root/include/mbgl/style/value.hpp
blob: 5e6260e5a6a3b94d4e6ccb9145fac11683f2b58f (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
#ifndef MBGL_STYLE_VALUE
#define MBGL_STYLE_VALUE

#include <mbgl/util/variant.hpp>
#include <mbgl/util/pbf.hpp>

#include <cstdlib>
#include <cerrno>

namespace mbgl {

typedef util::variant<bool, int64_t, uint64_t, double, std::string> Value;

std::string toString(const Value &value);

Value parseValue(pbf data);

namespace util {
inline bool parseNumericString(const std::string &str, double &result) {
    char *end = nullptr;
    const char *begin = str.c_str();
    result = std::strtod(begin, &end);
    while (*end != '\0' && isspace(*end)) end++; // eat whitespace after the end
    return errno == 0 && end - begin == long(str.size());
}
}

template <typename T>
T toNumber(const Value &value) {
    if (value.is<std::string>()) {
        double val;
        return util::parseNumericString(value.get<std::string>(), val) ? val : 0;
    }
    else if (value.is<bool>()) return value.get<bool>();
    else if (value.is<int64_t>()) return value.get<int64_t>();
    else if (value.is<uint64_t>()) return value.get<uint64_t>();
    else if (value.is<double>()) return value.get<double>();
    else return 0;
}

}

#endif