import * as plugins from './smartshell.plugins.js'; import { ShellEnv } from './smartshell.classes.shellenv.js'; import type { IShellEnvContructorOptions, TExecutor } from './smartshell.classes.shellenv.js'; import { ShellLog } from './smartshell.classes.shelllog.js'; import * as cp from 'child_process'; // -- interfaces -- export interface IExecResult { exitCode: number; stdout: string; } export interface IExecResultStreaming { childProcess: cp.ChildProcess; finalPromise: Promise; kill: () => void; terminate: () => void; } export class Smartshell { public shellEnv: ShellEnv; public smartexit = new plugins.smartexit.SmartExit(); constructor(optionsArg: IShellEnvContructorOptions) { this.shellEnv = new ShellEnv(optionsArg); } /** * executes a given command async */ private async _exec(options: { commandString: string, silent?: boolean, strict?: boolean, streaming?: boolean, interactive?: boolean }): Promise { if (options.interactive) { if (process.env.CI) { return; } const done = plugins.smartpromise.defer(); const shell = cp.spawn('sh', [], { stdio: 'pipe' }); this.smartexit.addProcess(shell); const stdInStream = process.stdin.pipe(shell.stdin); const stdOutStream = shell.stdout.pipe(process.stdout); shell.on('close', (code) => { console.log(`interactive shell terminated with code ${code}`); stdInStream.removeAllListeners(); stdInStream.uncork(); stdOutStream.removeAllListeners(); stdOutStream.unpipe(); shell.kill('SIGTERM'); process.stdin.pause(); done.resolve(); }); let commandString = options.commandString; if (process.env.CI) { commandString += ' && exit'; } commandString += '\n'; shell.stdin.write(commandString); await done.promise; return; } const done = plugins.smartpromise.defer(); const childProcessEnded = plugins.smartpromise.defer(); let commandToExecute = options.commandString; commandToExecute = this.shellEnv.createEnvExecString(options.commandString); const spawnlogInstance = new ShellLog(); const execChildProcess = cp.spawn(commandToExecute, [], { shell: true, cwd: process.cwd(), env: process.env, detached: false, }); this.smartexit.addProcess(execChildProcess); execChildProcess.stdout.on('data', (data) => { if (!options.silent) { spawnlogInstance.writeToConsole(data); } spawnlogInstance.addToBuffer(data); }); execChildProcess.stderr.on('data', (data) => { if (!options.silent) { spawnlogInstance.writeToConsole(data); } spawnlogInstance.addToBuffer(data); }); execChildProcess.on('exit', (code, signal) => { this.smartexit.removeProcess(execChildProcess); if (options.strict && code === 1) { done.reject(); } const execResult = { exitCode: code, stdout: spawnlogInstance.logStore.toString(), }; if (!options.streaming) { done.resolve(execResult); } childProcessEnded.resolve(execResult); }); if (options.streaming) { done.resolve({ childProcess: execChildProcess, finalPromise: childProcessEnded.promise, kill: () => { console.log(`running tree kill with SIGKILL on process ${execChildProcess.pid}`); plugins.treeKill(execChildProcess.pid, 'SIGKILL'); }, terminate: () => { console.log(`running tree kill with SIGTERM on process ${execChildProcess.pid}`); plugins.treeKill(execChildProcess.pid, 'SIGTERM'); }, }); } return await done.promise; } public async exec(commandString: string): Promise { return (await this._exec({ commandString })) as IExecResult; } public async execSilent(commandString: string): Promise { return (await this._exec({ commandString, silent: true })) as IExecResult; } public async execStrict(commandString: string): Promise { return (await this._exec({ commandString, strict: true })) as IExecResult; } public async execStrictSilent(commandString: string): Promise { return (await this._exec({ commandString, silent: true, strict: true })) as IExecResult; } public async execStreaming(commandString: string, silent: boolean = false): Promise { return (await this._exec({ commandString, silent, streaming: true })) as IExecResultStreaming; } public async execStreamingSilent(commandString: string): Promise { return (await this._exec({ commandString, silent: true, streaming: true })) as IExecResultStreaming; } public async execInteractive(commandString: string) { await this._exec({ commandString, interactive: true }); } public async execAndWaitForLine(commandString: string, regexArg: RegExp, silentArg: boolean = false) { let done = plugins.smartpromise.defer(); let execStreamingResult = await this.execStreaming(commandString, silentArg); execStreamingResult.childProcess.stdout.on('data', (stdOutChunk: string) => { if (regexArg.test(stdOutChunk)) { done.resolve(); } }); return done.promise; } public async execAndWaitForLineSilent(commandString: string, regexArg: RegExp) { return this.execAndWaitForLine(commandString, regexArg, true); } }