mirror of
https://github.com/thedotmack/claude-mem.git
synced 2026-09-20 04:23:02 +08:00
14447b9ee9
Night-ship rebase of #3717 by @rodboev onto latest main. Treats the stdin reader's malformed-EOF and incomplete-timeout diagnostics as non-blocking so UserPromptSubmit fails open. Supersedes #3717. Refs #3699 / #3605.
41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
import { PassThrough, Readable } from 'stream';
|
|
|
|
const realStdin = process.stdin;
|
|
const realStdinDescriptor = Object.getOwnPropertyDescriptor(process, 'stdin');
|
|
let activeFake: NodeJS.ReadStream | null = null;
|
|
|
|
export function installFakeStdin(payload: string): void {
|
|
const fake = Readable.from([payload], { objectMode: false }) as unknown as NodeJS.ReadStream;
|
|
activeFake = fake;
|
|
Object.defineProperty(fake, 'isTTY', { value: false, configurable: true });
|
|
Object.defineProperty(process, 'stdin', {
|
|
configurable: true,
|
|
enumerable: realStdinDescriptor?.enumerable ?? true,
|
|
writable: true,
|
|
value: fake,
|
|
});
|
|
}
|
|
|
|
export function installOpenFakeStdin(payload: string): void {
|
|
const fake = new PassThrough() as unknown as NodeJS.ReadStream & { write(chunk: string): boolean };
|
|
Object.defineProperty(fake, 'isTTY', { value: false, configurable: true });
|
|
Object.defineProperty(process, 'stdin', {
|
|
configurable: true,
|
|
enumerable: realStdinDescriptor?.enumerable ?? true,
|
|
writable: true,
|
|
value: fake,
|
|
});
|
|
activeFake = fake;
|
|
fake.write(payload);
|
|
}
|
|
|
|
export function restoreStdin(): void {
|
|
activeFake?.destroy?.();
|
|
activeFake = null;
|
|
if (realStdinDescriptor) {
|
|
Object.defineProperty(process, 'stdin', realStdinDescriptor);
|
|
} else {
|
|
Object.defineProperty(process, 'stdin', { value: realStdin, configurable: true, writable: true });
|
|
}
|
|
}
|