mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
0ceb554343
* Native ES modules This is a major refactor of internal compiler. Before: JS and TS both were sent through the typescript compiler where their imports were parsed and handled. Both compiled to AMD JS and finally sent to V8 Now: JS is sent directly into V8. TS is sent through the typescript compiler, but tsc generates ES modules now instead of AMD. This generated JS is then dumped into V8. This should much faster for pure JS code. It may improve TS compilation speed. In the future this allows us to separate TS out of the runtime heap and into its own dedicated snapshot. This will result in a smaller runtime heap, and thus should be faster. Some tests were unfortunately disabled to ease landing this patch: 1. compiler_tests.ts which I intend to bring back in later commits. 2. Some text_encoding_test.ts tests which made the file invalid utf8. See PR for a discussion. Also worth noting that this is necessary to support WASM
73 lines
1.9 KiB
TypeScript
73 lines
1.9 KiB
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import * as dispatch from "./dispatch";
|
|
import * as msg from "gen/msg_generated";
|
|
import * as flatbuffers from "./flatbuffers";
|
|
import { assert, log } from "./util";
|
|
import { globalEval } from "./global_eval";
|
|
|
|
export async function postMessage(data: Uint8Array): Promise<void> {
|
|
const builder = flatbuffers.createBuilder();
|
|
msg.WorkerPostMessage.startWorkerPostMessage(builder);
|
|
const inner = msg.WorkerPostMessage.endWorkerPostMessage(builder);
|
|
const baseRes = await dispatch.sendAsync(
|
|
builder,
|
|
msg.Any.WorkerPostMessage,
|
|
inner,
|
|
data
|
|
);
|
|
assert(baseRes != null);
|
|
}
|
|
|
|
export async function getMessage(): Promise<null | Uint8Array> {
|
|
log("getMessage");
|
|
const builder = flatbuffers.createBuilder();
|
|
msg.WorkerGetMessage.startWorkerGetMessage(builder);
|
|
const inner = msg.WorkerGetMessage.endWorkerGetMessage(builder);
|
|
const baseRes = await dispatch.sendAsync(
|
|
builder,
|
|
msg.Any.WorkerGetMessage,
|
|
inner
|
|
);
|
|
assert(baseRes != null);
|
|
assert(
|
|
msg.Any.WorkerGetMessageRes === baseRes!.innerType(),
|
|
`base.innerType() unexpectedly is ${baseRes!.innerType()}`
|
|
);
|
|
const res = new msg.WorkerGetMessageRes();
|
|
assert(baseRes!.inner(res) != null);
|
|
|
|
const dataArray = res.dataArray();
|
|
if (dataArray == null) {
|
|
return null;
|
|
} else {
|
|
return new Uint8Array(dataArray!);
|
|
}
|
|
}
|
|
|
|
let isClosing = false;
|
|
|
|
export function workerClose(): void {
|
|
isClosing = true;
|
|
}
|
|
|
|
export async function workerMain() {
|
|
log("workerMain");
|
|
|
|
// TODO avoid using globalEval to get Window. But circular imports if getting
|
|
// it from globals.ts
|
|
const window = globalEval("this");
|
|
|
|
while (!isClosing) {
|
|
const data = await getMessage();
|
|
if (data == null) {
|
|
log("workerMain got null message. quitting.");
|
|
break;
|
|
}
|
|
if (window["onmessage"]) {
|
|
const event = { data };
|
|
window.onmessage(event);
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
}
|