Source file json_encoding.ml
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
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
exception Unexpected of string * string
exception No_case_matched of exn list
exception Bad_array_size of int * int
exception Missing_field of string
exception Unexpected_field of string
exception Bad_schema of exn
exception Cannot_destruct of (Json_query.path * exn)
let unexpected kind expected =
let kind =
match kind with
| `O [] -> "empty object"
| `A [] -> "empty array"
| `O _ -> "object"
| `A _ -> "array"
| `Null -> "null"
| `String _ -> "string"
| `Float _ -> "number"
| `Bool _ -> "boolean"
in
Cannot_destruct ([], Unexpected (kind, expected))
type 't repr_agnostic_custom = {
write : 'rt. (module Json_repr.Repr with type value = 'rt) -> 't -> 'rt;
read : 'rf. (module Json_repr.Repr with type value = 'rf) -> 'rf -> 't;
}
type _ encoding =
| Null : unit encoding
| Empty : unit encoding
| Ignore : unit encoding
| Option : 'a encoding -> 'a option encoding
| Constant : string -> unit encoding
| Int : 'a int_encoding -> 'a encoding
| Bool : bool encoding
| String : string encoding
| Float : bounds option -> float encoding
| Array : 'a encoding -> 'a array encoding
| Seq : 'a encoding -> 'a Seq.t encoding
| Obj : 'a field -> 'a encoding
| Objs : 'a encoding * 'b encoding -> ('a * 'b) encoding
| Tup : 'a encoding -> 'a encoding
| Tups : 'a encoding * 'b encoding -> ('a * 'b) encoding
| Custom : 't repr_agnostic_custom * Json_schema.schema -> 't encoding
| Conv :
('a -> 'b) * ('b -> 'a) * 'b encoding * Json_schema.schema option
-> 'a encoding
| Describe : {
id : string;
title : string option;
description : string option;
encoding : 'a encoding;
}
-> 'a encoding
| Mu : {
id : string;
title : string option;
description : string option;
self : 'a encoding -> 'a encoding;
}
-> 'a encoding
| Union : 't case list -> 't encoding
and 'a int_encoding = {
int_name : string;
of_float : float -> 'a;
to_float : 'a -> float;
lower_bound : 'a;
upper_bound : 'a;
}
and bounds = {float_name : string; minimum : float; maximum : float}
and _ field =
| Req : {
name : string;
encoding : 'a encoding;
title : string option;
description : string option;
}
-> 'a field
| Opt : {
name : string;
encoding : 'a encoding;
title : string option;
description : string option;
}
-> 'a option field
| Dft : {
name : string;
encoding : 'a encoding;
title : string option;
description : string option;
equal : 'a -> 'a -> bool;
default : 'a;
construct_default : bool;
}
-> 'a field
and 't case =
| Case : {
encoding : 'a encoding;
title : string option;
description : string option;
proj : 't -> 'a option;
inj : 'a -> 't;
}
-> 't case
module type S = sig
type repr_value
val construct :
?include_default_fields:[`Always | `Auto | `Never] ->
't encoding ->
't ->
repr_value
val destruct : ?bson_relaxation:bool -> 't encoding -> repr_value -> 't
val custom :
('t -> repr_value) ->
(repr_value -> 't) ->
schema:Json_schema.schema ->
't encoding
end
let inc_field include_default_fields construct_default =
match include_default_fields with
| `Auto -> construct_default
| `Never -> false
| `Always -> true
module Make (Repr : Json_repr.Repr) : S with type repr_value = Repr.value =
struct
type repr_value = Repr.value
let construct ?(include_default_fields = `Auto) enc v =
let rec construct : type t. t encoding -> t -> Repr.value = function
| Null -> fun () -> Repr.repr `Null
| Empty -> fun () -> Repr.repr (`O [])
| Ignore -> fun () -> Repr.repr (`O [])
| Option t -> (
function None -> Repr.repr `Null | Some v -> construct t v)
| Constant str -> fun () -> Repr.repr (`String str)
| Int {int_name; to_float; lower_bound; upper_bound} ->
fun (i : t) ->
if i < lower_bound || i > upper_bound then
invalid_arg
("Json_encoding.construct: " ^ int_name ^ " out of range") ;
Repr.repr (`Float (to_float i))
| Bool -> fun (b : t) -> Repr.repr (`Bool b)
| String -> fun s -> Repr.repr (`String s)
| Float (Some {minimum; maximum; float_name}) ->
let err =
"Json_encoding.construct: " ^ float_name ^ " out of range"
in
fun float ->
if float < minimum || float > maximum then invalid_arg err ;
Repr.repr (`Float float)
| Float None -> fun float -> Repr.repr (`Float float)
| Describe {encoding = t} -> construct t
| Custom ({write}, _) -> fun (j : t) -> write (module Repr) j
| Conv (ffrom, _, t, _) -> fun v -> construct t (ffrom v)
| Mu {self} as enc -> construct (self enc)
| Array t ->
let w v = construct t v in
fun arr -> Repr.repr (`A (Array.to_list (Array.map w arr)))
| Seq t ->
let w v = construct t v in
fun s -> Repr.repr (`A (List.of_seq (Seq.map w s)))
| Obj (Req {name = n; encoding = t}) ->
let w v = construct t v in
fun v -> Repr.repr (`O [(n, w v)])
| Obj
(Dft {name = n; equal; encoding = t; default = d; construct_default})
->
let w v = construct t v in
let inc_default =
inc_field include_default_fields construct_default
in
fun v ->
Repr.repr
(`O (if inc_default || not (equal v d) then [(n, w v)] else []))
| Obj (Opt {name = n; encoding = t}) -> (
let w v = construct t v in
function
| None -> Repr.repr (`O []) | Some v -> Repr.repr (`O [(n, w v)]))
| Objs (o1, o2) -> (
let w1 v = construct o1 v in
let w2 v = construct o2 v in
function
| v1, v2 -> (
match (Repr.view (w1 v1), Repr.view (w2 v2)) with
| `O l1, `O l2 -> Repr.repr (`O (l1 @ l2))
| `Null, `Null | _ ->
invalid_arg
"Json_encoding.construct: consequence of bad merge_objs"))
| Tup t ->
let w v = construct t v in
fun v -> Repr.repr (`A [w v])
| Tups (o1, o2) -> (
let w1 v = construct o1 v in
let w2 v = construct o2 v in
function
| v1, v2 -> (
match (Repr.view (w1 v1), Repr.view (w2 v2)) with
| `A l1, `A l2 -> Repr.repr (`A (l1 @ l2))
| _ ->
invalid_arg
"Json_encoding.construct: consequence of bad merge_tups"))
| Union cases ->
fun v ->
let rec do_cases = function
| [] ->
invalid_arg
"Json_encoding.construct: consequence of bad union"
| Case {encoding; proj} :: rest -> (
match proj v with
| Some v -> construct encoding v
| None -> do_cases rest)
in
do_cases cases
in
construct enc v
let maybe_array_in_disguise fs =
let rec is_maybe_array_in_disguise rev_acc index = function
| [] -> Some (List.rev rev_acc)
| (s, v) :: o ->
if string_of_int index = s then
is_maybe_array_in_disguise (v :: rev_acc) (index + 1) o
else None
in
is_maybe_array_in_disguise [] 0 fs
let rec destruct :
type t. bson_relaxation:bool -> t encoding -> Repr.value -> t =
fun ~bson_relaxation enc ->
match enc with
| Null -> (
fun v ->
match Repr.view v with
| `Null -> ()
| k -> raise (unexpected k "null"))
| Empty -> (
fun v ->
match Repr.view v with
| `O [] -> ()
| `O [(f, _)] -> raise (Cannot_destruct ([], Unexpected_field f))
| k -> raise @@ unexpected k "an empty object")
| Ignore -> ( fun v -> match Repr.view v with _ -> ())
| Option t -> (
fun v ->
match Repr.view v with
| `Null -> None
| _ -> Some (destruct ~bson_relaxation t v))
| Constant str -> (
fun v ->
match Repr.view v with
| `String s when s = str -> ()
| x -> raise @@ unexpected x str)
| Int {int_name; of_float; to_float; lower_bound; upper_bound} -> (
let lower_bound = to_float lower_bound in
let upper_bound = to_float upper_bound in
fun v ->
match Repr.view v with
| `Float v ->
let rest, v = modf v in
(if rest <> 0. then
let exn =
Failure (int_name ^ " cannot have a fractional part")
in
raise (Cannot_destruct ([], exn))) ;
(if v < lower_bound || v > upper_bound then
let exn = Failure (int_name ^ " out of range") in
raise (Cannot_destruct ([], exn))) ;
of_float v
| k -> raise (unexpected k "number"))
| Bool -> (
fun v ->
match Repr.view v with
| `Bool b -> (b : t)
| k -> raise (unexpected k "boolean"))
| String -> (
fun v ->
match Repr.view v with
| `String s -> s
| k -> raise (unexpected k "string"))
| Float None -> (
fun v ->
match Repr.view v with
| `Float f -> f
| k -> raise (unexpected k "float"))
| Float (Some {minimum; maximum; float_name}) -> (
fun v ->
match Repr.view v with
| `Float f ->
if f < minimum || f > maximum then
let exn = Failure (float_name ^ " out of range") in
raise (Cannot_destruct ([], exn))
else f
| k -> raise (unexpected k "float"))
| Describe {encoding = t} -> destruct ~bson_relaxation t
| Custom ({read}, _) -> read (module Repr)
| Conv (_, fto, t, _) -> fun v -> fto (destruct ~bson_relaxation t v)
| Mu {self} as enc -> destruct ~bson_relaxation (self enc)
| Array t -> (
let array_of_cells cells =
Array.mapi
(fun i cell ->
try destruct ~bson_relaxation:false t cell
with Cannot_destruct (path, err) ->
raise (Cannot_destruct (`Index i :: path, err)))
(Array.of_list cells)
in
fun v ->
match Repr.view v with
| `O [] ->
[||]
| `O o when bson_relaxation -> (
match maybe_array_in_disguise o with
| Some cells -> array_of_cells cells
| None -> raise @@ unexpected (`O o) "array")
| `A cells -> array_of_cells cells
| k -> raise @@ unexpected k "array")
| Seq t -> (
let seq_of_cells cells =
let i = ref (-1) in
Seq.map
(fun cell ->
try
incr i ;
destruct ~bson_relaxation:false t cell
with Cannot_destruct (path, err) ->
raise (Cannot_destruct (`Index !i :: path, err)))
(List.to_seq cells)
in
fun v ->
match Repr.view v with
| `O [] ->
Seq.empty
| `O o when bson_relaxation -> (
match maybe_array_in_disguise o with
| Some cells -> seq_of_cells cells
| None -> raise @@ unexpected (`O o) "array")
| `A cells -> seq_of_cells cells
| k -> raise @@ unexpected k "array")
| Obj _ as t -> (
let d = destruct_obj t in
fun v ->
match Repr.view v with
| `O fields -> (
let r, rest, ign = d fields in
match rest with
| (field, _) :: _ when not ign -> raise @@ Unexpected_field field
| _ -> r)
| k -> raise @@ unexpected k "object")
| Objs _ as t -> (
let d = destruct_obj t in
fun v ->
match Repr.view v with
| `O fields -> (
let r, rest, ign = d fields in
match rest with
| (field, _) :: _ when not ign -> raise @@ Unexpected_field field
| _ -> r)
| k -> raise @@ unexpected k "object")
| Tup _ as t -> (
let r, i = destruct_tup 0 t in
let tup_of_cells cells =
let cells = Array.of_list cells in
let len = Array.length cells in
if i <> Array.length cells then
raise (Cannot_destruct ([], Bad_array_size (len, i)))
else r cells
in
fun v ->
match Repr.view v with
| `O o when bson_relaxation -> (
match maybe_array_in_disguise o with
| Some cells -> tup_of_cells cells
| None -> raise @@ unexpected (`O o) "array")
| `A cells -> tup_of_cells cells
| k -> raise @@ unexpected k "array")
| Tups _ as t -> (
let r, i = destruct_tup 0 t in
let tups_of_cells cells =
let cells = Array.of_list cells in
let len = Array.length cells in
if i <> Array.length cells then
raise (Cannot_destruct ([], Bad_array_size (len, i)))
else r cells
in
fun v ->
match Repr.view v with
| `O o when bson_relaxation -> (
match maybe_array_in_disguise o with
| Some cells -> tups_of_cells cells
| None -> raise @@ unexpected (`O o) "array")
| `A cells -> tups_of_cells cells
| k -> raise @@ unexpected k "array")
| Union cases ->
fun v ->
let rec do_cases errs = function
| [] ->
raise (Cannot_destruct ([], No_case_matched (List.rev errs)))
| Case {encoding; inj} :: rest -> (
try inj (destruct ~bson_relaxation encoding v)
with err -> do_cases (err :: errs) rest)
in
do_cases [] cases
and destruct_tup : type t. int -> t encoding -> (Repr.value array -> t) * int
=
fun i t ->
match t with
| Tup t ->
( (fun arr ->
try destruct ~bson_relaxation:false t arr.(i)
with Cannot_destruct (path, err) ->
raise (Cannot_destruct (`Index i :: path, err))),
succ i )
| Tups (t1, t2) ->
let r1, i = destruct_tup i t1 in
let r2, i = destruct_tup i t2 in
((fun arr -> (r1 arr, r2 arr)), i)
| Conv (_, fto, t, _) ->
let r, i = destruct_tup i t in
((fun arr -> fto (r arr)), i)
| Mu {self} as enc -> destruct_tup i (self enc)
| Describe {encoding} -> destruct_tup i encoding
| _ -> invalid_arg "Json_encoding.destruct: consequence of bad merge_tups"
and destruct_obj :
type t.
t encoding ->
(string * Repr.value) list ->
t * (string * Repr.value) list * bool =
fun t ->
let rec assoc acc n = function
| [] -> raise Not_found
| (f, v) :: rest when n = f -> (v, List.rev_append acc rest)
| oth :: rest -> assoc (oth :: acc) n rest
in
match t with
| Empty -> fun fields -> ((), fields, false)
| Ignore -> fun fields -> ((), fields, true)
| Obj (Req {name = n; encoding = t}) -> (
fun fields ->
try
let v, rest = assoc [] n fields in
(destruct ~bson_relaxation:false t v, rest, false)
with
| Not_found -> raise (Cannot_destruct ([], Missing_field n))
| Cannot_destruct (path, err) ->
raise (Cannot_destruct (`Field n :: path, err)))
| Obj (Opt {name = n; encoding = t}) -> (
fun fields ->
try
let v, rest = assoc [] n fields in
(Some (destruct ~bson_relaxation:false t v), rest, false)
with
| Not_found -> (None, fields, false)
| Cannot_destruct (path, err) ->
raise (Cannot_destruct (`Field n :: path, err)))
| Obj (Dft {name = n; encoding = t; default = d}) -> (
fun fields ->
try
let v, rest = assoc [] n fields in
(destruct ~bson_relaxation:false t v, rest, false)
with
| Not_found -> (d, fields, false)
| Cannot_destruct (path, err) ->
raise (Cannot_destruct (`Field n :: path, err)))
| Objs (o1, o2) ->
let d1 = destruct_obj o1 in
let d2 = destruct_obj o2 in
fun fields ->
let r1, rest, ign1 = d1 fields in
let r2, rest, ign2 = d2 rest in
((r1, r2), rest, ign1 || ign2)
| Conv (_, fto, t, _) ->
let d = destruct_obj t in
fun fields ->
let r, rest, ign = d fields in
(fto r, rest, ign)
| Mu {self} as enc -> destruct_obj (self enc)
| Describe {encoding} -> destruct_obj encoding
| Union cases ->
fun fields ->
let rec do_cases errs = function
| [] ->
raise (Cannot_destruct ([], No_case_matched (List.rev errs)))
| Case {encoding; inj} :: rest -> (
try
let r, rest, ign = destruct_obj encoding fields in
(inj r, rest, ign)
with err -> do_cases (err :: errs) rest)
in
do_cases [] cases
| _ -> invalid_arg "Json_encoding.destruct: consequence of bad merge_objs"
let destruct ?(bson_relaxation = false) e v = destruct ~bson_relaxation e v
let custom write read ~schema =
let read : type tf. (module Json_repr.Repr with type value = tf) -> tf -> 't
=
fun (module Repr_f) repr ->
read (Json_repr.convert (module Repr_f) (module Repr) repr)
in
let write :
type tf. (module Json_repr.Repr with type value = tf) -> 't -> tf =
fun (module Repr_f) v ->
Json_repr.convert (module Repr) (module Repr_f) (write v)
in
Custom ({read; write}, schema)
end
module Ezjsonm_encoding = Make (Json_repr.Ezjsonm)
let patch_description ?title ?description (elt : Json_schema.element) =
match (title, description) with
| None, None -> elt
| Some _, None -> {elt with title}
| None, Some _ -> {elt with description}
| Some _, Some _ -> {elt with title; description}
let schema ?definitions_path encoding =
let open Json_schema in
let sch = ref any in
let prod l1 l2 =
List.concat_map
(fun (l1, b1, e1) ->
List_map.map_pure
(fun (l2, b2, e2) ->
( l1 @ l2,
b1 || b2,
match (e1, e2) with Some e, _ | _, Some e -> Some e | _ -> None ))
l2)
l1
in
let rec object_schema :
type t.
t encoding ->
((string * element * bool * Json_repr.any option) list
* bool
* element option)
list = function
| Conv (_, _, o, None) -> object_schema o
| Empty -> [([], false, None)]
| Ignore -> [([], true, None)]
| Obj (Req {name = n; encoding = t; title; description}) ->
[
( [(n, patch_description ?title ?description (schema t), true, None)],
false,
None );
]
| Obj (Opt {name = n; encoding = t; title; description}) ->
[
( [(n, patch_description ?title ?description (schema t), false, None)],
false,
None );
]
| Obj (Dft {name = n; encoding = t; title; description; default = d}) ->
let d =
Json_repr.repr_to_any
(module Json_repr.Ezjsonm)
(Ezjsonm_encoding.construct t d)
in
[
( [
( n,
patch_description ?title ?description (schema t),
false,
Some d );
],
false,
None );
]
| Objs (o1, o2) -> prod (object_schema o1) (object_schema o2)
| Union [] -> invalid_arg "Json_encoding.schema: empty union in object"
| Union cases ->
List.concat_map
(fun (Case {encoding = o; title; description}) ->
let elt = patch_description ?title ?description (schema o) in
match object_schema o with
| [(l, b, _)] -> [(l, b, Some elt)]
| l -> l)
cases
| Mu {self} as enc -> object_schema (self enc)
| Describe {title; description; encoding} -> (
let elt = patch_description ?title ?description (schema encoding) in
match object_schema encoding with
| [(l, b, _)] -> [(l, b, Some elt)]
| l -> l)
| Conv (_, _, _, Some _) | _ ->
invalid_arg "Json_encoding.schema: consequence of bad merge_objs"
and array_schema : type t. t encoding -> element list = function
| Conv (_, _, o, None) -> array_schema o
| Tup t -> [schema t]
| Tups (t1, t2) -> array_schema t1 @ array_schema t2
| Mu {self} as enc -> array_schema (self enc)
| Describe {encoding = t} -> array_schema t
| Conv (_, _, _, Some _) | _ ->
invalid_arg "Json_encoding.schema: consequence of bad merge_tups"
and schema : type t. t encoding -> element = function
| Null -> element Null
| Empty -> element (Object {object_specs with additional_properties = None})
| Ignore -> element Any
| Option t -> element (Combine (One_of, [schema t; element Null]))
| Int {to_float; lower_bound; upper_bound} ->
let minimum = Some (to_float lower_bound, `Inclusive) in
let maximum = Some (to_float upper_bound, `Inclusive) in
element (Integer {multiple_of = None; minimum; maximum})
| Bool -> element Boolean
| Constant str ->
{
(element (String string_specs)) with
enum = Some [Json_repr.to_any (`String str)];
}
| String -> element (String string_specs)
| Float (Some {minimum; maximum}) ->
element
(Number
{
multiple_of = None;
minimum = Some (minimum, `Inclusive);
maximum = Some (maximum, `Inclusive);
})
| Float None -> element (Number numeric_specs)
| Describe {id = name; title; description; encoding} ->
let schema = patch_description ?title ?description (schema encoding) in
let s, def = add_definition ?definitions_path name schema !sch in
sch := fst (merge_definitions (!sch, s)) ;
def
| Custom (_, s) ->
sch := fst (merge_definitions (!sch, s)) ;
root s
| Conv (_, _, _, Some s) ->
sch := fst (merge_definitions (!sch, s)) ;
root s
| Conv (_, _, t, None) -> schema t
| Mu {id = name; title; description; self = f} ->
let fake_schema =
if definition_exists ?definitions_path name !sch then
update (definition_ref ?definitions_path name) !sch
else
let sch, elt =
add_definition ?definitions_path name (element Dummy) !sch
in
update elt sch
in
let fake_self =
Custom
( {write = (fun _ _ -> assert false); read = (fun _ -> assert false)},
fake_schema )
in
let root =
patch_description ?title ?description (schema (f fake_self))
in
let nsch, def = add_definition ?definitions_path name root !sch in
sch := nsch ;
def
| Array t -> element (Monomorphic_array (schema t, array_specs))
| Seq t -> element (Monomorphic_array (schema t, array_specs))
| Objs _ as o -> (
match object_schema o with
| [(properties, ext, elt)] -> (
let additional_properties =
if ext then Some (element Any) else None
in
match elt with
| None ->
element
(Object {object_specs with properties; additional_properties})
| Some elt ->
{
(element
(Object
{object_specs with properties; additional_properties}))
with
title = elt.title;
description = elt.description;
})
| more ->
let elements =
List_map.map_pure
(fun (properties, ext, elt) ->
let additional_properties =
if ext then Some (element Any) else None
in
match elt with
| None ->
element
(Object
{object_specs with properties; additional_properties})
| Some elt ->
{
(element
(Object
{
object_specs with
properties;
additional_properties;
}))
with
title = elt.title;
description = elt.description;
})
more
in
element (Combine (One_of, elements)))
| Obj _ as o -> (
match object_schema o with
| [(properties, ext, elt)] -> (
let additional_properties =
if ext then Some (element Any) else None
in
match elt with
| None ->
element
(Object {object_specs with properties; additional_properties})
| Some elt ->
{
(element
(Object
{object_specs with properties; additional_properties}))
with
title = elt.title;
description = elt.description;
})
| more ->
let elements =
List_map.map_pure
(fun (properties, ext, elt) ->
let additional_properties =
if ext then Some (element Any) else None
in
match elt with
| None ->
element
(Object
{object_specs with properties; additional_properties})
| Some elt ->
{
(element
(Object
{
object_specs with
properties;
additional_properties;
}))
with
title = elt.title;
description = elt.description;
})
more
in
element (Combine (One_of, elements)))
| Tup _ as t -> element (Array (array_schema t, array_specs))
| Tups _ as t -> element (Array (array_schema t, array_specs))
| Union cases ->
let elements =
List_map.map_pure
(fun (Case {encoding; title; description}) ->
patch_description ?title ?description (schema encoding))
cases
in
element (Combine (One_of, elements))
and schema_specialization_first_pass : type t. t encoding -> element =
fun encoding ->
match encoding with
| Describe {title; description; encoding; _} ->
let schema = patch_description ?title ?description (schema encoding) in
schema
| _ -> schema encoding
in
let schema = schema_specialization_first_pass encoding in
update schema !sch
let req ?title ?description n t =
Req {name = n; encoding = t; title; description}
let opt ?title ?description n t =
Opt {name = n; encoding = t; title; description}
let dft ?title ?description ?(equal = ( = )) ?(construct = false) n t d =
Dft
{
name = n;
encoding = t;
title;
description;
equal;
default = d;
construct_default = construct;
}
let mu name ?title ?description self =
let mem = ref None in
let self e =
match !mem with
| Some (e_param, e_result) when e_param == e -> e_result
| _ ->
let e_result = self e in
mem := Some (e, e_result) ;
e_result
in
Mu {id = name; title; description; self}
let null = Null
let int =
Int
{
int_name = "int";
of_float = int_of_float;
to_float = float_of_int;
lower_bound = -(1 lsl 30);
upper_bound = (1 lsl 30) - 1;
}
let ranged_int ~minimum:lower_bound ~maximum:upper_bound name =
if
Sys.word_size = 64
&& (lower_bound < -(1 lsl 30) || upper_bound > (1 lsl 30) - 1)
then
invalid_arg "Json_encoding.ranged_int: bounds out of portable int31 range" ;
Int
{
int_name = name;
of_float = int_of_float;
to_float = float_of_int;
lower_bound;
upper_bound;
}
let int53 =
Int
{
int_name = "int53";
of_float = Int64.of_float;
to_float = Int64.to_float;
lower_bound = Int64.neg (Int64.shift_left 1L 53);
upper_bound = Int64.shift_left 1L 53;
}
let ranged_int53 ~minimum:lower_bound ~maximum:upper_bound name =
if
lower_bound < Int64.neg (Int64.shift_left 1L 53)
|| upper_bound > Int64.shift_left 1L 53
then
invalid_arg
"Json_encoding.ranged_int53: bounds out of JSON-representable integers" ;
Int
{
int_name = name;
of_float = Int64.of_float;
to_float = Int64.to_float;
lower_bound;
upper_bound;
}
let int32 =
Int
{
int_name = "int32";
of_float = Int32.of_float;
to_float = Int32.to_float;
lower_bound = Int32.min_int;
upper_bound = Int32.max_int;
}
let ranged_int32 ~minimum:lower_bound ~maximum:upper_bound name =
Int
{
int_name = name;
of_float = Int32.of_float;
to_float = Int32.to_float;
lower_bound;
upper_bound;
}
let ranged_float ~minimum ~maximum float_name =
Float (Some {minimum; maximum; float_name})
let float = Float None
let string = String
let conv ffrom fto ?schema t = Conv (ffrom, fto, t, schema)
let bytes = Conv (Bytes.to_string, Bytes.of_string, string, None)
let bool = Bool
let array t = Array t
let seq t = Seq t
let obj1 f1 = Obj f1
let obj2 f1 f2 = Objs (Obj f1, Obj f2)
let obj3 f1 f2 f3 =
conv
(fun (a, b, c) -> (a, (b, c)))
(fun (a, (b, c)) -> (a, b, c))
(Objs (Obj f1, Objs (Obj f2, Obj f3)))
let obj4 f1 f2 f3 f4 =
conv
(fun (a, b, c, d) -> (a, (b, (c, d))))
(fun (a, (b, (c, d))) -> (a, b, c, d))
(Objs (Obj f1, Objs (Obj f2, Objs (Obj f3, Obj f4))))
let obj5 f1 f2 f3 f4 f5 =
conv
(fun (a, b, c, d, e) -> (a, (b, (c, (d, e)))))
(fun (a, (b, (c, (d, e)))) -> (a, b, c, d, e))
(Objs (Obj f1, Objs (Obj f2, Objs (Obj f3, Objs (Obj f4, Obj f5)))))
let obj6 f1 f2 f3 f4 f5 f6 =
conv
(fun (a, b, c, d, e, f) -> (a, (b, (c, (d, (e, f))))))
(fun (a, (b, (c, (d, (e, f))))) -> (a, b, c, d, e, f))
(Objs
( Obj f1,
Objs (Obj f2, Objs (Obj f3, Objs (Obj f4, Objs (Obj f5, Obj f6)))) ))
let obj7 f1 f2 f3 f4 f5 f6 f7 =
conv
(fun (a, b, c, d, e, f, g) -> (a, (b, (c, (d, (e, (f, g)))))))
(fun (a, (b, (c, (d, (e, (f, g)))))) -> (a, b, c, d, e, f, g))
(let rest = Objs (Obj f6, Obj f7) in
Objs
(Obj f1, Objs (Obj f2, Objs (Obj f3, Objs (Obj f4, Objs (Obj f5, rest))))))
let obj8 f1 f2 f3 f4 f5 f6 f7 f8 =
conv
(fun (a, b, c, d, e, f, g, h) -> (a, (b, (c, (d, (e, (f, (g, h))))))))
(fun (a, (b, (c, (d, (e, (f, (g, h))))))) -> (a, b, c, d, e, f, g, h))
(let rest = Objs (Obj f6, Objs (Obj f7, Obj f8)) in
Objs
(Obj f1, Objs (Obj f2, Objs (Obj f3, Objs (Obj f4, Objs (Obj f5, rest))))))
let obj9 f1 f2 f3 f4 f5 f6 f7 f8 f9 =
conv
(fun (a, b, c, d, e, f, g, h, i) ->
(a, (b, (c, (d, (e, (f, (g, (h, i)))))))))
(fun (a, (b, (c, (d, (e, (f, (g, (h, i)))))))) ->
(a, b, c, d, e, f, g, h, i))
(let rest = Objs (Obj f6, Objs (Obj f7, Objs (Obj f8, Obj f9))) in
Objs
(Obj f1, Objs (Obj f2, Objs (Obj f3, Objs (Obj f4, Objs (Obj f5, rest))))))
let obj10 f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 =
conv
(fun (a, b, c, d, e, f, g, h, i, j) ->
(a, (b, (c, (d, (e, (f, (g, (h, (i, j))))))))))
(fun (a, (b, (c, (d, (e, (f, (g, (h, (i, j))))))))) ->
(a, b, c, d, e, f, g, h, i, j))
(let rest =
Objs (Obj f6, Objs (Obj f7, Objs (Obj f8, Objs (Obj f9, Obj f10))))
in
Objs
(Obj f1, Objs (Obj f2, Objs (Obj f3, Objs (Obj f4, Objs (Obj f5, rest))))))
let tup1 f1 = Tup f1
let tup2 f1 f2 = Tups (Tup f1, Tup f2)
let tup3 f1 f2 f3 =
conv
(fun (a, b, c) -> (a, (b, c)))
(fun (a, (b, c)) -> (a, b, c))
(Tups (Tup f1, Tups (Tup f2, Tup f3)))
let tup4 f1 f2 f3 f4 =
conv
(fun (a, b, c, d) -> (a, (b, (c, d))))
(fun (a, (b, (c, d))) -> (a, b, c, d))
(Tups (Tup f1, Tups (Tup f2, Tups (Tup f3, Tup f4))))
let tup5 f1 f2 f3 f4 f5 =
conv
(fun (a, b, c, d, e) -> (a, (b, (c, (d, e)))))
(fun (a, (b, (c, (d, e)))) -> (a, b, c, d, e))
(Tups (Tup f1, Tups (Tup f2, Tups (Tup f3, Tups (Tup f4, Tup f5)))))
let tup6 f1 f2 f3 f4 f5 f6 =
conv
(fun (a, b, c, d, e, f) -> (a, (b, (c, (d, (e, f))))))
(fun (a, (b, (c, (d, (e, f))))) -> (a, b, c, d, e, f))
(Tups
( Tup f1,
Tups (Tup f2, Tups (Tup f3, Tups (Tup f4, Tups (Tup f5, Tup f6)))) ))
let tup7 f1 f2 f3 f4 f5 f6 f7 =
conv
(fun (a, b, c, d, e, f, g) -> (a, (b, (c, (d, (e, (f, g)))))))
(fun (a, (b, (c, (d, (e, (f, g)))))) -> (a, b, c, d, e, f, g))
(let rest = Tups (Tup f6, Tup f7) in
Tups
(Tup f1, Tups (Tup f2, Tups (Tup f3, Tups (Tup f4, Tups (Tup f5, rest))))))
let tup8 f1 f2 f3 f4 f5 f6 f7 f8 =
conv
(fun (a, b, c, d, e, f, g, h) -> (a, (b, (c, (d, (e, (f, (g, h))))))))
(fun (a, (b, (c, (d, (e, (f, (g, h))))))) -> (a, b, c, d, e, f, g, h))
(let rest = Tups (Tup f6, Tups (Tup f7, Tup f8)) in
Tups
(Tup f1, Tups (Tup f2, Tups (Tup f3, Tups (Tup f4, Tups (Tup f5, rest))))))
let tup9 f1 f2 f3 f4 f5 f6 f7 f8 f9 =
conv
(fun (a, b, c, d, e, f, g, h, i) ->
(a, (b, (c, (d, (e, (f, (g, (h, i)))))))))
(fun (a, (b, (c, (d, (e, (f, (g, (h, i)))))))) ->
(a, b, c, d, e, f, g, h, i))
(let rest = Tups (Tup f6, Tups (Tup f7, Tups (Tup f8, Tup f9))) in
Tups
(Tup f1, Tups (Tup f2, Tups (Tup f3, Tups (Tup f4, Tups (Tup f5, rest))))))
let tup10 f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 =
conv
(fun (a, b, c, d, e, f, g, h, i, j) ->
(a, (b, (c, (d, (e, (f, (g, (h, (i, j))))))))))
(fun (a, (b, (c, (d, (e, (f, (g, (h, (i, j))))))))) ->
(a, b, c, d, e, f, g, h, i, j))
(let rest =
Tups (Tup f6, Tups (Tup f7, Tups (Tup f8, Tups (Tup f9, Tup f10))))
in
Tups
(Tup f1, Tups (Tup f2, Tups (Tup f3, Tups (Tup f4, Tups (Tup f5, rest))))))
let repr_agnostic_custom {write; read} ~schema = Custom ({write; read}, schema)
let constant s = Constant s
let string_enum cases =
let schema =
let specs = Json_schema.string_specs in
let enum =
List_map.map_pure
(fun (s, _) -> Json_repr.(repr_to_any (module Ezjsonm)) (`String s))
cases
in
Json_schema.(update {(element (String specs)) with enum = Some enum} any)
in
let len = List.length cases in
let mcases = Hashtbl.create len and rcases = Hashtbl.create len in
let cases_str =
match cases with
| [] -> ""
| c :: cs ->
let b = Buffer.create 128 in
Buffer.add_char b '\'' ;
Buffer.add_string b (fst c) ;
Buffer.add_char b '\'' ;
List.iter
(fun c ->
Buffer.add_char b ' ' ;
Buffer.add_char b '\'' ;
Buffer.add_string b (fst c) ;
Buffer.add_char b '\'')
cs ;
Buffer.contents b
in
List.iter
(fun (s, c) ->
if Hashtbl.mem mcases s then
invalid_arg "Json_encoding.string_enum: duplicate case" ;
Hashtbl.add mcases s c ;
Hashtbl.add rcases c s)
cases ;
conv
(fun v ->
try Hashtbl.find rcases v
with Not_found ->
invalid_arg
(Format.sprintf
"Json_encoding.construct: consequence of non exhaustive \
Json_encoding.string_enum. Strings are: %s"
cases_str))
(fun s ->
try Hashtbl.find mcases s
with Not_found ->
let rec orpat ppf = function
| [] -> assert false
| [(last, _)] -> Format.fprintf ppf "%S" last
| [(prev, _); (last, _)] -> Format.fprintf ppf "%S or %S" prev last
| (prev, _) :: rem -> Format.fprintf ppf "%S , %a" prev orpat rem
in
let unexpected = Format.asprintf "string value %S" s in
let expected = Format.asprintf "%a" orpat cases in
raise (Cannot_destruct ([], Unexpected (unexpected, expected))))
~schema
string
let def id ?title ?description encoding =
Describe {id; title; description; encoding}
let assoc :
type t. ?definitions_path:string -> t encoding -> (string * t) list encoding
=
fun ?definitions_path t ->
Ezjsonm_encoding.custom
(fun l ->
`O
(List_map.map_pure
(fun (n, v) -> (n, Ezjsonm_encoding.construct t v))
l))
(fun v ->
match v with
| `O l ->
let destruct n t v =
try Ezjsonm_encoding.destruct t v
with Cannot_destruct (p, exn) ->
raise (Cannot_destruct (`Field n :: p, exn))
in
List_map.map_pure (fun (n, v) -> (n, destruct n t v)) l
| #Json_repr.ezjsonm as k -> raise (unexpected k "asssociative object"))
~schema:
(let s = schema ?definitions_path t in
Json_schema.(
update
(element
(Object {object_specs with additional_properties = Some (root s)}))
s))
let rec is_nullable : type t. t encoding -> bool = function
| Constant _ -> false
| Int _ -> false
| Float _ -> false
| Array _ -> false
| Seq _ -> false
| Empty -> false
| String -> false
| Bool -> false
| Obj _ -> false
| Tup _ -> false
| Objs _ -> false
| Tups _ -> false
| Null -> true
| Ignore -> true
| Option _ -> true
| Conv (_, _, t, _) -> is_nullable t
| Union cases ->
List.exists (fun (Case {encoding = t}) -> is_nullable t) cases
| Describe {encoding = t} -> is_nullable t
| Mu {self} as enc -> is_nullable (self enc)
| Custom (_, sch) -> Json_schema.is_nullable sch
let option : type t. t encoding -> t option encoding =
fun t ->
if is_nullable t then
invalid_arg "Json_encoding.option: cannot nest nullable encodings" ;
Option t
let any_value =
let read repr v = Json_repr.repr_to_any repr v in
let write repr v = Json_repr.any_to_repr repr v in
Custom ({read; write}, Json_schema.any)
let any_ezjson_value =
let read repr v = Json_repr.convert repr (module Json_repr.Ezjsonm) v in
let write repr v = Json_repr.convert (module Json_repr.Ezjsonm) repr v in
Custom ({read; write}, Json_schema.any)
let any_document =
let read :
type tt.
(module Json_repr.Repr with type value = tt) -> tt -> Json_repr.any =
fun (module Repr) v ->
match Repr.view v with
| `A _ | `O _ -> Json_repr.repr_to_any (module Repr) v
| k -> raise @@ unexpected k "array or object"
in
let write repr v = Json_repr.any_to_repr repr v in
Custom ({read; write}, Json_schema.any)
let any_schema =
Ezjsonm_encoding.custom
Json_schema.to_json
(fun j ->
try Json_schema.of_json j
with err -> raise (Cannot_destruct ([], Bad_schema err)))
~schema:Json_schema.self
let merge_tups t1 t2 =
let rec is_tup : type t. t encoding -> bool = function
| Tup _ -> true
| Tups _ -> true
| Conv (_, _, t, None) -> is_tup t
| Mu {self} as enc -> is_tup (self enc)
| Describe {encoding = t} -> is_tup t
| _ -> false
in
if is_tup t1 && is_tup t2 then Tups (t1, t2)
else invalid_arg "Json_encoding.merge_tups"
let list t = Conv (Array.of_list, Array.to_list, Array t, None)
let merge_objs o1 o2 =
let rec is_obj : type t. t encoding -> bool = function
| Obj _ -> true
| Objs _ -> true
| Conv (_, _, t, None) -> is_obj t
| Empty -> true
| Ignore -> true
| Union cases -> List.for_all (fun (Case {encoding = o}) -> is_obj o) cases
| Mu {self} as enc -> is_obj (self enc)
| Describe {encoding = t} -> is_obj t
| _ -> false
in
if is_obj o1 && is_obj o2 then Objs (o1, o2)
else invalid_arg "Json_encoding.merge_objs"
let empty = Empty
let unit = Ignore
let case ?title ?description encoding proj inj =
Case {encoding; proj; inj; title; description}
let union = function
| [] -> invalid_arg "Json_encoding.union"
| cases ->
Union cases
let rec print_error ?print_unknown ppf = function
| Cannot_destruct ([], exn) -> print_error ?print_unknown ppf exn
| Cannot_destruct (path, Unexpected (unex, ex)) ->
Format.fprintf
ppf
"At %a, unexpected %s instead of %s"
(Json_query.print_path_as_json_path ~wildcards:true)
path
unex
ex
| Cannot_destruct (path, No_case_matched errs) ->
Format.fprintf
ppf
"@[<v 2>At %a, no case matched:@,%a@]"
(Json_query.print_path_as_json_path ~wildcards:true)
path
(Format.pp_print_list (print_error ?print_unknown))
errs
| Cannot_destruct (path, Bad_array_size (unex, ex)) ->
Format.fprintf
ppf
"At %a, unexpected array of size %d instead of %d"
(Json_query.print_path_as_json_path ~wildcards:true)
path
unex
ex
| Cannot_destruct (path, Missing_field n) ->
Format.fprintf
ppf
"At %a, missing object field %s"
(Json_query.print_path_as_json_path ~wildcards:true)
path
n
| Cannot_destruct (path, Unexpected_field n) ->
Format.fprintf
ppf
"At %a, unexpected object field %s"
(Json_query.print_path_as_json_path ~wildcards:true)
path
n
| Cannot_destruct (path, Bad_schema exn) ->
Format.fprintf
ppf
"@[<v 2>At %a, bad custom schema:@,%a@]"
(Json_query.print_path_as_json_path ~wildcards:true)
path
(print_error ?print_unknown)
exn
| Unexpected (unex, ex) ->
Format.fprintf ppf "Unexpected %s instead of %s" unex ex
| No_case_matched errs ->
Format.fprintf
ppf
"@[<v 2>No case matched:@,%a@]"
(Format.pp_print_list (print_error ?print_unknown))
errs
| Bad_array_size (unex, ex) ->
Format.fprintf ppf "Unexpected array of size %d instead of %d" unex ex
| Missing_field n -> Format.fprintf ppf "Missing object field %s" n
| Unexpected_field n -> Format.fprintf ppf "Unexpected object field %s" n
| Bad_schema exn ->
Format.fprintf
ppf
"@[<v 2>bad custom schema:@,%a@]"
(print_error ?print_unknown)
exn
| Cannot_destruct (path, exn) ->
Format.fprintf
ppf
"@[<v 2>At %a:@,%a@]"
(Json_query.print_path_as_json_path ~wildcards:true)
path
(print_error ?print_unknown)
exn
| exn -> Json_schema.print_error ?print_unknown ppf exn
include Ezjsonm_encoding
type jsonm_lexeme =
[ `Null
| `Bool of bool
| `String of string
| `Float of float
| `Name of string
| `As
| `Ae
| `Os
| `Oe ]
module JsonmLexemeSeq = struct
let ( ++ ) v s () = Seq.Cons (v, s)
let rec ( @ ) (s1 : 'a Seq.t) (s2 : 'a Seq.t) : 'a Seq.t =
fun () ->
match s1 () with
| Seq.Nil -> s2 ()
| Seq.Cons (v, s1) -> Seq.Cons (v, s1 @ s2)
let ( +< ) = ( ++ )
let ( +@ ) = ( @ )
let ( +> ) s v = s @ Seq.return v
let null = Seq.return `Null
let empty_obj =
let open Seq in
fun () -> Cons (`Os, fun () -> Cons (`Oe, empty))
let empty_arr =
let open Seq in
fun () -> Cons (`As, fun () -> Cons (`Ae, empty))
let rec jsonm_lexeme_seq_of_ezjson ezj =
match ezj with
| `O [] -> empty_obj
| `O kvs -> `Os +< jsonm_lexeme_seq_of_ezjson_kvs kvs +> `Oe
| `A [] -> empty_arr
| `A vs -> `As +< jsonm_lexeme_seq_of_ezjson_vs vs +> `Ae
| `Bool b -> Seq.return (`Bool b)
| `Float f -> Seq.return (`Float f)
| `String s -> Seq.return (`String s)
| `Null -> null
and jsonm_lexeme_seq_of_ezjson_kvs kvs =
Seq.flat_map
(fun (k, v) -> `Name k ++ jsonm_lexeme_seq_of_ezjson v)
(List.to_seq kvs)
and jsonm_lexeme_seq_of_ezjson_vs vs =
Seq.flat_map (fun v -> jsonm_lexeme_seq_of_ezjson v) (List.to_seq vs)
let construct_seq ?(include_default_fields = `Auto) enc v =
let rec construct : type t. t encoding -> t -> jsonm_lexeme Seq.t = function
| Null -> fun (() : t) -> null
| Empty -> fun () -> empty_obj
| Ignore -> fun () -> empty_obj
| Option t -> (
function None -> null | Some v -> (construct [@ocaml.tailcall]) t v)
| Constant str -> fun () -> Seq.return (`String str)
| Int {int_name; to_float; lower_bound; upper_bound} ->
fun (i : t) ->
if i < lower_bound || i > upper_bound then
invalid_arg
("Json_encoding.construct_seq: " ^ int_name ^ " out of range") ;
Seq.return (`Float (to_float i))
| Bool -> fun (b : t) -> Seq.return (`Bool b)
| String -> fun s -> Seq.return (`String s)
| Float (Some {minimum; maximum; float_name}) ->
fun float ->
if float < minimum || float > maximum then
invalid_arg
("Json_encoding.construct_seq: " ^ float_name ^ " out of range") ;
Seq.return (`Float float)
| Float None -> fun float -> Seq.return (`Float float)
| Describe {encoding = t} -> fun v -> (construct [@ocaml.tailcall]) t v
| Custom ({write}, _) ->
fun v ->
let ezjson = write (module Json_repr.Ezjsonm) v in
jsonm_lexeme_seq_of_ezjson ezjson
| Conv (ffrom, _, t, _) ->
fun v -> (construct [@ocaml.tailcall]) t (ffrom v)
| Mu {self} as enc -> fun v -> (construct [@ocaml.tailcall]) (self enc) v
| Array t -> (
function [||] -> empty_arr | vs -> `As +< construct_arr t vs +> `Ae)
| Seq t -> fun s -> `As +< construct_seq_ t s +> `Ae
| Obj (Req {name = n; encoding = t}) ->
fun v -> `Os +< construct_named n t v +> `Oe
| Obj
(Dft {name = n; equal; encoding = t; default = d; construct_default})
->
fun v ->
let inc_default =
inc_field include_default_fields construct_default
in
if inc_default || not (equal v d) then
`Os +< construct_named n t v +> `Oe
else empty_obj
| Obj (Opt {name = n; encoding = t}) -> (
function
| None -> empty_obj | Some v -> `Os +< construct_named n t v +> `Oe)
| Objs (o1, o2) ->
fun (v1, v2) ->
`Os +< construct_obj o1 v1 +@ construct_obj o2 v2 +> `Oe
| Tup t -> fun v -> `As +< construct t v +> `Ae
| Tups (o1, o2) ->
fun (v1, v2) ->
`As +< construct_tup o1 v1 +@ construct_tup o2 v2 +> `Ae
| Union cases ->
fun v ->
let rec do_cases = function
| [] ->
invalid_arg
"Json_encoding.construct_seq: consequence of bad union"
| Case {encoding; proj} :: rest -> (
match proj v with
| Some v -> (construct [@ocaml.tailcall]) encoding v
| None -> do_cases rest)
in
do_cases cases
and construct_arr : type t. t encoding -> t array -> jsonm_lexeme Seq.t =
fun t vs ->
Seq.flat_map (fun v -> construct t v) (Array.to_seq vs)
and construct_seq_ : type t. t encoding -> t Seq.t -> jsonm_lexeme Seq.t =
fun t vs -> Seq.flat_map (fun v -> construct t v) vs
and construct_named :
type t. string -> t encoding -> t -> jsonm_lexeme Seq.t =
fun n t v -> `Name n ++ construct t v
and construct_obj
:
type t. t encoding -> t -> jsonm_lexeme Seq.t = function
| Obj (Req {name = n; encoding = t}) -> fun v -> construct_named n t v
| Obj
(Dft {name = n; equal; encoding = t; default = d; construct_default})
->
fun v ->
let inc_default =
inc_field include_default_fields construct_default
in
if inc_default || not (equal v d) then construct_named n t v
else Seq.empty
| Obj (Opt {name = n; encoding = t}) -> (
function None -> Seq.empty | Some v -> construct_named n t v)
| Obj _ ->
.
| Objs (o1, o2) ->
fun (v1, v2) -> construct_obj o1 v1 @ construct_obj o2 v2
| Conv (ffrom, _, t, _) -> fun v -> construct_obj t (ffrom v)
| Empty -> fun () -> Seq.empty
| Ignore -> fun () -> Seq.empty
| Mu {self} as enc -> fun v -> construct_obj (self enc) v
| Describe {encoding = t} -> fun v -> construct_obj t v
| Union cases ->
fun v ->
let rec do_cases = function
| [] ->
invalid_arg
"Json_encoding.construct_seq: consequence of bad union"
| Case {encoding; proj} :: rest -> (
match proj v with
| Some v -> construct_obj encoding v
| None -> do_cases rest)
in
do_cases cases
| Custom ({write}, _) -> (
fun v ->
match write (module Json_repr.Ezjsonm) v with
| `O kvs -> jsonm_lexeme_seq_of_ezjson_kvs kvs
| `A _ | `Bool _ | `Float _ | `String _ | `Null ->
invalid_arg
"Json_encoding.construct_seq: consequence of bad merge_objs")
| _ ->
invalid_arg
"Json_encoding.construct_seq: consequence of bad merge_objs"
and construct_tup :
type t. t encoding -> t -> jsonm_lexeme Seq.t = function
| Tup t -> fun v -> (construct [@ocaml.tailcall]) t v
| Tups (o1, o2) ->
fun (v1, v2) -> construct_tup o1 v1 @ construct_tup o2 v2
| Conv (ffrom, _, t, _) -> fun v -> construct_tup t (ffrom v)
| Mu {self} as enc -> fun v -> construct_tup (self enc) v
| Describe {encoding = t} -> fun v -> construct_tup t v
| Custom ({write}, _) -> (
fun v ->
match write (module Json_repr.Ezjsonm) v with
| `A vs -> jsonm_lexeme_seq_of_ezjson_vs vs
| `O _ | `Bool _ | `Float _ | `String _ | `Null ->
invalid_arg
"Json_encoding.construct_seq: consequence of bad merge_tups")
| _ ->
invalid_arg
"Json_encoding.construct_seq: consequence of bad merge_tups"
in
construct enc v
end
let construct_seq :
?include_default_fields:[`Always | `Auto | `Never] ->
't encoding ->
't ->
jsonm_lexeme Seq.t =
JsonmLexemeSeq.construct_seq
let jsonm_lexeme_seq_of_ezjson = JsonmLexemeSeq.jsonm_lexeme_seq_of_ezjson