-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjson.cpp
363 lines (323 loc) · 9.14 KB
/
json.cpp
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
#include "json.hpp"
#include <cassert>
#include <cstddef>
#include <stdexcept>
#include <string>
#include <utility>
crawler::JsonValue crawler::JsonParser::parse() {
parseWhitespace();
parseValue();
parseWhitespace();
if (!eof()) {
throw std::runtime_error("PARSE_ROOT_NOT_SINGULAR");
}
return this->jsonValue;
}
void crawler::JsonParser::parseWhitespace() {
while (currentChar() == ' ' || currentChar() == '\t' ||
currentChar() == '\n' || currentChar() == '\r') {
pos++;
}
}
crawler::JsonParser::JsonParser(std::string json)
: jsonValue(JsonType::_NULL), json(std::move(json)), pos(0) {}
const std::string &crawler::JsonParser::getJson() const { return json; }
void crawler::JsonParser::setJson(const std::string &_json) {
JsonParser::json = _json;
}
void crawler::JsonParser::setPos(const size_t _pos) { JsonParser::pos = _pos; }
void crawler::JsonParser::parseTrue() {
parseLiteralness(TRUE, JsonType::BOOLEAN);
this->jsonValue.setData(true);
}
void crawler::JsonParser::parseFalse() {
parseLiteralness(FALSE, JsonType::BOOLEAN);
this->jsonValue.setData(false);
}
void crawler::JsonParser::parseNull() {
parseLiteralness(_NULL, JsonType::_NULL);
this->jsonValue.setData(nullptr);
}
void crawler::JsonParser::parseLiteralness(const std::string &literal,
crawler::JsonType jsonType) {
size_t literalSize = literal.size();
std::string compareData = json.substr(pos, literalSize);
if (literal != compareData) {
throw std::runtime_error("PARSE_INVALID_VALUE");
}
// move `pos` steps forward
pos += literalSize;
this->jsonValue.setType(jsonType);
}
void crawler::JsonParser::parseObject() {
jsonValue.setType(crawler::JsonType::OBJECT);
assert(consumeChar() == '{');
parseWhitespace();
if (currentChar() == '}') {
pos++;
JsonObject emptyValue;
jsonValue.setData(emptyValue);
return;
}
while (true) {
// 1. parse key
if (currentChar() != '\"') {
throw std::runtime_error("PARSE_OBJECT_MISS_KEY");
}
std::string copyData = json.substr(pos, json.length() - pos);
JsonParser copyDataParser(copyData);
copyDataParser.parseString();
std::string key = copyDataParser.getJsonValue().getString();
pos = copyDataParser.getPos() + pos;
// 2. parse whitespace colon whitespace
parseWhitespace();
if (consumeChar() != ':') {
throw std::runtime_error("PARSE_OBJECT_MISS_COLON");
}
parseWhitespace();
// 3. parse jsonvalue.
copyData = json.substr(pos, json.length() - pos);
copyDataParser.setJson(copyData);
copyDataParser.setPos(0);
copyDataParser.parseValue();
copyDataParser.parseWhitespace();
if (getJsonValue().isEmptyValue()) {
JsonObject emptyValue;
jsonValue.setData(emptyValue);
}
JsonObject object = getJsonValue().getObject();
object.insert(
std::pair<std::string, JsonValue>(key, copyDataParser.getJsonValue()));
pos = copyDataParser.getPos() + pos;
// 4. parse whitespace [comma | right-curly-brace] whitespace
parseWhitespace();
if (currentChar() == ',') {
pos++;
parseWhitespace();
} else if (currentChar() == '}') {
pos++;
jsonValue.setData(object);
break;
} else {
throw std::runtime_error("PARSE_MISS_COMMA_OR_CURLY_BRACKET");
}
}
}
void crawler::JsonParser::parseArray() {
jsonValue.setType(crawler::JsonType::ARRAY);
assert(consumeChar() == '[');
parseWhitespace();
// empty array
if (currentChar() == ']') {
pos++;
JsonArray emptyValue;
jsonValue.setData(emptyValue);
return;
}
// parse value.
while (true) {
std::string copyData = json.substr(pos, json.length() - pos);
JsonParser copyDataParser(copyData);
copyDataParser.parseWhitespace();
copyDataParser.parseValue();
copyDataParser.parseWhitespace();
if (getJsonValue().isEmptyValue()) {
JsonArray emptyValue;
jsonValue.setData(emptyValue);
}
JsonArray array = getJsonValue().getArray();
array.emplace_back(copyDataParser.getJsonValue());
jsonValue.setData(array);
pos = copyDataParser.getPos() + pos;
if (currentChar() == ',') {
pos++;
parseWhitespace();
} else if (currentChar() == ']') {
pos++;
break;
}
}
}
void crawler::JsonParser::parseString() {
// beginning quotation mark.
assert(consumeChar() == '\"');
std::string buffer;
while (true) {
char ch = consumeChar();
switch (ch) {
// ending quotation mark
case '\"':
jsonValue.setData(buffer);
jsonValue.setType(crawler::JsonType::STRING);
return;
/* handle escape char */
case '\\':
switch (consumeChar()) {
case '\"':
buffer += '\"';
break;
case '\\':
buffer += '\\';
break;
case '/':
buffer += '/';
break;
case 'b':
buffer += '\b';
break;
case 'f':
buffer += '\f';
break;
case 'n':
buffer += '\n';
break;
case 'r':
buffer += '\r';
break;
case 't':
buffer += '\t';
break;
default:
throw std::runtime_error("PARSE_INVALID_STRING_ESCAPE");
}
break;
case '\0':
throw std::runtime_error("PARSE_MISS_QUOTATION_MARK");
default:
// handle illegal unescaped char
if ((unsigned char)ch < 0x20) {
throw std::runtime_error("PARSE_INVALID_STRING_CHAR");
}
buffer += ch;
}
}
}
void crawler::JsonParser::parseNumber() {
const char *data = json.c_str();
size_t copyPos = pos;
// negative: -
if (data[copyPos] == '-') {
copyPos++;
}
// int: "0" / digit1-9 *digit
if (data[copyPos] == '0') {
copyPos++;
} else {
if (!isDigit1To9(data[copyPos])) {
throw std::runtime_error("PARSE_INVALID_VALUE");
}
for (copyPos++; isdigit(data[copyPos]); copyPos++)
;
}
// frac: "." 1*digit
if (data[copyPos] == '.') {
copyPos++;
if (!isdigit(data[copyPos])) {
throw std::runtime_error("PARSE_INVALID_VALUE");
}
for (copyPos++; isdigit(data[copyPos]); copyPos++)
;
}
// exp
if (data[copyPos] == 'e' || data[copyPos] == 'E') {
copyPos++;
if (data[copyPos] == '+' || data[copyPos] == '-') {
copyPos++;
}
if (!isdigit(data[copyPos])) {
throw std::runtime_error("PARSE_INVALID_VALUE");
}
for (copyPos++; isdigit(data[copyPos]); copyPos++)
;
}
const char *numberStr = json.substr(pos, copyPos - pos).c_str();
double number = strtod(numberStr, NULL);
// if endPtr points end of the string.
pos += copyPos;
this->jsonValue.setData(number);
this->jsonValue.setType(JsonType::NUMBER);
}
void crawler::JsonParser::parseValue() {
switch (currentChar()) {
case 'n':
return parseNull();
case 't':
return parseTrue();
case 'f':
return parseFalse();
case '0' ... '9':
return parseNumber();
case '-':
return parseNumber();
case '\"':
return parseString();
case '[':
return parseArray();
case '{':
return parseObject();
case '\0':
throw std::runtime_error("PARSE_EXPECT_VALUE");
default:
throw std::runtime_error("PARSE_INVALID_VALUE");
}
}
char crawler::JsonParser::currentChar() { return json.c_str()[pos]; }
char crawler::JsonParser::consumeChar() { return json.c_str()[pos++]; }
size_t crawler::JsonParser::getPos() const { return pos; }
crawler::JsonValue crawler::JsonParser::getJsonValue() const {
return jsonValue;
}
bool crawler::JsonParser::eof() { return pos >= json.size(); }
std::string crawler::JsonParser::remainingData() {
return json.substr(pos, json.size() - pos);
}
bool crawler::JsonParser::isDigit1To9(char digit) {
return digit >= '1' && digit <= '9';
}
crawler::JsonType crawler::JsonValue::getType() const { return type; }
crawler::JsonValue::JsonValue(crawler::JsonType type)
: data(nullptr), type(type) {}
void crawler::JsonValue::setType(crawler::JsonType _type) {
JsonValue::type = _type;
}
crawler::JsonValue::JsonValue(crawler::JsonType _jsonType,
crawler::JsonData _jsonData) {
JsonValue::data = _jsonData;
JsonValue::type = _jsonType;
}
double crawler::JsonValue::getNumber() {
assert(type == JsonType::NUMBER);
return std::get<double>(data);
}
std::string crawler::JsonValue::getString() {
assert(type == JsonType::STRING);
return std::get<std::string>(data);
}
bool crawler::JsonValue::getBoolean() {
assert(type == JsonType::BOOLEAN);
return std::get<bool>(data);
}
std::nullptr_t crawler::JsonValue::getNull() {
assert(type == JsonType::_NULL);
return std::get<std::nullptr_t>(data);
}
crawler::JsonArray crawler::JsonValue::getArray() {
assert(type == JsonType::ARRAY);
return std::get<crawler::JsonArray>(data);
}
crawler::JsonObject crawler::JsonValue::getObject() {
assert(type == JsonType::OBJECT);
return std::get<crawler::JsonObject>(data);
}
bool crawler::JsonValue::isEmptyValue() {
try {
std::get<std::nullptr_t>(data);
// if doesn't throw exception, return true.
return true;
} catch (const std::bad_variant_access &) {
return false;
}
}
void crawler::JsonValue::setData(const crawler::JsonData &_data) {
JsonValue::data = _data;
}