85d2225e0c
* Fix loading within the CLI * Remove app * Remove promise handle * Add initial travis file * Add libxkbfile dependency * Add libxkbfile-dev * Add build script * Fix malformed bash statement * Remove yarn from script * Improve build script * Extract upx before usage * Only run upx if on linux * Ensure resource directory exists * Pack runnable binary * Export binary with platform * Improve build process * Install upx before running install script * Update typescript version before running nexe * Add os.release() function for multi-platform support * Update travis.yml to improve deployment * Add on CI * Update to v1.31.0 * Add libsecret * Update build target * Skip cleanup * Fix built-in extensions * Add basics for apps * Create custom DNS server * Fix forking within CLI. Fixes TS language features * Fix filename resolve * Fix default extensions path * Add custom dialog * Store workspace path * Remove outfiles * Cleanup * Always authed outside of CLI * Use location.host for client * Remove useless app interface * Remove debug file for building wordlist * Use chromes tcp host * Update patch * Build browser app before packaging * Replace all css containing file:// URLs, fix webviews * Fix save * Fix mkdir
133 lines
3.4 KiB
TypeScript
133 lines
3.4 KiB
TypeScript
import { Emitter } from "@coder/events";
|
|
import { field, logger } from "@coder/logger";
|
|
import { Client, ReadWriteConnection } from "@coder/protocol";
|
|
import { retry } from "../retry";
|
|
|
|
/**
|
|
* A connection based on a web socket. Automatically reconnects and buffers
|
|
* messages during connection.
|
|
*/
|
|
class WebsocketConnection implements ReadWriteConnection {
|
|
private activeSocket: WebSocket | undefined;
|
|
private readonly messageBuffer = <Uint8Array[]>[];
|
|
private readonly socketTimeoutDelay = 60 * 1000;
|
|
private readonly retryName = "Socket";
|
|
private isUp: boolean = false;
|
|
private closed: boolean = false;
|
|
|
|
private readonly messageEmitter = new Emitter<Uint8Array>();
|
|
private readonly closeEmitter = new Emitter<void>();
|
|
private readonly upEmitter = new Emitter<void>();
|
|
private readonly downEmitter = new Emitter<void>();
|
|
|
|
public readonly onUp = this.upEmitter.event;
|
|
public readonly onClose = this.closeEmitter.event;
|
|
public readonly onDown = this.downEmitter.event;
|
|
public readonly onMessage = this.messageEmitter.event;
|
|
|
|
public constructor() {
|
|
retry.register(this.retryName, () => this.connect());
|
|
retry.block(this.retryName);
|
|
retry.run(this.retryName);
|
|
}
|
|
|
|
public send(data: Buffer | Uint8Array): void {
|
|
if (this.closed) {
|
|
throw new Error("web socket is closed");
|
|
}
|
|
if (!this.activeSocket || this.activeSocket.readyState !== this.activeSocket.OPEN) {
|
|
this.messageBuffer.push(data);
|
|
} else {
|
|
this.activeSocket.send(data);
|
|
}
|
|
}
|
|
|
|
public close(): void {
|
|
this.closed = true;
|
|
this.dispose();
|
|
this.closeEmitter.emit();
|
|
}
|
|
|
|
/**
|
|
* Connect to the server.
|
|
*/
|
|
private async connect(): Promise<void> {
|
|
const socket = await this.openSocket();
|
|
|
|
socket.addEventListener("message", (event: MessageEvent) => {
|
|
this.messageEmitter.emit(event.data);
|
|
});
|
|
|
|
socket.addEventListener("close", (event) => {
|
|
if (this.isUp) {
|
|
this.isUp = false;
|
|
this.downEmitter.emit(undefined);
|
|
}
|
|
logger.warn(
|
|
"Web socket closed",
|
|
field("code", event.code),
|
|
field("reason", event.reason),
|
|
field("wasClean", event.wasClean),
|
|
);
|
|
if (!this.closed) {
|
|
retry.block(this.retryName);
|
|
retry.run(this.retryName);
|
|
}
|
|
});
|
|
|
|
// Send any messages that were queued while we were waiting to connect.
|
|
while (this.messageBuffer.length > 0) {
|
|
socket.send(this.messageBuffer.shift()!);
|
|
}
|
|
|
|
if (!this.isUp) {
|
|
this.isUp = true;
|
|
this.upEmitter.emit(undefined);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Open a web socket, disposing the previous connection if any.
|
|
*/
|
|
private async openSocket(): Promise<WebSocket> {
|
|
this.dispose();
|
|
const socket = new WebSocket(
|
|
`${location.protocol === "https:" ? "wss" : "ws"}://${location.host}`,
|
|
);
|
|
socket.binaryType = "arraybuffer";
|
|
this.activeSocket = socket;
|
|
|
|
const socketWaitTimeout = window.setTimeout(() => {
|
|
socket.close();
|
|
}, this.socketTimeoutDelay);
|
|
|
|
await new Promise((resolve, reject): void => {
|
|
const onClose = (): void => {
|
|
clearTimeout(socketWaitTimeout);
|
|
socket.removeEventListener("close", onClose);
|
|
reject();
|
|
};
|
|
socket.addEventListener("close", onClose);
|
|
|
|
socket.addEventListener("open", async () => {
|
|
clearTimeout(socketWaitTimeout);
|
|
resolve();
|
|
});
|
|
});
|
|
|
|
return socket;
|
|
}
|
|
|
|
/**
|
|
* Dispose the current connection.
|
|
*/
|
|
private dispose(): void {
|
|
if (this.activeSocket) {
|
|
this.activeSocket.close();
|
|
}
|
|
}
|
|
}
|
|
|
|
// Global instance so all fills can use the same client.
|
|
export const client = new Client(new WebsocketConnection());
|