forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_json_parse.mll
351 lines (303 loc) · 8.4 KB
/
ext_json_parse.mll
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
{
type error =
| Illegal_character of char
| Unterminated_string
| Unterminated_comment
| Illegal_escape of string
| Unexpected_token
| Expect_comma_or_rbracket
| Expect_comma_or_rbrace
| Expect_colon
| Expect_string_or_rbrace
| Expect_eof
(* | Trailing_comma_in_obj *)
(* | Trailing_comma_in_array *)
let fprintf = Format.fprintf
let report_error ppf = function
| Illegal_character c ->
fprintf ppf "Illegal character (%s)" (Char.escaped c)
| Illegal_escape s ->
fprintf ppf "Illegal backslash escape in string or character (%s)" s
| Unterminated_string ->
fprintf ppf "Unterminated_string"
| Expect_comma_or_rbracket ->
fprintf ppf "Expect_comma_or_rbracket"
| Expect_comma_or_rbrace ->
fprintf ppf "Expect_comma_or_rbrace"
| Expect_colon ->
fprintf ppf "Expect_colon"
| Expect_string_or_rbrace ->
fprintf ppf "Expect_string_or_rbrace"
| Expect_eof ->
fprintf ppf "Expect_eof"
| Unexpected_token
->
fprintf ppf "Unexpected_token"
(* | Trailing_comma_in_obj *)
(* -> fprintf ppf "Trailing_comma_in_obj" *)
(* | Trailing_comma_in_array *)
(* -> fprintf ppf "Trailing_comma_in_array" *)
| Unterminated_comment
-> fprintf ppf "Unterminated_comment"
exception Error of Lexing.position * Lexing.position * error
let () =
Printexc.register_printer
(function x ->
match x with
| Error (loc_start,loc_end,error) ->
Some (Format.asprintf
"@[%a:@ %a@ -@ %a)@]"
report_error error
Ext_position.print loc_start
Ext_position.print loc_end
)
| _ -> None
)
type token =
| Comma
| Eof
| False
| Lbrace
| Lbracket
| Null
| Colon
| Number of string
| Rbrace
| Rbracket
| String of string
| True
let error (lexbuf : Lexing.lexbuf) e =
raise (Error (lexbuf.lex_start_p, lexbuf.lex_curr_p, e))
let lexeme_len (x : Lexing.lexbuf) =
x.lex_curr_pos - x.lex_start_pos
let update_loc (lexbuf : Lexing.lexbuf) diff =
let lex_curr_p = lexbuf.lex_curr_p in
lexbuf.lex_curr_p <-
{
lex_curr_p with
pos_lnum = lex_curr_p.pos_lnum + 1;
pos_bol = lex_curr_p.pos_cnum - diff;
}
let char_for_backslash = function
| 'n' -> '\010'
| 'r' -> '\013'
| 'b' -> '\008'
| 't' -> '\009'
| c -> c
let dec_code c1 c2 c3 =
100 * (Char.code c1 - 48) + 10 * (Char.code c2 - 48) + (Char.code c3 - 48)
let hex_code c1 c2 =
let d1 = Char.code c1 in
let val1 =
if d1 >= 97 then d1 - 87
else if d1 >= 65 then d1 - 55
else d1 - 48 in
let d2 = Char.code c2 in
let val2 =
if d2 >= 97 then d2 - 87
else if d2 >= 65 then d2 - 55
else d2 - 48 in
val1 * 16 + val2
let lf = '\010'
}
let lf = '\010'
let lf_cr = ['\010' '\013']
let dos_newline = "\013\010"
let blank = [' ' '\009' '\012']
let digit = ['0'-'9']
let nonzero = ['1'-'9']
let digits = digit +
let frac = '.' digits
let e = ['e' 'E']['+' '-']?
let exp = e digits
let positive_int = (digit | nonzero digits)
let number = '-'? positive_int (frac | exp | frac exp) ?
let hexdigit = digit | ['a'-'f' 'A'-'F']
let comment_start = "/*"
let comment_end = "*/"
rule lex_json buf = parse
| blank + { lex_json buf lexbuf}
| lf | dos_newline {
update_loc lexbuf 0;
lex_json buf lexbuf
}
| comment_start { comment buf lexbuf}
| "true" { True}
| "false" {False}
| "null" {Null}
| "[" {Lbracket}
| "]" {Rbracket}
| "{" {Lbrace}
| "}" {Rbrace}
| "," {Comma}
| ':' {Colon}
| ("//" (_ # lf_cr)*) {lex_json buf lexbuf}
| number { Number (Lexing.lexeme lexbuf)}
| '"' {
let pos = Lexing.lexeme_start_p lexbuf in
scan_string buf pos lexbuf;
let content = (Buffer.contents buf) in
Buffer.clear buf ;
String content
}
| eof {Eof }
| _ as c { error lexbuf (Illegal_character c )}
and comment buf = parse
| comment_end {lex_json buf lexbuf}
| _ {comment buf lexbuf}
| eof {error lexbuf Unterminated_comment}
(* Note this is wrong for JSON conversion *)
(* We should fix it later *)
and scan_string buf start = parse
| '"' { () }
| '\\' lf [' ' '\t']*
{
let len = lexeme_len lexbuf - 2 in
update_loc lexbuf len;
scan_string buf start lexbuf
}
| '\\' dos_newline [' ' '\t']*
{
let len = lexeme_len lexbuf - 3 in
update_loc lexbuf len;
scan_string buf start lexbuf
}
| '\\' (['\\' '\'' '"' 'n' 't' 'b' 'r' ' '] as c)
{
Buffer.add_char buf (char_for_backslash c);
scan_string buf start lexbuf
}
| '\\' (digit as c1) (digit as c2) (digit as c3) as s
{
let v = dec_code c1 c2 c3 in
if v > 255 then
error lexbuf (Illegal_escape s) ;
Buffer.add_char buf (Char.chr v);
scan_string buf start lexbuf
}
| '\\' 'x' (hexdigit as c1) (hexdigit as c2)
{
let v = hex_code c1 c2 in
Buffer.add_char buf (Char.chr v);
scan_string buf start lexbuf
}
| '\\' (_ as c)
{
Buffer.add_char buf '\\';
Buffer.add_char buf c;
scan_string buf start lexbuf
}
| lf
{
update_loc lexbuf 0;
Buffer.add_char buf lf;
scan_string buf start lexbuf
}
| ([^ '\\' '"'] # lf)+
{
let ofs = lexbuf.lex_start_pos in
let len = lexbuf.lex_curr_pos - ofs in
Buffer.add_subbytes buf lexbuf.lex_buffer ofs len;
scan_string buf start lexbuf
}
| eof
{
error lexbuf Unterminated_string
}
{
let parse_json lexbuf =
let buf = Buffer.create 64 in
let look_ahead = ref None in
let token () : token =
match !look_ahead with
| None ->
lex_json buf lexbuf
| Some x ->
look_ahead := None ;
x
in
let push e = look_ahead := Some e in
let rec json (lexbuf : Lexing.lexbuf) : Ext_json_types.t =
match token () with
| True -> True lexbuf.lex_start_p
| False -> False lexbuf.lex_start_p
| Null -> Null lexbuf.lex_start_p
| Number s -> Flo {flo = s; loc = lexbuf.lex_start_p}
| String s -> Str { str = s; loc = lexbuf.lex_start_p}
| Lbracket -> parse_array lexbuf.lex_start_p lexbuf.lex_curr_p [] lexbuf
| Lbrace -> parse_map lexbuf.lex_start_p Map_string.empty lexbuf
| _ -> error lexbuf Unexpected_token
(* Note if we remove [trailing_comma] support
we should report errors (actually more work), for example
{[
match token () with
| Rbracket ->
if trailing_comma then
error lexbuf Trailing_comma_in_array
else
]}
{[
match token () with
| Rbrace ->
if trailing_comma then
error lexbuf Trailing_comma_in_obj
else
]}
*)
and parse_array loc_start loc_finish acc lexbuf
: Ext_json_types.t =
match token () with
| Rbracket ->
Arr {loc_start ; content = Ext_array.reverse_of_list acc ;
loc_end = lexbuf.lex_curr_p }
| x ->
push x ;
let new_one = json lexbuf in
begin match token () with
| Comma ->
parse_array loc_start loc_finish (new_one :: acc) lexbuf
| Rbracket
-> Arr {content = (Ext_array.reverse_of_list (new_one::acc));
loc_start ;
loc_end = lexbuf.lex_curr_p }
| _ ->
error lexbuf Expect_comma_or_rbracket
end
and parse_map loc_start acc lexbuf : Ext_json_types.t =
match token () with
| Rbrace ->
Obj { map = acc ; loc = loc_start}
| String key ->
begin match token () with
| Colon ->
let value = json lexbuf in
begin match token () with
| Rbrace -> Obj {map = Map_string.add acc key value ; loc = loc_start}
| Comma ->
parse_map loc_start (Map_string.add acc key value ) lexbuf
| _ -> error lexbuf Expect_comma_or_rbrace
end
| _ -> error lexbuf Expect_colon
end
| _ -> error lexbuf Expect_string_or_rbrace
in
let v = json lexbuf in
match token () with
| Eof -> v
| _ -> error lexbuf Expect_eof
let parse_json_from_string s =
parse_json (Lexing.from_string s )
let parse_json_from_chan fname in_chan =
let lexbuf =
Ext_position.lexbuf_from_channel_with_fname
in_chan fname in
parse_json lexbuf
let parse_json_from_file s =
let in_chan = open_in s in
let lexbuf =
Ext_position.lexbuf_from_channel_with_fname
in_chan s in
match parse_json lexbuf with
| exception e -> close_in in_chan ; raise e
| v -> close_in in_chan; v
}