2018-02-15 01:51:29 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2018 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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-06-18 14:53:23 +00:00
|
|
|
import { helper, debugError, PuppeteerEventListener } from '../common/helper';
|
|
|
|
import { ConnectionTransport } from '../common/ConnectionTransport';
|
2018-02-15 01:51:29 +00:00
|
|
|
|
2020-05-06 13:23:07 +00:00
|
|
|
export class PipeTransport implements ConnectionTransport {
|
2020-04-20 14:05:58 +00:00
|
|
|
_pipeWrite: NodeJS.WritableStream;
|
|
|
|
_pendingMessage: string;
|
|
|
|
_eventListeners: PuppeteerEventListener[];
|
|
|
|
|
|
|
|
onclose?: () => void;
|
|
|
|
onmessage?: () => void;
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
constructor(
|
|
|
|
pipeWrite: NodeJS.WritableStream,
|
|
|
|
pipeRead: NodeJS.ReadableStream
|
|
|
|
) {
|
2018-02-15 01:51:29 +00:00
|
|
|
this._pipeWrite = pipeWrite;
|
|
|
|
this._pendingMessage = '';
|
|
|
|
this._eventListeners = [
|
2020-05-07 10:54:55 +00:00
|
|
|
helper.addEventListener(pipeRead, 'data', (buffer) =>
|
|
|
|
this._dispatch(buffer)
|
|
|
|
),
|
2018-10-31 23:31:29 +00:00
|
|
|
helper.addEventListener(pipeRead, 'close', () => {
|
2020-05-07 10:54:55 +00:00
|
|
|
if (this.onclose) this.onclose.call(null);
|
2019-07-16 00:53:27 +00:00
|
|
|
}),
|
|
|
|
helper.addEventListener(pipeRead, 'error', debugError),
|
|
|
|
helper.addEventListener(pipeWrite, 'error', debugError),
|
2018-02-15 01:51:29 +00:00
|
|
|
];
|
2018-09-07 20:36:16 +00:00
|
|
|
this.onmessage = null;
|
|
|
|
this.onclose = null;
|
2018-02-15 01:51:29 +00:00
|
|
|
}
|
|
|
|
|
2020-04-20 14:05:58 +00:00
|
|
|
send(message: string): void {
|
2018-02-15 01:51:29 +00:00
|
|
|
this._pipeWrite.write(message);
|
2018-07-13 18:07:24 +00:00
|
|
|
this._pipeWrite.write('\0');
|
2018-02-15 01:51:29 +00:00
|
|
|
}
|
|
|
|
|
2020-04-20 14:05:58 +00:00
|
|
|
_dispatch(buffer: Buffer): void {
|
2018-07-13 18:07:24 +00:00
|
|
|
let end = buffer.indexOf('\0');
|
2018-02-15 01:51:29 +00:00
|
|
|
if (end === -1) {
|
|
|
|
this._pendingMessage += buffer.toString();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const message = this._pendingMessage + buffer.toString(undefined, 0, end);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (this.onmessage) this.onmessage.call(null, message);
|
2018-02-15 01:51:29 +00:00
|
|
|
|
|
|
|
let start = end + 1;
|
2018-07-13 18:07:24 +00:00
|
|
|
end = buffer.indexOf('\0', start);
|
2018-02-15 01:51:29 +00:00
|
|
|
while (end !== -1) {
|
2018-09-07 20:36:16 +00:00
|
|
|
if (this.onmessage)
|
|
|
|
this.onmessage.call(null, buffer.toString(undefined, start, end));
|
2018-02-15 01:51:29 +00:00
|
|
|
start = end + 1;
|
2018-07-13 18:07:24 +00:00
|
|
|
end = buffer.indexOf('\0', start);
|
2018-02-15 01:51:29 +00:00
|
|
|
}
|
|
|
|
this._pendingMessage = buffer.toString(undefined, start);
|
|
|
|
}
|
|
|
|
|
2020-04-20 14:05:58 +00:00
|
|
|
close(): void {
|
2018-02-15 01:51:29 +00:00
|
|
|
this._pipeWrite = null;
|
|
|
|
helper.removeEventListeners(this._eventListeners);
|
|
|
|
}
|
|
|
|
}
|