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.
|
|
|
|
*/
|
|
|
|
|
2020-04-01 14:42:47 -07:00
|
|
|
import * as WebSocket from 'ws';
|
|
|
|
import { helper } from './helper';
|
2020-05-29 14:39:34 -07:00
|
|
|
import { Log } from './logger';
|
|
|
|
import { Progress } from './progress';
|
|
|
|
import { browserLog } from './server/processLauncher';
|
2020-04-01 14:42:47 -07:00
|
|
|
|
2020-03-27 15:18:34 -07:00
|
|
|
export type ProtocolRequest = {
|
|
|
|
id: number;
|
2020-03-26 23:30:55 -07:00
|
|
|
method: string;
|
2020-03-27 15:18:34 -07:00
|
|
|
params: any;
|
|
|
|
sessionId?: string;
|
|
|
|
pageProxyId?: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
export type ProtocolResponse = {
|
|
|
|
id?: number;
|
|
|
|
method?: string;
|
2020-03-26 23:30:55 -07:00
|
|
|
sessionId?: string;
|
|
|
|
error?: { message: string; data: any; };
|
2020-03-27 15:18:34 -07:00
|
|
|
params?: any;
|
2020-03-26 23:30:55 -07:00
|
|
|
result?: any;
|
|
|
|
pageProxyId?: string;
|
|
|
|
};
|
|
|
|
|
2019-12-12 21:30:49 -08:00
|
|
|
export interface ConnectionTransport {
|
2020-03-27 15:18:34 -07:00
|
|
|
send(s: ProtocolRequest): void;
|
2020-01-22 17:42:10 -08:00
|
|
|
close(): void; // Note: calling close is expected to issue onclose at some point.
|
2020-03-27 15:18:34 -07:00
|
|
|
onmessage?: (message: ProtocolResponse) => void,
|
2019-12-12 21:30:49 -08:00
|
|
|
onclose?: () => void,
|
|
|
|
}
|
|
|
|
|
2020-04-02 17:56:14 -07:00
|
|
|
export class SlowMoTransport implements ConnectionTransport {
|
2019-12-13 13:53:49 -08:00
|
|
|
private readonly _delay: number;
|
|
|
|
private readonly _delegate: ConnectionTransport;
|
|
|
|
|
2020-03-27 15:18:34 -07:00
|
|
|
onmessage?: (message: ProtocolResponse) => void;
|
2019-12-13 13:53:49 -08:00
|
|
|
onclose?: () => void;
|
|
|
|
|
|
|
|
static wrap(transport: ConnectionTransport, delay?: number): ConnectionTransport {
|
|
|
|
return delay ? new SlowMoTransport(transport, delay) : transport;
|
|
|
|
}
|
|
|
|
|
|
|
|
constructor(transport: ConnectionTransport, delay: number) {
|
|
|
|
this._delay = delay;
|
|
|
|
this._delegate = transport;
|
2020-03-10 15:57:39 -07:00
|
|
|
this._delegate.onmessage = this._onmessage.bind(this);
|
2019-12-13 13:53:49 -08:00
|
|
|
this._delegate.onclose = this._onClose.bind(this);
|
|
|
|
}
|
|
|
|
|
2020-03-27 15:18:34 -07:00
|
|
|
private _onmessage(message: ProtocolResponse) {
|
2020-03-10 15:57:39 -07:00
|
|
|
if (this.onmessage)
|
|
|
|
this.onmessage(message);
|
2019-12-13 13:53:49 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
private _onClose() {
|
|
|
|
if (this.onclose)
|
|
|
|
this.onclose();
|
2020-01-13 13:33:25 -08:00
|
|
|
this._delegate.onmessage = undefined;
|
|
|
|
this._delegate.onclose = undefined;
|
2019-12-13 13:53:49 -08:00
|
|
|
}
|
|
|
|
|
2020-03-27 15:18:34 -07:00
|
|
|
send(s: ProtocolRequest) {
|
2020-03-10 15:57:39 -07:00
|
|
|
setTimeout(() => {
|
|
|
|
if (this._delegate.onmessage)
|
|
|
|
this._delegate.send(s);
|
|
|
|
}, this._delay);
|
2019-12-13 13:53:49 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
close() {
|
2019-12-13 16:35:10 -08:00
|
|
|
this._delegate.close();
|
2019-12-13 13:53:49 -08:00
|
|
|
}
|
|
|
|
}
|
2020-02-13 17:46:40 -08:00
|
|
|
|
|
|
|
export class DeferWriteTransport implements ConnectionTransport {
|
|
|
|
private _delegate: ConnectionTransport;
|
|
|
|
private _readPromise: Promise<void>;
|
|
|
|
|
2020-03-27 15:18:34 -07:00
|
|
|
onmessage?: (message: ProtocolResponse) => void;
|
2020-02-13 17:46:40 -08:00
|
|
|
onclose?: () => void;
|
|
|
|
|
|
|
|
constructor(transport: ConnectionTransport) {
|
|
|
|
this._delegate = transport;
|
|
|
|
let callback: () => void;
|
|
|
|
this._readPromise = new Promise(f => callback = f);
|
2020-03-27 15:18:34 -07:00
|
|
|
this._delegate.onmessage = (s: ProtocolResponse) => {
|
2020-02-13 17:46:40 -08:00
|
|
|
callback();
|
|
|
|
if (this.onmessage)
|
|
|
|
this.onmessage(s);
|
|
|
|
};
|
|
|
|
this._delegate.onclose = () => {
|
|
|
|
if (this.onclose)
|
|
|
|
this.onclose();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-03-27 15:18:34 -07:00
|
|
|
async send(s: ProtocolRequest) {
|
2020-02-13 17:46:40 -08:00
|
|
|
await this._readPromise;
|
|
|
|
this._delegate.send(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
close() {
|
|
|
|
this._delegate.close();
|
|
|
|
}
|
|
|
|
}
|
2020-03-28 10:14:59 -07:00
|
|
|
|
2020-04-01 14:42:47 -07:00
|
|
|
export class WebSocketTransport implements ConnectionTransport {
|
2020-05-21 09:43:10 -07:00
|
|
|
private _ws: WebSocket;
|
2020-05-29 14:39:34 -07:00
|
|
|
private _progress: Progress;
|
2020-04-01 14:42:47 -07:00
|
|
|
|
|
|
|
onmessage?: (message: ProtocolResponse) => void;
|
|
|
|
onclose?: () => void;
|
|
|
|
|
2020-06-04 16:43:48 -07:00
|
|
|
static async connect(progress: Progress, url: string): Promise<WebSocketTransport> {
|
2020-05-29 14:39:34 -07:00
|
|
|
progress.log(browserLog, `<ws connecting> ${url}`);
|
|
|
|
const transport = new WebSocketTransport(progress, url);
|
2020-06-04 16:43:48 -07:00
|
|
|
let success = false;
|
|
|
|
progress.aborted.then(() => {
|
|
|
|
if (!success)
|
|
|
|
transport.closeAndWait().catch(e => null);
|
|
|
|
});
|
|
|
|
await new Promise<WebSocketTransport>((fulfill, reject) => {
|
2020-05-11 13:49:57 -07:00
|
|
|
transport._ws.addEventListener('open', async () => {
|
2020-05-29 14:39:34 -07:00
|
|
|
progress.log(browserLog, `<ws connected> ${url}`);
|
2020-05-21 09:43:10 -07:00
|
|
|
fulfill(transport);
|
2020-05-11 13:49:57 -07:00
|
|
|
});
|
2020-05-18 19:00:38 -07:00
|
|
|
transport._ws.addEventListener('error', event => {
|
2020-05-29 14:39:34 -07:00
|
|
|
progress.log(browserLog, `<ws connect error> ${url} ${event.message}`);
|
2020-05-18 19:00:38 -07:00
|
|
|
reject(new Error('WebSocket error: ' + event.message));
|
2020-05-21 09:43:10 -07:00
|
|
|
transport._ws.close();
|
2020-05-18 19:00:38 -07:00
|
|
|
});
|
2020-04-01 14:42:47 -07:00
|
|
|
});
|
2020-06-04 16:43:48 -07:00
|
|
|
success = true;
|
|
|
|
return transport;
|
2020-04-01 14:42:47 -07:00
|
|
|
}
|
|
|
|
|
2020-05-29 14:39:34 -07:00
|
|
|
constructor(progress: Progress, url: string) {
|
2020-04-01 14:42:47 -07:00
|
|
|
this._ws = new WebSocket(url, [], {
|
|
|
|
perMessageDeflate: false,
|
2020-05-21 09:43:10 -07:00
|
|
|
maxPayload: 256 * 1024 * 1024, // 256Mb,
|
2020-05-29 14:39:34 -07:00
|
|
|
handshakeTimeout: helper.timeUntilDeadline(progress.deadline)
|
2020-04-01 14:42:47 -07:00
|
|
|
});
|
2020-05-29 14:39:34 -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 = helper.makeWaitForNextTask();
|
|
|
|
|
|
|
|
this._ws.addEventListener('message', event => {
|
|
|
|
messageWrap(() => {
|
|
|
|
if (this.onmessage)
|
|
|
|
this.onmessage.call(null, JSON.parse(event.data));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
this._ws.addEventListener('close', event => {
|
2020-05-29 14:39:34 -07:00
|
|
|
this._progress && this._progress.log(browserLog, `<ws disconnected> ${url}`);
|
2020-04-01 14:42:47 -07:00
|
|
|
if (this.onclose)
|
|
|
|
this.onclose.call(null);
|
|
|
|
});
|
|
|
|
// Silently ignore all errors - we don't know what to do with them.
|
|
|
|
this._ws.addEventListener('error', () => {});
|
|
|
|
}
|
|
|
|
|
|
|
|
send(message: ProtocolRequest) {
|
|
|
|
this._ws.send(JSON.stringify(message));
|
|
|
|
}
|
|
|
|
|
|
|
|
close() {
|
2020-05-29 14:39:34 -07:00
|
|
|
this._progress && this._progress.log(browserLog, `<ws disconnecting> ${this._ws.url}`);
|
2020-04-01 14:42:47 -07:00
|
|
|
this._ws.close();
|
|
|
|
}
|
2020-05-29 14:39:34 -07:00
|
|
|
|
|
|
|
async closeAndWait() {
|
|
|
|
const promise = new Promise(f => this.onclose = f);
|
|
|
|
this.close();
|
|
|
|
return promise; // Make sure to await the actual disconnect.
|
|
|
|
}
|
2020-04-01 14:42:47 -07:00
|
|
|
}
|
|
|
|
|
2020-03-28 10:14:59 -07:00
|
|
|
export class SequenceNumberMixer<V> {
|
|
|
|
static _lastSequenceNumber = 1;
|
|
|
|
private _values = new Map<number, V>();
|
|
|
|
|
|
|
|
generate(value: V): number {
|
|
|
|
const sequenceNumber = ++SequenceNumberMixer._lastSequenceNumber;
|
|
|
|
this._values.set(sequenceNumber, value);
|
|
|
|
return sequenceNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
take(sequenceNumber: number): V | undefined {
|
|
|
|
const value = this._values.get(sequenceNumber);
|
|
|
|
this._values.delete(sequenceNumber);
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
}
|
2020-04-02 17:56:14 -07:00
|
|
|
|
|
|
|
export class InterceptingTransport implements ConnectionTransport {
|
|
|
|
private readonly _delegate: ConnectionTransport;
|
|
|
|
private _interceptor: (message: ProtocolRequest) => ProtocolRequest;
|
|
|
|
|
|
|
|
onmessage?: (message: ProtocolResponse) => void;
|
|
|
|
onclose?: () => void;
|
|
|
|
|
|
|
|
constructor(transport: ConnectionTransport, interceptor: (message: ProtocolRequest) => ProtocolRequest) {
|
|
|
|
this._delegate = transport;
|
|
|
|
this._interceptor = interceptor;
|
|
|
|
this._delegate.onmessage = this._onmessage.bind(this);
|
|
|
|
this._delegate.onclose = this._onClose.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
private _onmessage(message: ProtocolResponse) {
|
|
|
|
if (this.onmessage)
|
|
|
|
this.onmessage(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
private _onClose() {
|
|
|
|
if (this.onclose)
|
|
|
|
this.onclose();
|
|
|
|
this._delegate.onmessage = undefined;
|
|
|
|
this._delegate.onclose = undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
send(s: ProtocolRequest) {
|
|
|
|
this._delegate.send(this._interceptor(s));
|
|
|
|
}
|
|
|
|
|
|
|
|
close() {
|
|
|
|
this._delegate.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-20 07:52:26 -07:00
|
|
|
export const protocolLog: Log = {
|
|
|
|
name: 'protocol',
|
|
|
|
severity: 'verbose',
|
|
|
|
color: 'green'
|
|
|
|
};
|