-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson.h
137 lines (111 loc) · 2.54 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
130
131
132
133
134
135
136
137
#pragma once
#include <iostream>
#include <map>
#include <string>
#include <variant>
#include <vector>
namespace json
{
class Node;
using Dict = std::map<std::string, Node>;
using Array = std::vector<Node>;
class ParsingError
: public std::runtime_error
{
public:
using runtime_error::runtime_error;
};
class Node final : private std::variant<std::nullptr_t, Array, Dict, bool, int, double, std::string>
{
public:
using variant::variant;
using Value = variant;
bool IsInt() const
{
return std::holds_alternative<int>(*this);
}
int AsInt() const
{
return (!IsInt()) ? throw std::logic_error("Not a intager") : std::get<int>(*this);
}
bool IsPureDouble() const
{
return std::holds_alternative<double>(*this);
}
bool IsDouble() const;
double AsDouble() const
{
return (!IsDouble()) ? throw std::logic_error("Not a double") : IsPureDouble() ? std::get<double>(*this) : AsInt();
}
bool IsBool() const
{
return std::holds_alternative<bool>(*this);
}
bool AsBool() const
{
return (!IsBool()) ? throw std::logic_error("Not a bool") : std::get<bool>(*this);
}
bool IsNull() const
{
return std::holds_alternative<nullptr_t>(*this);
}
bool IsArray() const
{
return std::holds_alternative<Array>(*this);
}
const Array& AsArray() const
{
return (!IsArray()) ? throw std::logic_error("Not a Array") : std::get<Array>(*this);
}
bool IsString() const
{
return std::holds_alternative<std::string>(*this);
}
const std::string& AsString() const
{
return (!IsString()) ? throw std::logic_error("Not a string") : std::get<std::string>(*this);
}
bool IsMap() const
{
return std::holds_alternative<Dict>(*this);
}
const Dict& AsDict() const
{
return (!IsMap()) ? throw std::logic_error("Not a dict") : std::get<Dict>(*this);
}
bool operator==(const Node& rhs) const
{
return GetValue() == rhs.GetValue();
}
const Value& GetValue() const
{
return *this;
}
};
inline bool operator!=(const Node& lhs, const Node& rhs)
{
return !(lhs == rhs);
}
class Document
{
public:
explicit Document(Node root)
: root_(std::move(root)) {}
const Node& GetRoot() const
{
return root_;
}
private:
Node root_;
};
inline bool operator==(const Document& lhs, const Document& rhs)
{
return lhs.GetRoot() == rhs.GetRoot();
}
inline bool operator!=(const Document& lhs, const Document& rhs)
{
return !(lhs == rhs);
}
Document Load(std::istream& input);
void Print(const Document& doc, std::ostream& output);
} // namespace json