-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathjv.ml
342 lines (272 loc) · 11.1 KB
/
jv.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
330
331
332
333
334
335
336
337
338
339
340
341
342
(*---------------------------------------------------------------------------
Copyright (c) 2020 The brr programmers. All rights reserved.
SPDX-License-Identifier: ISC
---------------------------------------------------------------------------*)
external pure_js_expr : string -> 'a = "caml_pure_js_expr"
external js_expr : string -> 'a = "caml_js_expr"
(* Values *)
type t
type jv = t
external equal : t -> t -> bool = "caml_js_equals"
external strict_equal : t -> t -> bool = "caml_js_strict_equals"
external typeof : t -> Jstr.t = "caml_js_typeof"
external instanceof : t -> cons:t -> bool = "caml_js_instanceof"
external repr : 'a -> t = "%identity"
(* Null and undefined *)
let null = pure_js_expr "null"
let undefined = pure_js_expr "undefined"
let is_null v = strict_equal v null
let is_undefined v = strict_equal v undefined
let is_none v = is_null v || is_undefined v
let is_some v = not (is_none v)
let to_option conv v = if is_none v then None else Some (conv v)
let of_option ~none conv = function None -> none | Some v -> conv v
(* Objects *)
let global = pure_js_expr "globalThis"
(* Properties *)
type prop = string
external get : t -> prop -> t = "caml_js_get"
external set : t -> prop -> t -> unit = "caml_js_set"
external delete : t -> prop -> unit = "caml_js_delete"
let set_if_some o p = function None -> () | Some v -> set o p v
let find o p = let v = get o p in if is_none v then None else Some v
let find_map f o p = let v = get o p in if is_none v then None else Some (f v)
let rec find_path o = function
| [] -> Some o
| p :: ps -> match find o p with None -> None | Some o -> find_path o ps
(* Creating *)
external obj : (prop * t) array -> t = "caml_js_object"
external new' : t -> t array -> t = "caml_js_new"
(* Methods *)
external call : t -> string -> t array -> 'a = "caml_js_meth_call"
(* Booleans *)
let true' = pure_js_expr "true"
let false' = pure_js_expr "false"
external to_bool : t -> bool = "caml_js_to_bool"
external of_bool : bool -> t = "caml_js_from_bool"
module Bool = struct
let find o p = let b = get o p in if is_none b then None else Some (to_bool b)
let get o p = to_bool (get o p)
let set o p b = set o p (of_bool b)
let set_if_some o p = function None -> () | Some b -> set o p b
end
(* Integers *)
external to_int : t -> int = "%identity"
external of_int : int -> t = "%identity"
module Int = struct
let find o p = let i = get o p in if is_none i then None else Some (to_int i)
let get o p = to_int (get o p)
let set o p i = set o p (of_int i)
let set_if_some o p = function None -> () | Some i -> set o p i
end
(* Floats *)
external to_float : t -> float = "caml_js_to_float"
external of_float : float -> t = "caml_js_from_float"
module Float = struct
let find o p = let f = get o p in if is_none f then None else Some(to_float f)
let get o p = to_float (get o p)
let set o p b = set o p (of_float b)
let set_if_some o p = function None -> () | Some f -> set o p f
end
(* Int32 *)
external to_int32 : t -> int32 = "caml_js_to_int32"
external of_int32 : int32 -> t = "caml_js_from_int32"
module Int32 = struct
let find o p = let f = get o p in if is_none f then None else Some(to_int32 f)
let get o p = to_int32 (get o p)
let set o p b = set o p (of_int32 b)
let set_if_some o p = function None -> () | Some f -> set o p f
end
(* Jstr *)
external to_jstr : t -> Jstr.t = "%identity"
external of_jstr : Jstr.t -> t = "%identity"
module Jstr = struct
let find o p = let s = get o p in if is_none s then None else Some (to_jstr s)
let get o p = to_jstr (get o p)
let set o p b = set o p (of_jstr b)
let set_if_some o p = function None -> () | Some f -> set o p f
(* When do we get ../ ? *)
type t = Jstr.t
let to_string = Jstr.to_string
end
(* String *)
external of_string : string -> t = "caml_jsstring_of_string"
external to_string : t -> string = "caml_string_of_jsstring"
(* Arrays *)
let is_array jv = to_bool (call (get global "Array") "isArray" [| jv |])
module Jarray = struct
type t = jv
let create n = new' (get global "Array") [| of_int n |]
let length a = to_int (get a "length")
external get : t -> int -> t = "caml_js_get"
external set : t -> int -> t -> unit = "caml_js_set"
end
let to_array conv v =
let len = Jarray.length v in
Array.init len (fun i -> conv (Jarray.get v i))
let of_array conv a =
let len = Array.length a in
let ja = Jarray.create len in
for i = 0 to len - 1 do Jarray.set ja i (conv (Array.get a i)) done;
ja
let to_list conv v =
let len = Jarray.length v in
List.init len (fun i -> conv (Jarray.get v i))
let of_list conv l =
(* Should be benchmarked checking length of [l] first may be faster
than extending the array repeatedly *)
let rec loop i ja = function
| [] -> ja
| v :: vs -> Jarray.set ja i (conv v); loop (i + 1) ja vs
in
loop 0 (Jarray.create 0) l
external to_jv_array : t -> t array = "caml_js_to_array"
external of_jv_array : t array -> t = "caml_js_from_array"
external to_jv_list : t -> t list = "caml_list_of_js_array"
external of_jv_list : t list -> t = "caml_list_to_js_array"
external to_jstr_array : t -> Jstr.t array = "caml_js_to_array"
external of_jstr_array : Jstr.t array -> t = "caml_js_from_array"
external to_jstr_list : t -> Jstr.t list = "caml_list_of_js_array"
external of_jstr_list : Jstr.t list -> t = "caml_list_to_js_array"
(* Functions *)
external apply : t -> t array -> 'a = "caml_js_fun_call"
external callback : arity:int -> (_ -> _) -> t = "caml_js_wrap_callback_strict"
(* Errors *)
module Error = struct
type enum =
[ `Abort_error | `Constraint_error | `Data_clone_error | `Data_error
| `Encoding_error | `Hierarchy_request_error | `Index_size_error
| `Invalid_access_error | `Invalid_character_error
| `Invalid_modification_error | `Invalid_node_type_error
| `Invalid_state_error | `Namespace_error | `Network_error
| `No_modification_allowed_error | `Not_allowed_error | `Not_found_error
| `Not_readable_error | `Not_supported_error | `Operation_error
| `Quota_exceeded_error | `Read_only_error | `Security_error
| `Syntax_error | `Timeout_error | `Transaction_inactive_error
| `Type_mismatch_error | `Url_mismatch_error | `Unknown_error
| `Version_error | `Wrong_document_error | `Other ]
type t = Jsoo_runtime.Error.t
let v ?name msg : t =
let e = new' (get global "Error") [| of_jstr msg |] in
match name with
| None -> Obj.magic e
| Some n -> set e "name" (of_jstr n); Obj.magic e
let name (e : t) = to_jstr (get (Obj.magic e) "name")
let enum e = match to_string (get (Obj.magic e) "name") with
| "AbortError" -> `Abort_error
| "ConstraintError" -> `Constraint_error
| "DataCloneError" -> `Data_clone_error
| "DataError" -> `Data_error
| "EncodingError" -> `Encoding_error
| "HierarchyRequestError" -> `Hierarchy_request_error
| "IndexSizeError" -> `Index_size_error
| "InvalidAccessError" -> `Invalid_access_error
| "InvalidCharacterError" -> `Invalid_character_error
| "InvalidModificationError" -> `Invalid_modification_error
| "InvalidNodeTypeError" -> `Invalid_node_type_error
| "InvalidStateError" -> `Invalid_state_error
| "NamespaceError" -> `Namespace_error
| "NetworkError" -> `Network_error
| "NoModificationAllowedError" -> `No_modification_allowed_error
| "NotAllowedError" -> `Not_allowed_error
| "NotFoundError" -> `Not_found_error
| "NotReadableError" -> `Not_readable_error
| "NotSupportedError" -> `Not_supported_error
| "OperationError" -> `Operation_error
| "QuotaExceededError" -> `Quota_exceeded_error
| "ReadOnlyError" -> `Read_only_error
| "SecurityError" -> `Security_error
| "SyntaxError" -> `Syntax_error
| "TimeoutError" -> `Timeout_error
| "TransactionInactiveError" -> `Transaction_inactive_error
| "TypeMismatchError" -> `Type_mismatch_error
| "URLMismatchError" -> `Url_mismatch_error
| "UnknownError" -> `Unknown_error
| "VersionError" -> `Version_error
| "WrongDocumentError" -> `Wrong_document_error
| _ -> `Other
let message e = to_jstr (get (Obj.magic e) "message")
let stack e = to_jstr (get (Obj.magic e) "stack")
let to_result e = Error e
end
external of_error : Error.t -> t = "%identity"
external to_error : t -> Error.t = "%identity"
let throw ?name msg =
let e = Error.v ?name msg in
(js_expr "(function (exn) { throw exn })" : Error.t -> 'a) e
exception Error = Jsoo_runtime.Error.Exn
(* Iterable and iterator *)
module It = struct
type t = jv
type result = jv
let symbol : jv = pure_js_expr "Symbol.iterator"
external get_symbol : jv -> jv -> jv = "caml_js_get"
let iterable o = match to_option Fun.id (get_symbol o symbol) with
| None -> None | Some func -> apply func [||]
let iterator o = apply (get_symbol o symbol) [||]
let next it = call it "next" [||]
let result_done o = match to_option to_bool (get o "done") with
| None -> false | Some d -> d
let result_value o = to_option Fun.id (get o "value")
let get_result_value o = get o "value"
let fold of_jv f it acc =
let rec loop it acc =
let r = next it in
if result_done r then acc else
loop it (f (of_jv (get_result_value r)) acc)
in
loop it acc
let fold_bindings ~key ~value f it acc =
let rec loop it acc =
let r = next it in
if result_done r then acc else
let arr = get_result_value r in
loop it (f (key (Jarray.get arr 0)) (value (Jarray.get arr 1)) acc)
in
loop it acc
end
(* Promises *)
module Promise = struct
type t = jv
let promise = get global "Promise"
let create f =
let g res rej =
f (fun x -> apply res [|repr x|]) (fun x -> apply rej [|repr x|]) in
new' promise [| callback ~arity:2 g |]
let resolve v = call promise "resolve" [| repr v |]
let reject v = call promise "reject" [| repr v |]
let await p k = ignore (call p "then" [| callback ~arity:1 k |])
let bind p res = call p "then" [| callback ~arity:1 res |]
let then' p res rej =
call p "then" [| callback ~arity:1 res; callback ~arity:1 rej|]
let all arr = call promise "all" [| repr arr |]
end
(* Unicode identifiers *)
type prop' = Jstr.t
external get' : t -> prop' -> t = "caml_js_get"
external set' : t -> prop' -> t -> unit = "caml_js_set"
external delete' : t -> prop' -> unit = "caml_js_delete"
let find' o p = let v = get' o p in if is_none v then None else Some v
let find_map' f o p = let v = get' o p in if is_none v then None else Some (f v)
(* XXX the following were supposed to be direct call to externals like for
the above but they are not implemented that way for now. See discussion here:
https://github.com/ocsigen/js_of_ocaml/pull/997#issuecomment-694925765.
It would likely need a bit of upstream cajoling to move on – OTOH
these should end up being used pervasively. *)
let obj' props = obj (Array.map (fun (p, v) -> Jstr.to_string p, v) props)
let call' o m args = call o (Jstr.to_string m) args
(* Debugger *)
external debugger : unit -> unit = "debugger"
(* Feature detection *)
let has p v = is_some (get (repr v) p)
let defined v = is_some (repr v)
(* Conversion interface *)
module type CONV = sig
type t
external to_jv : t -> jv = "%identity"
external of_jv : jv -> t = "%identity"
end
module Id = struct
external to_jv : 'a -> t = "%identity"
external of_jv : t -> 'a = "%identity"
end