summaryrefslogtreecommitdiffstats
path: root/remote/server/WebSocketTransport.sys.mjs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /remote/server/WebSocketTransport.sys.mjs
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'remote/server/WebSocketTransport.sys.mjs')
-rw-r--r--remote/server/WebSocketTransport.sys.mjs130
1 files changed, 130 insertions, 0 deletions
diff --git a/remote/server/WebSocketTransport.sys.mjs b/remote/server/WebSocketTransport.sys.mjs
new file mode 100644
index 0000000000..0ac6a6399a
--- /dev/null
+++ b/remote/server/WebSocketTransport.sys.mjs
@@ -0,0 +1,130 @@
+/* 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/. */
+
+// This is an XPCOM service-ified copy of ../devtools/shared/transport/websocket-transport.js.
+
+const lazy = {};
+
+ChromeUtils.defineESModuleGetters(lazy, {
+ EventEmitter: "resource://gre/modules/EventEmitter.sys.mjs",
+});
+
+export function WebSocketTransport(socket) {
+ lazy.EventEmitter.decorate(this);
+
+ this.active = false;
+ this.hooks = null;
+ this.socket = socket;
+}
+
+WebSocketTransport.prototype = {
+ ready() {
+ if (this.active) {
+ return;
+ }
+
+ this.socket.addEventListener("message", this);
+ this.socket.addEventListener("close", this);
+
+ this.active = true;
+ },
+
+ send(object) {
+ this.emit("send", object);
+ if (this.socket) {
+ this.socket.send(JSON.stringify(object));
+ }
+ },
+
+ startBulkSend() {
+ throw new Error("Bulk send is not supported by WebSocket transport");
+ },
+
+ /**
+ * Force closing the active connection and WebSocket.
+ */
+ close() {
+ if (!this.socket) {
+ return;
+ }
+ this.emit("close");
+
+ if (this.hooks) {
+ this.hooks.onConnectionClose();
+ }
+
+ this.active = false;
+
+ this.socket.removeEventListener("message", this);
+
+ // Remove the listener that is used when the connection
+ // is closed because we already emitted the 'close' event.
+ // Instead listen for the closing of the WebSocket.
+ this.socket.removeEventListener("close", this);
+ this.socket.addEventListener("close", this.onSocketClose.bind(this));
+
+ // Close socket with code `1000` for a normal closure.
+ this.socket.close(1000);
+ },
+
+ /**
+ * Callback for socket on close event,
+ * it is used in case websocket was closed by the client.
+ */
+ onClose() {
+ if (!this.socket) {
+ return;
+ }
+ this.emit("close");
+
+ if (this.hooks) {
+ this.hooks.onConnectionClose();
+ this.hooks.onSocketClose();
+ this.hooks = null;
+ }
+
+ this.active = false;
+
+ this.socket.removeEventListener("message", this);
+ this.socket.removeEventListener("close", this);
+ this.socket = null;
+ },
+
+ /**
+ * Callback which is called when we can be sure that websocket is closed.
+ */
+ onSocketClose() {
+ this.socket = null;
+
+ if (this.hooks) {
+ this.hooks.onSocketClose();
+ this.hooks = null;
+ }
+ },
+
+ handleEvent(event) {
+ switch (event.type) {
+ case "message":
+ this.onMessage(event);
+ break;
+ case "close":
+ this.onClose();
+ break;
+ }
+ },
+
+ onMessage({ data }) {
+ if (typeof data !== "string") {
+ throw new Error(
+ "Binary messages are not supported by WebSocket transport"
+ );
+ }
+
+ const object = JSON.parse(data);
+ this.emit("packet", object);
+ if (this.hooks) {
+ this.hooks.onPacket(object);
+ }
+ },
+};