Source file piqi_json_gen.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
module C = Piqi_common
open C.Std
type json = Piqi_json_type.json
let hex n =
Char.chr (
if n < 10 then n + 48
else n + 87
)
let write_special src start stop ob str =
Buffer.add_substring ob src !start (stop - !start);
Buffer.add_string ob str;
start := stop + 1
let write_control_char src start stop ob c =
Buffer.add_substring ob src !start (stop - !start);
Buffer.add_string ob "\\u00";
Buffer.add_char ob (hex (Char.code c lsr 4));
Buffer.add_char ob (hex (Char.code c land 0xf));
start := stop + 1
let finish_string src start ob =
try
Buffer.add_substring ob src !start (String.length src - !start)
with _ ->
Printf.eprintf "src=%S start=%i len=%i\n%!"
src !start (String.length src - !start);
failwith "oops"
let write_string_body ob s =
let start = ref 0 in
for i = 0 to String.length s - 1 do
match s.[i] with
'"' -> write_special s start i ob "\\\""
| '\\' -> write_special s start i ob "\\\\"
| '\b' -> write_special s start i ob "\\b"
| '\012' -> write_special s start i ob "\\f"
| '\n' -> write_special s start i ob "\\n"
| '\r' -> write_special s start i ob "\\r"
| '\t' -> write_special s start i ob "\\t"
| '\x00'..'\x1F'
| '\x7F' as c -> write_control_char s start i ob c
| _ -> ()
done;
finish_string s start ob
let write_string ob s =
Buffer.add_char ob '"';
write_string_body ob s;
Buffer.add_char ob '"'
let json_string_of_string s =
let ob = Buffer.create 10 in
write_string ob s;
Buffer.contents ob
let json_string_of_float x =
match Pervasives.classify_float x with
| FP_nan ->
"\"NaN\""
| FP_infinite ->
if x > 0. then "\"Infinity\"" else "\"-Infinity\""
| _ ->
Piq_gen.string_of_float x
let write_float ob x =
match Pervasives.classify_float x with
| FP_nan | FP_infinite ->
Buffer.add_string ob (json_string_of_float x)
| _ ->
Piq_gen.write_float ob x
let test_float () =
let l = [ 0.; 1.; -1. ] in
let l = l @ List.map (fun x -> 2. *. x +. 1.) l in
let l = l @ List.map (fun x -> x /. sqrt 2.) l in
let l = l @ List.map (fun x -> x *. sqrt 3.) l in
let l = l @ List.map cos l in
let l = l @ List.map (fun x -> x *. 1.23e50) l in
let l = l @ [ infinity; neg_infinity ] in
List.iter (
fun x ->
let s = Printf.sprintf "%.17g" x in
let y = float_of_string s in
Printf.printf "%g %g %S %B\n" x y s (x = y)
)
l
let uint64_to_string x =
Printf.sprintf "%Lu" x
let use_indent = ref true
let indent_level = ref 0
let indent ob =
if !use_indent
then (
Buffer.add_char ob '\n';
for i = 1 to !indent_level
do Buffer.add_string ob " "
done
)
let rec iter2_aux f_elt f_sep x = function
[] -> ()
| y :: l ->
f_sep x;
indent x;
f_elt x y;
iter2_aux f_elt f_sep x l
let iter2 f_elt f_sep x = function
[] -> ()
| y :: l ->
indent x;
f_elt x y;
iter2_aux f_elt f_sep x l
let f_sep ob =
Buffer.add_char ob ','
let rec write_json ob (x : json) =
match x with
`Null () -> Buffer.add_string ob "null"
| `Bool b -> Buffer.add_string ob (if b then "true" else "false")
| `Int i -> Buffer.add_string ob (Int64.to_string i)
| `Uint i -> Buffer.add_string ob (uint64_to_string i)
| `Intlit s -> Buffer.add_string ob s
| `Float f -> write_float ob f
| `Floatlit s -> Buffer.add_string ob s
| `String s -> write_string ob s
| `Stringlit s -> Buffer.add_string ob s
| `Assoc l -> write_assoc ob l
| `List l -> write_list ob l
and write_assoc ob l =
let f_elt ob (s, x) =
write_string ob s;
Buffer.add_char ob ':';
if !use_indent then Buffer.add_char ob ' ';
write_json ob x
in
Buffer.add_char ob '{';
incr indent_level;
iter2 f_elt f_sep ob l;
decr indent_level;
if l <> [] then indent ob;
Buffer.add_char ob '}';
and write_list ob l =
Buffer.add_char ob '[';
incr indent_level;
iter2 write_json f_sep ob l;
decr indent_level;
if l <> [] then indent ob;
Buffer.add_char ob ']'
let to_buffer ?(indent=false) ob x =
use_indent := indent;
write_json ob x
let to_string ?buf ?(len = 256) ?(indent=false) x =
let ob =
match buf with
None -> Buffer.create len
| Some ob ->
Buffer.clear ob;
ob
in
to_buffer ob x ~indent;
let s = Buffer.contents ob in
Buffer.clear ob;
s
let to_channel ?buf ?len ?(indent=false) oc x =
let ob =
match buf with
None -> Buffer.create 100
| Some ob -> ob
in
to_buffer ob x ~indent;
Buffer.output_buffer oc ob
open Printf
open Easy_format
let array = list
let record = list
let tuple = { list with
space_after_opening = false;
space_before_closing = false;
align_closing = false }
let variant = { list with
space_before_closing = false; }
let rec format (x : json) =
match x with
`Null () -> Atom ("null", atom)
| `Bool x -> Atom ((if x then "true" else "false"), atom)
| `Int i -> Atom (Int64.to_string i, atom)
| `Uint i -> Atom (uint64_to_string i, atom)
| `Float x ->
let s = json_string_of_float x in
Atom (s, atom)
| `String s -> Atom (json_string_of_string s, atom)
| `Intlit s
| `Floatlit s
| `Stringlit s -> Atom (s, atom)
| `List [] -> Atom ("[]", atom)
| `List l -> List (("[", ",", "]", array), List.map format l)
| `Assoc [] -> Atom ("{}", atom)
| `Assoc l -> List (("{", ",", "}", record), List.map format_field l)
and format_field (name, x) =
let s = sprintf "%s:" (json_string_of_string name) in
Label ((Atom (s, atom), label), format x)
let pretty_to_buffer ?(indent=false) buf x =
if indent
then to_buffer buf x ~indent
else Easy_format.Pretty.to_buffer buf (format x)
let pretty_to_string ?(indent=false) x =
let buf = Buffer.create 256 in
pretty_to_buffer buf x ~indent;
Buffer.contents buf
let pretty_to_channel ?(indent=false) oc x =
if indent
then to_channel oc x ~indent
else Easy_format.Pretty.to_channel oc (format x);
output_char oc '\n'