132 lines
4.3 KiB
TypeScript
Raw Normal View History

2019-11-18 18:18:28 -08:00
/**
* Copyright 2018 Google Inc. All rights reserved.
* Modifications copyright (c) Microsoft Corporation.
*
* 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 WebSocket from 'ws';
2022-04-06 13:57:14 -08:00
import type { Progress } from './progress';
import { makeWaitForNextTask } from '../utils';
2020-04-01 14:42:47 -07:00
export type ProtocolRequest = {
id: number;
method: string;
params: any;
sessionId?: string;
};
export type ProtocolResponse = {
id?: number;
method?: string;
sessionId?: string;
error?: { message: string; data: any; };
params?: any;
result?: any;
pageProxyId?: string;
browserContextId?: string;
};
export interface ConnectionTransport {
send(s: ProtocolRequest): void;
close(): void; // Note: calling close is expected to issue onclose at some point.
onmessage?: (message: ProtocolResponse) => void,
onclose?: () => void,
}
2020-04-01 14:42:47 -07:00
export class WebSocketTransport implements ConnectionTransport {
private _ws: WebSocket;
private _progress: Progress;
2020-04-01 14:42:47 -07:00
onmessage?: (message: ProtocolResponse) => void;
onclose?: () => void;
readonly wsEndpoint: string;
2020-04-01 14:42:47 -07:00
static async connect(progress: Progress, url: string, headers?: { [key: string]: string; }, followRedirects?: boolean): Promise<WebSocketTransport> {
progress.log(`<ws connecting> ${url}`);
const transport = new WebSocketTransport(progress, url, headers, followRedirects);
let success = false;
progress.cleanupWhenAborted(async () => {
if (!success)
await transport.closeAndWait().catch(e => null);
});
await new Promise<WebSocketTransport>((fulfill, reject) => {
transport._ws.addEventListener('open', async () => {
progress.log(`<ws connected> ${url}`);
fulfill(transport);
});
transport._ws.addEventListener('error', event => {
progress.log(`<ws connect error> ${url} ${event.message}`);
reject(new Error('WebSocket error: ' + event.message));
transport._ws.close();
});
2020-04-01 14:42:47 -07:00
});
success = true;
return transport;
2020-04-01 14:42:47 -07:00
}
constructor(progress: Progress, url: string, headers?: { [key: string]: string; }, followRedirects?: boolean) {
this.wsEndpoint = url;
2020-04-01 14:42:47 -07:00
this._ws = new WebSocket(url, [], {
perMessageDeflate: false,
maxPayload: 256 * 1024 * 1024, // 256Mb,
// Prevent internal http client error when passing negative timeout.
handshakeTimeout: Math.max(progress.timeUntilDeadline(), 1),
headers,
followRedirects,
2020-04-01 14:42:47 -07:00
});
this._progress = progress;
2020-04-01 14:42:47 -07:00
// The 'ws' module in node sometimes sends us multiple messages in a single task.
// In Web, all IO callbacks (e.g. WebSocket callbacks)
// are dispatched into separate tasks, so there's no need
// to do anything extra.
const messageWrap: (cb: () => void) => void = makeWaitForNextTask();
2020-04-01 14:42:47 -07:00
this._ws.addEventListener('message', event => {
messageWrap(() => {
try {
if (this.onmessage)
this.onmessage.call(null, JSON.parse(event.data as string));
} catch (e) {
this._ws.close();
}
2020-04-01 14:42:47 -07:00
});
});
this._ws.addEventListener('close', event => {
this._progress && this._progress.log(`<ws disconnected> ${url} code=${event.code} reason=${event.reason}`);
2020-04-01 14:42:47 -07:00
if (this.onclose)
this.onclose.call(null);
});
// Prevent Error: read ECONNRESET.
this._ws.addEventListener('error', error => this._progress && this._progress.log(`<ws error> ${error}`));
2020-04-01 14:42:47 -07:00
}
send(message: ProtocolRequest) {
this._ws.send(JSON.stringify(message));
}
close() {
this._progress && this._progress.log(`<ws disconnecting> ${this._ws.url}`);
2020-04-01 14:42:47 -07:00
this._ws.close();
}
async closeAndWait() {
if (this._ws.readyState === WebSocket.CLOSED)
return;
const promise = new Promise(f => this._ws.once('close', f));
this.close();
await promise; // Make sure to await the actual disconnect.
}
2020-04-01 14:42:47 -07:00
}