aboutsummaryrefslogtreecommitdiffstats
path: root/libparc/parc/algol/parc_JSON.h
blob: dc8996ca55a9e5914430d8a3a679ee8b77e8389e (plain)
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
/*
 * Copyright (c) 2017 Cisco and/or its affiliates.
 * 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 parc_JSON.h
 * @ingroup inputoutput
 * @brief A complete JSON encoding and decoding library.
 *
 * # Parsing #
 * Parse a null-terminated C string containing JSON via {@link parcJSON_ParseString}.
 *
 * # Printing #
 * Print a JSON object via {@link parcJSON_ToString}.
 *
 * # Composing #
 * Compose JSON objects via {@link parcJSON_Create} and add members via {@link parcJSON_Add}.
 * Compose members as JSON Pairs consisting of a name and value.  See functions named `parcJSONPair_Create*`
 *
 */
#ifndef libparc_parc_JSON_h
#define libparc_parc_JSON_h

#include <stdbool.h>

struct parc_json;
typedef struct parc_json PARCJSON;

#include <parc/algol/parc_Buffer.h>
#include <parc/algol/parc_HashCode.h>
#include <parc/algol/parc_BufferComposer.h>
#include <parc/algol/parc_PathName.h>

#include <parc/algol/parc_List.h>
#include <parc/algol/parc_JSONPair.h>
#include <parc/algol/parc_JSONValue.h>

/**
 * Create a new JSON object.
 *
 * The JSON new object contains no members.
 *
 * @return A pointer to a `PARCJSON` instance.
 *
 * Example:
 * @code
 * {
 *     PARCJSON *json = parcJSON_Create();
 *     ...
 *     parcJSONValue_Release(&json);
 * }
 * @endcode
 *
 * @see {@link parcJSON_Add}
 */
PARCJSON *parcJSON_Create(void);

/**
 * Create a deep copy of a JSON object. Call parcJSON_Release to free the object when done with it.
 *
 * @return A pointer to a `PARCJSON` instance.
 *
 * Example:
 * @code
 * {
 *     PARCJSON *jsonSrc = parcJSON_Create();
 *     ...
 *     PARCJSON *jsonCopy = parcJSON_Copy(jsonSrc);
 *     ...
 *     parcJSONValue_Release(&jsonSrc);
 *     ...
 *     parcJSONValue_Release(&jsonCopy);
 * }
 * @endcode
 *
 */
PARCJSON *parcJSON_Copy(const PARCJSON *src);

/**
 * Increase the number of references to a `PARCJSON` instance.
 *
 * Note that a new `PARCJSON` is not created,
 * only that the given `PARCJSON` reference count is incremented.
 * Discard the reference by invoking {@link parcJSON_Release}.
 *
 * @param [in] json A pointer to the original instance.
 * @return The value of the input parameter @p instance.
 *
 * Example:
 * @code
 * {
 *     PARCJSON *x = parcJSON_Create();
 *
 *     PARCJSON *x2 = parcJSON_Acquire(x);
 *
 *     parcJSON_Release(&x);
 *     parcJSON_Release(&x2);
 * }
 * @endcode
 *
 * @see {@link parcJSON_Release}
 */
PARCJSON *parcJSON_Acquire(const PARCJSON *json);

/**
 * Determine if two `PARCJSON` instances are equal.
 *
 * Two `PARCJSON` instances are equal if, and only if,
 * they contain the equal members, in the same order.
 *
 * The following equivalence relations on non-null `PARCJSON` instances are maintained:
 *
 *   * It is reflexive: for any non-null reference value x, `parcJSON_Equals(x, x)`
 *       must return true.
 *
 *   * It is symmetric: for any non-null reference values x and y,
 *     `parcJSON_Equals(x, y)` must return true if and only if
 *        `parcJSON_Equals(y, x)` returns true.
 *
 *   * It is transitive: for any non-null reference values x, y, and z, if
 *        `parcJSON_Equals(x, y)` returns true and
 *        `parcJSON_Equals(y, z)` returns true,
 *        then  `parcJSON_Equals(x, z)` must return true.
 *
 *   * It is consistent: for any non-null reference values x and y, multiple
 *       invocations of `parcJSON_Equals(x, y)` consistently return true or
 *       consistently return false.
 *
 *   * For any non-null reference value x, `parcJSON_Equals(x, NULL)` must
 *       return false.
 *
 * @param [in] x A pointer to a `PARCJSON` instance.
 * @param [in] y A pointer to a `PARCJSON` instance.
 * @return true if the two `PARCJSON` instances are equal.
 *
 * Example:
 * @code
 * {
 *     PARCJSON *a = parcJSON_Create();
 *     PARCJSON *b = parcJSON_Create();
 *
 *     if (parcJSON_Equals(a, b)) {
 *         // true
 *     } else {
 *         // false
 *     }
 * }
 * @endcode
 */
