-
Notifications
You must be signed in to change notification settings - Fork 0
/
pjsettings-jsoncpp.cpp
459 lines (421 loc) · 14.9 KB
/
pjsettings-jsoncpp.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
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
/*
* PJSIP persistent document implementation based on jsoncpp backend
* -----------------------------------------------------------------
*
* Copyright (C) 2014, by Aleksei Kharlov (akharlov@gmail.com)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <iostream>
#include <fstream>
#include <sstream>
#include <stdexcept>
#include "pjsettings-jsoncpp.h"
using namespace pj;
using namespace Json;
using namespace std;
namespace pjsettings
{
/* Pugixml node operations */
static bool jsoncppNode_hasUnread(const ContainerNode*);
static string jsoncppNode_unreadName(const ContainerNode*n) throw(Error);
static float jsoncppNode_readNumber(const ContainerNode*, const string&) throw(Error);
static bool jsoncppNode_readBool(const ContainerNode*, const string&) throw(Error);
static string jsoncppNode_readString(const ContainerNode*, const string&) throw(Error);
static StringVector jsoncppNode_readStringVector(const ContainerNode*, const string&) throw(Error);
static ContainerNode jsoncppNode_readContainer(const ContainerNode*, const string &) throw(Error);
static ContainerNode jsoncppNode_readArray(const ContainerNode*, const string &) throw(Error);
static void jsoncppNode_writeNumber(ContainerNode*, const string &name, float num) throw(Error);
static void jsoncppNode_writeBool(ContainerNode*, const string &name, bool value) throw(Error);
static void jsoncppNode_writeString(ContainerNode*, const string &name, const string &value) throw(Error);
static void jsoncppNode_writeStringVector(ContainerNode*, const string &name, const StringVector &value) throw(Error);
static ContainerNode jsoncppNode_writeNewContainer(ContainerNode*, const string &name) throw(Error);
static ContainerNode jsoncppNode_writeNewArray(ContainerNode*, const string &name) throw(Error);
static container_node_op jsoncpp_op = {
&jsoncppNode_hasUnread,
&jsoncppNode_unreadName,
&jsoncppNode_readNumber,
&jsoncppNode_readBool,
&jsoncppNode_readString,
&jsoncppNode_readStringVector,
&jsoncppNode_readContainer,
&jsoncppNode_readArray,
&jsoncppNode_writeNumber,
&jsoncppNode_writeBool,
&jsoncppNode_writeString,
&jsoncppNode_writeStringVector,
&jsoncppNode_writeNewContainer,
&jsoncppNode_writeNewArray
};
JsonCppDocument::JsonCppDocument(bool notStyledOutputOnWriting)
: _document(objectValue)
, _rootNode()
, _notStyledOutputOnWriting(notStyledOutputOnWriting)
{
initRoot();
}
void JsonCppDocument::initRoot()
{
Value &rootElement = _document;
_rootNode.op = &jsoncpp_op;
_rootNode.data.doc = this;
_rootNode.data.data1 = &_document;
_rootNode.data.data2 = NULL;
}
void JsonCppDocument::loadFile(const std::string &filename) throw(pj::Error)
{
std::ifstream input(filename.c_str(), std::ifstream::binary);
if (!input)
{
throw Error(1, "there is no file exists", filename, __FILE__, __LINE__);
}
Json::Reader reader;
bool parsedSuccessfully = reader.parse(input, _document);
if (!parsedSuccessfully)
{
throw Error(1, "jsoncpp load from file error", reader.getFormattedErrorMessages(), filename, 0);
}
initRoot();
}
void JsonCppDocument::loadString(const std::string &input) throw(pj::Error)
{
Json::Reader reader;
bool parsedSuccessfully = reader.parse(input, _document);
if (!parsedSuccessfully)
{
throw Error(1, "jsoncpp load from string error", reader.getFormattedErrorMessages(), "offset", 0);
}
initRoot();
}
void JsonCppDocument::saveFile(const std::string &filename) throw(pj::Error)
{
try
{
std::ofstream output(filename.c_str(), std::ifstream::binary);
if (_notStyledOutputOnWriting)
{
Json::FastWriter fastWriter;
std::string result = fastWriter.write(_document);
output << result;
}
else
{
Json::StyledStreamWriter styledWriter(" ");
styledWriter.write(output, _document);
}
}
catch (std::exception &ex)
{
throw Error(1, "jsoncpp save to file error", ex.what(), filename.c_str(), 0);
}
}
std::string JsonCppDocument::saveString() throw(pj::Error)
{
try
{
if (_notStyledOutputOnWriting)
{
Json::FastWriter fastWriter;
return fastWriter.write(_document);
}
else
{
Json::StyledStreamWriter styledWriter(" ");
std::stringstream output;
styledWriter.write(output, _document);
return output.str();
}
}
catch (std::exception &ex)
{
throw Error(1, "jsoncpp save to string error", ex.what(), "", 0);
}
}
pj::ContainerNode &JsonCppDocument::getRootContainer() const
{
return _rootNode;
}
void selectNextArrayElement(const ContainerNode *node, ptrdiff_t currentIndex)
{
const_cast<ContainerNode*>(node)->data.data2 = reinterpret_cast<void*>(++currentIndex);
}
static Json::Value &get_value(const ContainerNode *node)
{
Json::Value *data = static_cast<Json::Value *>(node->data.data1);
if (data == NULL)
{
throw pj::Error(1, "get_value error", "parent node data is null", "", 0);
}
return *data;
}
static ArrayIndex get_array_index(const ContainerNode *node)
{
return static_cast<ArrayIndex>(reinterpret_cast<size_t>(node->data.data2));
}
static Json::Value &get_array_value(Json::Value &data, ArrayIndex arrayIndex)
{
if (!data.isValidIndex(arrayIndex - 1))
{
throw pj::Error(1, "read container error", "no more container items in array", "", arrayIndex);
}
return data[arrayIndex - 1];
}
static bool jsoncppNode_hasUnread(const ContainerNode *node)
{
Json::Value &data = get_value(node);
ArrayIndex arrayIndex = get_array_index(node);
if (arrayIndex > 0)
{
return data.isValidIndex(arrayIndex - 1);
}
else
{
return false;
}
}
static string jsoncppNode_unreadName(const ContainerNode *node) throw(Error)
{
// There is no name property for json values
return "";
}
static float jsoncppNode_readNumber(const ContainerNode *node, const string &name) throw(Error)
{
Json::Value &data = get_value(node);
ArrayIndex arrayIndex = get_array_index(node);
if (arrayIndex > 0)
{
Json::Value &arrayElement = get_array_value(data, arrayIndex);
selectNextArrayElement(node, arrayIndex);
return arrayElement.asDouble();
}
else
{
Json::Value &element = data[name];
return element.asDouble();
}
}
static bool jsoncppNode_readBool(const ContainerNode *node, const string &name) throw(Error)
{
Json::Value &data = get_value(node);
ArrayIndex arrayIndex = get_array_index(node);
if (arrayIndex > 0)
{
Json::Value &arrayElement = get_array_value(data, arrayIndex);
selectNextArrayElement(node, arrayIndex);
return arrayElement.asBool();
}
else
{
Json::Value &element = data[name];
return element.asBool();
}
}
static string jsoncppNode_readString(const ContainerNode *node, const string &name) throw(Error)
{
Json::Value &data = get_value(node);
ArrayIndex arrayIndex = get_array_index(node);
if (arrayIndex > 0)
{
Json::Value &arrayElement = get_array_value(data, arrayIndex);
selectNextArrayElement(node, arrayIndex);
return arrayElement.asString();
}
else
{
Json::Value &element = data[name];
return element.asString();
}
}
static StringVector jsoncppNode_readStringVector(const ContainerNode *node, const string &name) throw(Error)
{
Json::Value &data = get_value(node);
ArrayIndex arrayIndex = get_array_index(node);
Json::Value *stringVectorNode = NULL;
if (arrayIndex > 0)
{
stringVectorNode = &get_array_value(data, arrayIndex);
selectNextArrayElement(node, arrayIndex);
}
else
{
stringVectorNode = &data[name];
}
Json::Value &element = *stringVectorNode;
StringVector result;
for (int i = 0; i < element.size(); ++i)
{
Json::Value &item = element[i];
result.push_back(item.asCString());
}
return result;
}
static ContainerNode jsoncppNode_readContainer(const ContainerNode *node, const string &name) throw(Error)
{
Json::Value &data = get_value(node);
ArrayIndex arrayIndex = get_array_index(node);
if (arrayIndex > 0)
{
Json::Value &arrayElement = get_array_value(data, arrayIndex);
ContainerNode childNode = {};
childNode.op = &jsoncpp_op;
childNode.data.doc = node->data.doc;
childNode.data.data1 = &arrayElement;
selectNextArrayElement(node, arrayIndex);
return childNode;
}
else
{
Json::Value &element = data[name];
ContainerNode childNode = {};
childNode.op = &jsoncpp_op;
childNode.data.doc = node->data.doc;
childNode.data.data1 = &element;
return childNode;
}
}
static ContainerNode jsoncppNode_readArray(const ContainerNode *node, const string &name) throw(Error)
{
Json::Value &data = get_value(node);
ArrayIndex arrayIndex = get_array_index(node);
Json::Value *workData = NULL;
if (arrayIndex > 0)
{
Json::Value &arrayElement = get_array_value(data, arrayIndex);
workData = &arrayElement;
selectNextArrayElement(node, arrayIndex);
}
else
{
Json::Value &element = data[name.c_str()];
workData = &element;
}
if (!workData || !workData->isArray())
{
throw pj::Error(1, "read array error", "array expected", name, 0);
}
ContainerNode childNode = {};
childNode.op = &jsoncpp_op;
childNode.data.doc = node->data.doc;
childNode.data.data1 = workData;
childNode.data.data2 = reinterpret_cast<void*>(1);
return childNode;
}
static void jsoncppNode_writeNumber(ContainerNode *node, const string &name, float num) throw(Error)
{
Value &data = get_value(node);
ArrayIndex arrayIndex = get_array_index(node);
if (arrayIndex > 0)
{
data.append(Value(num));
selectNextArrayElement(node, arrayIndex);
}
else
{
data[name] = num;
}
}
static void jsoncppNode_writeBool(ContainerNode *node, const string &name, bool value) throw(Error)
{
Value &data = get_value(node);
ArrayIndex arrayIndex = get_array_index(node);
if (arrayIndex > 0)
{
data.append(Value(value));
selectNextArrayElement(node, arrayIndex);
}
else
{
data[name] = value;
}
}
static void jsoncppNode_writeString(ContainerNode *node, const string &name, const string &value) throw(Error)
{
Value &data = get_value(node);
ArrayIndex arrayIndex = get_array_index(node);
if (arrayIndex > 0)
{
data.append(Value(value));
selectNextArrayElement(node, arrayIndex);
}
else
{
data[name] = value;
}
}
static void jsoncppNode_writeStringVector(ContainerNode *node, const string &name, const StringVector &value) throw(Error)
{
Value &data = get_value(node);
ArrayIndex arrayIndex = get_array_index(node);
Value stringVector(arrayValue);
for (size_t i = 0; i < value.size(); ++i)
{
stringVector.append(Value(value[i]));
}
if (arrayIndex > 0)
{
data.append(stringVector);
selectNextArrayElement(node, arrayIndex);
}
else
{
data[name] = stringVector;
}
}
static ContainerNode jsoncppNode_writeNewContainer(ContainerNode *node, const string &name) throw(Error)
{
Value &data = get_value(node);
ArrayIndex arrayIndex = get_array_index(node);
Value container(objectValue);
Value *forChildNode = NULL;
if (arrayIndex > 0)
{
forChildNode = &data.append(container);
selectNextArrayElement(node, arrayIndex);
}
else
{
data[name] = container;
forChildNode = &data[name];
}
ContainerNode childNode = {};
childNode.op = &jsoncpp_op;
childNode.data.doc = node->data.doc;
childNode.data.data1 = forChildNode;
return childNode;
}
static ContainerNode jsoncppNode_writeNewArray(ContainerNode *node, const string &name) throw(Error)
{
Value &data = get_value(node);
ArrayIndex arrayIndex = get_array_index(node);
Value container(arrayValue);
Value *forChildNode = NULL;
if (arrayIndex > 0)
{
forChildNode = &data.append(container);
selectNextArrayElement(node, arrayIndex);
}
else
{
data[name] = container;
forChildNode = &data[name];
}
ContainerNode childNode = {};
childNode.op = &jsoncpp_op;
childNode.data.doc = node->data.doc;
childNode.data.data1 = forChildNode;
childNode.data.data2 = reinterpret_cast<void*>(1);
return childNode;
}
}