Source file web_worker.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
open Js_of_ocaml
open Base
let decode_callback (err: unit -> string) (cb: Value.t): Value.t -> unit =
match Decode._function cb with
| None ->
Main.raise_js (err ())
| Some cb ->
fun v -> cb [|v|] |> ignore
let send_message
(err: unit -> string)
(msg: Value.t) (dec: 'msg Decode.t)
(cb: 'msg -> unit)
: unit
=
match dec msg with
| None ->
let open Main in
log_string (err ());
log_value msg
| Some msg ->
cb msg
let do_async (f: unit -> unit): unit =
Timer.set f 0 |> ignore
class type worker =
object
method postMessage: 'msg -> unit Js.meth
method terminate: unit Js.meth
end
type t = worker Js.t
let start (url: string) (dec: 'msg Decode.t) (cb: 'msg -> unit): t =
let open Main in
let w =
new_global "Worker" [|Value.string url|]
and cb event =
send_message
(fun _ -> "cannot decode message from " ^ url ^ "\"")
(Event.value event)
dec
cb
in
Event_target.add "message" cb (Obj.magic w);
Obj.magic w
let post_message (msg: Value.t) (w: t): unit =
w##postMessage msg
let terminate (w: t): unit =
w##terminate
type 'msg worker_function = (Value.t -> unit) -> 'msg -> unit
let make (decode: 'msg Decode.t) (f: 'msg worker_function): unit =
let open Main in
let post =
match get_global "postMessage" with
| None ->
raise_js "webworker: <postMessage> function not available"
| Some post ->
post
in
let post =
decode_callback
(fun _ -> "webworker: <postMessage> is not a function")
post
in
let f = f post
in
make_global
"onmessage"
(Value.function1
(fun msg ->
send_message
(fun _ -> "webworker: cannot decode message")
msg
decode
f;
Value.undefined))
module Simulate =
struct
type t = (Value.t -> unit) option ref
let start
(dec: 'rcv Decode.t) (cb: 'rcv -> unit)
(worker_decode: 'msg Decode.t) (worker: 'msg worker_function)
: t
=
let post_to_creator v =
send_message
(fun _ -> "main: cannot decode message from worker")
v dec cb
in
let post_to_creator v =
do_async (fun _ -> post_to_creator v)
in
let f = worker post_to_creator
in
let post_to_worker v =
do_async
(fun _ ->
send_message
(fun _ -> "webworker: cannot decode message")
v worker_decode f)
in
ref (Some post_to_worker)
let post_message (msg: Value.t) (w: t): unit =
match !w with
| None ->
Main.log_string "worker has already been terminated"
| Some post ->
post msg
let terminate (w: t): unit =
w := None
end
let simulate_js
(name: string)
(decode: 'msg Decode.t)
(wfun: 'msg worker_function)
: unit
=
let open Main in
(fun post ->
let post_to_creator =
decode_callback
(fun _ -> "webworker: <postMessage> is not a funtion")
post
in
let w =
Simulate.start
(fun v -> Decode.return v v)
post_to_creator
decode
wfun
in
let post_to_worker msg =
Simulate.post_message msg w;
Value.undefined
and terminate _ =
Simulate.terminate w;
Value.undefined
in
Value._object [|
"postMessage", Value.function1 post_to_worker;
"terminate", Value.function1 terminate
|]
)
|> Value.function1
|> make_global name