bool parcJSON_Equals(const PARCJSON *x, const PARCJSON *y);

/**
 * Add a JSON Pair to the members of a JSON Object.
 *
 * @param [in,out] json A pointer to a `PARCJSON` instance.
 * @param [in] pair A pointer to a `PARCJSONPair` instance.
 *
 * @return The pointer to the `PARCJSON` instance.
 *
 * Example:
 * @code
 * {
 *     PARCJSON *json = parcJSON_Create();
 *
 *     PARCJSONPair *pair = parcJSONPair_CreateFromInteger("pi", 314159);
 *     parcJSON_AddPair(json, pair);
 * }
 * @endcode
 *
 * @see parcJSONPair_Create
 */
PARCJSON *parcJSON_AddPair(PARCJSON *json, PARCJSONPair *pair);

/**
 * Pretty print the given `PARCJSON` instance.
 *
 * @param [in] json The `PARCJSON` instance to be printed.
 * @param [in] indentation The amount of indentation to prefix each line of output
 *
 * Example:
 * @code
 * {
 *     PARCJSON *json = parcJSON_ParseString("{ \"string\" : \"xyzzy\" }");
 *     parcJSON_Display(json, 0);
 * }
 * @endcode
 */
void parcJSON_Display(const PARCJSON *json, int indentation);

/**
 * Get the list of members of the given `PARCJSON` instance.
 *
 * A new reference to the {@link PARCList} is not created.
 * The caller must create a new reference, if it retains a reference to the buffer.
 *
 * @param [in] json A pointer to a `PARCJSON` instance.
 * @return A pointer to a `PARCList` instance containing the members.
 *
 * Example:
 * @code
 * {
 *     PARCJSON *json = parcJSON_ParseString("{ \"string\" : \"xyzzy\" }");
 *     PARCList *members = parcJSON_GetMembers(json);
 * }
 * @endcode
 */
PARCList *parcJSON_GetMembers(const PARCJSON *json);

/**
 * Get the PARCJSONPair at the index in the given `PARCJSON` instance.
 *
 * @param [in] json A pointer to a `PARCJSON` instance.
 * @param [in] index The index value of the desired element.
 * @return A pointer to a `PARCJSONPair` instance containing or NULL if there is nothing at the specified index.
 *
 * Example:
 * @code
 * {
 *     PARCJSON *json = parcJSON_ParseString("{ \"string\" : \"xyzzy\" }");
 *     PARCJSONPair *pair = parcJSON_GetPairByIndex(json, 0);
 * }
 * @endcode
 */
PARCJSONPair *parcJSON_GetPairByIndex(const PARCJSON *json, size_t index);

/**
 * Get the PARCJSONValue at the index in the given `PARCJSON` instance.
 *
 * @param [in] json A pointer to a `PARCJSON` instance.
 * @param [in] index The index value of the desired element.
 * @return A pointer to a `PARCJSONValue` instance containing or NULL if there is nothing at the specified index.
 *
 * Example:
 * @code
 * {
 *     PARCJSON *json = parcJSON_ParseString("{ \"string\" : \"xyzzy\" }");
 *     PARCJSONValue *pair = parcJSON_GetValueByIndex(json, 0);
 * }
 * @endcode
 */
PARCJSONValue *parcJSON_GetValueByIndex(const PARCJSON *json, size_t index);

