2019-05-08 22:08:40 +00:00
|
|
|
import * as plugins from './tswatch.plugins';
|
|
|
|
import { logger } from './tswatch.logging';
|
|
|
|
|
2019-10-12 14:54:03 +00:00
|
|
|
export type TCommandFunction = () => Promise<void>;
|
|
|
|
|
2019-05-08 22:08:40 +00:00
|
|
|
export interface IWatcherConstructorOptions {
|
|
|
|
filePathToWatch: string;
|
2019-10-12 14:54:03 +00:00
|
|
|
commandToExecute: string | TCommandFunction;
|
2019-05-08 22:08:40 +00:00
|
|
|
timeout?: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A watcher keeps track of one child execution
|
|
|
|
*/
|
|
|
|
export class Watcher {
|
2019-10-12 14:54:03 +00:00
|
|
|
/**
|
|
|
|
* used to execute shell commands
|
|
|
|
*/
|
2019-05-08 22:08:40 +00:00
|
|
|
private smartshellInstance = new plugins.smartshell.Smartshell({
|
|
|
|
executor: 'bash'
|
|
|
|
});
|
2019-10-12 14:54:03 +00:00
|
|
|
|
|
|
|
/**
|
2020-03-13 17:48:19 +00:00
|
|
|
* used to execute
|
2019-10-12 14:54:03 +00:00
|
|
|
*/
|
|
|
|
private executionTask: plugins.taskbuffer.Task = new plugins.taskbuffer.Task({
|
|
|
|
name: 'watcherCommandFunctionTask',
|
|
|
|
taskFunction: async () => {
|
|
|
|
if (typeof this.options.commandToExecute === 'string') {
|
|
|
|
throw new Error('cannot execute string as task');
|
|
|
|
}
|
|
|
|
await this.options.commandToExecute();
|
|
|
|
},
|
|
|
|
buffered: true,
|
|
|
|
bufferMax: 1
|
|
|
|
});
|
|
|
|
|
2019-05-08 22:08:40 +00:00
|
|
|
private currentExecution: plugins.smartshell.IExecResultStreaming;
|
|
|
|
private smartchokWatcher = new plugins.smartchok.Smartchok([], {});
|
|
|
|
private options: IWatcherConstructorOptions;
|
|
|
|
|
|
|
|
constructor(optionsArg: IWatcherConstructorOptions) {
|
|
|
|
this.options = optionsArg;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* start the file
|
|
|
|
*/
|
|
|
|
public async start() {
|
2019-10-12 13:07:44 +00:00
|
|
|
await this.setupCleanup();
|
2019-05-08 22:08:40 +00:00
|
|
|
console.log(`Looking at ${this.options.filePathToWatch} for changes`);
|
|
|
|
this.smartchokWatcher.add([this.options.filePathToWatch]); // __dirname refers to the directory of this very file
|
|
|
|
await this.smartchokWatcher.start();
|
|
|
|
const changeObservable = await this.smartchokWatcher.getObservableFor('change');
|
|
|
|
changeObservable.subscribe(() => {
|
|
|
|
this.updateCurrentExecution();
|
|
|
|
});
|
2019-10-14 12:53:55 +00:00
|
|
|
await this.updateCurrentExecution();
|
2019-05-08 22:08:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* updates the current execution
|
|
|
|
*/
|
|
|
|
private async updateCurrentExecution() {
|
2019-10-12 14:54:03 +00:00
|
|
|
if (typeof this.options.commandToExecute === 'string') {
|
|
|
|
if (this.currentExecution) {
|
|
|
|
logger.log('ok', `reexecuting ${this.options.commandToExecute}`);
|
2020-05-22 00:46:12 +00:00
|
|
|
process.kill(this.currentExecution.childProcess.pid, 'SIGQUIT');
|
2019-10-12 14:54:03 +00:00
|
|
|
} else {
|
|
|
|
logger.log('ok', `executing ${this.options.commandToExecute} for the first time`);
|
|
|
|
}
|
|
|
|
this.currentExecution = await this.smartshellInstance.execStreaming(
|
|
|
|
this.options.commandToExecute
|
|
|
|
);
|
|
|
|
this.currentExecution = null;
|
2019-05-08 22:08:40 +00:00
|
|
|
} else {
|
2019-10-12 14:54:03 +00:00
|
|
|
await this.executionTask.trigger();
|
2019-05-08 22:08:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* this method sets up a clean exit strategy
|
|
|
|
*/
|
|
|
|
private async setupCleanup() {
|
|
|
|
const cleanup = () => {
|
|
|
|
if (this.currentExecution) {
|
|
|
|
process.kill(-this.currentExecution.childProcess.pid);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
process.on('exit', () => {
|
|
|
|
console.log('');
|
|
|
|
console.log('now exiting!');
|
|
|
|
cleanup();
|
|
|
|
process.exit(0);
|
|
|
|
});
|
|
|
|
process.on('SIGINT', () => {
|
|
|
|
console.log('');
|
|
|
|
console.log('ok! got SIGINT We are exiting! Just cleaning up to exit neatly :)');
|
|
|
|
cleanup();
|
|
|
|
process.exit(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
// handle timeout
|
|
|
|
if (this.options.timeout) {
|
|
|
|
plugins.smartdelay.delayFor(this.options.timeout).then(() => {
|
|
|
|
console.log(`timed out afer ${this.options.timeout} milliseconds! exiting!`);
|
|
|
|
cleanup();
|
|
|
|
process.exit(0);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2019-10-12 13:07:44 +00:00
|
|
|
|
2019-05-08 22:08:40 +00:00
|
|
|
/**
|
|
|
|
* stops the watcher
|
|
|
|
*/
|
|
|
|
public async stop() {
|
|
|
|
await this.smartchokWatcher.stop();
|
2019-05-27 13:38:07 +00:00
|
|
|
if (this.currentExecution && !this.currentExecution.childProcess.killed) {
|
2019-05-08 22:08:40 +00:00
|
|
|
process.kill(-this.currentExecution.childProcess.pid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|