-
Notifications
You must be signed in to change notification settings - Fork 0
/
json.h
129 lines (83 loc) · 2.66 KB
/
json.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
#pragma once
#include <iostream>
#include <map>
#include <string>
#include <vector>
#include <variant>
#include <stdexcept>
#include <cassert>
#include <algorithm>
namespace json {
class Node;
// Сохраните объявления Dict и Array без изменения
using Dict = std::map<std::string, Node>;
using Array = std::vector<Node>;
// Эта ошибка должна выбрасываться при ошибках парсинга JSON
class ParsingError : public std::runtime_error {
public:
using runtime_error::runtime_error;
};
using Value = std::variant<std::nullptr_t, Array, Dict, bool, int, double, std::string>;
class Node final : private Value {
public:
using variant::variant;
Node(Value value);
bool IsInt() const;
bool IsDouble() const;
bool IsPureDouble() const;
bool IsBool() const;
bool IsString() const;
bool IsNull() const;
bool IsArray() const;
bool IsDict() const;
const Array& AsArray() const;
const Dict& AsDict() const;
int AsInt() const;
bool AsBool() const;
double AsDouble() const;
const std::string& AsString() const;
const Value& GetValue() const;
Value& GetValue();
bool operator==(const Node& other) const;
bool operator!=(const Node& other) const;
};
class Document {
public:
explicit Document(Node root);
const Node& GetRoot() const;
bool operator==(const json::Document& other) const;
bool operator!=(const json::Document& other) const;
private:
Node root_;
};
Document Load(std::istream& input);
struct PrintContext {
std::ostream& out;
int indent_step = 4;
int indent = 0;
void PrintIndent() const {
for (int i = 0; i < indent; ++i) {
out.put(' ');
}
}
// Возвращает новый контекст вывода с увеличенным смещением
PrintContext Indented(int offset = 0) const {
return {out, indent_step, indent_step + indent + offset};
}
};
namespace detail {
// Шаблон, подходящий для вывода double и int
template<typename T>
void PrintValue(const T& value, const PrintContext& ctx) {
auto& out = ctx.out;
out << value;
}
void PrintNode(const Node& node, const PrintContext& ctx);
void PrintValue(std::nullptr_t, const PrintContext& ctx);
void PrintValue(bool value, const PrintContext& ctx);
void PrintValue(const Array& array, const PrintContext& ctx);
void PrintValue(const std::string& str, const PrintContext& ctx);
void PrintValue(const Dict& dict, const PrintContext& ctx);
} // namespace detail
void Print(const Document& doc, std::ostream& output);
} // namespace json