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 #ifndef UCX_JSON_H
37 #define UCX_JSON_H
38
39 #include "common.h"
40 #include "allocator.h"
41 #include "string.h"
42 #include "buffer.h"
43 #include "array_list.h"
44 #include "map.h"
45
46 #ifdef __cplusplus
47 extern "C" {
48 #endif
49
50
51
52
53
54 enum cx_json_token_type {
55
56
57
58 CX_JSON_NO_TOKEN,
59
60
61
62 CX_JSON_TOKEN_ERROR,
63
64
65
66 CX_JSON_TOKEN_BEGIN_ARRAY,
67
68
69
70 CX_JSON_TOKEN_BEGIN_OBJECT,
71
72
73
74 CX_JSON_TOKEN_END_ARRAY,
75
76
77
78 CX_JSON_TOKEN_END_OBJECT,
79
80
81
82 CX_JSON_TOKEN_NAME_SEPARATOR,
83
84
85
86 CX_JSON_TOKEN_VALUE_SEPARATOR,
87
88
89
90 CX_JSON_TOKEN_STRING,
91
92
93
94 CX_JSON_TOKEN_INTEGER,
95
96
97
98 CX_JSON_TOKEN_NUMBER,
99
100
101
102 CX_JSON_TOKEN_LITERAL,
103
104
105
106 CX_JSON_TOKEN_SPACE
107 };
108
109
110
111
112 enum cx_json_value_type {
113
114
115
116 CX_JSON_NOTHING,
117
118
119
120 CX_JSON_OBJECT,
121
122
123
124 CX_JSON_ARRAY,
125
126
127
128 CX_JSON_STRING,
129
130
131
132 CX_JSON_INTEGER,
133
134
135
136 CX_JSON_NUMBER,
137
138
139
140 CX_JSON_LITERAL
141 };
142
143
144
145
146 enum cx_json_literal {
147
148
149
150 CX_JSON_NULL,
151
152
153
154 CX_JSON_TRUE,
155
156
157
158 CX_JSON_FALSE
159 };
160
161
162
163
164 typedef enum cx_json_token_type CxJsonTokenType;
165
166
167
168 typedef enum cx_json_value_type CxJsonValueType;
169
170
171
172
173 typedef struct cx_json_s CxJson;
174
175
176
177
178 typedef struct cx_json_token_s CxJsonToken;
179
180
181
182
183 typedef struct cx_json_value_s CxJsonValue;
184
185
186
187
188
189 typedef CxMap* CxJsonObject;
190
191
192
193 typedef struct cx_mutstr_s CxJsonString;
194
195
196
197 typedef int64_t CxJsonInteger;
198
199
200
201 typedef double CxJsonNumber;
202
203
204
205 typedef enum cx_json_literal CxJsonLiteral;
206
207
208
209
210 struct cx_json_value_s {
211
212
213
214
215
216 const CxAllocator *allocator;
217
218
219
220
221
222 CxJsonValueType type;
223
224
225
226 union {
227
228
229
230 CX_ARRAY(CxJsonValue*, array);
231
232
233
234 CxJsonObject object;
235
236
237
238 CxJsonString string;
239
240
241
242 CxJsonInteger integer;
243
244
245
246 CxJsonNumber number;
247
248
249
250 CxJsonLiteral literal;
251 };
252 };
253
254
255
256
257
258
259 struct cx_json_token_s {
260
261
262
263 CxJsonTokenType tokentype;
264
265
266
267 bool allocated;
268
269
270
271
272
273
274 cxmutstr content;
275 };
276
277
278
279
280 struct cx_json_s {
281
282
283
284 const CxAllocator *allocator;
285
286
287
288
289 CxBuffer buffer;
290
291
292
293
294
295
296 CxJsonToken uncompleted;
297
298
299
300
301
302
303 CxJsonValue *parsed;
304
305
306
307
308
309
310 cxmutstr uncompleted_member_name;
311
312
313
314
315 CX_ARRAY(
int, states);
316
317
318
319
320 CX_ARRAY(CxJsonValue*, vbuf);
321
322
323
324
325 int states_internal[
8];
326
327
328
329
330 CxJsonValue* vbuf_internal[
8];
331 };
332
333
334
335
336 enum cx_json_status {
337
338
339
340 CX_JSON_NO_ERROR,
341
342
343
344 CX_JSON_NO_DATA,
345
346
347
348
349
350 CX_JSON_INCOMPLETE_DATA,
351
352
353
354
355
356
357
358
359 CX_JSON_OK,
360
361
362
363 CX_JSON_NULL_DATA,
364
365
366
367 CX_JSON_BUFFER_ALLOC_FAILED,
368
369
370
371 CX_JSON_VALUE_ALLOC_FAILED,
372
373
374
375 CX_JSON_FORMAT_ERROR_NUMBER,
376
377
378
379 CX_JSON_FORMAT_ERROR_UNEXPECTED_TOKEN
380 };
381
382
383
384
385 typedef enum cx_json_status CxJsonStatus;
386
387
388
389
390 struct cx_json_writer_s {
391
392
393
394 bool pretty;
395
396
397
398
399
400 uint8_t frac_max_digits;
401
402
403
404
405 bool indent_space;
406
407
408
409
410 uint8_t indent;
411
412
413
414 bool escape_slash;
415 };
416
417
418
419
420 typedef struct cx_json_writer_s CxJsonWriter;
421
422
423
424
425
426
427 cx_attr_nodiscard
428 CX_EXPORT CxJsonWriter cxJsonWriterCompact(
void);
429
430
431
432
433
434
435
436 cx_attr_nodiscard
437 CX_EXPORT CxJsonWriter cxJsonWriterPretty(bool use_spaces);
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457 cx_attr_nonnull_arg(
1,
2,
3)
458 CX_EXPORT int cxJsonWrite(
void* target,
const CxJsonValue* value,
459 cx_write_func wfunc,
const CxJsonWriter* settings);
460
461
462
463
464
465
466
467
468
469
470
471
472 cx_attr_nonnull_arg(
2)
473 CX_EXPORT cxmutstr cxJsonToString(
const CxAllocator *allocator, CxJsonValue *value);
474
475
476
477
478
479
480
481
482
483
484
485 cx_attr_nonnull_arg(
2)
486 CX_EXPORT cxmutstr cxJsonToPrettyString(
const CxAllocator *allocator, CxJsonValue *value);
487
488
489
490
491
492
493
494
495 cx_attr_nonnull_arg(
1)
496 CX_EXPORT void cxJsonInit(CxJson *json,
const CxAllocator *allocator);
497
498
499
500
501
502
503
504 cx_attr_nonnull
505 CX_EXPORT void cxJsonDestroy(CxJson *json);
506
507
508
509
510
511
512
513
514
515 cx_attr_nonnull
516 CX_EXPORT void cxJsonReset(CxJson *json);
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536 cx_attr_nonnull_arg(
1) cx_attr_access_r(
2,
3)
537 CX_EXPORT int cxJsonFilln(CxJson *json,
const char *buf,
size_t len);
538
539
540
541
542
543
544
545
546
547
548 cx_attr_nonnull
549 CX_INLINE int cx_json_fill(CxJson *json, cxstring str) {
550 return cxJsonFilln(json, str.ptr, str.length);
551 }
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570 #define cxJsonFill(json, str) cx_json_fill(json, cx_strcast(str))
571
572
573
574
575
576
577
578
579
580
581 cx_attr_nonnull_arg(
3)
582 CX_EXPORT CxJsonStatus cx_json_from_string(
const CxAllocator *allocator,
583 cxstring str, CxJsonValue **value);
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599 #define cxJsonFromString(allocator, str, value) \
600 cx_json_from_string(allocator, cx_strcast(str), value)
601
602
603
604
605
606
607
608
609
610 cx_attr_nodiscard
611 CX_EXPORT CxJsonValue* cxJsonCreateObj(
const CxAllocator* allocator);
612
613
614
615
616
617
618
619
620
621
622
623
624 cx_attr_nodiscard
625 CX_EXPORT CxJsonValue* cxJsonCreateArr(
const CxAllocator* allocator,
size_t capacity);
626
627
628
629
630
631
632
633
634
635
636 cx_attr_nodiscard
637 CX_EXPORT CxJsonValue* cxJsonCreateNumber(
const CxAllocator* allocator,
double num);
638
639
640
641
642
643
644
645
646
647
648 cx_attr_nodiscard
649 CX_EXPORT CxJsonValue* cxJsonCreateInteger(
const CxAllocator* allocator,
int64_t num);
650
651
652
653
654
655
656
657
658
659
660
661
662 cx_attr_nodiscard
663 CX_EXPORT CxJsonValue* cx_json_create_string(
const CxAllocator* allocator, cxstring str);
664
665
666
667
668
669
670
671
672
673
674 #define cxJsonCreateString(allocator, str) cx_json_create_string(allocator, cx_strcast(str))
675
676
677
678
679
680
681
682
683
684
685 cx_attr_nodiscard
686 CX_EXPORT CxJsonValue* cxJsonCreateLiteral(
const CxAllocator* allocator, CxJsonLiteral lit);
687
688
689
690
691
692
693
694
695
696
697 cx_attr_nonnull cx_attr_access_r(
2,
3)
698 CX_EXPORT int cxJsonArrAddNumbers(CxJsonValue* arr,
const double* num,
size_t count);
699
700
701
702
703
704
705
706
707
708
709 cx_attr_nonnull cx_attr_access_r(
2,
3)
710 CX_EXPORT int cxJsonArrAddIntegers(CxJsonValue* arr,
const int64_t* num,
size_t count);
711
712
713
714
715
716
717
718
719
720
721
722
723
724 cx_attr_nonnull cx_attr_access_r(
2,
3)
725 CX_EXPORT int cxJsonArrAddStrings(CxJsonValue* arr,
const char*
const* str,
size_t count);
726
727
728
729
730
731
732
733
734
735
736
737
738
739 cx_attr_nonnull cx_attr_access_r(
2,
3)
740 CX_EXPORT int cxJsonArrAddCxStrings(CxJsonValue* arr,
const cxstring* str,
size_t count);
741
742
743
744
745
746
747
748
749
750
751 cx_attr_nonnull cx_attr_access_r(
2,
3)
752 CX_EXPORT int cxJsonArrAddLiterals(CxJsonValue* arr,
const CxJsonLiteral* lit,
size_t count);
753
754
755
756
757
758
759
760
761
762
763
764
765
766 cx_attr_nonnull cx_attr_access_r(
2,
3)
767 CX_EXPORT int cxJsonArrAddValues(CxJsonValue* arr, CxJsonValue*
const* val,
size_t count);
768
769
770
771
772
773
774
775
776
777
778
779
780 cx_attr_nonnull
781 CX_EXPORT int cx_json_obj_put(CxJsonValue* obj, cxstring name, CxJsonValue* child);
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797 #define cxJsonObjPut(obj, name, child) cx_json_obj_put(obj, cx_strcast(name), child)
798
799
800
801
802
803
804
805
806
807
808
809
810 cx_attr_nonnull
811 CX_EXPORT CxJsonValue* cx_json_obj_put_obj(CxJsonValue* obj, cxstring name);
812
813
814
815
816
817
818
819
820
821
822 #define cxJsonObjPutObj(obj, name) cx_json_obj_put_obj(obj, cx_strcast(name))
823
824
825
826
827
828
829
830
831
832
833
834
835
836 cx_attr_nonnull
837 CX_EXPORT CxJsonValue* cx_json_obj_put_arr(CxJsonValue* obj, cxstring name,
size_t capacity);
838
839
840
841
842
843
844
845
846
847
848
849 #define cxJsonObjPutArr(obj, name, capacity) cx_json_obj_put_arr(obj, cx_strcast(name), capacity)
850
851
852
853
854
855
856
857
858
859
860
861
862
863 cx_attr_nonnull
864 CX_EXPORT CxJsonValue* cx_json_obj_put_number(CxJsonValue* obj, cxstring name,
double num);
865
866
867
868
869
870
871
872
873
874
875
876 #define cxJsonObjPutNumber(obj, name, num) cx_json_obj_put_number(obj, cx_strcast(name), num)
877
878
879
880
881
882
883
884
885
886
887
888
889
890 cx_attr_nonnull
891 CX_EXPORT CxJsonValue* cx_json_obj_put_integer(CxJsonValue* obj, cxstring name,
int64_t num);
892
893
894
895
896
897
898
899
900
901
902
903 #define cxJsonObjPutInteger(obj, name, num) cx_json_obj_put_integer(obj, cx_strcast(name), num)
904
905
906
907
908
909
910
911
912
913
914
915
916
917 cx_attr_nonnull
918 CX_EXPORT CxJsonValue* cx_json_obj_put_string(CxJsonValue* obj, cxstring name, cxstring str);
919
920
921
922
923
924
925
926
927
928
929
930
931
932 #define cxJsonObjPutString(obj, name, str) cx_json_obj_put_string(obj, cx_strcast(name), cx_strcast(str))
933
934
935
936
937
938
939
940
941
942
943
944
945
946 cx_attr_nonnull
947 CX_EXPORT CxJsonValue* cx_json_obj_put_literal(CxJsonValue* obj, cxstring name, CxJsonLiteral lit);
948
949
950
951
952
953
954
955
956
957
958
959 #define cxJsonObjPutLiteral(obj, name, lit) cx_json_obj_put_literal(obj, cx_strcast(name), lit)
960
961
962
963
964
965
966
967
968
969
970
971
972 CX_EXPORT void cxJsonValueFree(CxJsonValue *value);
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996 cx_attr_nonnull cx_attr_access_w(
2)
997 CX_EXPORT CxJsonStatus cxJsonNext(CxJson *json, CxJsonValue **value);
998
999
1000
1001
1002
1003
1004
1005
1006 cx_attr_nonnull
1007 CX_INLINE bool cxJsonIsObject(
const CxJsonValue *value) {
1008 return value->type ==
CX_JSON_OBJECT;
1009 }
1010
1011
1012
1013
1014
1015
1016
1017
1018 cx_attr_nonnull
1019 CX_INLINE bool cxJsonIsArray(
const CxJsonValue *value) {
1020 return value->type ==
CX_JSON_ARRAY;
1021 }
1022
1023
1024
1025
1026
1027
1028
1029
1030 cx_attr_nonnull
1031 CX_INLINE bool cxJsonIsString(
const CxJsonValue *value) {
1032 return value->type ==
CX_JSON_STRING;
1033 }
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046 cx_attr_nonnull
1047 CX_INLINE bool cxJsonIsNumber(
const CxJsonValue *value) {
1048 return value->type ==
CX_JSON_NUMBER || value->type ==
CX_JSON_INTEGER;
1049 }
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059 cx_attr_nonnull
1060 CX_INLINE bool cxJsonIsInteger(
const CxJsonValue *value) {
1061 return value->type ==
CX_JSON_INTEGER;
1062 }
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076 cx_attr_nonnull
1077 CX_INLINE bool cxJsonIsLiteral(
const CxJsonValue *value) {
1078 return value->type ==
CX_JSON_LITERAL;
1079 }
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090 cx_attr_nonnull
1091 CX_INLINE bool cxJsonIsBool(
const CxJsonValue *value) {
1092 return cxJsonIsLiteral(value) && value->literal !=
CX_JSON_NULL;
1093 }
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107 cx_attr_nonnull
1108 CX_INLINE bool cxJsonIsTrue(
const CxJsonValue *value) {
1109 return cxJsonIsLiteral(value) && value->literal ==
CX_JSON_TRUE;
1110 }
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124 cx_attr_nonnull
1125 CX_INLINE bool cxJsonIsFalse(
const CxJsonValue *value) {
1126 return cxJsonIsLiteral(value) && value->literal ==
CX_JSON_FALSE;
1127 }
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137 cx_attr_nonnull
1138 CX_INLINE bool cxJsonIsNull(
const CxJsonValue *value) {
1139 return cxJsonIsLiteral(value) && value->literal ==
CX_JSON_NULL;
1140 }
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151 cx_attr_nonnull cx_attr_returns_nonnull
1152 CX_EXPORT char *cxJsonAsString(
const CxJsonValue *value);
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163 cx_attr_nonnull
1164 CX_EXPORT cxstring cxJsonAsCxString(
const CxJsonValue *value);
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175 cx_attr_nonnull
1176 CX_EXPORT cxmutstr cxJsonAsCxMutStr(
const CxJsonValue *value);
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187 cx_attr_nonnull
1188 CX_EXPORT double cxJsonAsDouble(
const CxJsonValue *value);
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202 cx_attr_nonnull
1203 CX_EXPORT int64_t cxJsonAsInteger(
const CxJsonValue *value);
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215 cx_attr_nonnull
1216 CX_INLINE bool cxJsonAsBool(
const CxJsonValue *value) {
1217 return value->literal ==
CX_JSON_TRUE;
1218 }
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229 cx_attr_nonnull
1230 CX_INLINE size_t cxJsonArrSize(
const CxJsonValue *value) {
1231 return value->array.size;
1232 }
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248 cx_attr_nonnull cx_attr_returns_nonnull
1249 CX_EXPORT CxJsonValue *cxJsonArrGet(
const CxJsonValue *value,
size_t index);
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264 cx_attr_nonnull
1265 CX_EXPORT CxJsonValue *cxJsonArrRemove(CxJsonValue *value,
size_t index);
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278 cx_attr_nonnull cx_attr_nodiscard
1279 CX_EXPORT CxIterator cxJsonArrIter(
const CxJsonValue *value);
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290 cx_attr_nonnull
1291 CX_INLINE size_t cxJsonObjSize(
const CxJsonValue *value) {
1292 return cxCollectionSize(value->object);
1293 }
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307 cx_attr_nonnull cx_attr_nodiscard
1308 CX_EXPORT CxMapIterator cxJsonObjIter(
const CxJsonValue *value);
1309
1310
1311
1312
1313
1314
1315
1316 cx_attr_nonnull cx_attr_returns_nonnull
1317 CX_EXPORT CxJsonValue *cx_json_obj_get(
const CxJsonValue *value, cxstring name);
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333 #define cxJsonObjGet(value, name) cx_json_obj_get(value, cx_strcast(name))
1334
1335
1336
1337
1338
1339
1340
1341 cx_attr_nonnull
1342 CX_EXPORT CxJsonValue *cx_json_obj_remove(CxJsonValue *value, cxstring name);
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357 #define cxJsonObjRemove(value, name) cx_json_obj_remove(value, cx_strcast(name))
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369 CX_EXPORT int cxJsonCompare(
const CxJsonValue *json,
const CxJsonValue *other);
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385 cx_attr_nodiscard
1386 CX_EXPORT CxJsonValue* cxJsonClone(
const CxJsonValue* value,
1387 const CxAllocator* allocator);
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402 cx_attr_nodiscard
1403 CX_EXPORT CxJsonValue* cx_json_clone_func(
1404 CxJsonValue* target,
const CxJsonValue* source,
1405 const CxAllocator* allocator,
void *data);
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417 #define cxJsonCloneFunc ((cx_clone_func) cx_json_clone_func)
1418
1419 #ifdef __cplusplus
1420 }
1421 #endif
1422
1423 #endif
1424
1425