mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-07-04 15:45:19 +02:00
46 lines
No EOL
1.7 KiB
JavaScript
46 lines
No EOL
1.7 KiB
JavaScript
import { spawn } from 'child_process';
|
|
|
|
export class AgentProcess {
|
|
static runningCount = 0;
|
|
|
|
start(profile, load_memory=false, init_message=null, count_id=0) {
|
|
let args = ['src/process/init-agent.js', this.name];
|
|
args.push('-p', profile);
|
|
args.push('-c', count_id);
|
|
if (load_memory)
|
|
args.push('-l', load_memory);
|
|
if (init_message)
|
|
args.push('-m', init_message);
|
|
|
|
const agentProcess = spawn('node', args, {
|
|
stdio: 'inherit',
|
|
stderr: 'inherit',
|
|
});
|
|
AgentProcess.runningCount++;
|
|
|
|
let last_restart = Date.now();
|
|
agentProcess.on('exit', (code, signal) => {
|
|
console.log(`Agent process exited with code ${code} and signal ${signal}`);
|
|
|
|
if (code !== 0) {
|
|
// agent must run for at least 10 seconds before restarting
|
|
if (Date.now() - last_restart < 10000) {
|
|
console.error(`Agent process ${profile} exited too quickly and will not be restarted.`);
|
|
AgentProcess.runningCount--;
|
|
if (AgentProcess.runningCount <= 0) {
|
|
console.error('All agent processes have ended. Exiting.');
|
|
process.exit(0);
|
|
}
|
|
return;
|
|
}
|
|
console.log('Restarting agent...');
|
|
this.start(profile, true, 'Agent process restarted.', count_id);
|
|
last_restart = Date.now();
|
|
}
|
|
});
|
|
|
|
agentProcess.on('error', (err) => {
|
|
console.error('Agent process error:', err);
|
|
});
|
|
}
|
|
} |