Source file deriving_Json.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
(** Json **)
open! Deriving_Json_import
module Lexer = Deriving_Json_lexer
type 'a t =
{ write : Buffer.t -> 'a -> unit
; read : Lexer.lexbuf -> 'a
}
let make write read = { write; read }
let read t = t.read
let write t = t.write
let convert t f1 f2 =
{ write = (fun buf a -> t.write buf (f2 a)); read = (fun buf -> f1 (t.read buf)) }
let to_string t v =
let buf = Buffer.create 50 in
t.write buf v;
Buffer.contents buf
let from_string t s = t.read (Lexer.init_lexer (Lexing.from_string s))
(** Deriver **)
module type Json_min = sig
type a
val write : Buffer.t -> a -> unit
val read : Lexer.lexbuf -> a
end
module type Json_min' = sig
type a
val write : Buffer.t -> a -> unit
val read : Lexer.lexbuf -> a
val match_variant : [ `Cst of int | `NCst of int ] -> bool
val read_variant : Lexer.lexbuf -> [ `Cst of int | `NCst of int ] -> a
end
module type Json_min'' = sig
type a
val t : a t
end
module type Json_converter = sig
type a
type b
val t : a t
val from_ : a -> b
val to_ : b -> a
end
module type Json = sig
type a
val t : a t
val write : Buffer.t -> a -> unit
val read : Lexer.lexbuf -> a
val to_string : a -> string
val from_string : string -> a
val match_variant : [ `Cst of int | `NCst of int ] -> bool
val read_variant : Lexer.lexbuf -> [ `Cst of int | `NCst of int ] -> a
end
module Defaults (J : Json_min) : Json with type a = J.a = struct
include J
let t = { write; read }
let to_string v = to_string t v
let from_string s = from_string t s
let match_variant _hash = assert false
let read_variant _buf _hash = assert false
end
module Defaults' (J : Json_min') : Json with type a = J.a = struct
include J
let t = { write; read }
let to_string v = to_string t v
let from_string s = from_string t s
end
module Defaults'' (J : Json_min'') : Json with type a = J.a = struct
include J
let read = t.read
let write = t.write
let to_string v = to_string t v
let from_string s = from_string t s
let match_variant _hash = assert false
let read_variant _buf _hash = assert false
end
module Convert (J : Json_converter) : Json with type a = J.b = struct
module Tmp : Json with type a = J.b = Defaults'' (struct
type a = J.b
let t = convert J.t J.from_ J.to_
end)
include Tmp
end
(** Predefs *)
module Json_undef (T : sig
type a
end) =
Defaults (struct
type a = T.a
let write _buf _ = failwith "Unimplemented"
let read _buf = failwith "Unimplemented"
end)
module Json_char = Defaults (struct
type a = char
let write buffer c = Buffer.add_string buffer (string_of_int (int_of_char c))
let read buf = char_of_int (Lexer.read_bounded_int ~max:255 buf)
end)
module Json_bool = Defaults (struct
type a = bool
let write buffer b = Buffer.add_char buffer (if b then '1' else '0')
let read buf = 1 = Lexer.read_tag_2 0 1 buf
end)
module Json_unit = Defaults (struct
type a = unit
let write buffer () = Buffer.add_char buffer '0'
let read buf = ignore (Lexer.read_tag_1 0 buf)
end)
module Json_int = Defaults (struct
type a = int
let write buffer i = Printf.bprintf buffer "%d" i
let read buf = Lexer.read_int buf
end)
module Json_int32 = Defaults (struct
type a = int32
let write buffer i = Printf.bprintf buffer "%ld" i
let read buf = Lexer.read_int32 buf
end)
module Json_int64 = Defaults (struct
type a = int64
let mask24 = Int64.of_int 0xffffff
let mask16 = Int64.of_int 0xffff
let write buffer i =
Printf.bprintf
buffer
"[255,%Ld,%Ld,%Ld]"
(Int64.logand i mask24)
(Int64.logand (Int64.shift_right i 24) mask24)
(Int64.logand (Int64.shift_right i 48) mask16)
let read buf =
Lexer.read_lbracket buf;
ignore (Lexer.read_tag_1 255 buf);
Lexer.read_comma buf;
let h1 = Lexer.read_int64 buf in
Lexer.read_comma buf;
let h2 = Int64.shift_left (Lexer.read_int64 buf) 24 in
Lexer.read_comma buf;
let h3 = Int64.shift_left (Lexer.read_int64 buf) 48 in
Lexer.read_rbracket buf;
Int64.logor h3 (Int64.logor h2 h1)
end)
module Json_nativeint = Json_undef (struct
type a = nativeint
end)
module Json_float = Defaults (struct
type a = float
let write buffer f =
let s = Printf.sprintf "%.15g" f in
if Poly.(float_of_string s = f)
then Buffer.add_string buffer s
else Printf.bprintf buffer "%.17g" f
let read buf = Lexer.read_number buf
end)
module Json_string = Defaults (struct
type a = string
let write buffer s =
Buffer.add_char buffer '\"';
for i = 0 to String.length s - 1 do
match s.[i] with
| '\"' -> Buffer.add_string buffer "\\\""
| '\\' -> Buffer.add_string buffer "\\\\"
| '\b' -> Buffer.add_string buffer "\\b"
| '\x0C' -> Buffer.add_string buffer "\\f"
| '\n' -> Buffer.add_string buffer "\\n"
| '\r' -> Buffer.add_string buffer "\\r"
| '\t' -> Buffer.add_string buffer "\\t"
| c when Poly.(c <= '\x1F') ->
Printf.bprintf buffer "\\u%04X" (int_of_char c)
| c when Poly.(c < '\x80') -> Buffer.add_char buffer s.[i]
| _c ->
Buffer.add_char buffer (Char.chr (0xC2 lor (Char.code s.[i] lsr 6)));
Buffer.add_char buffer (Char.chr (0x80 lor (Char.code s.[i] land 0x3F)))
done;
Buffer.add_char buffer '\"'
let read buf = Lexer.read_string buf
end)
let read_list f buf =
let rec aux l c =
match Lexer.read_case buf with
| `Cst 0 ->
for _i = c downto 1 do
Lexer.read_rbracket buf
done;
List.rev l
| `NCst 0 ->
Lexer.read_comma buf;
let x = f buf in
Lexer.read_comma buf;
aux (x :: l) (succ c)
| _ -> Lexer.tag_error ~typename:"list" buf
in
aux [] 0
let write_list f buffer xs =
let rec aux l c =
match l with
| [] ->
Buffer.add_char buffer '0';
for _i = c downto 1 do
Buffer.add_char buffer ']'
done
| x :: xs ->
Printf.bprintf buffer "[0,%a," f x;
aux xs (succ c)
in
aux xs 0
module Json_list (A : Json) = Defaults (struct
type a = A.a list
let read = read_list A.read
let write = write_list A.write
end)
let read_ref f buf =
match Lexer.read_case buf with
| `NCst 0 ->
Lexer.read_comma buf;
let x = f buf in
Lexer.read_rbracket buf;
ref x
| _ -> Lexer.tag_error ~typename:"ref" buf
let write_ref f buffer r = Printf.bprintf buffer "[0,%a]" f !r
module Json_ref (A : Json) = Defaults (struct
type a = A.a ref
let write = write_ref A.write
let read = read_ref A.read
end)
let read_option f buf =
match Lexer.read_case buf with
| `Cst 0 -> None
| `NCst 0 ->
Lexer.read_comma buf;
let x = f buf in
Lexer.read_rbracket buf;
Some x
| _ -> Lexer.tag_error ~typename:"option" buf
let write_option f buffer o =
match o with
| None -> Buffer.add_char buffer '0'
| Some x -> Printf.bprintf buffer "[0,%a]" f x
module Json_option (A : Json) = Defaults (struct
type a = A.a option
let read = read_option A.read
let write = write_option A.write
end)
let read_array f buf =
let rec read_list acc buf =
match Lexer.read_comma_or_rbracket buf with
| `RBracket -> acc
| `Comma ->
let x = f buf in
read_list (x :: acc) buf
in
match Lexer.read_case buf with
| `NCst 0 | `NCst 254 -> Array.of_list (List.rev (read_list [] buf))
| _ -> Lexer.tag_error ~typename:"array" buf
let write_array f buffer a =
Buffer.add_string buffer "[0";
for i = 0 to Array.length a - 1 do
Buffer.add_char buffer ',';
f buffer a.(i)
done;
Buffer.add_char buffer ']'
module Json_array (A : Json) = Defaults (struct
type a = A.a array
let read = read_array A.read
let write = write_array A.write
end)