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
(** Values are untyped normal forms of terms. *)
open Term_hash
module Custom = Term.Custom
module Methods = Runtime_term.Methods
(** We derive a hash of the environment to invalidate the cache when the builtin
env change. We mostly keep name and methods. *)
type env = (string * t) list
and dynamic_methods = {
hidden_methods : string list;
methods : string -> t option; [@hash.ignore]
}
and t =
| Int of {
pos : Pos.Option.t; [@hash.ignore]
value : int;
methods : t Methods.t;
mutable flags : Flags.flags; [@hash.ignore]
}
| Float of {
pos : Pos.Option.t; [@hash.ignore]
value : float;
methods : t Methods.t;
}
| String of {
pos : Pos.Option.t; [@hash.ignore]
value : string;
methods : t Methods.t;
}
| Bool of {
pos : Pos.Option.t; [@hash.ignore]
value : bool;
methods : t Methods.t;
}
| Null of { pos : Pos.Option.t; [@hash.ignore] methods : t Methods.t }
| Custom of {
pos : Pos.Option.t; [@hash.ignore]
value : Custom.t; [@hash.ignore]
methods : t Methods.t;
dynamic_methods : dynamic_methods option;
mutable flags : Flags.flags; [@hash.ignore]
}
| List of {
pos : Pos.Option.t; [@hash.ignore]
value : t list;
methods : t Methods.t;
mutable flags : Flags.flags; [@hash.ignore]
}
| Tuple of {
pos : Pos.Option.t; [@hash.ignore]
value : t list;
methods : t Methods.t;
mutable flags : Flags.flags; [@hash.ignore]
}
|
Fun of {
pos : Pos.Option.t; [@hash.ignore]
fun_args : (string * string * t option) list;
fun_env : env; [@hash.ignore]
fun_body : Term.t; [@hash.ignore]
methods : t Methods.t;
mutable flags : Flags.flags; [@hash.ignore]
}
|
FFI of {
pos : Pos.Option.t; [@hash.ignore]
ffi_args : (string * string * t option) list;
mutable ffi_fn : env -> t; [@hash.ignore]
methods : t Methods.t;
mutable flags : Flags.flags; [@hash.ignore]
}
[@@deriving hash]
type fun_v = {
fun_args : (string * string * t option) list;
fun_env : env;
fun_body : Term.t;
}
type ffi = { ffi_args : (string * string * t option) list; ffi_fn : env -> t }
type in_value =
[ `Int of int
| `Float of float
| `String of string
| `Bool of bool
| `Null
| `Custom of Custom.t
| `List of t list
| `Tuple of t list
| `Fun of fun_v
| `FFI of ffi ]
let methods = function
| Int { methods }
| Float { methods }
| String { methods }
| Bool { methods }
| Custom { methods }
| Null { methods }
| Tuple { methods }
| List { methods }
| Fun { methods }
| FFI { methods } ->
methods
[@@inline always]
let map_methods v fn =
match v with
| Int ({ methods } as p) -> Int { p with methods = fn methods }
| Float ({ methods } as p) -> Float { p with methods = fn methods }
| String ({ methods } as p) -> String { p with methods = fn methods }
| Bool ({ methods } as p) -> Bool { p with methods = fn methods }
| Custom ({ methods } as p) -> Custom { p with methods = fn methods }
| Null ({ methods } as p) -> Null { p with methods = fn methods }
| Tuple ({ methods } as p) -> Tuple { p with methods = fn methods }
| List ({ methods } as p) -> List { p with methods = fn methods }
| Fun ({ methods } as p) -> Fun { p with methods = fn methods }
| FFI ({ methods } as p) -> FFI { p with methods = fn methods }
[@@inline always]
let pos = function
| Int { pos }
| Float { pos }
| String { pos }
| Bool { pos }
| Custom { pos }
| Null { pos }
| Tuple { pos }
| List { pos }
| Fun { pos }
| FFI { pos } ->
pos
[@@inline always]
let set_pos v pos =
match v with
| Int p -> Int { p with pos }
| Float p -> Float { p with pos }
| String p -> String { p with pos }
| Bool p -> Bool { p with pos }
| Custom p -> Custom { p with pos }
| Null p -> Null { p with pos }
| Tuple p -> Tuple { p with pos }
| List p -> List { p with pos }
| Fun p -> Fun { p with pos }
| FFI p -> FFI { p with pos }
[@@inline always]
let has_flag v flag =
match v with
| Float _ | String _ | Bool _ | Null _ -> false
| Int { flags }
| Custom { flags }
| Tuple { flags }
| List { flags }
| Fun { flags }
| FFI { flags } ->
Flags.has flags flag
[@@inline always]
let add_flag v flag =
match v with
| Float _ | String _ | Bool _ | Null _ -> assert false
| Int p -> p.flags <- Flags.add p.flags flag
| Custom p -> p.flags <- Flags.add p.flags flag
| Tuple p -> p.flags <- Flags.add p.flags flag
| List p -> p.flags <- Flags.add p.flags flag
| Fun p -> p.flags <- Flags.add p.flags flag
| FFI p -> p.flags <- Flags.add p.flags flag
[@@inline always]
let unit = `Tuple []
let is_unit = function Tuple { value = [] } -> true | _ -> false
let make ?pos ?(methods = Methods.empty) ?(flags = Flags.empty) : in_value -> t
= function
| `Int i -> Int { pos; methods; flags; value = i }
| `Float f -> Float { pos; methods; value = f }
| `String s -> String { pos; methods; value = s }
| `Bool b -> Bool { pos; methods; value = b }
| `Custom c ->
Custom { pos; methods; flags; dynamic_methods = None; value = c }
| `Null -> Null { pos; methods }
| `Tuple l -> Tuple { pos; methods; flags; value = l }
| `List l -> List { pos; methods; flags; value = l }
| `Fun { fun_args; fun_env; fun_body } ->
Fun { pos; methods; flags; fun_args; fun_env; fun_body }
| `FFI { ffi_args; ffi_fn } -> FFI { pos; methods; flags; ffi_args; ffi_fn }
let string_of_int_value ~flags i =
if Flags.has flags Flags.octal_int then Printf.sprintf "0o%o" i
else if Flags.has flags Flags.hex_int then Printf.sprintf "0x%x" i
else string_of_int i
let rec to_string v =
let base_string v =
match v with
| Int { value = i; flags } -> string_of_int_value ~flags i
| Float { value = f } -> Utils.string_of_float f
| Bool { value = b } -> string_of_bool b
| String { value = s } -> Lang_string.quote_string s
| Custom { value = c } -> Custom.to_string c
| List { value = l } ->
"[" ^ String.concat ", " (List.map to_string l) ^ "]"
| Tuple { value = l } ->
"(" ^ String.concat ", " (List.map to_string l) ^ ")"
| Null _ -> "null"
| Fun { fun_args = []; fun_body = x } when Term.is_ground x ->
"{" ^ Term.to_string x ^ "}"
| Fun { fun_args = l; fun_body = x } when Term.is_ground x ->
let f (label, _, value) =
match (label, value) with
| "", None -> "_"
| "", Some v -> Printf.sprintf "_=%s" (to_string v)
| label, Some v -> Printf.sprintf "~%s=%s" label (to_string v)
| label, None -> Printf.sprintf "~%s=_" label
in
let args = List.map f l in
Printf.sprintf "fun (%s) -> %s" (String.concat "," args)
(Term.to_string x)
| Fun _ | FFI _ -> "<fun>"
in
let s = base_string v in
let methods = methods v in
if Methods.is_empty methods then s
else (
let methods = Methods.bindings methods in
(if is_unit v then "" else s ^ ".")
^ "{"
^ String.concat ", "
(List.map (fun (l, meth_term) -> l ^ "=" ^ to_string meth_term) methods)
^ "}")
(** Find a method in a value. *)
let invoke x l =
try
match (Methods.find_opt l (methods x), x) with
| Some v, _ -> v
| None, Custom { dynamic_methods = Some { hidden_methods; methods } }
when not (List.mem l hidden_methods) ->
Option.get (methods l)
| _ -> raise Not_found
with _ -> failwith ("Could not find method " ^ l ^ " of " ^ to_string x)
(** Perform a sequence of invokes: invokes x [l1;l2;l3;...] is x.l1.l2.l3... *)
let rec invokes x = function l :: ll -> invokes (invoke x l) ll | [] -> x
let demeth e =
map_methods
(match e with
| Custom p ->
Custom { p with methods = Methods.empty; dynamic_methods = None }
| _ -> e)
(fun _ -> Methods.empty)
let remeth t u =
let t_methods = methods t in
map_methods u (fun u_methods -> Methods.fold Methods.add t_methods u_methods)
let split_meths e = (Methods.bindings (methods e), demeth e)
let compare a b =
let rec aux = function
| Int { value = i }, Int { value = i' } -> Stdlib.compare i i'
| Float { value = f }, Float { value = f' } -> Stdlib.compare f f'
| Bool { value = b }, Bool { value = b' } -> Stdlib.compare b b'
| String { value = s }, String { value = s' } -> Stdlib.compare s s'
| Custom { value = a }, Custom { value = b } -> Custom.compare a b
| Tuple { value = l }, Tuple { value = m } ->
List.fold_left2
(fun cmp a b -> if cmp <> 0 then cmp else compare a b)
0 l m
| List { value = l1 }, List { value = l2 } ->
let rec cmp = function
| [], [] -> 0
| [], _ -> -1
| _, [] -> 1
| h1 :: l1, h2 :: l2 ->
let c = compare h1 h2 in
if c = 0 then cmp (l1, l2) else c
in
cmp (l1, l2)
| Null _, Null _ -> 0
| Null _, _ -> -1
| _, Null _ -> 1
| _ -> assert false
and compare a b =
if is_unit a && is_unit b then (
let r a =
let m, _ = split_meths a in
m
in
let a = r a in
let b = r b in
let a =
List.filter (fun (l, _) -> List.exists (fun (l', _) -> l = l') b) a
in
let b =
List.filter (fun (l, _) -> List.exists (fun (l', _) -> l = l') a) b
in
let a = List.sort (fun x x' -> Stdlib.compare (fst x) (fst x')) a in
let b = List.sort (fun x x' -> Stdlib.compare (fst x) (fst x')) b in
let a =
make
(`Tuple
(List.map
(fun (lbl, v) -> make (`Tuple [make (`String lbl); v]))
a))
in
let b =
make
(`Tuple
(List.map
(fun (lbl, v) -> make (`Tuple [make (`String lbl); v]))
b))
in
aux (a, b))
else aux (a, b)
in
compare a b
module type Custom = sig
include Term.Custom
val to_value : ?pos:Pos.t -> content -> t
val of_value : t -> content
val is_value : t -> bool
end
module type CustomDef = Term.CustomDef
module MkCustomFromTerm (Term : Term.Custom) = struct
include Term
let to_value ?pos c = make ?pos (`Custom (to_custom c))
let of_value v =
match v with Custom { value = c } -> of_custom c | _ -> assert false
let is_value v =
match v with Custom { value = c } -> is_custom c | _ -> false
end
module MkCustom (Def : CustomDef) = struct
module Term = Term.MkCustom (Def)
include MkCustomFromTerm (Term)
end
module RuntimeType = MkCustom (struct
type content = Type.t
let name = "type"
let to_string _ = "type"
let to_json ~pos _ =
Runtime_error.raise ~pos ~message:"Types cannot be represented as json"
"json"
let compare = Stdlib.compare
end)