-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathAampJsonObject.cpp
More file actions
executable file
·660 lines (586 loc) · 12.4 KB
/
AampJsonObject.cpp
File metadata and controls
executable file
·660 lines (586 loc) · 12.4 KB
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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
/*
* If not stated otherwise in this file or this component's license file the
* following copyright and licenses apply:
*
* Copyright 2020 RDK Management
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file AampJsonObject.cpp
* @brief File to handle Json format object
*/
#include <vector>
#include "AampJsonObject.h"
#include "AampUtils.h"
#include "_base64.h"
AampJsonObject::AampJsonObject() : mParent(NULL), mJsonObj()
{
mJsonObj = cJSON_CreateObject();
}
AampJsonObject::AampJsonObject(const std::string& jsonStr) : mParent(NULL), mJsonObj()
{
mJsonObj = cJSON_Parse(jsonStr.c_str());
if (!mJsonObj)
{
throw AampJsonParseException();
}
}
AampJsonObject::AampJsonObject(const char* jsonStr) : mParent(NULL), mJsonObj()
{
mJsonObj = cJSON_Parse(jsonStr);
if (!mJsonObj)
{
throw AampJsonParseException();
}
}
AampJsonObject::~AampJsonObject()
{
if (!mParent)
{
cJSON_Delete(mJsonObj);
}
}
/**
* @brief Add a string value
*/
bool AampJsonObject::add(const std::string& name, const std::string& value, const ENCODING encoding)
{
bool res = false;
if (encoding == ENCODING_STRING)
{
res = add(name, cJSON_CreateString(value.c_str()));
}
else
{
res = add(name, std::vector<uint8_t>(value.begin(), value.end()), encoding);
}
return res;
}
/**
* @brief Add a string value
*/
bool AampJsonObject::add(const std::string& name, const char *value, const ENCODING encoding)
{
return add(name, std::string(value), encoding);
}
/**
* @brief Add a vector of string values as a JSON array
*/
bool AampJsonObject::add(const std::string& name, const std::vector<std::string>& values)
{
bool res = false;
cJSON* arr = cJSON_CreateArray();
if (!arr)
{
// Failed to create array
}
else
{
res = true;
for (auto& value : values)
{
cJSON* string_item = cJSON_CreateString(value.c_str());
if (!string_item)
{
// Create string failed
res = false;
}
else if (!cJSON_AddItemToArray(arr, string_item))
{
cJSON_Delete(string_item);
res = false;
}
else
{
// String added successfully
}
if (!res)
{
// Adding an item failed
break;
}
}
if (!res)
{
// Something failed
}
else if (!add(name, arr))
{
// Adding the array to the json object failed
res = false;
}
else
{
// Array added successfully
}
if (!res)
{
// Something failed, so delete whole array
cJSON_Delete(arr);
}
}
return res;
}
/**
* @brief Add the provided bytes after encoding in the specified encoding
*/
bool AampJsonObject::add(const std::string& name, const std::vector<uint8_t>& values, const ENCODING encoding)
{
bool res = false;
switch (encoding)
{
case ENCODING_STRING:
{
std::string strValue(values.begin(), values.end());
res = add(name, cJSON_CreateString(strValue.c_str()));
}
break;
case ENCODING_BASE64:
{
const char *encodedResponse = base64_Encode( reinterpret_cast<const unsigned char*>(values.data()), values.size());
if (encodedResponse != NULL)
{
res = add(name, cJSON_CreateString(encodedResponse));
free((void*)encodedResponse);
}
}
break;
case ENCODING_BASE64_URL:
{
const char *encodedResponse = aamp_Base64_URL_Encode( reinterpret_cast<const unsigned char*>(values.data()), values.size());
if (encodedResponse != NULL)
{
res = add(name, cJSON_CreateString(encodedResponse));
free((void*)encodedResponse);
}
}
break;
default:
/* Unsupported encoding format */
break;
}
return res;
}
/**
* @brief Add a #AampJsonObject value
*/
bool AampJsonObject::add(const std::string& name, AampJsonObject& value)
{
bool res = false;
if (cJSON_AddItemToObject(mJsonObj, name.c_str(), value.mJsonObj))
{
value.mParent = this;
res = true;
}
return res;
}
/**
* @brief Add a vector of #AampJsonObject values as a JSON array
*/
bool AampJsonObject::add(const std::string& name, std::vector<AampJsonObject*>& values)
{
bool res = false;
cJSON *arr = cJSON_CreateArray();
if (!arr)
{
// Failed to create array
}
else
{
res = true;
for (auto& obj : values)
{
if (!cJSON_AddItemToArray(arr, obj->mJsonObj))
{
// Failed to add item to array
res = false;
break;
}
else
{
obj->mParent = this;
}
}
if (!res)
{
// Something failed
}
else if (!add(name, arr))
{
// Adding the array to the json object failed
res = false;
}
else
{
// Array added successfully
}
if (!res)
{
// Something failed, so delete whole array
cJSON_Delete(arr);
}
}
return res;
}
/**
* @brief Add a cJSON value
*/
bool AampJsonObject::add(const std::string& name, cJSON *value)
{
bool res = false;
if (NULL == value)
{
// NULL parameter passed
}
else if (!cJSON_AddItemToObject(mJsonObj, name.c_str(), value))
{
// cJSON_AddItemToObject failed
}
else
{
res = true;
}
return res;
}
/**
* @brief Add a bool value
*/
bool AampJsonObject::add(const std::string& name, bool value)
{
bool res = false;
cJSON *bool_item = cJSON_CreateBool(value);
if (!bool_item)
{
// Failed to create a bool
}
else if (!cJSON_AddItemToObject(mJsonObj, name.c_str(), bool_item))
{
cJSON_Delete(bool_item);
}
else
{
res = true;
}
return res;
}
/**
* @brief Add an int value
*/
bool AampJsonObject::add(const std::string& name, int value)
{
bool res = false;
cJSON *number_item = cJSON_CreateNumber(value);
if (!number_item)
{
// Failed to create a number
}
else if (!cJSON_AddItemToObject(mJsonObj, name.c_str(), number_item))
{
cJSON_Delete(number_item);
}
else
{
res = true;
}
return res;
}
/**
* @brief Add a double value
*/
bool AampJsonObject::add(const std::string& name, double value)
{
bool res = false;
cJSON *number_item = cJSON_CreateNumber(value);
if (!number_item)
{
// Failed to create a number
}
else if (!cJSON_AddItemToObject(mJsonObj, name.c_str(), number_item))
{
cJSON_Delete(number_item);
}
else
{
res = true;
}
return res;
}
/**
* @brief Add a long value
*/
bool AampJsonObject::add(const std::string& name, long value)
{
bool res = false;
cJSON *number_item = cJSON_CreateNumber(value);
if (!number_item)
{
// Failed to create a number
}
else if (!cJSON_AddItemToObject(mJsonObj, name.c_str(), number_item))
{
cJSON_Delete(number_item);
}
else
{
res = true;
}
return res;
}
/**
* @brief Set cJSON value
*/
bool AampJsonObject::set(AampJsonObject *parent, cJSON *object)
{
this->mParent = parent;
this->mJsonObj = object;
/**< return true always to match the template */
return true;
}
/**
* @brief Get the AampJson object from json data within the Json data
*/
bool AampJsonObject::get(const std::string& name, AampJsonObject &value)
{
cJSON *strObj = cJSON_GetObjectItem(mJsonObj, name.c_str());
bool retValue = false;
if (strObj)
{
retValue = value.set(this, strObj);
}
return retValue;
}
/**
* @brief Get an array of objects from JSON data
* @param name name for the property
* @param[out] value JSON object array
* @return true if successfully retrieved, false otherwise
*/
bool AampJsonObject::get(const std::string& name, std::vector<AampJsonObject> &values)
{
cJSON *strObj = cJSON_GetObjectItem(mJsonObj, name.c_str());
cJSON *object = NULL;
bool retVal = true;
int idx = 0;
values.clear();
cJSON_ArrayForEach(object, strObj)
{
values.emplace_back();
values[idx++].set(this, object);
}
return retVal;
}
/**
* @brief Get a string value
*/
bool AampJsonObject::get(const std::string& name, std::string& value)
{
cJSON *strObj = cJSON_GetObjectItem(mJsonObj, name.c_str());
if (strObj)
{
char *strValue = cJSON_GetStringValue(strObj);
if (strValue)
{
value = strValue;
return true;
}
}
return false;
}
/**
* @brief Get a int value from a JSON data
*/
bool AampJsonObject::get(const std::string& name, int& value)
{
cJSON *strObj = cJSON_GetObjectItem(mJsonObj, name.c_str());
bool retValue = false;
if (strObj)
{
// TODO: replace with cJSON_GetNumberValue(strObj);
value = (int)strObj->valuedouble;
retValue = true;
}
return retValue;
}
/**
* @brief Get a double value from JSON data
* @param name name for the property
* @param[out] value double value
* @return true if successfully retrieved, false otherwise
*/
bool AampJsonObject::get(const std::string& name, double& value)
{
cJSON *strObj = cJSON_GetObjectItem(mJsonObj, name.c_str());
bool retValue = false;
if (strObj && cJSON_IsNumber(strObj))
{
value = strObj->valuedouble;
retValue = true;
}
return retValue;
}
/**
* @brief Get a string value
*/
bool AampJsonObject::get(const std::string& name, std::vector<std::string>& values)
{
cJSON *strObj = cJSON_GetObjectItem(mJsonObj, name.c_str());
cJSON *object = NULL;
bool retVal = false;
cJSON_ArrayForEach(object, strObj)
{
char *strValue = cJSON_GetStringValue(object);
if (strValue)
{
values.push_back(std::string(strValue));
retVal = true;
}
}
return retVal;
}
/**
* @brief Get a string value as a vector of bytes
*/
bool AampJsonObject::get(const std::string& name, std::vector<uint8_t>& values, const ENCODING encoding)
{
bool res = false;
std::string strValue;
if (get(name, strValue))
{
values.clear();
switch (encoding)
{
case ENCODING_STRING:
{
values.insert(values.begin(), strValue.begin(), strValue.end());
}
break;
case ENCODING_BASE64:
{
size_t decodedSize = 0;
const unsigned char *decodedResponse = base64_Decode(strValue.c_str(), &decodedSize, strValue.length());
if (decodedResponse != NULL)
{
values.insert(values.begin(), decodedResponse, decodedResponse + decodedSize);
res = true;
free((void *)decodedResponse);
}
}
break;
case ENCODING_BASE64_URL:
{
size_t decodedSize = 0;
const unsigned char *decodedResponse = aamp_Base64_URL_Decode(strValue.c_str(), &decodedSize, strValue.length());
if (decodedResponse != NULL)
{
values.insert(values.begin(), decodedResponse, decodedResponse + decodedSize);
res = true;
free((void *)decodedResponse);
}
}
break;
default:
/* Unsupported encoding format */
break;
}
}
return res;
}
/**
* @brief Print the constructed JSON to a string
*/
std::string AampJsonObject::print()
{
char *jsonString = cJSON_Print(mJsonObj);
if (NULL != jsonString)
{
std::string retStr(jsonString);
cJSON_free(jsonString);
return retStr;
}
return "";
}
/**
* @brief Print the constructed JSON to a string
*/
std::string AampJsonObject::print_UnFormatted()
{
char *jsonString = cJSON_PrintUnformatted(mJsonObj);
if (NULL != jsonString)
{
std::string retStr(jsonString);
cJSON_free(jsonString);
return retStr;
}
return "";
}
/**
* @brief Print the constructed JSON into the provided vector
*/
void AampJsonObject::print(std::vector<uint8_t>& data)
{
std::string jsonOutputStr = print();
(void)data.insert(data.begin(), jsonOutputStr.begin(), jsonOutputStr.end());
}
/**
* @brief Check whether the value is Array or not
*/
bool AampJsonObject::isArray(const std::string& name)
{
cJSON *strObj = cJSON_GetObjectItem(mJsonObj, name.c_str());
bool retVal = false;
if (strObj)
{
retVal = cJSON_IsArray(strObj);
}
return retVal;
}
/**
* @brief Check whether the value is String or not
*/
bool AampJsonObject::isString(const std::string& name)
{
cJSON *strObj = cJSON_GetObjectItem(mJsonObj, name.c_str());
bool retVal = false;
if (strObj)
{
retVal = cJSON_IsString(strObj);
}
return retVal;
}
/**
* @brief Check whether the value is Number or not
*/
bool AampJsonObject::isNumber(const std::string& name)
{
cJSON *strObj = cJSON_GetObjectItem(mJsonObj, name.c_str());
bool retVal = false;
if (strObj)
{
retVal = cJSON_IsNumber(strObj);
}
return retVal;
}
/**
* @brief Check whether the value is Object or not
*/
bool AampJsonObject::isObject(const std::string& name)
{
cJSON *strObj = cJSON_GetObjectItem(mJsonObj, name.c_str());
bool retVal = false;
if (strObj)
{
retVal = cJSON_IsObject(strObj);
}
return retVal;
}