gecko-dev/devtools/shared/transport/worker-transport.js
Victor Porof b8157dfaaf Bug 1561435 - Format remaining devtools/, a=automatic-formatting, CLOSED TREE
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D35894

--HG--
extra : source : 4722b924e08478f5337ab509718bd66906bf472f
extra : amend_source : a5baa1aab21639fdba44537e3a10b179b0073cb4
2019-07-05 11:29:32 +02:00

115 lines
2.8 KiB
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
// Each worker debugger supports only a single connection to the main thread.
// However, its theoretically possible for multiple servers to connect to the
// same worker. Consequently, each transport has a connection id, to allow
// messages from multiple connections to be multiplexed on a single channel.
/**
* A transport that uses a WorkerDebugger to send packets from the main
* thread to a worker thread.
*/
function MainThreadWorkerDebuggerTransport(dbg, id) {
this._dbg = dbg;
this._id = id;
this.onMessage = this._onMessage.bind(this);
}
MainThreadWorkerDebuggerTransport.prototype = {
constructor: MainThreadWorkerDebuggerTransport,
ready: function() {
this._dbg.addListener(this);
},
close: function() {
this._dbg.removeListener(this);
if (this.hooks) {
this.hooks.onClosed();
}
},
send: function(packet) {
this._dbg.postMessage(
JSON.stringify({
type: "message",
id: this._id,
message: packet,
})
);
},
startBulkSend: function() {
throw new Error("Can't send bulk data from worker threads!");
},
_onMessage: function(message) {
const packet = JSON.parse(message);
if (packet.type !== "message" || packet.id !== this._id) {
return;
}
if (this.hooks) {
this.hooks.onPacket(packet.message);
}
},
};
exports.MainThreadWorkerDebuggerTransport = MainThreadWorkerDebuggerTransport;
/**
* A transport that uses a WorkerDebuggerGlobalScope to send packets from a
* worker thread to the main thread.
*/
function WorkerThreadWorkerDebuggerTransport(scope, id) {
this._scope = scope;
this._id = id;
this._onMessage = this._onMessage.bind(this);
}
WorkerThreadWorkerDebuggerTransport.prototype = {
constructor: WorkerThreadWorkerDebuggerTransport,
ready: function() {
this._scope.addEventListener("message", this._onMessage);
},
close: function() {
this._scope.removeEventListener("message", this._onMessage);
if (this.hooks) {
this.hooks.onClosed();
}
},
send: function(packet) {
this._scope.postMessage(
JSON.stringify({
type: "message",
id: this._id,
message: packet,
})
);
},
startBulkSend: function() {
throw new Error("Can't send bulk data from worker threads!");
},
_onMessage: function(event) {
const packet = JSON.parse(event.data);
if (packet.type !== "message" || packet.id !== this._id) {
return;
}
if (this.hooks) {
this.hooks.onPacket(packet.message);
}
},
};
exports.WorkerThreadWorkerDebuggerTransport = WorkerThreadWorkerDebuggerTransport;