2023-06-22 09:51:44 +00:00
|
|
|
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';
|
2017-03-08 15:51:02 +00:00
|
|
|
|
2018-07-30 14:08:14 +00:00
|
|
|
import * as cp from 'child_process';
|
2017-03-08 15:51:02 +00:00
|
|
|
|
2018-07-30 14:03:48 +00:00
|
|
|
// -- interfaces --
|
|
|
|
export interface IExecResult {
|
|
|
|
exitCode: number;
|
|
|
|
stdout: string;
|
2017-03-08 15:51:02 +00:00
|
|
|
}
|
|
|
|
|
2018-07-30 14:03:48 +00:00
|
|
|
export interface IExecResultStreaming {
|
|
|
|
childProcess: cp.ChildProcess;
|
|
|
|
finalPromise: Promise<IExecResult>;
|
2018-10-28 18:18:42 +00:00
|
|
|
kill: () => void;
|
2021-08-17 16:19:52 +00:00
|
|
|
terminate: () => void;
|
2018-07-30 14:03:48 +00:00
|
|
|
}
|
|
|
|
|
2017-03-08 15:51:02 +00:00
|
|
|
export class Smartshell {
|
2019-05-19 20:41:20 +00:00
|
|
|
public shellEnv: ShellEnv;
|
|
|
|
public smartexit = new plugins.smartexit.SmartExit();
|
2018-07-30 14:03:48 +00:00
|
|
|
|
|
|
|
constructor(optionsArg: IShellEnvContructorOptions) {
|
|
|
|
this.shellEnv = new ShellEnv(optionsArg);
|
2018-11-26 16:55:15 +00:00
|
|
|
}
|
2017-03-10 19:14:40 +00:00
|
|
|
|
2018-07-30 14:03:48 +00:00
|
|
|
/**
|
|
|
|
* executes a given command async
|
|
|
|
*/
|
2023-06-22 09:51:44 +00:00
|
|
|
private async _exec(options: {
|
|
|
|
commandString: string,
|
|
|
|
silent?: boolean,
|
|
|
|
strict?: boolean,
|
|
|
|
streaming?: boolean,
|
|
|
|
interactive?: boolean
|
|
|
|
}): Promise<IExecResult | IExecResultStreaming | void> {
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-07-30 14:03:48 +00:00
|
|
|
const done = plugins.smartpromise.defer<IExecResult | IExecResultStreaming>();
|
|
|
|
const childProcessEnded = plugins.smartpromise.defer<IExecResult>();
|
2023-06-22 09:51:44 +00:00
|
|
|
|
|
|
|
let commandToExecute = options.commandString;
|
|
|
|
commandToExecute = this.shellEnv.createEnvExecString(options.commandString);
|
|
|
|
|
2018-07-30 14:03:48 +00:00
|
|
|
const spawnlogInstance = new ShellLog();
|
|
|
|
const execChildProcess = cp.spawn(commandToExecute, [], {
|
|
|
|
shell: true,
|
2021-11-26 14:17:52 +00:00
|
|
|
cwd: process.cwd(),
|
2018-10-28 18:12:15 +00:00
|
|
|
env: process.env,
|
2020-05-22 01:23:27 +00:00
|
|
|
detached: false,
|
2018-07-30 14:03:48 +00:00
|
|
|
});
|
|
|
|
|
2019-05-19 20:41:20 +00:00
|
|
|
this.smartexit.addProcess(execChildProcess);
|
|
|
|
|
2020-05-22 01:23:27 +00:00
|
|
|
execChildProcess.stdout.on('data', (data) => {
|
2023-06-22 09:51:44 +00:00
|
|
|
if (!options.silent) {
|
2019-05-28 08:43:54 +00:00
|
|
|
spawnlogInstance.writeToConsole(data);
|
2018-07-30 14:03:48 +00:00
|
|
|
}
|
|
|
|
spawnlogInstance.addToBuffer(data);
|
|
|
|
});
|
2023-06-22 09:51:44 +00:00
|
|
|
|
2020-05-22 01:23:27 +00:00
|
|
|
execChildProcess.stderr.on('data', (data) => {
|
2023-06-22 09:51:44 +00:00
|
|
|
if (!options.silent) {
|
2019-05-28 08:43:54 +00:00
|
|
|
spawnlogInstance.writeToConsole(data);
|
2018-07-30 14:03:48 +00:00
|
|
|
}
|
|
|
|
spawnlogInstance.addToBuffer(data);
|
|
|
|
});
|
|
|
|
|
2018-07-30 14:08:14 +00:00
|
|
|
execChildProcess.on('exit', (code, signal) => {
|
2019-05-19 20:41:20 +00:00
|
|
|
this.smartexit.removeProcess(execChildProcess);
|
2023-06-22 09:51:44 +00:00
|
|
|
if (options.strict && code === 1) {
|
2018-07-30 14:03:48 +00:00
|
|
|
done.reject();
|
|
|
|
}
|
|
|
|
|
|
|
|
const execResult = {
|
|
|
|
exitCode: code,
|
2020-05-22 01:23:27 +00:00
|
|
|
stdout: spawnlogInstance.logStore.toString(),
|
2018-07-30 14:08:14 +00:00
|
|
|
};
|
2018-07-30 14:03:48 +00:00
|
|
|
|
2023-06-22 09:51:44 +00:00
|
|
|
if (!options.streaming) {
|
2018-07-30 14:03:48 +00:00
|
|
|
done.resolve(execResult);
|
|
|
|
}
|
|
|
|
childProcessEnded.resolve(execResult);
|
|
|
|
});
|
|
|
|
|
2023-06-22 09:51:44 +00:00
|
|
|
if (options.streaming) {
|
2021-07-26 19:24:13 +00:00
|
|
|
done.resolve({
|
|
|
|
childProcess: execChildProcess,
|
|
|
|
finalPromise: childProcessEnded.promise,
|
|
|
|
kill: () => {
|
2021-08-17 16:19:52 +00:00
|
|
|
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');
|
2021-07-26 19:24:13 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-06-22 09:51:44 +00:00
|
|
|
return await done.promise;
|
2018-07-30 14:08:14 +00:00
|
|
|
}
|
2018-07-30 14:03:48 +00:00
|
|
|
|
2023-06-22 09:51:44 +00:00
|
|
|
public async exec(commandString: string): Promise<IExecResult> {
|
|
|
|
return (await this._exec({ commandString })) as IExecResult;
|
2018-07-30 14:08:14 +00:00
|
|
|
}
|
|
|
|
|
2023-06-22 09:51:44 +00:00
|
|
|
public async execSilent(commandString: string): Promise<IExecResult> {
|
|
|
|
return (await this._exec({ commandString, silent: true })) as IExecResult;
|
2018-07-30 14:08:14 +00:00
|
|
|
}
|
2017-03-10 21:08:04 +00:00
|
|
|
|
2023-06-22 09:51:44 +00:00
|
|
|
public async execStrict(commandString: string): Promise<IExecResult> {
|
|
|
|
return (await this._exec({ commandString, strict: true })) as IExecResult;
|
2019-05-29 08:56:45 +00:00
|
|
|
}
|
|
|
|
|
2023-06-22 09:51:44 +00:00
|
|
|
public async execStrictSilent(commandString: string): Promise<IExecResult> {
|
|
|
|
return (await this._exec({ commandString, silent: true, strict: true })) as IExecResult;
|
2018-07-30 14:08:14 +00:00
|
|
|
}
|
2017-03-11 01:36:27 +00:00
|
|
|
|
2023-06-22 09:51:44 +00:00
|
|
|
public async execStreaming(commandString: string, silent: boolean = false): Promise<IExecResultStreaming> {
|
|
|
|
return (await this._exec({ commandString, silent, streaming: true })) as IExecResultStreaming;
|
2018-07-30 14:08:14 +00:00
|
|
|
}
|
2018-07-30 14:03:48 +00:00
|
|
|
|
2023-06-22 09:51:44 +00:00
|
|
|
public async execStreamingSilent(commandString: string): Promise<IExecResultStreaming> {
|
|
|
|
return (await this._exec({ commandString, silent: true, streaming: true })) as IExecResultStreaming;
|
2018-07-30 14:08:14 +00:00
|
|
|
}
|
2018-07-30 14:03:48 +00:00
|
|
|
|
2023-06-22 09:51:44 +00:00
|
|
|
public async execInteractive(commandString: string) {
|
|
|
|
await this._exec({ commandString, interactive: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
public async execAndWaitForLine(commandString: string, regexArg: RegExp, silentArg: boolean = false) {
|
2018-07-30 14:03:48 +00:00
|
|
|
let done = plugins.smartpromise.defer();
|
2023-06-22 09:51:44 +00:00
|
|
|
let execStreamingResult = await this.execStreaming(commandString, silentArg);
|
2018-07-30 14:08:14 +00:00
|
|
|
execStreamingResult.childProcess.stdout.on('data', (stdOutChunk: string) => {
|
2018-07-30 14:03:48 +00:00
|
|
|
if (regexArg.test(stdOutChunk)) {
|
|
|
|
done.resolve();
|
2017-03-10 21:08:04 +00:00
|
|
|
}
|
2018-07-30 14:03:48 +00:00
|
|
|
});
|
|
|
|
return done.promise;
|
2018-07-30 14:08:14 +00:00
|
|
|
}
|
2018-07-30 14:03:48 +00:00
|
|
|
|
2023-06-22 09:51:44 +00:00
|
|
|
public async execAndWaitForLineSilent(commandString: string, regexArg: RegExp) {
|
|
|
|
return this.execAndWaitForLine(commandString, regexArg, true);
|
2019-05-28 08:43:54 +00:00
|
|
|
}
|
2017-03-10 21:08:04 +00:00
|
|
|
}
|