/**
 * Release a previously acquired reference to the specified instance,
 * decrementing the reference count for the instance.
 *
 * The pointer to the instance is set to NULL as a side-effect of this function.
 *
 * If the invocation causes the last reference to the instance to be released,
 * the instance is deallocated and the instance's implementation will perform
 * additional cleanup and release other privately held references.
 *
 * @param [in,out] jsonPtr A pointer to a pointer to the instance to release.
 *
 * Example:
 * @code
 * {
 *     PARCJSON *json = parcJSON_Create();
 *
 *     parcJSON_Release(&json);
 * }
 * @endcode
 */
void parcJSON_Release(PARCJSON **jsonPtr);

/**
 * Parse a null-terminated C string into a `PARCJSON` instance.
 *
 * Only 8-bit characters are parsed.
 *
 * @param [in] string A null-terminated C string containing a well-formed JSON object.
 *
 * @return A pointer to a `PARCJSON` instance with one reference, or NULL if an error occurred.
 *
 * Example:
 * @code
 * {
 *     PARCJSON *json = parcJSON_ParseString("{ \"key\" : 1, \"array\" : [1, 2, 3] }");
 *
 *     parcJSON_Release(&json);
 * }
 * @endcode
 */
PARCJSON *parcJSON_ParseString(const char *string);

/**
 * Parse a null-terminated C string into a `PARCJSON` instance.
 *
 * Only 8-bit characters are parsed.
 *
 * @param [in] buffer A pointer to a valid PARCBuffer instance.
 *
 * @return A pointer to a `PARCJSON` instance with one reference, or NULL if an error occurred.
 *
 * Example:
 * @code
 * {
 *     PARCBufer *buffer = parcBuffer_WrapCString("{ \"key\" : 1, \"array\" : [1, 2, 3] }");
 *     PARCJSON *json = parcJSON_ParseBuffer(buffer);
 *
 *     parcBuffer_Release(&buffer);
 *
 *     parcJSON_Release(&json);
 * }
 * @endcode
 */
PARCJSON *parcJSON_ParseBuffer(PARCBuffer *buffer);

/**
 * Produce a null-terminated string representation of the specified instance.
 *
 * The non-null result must be freed by the caller via {@link parcMemory_Deallocate}.
 *
 * @param [in] json A pointer to the `PARCJSON` instance.
 *
 * @return NULL Cannot allocate memory.
 * @return non-NULL A pointer to an allocated,
 *         null-terminated C string that must be deallocated via {@link parcMemory_Deallocate}.
 *
 * Example:
 * @code
 * {
 *     PARCJSON *json = parcJSON_Create();
 *
 *     char *string = parcJSON_ToString(json);
 *
 *     if (string != NULL) {
 *         printf("Hello: %s\n", string);
 *         parcMemory_Deallocate((void **)&string);
 *     } else {
 *         printf("Cannot allocate memory\n");
 *     }
 *
 *     parcJSON_Release(&json);
 * }
 * @endcode
 *
 * @see {@link parcJSONPair_BuildString}
 * @see {@link parcJSONPair_Display}
 */
char *parcJSON_ToString(const PARCJSON *json);

/**
 * Produce a null-terminated compact (minimally escaped and formated) string representation of the specified instance.
 *
 * The non-null result must be freed by the caller via {@link parcMemory_Deallocate}.
 *
 * @param [in] json A pointer to the `PARCJSON` instance.
 *
 * @return NULL Cannot allocate memory.
 * @return non-NULL A pointer to an allocated,
 *         null-terminated C string that must be deallocated via {@link parcMemory_Deallocate}.
 *
 * Example:
 * @code
 * {
 *     PARCJSON *json = parcJSON_Create();
 *
 *     char *string = parcJSON_ToCompactString(json);
 *
 *     if (string != NULL) {
 *         printf("Hello: %s\n", string);
 *         parcMemory_Deallocate((void **)&string);
 *     } else {
 *         printf("Cannot allocate memory\n");
 *     }
 *
 *     parcJSON_Release(&json);
 * }
 * @endcode
 *
 * @see {@link parcJSONPair_BuildString}
 * @see {@link parcJSONPair_Display}
 */
char *parcJSON_ToCompactString(const PARCJSON *json);

