aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/json/converter/converter.h
blob: 4e92b2e0cf042682198eb852c734738afcc94d19 (plain) (blame)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
#pragma once

#include "library/cpp/json/writer/json_value.h"

#include <limits>
#include <util/generic/array_ref.h>
#include <util/generic/deque.h>
#include <util/generic/hash.h>
#include <util/generic/list.h>
#include <util/generic/map.h>
#include <util/generic/maybe.h>


namespace NJson {
    template<typename T>
    struct TConverter {
    };

    namespace {
        template<typename T>
        struct TDefaultEncoder {
            static inline TJsonValue Encode(T value) {
                return TJsonValue(value);
            }
        };

        template<typename T, typename E>
        struct TDefaultArrayEncoder {
            static TJsonValue Encode(const T& value) {
                TJsonValue result(NJson::JSON_ARRAY);
                auto& encodedArray = result.GetArraySafe();
                for (const auto& element : value) {
                    encodedArray.push_back(TConverter<E>::Encode(element));
                }
                return result;
            }
        };

        template<typename T, typename E>
        struct TDefaultArrayDecoder {
            static T Decode(const TJsonValue& value) {
                T result;
                for (const auto& element : value.GetArraySafe()) {
                    result.push_back(TConverter<E>::Decode(element));
                }
                return result;
            }
        };

        template<typename T, typename E>
        struct TDefaultArrayConverter: public TDefaultArrayEncoder<T, E>, public TDefaultArrayDecoder<T, E> {
        };

        template<typename T, typename E>
        struct TDefaultMapEncoder {
            static TJsonValue Encode(const T& value) {
                TJsonValue result(NJson::JSON_MAP);
                auto& encodedMap = result.GetMapSafe();
                for (const auto& [key, element] : value) {
                    encodedMap[key] = TConverter<E>::Encode(element);
                }
                return result;
            }
        };

        template<typename T, typename E>
        struct TDefaultMapDecoder {
            static T Decode(const TJsonValue& value) {
                T result;
                for (const auto& [key, element] : value.GetMapSafe()) {
                    result[key] = TConverter<E>::Decode(element);
                }
                return result;
            }
        };

        template<typename T, typename E>
        struct TDefaultMapConverter: public TDefaultMapEncoder<T, E>, public TDefaultMapDecoder<T, E> {
        };
    }

    template<>
    struct TConverter<TJsonValue> {
        static TJsonValue Encode(const TJsonValue& value) {
            return value;
        }

        static TJsonValue Decode(const TJsonValue& value) {
            return value;
        }
    };

    template<>
    struct TConverter<bool>: public TDefaultEncoder<bool> {
        static inline bool Decode(const TJsonValue& value) {
            return value.GetBooleanSafe();
        }
    };

    template<typename T>
    requires std::is_integral_v<T> && (!std::is_same_v<T, bool>)
    struct TConverter<T>: public TDefaultEncoder<T> {
        static T Decode(const TJsonValue& value) {
            if constexpr (std::is_signed_v<T>) {
                const auto decodedValue = value.GetIntegerSafe();
                if (decodedValue < std::numeric_limits<T>::min() || std::numeric_limits<T>::max() < decodedValue) {
                    ythrow yexception() << "Out of range (got " << decodedValue << ")";
                }
                return static_cast<T>(decodedValue);
            } else {
                const auto decodedValue = value.GetUIntegerSafe();
                if (std::numeric_limits<T>::max() < decodedValue) {
                    ythrow yexception() << "Out of range (got " << decodedValue << ")";
                }
                return static_cast<T>(decodedValue);
            }
        }
    };

    template<typename T>
    requires std::is_floating_point_v<T>
    struct TConverter<T>: public TDefaultEncoder<T> {
        static inline T Decode(const TJsonValue& value) {
            return static_cast<T>(value.GetDoubleSafe());
        }
    };

    template<>
    struct TConverter<TStringBuf>: public TDefaultEncoder<TStringBuf> {
    };

    template<>
    struct TConverter<TString>: public TDefaultEncoder<TString> {
        static inline TString Decode(const TJsonValue& value) {
            return value.GetStringSafe();
        }
    };

    template<typename T>
    struct TConverter<TMaybe<T>> {
        static TJsonValue Encode(const TMaybe<T>& value) {
            if (value.Defined()) {
                return TConverter<T>::Encode(*value);
            } else {
                return TJsonValue(NJson::JSON_NULL);
            }
        }

        static TMaybe<T> Decode(const TJsonValue& value) {
            if (value.IsDefined()) {
                return TConverter<T>::Decode(value);
            } else {
                return Nothing();
            }
        }
    };

    template<typename T>
    struct TConverter<TArrayRef<T>>: public TDefaultArrayEncoder<TArrayRef<T>, T> {
    };

    template<typename T>
    struct TConverter<TVector<T>>: public TDefaultArrayConverter<TVector<T>, T> {
    };

    template<typename T>
    struct TConverter<TList<T>>: public TDefaultArrayConverter<TList<T>, T> {
    };

    template<typename T>
    struct TConverter<TDeque<T>>: public TDefaultArrayConverter<TDeque<T>, T> {
    };

    template<typename T>
    struct TConverter<THashMap<TStringBuf, T>>: public TDefaultMapEncoder<THashMap<TStringBuf, T>, T> {
    };

    template<typename T>
    struct TConverter<THashMap<TString, T>>: public TDefaultMapConverter<THashMap<TString, T>, T> {
    };

    template<typename T>
    struct TConverter<TMap<TStringBuf, T>>: public TDefaultMapEncoder<TMap<TStringBuf, T>, T> {
    };

    template<typename T>
    struct TConverter<TMap<TString, T>>: public TDefaultMapConverter<TMap<TString, T>, T> {
    };
}