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
|
con json a = {ToJson : a -> string,
FromJson : string -> a * string}
fun mkJson [a] (x : {ToJson : a -> string,
FromJson : string -> a * string}) = x
fun skipSpaces s =
let
val len = String.length s
fun skip i =
if i >= len then
""
else
let
val ch = String.sub s i
in
if Char.isSpace ch then
skip (i+1)
else
String.substring s {Start = i, Len = len-i}
end
in
skip 0
end
fun toJson [a] (j : json a) : a -> string = j.ToJson
fun fromJson' [a] (j : json a) : string -> a * string = j.FromJson
fun fromJson [a] (j : json a) (s : string) : a =
let
val (v, s') = j.FromJson (skipSpaces s)
in
if String.all Char.isSpace s' then
v
else
error <xml>Extra content at end of JSON record: {[s']}</xml>
end
fun escape s =
let
fun esc s =
case s of
"" => "\""
| _ =>
let
val ch = String.sub s 0
in
(case ch of
#"\n" => "\\n"
| #"\r" => "\\r"
| #"\t" => "\\t"
| #"\"" => "\\\""
| #"\'" => "\\\'"
| #"\\" => "\\\\"
| #"/" => "\\/"
| x => String.str ch
) ^ esc (String.suffix s 1)
end
in
"\"" ^ esc s
end
fun unescape s =
let
val len = String.length s
fun findEnd i =
if i >= len then
error <xml>JSON unescape: string ends before quote: {[s]}</xml>
else
let
val ch = String.sub s i
in
case ch of
#"\"" => i
| #"\\" =>
if i+1 >= len then
error <xml>JSON unescape: Bad escape sequence: {[s]}</xml>
else
findEnd (i+2)
| _ => findEnd (i+1)
end
val last = findEnd 1
fun unesc i =
if i >= last then
""
else
let
val ch = String.sub s i
in
case ch of
#"\\" =>
if i+1 >= len then
error <xml>JSON unescape: Bad escape sequence: {[s]}</xml>
else
(case String.sub s (i+1) of
#"n" => "\n"
| #"r" => "\r"
| #"t" => "\t"
| #"\"" => "\""
| #"\'" => "\'"
| #"\\" => "\\"
| #"/" => "/"
| x => error <xml>JSON unescape: Bad escape char: {[x]}</xml>)
^
unesc (i+2)
| _ => String.str ch ^ unesc (i+1)
end
in
if len = 0 || String.sub s 0 <> #"\"" then
error <xml>JSON unescape: String doesn't start with double quote: {[s]}</xml>
else
(unesc 1, String.substring s {Start = last+1, Len = len-last-1})
end
val json_string = {ToJson = escape,
FromJson = unescape}
fun numIn [a] (_ : read a) s : a * string =
let
val len = String.length s
fun findEnd i =
if i >= len then
i
else
let
val ch = String.sub s i
in
if Char.isDigit ch || ch = #"-" || ch = #"." || ch = #"E" || ch = #"e" then
findEnd (i+1)
else
i
end
val last = findEnd 0
in
(readError (String.substring s {Start = 0, Len = last}), String.substring s {Start = last, Len = len-last})
end
fun json_num [a] (_ : show a) (_ : read a) : json a = {ToJson = show,
FromJson = numIn}
val json_int = json_num
val json_float = json_num
val json_bool = {ToJson = fn b => if b then "true" else "false",
FromJson = fn s => if String.isPrefix {Full = s, Prefix = "true"} then
(True, String.substring s {Start = 4, Len = String.length s - 4})
else if String.isPrefix {Full = s, Prefix = "false"} then
(False, String.substring s {Start = 5, Len = String.length s - 5})
else
error <xml>JSON: bad boolean string: {[s]}</xml>}
fun json_option [a] (j : json a) : json (option a) =
{ToJson = fn v => case v of
None => "null"
| Some v => j.ToJson v,
FromJson = fn s => if String.isPrefix {Full = s, Prefix = "null"} then
(None, String.substring s {Start = 4, Len = String.length s - 4})
else
let
val (v, s') = j.FromJson s
in
(Some v, s')
end}
fun json_list [a] (j : json a) : json (list a) =
let
fun toJ' (ls : list a) : string =
case ls of
[] => ""
| x :: ls => "," ^ toJson j x ^ toJ' ls
fun toJ (x : list a) : string =
case x of
[] => "[]"
| x :: [] => "[" ^ toJson j x ^ "]"
| x :: ls => "[" ^ toJson j x ^ toJ' ls ^ "]"
fun fromJ (s : string) : list a * string =
let
fun fromJ' (s : string) : list a * string =
if String.length s = 0 then
error <xml>JSON list doesn't end with ']'</xml>
else
let
val ch = String.sub s 0
in
case ch of
#"]" => ([], String.substring s {Start = 1, Len = String.length s - 1})
| _ =>
let
val (x, s') = j.FromJson s
val s' = skipSpaces s'
val s' = if String.length s' = 0 then
error <xml>JSON list doesn't end with ']'</xml>
else if String.sub s' 0 = #"," then
skipSpaces (String.substring s' {Start = 1, Len = String.length s' - 1})
else
s'
val (ls, s'') = fromJ' s'
in
(x :: ls, s'')
end
end
in
if String.length s = 0 || String.sub s 0 <> #"[" then
error <xml>JSON list doesn't start with '[': {[s]}</xml>
else
fromJ' (skipSpaces (String.substring s {Start = 1, Len = String.length s - 1}))
end
in
{ToJson = toJ,
FromJson = fromJ}
end
fun skipOne s =
let
fun skipOne s dquote squote brace bracket =
if String.length s = 0 then
s
else
let
val ch = String.sub s 0
val rest = String.suffix s 1
in
case ch of
#"\"" => skipOne rest (not dquote) squote brace bracket
| #"'" => skipOne rest dquote (not squote) brace bracket
| #"\\" => if String.length s >= 2 then
skipOne (String.suffix s 2) dquote squote brace bracket
else
""
| #"{" => skipOne rest dquote squote (brace + 1) bracket
| #"}" => if brace = 0 then
s
else
skipOne rest dquote squote (brace - 1) bracket
| #"[" => skipOne rest dquote squote brace (bracket + 1)
| #"]" =>
if bracket = 0 then
s
else
skipOne rest dquote squote brace (bracket - 1)
| #"," =>
if not dquote && not squote && brace = 0 && bracket = 0 then
s
else
skipOne rest dquote squote brace bracket
| _ => skipOne rest dquote squote brace bracket
end
in
skipOne s False False 0 0
end
fun json_record [ts ::: {Type}] (fl : folder ts) (jss : $(map json ts)) (names : $(map (fn _ => string) ts)) : json $ts =
{ToJson = fn r => "{" ^ @foldR3 [json] [fn _ => string] [ident] [fn _ => string]
(fn [nm ::_] [t ::_] [r ::_] [[nm] ~ r] (j : json t) name v acc =>
escape name ^ ":" ^ j.ToJson v ^ (case acc of
"" => ""
| acc => "," ^ acc))
"" fl jss names r ^ "}",
FromJson = fn s =>
let
fun fromJ s (r : $(map option ts)) : $(map option ts) * string =
if String.length s = 0 then
error <xml>JSON object doesn't end in brace</xml>
else if String.sub s 0 = #"}" then
(r, String.substring s {Start = 1, Len = String.length s - 1})
else let
val (name, s') = unescape s
val s' = skipSpaces s'
val s' = if String.length s' = 0 || String.sub s' 0 <> #":" then
error <xml>No colon after JSON object field name</xml>
else
skipSpaces (String.substring s' {Start = 1, Len = String.length s' - 1})
val (r, s') = @foldR2 [json] [fn _ => string] [fn ts => $(map option ts) -> $(map option ts) * string]
(fn [nm ::_] [t ::_] [r ::_] [[nm] ~ r] (j : json t) name' acc r =>
if name = name' then
let
val (v, s') = j.FromJson s'
in
(r -- nm ++ {nm = Some v}, s')
end
else
let
val (r', s') = acc (r -- nm)
in
(r' ++ {nm = r.nm}, s')
end)
(fn r => (r, skipOne s'))
fl jss names r
val s' = skipSpaces s'
val s' = if String.length s' <> 0 && String.sub s' 0 = #"," then
skipSpaces (String.substring s' {Start = 1, Len = String.length s' - 1})
else
s'
in
fromJ s' r
end
in
if String.length s = 0 || String.sub s 0 <> #"{" then
error <xml>JSON record doesn't begin with brace</xml>
else
let
val (r, s') = fromJ (skipSpaces (String.substring s {Start = 1, Len = String.length s - 1}))
(@map0 [option] (fn [t ::_] => None) fl)
in
(@map2 [option] [fn _ => string] [ident] (fn [t] (v : option t) name =>
case v of
None => error <xml>Missing JSON object field {[name]}</xml>
| Some v => v) fl r names, s')
end
end}
fun destrR [K] [f :: K -> Type] [fr :: K -> Type] [t ::: Type]
(f : p :: K -> f p -> fr p -> t)
[r ::: {K}] (fl : folder r) (v : variant (map f r)) (r : $(map fr r)) : t =
match v
(@Top.mp [fr] [fn p => f p -> t]
(fn [p] (m : fr p) (v : f p) => f [p] v m)
fl r)
fun json_variant [ts ::: {Type}] (fl : folder ts) (jss : $(map json ts)) (names : $(map (fn _ => string) ts)) : json (variant ts) =
{ToJson = fn r => let val jnames = @map2 [json] [fn _ => string] [fn x => json x * string]
(fn [t] (j : json t) (name : string) => (j, name)) fl jss names
in @destrR [ident] [fn x => json x * string]
(fn [p ::_] (v : p) (j : json p, name : string) =>
"{" ^ escape name ^ ":" ^ j.ToJson v ^ "}") fl r jnames
end,
FromJson = fn s =>
if String.length s = 0 || String.sub s 0 <> #"{" then
error <xml>JSON variant doesn't begin with brace</xml>
else
let
val (name, s') = unescape (skipSpaces (String.suffix s 1))
val s' = skipSpaces s'
val s' = if String.length s' = 0 || String.sub s' 0 <> #":" then
error <xml>No colon after JSON object field name</xml>
else
skipSpaces (String.substring s' {Start = 1, Len = String.length s' - 1})
val (r, s') = (@foldR2 [json] [fn _ => string]
[fn ts => ts' :: {Type} -> [ts ~ ts'] => variant (ts ++ ts') * string]
(fn [nm ::_] [t ::_] [rest ::_] [[nm] ~ rest] (j : json t) name'
(acc : ts' :: {Type} -> [rest ~ ts'] => variant (rest ++ ts') * string) [fwd ::_] [[nm = t] ++ rest ~ fwd] =>
if name = name'
then
let val (v, s') = j.FromJson s'
in (make [nm] v, s')
end
else acc [fwd ++ [nm = t]]
)
(fn [fwd ::_] [[] ~ fwd] => error <xml>Unknown JSON object variant name {[name]}</xml>)
fl jss names) [[]] !
val s' = skipSpaces s'
val s' = if String.length s' <> 0 && String.sub s' 0 = #"," then
skipSpaces (String.substring s' {Start = 1, Len = String.length s' - 1})
else
s'
in
if String.length s' = 0 then
error <xml>JSON object doesn't end in brace</xml>
else if String.sub s' 0 = #"}" then
(r, String.substring s' {Start = 1, Len = String.length s' - 1})
else error <xml>Junk after JSON value in object</xml>
end
}
val json_unit : json unit = json_record {} {}
functor Recursive (M : sig
con t :: Type -> Type
val json_t : a ::: Type -> json a -> json (t a)
end) = struct
open M
datatype r = Rec of t r
fun rTo (Rec x) = (json_t {ToJson = rTo,
FromJson = fn _ => error <xml>Tried to FromJson in ToJson!</xml>}).ToJson x
fun rFrom s =
let
val (x, s') = (json_t {ToJson = fn _ => error <xml>Tried to ToJson in FromJson!</xml>,
FromJson = rFrom}).FromJson s
in
(Rec x, s')
end
val json_r = {ToJson = rTo, FromJson = rFrom}
end
|