/**
 * Produce a PARCHashCode for the JSON object.
 *
 * @param [in] json A pointer to the `PARCJSON` instance.
 *
 * @return PARCHashCode The object's hash-code.
 *
 * Example:
 * @code
 * {
 *     PARCJSON *json = parcJSON_Create();
 *     ...
 *     PARCHashCode hashCode = parcJSON_HashCode(json);
 *     ....
 *     parcJSON_Release(&json);
 * }
 * @endcode
 *
 */
PARCHashCode parcJSON_HashCode(const PARCJSON *json);

/**
 * Get the {@link PARCJSONPair} with the given key name.
 *
 * @param [in] json A pointer to a `PARCJSON` instance.
 * @param [in] name A null-terminated C string containing the name of the pair to return.
 *
 * @return A pointer to the named `PARCJSONPair`.
 *
 * Example:
 * @code
 * {
 *     PARCJSON *json = parcJSON_ParseString("{ \"key\" : 1, "array" : [1, 2, 3] }");
 *
 *     PARCJSONPair *arrayPair = parcJSON_GetPairByName(json, "array");
 *
 *     parcJSON_Release(&json);
 * }
 * @endcode
 *
 * @see parcJSON_Add
 */
const PARCJSONPair *parcJSON_GetPairByName(const PARCJSON *json, const char *name);

/**
 * Get the {@link PARCJSONValue} with the given key name.
 *
 * @param [in] json A pointer to a `PARCJSON` instance.
 * @param [in] name A null-terminated C string containing the name of the pair to return.
 *
 * @return A pointer to the named `PARCJSONValue`.
 *
 * Example:
 * @code
 * {
 *     PARCJSON *json = parcJSON_ParseString("{ \"key\" : 1, "array" : [1, 2, 3] }");
 *
 *     PARCJSONValue *arrayValue = parcJSON_GetValueByName(json, "array");
 *
 *     parcJSON_Release(&json);
 * }
 * @endcode
 *
 * @see parcJSON_Add
 */
PARCJSONValue *parcJSON_GetValueByName(const PARCJSON *json, const char *name);

/**
 * Get the JSON pair named by the given '/' separated path name.
 *
 * Using a '/' separated list of JSON pair names, return the {@link PARCJSONPair} named by the path.
 * This function currently returns the Value, not the Pair specified by the `PARCPathName`
 *
 * @param [in] json A pointer to a `PARCJSON` instance.
 * @param [in] path A pointer to a null-terminated C string containing the full path of the `PARCJSONPair`.
 *
 * @return A pointer to the {@link PARCJSONValue} named by the path.
 *
 * Example:
 * @code
 * {
 *     PARCJSON *json = parcJSON_ParseString("{ \"key\" : 1, "array" : [1, 2, 3] }");
 *
 *     PARCJSONValue *key = parcJSON_GetByPath(json, "/key");
 *
 *     PARCJSONValue *array_1 = parcJSON_GetByPath(json, "/array/1");
 *
 *     parcJSON_Release(&json);
 * }
 * @endcode
 */
const PARCJSONValue *parcJSON_GetByPath(const PARCJSON *json, const char *path);

/**
 * Get the JSON pair named by the given {@link PARCPathName}.
 * This function currently returns the Value, not the Pair specified by the `PARCPathName`
 *
 * @param [in] pathNode A pointer to a {@link PARCJSONValue} instance.
 * @param [in] pathName A pointer to valid `PARCPathName` instance.
 *
 * @return A pointer to the `PARCJSONValue` named by the path.
 * Example:
 * @code
 * {
 *     PARCJSON *json = parcJSON_ParseString("{ \"key\" : 1, "array" : [1, 2, 3] }");
 *
 *     PARCPathName *keyPath = parcPathName_Create("/key");
 *     PARCPathName *array1Path = parcPathName_Create("/array/1");
 *
 *     PARCJSONValue *key = parcJSON_GetByPathName(json, keyPath);
 *
 *     PARCJSONValue *array_1 = parcJSON_GetByPathName(json, array1Path);
 *
 *     parcJSON_Release(&json);
 * }
 * @endcode
 */
const PARCJSONValue *parcJSON_GetByPathName(const PARCJSONValue *pathNode, const PARCPathName *pathName);

