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.
|
|
|
|
*/
|
|
|
|
|
2019-12-12 21:30:49 -08:00
|
|
|
export interface ConnectionTransport {
|
|
|
|
send(s: string): void;
|
2020-01-22 17:42:10 -08:00
|
|
|
close(): void; // Note: calling close is expected to issue onclose at some point.
|
2019-12-12 21:30:49 -08:00
|
|
|
onmessage?: (message: string) => void,
|
|
|
|
onclose?: () => void,
|
|
|
|
}
|
|
|
|
|
2019-12-13 13:53:49 -08:00
|
|
|
export class SlowMoTransport {
|
|
|
|
private readonly _delay: number;
|
|
|
|
private readonly _delegate: ConnectionTransport;
|
|
|
|
|
|
|
|
onmessage?: (message: string) => void;
|
|
|
|
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-10 15:57:39 -07:00
|
|
|
private _onmessage(message: string) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
send(s: string) {
|
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>;
|
|
|
|
|
|
|
|
onmessage?: (message: string) => void;
|
|
|
|
onclose?: () => void;
|
|
|
|
|
|
|
|
constructor(transport: ConnectionTransport) {
|
|
|
|
this._delegate = transport;
|
|
|
|
let callback: () => void;
|
|
|
|
this._readPromise = new Promise(f => callback = f);
|
|
|
|
this._delegate.onmessage = s => {
|
|
|
|
callback();
|
|
|
|
if (this.onmessage)
|
|
|
|
this.onmessage(s);
|
|
|
|
};
|
|
|
|
this._delegate.onclose = () => {
|
|
|
|
if (this.onclose)
|
|
|
|
this.onclose();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
async send(s: string) {
|
|
|
|
await this._readPromise;
|
|
|
|
this._delegate.send(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
close() {
|
|
|
|
this._delegate.close();
|
|
|
|
}
|
|
|
|
}
|