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
type 'a view =
[ `O of (string * 'a) list
| `A of 'a list
| `Bool of bool
| `Float of float
| `String of string
| `Null ]
type 'a repr_uid = 'a option ref
let repr_uid () = ref None
let eq_repr_uid : 'a -> 'a repr_uid -> 'b repr_uid -> 'b option =
fun a ta tb ->
tb := None ;
ta := Some a ;
!tb
module type Repr = sig
type value
val view : value -> value view
val repr : value view -> value
val repr_uid : value repr_uid
end
module Ezjsonm = struct
type value =
[ `O of (string * value) list
| `A of value list
| `Bool of bool
| `Float of float
| `String of string
| `Null ]
let view v = v
let repr v = v
let repr_uid = repr_uid ()
end
type ezjsonm = Ezjsonm.value
module Yojson = struct
type value =
[ `Bool of bool
| `Assoc of (string * value) list
| `Float of float
| `Int of int
| `Intlit of string
| `List of value list
| `Null
| `String of string
| `Tuple of value list
| `Variant of string * value option ]
let view = function
| `Intlit i ->
`String i
| `Tuple l ->
`A l
| `Variant (label, Some x) ->
`A [`String label; x]
| `Variant (label, None) ->
`String label
| `Assoc l ->
`O l
| `List l ->
`A l
| `Int i ->
`Float (float i)
| `Float f ->
`Float f
| `String s ->
`String s
| `Null ->
`Null
| `Bool b ->
`Bool b
let repr = function
| `O l ->
`Assoc l
| `A l ->
`List l
| `Bool b ->
`Bool b
| `Float f ->
`Float f
| `String s ->
`String s
| `Null ->
`Null
let repr_uid = repr_uid ()
end
type yojson = Yojson.value
let convert :
type tt tf.
(module Repr with type value = tf) ->
(module Repr with type value = tt) ->
tf ->
tt =
fun (module Repr_f) (module Repr_t) v ->
match eq_repr_uid v Repr_f.repr_uid Repr_t.repr_uid with
| Some r ->
r
| None ->
let rec conv v =
match Repr_f.view v with
| (`Float _ | `Bool _ | `String _ | `Null) as v ->
Repr_t.repr v
| `A values ->
Repr_t.repr (`A (List.map conv values))
| `O values ->
Repr_t.repr (`O (List.map (fun (k, v) -> (k, conv v)) values))
in
conv v
let pp_string ppf s =
Format.fprintf ppf "\"" ;
for i = 0 to String.length s - 1 do
match s.[i] with
| '\"' ->
Format.fprintf ppf "\\\""
| '\n' ->
Format.fprintf ppf "\\n"
| '\r' ->
Format.fprintf ppf "\\r"
| '\b' ->
Format.fprintf ppf "\\b"
| '\t' ->
Format.fprintf ppf "\\t"
| '\\' ->
Format.fprintf ppf "\\\\"
| '\x00' .. '\x1F' as c ->
Format.fprintf ppf "\\u%04x" (Char.code c)
| c ->
Format.fprintf ppf "%c" c
done ;
Format.fprintf ppf "\""
let pp ?(compact = false) ?(pp_string = pp_string) (type value)
(module Repr : Repr with type value = value) ppf (v : value) =
let rec pp_compact ppf v =
match Repr.view v with
| `O l ->
let pp_sep ppf () = Format.fprintf ppf "," in
let pp_field ppf (name, v) =
Format.fprintf ppf "%a:%a" pp_string name pp_compact v
in
Format.fprintf ppf "{%a}" (Format.pp_print_list ~pp_sep pp_field) l
| `A l ->
let pp_sep ppf () = Format.fprintf ppf "," in
Format.fprintf ppf "[%a]" (Format.pp_print_list ~pp_sep pp_compact) l
| `Bool true ->
Format.fprintf ppf "true"
| `Bool false ->
Format.fprintf ppf "false"
| `Float f ->
let (fract, intr) = modf f in
if fract = 0.0 then Format.fprintf ppf "%.0f" intr
else Format.fprintf ppf "%g" f
| `String s ->
pp_string ppf s
| `Null ->
Format.fprintf ppf "null"
in
let rec pp_box ppf v =
match Repr.view v with
| `O [] ->
Format.fprintf ppf "{}"
| `O l ->
let pp_sep ppf () = Format.fprintf ppf ",@ " in
let pp_field ppf (name, v) =
Format.fprintf ppf "@[<hov 2>%a:@ %a@]" pp_string name pp_box v
in
Format.fprintf
ppf
"@[<hov 2>{ %a }@]"
(Format.pp_print_list ~pp_sep pp_field)
l
| `A [] ->
Format.fprintf ppf "[]"
| `A l ->
let pp_sep ppf () = Format.fprintf ppf ",@ " in
Format.fprintf
ppf
"@[<hov 2>[ %a ]@]"
(Format.pp_print_list ~pp_sep pp_box)
l
| _ ->
pp_compact ppf v
in
if compact then pp_compact ppf v else pp_box ppf v
let from_yojson non_basic =
let rec to_basic non_basic =
match non_basic with
| `Intlit i ->
`String i
| `Tuple l ->
`List (List.map to_basic l)
| `Variant (label, Some x) ->
`List [`String label; to_basic x]
| `Variant (label, None) ->
`String label
| `Assoc l ->
`Assoc (List.map (fun (key, value) -> (key, to_basic value)) l)
| `List l ->
`List (List.map to_basic l)
| `Int i ->
`Int i
| `Float f ->
`Float f
| `String s ->
`String s
| `Null ->
`Null
| `Bool b ->
`Bool b
in
let rec to_value : 'a. _ -> ([> ezjsonm] as 'a) = function
| `List l ->
`A (List.map to_value l)
| `Assoc l ->
`O (List.map (fun (key, value) -> (key, to_value value)) l)
| `Int i ->
`Float (float_of_int i)
| `Float f ->
`Float f
| `Null ->
`Null
| `String s ->
`String s
| `Bool b ->
`Bool b
in
to_basic (non_basic :> yojson) |> to_value
let to_yojson json =
let rec aux : 'a. _ -> ([> yojson] as 'a) = function
| `A values ->
`List (List.map aux values)
| `O values ->
`Assoc (List.map (fun (k, v) -> (k, aux v)) values)
| `Float f ->
let (fract, intr) = modf f in
let max_intf = float 0x3F_FF_FF_FF in
let min_intf = ~-.max_intf -. 1. in
if fract = 0.0 then
if intr >= min_intf && intr <= max_intf then `Int (int_of_float intr)
else `Intlit (Printf.sprintf "%.0f" intr)
else `Float f
| `Bool b ->
`Bool b
| `String s ->
`String s
| `Null ->
`Null
in
aux (json :> ezjsonm)
type any = Value_with_repr : (module Repr with type value = 'a) * 'a -> any
let pp_any ?compact ?pp_string () ppf (Value_with_repr (repr, v)) =
pp ?compact ?pp_string repr ppf v
let any_to_repr : type tt. (module Repr with type value = tt) -> any -> tt =
fun repr_t (Value_with_repr (repr_f, v)) -> convert repr_f repr_t v
let repr_to_any repr v = Value_with_repr (repr, v)
let from_any : 'a. any -> ([> ezjsonm] as 'a) =
fun repr ->
let res = any_to_repr (module Ezjsonm) repr in
(res : ezjsonm :> [> ezjsonm])
let to_any v = Value_with_repr ((module Ezjsonm), (v :> ezjsonm))