/**
 * Append a representation of the specified {@link PARCJSON} instance to the given {@link PARCBufferComposer}.
 *
 * @param [in] json A pointer to the `PARCJSON` instance.
 * @param [in,out] composer A `PARCBufferComposer` to append to this URI segment.
 *
 * @return NULL Cannot allocate memory.
 * @return non-NULL The given `PARCBufferComposer`.
 *
 * Example:
 * @code
 * {
 *     PARCBufferComposer *result = parcBufferComposer_Create();
 *
 *     parcJSON_BuildString(instance, result);
 *
 *     PARCBuffer *string = parcBufferComposer_FinalizeBuffer(result);
 *     printf("JSON String: %s\n", parcBuffer_ToString(string));
 *     parcBuffer_Release(&string);
 *
 *     parcBufferComposer_Release(&result);
 * }
 * @endcode
 */
PARCBufferComposer *parcJSON_BuildString(const PARCJSON *json, PARCBufferComposer *composer, bool compact);

/**
 * Create and add a JSON string pair to a PARCJSON object.
 *
 * @param [in] json A pointer to a valid `PARCJSON` instance.
 * @param [in] name A pointer to a nul-terminated C string containing the name of the pair.
 * @param [in] value A pointer to a nul-terminated C string containing the value.
 *
 * @return A pointer to the updated `PARCJSON` instance.
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
PARCJSON *parcJSON_AddString(PARCJSON *json, const char *name, const char *value);

/**
 * Create and add a JSON object pair to a PARCJSON object.
 *
 * @param [in] json A pointer to a valid `PARCJSON` instance.
 * @param [in] name A pointer to a nul-terminated C string containing the name of the pair.
 * @param [in] value A pointer to a valid `PARCJON` value.
 *
 * @return A pointer to the updated `PARCJSON` instance.
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
PARCJSON *parcJSON_AddObject(PARCJSON *json, const char *name, PARCJSON *value);

/**
 * Create and add a pair with an array for the value to a PARCJSON object.
 *
 * @param [in] json A pointer to a valid `PARCJSON` instance.
 * @param [in] name A pointer to a nul-terminated C string containing the name of the pair.
 * @param [in] array A pointer to a valid `PARCJONArray` value.
 *
 * @return A pointer to the updated `PARCJSON` instance.
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
PARCJSON *parcJSON_AddArray(PARCJSON *json, const char *name, PARCJSONArray *array);

/**
 * Create and add a pair with a PARCJSONValue for the value to a PARCJSON object.
 *
 * @param [in] json A pointer to a valid `PARCJSON` instance.
 * @param [in] name A pointer to a nul-terminated C string containing the name of the pair.
 * @param [in] value A pointer to a valid `PARCJONValue` value.
 *
 * @return A pointer to the updated `PARCJSON` instance.
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
PARCJSON *parcJSON_AddValue(PARCJSON *json, const char *name, PARCJSONValue *value);

/**
 * Create and add an integer pair to a PARCJSON object.
 *
 * @param [in] json A pointer to a valid `PARCJSON` instance.
 * @param [in] name A pointer to a nul-terminated C string containing the name of the pair.
 * @param [in] value An integer value.
 *
 * @return A pointer to the updated `PARCJSON` instance.
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
PARCJSON *parcJSON_AddInteger(PARCJSON *json, const char *name, int64_t value);

/**
 * Create and add a boolean pair to a PARCJSON object.
 *
 * @param [in] json A pointer to a valid `PARCJSON` instance.
 * @param [in] name A pointer to a nul-terminated C string containing the name of the pair.
 * @param [in] value An boolean value.
 *
 * @return A pointer to the updated `PARCJSON` instance.
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
PARCJSON *parcJSON_AddBoolean(PARCJSON *json, const char *name, bool value);

/**
 * Create and add a boolean pair to a PARCJSON object.
 *
 * @param [in] json A pointer to a valid `PARCJSON` instance.
 * @param [in] name A pointer to a nul-terminated C string containing the name of the pair.
 * @param [in] value An boolean value.
 *
 * @return A pointer to the updated `PARCJSON` instance.
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
PARCJSON *parcJSON_AddArray(PARCJSON *json, const char *name, PARCJSONArray *value);
#endif // libparc_parc_JSON_h