2022-10-10 12:50:21 +00:00
|
|
|
import { safeRun } from "../util.ts";
|
|
|
|
import { Sandbox } from "../sandbox.ts";
|
|
|
|
import { WorkerLike } from "./worker.ts";
|
|
|
|
import type { Plug } from "../plug.ts";
|
2022-03-20 08:56:28 +00:00
|
|
|
|
|
|
|
class WebWorkerWrapper implements WorkerLike {
|
|
|
|
private worker: Worker;
|
|
|
|
onMessage?: (message: any) => Promise<void>;
|
2022-03-21 14:21:34 +00:00
|
|
|
ready: Promise<void>;
|
2022-03-20 08:56:28 +00:00
|
|
|
|
|
|
|
constructor(worker: Worker) {
|
|
|
|
this.worker = worker;
|
|
|
|
this.worker.addEventListener("message", (evt: any) => {
|
|
|
|
let data = evt.data;
|
|
|
|
if (!data) return;
|
|
|
|
safeRun(async () => {
|
|
|
|
await this.onMessage!(data);
|
|
|
|
});
|
|
|
|
});
|
2022-03-21 14:21:34 +00:00
|
|
|
this.ready = Promise.resolve();
|
2022-03-20 08:56:28 +00:00
|
|
|
}
|
|
|
|
postMessage(message: any): void {
|
|
|
|
this.worker.postMessage(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
terminate() {
|
|
|
|
return this.worker.terminate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-25 11:03:06 +00:00
|
|
|
export function createSandbox(plug: Plug<any>) {
|
2022-10-10 12:50:21 +00:00
|
|
|
const worker = new Worker(
|
|
|
|
import.meta.url
|
|
|
|
? new URL("sandbox_worker.ts", import.meta.url)
|
|
|
|
: new URL("worker.js", location.origin),
|
|
|
|
{
|
|
|
|
type: "module",
|
|
|
|
},
|
|
|
|
);
|
2022-03-25 11:03:06 +00:00
|
|
|
return new Sandbox(plug, new WebWorkerWrapper(worker));
|
2022-03-20 08:56:28 +00:00
|
|
|
}
|