-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathjson_encoder.h
294 lines (271 loc) · 8.73 KB
/
json_encoder.h
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
/*
* Copyright (C) 2021 Duowan Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef __X_PACK_JSON_ENCODER_H
#define __X_PACK_JSON_ENCODER_H
#include <string>
#include "rapidjson_custom.h"
#include "rapidjson/prettywriter.h"
#include "rapidjson/stringbuffer.h"
#include "xencoder.h"
#include "json_data.h"
namespace xpack {
class JsonWriter:private noncopyable {
typedef rapidjson::StringBuffer JSON_WRITER_BUFFER;
typedef rapidjson::Writer<rapidjson::StringBuffer> JSON_WRITER_WRITER;
typedef rapidjson::PrettyWriter<rapidjson::StringBuffer> JSON_WRITER_PRETTY;
friend class XEncoder<JsonWriter>;
friend class JsonEncoder;
const static bool support_null = true;
public:
JsonWriter(int indentCount = -1, char indentChar = ' ', int maxDecimalPlaces = -1) {
_buf = new JSON_WRITER_BUFFER;
if (indentCount < 0) {
_writer = new JSON_WRITER_WRITER(*_buf);
if (maxDecimalPlaces > 0) {
_writer->SetMaxDecimalPlaces(maxDecimalPlaces);
}
_pretty = NULL;
} else {
_pretty = new JSON_WRITER_PRETTY(*_buf);
_pretty->SetIndent(indentChar, indentCount);
if (maxDecimalPlaces > 0) {
_pretty->SetMaxDecimalPlaces(maxDecimalPlaces);
}
_writer = NULL;
}
}
~JsonWriter() {
if (NULL != _buf) {
delete _buf;
_buf = NULL;
}
if (NULL != _writer) {
delete _writer;
_writer = NULL;
}
if (NULL != _pretty) {
delete _pretty;
_pretty = NULL;
}
}
private:
inline static const char *Name() {
return "json";
}
inline const char *IndexKey(size_t index) {
(void)index;
return NULL;
}
std::string String() {
return _buf->GetString();
}
void ArrayBegin(const char *key, const Extend *ext) {
(void)ext;
xpack_set_key(key);
if (NULL != _writer) {
_writer->StartArray();
} else {
if (Extend::Flag(ext) & X_PACK_FLAG_SL) {
_pretty->SetFormatOptions(rapidjson::kFormatSingleLineArray);
}
_pretty->StartArray();
}
}
void ArrayEnd(const char *key, const Extend *ext) {
(void)key;
(void)ext;
if (NULL != _writer) {
_writer->EndArray();
} else {
_pretty->EndArray();
if (Extend::Flag(ext) & X_PACK_FLAG_SL) {
_pretty->SetFormatOptions(rapidjson::kFormatDefault);
}
}
}
void ObjectBegin(const char *key, const Extend *ext) {
(void)ext;
xpack_set_key(key);
if (NULL != _writer) {
_writer->StartObject();
} else {
_pretty->StartObject();
}
}
void ObjectEnd(const char *key, const Extend *ext) {
(void)key;
(void)ext;
if (NULL != _writer) {
_writer->EndObject();
} else {
_pretty->EndObject();
}
}
bool WriteNull(const char*key, const Extend *ext) {
(void)ext;
xpack_set_key(key);
if (NULL != _writer) {
_writer->Null();
} else {
_pretty->Null();
}
return true;
}
bool encode_bool(const char*key, const bool&val, const Extend *ext) {
(void)ext;
xpack_set_key(key);
if (NULL != _writer) {
_writer->Bool(val);
} else {
_pretty->Bool(val);
}
return true;
}
bool encode_string(const char*key, const char*val, size_t length, const Extend *ext) {
(void)ext;
xpack_set_key(key);
if (NULL != _writer) {
_writer->String(val, length);
} else {
_pretty->String(val, length);
}
return true;
}
bool encode_string(const char*key, const std::string&val, const Extend *ext) {
return this->encode_string(key, val.data(), val.length(), ext);
}
template <typename T>
typename x_enable_if<numeric<T>::is_integer && numeric<T>::is_signed, bool>::type encode_number(const char*key, const T&val, const Extend *ext) {
(void)ext;
xpack_set_key(key);
if (NULL != _writer) {
_writer->Int64((int64_t)val);
} else {
_pretty->Int64((int64_t)val);
}
return true;
}
template <typename T>
typename x_enable_if<numeric<T>::is_integer && !numeric<T>::is_signed, bool>::type encode_number(const char*key, const T&val, const Extend *ext) {
(void)ext;
xpack_set_key(key);
if (NULL != _writer) {
_writer->Uint64((uint64_t)val);
} else {
_pretty->Uint64((uint64_t)val);
}
return true;
}
template <typename T>
typename x_enable_if<numeric<T>::is_float, bool>::type encode_number(const char*key, const T&val, const Extend *ext) {
(void)ext;
xpack_set_key(key);
if (NULL != _writer) {
_writer->Double((double)val);
} else {
_pretty->Double((double)val);
}
return true;
}
// JsonData
bool encode_type_spec(const char*key, const JsonData&val, const Extend *ext) {
if (val.current == NULL) {
return false;
}
return this->encode_json_value(key, *val.current, ext);
}
bool encode_json_value(const char*key, const rapidjson::Value& val, const Extend *ext) {
switch (val.GetType()){
case rapidjson::kNullType:
return this->WriteNull(key, ext);
case rapidjson::kFalseType:
case rapidjson::kTrueType:
return this->encode_bool(key, val.GetBool(), ext);
case rapidjson::kStringType:
return this->encode_string(key, val.GetString(), (size_t)val.GetStringLength(), ext);
case rapidjson::kNumberType:
if (val.IsDouble()) {
return this->encode_number(key, val.GetDouble(), ext);
} else {
return this->encode_number(key, val.GetInt64(), ext);
}
case rapidjson::kObjectType:
this->ObjectBegin(key, ext);
for (rapidjson::Value::ConstMemberIterator iter = val.MemberBegin(); iter!=val.MemberEnd(); ++iter) {
this->encode_json_value(iter->name.GetString(), iter->value, ext);
}
this->ObjectEnd(key, ext);
break;
case rapidjson::kArrayType:{
this->ArrayBegin(key, ext);
size_t max = (size_t)val.Size();
for (size_t i = 0; i<max; ++i) {
this->encode_json_value(NULL, val[(rapidjson::SizeType)i], ext);
}
this->ArrayEnd(key, ext);
}
break;
}
return true;
}
void xpack_set_key(const char*key) { // openssl defined set_key macro, so we named it xpack_set_key
if (NULL!=key && key[0]!='\0') {
if (NULL != _writer) {
_writer->Key(key);
} else {
_pretty->Key(key);
}
}
}
JSON_WRITER_BUFFER* _buf;
JSON_WRITER_WRITER* _writer;
JSON_WRITER_PRETTY* _pretty;
};
class JsonEncoder {
public:
JsonEncoder() {
indentCount = -1;
indentChar = ' ';
maxDecimalPlaces = -1;
}
JsonEncoder(int _indentCount, char _indentChar, int _maxDecimalPlaces = -1) { // compat
indentCount = _indentCount;
indentChar = _indentChar;
maxDecimalPlaces = _maxDecimalPlaces;
}
void SetMaxDecimalPlaces(int _maxDecimalPlaces) {
maxDecimalPlaces = _maxDecimalPlaces;
}
template <class T>
std::string encode(const T&val) {
JsonWriter wr(indentCount, indentChar, maxDecimalPlaces);
XEncoder<JsonWriter> en(wr);
en.encode(NULL, val, NULL);
return wr.String();
}
private:
int indentCount;
char indentChar;
int maxDecimalPlaces;
};
// //////////////// JsonData ///////////////////////
template<>struct is_xpack_type_spec<JsonWriter, JsonData> {static bool const value = true;};
inline std::string JsonData::String() const {
JsonEncoder en;
return en.encode(*this);
}
}
#endif