2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-04-01 15:09:59 -04:00
|
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
2019-09-02 17:07:11 -04:00
|
|
|
import * as dispatch from "./dispatch.ts";
|
|
|
|
import { sendAsync, sendSync } from "./dispatch_json.ts";
|
2020-01-17 18:43:53 -05:00
|
|
|
import { log, createResolvable, Resolvable } from "./util.ts";
|
2019-09-02 17:07:11 -04:00
|
|
|
import { TextDecoder, TextEncoder } from "./text_encoding.ts";
|
|
|
|
import { window } from "./window.ts";
|
|
|
|
import { blobURLMap } from "./url.ts";
|
|
|
|
import { blobBytesWeakMap } from "./blob.ts";
|
2020-01-17 18:43:53 -05:00
|
|
|
import { EventTarget } from "./event_target.ts";
|
2019-01-08 14:44:06 -05:00
|
|
|
|
2019-04-01 15:09:59 -04:00
|
|
|
const encoder = new TextEncoder();
|
|
|
|
const decoder = new TextDecoder();
|
|
|
|
|
|
|
|
export function encodeMessage(data: any): Uint8Array {
|
|
|
|
const dataJson = JSON.stringify(data);
|
|
|
|
return encoder.encode(dataJson);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function decodeMessage(dataIntArray: Uint8Array): any {
|
|
|
|
const dataJson = decoder.decode(dataIntArray);
|
|
|
|
return JSON.parse(dataJson);
|
|
|
|
}
|
|
|
|
|
2019-08-05 07:23:41 -04:00
|
|
|
function createWorker(
|
|
|
|
specifier: string,
|
2019-08-06 09:22:11 -04:00
|
|
|
includeDenoNamespace: boolean,
|
|
|
|
hasSourceCode: boolean,
|
|
|
|
sourceCode: Uint8Array
|
2020-01-17 18:43:53 -05:00
|
|
|
): { id: number; loaded: boolean } {
|
2019-08-26 08:50:21 -04:00
|
|
|
return sendSync(dispatch.OP_CREATE_WORKER, {
|
|
|
|
specifier,
|
2019-08-06 09:22:11 -04:00
|
|
|
includeDenoNamespace,
|
|
|
|
hasSourceCode,
|
2019-08-26 08:50:21 -04:00
|
|
|
sourceCode: new TextDecoder().decode(sourceCode)
|
|
|
|
});
|
2019-04-01 15:09:59 -04:00
|
|
|
}
|
|
|
|
|
2020-01-17 18:43:53 -05:00
|
|
|
async function hostGetWorkerLoaded(id: number): Promise<any> {
|
|
|
|
return await sendAsync(dispatch.OP_HOST_GET_WORKER_LOADED, { id });
|
|
|
|
}
|
|
|
|
|
|
|
|
async function hostPollWorker(id: number): Promise<any> {
|
|
|
|
return await sendAsync(dispatch.OP_HOST_POLL_WORKER, { id });
|
|
|
|
}
|
|
|
|
|
|
|
|
function hostCloseWorker(id: number): void {
|
|
|
|
sendSync(dispatch.OP_HOST_CLOSE_WORKER, { id });
|
|
|
|
}
|
|
|
|
|
|
|
|
function hostResumeWorker(id: number): void {
|
|
|
|
sendSync(dispatch.OP_HOST_RESUME_WORKER, { id });
|
2019-04-01 15:09:59 -04:00
|
|
|
}
|
|
|
|
|
2019-11-09 15:07:14 -05:00
|
|
|
function hostPostMessage(id: number, data: any): void {
|
2019-04-01 15:09:59 -04:00
|
|
|
const dataIntArray = encodeMessage(data);
|
2019-11-09 15:07:14 -05:00
|
|
|
sendSync(dispatch.OP_HOST_POST_MESSAGE, { id }, dataIntArray);
|
2019-04-01 15:09:59 -04:00
|
|
|
}
|
|
|
|
|
2019-11-09 15:07:14 -05:00
|
|
|
async function hostGetMessage(id: number): Promise<any> {
|
|
|
|
const res = await sendAsync(dispatch.OP_HOST_GET_MESSAGE, { id });
|
2019-08-26 08:50:21 -04:00
|
|
|
|
|
|
|
if (res.data != null) {
|
|
|
|
return decodeMessage(new Uint8Array(res.data));
|
2019-04-01 15:09:59 -04:00
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stuff for workers
|
2019-09-07 12:27:18 -04:00
|
|
|
export const onmessage: (e: { data: any }) => void = (): void => {};
|
2020-01-17 18:43:53 -05:00
|
|
|
export const onerror: (e: { data: any }) => void = (): void => {};
|
2019-04-01 15:09:59 -04:00
|
|
|
|
|
|
|
export function postMessage(data: any): void {
|
|
|
|
const dataIntArray = encodeMessage(data);
|
2019-08-26 08:50:21 -04:00
|
|
|
sendSync(dispatch.OP_WORKER_POST_MESSAGE, {}, dataIntArray);
|
2019-01-08 14:44:06 -05:00
|
|
|
}
|
|
|
|
|
2019-04-01 15:09:59 -04:00
|
|
|
export async function getMessage(): Promise<any> {
|
2019-01-08 14:44:06 -05:00
|
|
|
log("getMessage");
|
2019-08-26 08:50:21 -04:00
|
|
|
const res = await sendAsync(dispatch.OP_WORKER_GET_MESSAGE);
|
|
|
|
if (res.data != null) {
|
|
|
|
return decodeMessage(new Uint8Array(res.data));
|
2019-01-08 14:44:06 -05:00
|
|
|
} else {
|
2019-04-01 15:09:59 -04:00
|
|
|
return null;
|
2019-01-08 14:44:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-01 15:09:59 -04:00
|
|
|
export let isClosing = false;
|
2019-01-08 14:44:06 -05:00
|
|
|
|
|
|
|
export function workerClose(): void {
|
|
|
|
isClosing = true;
|
|
|
|
}
|
|
|
|
|
2019-03-09 12:30:38 -05:00
|
|
|
export async function workerMain(): Promise<void> {
|
2019-01-08 14:44:06 -05:00
|
|
|
log("workerMain");
|
|
|
|
|
|
|
|
while (!isClosing) {
|
|
|
|
const data = await getMessage();
|
|
|
|
if (data == null) {
|
|
|
|
log("workerMain got null message. quitting.");
|
|
|
|
break;
|
|
|
|
}
|
2019-04-08 17:10:00 -04:00
|
|
|
|
2020-01-17 18:43:53 -05:00
|
|
|
let result: void | Promise<void>;
|
|
|
|
const event = { data };
|
|
|
|
|
|
|
|
try {
|
|
|
|
result = window.onmessage(event);
|
2019-10-03 07:23:29 -04:00
|
|
|
if (result && "then" in result) {
|
|
|
|
await result;
|
|
|
|
}
|
2020-01-17 18:43:53 -05:00
|
|
|
if (!window["onmessage"]) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
if (window["onerror"]) {
|
|
|
|
const result = window.onerror(
|
|
|
|
e.message,
|
|
|
|
e.fileName,
|
|
|
|
e.lineNumber,
|
|
|
|
e.columnNumber,
|
|
|
|
e
|
|
|
|
);
|
|
|
|
if (result === true) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw e;
|
2019-01-08 14:44:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-01 15:09:59 -04:00
|
|
|
|
|
|
|
export interface Worker {
|
2020-01-17 18:43:53 -05:00
|
|
|
onerror?: (e: any) => void;
|
2019-04-01 15:09:59 -04:00
|
|
|
onmessage?: (e: { data: any }) => void;
|
|
|
|
onmessageerror?: () => void;
|
|
|
|
postMessage(data: any): void;
|
2020-01-17 18:43:53 -05:00
|
|
|
// TODO(bartlomieju): remove this
|
2019-04-05 15:57:59 -04:00
|
|
|
closed: Promise<void>;
|
2019-04-01 15:09:59 -04:00
|
|
|
}
|
|
|
|
|
2019-08-05 07:23:41 -04:00
|
|
|
// TODO(kevinkassimo): Maybe implement reasonable web worker options?
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
|
|
export interface WorkerOptions {}
|
|
|
|
|
|
|
|
/** Extended Deno Worker initialization options.
|
|
|
|
* `noDenoNamespace` hides global `window.Deno` namespace for
|
|
|
|
* spawned worker and nested workers spawned by it (default: false).
|
|
|
|
*/
|
|
|
|
export interface DenoWorkerOptions extends WorkerOptions {
|
|
|
|
noDenoNamespace?: boolean;
|
|
|
|
}
|
|
|
|
|
2020-01-17 18:43:53 -05:00
|
|
|
export class WorkerImpl extends EventTarget implements Worker {
|
2019-11-09 15:07:14 -05:00
|
|
|
private readonly id: number;
|
2019-09-07 12:27:18 -04:00
|
|
|
private isClosing = false;
|
2020-01-17 18:43:53 -05:00
|
|
|
private messageBuffer: any[] = [];
|
|
|
|
private ready = false;
|
|
|
|
private readonly isClosedPromise: Resolvable<void>;
|
|
|
|
public onerror?: (e: any) => void;
|
2019-04-01 15:09:59 -04:00
|
|
|
public onmessage?: (data: any) => void;
|
|
|
|
public onmessageerror?: () => void;
|
|
|
|
|
2019-08-05 07:23:41 -04:00
|
|
|
constructor(specifier: string, options?: DenoWorkerOptions) {
|
2020-01-17 18:43:53 -05:00
|
|
|
super();
|
2019-08-06 09:22:11 -04:00
|
|
|
let hasSourceCode = false;
|
|
|
|
let sourceCode = new Uint8Array();
|
|
|
|
|
2019-08-05 07:23:41 -04:00
|
|
|
let includeDenoNamespace = true;
|
|
|
|
if (options && options.noDenoNamespace) {
|
|
|
|
includeDenoNamespace = false;
|
|
|
|
}
|
2019-08-06 09:22:11 -04:00
|
|
|
// Handle blob URL.
|
|
|
|
if (specifier.startsWith("blob:")) {
|
|
|
|
hasSourceCode = true;
|
|
|
|
const b = blobURLMap.get(specifier);
|
|
|
|
if (!b) {
|
|
|
|
throw new Error("No Blob associated with the given URL is found");
|
|
|
|
}
|
|
|
|
const blobBytes = blobBytesWeakMap.get(b!);
|
|
|
|
if (!blobBytes) {
|
|
|
|
throw new Error("Invalid Blob");
|
|
|
|
}
|
|
|
|
sourceCode = blobBytes!;
|
|
|
|
}
|
|
|
|
|
2020-01-17 18:43:53 -05:00
|
|
|
const { id, loaded } = createWorker(
|
2019-08-06 09:22:11 -04:00
|
|
|
specifier,
|
|
|
|
includeDenoNamespace,
|
|
|
|
hasSourceCode,
|
|
|
|
sourceCode
|
|
|
|
);
|
2020-01-17 18:43:53 -05:00
|
|
|
this.id = id;
|
|
|
|
this.ready = loaded;
|
|
|
|
this.isClosedPromise = createResolvable();
|
|
|
|
this.poll();
|
2019-04-01 15:09:59 -04:00
|
|
|
}
|
|
|
|
|
2019-04-05 15:57:59 -04:00
|
|
|
get closed(): Promise<void> {
|
|
|
|
return this.isClosedPromise;
|
|
|
|
}
|
|
|
|
|
2020-01-17 18:43:53 -05:00
|
|
|
private handleError(e: any): boolean {
|
|
|
|
const event = new window.Event("error", { cancelable: true });
|
|
|
|
event.message = e.message;
|
|
|
|
event.lineNumber = e.lineNumber ? e.lineNumber + 1 : null;
|
|
|
|
event.columnNumber = e.columnNumber ? e.columnNumber + 1 : null;
|
|
|
|
event.fileName = e.fileName;
|
|
|
|
event.error = null;
|
|
|
|
|
|
|
|
let handled = false;
|
|
|
|
if (this.onerror) {
|
|
|
|
this.onerror(event);
|
|
|
|
if (event.defaultPrevented) {
|
|
|
|
handled = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return handled;
|
|
|
|
}
|
|
|
|
|
|
|
|
async poll(): Promise<void> {
|
|
|
|
// If worker has not been immediately executed
|
|
|
|
// then let's await it's readiness
|
|
|
|
if (!this.ready) {
|
|
|
|
const result = await hostGetWorkerLoaded(this.id);
|
|
|
|
|
|
|
|
if (result.error) {
|
|
|
|
if (!this.handleError(result.error)) {
|
|
|
|
throw new Error(result.error.message);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// drain messages
|
|
|
|
for (const data of this.messageBuffer) {
|
|
|
|
hostPostMessage(this.id, data);
|
|
|
|
}
|
|
|
|
this.messageBuffer = [];
|
|
|
|
this.ready = true;
|
|
|
|
this.run();
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
const result = await hostPollWorker(this.id);
|
|
|
|
|
|
|
|
if (result.error) {
|
|
|
|
if (!this.handleError(result.error)) {
|
|
|
|
throw Error(result.error.message);
|
|
|
|
} else {
|
|
|
|
hostResumeWorker(this.id);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.isClosing = true;
|
|
|
|
hostCloseWorker(this.id);
|
|
|
|
this.isClosedPromise.resolve();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-01 15:09:59 -04:00
|
|
|
postMessage(data: any): void {
|
2020-01-17 18:43:53 -05:00
|
|
|
if (!this.ready) {
|
|
|
|
this.messageBuffer.push(data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-09 15:07:14 -05:00
|
|
|
hostPostMessage(this.id, data);
|
2019-04-01 15:09:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private async run(): Promise<void> {
|
|
|
|
while (!this.isClosing) {
|
2019-11-09 15:07:14 -05:00
|
|
|
const data = await hostGetMessage(this.id);
|
2019-04-01 15:09:59 -04:00
|
|
|
if (data == null) {
|
|
|
|
log("worker got null message. quitting.");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (this.onmessage) {
|
|
|
|
const event = { data };
|
|
|
|
this.onmessage(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|