-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJSON.hpp
569 lines (490 loc) · 16.2 KB
/
JSON.hpp
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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
/*
* Simple JSON parser for embedded systems
*
*
*
* Created by Andrey Svyatovets
*
*/
#ifndef __JSON_HPP
#define __JSON_HPP
#include <algorithm>
#include <cctype>
#include <cstdlib>
#include <cstring>
#include <memory>
#include <string>
#include <vector>
#if __cplusplus < 201103L && \
(!defined _MSC_VER || (defined(_MSC_VER) && _MSC_VER < 1900))
#include <map>
namespace sag {
template <bool B, class T = void> struct enable_if {};
template <class T> struct enable_if<true, T> { typedef T type; };
struct true_type {
enum { value = true };
};
struct false_type {
enum { value = false };
};
template <class _Ty> struct is_array : false_type {};
template <class _Ty, size_t _Nx> struct is_array<_Ty[_Nx]> : true_type {};
template <class _Ty> struct is_array<_Ty[]> : true_type {};
template <class T, class U> struct is_same : false_type {};
template <class T> struct is_same<T, T> : true_type {};
} // namespace sag
using namespace sag;
#else
#include <unordered_map>
using namespace std;
#endif
template <typename T> struct JSONEmpty { static T m_Empty; };
class JSONString;
class JSONStaticString;
class JSONNumber;
class JSONObject;
class JSONArray;
class JSONElement {
protected:
typedef enum tagType {
tElement,
tGroup,
tObject,
tArray,
tNumber,
tStaticString,
tString
} Type;
private:
template <class Ti>
typename enable_if<is_same<Ti, std::string>::value, std::string>::type
getTypeValue() const;
template <class Ti>
typename enable_if<is_same<Ti, const char *>::value, const char *>::type
getTypeValue() const;
template <class Ti>
typename enable_if<is_same<Ti, bool>::value, bool>::type getTypeValue() const;
template <class Ti>
typename enable_if<is_same<Ti, double>::value, double>::type
getTypeValue() const;
JSONElement &operator=(const JSONElement &);
JSONEmpty<const std::string> m_EmptyString;
JSONEmpty<JSONArray> m_EmptyArray;
JSONEmpty<JSONObject> m_EmptyObject;
const Type m_Type;
protected:
std::size_t m_Pos;
const std::string &m_sJSON;
const JSONArray &get_EmptyArray() const { return m_EmptyArray.m_Empty; }
const JSONObject &get_EmptyObject() const { return m_EmptyObject.m_Empty; }
public:
JSONElement(const std::string &sJSON, std::size_t pos, Type type)
: m_Type(type), m_Pos(pos), m_sJSON(sJSON) {}
JSONElement(Type type)
: m_Type(type), m_Pos(0), m_sJSON(m_EmptyString.m_Empty) {}
virtual ~JSONElement() {}
virtual std::size_t parse() {
m_Pos = m_sJSON.find_first_not_of(" \t\n\r", m_Pos);
return m_Pos;
}
template <class Ti> operator Ti() const { return getTypeValue<Ti>(); }
const JSONElement &operator[](const char *) const;
const JSONElement &operator[](const int idx) const;
operator JSONObject &() const;
operator JSONArray &() const;
};
class JSONStaticString : public JSONElement {
const char *m_pValue;
struct ToLower {
char operator()(char &c) { return (char)std::tolower(c); }
};
std::string to_lower(const std::string &val) {
std::string v = val;
ToLower tl;
std::transform(v.begin(), v.end(), v.begin(), tl);
return v;
}
public:
JSONStaticString(const std::string &sJSON, std::size_t pos,
const char *static_value)
: JSONElement(sJSON, pos, tStaticString), m_pValue(static_value) {}
JSONStaticString() : JSONElement(tStaticString), m_pValue(NULL) {}
inline const char *getValue() const { return m_pValue; }
virtual std::size_t parse() {
if (!m_pValue)
return std::string::npos; // Incorrect value
JSONElement::parse();
std::size_t len = std::strlen(m_pValue);
std::string parsed_value = to_lower(m_sJSON.substr(m_Pos, len));
if (std::string(m_pValue) == parsed_value) {
m_Pos += len;
return m_Pos;
}
return std::string::npos; // Not a this value
}
};
class JSONString : public JSONElement {
std::string m_Value;
public:
JSONString(const std::string &sJSON, std::size_t pos)
: JSONElement(sJSON, pos, tString) {}
JSONString() : JSONElement(tString) {}
inline const std::string &getValue() const { return m_Value; }
operator std::string() { return m_Value; }
virtual std::size_t parse() {
m_Pos = JSONElement::parse();
if (m_Pos == std::string::npos)
return m_Pos; // No any symbol
if (m_sJSON[m_Pos] == '"') {
m_Pos++;
while (true) {
std::size_t start_pos = m_Pos;
m_Pos = m_sJSON.find_first_of("\\\"", m_Pos);
if (m_Pos == std::string::npos)
return m_Pos; // Did not have closed quotes
m_Value += m_sJSON.substr(start_pos, m_Pos - start_pos);
if (m_sJSON[m_Pos] == '\\') {
m_Pos++;
m_Value += m_sJSON[m_Pos];
m_Pos++; // Skip symbol after slash
} else
break;
}
m_Pos++;
return m_Pos;
}
return std::string::npos; // Is not string value
}
};
template <typename T> struct NumberData { static const char *m_pValue; };
template <typename T> const char *NumberData<T>::m_pValue = "0123456789";
class JSONNumber : public JSONElement {
double m_Value;
NumberData<void> m_Numbers;
public:
JSONNumber(const std::string &sJSON, std::size_t pos)
: JSONElement(sJSON, pos, tNumber), m_Value(0) {}
JSONNumber() : JSONElement(tNumber), m_Value(0.0) {}
inline double getValue() const { return m_Value; }
operator double() { return m_Value; }
virtual std::size_t parse() {
JSONElement::parse();
if (m_Pos == std::string::npos)
return m_Pos; // No Value
std::size_t start_pos = m_Pos;
if (m_sJSON[m_Pos] == '-') // m_sJSON[m_Pos] == '0' )
m_Pos++;
if (!std::isdigit(m_sJSON[m_Pos]))
return std::string::npos; // Not a digit value
m_Pos = m_sJSON.find_first_not_of(m_Numbers.m_pValue, m_Pos);
if (m_Pos == std::string::npos)
return m_Pos; // Bad ending of object
if (m_sJSON[m_Pos] == '.') {
m_Pos++;
m_Pos = m_sJSON.find_first_not_of(m_Numbers.m_pValue, m_Pos);
if (m_Pos == std::string::npos)
return m_Pos; // Bad ending of object
}
if (m_sJSON[m_Pos] == 'E' || m_sJSON[m_Pos] == 'e') {
m_Pos++;
if (m_sJSON[m_Pos] == '-' || m_sJSON[m_Pos] == '+')
m_Pos++;
m_Pos = m_sJSON.find_first_not_of(m_Numbers.m_pValue, m_Pos);
if (m_Pos == std::string::npos)
return m_Pos; // Bad ending of object
}
m_Value = std::atof(m_sJSON.substr(start_pos, m_Pos - start_pos).c_str());
// else
// m_Value = std::atol (m_sJSON.substr(start_pos, m_Pos -
//start_pos).c_str());
return m_Pos;
}
};
class JSONObject;
class JSONArray;
template <typename T> class JSONGroup : public JSONElement {
protected:
template <typename valueT>
JSONElement *ParseType(std::size_t start_pos, const char *pStaticValue);
template <typename valueT> JSONElement *ParseType(std::size_t start_pos);
template <typename valueT> JSONElement *ParseType(valueT &);
JSONElement *parseValue() {
std::size_t store_pos = m_Pos;
JSONElement *pValue = NULL;
// Parse String Value
pValue = ParseType<JSONString>(store_pos);
if (pValue)
return pValue;
// Parse Numeric Value
pValue = ParseType<JSONNumber>(store_pos);
if (pValue)
return pValue;
// Parse True Value
pValue = ParseType<JSONStaticString>(store_pos, "true");
if (pValue)
return pValue;
// Parse False Value
pValue = ParseType<JSONStaticString>(store_pos, "false");
if (pValue)
return pValue;
// Parse NULL Value
pValue = ParseType<JSONStaticString>(store_pos, "null");
if (pValue)
return pValue;
// Parse Object Value
pValue = ParseType<JSONObject>(store_pos);
if (pValue)
return pValue;
// Parse Object Value
pValue = ParseType<JSONArray>(store_pos);
if (pValue)
return pValue;
return pValue; // Bad format of object or unknown value type
}
// JSONGroup (const JSONGroup&);
public:
JSONGroup() : JSONElement(tGroup) {}
JSONGroup(const std::string &sJSON, std::size_t pos, Type type)
: JSONElement(sJSON, pos, type) {}
};
class JSONArray : public JSONGroup<void> {
typedef std::vector<const JSONElement *> ArrayType;
ArrayType m_Values;
// JSONArray (const JSONArray&);
public:
JSONArray(JSONArray &arr)
: JSONGroup<void>(arr.m_sJSON, arr.m_Pos, tArray),
m_Values(arr.m_Values) {
arr.m_Values.clear();
}
#if __cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER > 1900)
JSONArray(JSONArray &&arr) noexcept
: JSONGroup<void>(arr.m_sJSON, arr.m_Pos, tArray) {
m_Values = std::move(arr.m_Values);
}
#endif
JSONArray() : JSONGroup<void>() {}
JSONArray(const std::string &sJSON, std::size_t pos)
: JSONGroup<void>(sJSON, pos, tArray) {
m_Values.reserve(20);
}
virtual ~JSONArray() {
for (ArrayType::size_type i = 0; i < m_Values.size(); i++)
if (m_Values[i])
delete m_Values[i];
}
inline const ArrayType &getValues() const { return m_Values; }
const JSONElement &operator[](const ArrayType::size_type _idx) const {
if (_idx >= m_Values.size())
return get_EmptyArray();
const JSONElement *pElement =
const_cast<std::vector<const JSONElement *> &>(m_Values)[_idx];
if (pElement)
return *pElement;
return get_EmptyArray();
}
virtual std::size_t parse() {
JSONElement::parse();
if (m_Pos == std::string::npos)
return m_Pos;
if (m_sJSON[m_Pos] == '[') {
m_Pos++;
while (true) {
// Witespace
JSONElement::parse();
if (m_Pos == std::string::npos)
break; // Bad formed object
if (m_sJSON[m_Pos] == ']') {
m_Pos++;
break;
}
JSONElement *pValue = parseValue();
if (!pValue)
return std::string::npos; // Value parsing error
m_Values.push_back(pValue);
// Witespace
JSONElement::parse();
if (m_Pos == std::string::npos)
break; // Bad formed object
if (m_sJSON[m_Pos] == ',')
m_Pos++;
if (m_sJSON[m_Pos] == ']') {
m_Pos++;
break;
}
}
} else
return std::string::npos; // Not an array
return m_Pos;
}
};
class JSONObject : public JSONGroup<void> {
#if __cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER > 1900)
typedef std::unordered_map<std::string, const JSONElement *> DOMType;
#else
typedef std::map<const std::string, const JSONElement *> DOMType;
#endif
DOMType m_Values;
class cDeleteValue {
public:
void operator()(const std::pair<std::string, const JSONElement *> &_val) {
if (_val.second)
delete _val.second;
}
};
public:
JSONObject(JSONObject &cObj)
: JSONGroup<void>(cObj.m_sJSON, cObj.m_Pos, tObject),
m_Values(cObj.m_Values) {
cObj.m_Values.clear();
}
#if __cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER > 1900)
JSONObject(JSONObject &&cObj) noexcept
: JSONGroup<void>(cObj.m_sJSON, cObj.m_Pos, tObject) {
m_Values = std::move(cObj.m_Values);
}
#endif
JSONObject() : JSONGroup<void>() {}
JSONObject(const std::string &sJSON, std::size_t pos)
: JSONGroup<void>(sJSON, pos, tObject) {}
virtual ~JSONObject() {
cDeleteValue dv;
std::for_each(m_Values.begin(), m_Values.end(), dv);
}
inline const DOMType &getValues() const { return m_Values; }
inline const JSONObject &GetObject(const std::string &name) const {
const JSONElement *pElement = const_cast<DOMType &>(m_Values)[name];
if (pElement)
return static_cast<const JSONObject &>(*pElement);
return get_EmptyObject();
}
inline const JSONElement &operator[](const char *name) const {
if (name) {
const JSONElement *pElement = const_cast<DOMType &>(m_Values)[name];
if (pElement)
return *pElement;
}
return get_EmptyObject();
}
virtual std::size_t parse() {
// Witespace
JSONElement::parse();
if (m_Pos == std::string::npos)
return m_Pos; // Unexpected end
if (m_sJSON[m_Pos] == '{') {
m_Pos++;
while (true) {
// Witespace
JSONElement::parse();
if (m_Pos == std::string::npos)
break; // Bad formed object
if (m_sJSON[m_Pos] == '}')
return ++m_Pos;
// Parse Name
JSONString pName(m_sJSON, m_Pos);
m_Pos = pName.parse();
if (m_Pos == std::string::npos)
break; // Bad formed object name
// Witespace
JSONElement::parse();
if (m_Pos == std::string::npos)
break; // Name parse error
if (m_sJSON[m_Pos] != ':')
return std::string::npos; // Bad formed object
m_Pos++;
JSONElement *pValue = parseValue();
if (!pValue || m_Pos == std::string::npos)
return std::string::npos; // Bad formed object
m_Values[pName.getValue()] = pValue;
// Witespace
JSONElement::parse();
if (m_Pos == std::string::npos)
break;
if (m_sJSON[m_Pos] == ',')
m_Pos++;
if (m_sJSON[m_Pos] == '}')
return ++m_Pos;
}
} else
return std::string::npos; // Not an object
return m_Pos;
}
};
template <typename T> T JSONEmpty<T>::m_Empty;
template <class Ti>
typename enable_if<is_same<Ti, std::string>::value, std::string>::type
JSONElement::getTypeValue() const {
if (this->m_Type != tString)
return "";
return static_cast<const JSONString &>(*this).getValue();
}
template <class Ti>
typename enable_if<is_same<Ti, const char *>::value, const char *>::type
JSONElement::getTypeValue() const {
if (this->m_Type != tStaticString)
return "";
return static_cast<const JSONStaticString &>(*this).getValue();
}
template <class Ti>
typename enable_if<is_same<Ti, bool>::value, bool>::type
JSONElement::getTypeValue() const {
if (this->m_Type != tStaticString)
return false;
const char *ps = static_cast<const JSONStaticString &>(*this).getValue();
if (std::string(ps) == "true")
return true;
return false;
}
template <class Ti>
typename enable_if<is_same<Ti, double>::value, double>::type
JSONElement::getTypeValue() const {
if (this->m_Type != tNumber)
return 0;
return static_cast<const JSONNumber &>(*this).getValue();
}
template <typename T>
template <typename valueT>
JSONElement *JSONGroup<T>::ParseType(std::size_t start_pos,
const char *pStaticValue) {
valueT value(m_sJSON, start_pos, pStaticValue);
return ParseType(value);
}
template <typename T>
template <typename valueT>
JSONElement *JSONGroup<T>::ParseType(std::size_t start_pos) {
valueT value(m_sJSON, start_pos);
return ParseType(value);
}
template <typename T>
template <typename valueT>
JSONElement *JSONGroup<T>::ParseType(valueT &pValue) {
m_Pos = pValue.parse();
if (m_Pos == std::string::npos)
return NULL;
#if __cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER > 1900)
return static_cast<JSONElement *>(new valueT(std::move(pValue)));
#else
return static_cast<JSONElement *>(new valueT(pValue));
#endif
}
inline JSONElement::operator JSONObject &() const {
if (this->m_Type != tObject)
return this->m_EmptyObject.m_Empty;
return static_cast<JSONObject &>(const_cast<JSONElement &>(*this));
}
inline const JSONElement &JSONElement::operator[](const char *name) const {
if (this->m_Type != tObject)
return this->m_EmptyObject.m_Empty;
return static_cast<const JSONObject &>(*this)[name];
}
inline const JSONElement &JSONElement::operator[](const int idx) const {
if (this->m_Type != tArray)
return this->m_EmptyArray.m_Empty;
return static_cast<const JSONArray &>(*this)[idx];
}
inline JSONElement::operator JSONArray &() const {
if (this->m_Type != tArray)
return this->m_EmptyArray.m_Empty;
return static_cast<JSONArray &>(const_cast<JSONElement &>(*this));
}
#endif // __JSON_HPP