| |
| |
| |
|
|
| import { Worker } from 'worker_threads'; |
| import { Socket } from 'net'; |
| import { IDisposable } from './types'; |
| import { IWorkerData, ConoutWorkerMessage, getWorkerPipeName } from './shared/conout'; |
| import { join } from 'path'; |
| import { IEvent, EventEmitter2 } from './eventEmitter2'; |
|
|
| |
| |
| |
| |
| |
| const FLUSH_DATA_INTERVAL = 1000; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| export class ConoutConnection implements IDisposable { |
| private _worker: Worker; |
| private _drainTimeout: NodeJS.Timeout | undefined; |
| private _isDisposed: boolean = false; |
|
|
| private _onReady = new EventEmitter2<void>(); |
| public get onReady(): IEvent<void> { return this._onReady.event; } |
|
|
| constructor( |
| private _conoutPipeName: string, |
| private _useConptyDll: boolean |
| ) { |
| const workerData: IWorkerData = { |
| conoutPipeName: _conoutPipeName |
| }; |
| const scriptPath = __dirname.replace('node_modules.asar', 'node_modules.asar.unpacked'); |
| this._worker = new Worker(join(scriptPath, 'worker/conoutSocketWorker.js'), { workerData }); |
| this._worker.on('message', (message: ConoutWorkerMessage) => { |
| switch (message) { |
| case ConoutWorkerMessage.READY: |
| this._onReady.fire(); |
| return; |
| default: |
| console.warn('Unexpected ConoutWorkerMessage', message); |
| } |
| }); |
| } |
|
|
| dispose(): void { |
| if (!this._useConptyDll && this._isDisposed) { |
| return; |
| } |
| this._isDisposed = true; |
| |
| this._drainDataAndClose(); |
| } |
|
|
| connectSocket(socket: Socket): void { |
| socket.connect(getWorkerPipeName(this._conoutPipeName)); |
| } |
|
|
| private _drainDataAndClose(): void { |
| if (this._drainTimeout) { |
| clearTimeout(this._drainTimeout); |
| } |
| this._drainTimeout = setTimeout(() => this._destroySocket(), FLUSH_DATA_INTERVAL); |
| } |
|
|
| private async _destroySocket(): Promise<void> { |
| await this._worker.terminate(); |
| } |
| } |
|
|