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
use crate::console_log;
use js_sys::Array;
use std::cell::RefCell;
use std::collections::VecDeque;
use std::rc::Rc;
use wasm_bindgen::prelude::*;
use web_sys::{
Blob, BlobPropertyBag, DedicatedWorkerGlobalScope, ErrorEvent, Event, MessageEvent, Url, Worker,
};
pub static MAX_WORKERS: usize = 512;
#[wasm_bindgen]
pub struct WorkerPool {
pool_state: Rc<PoolState>,
}
struct PoolState {
total_workers_count: RefCell<usize>,
idle_workers: RefCell<Vec<ManagedWorker>>,
queued_tasks: RefCell<VecDeque<Task>>,
callback: Closure<dyn FnMut(Event)>,
}
struct ManagedWorker {
last_activated_time: RefCell<f64>, // Timestamp in milliseconds
worker: Worker,
}
struct Task {
callable: Box<dyn FnOnce() + Send>,
}
#[wasm_bindgen]
impl WorkerPool {
/// Creates a new `WorkerPool` which immediately creates `initial` workers.
///
/// The pool created here can be used over a long period of time, and it
/// will be initially primed with `initial` workers. Currently workers are
/// never released or gc'd until the whole pool is destroyed.
///
/// # Errors
///
/// Returns any error that may happen while a JS web worker is created and a
/// message is sent to it.
#[wasm_bindgen(constructor)]
pub fn new() -> Result<WorkerPool, JsValue> {
let worker_pool = WorkerPool {
pool_state: Rc::new(PoolState {
total_workers_count: RefCell::new(0),
idle_workers: RefCell::new(Vec::with_capacity(MAX_WORKERS)),
queued_tasks: RefCell::new(VecDeque::new()),
callback: Closure::new(|event: Event| {
console_log!("unhandled event: {}", event.type_());
crate::log_js_value(&event);
}),
}),
};
Ok(worker_pool)
}
/// Unconditionally spawns a new worker
///
/// The worker isn't registered with this `WorkerPool` but is capable of
/// executing work for this wasm module.
///
/// # Errors
///
/// Returns any error that may happen while a JS web worker is created and a
/// message is sent to it.
fn create_worker(&self) -> Result<Worker, JsValue> {
*self.pool_state.total_workers_count.borrow_mut() += 1;
let script = format!(
"
importScripts('{}');
self.onmessage = event => {{
let initialised = wasm_bindgen(...event.data).catch(err => {{
// Propagate to main `onerror`:
setTimeout(() => {{
throw err;
}});
// Rethrow to keep promise rejected and prevent execution of further commands:
throw err;
}});
self.onmessage = async event => {{
// This will queue further commands up until the module is fully initialised:
await initialised;
wasm_bindgen.task_worker_entry_point(event.data);
}};
}};
",
get_script_path().unwrap()
);
let blob = Blob::new_with_blob_sequence_and_options(
&Array::from_iter([JsValue::from(script)]).into(),
BlobPropertyBag::new().type_("text/javascript"),
)
.expect("Unable to create blob with JavaScript glue code.");
let url = Url::create_object_url_with_blob(&blob)
.expect("Unable to create object JavaScript blob URL.");
let worker = Worker::new(&url).expect("Unable to create worker.");
// With a worker spun up send it the module/memory so it can start
// instantiating the wasm module. Later it might receive further
// messages about code to run on the wasm module.
let array = js_sys::Array::new();
array.push(&wasm_bindgen::module());
array.push(&wasm_bindgen::memory());
worker.post_message(&array)?;
Ok(worker)
}
/// Fetches a worker from this pool, creating one if necessary.
///
/// This will attempt to pull an already-spawned web worker from our cache
/// if one is available, otherwise it will spawn a new worker and return the
/// newly spawned worker.
///
/// # Errors
///
/// Returns any error that may happen while a JS web worker is created and a
/// message is sent to it.
fn get_worker(&self) -> Result<Worker, JsValue> {
if let Some(managed_worker) = self.pool_state.idle_workers.borrow_mut().pop() {
managed_worker.last_activated_time.replace(crate::now());
Ok(managed_worker.worker)
} else {
self.create_worker()
}
}
/// Executes the work `f` in a web worker, spawning a web worker if
/// necessary.
///
/// This will acquire a web worker and then send the closure `f` to the
/// worker to execute. The worker won't be usable for anything else while
/// `f` is executing, and no callbacks are registered for when the worker
/// finishes.
///
/// # Errors
///
/// Returns any error that may happen while a JS web worker is created and a
/// message is sent to it.
fn execute(&self, task: Task) -> Result<Worker, JsValue> {
let worker = self.get_worker()?;
let work = Box::new(task);
let ptr = Box::into_raw(work);
match worker.post_message(&JsValue::from(ptr as u32)) {
Ok(()) => Ok(worker),
Err(e) => {
unsafe {
drop(Box::from_raw(ptr));
}
Err(e)
}
}
}
/// Configures an `onmessage` callback for the `worker` specified for the
/// web worker to be reclaimed and re-inserted into this pool when a message
/// is received.
///
/// Currently this `WorkerPool` abstraction is intended to execute one-off
/// style work where the work itself doesn't send any notifications and
/// whatn it's done the worker is ready to execute more work. This method is
/// used for all spawned workers to ensure that when the work is finished
/// the worker is reclaimed back into this pool.
fn reclaim_on_message(&self, worker: Worker) {
let pool_state = Rc::downgrade(&self.pool_state);
let worker2 = worker.clone();
let reclaim_slot = Rc::new(RefCell::new(None));
let slot2 = reclaim_slot.clone();
let reclaim = Closure::<dyn FnMut(_)>::new(move |event: Event| {
if let Some(error) = event.dyn_ref::<ErrorEvent>() {
console_log!("error in worker: {}", error.message());
// TODO: this probably leaks memory somehow? It's sort of
// unclear what to do about errors in workers right now.
return;
}
// If this is a completion event then can deallocate our own
// callback by clearing out `slot2` which contains our own closure.
if let Some(_msg) = event.dyn_ref::<MessageEvent>() {
if let Some(pool_state) = pool_state.upgrade() {
pool_state.push(worker2.clone());
}
*slot2.borrow_mut() = None;
return;
}
console_log!("unhandled event: {}", event.type_());
crate::log_js_value(&event);
});
worker.set_onmessage(Some(reclaim.as_ref().unchecked_ref()));
*reclaim_slot.borrow_mut() = Some(reclaim);
}
}
impl WorkerPool {
/// Executes `f` in a web worker.
///
/// This pool manages a set of web workers to draw from, and `f` will be
/// spawned quickly into one if the worker is idle. If no idle workers are
/// available then a new web worker will be spawned.
///
/// Once `f` returns the worker assigned to `f` is automatically reclaimed
/// by this `WorkerPool`. This method provides no method of learning when
/// `f` completes, and for that you'll need to use `run_notify`.
///
/// # Errors
///
/// If an error happens while spawning a web worker or sending a message to
/// a web worker, that error is returned.
fn run(&self, task: Task) -> Result<(), JsValue> {
let worker = self.execute(task)?;
self.reclaim_on_message(worker);
Ok(())
}
pub fn remove_inactive_workers(&self) {
let mut idle_workers = self.pool_state.idle_workers.borrow_mut();
let current_timestamp = crate::now();
idle_workers.retain(|managed_worker| {
let passed_time = current_timestamp - *managed_worker.last_activated_time.borrow();
let is_active = passed_time < 10000.0; // 10 seconds
if !is_active {
managed_worker.worker.terminate();
*self.pool_state.total_workers_count.borrow_mut() -= 1;
}
is_active
});
}
pub fn flush_queued_tasks(&self) {
while *self.pool_state.total_workers_count.borrow() < MAX_WORKERS {
let mut queued_tasks = self.pool_state.queued_tasks.borrow_mut();
if let Some(queued_task) = queued_tasks.pop_front() {
self.run(queued_task).expect("Unable to run a queued task.");
} else {
break;
}
}
}
pub fn queue_task(&self, callable: impl FnOnce() + Send + 'static) {
let mut queued_tasks = self.pool_state.queued_tasks.borrow_mut();
queued_tasks.push_back(Task {
callable: Box::new(callable),
});
drop(queued_tasks);
self.flush_queued_tasks();
}
}
impl PoolState {
fn push(&self, worker: Worker) {
worker.set_onmessage(Some(self.callback.as_ref().unchecked_ref()));
worker.set_onerror(Some(self.callback.as_ref().unchecked_ref()));
let mut workers = self.idle_workers.borrow_mut();
for prev in workers.iter() {
let prev: &JsValue = &prev.worker;
let worker: &JsValue = &worker;
assert!(prev != worker);
}
workers.push(ManagedWorker {
last_activated_time: RefCell::new(crate::now()),
worker,
});
}
}
/// Entry point invoked by JavaScript in a worker.
#[wasm_bindgen]
pub fn task_worker_entry_point(ptr: u32) -> Result<(), JsValue> {
let ptr = unsafe { Box::from_raw(ptr as *mut Task) };
let global = js_sys::global().unchecked_into::<DedicatedWorkerGlobalScope>();
(ptr.callable)();
global.post_message(&JsValue::undefined())?;
Ok(())
}
pub fn get_script_path() -> Option<String> {
js_sys::eval(
r"
(() => {
try {
throw new Error();
} catch (e) {
let parts = e.stack.match(/(?:\(|@)(\S+):\d+:\d+/);
return parts[1];
}
})()
",
)
.ok()?
.as_string()
}
pub fn start_managing_pool() {
crate::spawn(async move {
loop {
crate::WORKER_POOL.with(|worker_pool| {
worker_pool.remove_inactive_workers();
worker_pool.flush_queued_tasks();
});
let promise = js_sys::Promise::new(&mut |resolve, _reject| {
crate::set_timeout(&resolve, 100.0);
});
let _ = wasm_bindgen_futures::JsFuture::from(promise).await;
}
});
}