Branch data Line data Source code
1 : : // Copyright 2014 BitPay Inc.
2 : : // Copyright 2015 Bitcoin Core Developers
3 : : // Distributed under the MIT software license, see the accompanying
4 : : // file COPYING or https://opensource.org/licenses/mit-license.php.
5 : :
6 : : #include <univalue.h>
7 : :
8 : : #include <iomanip>
9 : : #include <map>
10 : : #include <memory>
11 : : #include <sstream>
12 : : #include <string>
13 : : #include <utility>
14 : : #include <vector>
15 : :
16 : : const UniValue NullUniValue;
17 : :
18 : 9372870 : void UniValue::clear()
19 : : {
20 : 9372870 : typ = VNULL;
21 : 9372870 : val.clear();
22 : 9372870 : keys.clear();
23 : 9372870 : values.clear();
24 : 9372870 : }
25 : :
26 : 165821 : void UniValue::setNull()
27 : : {
28 : 165821 : clear();
29 : 165821 : }
30 : :
31 : 5202028 : void UniValue::setBool(bool val_)
32 : : {
33 : 5202028 : clear();
34 : 5202028 : typ = VBOOL;
35 [ + + ]: 5202028 : if (val_)
36 : 4821588 : val = "1";
37 : 5202028 : }
38 : :
39 : 1541890 : static bool validNumStr(const std::string& s)
40 : : {
41 [ + - ]: 1541890 : std::string tokenVal;
42 : 1541890 : unsigned int consumed;
43 [ + - ]: 1541890 : enum jtokentype tt = getJsonToken(tokenVal, consumed, s.data(), s.data() + s.size());
44 : 1541890 : return (tt == JTOK_NUMBER);
45 : 1541890 : }
46 : :
47 : 1541890 : void UniValue::setNumStr(std::string str)
48 : : {
49 [ + + ]: 1541890 : if (!validNumStr(str)) {
50 [ + - + - ]: 3 : throw std::runtime_error{"The string '" + str + "' is not a valid JSON number"};
51 : : }
52 : :
53 : 1541889 : clear();
54 : 1541889 : typ = VNUM;
55 : 1541889 : val = std::move(str);
56 : 1541889 : }
57 : :
58 : 698351 : void UniValue::setInt(uint64_t val_)
59 : : {
60 : 698351 : std::ostringstream oss;
61 : :
62 [ + - ]: 698351 : oss << val_;
63 : :
64 [ + - + - ]: 1396702 : return setNumStr(oss.str());
65 : 698351 : }
66 : :
67 : 766134 : void UniValue::setInt(int64_t val_)
68 : : {
69 : 766134 : std::ostringstream oss;
70 : :
71 [ + - ]: 766134 : oss << val_;
72 : :
73 [ + - + - ]: 1532268 : return setNumStr(oss.str());
74 : 766134 : }
75 : :
76 : 77369 : void UniValue::setFloat(double val_)
77 : : {
78 : 77369 : std::ostringstream oss;
79 : :
80 [ + - ]: 77369 : oss << std::setprecision(16) << val_;
81 : :
82 [ + - + - ]: 154738 : return setNumStr(oss.str());
83 : 77369 : }
84 : :
85 : 2140460 : void UniValue::setStr(std::string str)
86 : : {
87 : 2140460 : clear();
88 : 2140460 : typ = VSTR;
89 : 2140460 : val = std::move(str);
90 : 2140460 : }
91 : :
92 : 459 : void UniValue::setArray()
93 : : {
94 : 459 : clear();
95 : 459 : typ = VARR;
96 : 459 : }
97 : :
98 : 160802 : void UniValue::setObject()
99 : : {
100 : 160802 : clear();
101 : 160802 : typ = VOBJ;
102 : 160802 : }
103 : :
104 : 727618 : void UniValue::push_back(UniValue val)
105 : : {
106 : 727618 : checkType(VARR);
107 : :
108 : 727617 : values.push_back(std::move(val));
109 : 727617 : }
110 : :
111 : 2 : void UniValue::push_backV(const std::vector<UniValue>& vec)
112 : : {
113 : 2 : checkType(VARR);
114 : :
115 : 1 : values.insert(values.end(), vec.begin(), vec.end());
116 : 1 : }
117 : :
118 : 3988996 : void UniValue::pushKVEnd(std::string key, UniValue val)
119 : : {
120 : 3988996 : checkType(VOBJ);
121 : :
122 : 3988995 : keys.push_back(std::move(key));
123 : 3988995 : values.push_back(std::move(val));
124 : 3988995 : }
125 : :
126 : 3964228 : void UniValue::pushKV(std::string key, UniValue val)
127 : : {
128 : 3964228 : checkType(VOBJ);
129 : :
130 : 3964227 : size_t idx;
131 [ + + ]: 3964227 : if (findKey(key, idx))
132 : 10 : values[idx] = std::move(val);
133 : : else
134 [ + - ]: 7928434 : pushKVEnd(std::move(key), std::move(val));
135 : 3964227 : }
136 : :
137 : 15587 : void UniValue::pushKVs(UniValue obj)
138 : : {
139 : 15587 : checkType(VOBJ);
140 : 15586 : obj.checkType(VOBJ);
141 : :
142 [ + + ]: 36086 : for (size_t i = 0; i < obj.keys.size(); i++)
143 [ + - + - ]: 41000 : pushKVEnd(std::move(obj.keys.at(i)), std::move(obj.values.at(i)));
144 : 15586 : }
145 : :
146 : 362961 : void UniValue::getObjMap(std::map<std::string,UniValue>& kv) const
147 : : {
148 [ + - ]: 362961 : if (typ != VOBJ)
149 : : return;
150 : :
151 : 362961 : kv.clear();
152 [ + + ]: 3422992 : for (size_t i = 0; i < keys.size(); i++)
153 : 3060031 : kv[keys[i]] = values[i];
154 : : }
155 : :
156 : 4183039 : bool UniValue::findKey(const std::string& key, size_t& retIdx) const
157 : : {
158 [ + + ]: 34962158 : for (size_t i = 0; i < keys.size(); i++) {
159 [ + + ]: 30975739 : if (keys[i] == key) {
160 : 196620 : retIdx = i;
161 : 196620 : return true;
162 : : }
163 : : }
164 : :
165 : : return false;
166 : : }
167 : :
168 : 11 : bool UniValue::checkObject(const std::map<std::string,UniValue::VType>& t) const
169 : : {
170 [ + - ]: 11 : if (typ != VOBJ) {
171 : : return false;
172 : : }
173 : :
174 [ + + ]: 51 : for (const auto& object: t) {
175 : 42 : size_t idx = 0;
176 [ + - ]: 42 : if (!findKey(object.first, idx)) {
177 : : return false;
178 : : }
179 : :
180 [ + + ]: 42 : if (values.at(idx).getType() != object.second) {
181 : : return false;
182 : : }
183 : : }
184 : :
185 : : return true;
186 : : }
187 : :
188 : 24579 : const UniValue& UniValue::operator[](const std::string& key) const
189 : : {
190 [ + + ]: 24579 : if (typ != VOBJ)
191 : : return NullUniValue;
192 : :
193 : 24519 : size_t index = 0;
194 [ + + ]: 24519 : if (!findKey(key, index))
195 : : return NullUniValue;
196 : :
197 : 21274 : return values.at(index);
198 : : }
199 : :
200 : 1608814 : const UniValue& UniValue::operator[](size_t index) const
201 : : {
202 [ + - ]: 1608814 : if (typ != VOBJ && typ != VARR)
203 : : return NullUniValue;
204 [ + + ]: 1608814 : if (index >= values.size())
205 : : return NullUniValue;
206 : :
207 : 1373527 : return values.at(index);
208 : : }
209 : :
210 : 12210212 : void UniValue::checkType(const VType& expected) const
211 : : {
212 [ + + ]: 12210212 : if (typ != expected) {
213 [ + - + - : 94 : throw type_error{"JSON value of type " + std::string{uvTypeName(typ)} + " is not of expected type " +
+ - ]
214 [ + - + - : 188 : std::string{uvTypeName(expected)}};
+ - ]
215 : : }
216 : 12210165 : }
217 : :
218 : 45490 : const char *uvTypeName(UniValue::VType t)
219 : : {
220 [ + + + + : 45490 : switch (t) {
+ - + ]
221 : : case UniValue::VNULL: return "null";
222 : 16 : case UniValue::VBOOL: return "bool";
223 : 20011 : case UniValue::VOBJ: return "object";
224 : 1042 : case UniValue::VARR: return "array";
225 : 19591 : case UniValue::VSTR: return "string";
226 : 76 : case UniValue::VNUM: return "number";
227 : : }
228 : :
229 : : // not reached
230 : 0 : return nullptr;
231 : : }
232 : :
233 : 730515 : const UniValue& UniValue::find_value(std::string_view key) const
234 : : {
235 [ + + ]: 1857002 : for (unsigned int i = 0; i < keys.size(); ++i) {
236 [ + + ]: 1835751 : if (keys[i] == key) {
237 : 709264 : return values.at(i);
238 : : }
239 : : }
240 : : return NullUniValue;
241 : : }
242 : :
|