Source file 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
open Hash_builtin
type limit = No_limit | At_most of int | Exactly of int [@@deriving hash]
type bigstring =
(char, Bigarray.int8_unsigned_elt, Bigarray.c_layout) Bigarray.Array1.t
module Kind = struct
type t = [`Fixed of int | `Dynamic | `Variable] [@@deriving hash]
type length = [`Fixed of int | `Variable]
type enum = [`Dynamic | `Variable]
let combine name : t -> t -> t =
fun k1 k2 ->
match (k1, k2) with
| `Fixed n1, `Fixed n2 -> `Fixed (n1 + n2)
| `Dynamic, `Dynamic | `Fixed _, `Dynamic | `Dynamic, `Fixed _ -> `Dynamic
| `Variable, `Fixed _ | (`Dynamic | `Fixed _), `Variable -> `Variable
| `Variable, `Dynamic ->
Printf.ksprintf
invalid_arg
"Cannot merge two %s when the left element is of variable length and \
the right one of dynamic length. You should use the reverse order, \
or wrap the second one with Data_encoding.dynamic_size."
name
| `Variable, `Variable ->
Printf.ksprintf
invalid_arg
"Cannot merge two %s with variable length. You should wrap one of \
them with Data_encoding.dynamic_size."
name
let merge : t -> t -> t =
fun k1 k2 ->
match (k1, k2) with
| `Fixed n1, `Fixed n2 when n1 = n2 -> `Fixed n1
| `Fixed _, `Fixed _ -> `Dynamic
| `Dynamic, `Dynamic | `Fixed _, `Dynamic | `Dynamic, `Fixed _ -> `Dynamic
| `Variable, (`Dynamic | `Fixed _)
| (`Dynamic | `Fixed _), `Variable
| `Variable, `Variable ->
`Variable
let merge_list sz : t list -> t = function
| [] -> assert false
| k :: ks -> (
match List.fold_left merge k ks with
| `Fixed n -> `Fixed (n + Binary_size.tag_size sz)
| k -> k)
end
type case_tag = Tag of int | Json_only
type case_tag_internal = Uint_option.t
let json_only = Uint_option.none
let make_tag = Uint_option.some
let is_tag = Uint_option.is_some
let get_tag = Uint_option.get
type string_json_repr = Hex | Plain
type 'a desc =
| Null : unit desc
| Empty : unit desc
| Ignore : unit desc
| Constant : string -> unit desc
| Bool : bool desc
| Int8 : int desc
| Uint8 : int desc
| Int16 : TzEndian.endianness -> int desc
| Uint16 : TzEndian.endianness -> int desc
| Int31 : TzEndian.endianness -> int desc
| Int32 : TzEndian.endianness -> Int32.t desc
| Int64 : TzEndian.endianness -> Int64.t desc
| N : Z.t desc
| Z : Z.t desc
| RangedInt : {
minimum : int;
endianness : TzEndian.endianness;
maximum : int;
}
-> int desc
| RangedFloat : {minimum : float; maximum : float} -> float desc
| Float : float desc
| Bytes : Kind.length * string_json_repr -> Bytes.t desc
| String : Kind.length * string_json_repr -> string desc
| Bigstring : Kind.length * string_json_repr -> bigstring desc
| Padded : 'a t * int -> 'a desc
| String_enum : ('a, string * int) Hashtbl.t * 'a array -> 'a desc
| Array : {
length_limit : limit;
length_encoding : int t option;
elts : 'a t;
}
->
'a array desc
| List : {
length_limit : limit;
length_encoding : int t option;
elts : 'a t;
}
->
'a list desc
| Obj : 'a field -> 'a desc
| Objs : {kind : Kind.t; left : 'a t; right : 'b t} -> ('a * 'b) desc
| Tup : 'a t -> 'a desc
| Tups : {kind : Kind.t; left : 'a t; right : 'b t} -> ('a * 'b) desc
| Union : {
kind : Kind.t;
tag_size : Binary_size.tag_size;
tagged_cases : 'a case array;
match_case : 'a -> match_result;
cases : 'a case list;
}
-> 'a desc
| Mu : {
kind : Kind.enum;
name : string;
title : string option;
description : string option;
fix : 'a t -> 'a t;
}
-> 'a desc
| Conv : {
proj : 'a -> 'b;
inj : 'b -> 'a;
encoding : 'b t;
schema : Json_schema.schema option;
}
-> 'a desc
| Describe : {
id : string;
title : string option;
description : string option;
encoding : 'a t;
}
-> 'a desc
| Splitted : {
encoding : 'a t;
json_encoding : 'a Json_encoding.encoding;
is_obj : bool;
is_tup : bool;
}
-> 'a desc
| Dynamic_size : {kind : Binary_size.length; encoding : 'a t} -> 'a desc
| Check_size : {limit : int; encoding : 'a t} -> 'a desc
| Delayed : (unit -> 'a t) -> 'a desc
and _ field =
| Req : {
name : string;
encoding : 'a t;
title : string option;
description : string option;
}
-> 'a field
| Opt : {
name : string;
kind : Kind.enum;
encoding : 'a t;
title : string option;
description : string option;
}
-> 'a option field
| Dft : {
name : string;
encoding : 'a t;
default : 'a;
title : string option;
description : string option;
}
-> 'a field
and 'a case =
| Case : {
title : string;
description : string option;
encoding : 'a t;
proj : 't -> 'a option;
inj : 'a -> 't;
tag : case_tag_internal;
}
-> 't case
and match_result = Matched : int * 'b t * 'b -> match_result
and 'a t = {
encoding : 'a desc;
mutable json_encoding : 'a Json_encoding.encoding option;
}
type 'a encoding = 'a t
let rec classify : type a. a t -> Kind.t = fun e -> classify_desc e.encoding
and classify_desc : type a. a desc -> Kind.t =
fun e ->
match e with
| Null -> `Fixed 0
| Empty -> `Fixed 0
| Constant _ -> `Fixed 0
| Bool -> `Fixed Binary_size.bool
| Int8 -> `Fixed Binary_size.int8
| Uint8 -> `Fixed Binary_size.uint8
| Int16 _ -> `Fixed Binary_size.int16
| Uint16 _ -> `Fixed Binary_size.uint16
| Int31 _ -> `Fixed Binary_size.int31
| Int32 _ -> `Fixed Binary_size.int32
| Int64 _ -> `Fixed Binary_size.int64
| N -> `Dynamic
| Z -> `Dynamic
| RangedInt {minimum; endianness = _; maximum} ->
`Fixed Binary_size.(integer_to_size @@ range_to_size ~minimum ~maximum)
| Float -> `Fixed Binary_size.float
| RangedFloat _ -> `Fixed Binary_size.float
| Bytes (kind, _repr) -> (kind :> Kind.t)
| String (kind, _repr) -> (kind :> Kind.t)
| Bigstring (kind, _repr) -> (kind :> Kind.t)
| Padded ({encoding; _}, n) -> (
match classify_desc encoding with
| `Fixed m -> `Fixed (n + m)
| `Dynamic | `Variable ->
assert false )
| String_enum (_, cases) ->
`Fixed Binary_size.(integer_to_size @@ enum_size cases)
| Obj (Opt {kind; _}) -> (kind :> Kind.t)
| Objs {kind; _} -> kind
| Tups {kind; _} -> kind
| Union {kind; _} -> (kind :> Kind.t)
| Mu {kind; _} -> (kind :> Kind.t)
| Ignore -> `Fixed 0
| Array {length_limit; length_encoding = Some _; elts} ->
assert (match length_limit with At_most _ -> true | _ -> false) ;
assert (
match classify_desc elts.encoding with
| `Fixed _ | `Dynamic -> true
| `Variable -> false) ;
`Dynamic
| Array {length_limit = Exactly l; length_encoding = None; elts} -> (
match classify_desc elts.encoding with
| `Fixed e -> `Fixed (l * e)
| `Dynamic -> `Dynamic
| `Variable -> assert false)
| Array _ -> `Variable
| List {length_limit; length_encoding = Some _; elts} ->
assert (match length_limit with At_most _ -> true | _ -> false) ;
assert (
match classify_desc elts.encoding with
| `Fixed _ | `Dynamic -> true
| `Variable -> false) ;
`Dynamic
| List {length_limit = Exactly l; length_encoding = None; elts} -> (
match classify_desc elts.encoding with
| `Fixed e -> `Fixed (l * e)
| `Dynamic -> `Dynamic
| `Variable -> assert false)
| List _ -> `Variable
| Obj (Req {encoding; _}) -> classify encoding
| Obj (Dft {encoding; _}) -> classify encoding
| Tup encoding -> classify encoding
| Conv {encoding; _} -> classify encoding
| Describe {encoding; _} -> classify encoding
| Splitted {encoding; _} -> classify encoding
| Dynamic_size _ -> `Dynamic
| Check_size {encoding; _} -> classify encoding
| Delayed f -> classify (f ())
let check_not_variable name e =
match classify e with
| `Variable ->
Printf.ksprintf
invalid_arg
"Cannot insert variable length element in %s. You should wrap the \
contents using Data_encoding.dynamic_size."
name
| `Dynamic | `Fixed _ -> ()
let n_length value =
let bits = Z.numbits value in
if bits = 0 then 1 else (bits + 6) / 7
let z_length value = (Z.numbits value + 1 + 6) / 7
module Mu_visited : sig
type t
val empty : t
val mem : _ desc -> t -> bool
val add : _ desc -> t -> t
end = struct
type t = Obj.t list
let empty = []
let mem x m =
match x with Mu _ -> List.memq (Obj.repr x) m | _ -> assert false
let add x m = match x with Mu _ -> Obj.repr x :: m | _ -> assert false
end
let rec is_zeroable : type t. Mu_visited.t -> t encoding -> bool =
fun visited e ->
match e.encoding with
| Null -> true
| Empty -> true
| Ignore -> true
| Constant _ -> true
| Bool -> false
| Int8 -> false
| Uint8 -> false
| Int16 _ -> false
| Uint16 _ -> false
| Int31 _ -> false
| Int32 _ -> false
| Int64 _ -> false
| N -> false
| Z -> false
| RangedInt _ -> false
| RangedFloat _ -> false
| Float -> false
| Bytes _ -> false
| String _ -> false
| Bigstring _ -> false
| Padded _ -> false
| String_enum _ -> false
| Array {length_limit; length_encoding = Some le; elts = _} ->
assert (match length_limit with At_most _ -> true | _ -> false) ;
assert (not (is_zeroable visited le)) ;
false
| Array {length_limit = Exactly l; length_encoding = None; elts = _} ->
assert (l > 0) ;
false
| Array
{length_limit = No_limit | At_most _; length_encoding = None; elts = _} ->
true
| List {length_limit; length_encoding = Some le; elts = _} ->
assert (match length_limit with At_most _ -> true | _ -> false) ;
assert (not (is_zeroable visited le)) ;
false
| List {length_limit = Exactly l; length_encoding = None; elts = _} ->
assert (l > 0) ;
false
| List {length_limit = No_limit | At_most _; length_encoding = None; elts = _}
->
true
| Obj (Req {encoding = e; _}) -> is_zeroable visited e
| Obj (Opt {kind = `Variable; _}) -> true
| Obj (Dft {encoding = e; _}) -> is_zeroable visited e
| Obj _ -> false
| Objs {left; right; _} ->
is_zeroable visited left && is_zeroable visited right
| Tup e -> is_zeroable visited e
| Tups {left; right; _} ->
is_zeroable visited left && is_zeroable visited right
| Union _ -> false
| Mu {kind = `Dynamic; _} -> false
| Mu {kind = `Variable; fix; _} ->
if Mu_visited.mem e.encoding visited then true
else is_zeroable (Mu_visited.add e.encoding visited) (fix e)
| Conv {encoding; _} -> is_zeroable visited encoding
| Describe {encoding; _} -> is_zeroable visited encoding
| Splitted {encoding; _} -> is_zeroable visited encoding
| Check_size {encoding; _} -> is_zeroable visited encoding
| Delayed f -> is_zeroable visited (f ())
| Dynamic_size _ ->
false
let is_zeroable e = is_zeroable Mu_visited.empty e
let check_not_zeroable name e =
if is_zeroable e then
Printf.ksprintf
invalid_arg
"Cannot insert potentially zero-sized element in %s."
name
let make ?json_encoding encoding = {encoding; json_encoding}
module Fixed = struct
let string' json_repr n =
if n <= 0 then
invalid_arg
"Cannot create a string encoding of negative or null fixed length." ;
make @@ String (`Fixed n, json_repr)
let string n = string' Plain n
let bytes' json_repr n =
if n <= 0 then
invalid_arg
"Cannot create a byte encoding of negative or null fixed length." ;
make @@ Bytes (`Fixed n, json_repr)
let bytes n = bytes' Hex n
let bigstring ?(string_json_repr = Hex) n =
if n <= 0 then
invalid_arg
"Cannot create a bigstring encoding of negative or null fixed length." ;
make @@ Bigstring (`Fixed n, string_json_repr)
let add_padding e n =
if n <= 0 then
invalid_arg "Cannot create a padding of negative or null fixed length." ;
match classify e with
| `Fixed _ -> make @@ Padded (e, n)
| `Dynamic | `Variable -> invalid_arg "Cannot pad non-fixed size encoding"
let list n e =
if n <= 0 then
invalid_arg
"Cannot create a list encoding of negative or null fixed length." ;
check_not_variable "a fixed-length list" e ;
check_not_zeroable "a fixed-length list" e ;
make @@ List {length_limit = Exactly n; length_encoding = None; elts = e}
let array n e =
if n <= 0 then
invalid_arg
"Cannot create an array encoding of negative or null fixed length." ;
check_not_variable "a fixed-length array" e ;
check_not_zeroable "a fixed-length array" e ;
make @@ Array {length_limit = Exactly n; length_encoding = None; elts = e}
end
module Variable = struct
let string' json_repr = make @@ String (`Variable, json_repr)
let string = string' Plain
let bytes' json_repr = make @@ Bytes (`Variable, json_repr)
let bytes = bytes' Hex
let bigstring ?(string_json_repr = Hex) () =
make @@ Bigstring (`Variable, string_json_repr)
let array ?max_length e =
check_not_variable "an array" e ;
check_not_zeroable "an array" e ;
let length_limit =
match max_length with None -> No_limit | Some l -> At_most l
in
let encoding =
make @@ Array {length_limit; length_encoding = None; elts = e}
in
match (classify e, max_length) with
| `Fixed n, Some max_length ->
let limit = n * max_length in
make @@ Check_size {limit; encoding}
| `Fixed _, None -> encoding
| `Dynamic, (Some _ | None) -> encoding
| `Variable, _ -> assert false
let list ?max_length e =
check_not_variable "a list" e ;
check_not_zeroable "a list" e ;
let length_limit =
match max_length with None -> No_limit | Some l -> At_most l
in
let encoding =
make @@ List {length_limit; length_encoding = None; elts = e}
in
match (classify e, max_length) with
| `Fixed n, Some max_length ->
let limit = n * max_length in
make @@ Check_size {limit; encoding}
| `Fixed _, None -> encoding
| `Dynamic, (Some _ | None) -> encoding
| `Variable, _ -> assert false
end
let dynamic_size ?(kind = `Uint30) e = make @@ Dynamic_size {kind; encoding = e}
let check_size limit encoding =
if limit < 0 then
raise (Invalid_argument "Data_encoding.check_size: negative limit") ;
make @@ Check_size {limit; encoding}
let delayed f = make @@ Delayed f
let null = make @@ Null
let empty = make @@ Empty
let unit = make @@ Ignore
let constant s = make @@ Constant s
let bool = make @@ Bool
let int8 = make @@ Int8
let uint8 = make @@ Uint8
module Big_endian = struct
let int16 = make @@ Int16 TzEndian.Big_endian
let uint16 = make @@ Uint16 TzEndian.Big_endian
let int31 = make @@ Int31 TzEndian.Big_endian
let int32 = make @@ Int32 TzEndian.Big_endian
let ranged_int minimum maximum =
let minimum = min minimum maximum and maximum = max minimum maximum in
if
minimum < Binary_size.min_int `Int31
|| Binary_size.max_int `Int31 < maximum
then invalid_arg "Data_encoding.ranged_int" ;
make @@ RangedInt {minimum; endianness = TzEndian.Big_endian; maximum}
let int64 = make @@ Int64 TzEndian.Big_endian
end
include Big_endian
let ranged_float minimum maximum =
let minimum = min minimum maximum and maximum = max minimum maximum in
make @@ RangedFloat {minimum; maximum}
module Little_endian = struct
let int16 = make @@ Int16 TzEndian.Little_endian
let uint16 = make @@ Uint16 TzEndian.Little_endian
let int31 = make @@ Int31 TzEndian.Little_endian
let int32 = make @@ Int32 TzEndian.Little_endian
let ranged_int minimum maximum =
let minimum = min minimum maximum and maximum = max minimum maximum in
if
minimum < Binary_size.min_int `Int31
|| Binary_size.max_int `Int31 < maximum
then invalid_arg "Data_encoding.ranged_int" ;
make @@ RangedInt {minimum; endianness = TzEndian.Little_endian; maximum}
let int64 = make @@ Int64 TzEndian.Little_endian
end
let n = make @@ N
let z = make @@ Z
let float = make @@ Float
let string' ?length_kind json_repr =
dynamic_size ?kind:length_kind (Variable.string' json_repr)
let string = string' Plain
let bytes' ?length_kind json_repr =
dynamic_size ?kind:length_kind (Variable.bytes' json_repr)
let bytes = bytes' Hex
let bigstring ?length_kind ?(string_json_repr = Hex) () =
dynamic_size ?kind:length_kind (Variable.bigstring ~string_json_repr ())
let array ?max_length e = dynamic_size (Variable.array ?max_length e)
let list ?max_length e = dynamic_size (Variable.list ?max_length e)
let string_enum = function
| [] -> invalid_arg "data_encoding.string_enum: cannot have zero cases"
| [_case] ->
invalid_arg
"data_encoding.string_enum: cannot have a single case, use constant \
instead"
| _ :: _ as cases ->
let arr = Array.of_list (List.map snd cases) in
let tbl = Hashtbl.create (Array.length arr) in
List.iteri (fun ind (str, a) -> Hashtbl.add tbl a (str, ind)) cases ;
make @@ String_enum (tbl, arr)
let conv proj inj ?schema encoding = make @@ Conv {proj; inj; encoding; schema}
let conv_with_guard proj inj_guard ?schema encoding =
let inj x =
match inj_guard x with
| Ok y -> y
| Error s -> raise (Binary_error_types.Invariant_guard s)
in
conv proj inj ?schema encoding
let with_decoding_guard guard encoding =
conv
(fun x -> x)
(fun y ->
match guard y with
| Ok () -> y
| Error s -> raise (Binary_error_types.Invariant_guard s))
encoding
let int_like_n_or_z ~min_value ~max_value name sizer like =
if max_value < min_value then invalid_arg name ;
let z_max_value = Z.of_int max_value in
let z_min_value = Z.of_int min_value in
let max_size = max (sizer z_min_value) (sizer z_max_value) in
check_size
max_size
(conv
(fun i ->
if i < min_value || i > max_value then
raise
Binary_error_types.(
Write_error
(Invalid_int {min = min_value; v = i; max = max_value})) ;
Z.of_int i)
(fun z ->
(if Z.compare z z_min_value < 0 then
let i =
if Z.compare z (Z.of_int (Binary_size.min_int `Int31)) < 0 then
Binary_size.min_int `Int31
else Z.to_int z
in
raise
Binary_error_types.(
Read_error (Invalid_int {min = min_value; v = i; max = max_value}))) ;
(if Z.compare z z_max_value > 0 then
let i =
if Z.compare z (Z.of_int (Binary_size.max_int `Int31)) > 0 then
Binary_size.max_int `Int31
else Z.to_int z
in
raise
Binary_error_types.(
Read_error (Invalid_int {min = min_value; v = i; max = max_value}))) ;
Z.to_int z)
like)
let uint_like_n ~max_value =
int_like_n_or_z ~min_value:0 ~max_value "Data_encoding.uint_like_n" n_length n
let int_like_z ~min_value ~max_value =
int_like_n_or_z ~min_value ~max_value "Data_encoding.int_like_z" z_length z
let def id ?title ?description encoding =
make @@ Describe {id; title; description; encoding}
let req ?title ?description n t =
Req {name = n; encoding = t; title; description}
let opt ?title ?description n encoding =
let kind =
match classify encoding with
| `Variable -> `Variable
| `Fixed _ | `Dynamic -> `Dynamic
in
Opt {name = n; kind; encoding; title; description}
let varopt ?title ?description n encoding =
Opt {name = n; kind = `Variable; encoding; title; description}
let dft ?title ?description n t d =
Dft {name = n; encoding = t; default = d; title; description}
let raw_splitted ~json ~binary =
make
@@ Splitted
{encoding = binary; json_encoding = json; is_obj = false; is_tup = false}
let rec is_obj : type a. Mu_visited.t -> a t -> bool =
fun visited e ->
match e.encoding with
| Obj _ -> true
| Objs _ -> true
| Conv {encoding = e; _} -> is_obj visited e
| Dynamic_size {encoding = e; _} -> is_obj visited e
| Union {cases; _} ->
List.for_all (fun (Case {encoding = e; _}) -> is_obj visited e) cases
| Empty -> true
| Ignore -> true
| Mu {fix; _} ->
if Mu_visited.mem e.encoding visited then false
else is_obj (Mu_visited.add e.encoding visited) (fix e)
| Splitted {is_obj; _} -> is_obj
| Delayed f -> is_obj visited (f ())
| Describe {encoding; _} -> is_obj visited encoding
| Padded (_encoding, _) ->
false
| Check_size {encoding = _; _} ->
false
| String_enum _ -> false
| Array _ -> false
| List _ -> false
| Tup _ -> false
| Tups _ -> false
| Null -> false
| Constant _ -> false
| Bool -> false
| Int8 -> false
| Uint8 -> false
| Int16 _ -> false
| Uint16 _ -> false
| Int31 _ -> false
| Int32 _ -> false
| Int64 _ -> false
| N -> false
| Z -> false
| RangedInt _ -> false
| RangedFloat _ -> false
| Float -> false
| Bytes _ -> false
| String _ -> false
| Bigstring _ -> false
let is_obj e = is_obj Mu_visited.empty e
let rec is_tup : type a. Mu_visited.t -> a t -> bool =
fun visited e ->
match e.encoding with
| Tup _ -> true
| Tups _ -> true
| Conv {encoding = e; _} -> is_tup visited e
| Dynamic_size {encoding = e; _} -> is_tup visited e
| Union {cases; _} ->
List.for_all (function Case {encoding = e; _} -> is_tup visited e) cases
| Mu {fix; _} ->
if Mu_visited.mem e.encoding visited then false
else is_tup (Mu_visited.add e.encoding visited) (fix e)
| Splitted {is_tup; _} -> is_tup
| Delayed f -> is_tup visited (f ())
| Describe {encoding; _} -> is_tup visited encoding
| Padded (_encoding, _) ->
false
| Check_size {encoding = _; _} ->
false
| String_enum _ -> false
| Array _ -> false
| List _ -> false
| Obj _ -> false
| Objs _ -> false
| Empty -> false
| Ignore -> false
| Null -> false
| Constant _ -> false
| Bool -> false
| Int8 -> false
| Uint8 -> false
| Int16 _ -> false
| Uint16 _ -> false
| Int31 _ -> false
| Int32 _ -> false
| Int64 _ -> false
| N -> false
| Z -> false
| RangedInt _ -> false
| RangedFloat _ -> false
| Float -> false
| Bytes _ -> false
| String _ -> false
| Bigstring _ -> false
let is_tup e = is_tup Mu_visited.empty e
let raw_merge_objs left right =
let kind = Kind.combine "objects" (classify left) (classify right) in
make @@ Objs {kind; left; right}
let obj1 f1 = make @@ Obj f1
let obj2 f2 f1 = raw_merge_objs (obj1 f2) (obj1 f1)
let obj3 f3 f2 f1 = raw_merge_objs (obj1 f3) (obj2 f2 f1)
let obj4 f4 f3 f2 f1 = raw_merge_objs (obj2 f4 f3) (obj2 f2 f1)
let obj5 f5 f4 f3 f2 f1 = raw_merge_objs (obj1 f5) (obj4 f4 f3 f2 f1)
let obj6 f6 f5 f4 f3 f2 f1 = raw_merge_objs (obj2 f6 f5) (obj4 f4 f3 f2 f1)
let obj7 f7 f6 f5 f4 f3 f2 f1 =
raw_merge_objs (obj3 f7 f6 f5) (obj4 f4 f3 f2 f1)
let obj8 f8 f7 f6 f5 f4 f3 f2 f1 =
raw_merge_objs (obj4 f8 f7 f6 f5) (obj4 f4 f3 f2 f1)
let obj9 f9 f8 f7 f6 f5 f4 f3 f2 f1 =
raw_merge_objs (obj1 f9) (obj8 f8 f7 f6 f5 f4 f3 f2 f1)
let obj10 f10 f9 f8 f7 f6 f5 f4 f3 f2 f1 =
raw_merge_objs (obj2 f10 f9) (obj8 f8 f7 f6 f5 f4 f3 f2 f1)
let merge_objs o1 o2 =
if is_obj o1 && is_obj o2 then raw_merge_objs o1 o2
else invalid_arg "Json_encoding.merge_objs"
let raw_merge_tups left right =
let kind = Kind.combine "tuples" (classify left) (classify right) in
make @@ Tups {kind; left; right}
let tup1 e1 = make @@ Tup e1
let tup2 e2 e1 = raw_merge_tups (tup1 e2) (tup1 e1)
let tup3 e3 e2 e1 = raw_merge_tups (tup1 e3) (tup2 e2 e1)
let tup4 e4 e3 e2 e1 = raw_merge_tups (tup2 e4 e3) (tup2 e2 e1)
let tup5 e5 e4 e3 e2 e1 = raw_merge_tups (tup1 e5) (tup4 e4 e3 e2 e1)
let tup6 e6 e5 e4 e3 e2 e1 = raw_merge_tups (tup2 e6 e5) (tup4 e4 e3 e2 e1)
let tup7 e7 e6 e5 e4 e3 e2 e1 =
raw_merge_tups (tup3 e7 e6 e5) (tup4 e4 e3 e2 e1)
let tup8 e8 e7 e6 e5 e4 e3 e2 e1 =
raw_merge_tups (tup4 e8 e7 e6 e5) (tup4 e4 e3 e2 e1)
let tup9 e9 e8 e7 e6 e5 e4 e3 e2 e1 =
raw_merge_tups (tup1 e9) (tup8 e8 e7 e6 e5 e4 e3 e2 e1)
let tup10 e10 e9 e8 e7 e6 e5 e4 e3 e2 e1 =
raw_merge_tups (tup2 e10 e9) (tup8 e8 e7 e6 e5 e4 e3 e2 e1)
let merge_tups t1 t2 =
if is_tup t1 && is_tup t2 then raw_merge_tups t1 t2
else invalid_arg "Tezos_serial.Encoding.merge_tups"
let conv3 ty =
conv (fun (c, b, a) -> (c, (b, a))) (fun (c, (b, a)) -> (c, b, a)) ty
let obj3 f3 f2 f1 = conv3 (obj3 f3 f2 f1)
let tup3 f3 f2 f1 = conv3 (tup3 f3 f2 f1)
let conv4 ty =
conv
(fun (d, c, b, a) -> ((d, c), (b, a)))
(fun ((d, c), (b, a)) -> (d, c, b, a))
ty
let obj4 f4 f3 f2 f1 = conv4 (obj4 f4 f3 f2 f1)
let tup4 f4 f3 f2 f1 = conv4 (tup4 f4 f3 f2 f1)
let conv5 ty =
conv
(fun (e, d, c, b, a) -> (e, ((d, c), (b, a))))
(fun (e, ((d, c), (b, a))) -> (e, d, c, b, a))
ty
let obj5 f5 f4 f3 f2 f1 = conv5 (obj5 f5 f4 f3 f2 f1)
let tup5 f5 f4 f3 f2 f1 = conv5 (tup5 f5 f4 f3 f2 f1)
let conv6 ty =
conv
(fun (f, e, d, c, b, a) -> ((f, e), ((d, c), (b, a))))
(fun ((f, e), ((d, c), (b, a))) -> (f, e, d, c, b, a))
ty
let obj6 f6 f5 f4 f3 f2 f1 = conv6 (obj6 f6 f5 f4 f3 f2 f1)
let tup6 f6 f5 f4 f3 f2 f1 = conv6 (tup6 f6 f5 f4 f3 f2 f1)
let conv7 ty =
conv
(fun (g, f, e, d, c, b, a) -> ((g, (f, e)), ((d, c), (b, a))))
(fun ((g, (f, e)), ((d, c), (b, a))) -> (g, f, e, d, c, b, a))
ty
let obj7 f7 f6 f5 f4 f3 f2 f1 = conv7 (obj7 f7 f6 f5 f4 f3 f2 f1)
let tup7 f7 f6 f5 f4 f3 f2 f1 = conv7 (tup7 f7 f6 f5 f4 f3 f2 f1)
let conv8 ty =
conv
(fun (h, g, f, e, d, c, b, a) -> (((h, g), (f, e)), ((d, c), (b, a))))
(fun (((h, g), (f, e)), ((d, c), (b, a))) -> (h, g, f, e, d, c, b, a))
ty
let obj8 f8 f7 f6 f5 f4 f3 f2 f1 = conv8 (obj8 f8 f7 f6 f5 f4 f3 f2 f1)
let tup8 f8 f7 f6 f5 f4 f3 f2 f1 = conv8 (tup8 f8 f7 f6 f5 f4 f3 f2 f1)
let conv9 ty =
conv
(fun (i, h, g, f, e, d, c, b, a) ->
(i, (((h, g), (f, e)), ((d, c), (b, a)))))
(fun (i, (((h, g), (f, e)), ((d, c), (b, a)))) ->
(i, h, g, f, e, d, c, b, a))
ty
let obj9 f9 f8 f7 f6 f5 f4 f3 f2 f1 = conv9 (obj9 f9 f8 f7 f6 f5 f4 f3 f2 f1)
let tup9 f9 f8 f7 f6 f5 f4 f3 f2 f1 = conv9 (tup9 f9 f8 f7 f6 f5 f4 f3 f2 f1)
let conv10 ty =
conv
(fun (j, i, h, g, f, e, d, c, b, a) ->
((j, i), (((h, g), (f, e)), ((d, c), (b, a)))))
(fun ((j, i), (((h, g), (f, e)), ((d, c), (b, a)))) ->
(j, i, h, g, f, e, d, c, b, a))
ty
let obj10 f10 f9 f8 f7 f6 f5 f4 f3 f2 f1 =
conv10 (obj10 f10 f9 f8 f7 f6 f5 f4 f3 f2 f1)
let tup10 f10 f9 f8 f7 f6 f5 f4 f3 f2 f1 =
conv10 (tup10 f10 f9 f8 f7 f6 f5 f4 f3 f2 f1)
let undefined_encoding = delayed (fun _ -> assert false)
let undefined_proj _ = None
let undefined_inj _ = assert false
let undefined_case : type a. a case =
Case
{
title = "<YOU SHOULD NEVER SEE THAT>";
description = None;
encoding = undefined_encoding;
proj = undefined_proj;
inj = undefined_inj;
tag = Uint_option.none;
}
let is_undefined_case c = c == undefined_case
let valid_tag tag_size t =
let max_tag = Binary_size.max_int tag_size in
if t > max_tag then
Format.kasprintf
invalid_arg
"The tag %d is invalid because it should be less than %d."
t
max_tag
let matching ?(tag_size = `Uint8) match_case cases =
if cases = [] then invalid_arg "Data_encoding.union: empty list of cases." ;
let tagged_cases_list =
List.filter
(fun (Case {tag; _}) ->
is_tag tag
&&
(valid_tag tag_size (get_tag tag) ;
true))
cases
in
let max_used_tag =
List.fold_left
(fun m (Case {tag; _}) -> max (Uint_option.get tag) m)
(-1)
tagged_cases_list
in
let tagged_cases = Array.make (max_used_tag + 1) undefined_case in
List.iter
(fun (Case {tag; _} as case) ->
let tag = Uint_option.get tag in
if not (is_undefined_case tagged_cases.(tag)) then
Format.kasprintf invalid_arg "The tag %d appears twice in an union." tag ;
tagged_cases.(tag) <- case)
tagged_cases_list ;
let classify_case (Case {encoding; _}) = classify encoding in
let kinds = List.map classify_case cases in
let kind = Kind.merge_list tag_size kinds in
make @@ Union {kind; tag_size; tagged_cases; match_case; cases}
let union ?(tag_size = `Uint8) cases =
let match_case =
let acases =
Array.of_list @@ List.filter (fun (Case {tag; _}) -> is_tag tag) cases
in
fun x ->
let rec find i =
if i >= Array.length acases then
raise Binary_error_types.(Write_error No_case_matched)
else
let (Case {tag; encoding; proj; _}) = acases.(i) in
match proj x with
| None -> find (i + 1)
| Some v ->
Matched (Uint_option.get tag, encoding, v)
in
find 0
in
matching ~tag_size match_case cases
let case ~title ?description tag encoding proj inj =
let tag =
match tag with
| Tag t ->
if t < 0 then raise (Invalid_argument "Data_encoding.tag: negative tag")
else make_tag t
| Json_only -> json_only
in
Case {title; description; encoding; proj; inj; tag}
let matched ?(tag_size : [`Uint8 | `Uint16] = `Uint8) tag encoding v =
if tag < 0 then raise (Invalid_argument "Data_encoding.matched: negative tag") ;
valid_tag tag_size tag ;
Matched (tag, encoding, v)
let rec is_nullable : type t. Mu_visited.t -> t encoding -> bool =
fun visited e ->
match e.encoding with
| Null -> true
| Empty -> false
| Ignore -> true
| Constant _ -> false
| Bool -> false
| Int8 -> false
| Uint8 -> false
| Int16 _ -> false
| Uint16 _ -> false
| Int31 _ -> false
| Int32 _ -> false
| Int64 _ -> false
| N -> false
| Z -> false
| RangedInt _ -> false
| RangedFloat _ -> false
| Float -> false
| Bytes _ -> false
| String _ -> false
| Bigstring _ -> false
| Padded (e, _) -> is_nullable visited e
| String_enum _ -> false
| Array _ -> false
| List _ -> false
| Obj _ -> false
| Objs _ -> false
| Tup _ -> false
| Tups _ -> false
| Union {cases; _} ->
List.exists (fun (Case {encoding = e; _}) -> is_nullable visited e) cases
| Mu {fix; _} ->
if Mu_visited.mem e.encoding visited then false
else is_nullable (Mu_visited.add e.encoding visited) (fix e)
| Conv {encoding = e; _} -> is_nullable visited e
| Describe {encoding = e; _} -> is_nullable visited e
| Splitted {json_encoding; _} -> Json_encoding.is_nullable json_encoding
| Dynamic_size {encoding = e; _} -> is_nullable visited e
| Check_size {encoding = e; _} -> is_nullable visited e
| Delayed _ -> true
let is_nullable e = is_nullable Mu_visited.empty e
let option ty =
if is_nullable ty then
invalid_arg "Data_encoding.option: cannot nest nullable encodings" ;
matching
~tag_size:`Uint8
(function Some x -> Matched (1, ty, x) | None -> Matched (0, null, ()))
[
case (Tag 1) ty ~title:"Some" (fun x -> x) (fun x -> Some x);
case
(Tag 0)
null
~title:"None"
(function None -> Some () | Some _ -> None)
(fun () -> None);
]
let mu name ?title ?description fix =
let fixing = ref 0 in
let self = ref None in
let fix e =
match !self with
| Some (e0, e') when e == e0 -> e'
| Some _ | None ->
if !fixing >= 2 then
invalid_arg "infinite recursion in mu initialisation"
else (
incr fixing ;
let e' = fix e in
self := Some (e, e') ;
e')
in
let fix e = Fun.protect ~finally:(fun () -> fixing := 0) (fun () -> fix e) in
try
let precursor =
make @@ Mu {kind = `Dynamic; name; title; description; fix}
in
let fixed_precursor = fix precursor in
match classify fixed_precursor with
| `Fixed _ | `Dynamic ->
precursor
| `Variable -> raise Exit
with
| (Out_of_memory | Stack_overflow) as e -> raise e
| Exit | _ ->
let precursor =
make @@ Mu {kind = `Variable; name; title; description; fix}
in
let fixed_precursor = fix precursor in
ignore (classify fixed_precursor : Kind.t) ;
precursor
let result ok_enc error_enc =
let ok_enc = obj1 (req "ok" ok_enc) in
let error_enc = obj1 (req "error" error_enc) in
matching
~tag_size:`Uint8
(function
| Ok x -> Matched (1, ok_enc, x) | Error x -> Matched (0, error_enc, x))
[
case
(Tag 1)
ok_enc
~title:"Ok"
(function Ok x -> Some x | Error _ -> None)
(fun x -> Ok x);
case
(Tag 0)
error_enc
~title:"Result"
(function Ok _ -> None | Error x -> Some x)
(fun x -> Error x);
]
let length_encoding_of_length_encoding_parameter max_length = function
| `N -> uint_like_n ~max_value:max_length
| `Uint8 -> uint8
| `Uint16 -> uint16
| `Uint30 -> ranged_int 0 (Binary_size.max_int `Uint30)
let array_with_length ?max_length length_encoding e =
let effective_max_length =
match length_encoding with
| `N | `Uint30 -> Binary_size.max_int `Uint30
| `Uint16 -> Binary_size.max_int `Uint16
| `Uint8 -> Binary_size.max_int `Uint8
in
let max_length =
match max_length with
| None -> effective_max_length
| Some l ->
if l > effective_max_length then
raise
(Invalid_argument
"Data_encoding.array_with_length: explicit max_length higher \
than effective length range") ;
l
in
let length_encoding =
length_encoding_of_length_encoding_parameter max_length length_encoding
in
let length_limit = At_most max_length in
check_not_variable "an array" e ;
check_not_zeroable "an array" e ;
make @@ Array {length_limit; length_encoding = Some length_encoding; elts = e}
let list_with_length ?max_length length_encoding e =
let effective_max_length =
match length_encoding with
| `N | `Uint30 -> Binary_size.max_int `Uint30
| `Uint16 -> Binary_size.max_int `Uint16
| `Uint8 -> Binary_size.max_int `Uint8
in
let max_length =
match max_length with
| None -> effective_max_length
| Some l ->
if l > effective_max_length then
raise
(Invalid_argument
"Data_encoding.list_with_length: explicit max_length higher \
than effective length range") ;
l
in
let length_encoding =
length_encoding_of_length_encoding_parameter max_length length_encoding
in
let length_limit = At_most max_length in
check_not_variable "a list" e ;
check_not_zeroable "a list" e ;
make @@ List {length_limit; length_encoding = Some length_encoding; elts = e}