forked from CoolProp/CoolProp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrapidjson_include.h
340 lines (312 loc) · 12.8 KB
/
rapidjson_include.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
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
#ifndef RAPIDJSON_COOLPROP_H
#define RAPIDJSON_COOLPROP_H
// On PowerPC, we are going to use the stdint.h integer types and not let rapidjson use its own
#if defined(__powerpc__)
typedef unsigned int UINT32;
# include "stdint.h"
# define RAPIDJSON_NO_INT64DEFINE
#endif
#include "Exceptions.h"
#include "CoolPropTools.h"
#include "externals/rapidjson/include/rapidjson/rapidjson.h"
#include "externals/rapidjson/include/rapidjson/document.h"
#include "externals/rapidjson/include/rapidjson/filewritestream.h" // wrapper of C stream for prettywriter as output
#include "externals/rapidjson/include/rapidjson/prettywriter.h" // for stringify JSON
#include "externals/rapidjson/include/rapidjson/stringbuffer.h" // for string buffer
#include "externals/rapidjson/include/rapidjson/schema.h"
#include <cassert>
namespace cpjson {
/// Convert a JSON-formatted string to a rapidjson::Document object
inline void JSON_string_to_rapidjson(const std::string& JSON_string, rapidjson::Document& doc) {
doc.Parse<0>(JSON_string.c_str());
if (doc.HasParseError()) {
throw CoolProp::ValueError("Unable to load JSON string");
}
}
struct value_information
{
bool isnull, isfalse, istrue, isbool, isobject, isarray, isnumber, isint, isint64, isuint, isuint64, isdouble, isstring;
};
inline value_information get_information(rapidjson::Value& v) {
value_information i;
i.isnull = v.IsNull();
i.isfalse = v.IsFalse();
i.istrue = v.IsTrue();
i.isbool = v.IsBool();
i.isobject = v.IsObject();
i.isarray = v.IsArray();
i.isnumber = v.IsNumber();
i.isint = v.IsInt();
i.isuint = v.IsUint();
i.isint64 = v.IsInt64();
i.isuint64 = v.IsUint64();
i.isdouble = v.IsDouble();
i.isstring = v.IsString();
return i;
};
inline std::string json2string(const rapidjson::Value& v) {
rapidjson::StringBuffer buffer;
rapidjson::PrettyWriter<rapidjson::StringBuffer> writer(buffer);
v.Accept(writer);
return buffer.GetString();
}
/// A convenience function to get a double from a JSON value, including error checking
inline int get_integer(const rapidjson::Value& v, std::string m) {
if (!v.HasMember(m.c_str())) {
throw CoolProp::ValueError(format("Does not have member [%s]", m.c_str()));
}
const rapidjson::Value& el = v[m.c_str()];
if (!el.IsInt()) {
throw CoolProp::ValueError(format("Member [%s] is not an integer", m.c_str()));
} else {
return el.GetInt();
}
};
/// A convenience function to get a double from a JSON value, including error checking
inline double get_double(const rapidjson::Value& v, std::string m) {
if (!v.HasMember(m.c_str())) {
throw CoolProp::ValueError(format("Does not have member [%s]", m.c_str()));
}
const rapidjson::Value& el = v[m.c_str()];
if (!el.IsNumber()) {
throw CoolProp::ValueError(format("Member [%s] is not a number", m.c_str()));
} else {
return el.GetDouble();
}
};
/// A convenience function to get a bool from a JSON value, including error checking
inline bool get_bool(const rapidjson::Value& v, std::string m) {
if (!v.HasMember(m.c_str())) {
throw CoolProp::ValueError(format("Does not have member [%s]", m.c_str()));
}
const rapidjson::Value& el = v[m.c_str()];
if (!el.IsBool()) {
throw CoolProp::ValueError(format("Member [%s] is not a boolean", m.c_str()));
} else {
return el.GetBool();
}
};
/// A convenience function to get a string from a JSON value, including error checking
inline std::string get_string(const rapidjson::Value& v, std::string m) {
if (!v.HasMember(m.c_str())) {
throw CoolProp::ValueError(format("Does not have member [%s]", m.c_str()));
}
const rapidjson::Value& el = v[m.c_str()];
if (!el.IsString()) {
throw CoolProp::ValueError(format("Member [%s] is not a string", m.c_str()));
} else {
return el.GetString();
}
};
/// A convenience function to get a double array compactly
inline std::vector<double> get_double_array(const rapidjson::Value& v) {
std::vector<double> out;
if (!v.IsArray()) {
throw CoolProp::ValueError("input is not an array");
}
for (rapidjson::Value::ConstValueIterator itr = v.Begin(); itr != v.End(); ++itr) {
if (!itr->IsNumber()) {
throw CoolProp::ValueError("input is not a number");
}
out.push_back(itr->GetDouble());
}
return out;
};
/// A convenience function to get a double array compactly
inline std::vector<double> get_double_array(const rapidjson::Value& v, std::string m) {
if (!v.HasMember(m.c_str())) {
throw CoolProp::ValueError(format("Does not have member [%s]", m.c_str()));
} else {
return get_double_array(v[m.c_str()]);
}
};
/// A convenience function to get a long double array compactly
inline std::vector<CoolPropDbl> get_long_double_array(const rapidjson::Value& v) {
std::vector<CoolPropDbl> out;
if (!v.IsArray()) {
throw CoolProp::ValueError("input is not an array");
}
for (rapidjson::Value::ConstValueIterator itr = v.Begin(); itr != v.End(); ++itr) {
if (!itr->IsNumber()) {
throw CoolProp::ValueError("input is not a number");
}
out.push_back(itr->GetDouble());
}
return out;
};
/// A convenience function to get a 2D double array compactly
inline std::vector<std::vector<double>> get_double_array2D(const rapidjson::Value& v) {
std::vector<std::vector<double>> out;
std::vector<double> tmp;
if (!v.IsArray()) {
throw CoolProp::ValueError("input is not an array");
}
for (rapidjson::Value::ConstValueIterator itr = v.Begin(); itr != v.End(); ++itr) {
// This is here for debugging purposes
// cpjson::value_information vi = cpjson::get_information((*itr));
if (!(itr->IsArray())) {
throw CoolProp::ValueError(format("input \"%s\" is not a 2D array", cpjson::json2string(v).c_str()));
}
tmp.clear();
for (rapidjson::Value::ConstValueIterator i = itr->Begin(); i != itr->End(); ++i) {
if (!i->IsNumber()) {
throw CoolProp::ValueError("input is not a number");
}
tmp.push_back(i->GetDouble());
}
out.push_back(tmp);
}
return out;
};
/// A convenience function to get a 2D long double array compactly
inline std::vector<std::vector<CoolPropDbl>> get_long_double_array2D(const rapidjson::Value& v) {
std::vector<std::vector<CoolPropDbl>> out;
std::vector<CoolPropDbl> tmp;
if (!v.IsArray()) {
throw CoolProp::ValueError("input is not an array");
}
for (rapidjson::Value::ConstValueIterator itr = v.Begin(); itr != v.End(); ++itr) {
if (!itr->IsArray()) {
throw CoolProp::ValueError("input is not a 2D array");
}
tmp.clear();
for (rapidjson::Value::ConstValueIterator i = itr->Begin(); i != itr->End(); ++i) {
if (!i->IsNumber()) {
throw CoolProp::ValueError("input is not a number");
}
tmp.push_back(i->GetDouble());
}
out.push_back(tmp);
}
return out;
};
/// A convenience function to get a long double array compactly
inline std::vector<CoolPropDbl> get_long_double_array(const rapidjson::Value& v, std::string name) {
std::vector<CoolPropDbl> out;
if (!v.HasMember(name.c_str())) {
throw CoolProp::ValueError(format("Does not have member [%s]", name.c_str()));
}
if (!v[name.c_str()].IsArray()) {
throw CoolProp::ValueError("input is not an array");
}
for (rapidjson::Value::ConstValueIterator itr = v[name.c_str()].Begin(); itr != v[name.c_str()].End(); ++itr) {
if (!itr->IsNumber()) {
throw CoolProp::ValueError("input is not a number");
}
out.push_back(itr->GetDouble());
}
return out;
};
/// A convenience function to get a string array compactly
inline std::vector<std::string> get_string_array(const rapidjson::Value& v) {
std::vector<std::string> out;
if (!v.IsArray()) {
throw CoolProp::ValueError("input is not an array");
}
for (rapidjson::Value::ConstValueIterator itr = v.Begin(); itr != v.End(); ++itr) {
out.push_back(itr->GetString());
}
return out;
};
/// A convenience function to get a string array compactly
inline std::vector<std::string> get_string_array(const rapidjson::Value& v, std::string m) {
if (!v.HasMember(m.c_str())) {
throw CoolProp::ValueError(format("Does not have member [%s]", m.c_str()));
} else {
return get_string_array(v[m.c_str()]);
}
};
/// A convenience function to get a std::string from a JSON value
template <typename T>
inline std::string to_string(const T& v) {
rapidjson::StringBuffer buffer;
rapidjson::PrettyWriter<rapidjson::StringBuffer> writer(buffer);
v.Accept(writer);
return buffer.GetString();
};
/// A convenience function to set a 2D array of double compactly
inline void set_double_array2D(const char* key, const std::vector<std::vector<double>>& vec, rapidjson::Value& value, rapidjson::Document& doc) {
rapidjson::Value _i(rapidjson::kArrayType);
for (unsigned int i = 0; i < vec.size(); ++i) {
rapidjson::Value _j(rapidjson::kArrayType);
for (unsigned int j = 0; j < vec[i].size(); ++j) {
rapidjson::Value v(rapidjson::kNumberType);
v.SetDouble(vec[i][j]);
_j.PushBack(v, doc.GetAllocator());
}
_i.PushBack(_j, doc.GetAllocator());
}
value.AddMember(rapidjson::Value(key, doc.GetAllocator()).Move(), _i, doc.GetAllocator());
};
/// A convenience function to set a string compactly
inline void set_string(const std::string& key, const std::string& s, rapidjson::Value& value, rapidjson::Document& doc) {
value.AddMember(rapidjson::Value(key.c_str(), doc.GetAllocator()).Move(), rapidjson::Value(s.c_str(), doc.GetAllocator()).Move(),
doc.GetAllocator());
};
/// A convenience function to set a string array compactly
inline void set_string_array(const char* key, const std::vector<std::string>& vec, rapidjson::Value& value, rapidjson::Document& doc) {
rapidjson::Value _v(rapidjson::kArrayType);
for (unsigned int i = 0; i < vec.size(); ++i) {
_v.PushBack(rapidjson::Value(vec[i].c_str(), doc.GetAllocator()).Move(), doc.GetAllocator());
}
value.AddMember(rapidjson::Value(key, doc.GetAllocator()).Move(), _v, doc.GetAllocator());
};
/// A convenience function to set an integer array compactly
inline void set_int_array(const char* key, const std::vector<int>& vec, rapidjson::Value& value, rapidjson::Document& doc) {
rapidjson::Value _v(rapidjson::kArrayType);
for (unsigned int i = 0; i < vec.size(); ++i) {
_v.PushBack(vec[i], doc.GetAllocator());
}
value.AddMember(rapidjson::Value(key, doc.GetAllocator()).Move(), _v, doc.GetAllocator());
};
/// A convenience function to set a double array compactly
inline void set_double_array(const char* key, const std::vector<double>& vec, rapidjson::Value& value, rapidjson::Document& doc) {
rapidjson::Value _v(rapidjson::kArrayType);
for (unsigned int i = 0; i < vec.size(); ++i) {
_v.PushBack(vec[i], doc.GetAllocator());
}
value.AddMember(rapidjson::Value(key, doc.GetAllocator()).Move(), _v, doc.GetAllocator());
};
/// A convenience function to set a double array compactly
inline void set_long_double_array(const char* const key, const std::vector<CoolPropDbl>& vec, rapidjson::Value& value, rapidjson::Document& doc) {
rapidjson::Value _v(rapidjson::kArrayType);
for (unsigned int i = 0; i < vec.size(); ++i) {
_v.PushBack(static_cast<double>(vec[i]), doc.GetAllocator());
}
value.AddMember(rapidjson::Value(key, doc.GetAllocator()).Move(), _v, doc.GetAllocator());
};
enum schema_validation_code
{
SCHEMA_VALIDATION_OK = 0,
SCHEMA_INVALID_JSON,
INPUT_INVALID_JSON,
SCHEMA_NOT_VALIDATED
};
/**
* Validate a JSON-formatted string against a JSON-formatted schema string
*/
inline schema_validation_code validate_schema(const std::string& schemaJson, const std::string& inputJson, std::string& errstr) {
rapidjson::Document sd;
sd.Parse(schemaJson.c_str());
if (sd.HasParseError()) {
errstr = format("Invalid schema: %s\n", schemaJson.c_str());
return SCHEMA_INVALID_JSON;
}
rapidjson::SchemaDocument schema(sd); // Compile a Document to SchemaDocument
rapidjson::Document d;
d.Parse(inputJson.c_str());
if (d.HasParseError()) {
errstr = format("Invalid input json: %s\n", inputJson.c_str());
return INPUT_INVALID_JSON;
}
rapidjson::SchemaValidator validator(schema);
if (!d.Accept(validator)) {
// Input JSON is invalid according to the schema
// Output diagnostic information
errstr = to_string(validator.GetError());
return SCHEMA_NOT_VALIDATED;
}
return SCHEMA_VALIDATION_OK;
}
} // namespace cpjson
#endif