Source file binary_length.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
open Binary_error_types
let fixed_length e =
match Encoding.classify e with
| `Fixed n -> Some n
| `Dynamic | `Variable -> None
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
let rec length : type x. x Encoding.t -> x -> int =
fun e value ->
let open Encoding in
match e.encoding with
| Null -> 0
| Empty -> 0
| Constant _ -> 0
| Bool -> Binary_size.bool
| Int8 -> Binary_size.int8
| Uint8 -> Binary_size.uint8
| Int16 -> Binary_size.int16
| Uint16 -> Binary_size.uint16
| Int31 -> Binary_size.int31
| Int32 -> Binary_size.int32
| Int64 -> Binary_size.int64
| N -> n_length value
| Z -> z_length value
| RangedInt {minimum; maximum} ->
Binary_size.integer_to_size @@ Binary_size.range_to_size ~minimum ~maximum
| Float -> Binary_size.float
| RangedFloat _ -> Binary_size.float
| Bytes (`Fixed n) -> n
| String (`Fixed n) -> n
| Padded (e, n) -> length e value + n
| String_enum (_, arr) ->
Binary_size.integer_to_size @@ Binary_size.enum_size arr
| Objs {kind = `Fixed n; _} -> n
| Tups {kind = `Fixed n; _} -> n
| Union {kind = `Fixed n; _} -> n
| Objs {kind = `Dynamic; left; right} ->
let v1, v2 = value in
length left v1 + length right v2
| Tups {kind = `Dynamic; left; right} ->
let v1, v2 = value in
length left v1 + length right v2
| Mu {kind = `Dynamic; fix; _} -> length (fix e) value
| Obj (Opt {kind = `Dynamic; encoding = e; _}) -> (
match value with None -> 1 | Some value -> 1 + length e value)
| Ignore -> 0
| Bytes `Variable -> Bytes.length value
| String `Variable -> String.length value
| Array {length_limit; elts} -> (
(match length_limit with
| No_limit -> ()
| At_most max_length ->
if Array.length value > max_length then
raise (Write_error Array_invalid_length)
| Exactly exact_length ->
if Array.length value <> exact_length then
raise (Write_error Array_invalid_length)) ;
match fixed_length elts with
| Some s -> Array.length value * s
| None -> Array.fold_left (fun acc v -> length elts v + acc) 0 value)
| List {length_limit; elts} -> (
(match length_limit with
| No_limit -> ()
| At_most max_length ->
if List.compare_length_with value max_length > 0 then
raise (Write_error List_invalid_length)
| Exactly exact_length ->
if List.compare_length_with value exact_length <> 0 then
raise (Write_error List_invalid_length)) ;
match fixed_length elts with
| Some s -> List.length value * s
| None -> List.fold_left (fun acc v -> length elts v + acc) 0 value)
| Objs {kind = `Variable; left; right} ->
let v1, v2 = value in
length left v1 + length right v2
| Tups {kind = `Variable; left; right} ->
let v1, v2 = value in
length left v1 + length right v2
| Obj (Opt {kind = `Variable; encoding = e; _}) -> (
match value with None -> 0 | Some value -> length e value)
| Mu {kind = `Variable; fix; _} -> length (fix e) value
| Union {kind = `Dynamic | `Variable; tag_size; match_case; _} ->
let (Matched (tag, e, value)) = match_case value in
assert (tag <= Binary_size.max_int tag_size) ;
Binary_size.tag_size tag_size + length e value
| Obj (Req {encoding = e; _}) -> length e value
| Obj (Dft {encoding = e; _}) -> length e value
| Tup e -> length e value
| Conv {encoding = e; proj; _} -> length e (proj value)
| Describe {encoding = e; _} -> length e value
| Splitted {encoding = e; _} -> length e value
| Dynamic_size {kind; encoding = e} ->
let length = length e value in
Binary_size.integer_to_size kind + length
| Check_size {limit; encoding = e} ->
let length = length e value in
if length > limit then raise (Write_error Size_limit_exceeded) ;
length
| Delayed f -> length (f ()) value
let rec maximum_length : type a. a Encoding.t -> int option =
fun e ->
let ( >>? ) = Option.bind in
let ( >|? ) x f = Option.map f x in
let open Encoding in
match e.encoding with
| Null -> Some 0
| Empty -> Some 0
| Constant _ -> Some 0
| Bool -> Some Binary_size.bool
| Int8 -> Some Binary_size.int8
| Uint8 -> Some Binary_size.uint8
| Int16 -> Some Binary_size.int16
| Uint16 -> Some Binary_size.uint16
| Int31 -> Some Binary_size.int31
| Int32 -> Some Binary_size.int32
| Int64 -> Some Binary_size.int64
| N -> None
| Z -> None
| RangedInt {minimum; maximum} ->
Some
(Binary_size.integer_to_size
@@ Binary_size.range_to_size ~minimum ~maximum)
| Float -> Some Binary_size.float
| RangedFloat _ -> Some Binary_size.float
| Bytes (`Fixed n) -> Some n
| String (`Fixed n) -> Some n
| Padded (e, n) -> maximum_length e >|? fun s -> s + n
| String_enum (_, arr) ->
Some (Binary_size.integer_to_size @@ Binary_size.enum_size arr)
| Objs {kind = `Fixed n; _} -> Some n
| Tups {kind = `Fixed n; _} -> Some n
| Union {kind = `Fixed n; _} -> Some n
| Obj (Opt {kind = `Dynamic; encoding = e; _}) ->
maximum_length e >|? fun s -> s + Binary_size.uint8
| Ignore -> Some 0
| Bytes `Variable -> None
| String `Variable -> None
| Array {length_limit; elts = e} -> (
match length_limit with
| No_limit -> None
| At_most max_length -> maximum_length e >|? fun s -> s * max_length
| Exactly exact_length -> maximum_length e >|? fun s -> s * exact_length)
| List {length_limit; elts = e} -> (
match length_limit with
| No_limit -> None
| At_most max_length -> maximum_length e >|? fun s -> s * max_length
| Exactly exact_length -> maximum_length e >|? fun s -> s * exact_length)
| Obj (Opt {kind = `Variable; encoding = e; _}) -> maximum_length e
| Union {kind = `Dynamic | `Variable; tag_size; cases; _} ->
List.fold_left
(fun acc (Case {encoding = e; _}) ->
acc >>? fun acc ->
maximum_length e >|? fun s -> Stdlib.max acc s)
(Some 0)
cases
>|? fun s -> s + Binary_size.tag_size tag_size
| Objs {kind = `Dynamic | `Variable; left; right} ->
maximum_length left >>? fun l ->
maximum_length right >|? fun r -> l + r
| Tups {kind = `Dynamic | `Variable; left; right} ->
maximum_length left >>? fun l ->
maximum_length right >|? fun r -> l + r
| Mu _ ->
None
| Obj (Req {encoding = e; _}) -> maximum_length e
| Obj (Dft {encoding = e; _}) -> maximum_length e
| Tup e -> maximum_length e
| Conv {encoding = e; _} -> maximum_length e
| Describe {encoding = e; _} -> maximum_length e
| Splitted {encoding = e; _} -> maximum_length e
| Dynamic_size {kind; encoding = e} ->
maximum_length e >|? fun s -> s + Binary_size.integer_to_size kind
| Check_size {limit; encoding = e} ->
Some
(Option.fold
(maximum_length e)
~some:(fun s -> min s limit)
~none:limit)
| Delayed f -> maximum_length (f ())