summaryrefslogtreecommitdiff
path: root/include/mbgl/util/string.hpp
blob: 5d3631e190852956fabbd8f782f3f00d7c68be2b (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
#ifndef MBGL_UTIL_STRING
#define MBGL_UTIL_STRING

#include <string>
#include <cassert>
#include <exception>

#include <mbgl/util/dtoa.hpp>

namespace mbgl {
namespace util {

template <class T>
inline std::string toString(T t) {
    return std::to_string(t);
}

inline std::string toString(int8_t num) {
    return std::to_string(int(num));
}

inline std::string toString(uint8_t num) {
    return std::to_string(unsigned(num));
}

inline std::string toString(float num) {
    return dtoa(num);
}

inline std::string toString(double num) {
    return dtoa(num);
}

inline std::string toString(long double num) {
    return dtoa(num);
}

inline std::string toString(std::exception_ptr error) {
    assert(error);

    if (!error) {
        return "(null)";
    }

    try {
        std::rethrow_exception(error);
    } catch (const std::exception& ex) {
        return ex.what();
    } catch (...) {
        return "Unknown exception type";
    }
}

} // namespace util
} // namespace mbgl

#endif