-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson.cpp
178 lines (137 loc) · 4.62 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
/*********************************************************************************
*Copyright(C),Lwy
*FileName: json.cpp
*Author: lwy
*Version: 1.3
*Date: 2022-03-23
*Description: 此文件实现Json类, 本类封装了对存储JSON对象的值的相关操作(parse与generate等)
**********************************************************************************/
#include "json.h"
#include <utility>
#include "json_value.h"
#include "json_exception.h"
namespace lwy {
void Json::parse(const std::string &content, std::string &status) noexcept {
try {
parse(content);
status = "parse ok";
} catch (const json::Exception &msg) {
status = msg.what();
} catch (...) {
}
}
void Json::parse(const std::string &content) {
v-> parse(content);
}
void Json::stringify(std::string &content) const noexcept {
v-> stringify(content);
}
Json::Json() noexcept : v(new json::Value) { }
Json::~Json() noexcept = default;
Json::Json(const Json &rhs) noexcept {
v.reset(new json::Value(*(rhs.v)));
}
Json& Json::operator=(const Json &rhs) noexcept {
v.reset(new json::Value(*(rhs.v)));
return *this;
}
Json::Json(Json &&rhs) noexcept {
v = std::move(rhs.v);
}
Json& Json::operator=(Json &&rhs) noexcept {
v = std::move(rhs.v);
return *this;
}
void Json::swap(Json &rhs) noexcept {
using std::swap;
swap(v, rhs.v);
}
void swap(Json &lhs, Json &rhs) noexcept {
lhs.swap(rhs);
}
int Json::get_type() const noexcept {
if (v == nullptr)
return json::Null;
return v-> get_type();
}
void Json::set_null() noexcept {
v->set_type(json::Null);
}
void Json::set_boolean(bool b) noexcept {
if(b) v->set_type(json::True);
else v->set_type(json::False);
}
double Json::get_number() const noexcept {
return v-> get_number();
}
void Json::set_number(double d) noexcept {
v-> set_number(d);
}
const std::string Json::get_string() const noexcept {
return v-> get_string();
}
void Json::set_string(const std::string &str) noexcept {
v-> set_string(str);
}
size_t Json::get_array_size() const noexcept {
return v-> get_array_size();
}
Json Json::get_array_element(size_t index) const noexcept {
Json ret;
ret.v.reset(new json::Value(v-> get_array_element(index)));
return ret;
}
void Json::set_array() noexcept {
v-> set_array(std::vector<json::Value>{});
}
void Json::pushback_array_element(const Json& val) noexcept {
v-> pushback_array_element(*val.v);
}
void Json::popback_array_element() noexcept {
v-> popback_array_element();
}
void Json::insert_array_element(const Json &val, size_t index) noexcept {
v-> insert_array_element(*val.v, index);
}
void Json::erase_array_element(size_t index, size_t count) noexcept {
v-> erase_array_element(index, count);
}
void Json::clear_array() noexcept {
v-> clear_array();
}
void Json::set_object() noexcept {
v-> set_object(std::vector<std::pair<std::string, json::Value>>{});
}
size_t Json::get_object_size() const noexcept {
return v-> get_object_size();
}
const std::string& Json::get_object_key(size_t index) const noexcept {
return v-> get_object_key(index);
}
size_t Json::get_object_key_length(size_t index) const noexcept {
return v-> get_object_key_length(index);
}
Json Json::get_object_value(size_t index) const noexcept {
Json ret;
ret.v.reset(new json::Value(v-> get_object_value(index)));
return ret;
}
void Json::set_object_value(const std::string &key, const Json &val) noexcept {
v-> set_object_value(key, *val.v);
}
long long Json::find_object_index(const std::string &key) const noexcept {
return v-> find_object_index(key);
}
void Json::remove_object_value(size_t index) noexcept {
v-> remove_object_value(index);
}
void Json::clear_object() noexcept {
v-> clear_object();
}
bool operator==(const Json &lhs, const Json &rhs) noexcept {
return *lhs.v == *rhs.v;
}
bool operator!=(const Json &lhs, const Json &rhs) noexcept {
return *lhs.v != *rhs.v;
}
}