-
Notifications
You must be signed in to change notification settings - Fork 1
/
jsonpatType.ml
329 lines (286 loc) · 9.72 KB
/
jsonpatType.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
(*
Copyright (c) 2010, Mylife.com
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the
distribution.
3. Neither the name of Mylife.com nor the names of
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*)
open JsonpatUtil
open JsonpatAst
let threshold = ref 0
type t = ty list
and ty =
| Tobject of (string * t) list
| Ttuple of t list
| Talgebric of (string * t) list
| Tarray of t
| Tint of Big_int.big_int * Big_int.big_int
| Tstring
| Tcstr of SSet.t
| Tfloat
| Tbool
| Tnull
| Tid of string
and ft = T of t | F of t (* Type flow *)
(* Please note that Tcstr must have the same order as Tstring *)
(* That's because we want them to be unified *)
let order = function
| Tobject _ -> 0
| Tarray _ -> 1
| Tint _ -> 2
| Tcstr _ -> 3
| Tstring -> 3
| Tfloat -> 4
| Tbool -> 5
| Tnull -> 6
| Ttuple _ -> 7
| Talgebric _ -> 8
| Tid _ -> assert false
let compare x y = order x - order y
let rec unify l1 l2 =
match l1, l2 with
| [], l | l, [] -> l
| x1 :: rl1, x2 :: rl2 ->
let n = compare x1 x2 in
if n < 0
then x1 :: unify rl1 l2
else if n > 0
then x2 :: unify l1 rl2
else unify_t x1 x2 (unify rl1 rl2)
and unify_t x y acc =
match x, y with
| Tid _, _ | _, Tid _ -> assert false
| Tnull, Tnull -> Tnull :: acc
| Tobject fds1, Tobject fds2 -> Tobject (unify_fields true fds1 fds2) :: acc
| Tstring, Tstring -> Tstring :: acc
| Tint (x1, x2), Tint (y1, y2) ->
Tint (Big_int.min_big_int x1 y1, Big_int.max_big_int x2 y2) :: acc
| Tfloat, Tfloat -> Tfloat :: acc
| Tbool, Tbool -> Tbool :: acc
| Tcstr s1, Tcstr s2 ->
let s = SSet.union s1 s2 in
if SSet.cardinal s > !threshold
then Tstring :: acc
else Tcstr s :: acc
| Tarray t1, Tarray t2 -> Tarray (unify t1 t2) :: acc
| Tcstr s, Tstring
| Tstring , Tcstr s -> Tstring :: acc
| Talgebric l1, Talgebric l2 -> Talgebric (unify_fields false l1 l2) :: acc
| Ttuple l1, Ttuple l2 ->
let l = List.fold_right2 (fun x y acc -> unify x y :: acc) l1 l2 [] in
Ttuple l :: acc
| x, y when compare x y < 0 -> x :: y :: acc
| x, y -> y :: x :: acc
and unify_fields add_null l1 l2 =
match l1, l2 with
| l, [] | [], l -> if add_null then List.fold_right option_field l [] else l
| (x1, t1) :: rl1, (x2, _) :: _ when String.compare x1 x2 < 0 ->
let rl = unify_fields add_null rl1 l2 in
if add_null
then option_field (x1, t1) rl
else (x1, t1) :: rl
| (x1, _) :: _, (x2, t2) :: rl2 when String.compare x1 x2 > 0 ->
let rl = unify_fields add_null l1 rl2 in
if add_null
then option_field (x2, t2) rl
else (x2, t2) :: rl
| (x1, t1) :: rl1, (_, t2) :: rl2 ->
(x1, unify t1 t2) :: (unify_fields add_null rl1 rl2)
and option_field (s, l) acc = (s, unify [Tnull] l) :: acc
let rec type_value = function
| Object l -> [Tobject (type_object l)]
| Array l -> [Tarray (type_array l)]
| Tuple l -> [Ttuple (List.map type_value l)]
| Variant (s, x) -> [Talgebric [s, type_value x]]
| String s -> [Tcstr (SSet.singleton s)]
| Int n -> [Tint (n, n)]
| Float _ -> [Tfloat]
| Bool _ -> [Tbool]
| _ -> [Tnull]
and type_object l =
List.sort (fun (x,_) (y,_) -> String.compare x y)
(List.map (fun (x,y) -> x, type_value y) (elements l))
and type_array l = List.fold_left (fun acc x -> unify (type_value x) acc) [] l
(*let rec type_expr env id = function
| Any -> id env
| Val v -> type_value v
| Type _ -> failwith "TODO"
| Id x -> id x
| When _ -> failwith "TODO"
| Arrow (e1, e2) ->
| Semi of expr * expr
| Binop of bop * expr * expr
| Earray of expr list
| Etuple of expr list
| Evariant of string * expr
| Eobject of field list
*)
module Type = struct
type t = ty
let rec compare t1 t2 =
match t1, t2 with
| Tobject t1, Tobject t2 -> compare_fields t1 t2
| Tarray t1 , Tarray t2 -> compare_list t1 t2
| Tint _ , Tint _
| Tstring , Tstring
| Tcstr _ , Tstring
| Tstring , Tcstr _
| Tfloat , Tfloat
| Tbool , Tbool
| Tnull , _
| _ , Tnull -> 0
| Tint _, _ -> -1
| _, Tint _ -> 1
| x, y -> Pervasives.compare x y
and compare_fields t1 t2 =
match t1, t2 with
| [], _
| _, [] -> 0
| (s1,x1) :: rl1, (s2, x2) :: rl2 ->
let c = String.compare s1 s2 in
if c = 0
then let c = compare_list x1 x2 in
if c = 0
then compare_fields rl1 rl2
else c
else c
and compare_list l1 l2 =
match l1, l2 with
| [], [] -> 0
| [], _ -> -1
| _, [] -> 1
| x1 :: rl1, x2 :: rl2 ->
let c = compare x1 x2 in
if c = 0 then compare_list rl1 rl2
else c
end
module TMap = Map.Make (Type)
module Pp: sig
val print: (string -> unit) -> t -> unit
end = struct
let soi = string_of_int
let string x =
"\""^(if String.length x < 10
then x
else String.sub x 0 7 ^ "...")^"\""
let find x (t1, t2, t3, acc, rt1) =
let name = TMap.find x t1 in
let rt1 = SMap.add name (unify (SMap.find name rt1) [x]) rt1 in
(t1,t2,t3,acc,rt1), name
let add ty x (t1, t2, t3, acc, rt1) =
let x = if SSet.mem x t3 then "t" else x in
let name_n = try SMap.find x t2 with Not_found -> 0 in
let name_n = name_n + 1 in
let t2 = SMap.add x name_n t2 in
let name = if name_n = 1 then x else x^(soi name_n) in
let rt1 = SMap.add name [ty] rt1 in
(TMap.add ty name t1, t2, t3, name :: acc, rt1), name
let keywl = ["bool" ; "float" ; "type" ; "int" ; "array" ; "main" ; "string"]
let keyws = List.fold_right SSet.add keywl SSet.empty
let empty = TMap.empty, SMap.empty, keyws, [], SMap.empty
let rec make_t name l t =
let t, l = List.fold_right (make_acc name) l (t, []) in
let l1, l2 = List.partition (function Talgebric _ -> true | _ -> false) l in
match l1 with
| [] -> t, l
| [Talgebric _ as ty] ->
let t, name = add ty name t in
let l = Tid name :: l2 in
t, l
| _ -> assert false
and make_ty name t = function
| Tint _ | Tstring
| Tfloat | Tbool | Tnull
| Tid _ as x -> t, x
| Tobject fdl as x ->
(try
let t, name = find x t in
t, Tid name
with Not_found ->
let t, fdl = List.fold_right field fdl (t, []) in
let ty = Tobject fdl in
let t, name = add ty name t in
t, Tid name)
| Tarray l ->
let t, l = make_t name l t in
t, Tarray l
| Ttuple l ->
let t, l = List.fold_right (make_ty_acc name) l (t, []) in
t, Ttuple l
| Talgebric l ->
let t, l = List.fold_right field l (t, []) in
t, Talgebric l
| Tcstr _ as x ->
try
let t, name = find x t in
t, Tid name
with Not_found ->
let t, name = add x name t in
t, Tid name
and make_ty_acc name x (t, acc) = let t, x = make_t name x t in t, x :: acc
and make_acc name x (t, acc) = let t, x = make_ty name t x in t, x :: acc
and field (s, x) (t, acc) =
let t, x = make_t (s^"_t") x t in
t, (s, x) :: acc
let rec print_list f sep o = function
| [] -> ()
| [x] -> f o x
| x :: rl -> f o x ; o sep ; print_list f sep o rl
let rec print_t o t = print_list print_ty " | " o t
and print_ty o = function
| Tobject fdl -> o "{\n" ; List.iter (print_field o) fdl ; o "}"
| Tarray l -> o "(" ; print_t o l ; o ")" ; o " array"
| Ttuple l -> o "(" ; print_list print_t " * " o l ; o ")"
| Talgebric l -> o "\n" ; List.iter (print_variant o) l
| Tint (n1, n2) ->
o "int[" ; o (Big_int.string_of_big_int n1) ; o "," ;
o (Big_int.string_of_big_int n2) ; o "]"
| Tstring -> o "string"
| Tcstr s -> o "\n " ; print_set o 1 (SSet.elements s)
| Tfloat -> o "float"
| Tbool -> o "bool"
| Tnull -> o "null"
| Tid s -> o s
and print_set o n = function
| [] -> ()
| [x] -> o (string x)
| x :: rl ->
o (string x) ;
o " | " ; if n mod 4 = 0 then o "\n " ;
print_set o (n+1) rl
and print_field o (s, x) =
o " " ; o s ; o ": " ; print_t o x ; o " ,\n"
and print_variant o (s, x) =
o " | <" ; o s ; o ">: " ; print_t o x ; o " \n"
let print_def o env n =
let ty = SMap.find n env in
o "and " ; o n ; o " = " ; print_t o ty ; o "\n\n"
let print o t =
let t, ty = make_t "main" t empty in
let _,_,_,defl, env = t in
o "type main = " ; print_t o ty ; o "\n\n" ;
List.iter (print_def o env) defl
end
let show_type s =
let ty = JsonpatFlow.fold (fun acc x -> unify acc (type_value x)) [] s in
Pp.print print_string ty