blob: 009d773cf59533ddb87cd55972994aa22f455a1c [file] [edit]
// Copyright (C) 2018 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import {WasmBridge} from './wasm_bridge';
const selfWorker = self as {} as Worker;
const wasmBridge = new WasmBridge();
// There are two message handlers here:
// 1. The Worker (self.onmessage) handler.
// 2. The MessagePort handler.
// The sequence of actions is the following:
// 1. The frontend does one postMessage({port, wasmModule}) on the Worker
// scope. The wasmModule is precompiled on the main thread and shared so
// V8 can reuse the same tiered-up wasm code across workers.
// 2. All the other messages (i.e. the TraceProcessor RPC binary pipe) will be
// received on the MessagePort.
selfWorker.onmessage = (msg: MessageEvent) => {
const data = msg.data as {
port: MessagePort;
wasmModule: WebAssembly.Module;
};
wasmBridge.initialize(data.port, data.wasmModule);
};