mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-26 02:22:49 +08:00
23 lines
765 B
TypeScript
23 lines
765 B
TypeScript
/**
|
|
* Copyright (c) 2020, Microsoft Corporation (MIT License).
|
|
*/
|
|
|
|
import { parentPort, workerData } from 'worker_threads';
|
|
import { Socket, createServer } from 'net';
|
|
import { ConoutWorkerMessage, IWorkerData, getWorkerPipeName } from '@homebridge/node-pty-prebuilt-multiarch/src/shared/conout';
|
|
|
|
const conoutPipeName = (workerData as IWorkerData).conoutPipeName;
|
|
const conoutSocket = new Socket();
|
|
conoutSocket.setEncoding('utf8');
|
|
conoutSocket.connect(conoutPipeName, () => {
|
|
const server = createServer(workerSocket => {
|
|
conoutSocket.pipe(workerSocket);
|
|
});
|
|
server.listen(getWorkerPipeName(conoutPipeName));
|
|
|
|
if (!parentPort) {
|
|
throw new Error('worker_threads parentPort is null');
|
|
}
|
|
parentPort.postMessage(ConoutWorkerMessage.READY);
|
|
});
|