-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson.cpp
394 lines (348 loc) · 10.8 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
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
#include "json.h"
#include <unordered_map>
using namespace std;
namespace json {
namespace {
Node LoadNode(istream& input);
Node LoadArray(istream& input) {
Array result;
char c = '!';
for (; input >> c && c != ']';) {
if (c != ',') {
input.putback(c);
}
result.push_back(LoadNode(input));
}
if (c != ']') {
throw ParsingError("Miss ']' at the end");
}
return Node(move(result));
}
Node LoadNumber(std::istream& input) {
using namespace std::literals;
std::string parsed_num;
// Считывает в parsed_num очередной символ из input
auto read_char = [&parsed_num, &input] {
parsed_num += static_cast<char>(input.get());
if (!input) {
throw ParsingError("Failed to read number"s);
}
};
auto read_digits = [&input, read_char] {
if (!std::isdigit(input.peek())) {
throw ParsingError("A digit is expected"s);
}
while (std::isdigit(input.peek())) {
read_char();
}
};
if (input.peek() == '-') {
read_char();
}
//Parse the integer part of the numbers
if (input.peek() == '0') {
read_char();
}
else {
read_digits();
}
bool is_int = true;
//Parse the fractional part of a number
if (input.peek() == '.') {
read_char();
read_digits();
is_int = false;
}
//Parse the exponential part of a number
if (int ch = input.peek(); ch == 'e' || ch == 'E') {
read_char();
if (ch = input.peek(); ch == '+' || ch == '-') {
read_char();
}
read_digits();
is_int = false;
}
try {
if (is_int) {
//try string to int
try {
return Node(std::stoi(parsed_num));
}
catch (...) {
// if cant, try string to double
}
}
return Node(std::stod(parsed_num));
}
catch (...) {
throw ParsingError("Failed to convert "s + parsed_num + " to number"s);
}
}
Node LoadString(istream& input) {
static const std::unordered_map<char, char> escape_sequences{
{'a','\a'}, {'b','\b'}, {'f','\f'}, {'n','\n'},
{'r','\r'}, {'t','\t'}, {'v','\v'}, {'\'','\''},
{'\"','\"'}, {'\\','\\'}
};
string str;
bool escaped = false;
char c;
for (; input.get(c) && !(!escaped && c == '\"');) {
if (!escaped) {
if (c == '\\') {
escaped = true;
}
else {
str += c;
}
}
else {
if (const auto it = escape_sequences.find(c); it != escape_sequences.end()) {
str += it->second;
}
else {
throw ParsingError("Uncorrect escape sequence"s + std::to_string(c));
}
escaped = false;
}
}
if ((escaped) || (c != '\"')) {
throw ParsingError("Failed to read string"s);
}
return Node(move(str));
}
Node LoadDict(istream& input) {
Dict result;
char c = '!'; // Initialize to compare with '}'
for (; input >> c && c != '}';) {
if (c == ',') {
input >> c;
}
string key = LoadString(input).AsString();
input >> c;
result.insert({ move(key), LoadNode(input) });
}
if (c != '}') {
throw ParsingError("Parse error");
}
return Node(move(result));
}
Node LoadNullOrBool(istream& input) {
std::string result;
size_t size;
if (input.peek() == 'f') {
size = 5;
}
else {
size = 4;
}
char c;
for (size_t i = 0; i < size && input >> c; ++i) {
result += c;
}
if (result == "null"s) {
return { nullptr };
}
else if (result == "true"s) {
return { true };
}
else if (result == "false"s) {
return { false };
}
else {
throw ParsingError("Failed to read null or bool");
}
}
Node LoadNode(istream& input) {
char c;
input >> c;
if (c == '[') {
return LoadArray(input);
}
else if (c == '{') {
return LoadDict(input);
}
else if (c == '"') {
return LoadString(input);
}
else if (c == 'n' || c == 't' || c == 'f') {
input.putback(c);
return LoadNullOrBool(input);
}
else {
input.putback(c);
return LoadNumber(input);
}
}
} // namespace
//As*Type* return Node
const Array& Node::AsArray() const {
if (IsArray()) {
return get<Array>(*this);
}
else {
throw invalid_argument("Received non array value in 'AsArray'");
}
}
const Dict& Node::AsMap() const {
if (IsMap()) {
return get<Dict>(*this);
}
else {
throw invalid_argument("Received non dict value in 'AsMap'");
}
}
const std::string& Node::AsString() const {
if (IsString()) {
return get<string>(*this);
}
else {
throw invalid_argument("Received non string value in 'AsString'");
}
}
int Node::AsInt() const {
if (IsInt()) {
return get<int>(*this);
}
else {
throw invalid_argument("Received non int value in 'AsInt'");
}
}
double Node::AsDouble() const {
if (IsPureDouble()) {
return get<double>(*this);
}
else if (IsInt()) {
return get<int>(*this);
}
else {
throw invalid_argument("Received non double value in 'AsDouble'");
}
}
bool Node::AsBool() const {
if (IsBool()) {
return get<bool>(*this);
}
else {
throw invalid_argument("Received non bool value in 'AsBool'");
}
}
Document::Document(Node root)
: root_(move(root)) {
}
const Node& Document::GetRoot() const {
return root_;
}
// Is*Type* checkers
bool Node::IsNull() const {
return std::holds_alternative<nullptr_t>(*this);
}
bool Node::IsInt() const {
return std::holds_alternative<int>(*this);
}
bool Node::IsDouble() const {
return std::holds_alternative<double>(*this) || IsInt();
}
bool Node::IsPureDouble() const {
return std::holds_alternative<double>(*this);
}
bool Node::IsString() const {
return std::holds_alternative<std::string>(*this);
}
bool Node::IsBool() const {
return std::holds_alternative<bool>(*this);
}
bool Node::IsArray() const {
return std::holds_alternative<Array>(*this);
}
bool Node::IsMap() const {
return std::holds_alternative<Dict>(*this);
}
//operators == and != for Node And Document
bool operator==(const Node& left, const Node& right) {
return left.GetData() == right.GetData();
}
bool operator!=(const Node& left, const Node& right) {
return !(left == right);
}
bool operator==(const Document& left, const Document& right) {
return left.GetRoot() == right.GetRoot();
}
bool operator!=(const Document& left, const Document& right) {
return !(left == right);
}
Document Load(istream& input) {
return Document{ LoadNode(input) };
}
void PrintNode(const Node& node, std::ostream& output);
//operator() for different types.
struct NodePrint {
std::ostream& out;
void operator()(std::nullptr_t) const {
out << "null"s;
}
void operator()(Array array) const {
int size = array.size() - 1;
out << "[\n";
for (const Node& node : array) {
PrintNode(node, out);
if (size > 0) {
out << ",\n";
--size;
}
}
out << "\n]";
}
void operator()(Dict dict) const {
int size = dict.size() - 1;
out << "{\n";
for (const auto& [key, node] : dict) {
out << '"' << key << "\": ";
PrintNode(node, out);
if (size > 0) {
out << ",\n";
--size;
}
}
out << "\n}";
}
void operator()(int integer) const {
out << integer;
}
void operator()(double real) const {
out << real;
}
void operator()(const std::string& str) const {
out << '"';
for (const auto& symbol : str) {
if (symbol == '\"') {
out << '\\' << '\"';
}
else if (symbol == '\\') {
out << '\\' << '\\';
}
else if (symbol == '\n') {
out << '\\' << 'n';
}
else {
out << symbol;
}
}
out << '"';
}
void operator()(bool boolean) const {
if (boolean) {
out << "true"s;
}
else {
out << "false"s;
}
}
};
void PrintNode(const Node& node, std::ostream& output) {
visit(NodePrint{ output }, node.GetData());
}
void Print(const Document& doc, std::ostream& output) {
PrintNode(doc.GetRoot(), output);
}
} // namespace json