mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-19 05:05:44 +08:00
32 lines
1.3 KiB
TypeScript
32 lines
1.3 KiB
TypeScript
import type { ITerminal, IPtyOpenOptions, IPtyForkOptions, IWindowsPtyForkOptions } from '@homebridge/node-pty-prebuilt-multiarch/src/interfaces';
|
|
import type { ArgvOrCommandLine } from './node_modules/@homebridge/node-pty-prebuilt-multiarch/src/types';
|
|
// import type { ArgvOrCommandLine } from '@homebridge/node-pty-prebuilt-multiarch/src/types';
|
|
import { WindowsTerminal } from './windowsTerminal';
|
|
import { UnixTerminal } from './unixTerminal';
|
|
import { fileURLToPath } from 'node:url';
|
|
import path, { dirname } from 'node:path';
|
|
|
|
let terminalCtor: typeof WindowsTerminal | typeof UnixTerminal;
|
|
|
|
if (process.platform === 'win32') {
|
|
terminalCtor = WindowsTerminal;
|
|
} else {
|
|
terminalCtor = UnixTerminal;
|
|
}
|
|
|
|
export function spawn (file?: string, args?: ArgvOrCommandLine, opt?: IPtyForkOptions | IWindowsPtyForkOptions): ITerminal {
|
|
// eslint-disable-next-line new-cap
|
|
return new terminalCtor(file, args, opt);
|
|
}
|
|
|
|
export function open (options: IPtyOpenOptions): ITerminal {
|
|
return terminalCtor.open(options) as ITerminal;
|
|
}
|
|
export function require_dlopen (modulename: string) {
|
|
const module = { exports: {} };
|
|
const import__dirname = dirname(fileURLToPath(import.meta.url));
|
|
process.dlopen(module, path.join(import__dirname, modulename));
|
|
|
|
return module.exports as any;
|
|
}
|