Spaces:
Running
Running
File size: 7,960 Bytes
7f36d25 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
import { exec, execSync } from 'child_process';
import { platform } from 'os';
/**
* Enhanced process killer utility for handling stubborn processes
* Handles cross-platform process tree termination with multiple fallback strategies
*/
export class ProcessKiller {
constructor() {
this.isWindows = platform() === 'win32';
this.trackedPids = new Set();
}
/**
* Track a PID for cleanup
* @param {number} pid - Process ID to track
*/
trackPid(pid) {
if (pid) {
this.trackedPids.add(pid);
}
}
/**
* Kill a process tree with the specified signal
* @param {number} pid - Process ID to kill
* @param {string} signal - Signal to send (SIGTERM, SIGKILL, etc.)
* @returns {Promise<boolean>} - True if successful
*/
async killProcessTree(pid, signal = 'SIGTERM') {
try {
if (this.isWindows) {
return await this._killWindowsProcessTree(pid);
} else {
return await this._killUnixProcessTree(pid, signal);
}
} catch (e) {
if (e.code !== 'ESRCH') {
console.error('Failed to kill process tree:', e.message);
}
return false;
}
}
/**
* Windows-specific process tree killing
* @param {number} pid - Process ID
* @returns {Promise<boolean>}
*/
async _killWindowsProcessTree(pid) {
return new Promise((resolve) => {
exec(`taskkill /pid ${pid} /t /f`, (error) => {
if (error && !error.message.includes('not found')) {
console.error('Failed to kill Windows process tree:', error.message);
resolve(false);
} else {
console.log(`Windows process tree ${pid} killed`);
resolve(true);
}
});
});
}
/**
* Unix-specific process tree killing
* @param {number} pid - Process ID
* @param {string} signal - Signal to send
* @returns {Promise<boolean>}
*/
async _killUnixProcessTree(pid, signal) {
try {
// Try to kill the process group first
process.kill(-pid, signal);
console.log(`Unix process group ${pid} killed with ${signal}`);
return true;
} catch (e) {
if (e.code !== 'ESRCH') {
// Try individual process kill as fallback
try {
process.kill(pid, signal);
console.log(`Unix process ${pid} killed with ${signal}`);
return true;
} catch (e2) {
if (e2.code !== 'ESRCH') {
console.error('Failed to kill Unix process:', e2.message);
}
return false;
}
}
return false;
}
}
/**
* Verify if a process is actually terminated
* @param {number} pid - Process ID to check
* @returns {Promise<boolean>} - True if terminated
*/
async verifyProcessTerminated(pid) {
try {
if (this.isWindows) {
const result = execSync(`tasklist /fi "pid eq ${pid}"`, { encoding: 'utf8' });
return !result.includes(pid.toString());
} else {
// On Unix, sending signal 0 checks if process exists
process.kill(pid, 0);
return false; // If no error thrown, process still exists
}
} catch (e) {
// If error thrown, process doesn't exist
return true;
}
}
/**
* Kill any remaining processes matching a pattern
* @param {string} processPattern - Pattern to match (e.g., "remotion.*render")
* @returns {Promise<void>}
*/
async killRemainingProcesses(processPattern = "remotion.*render") {
try {
if (this.isWindows) {
await this._killRemainingWindowsProcesses(processPattern);
} else {
await this._killRemainingUnixProcesses(processPattern);
}
} catch (e) {
console.log('Cleanup attempt completed');
}
}
/**
* Windows-specific remaining process cleanup
* @param {string} pattern - Process pattern
*/
async _killRemainingWindowsProcesses(pattern) {
return new Promise((resolve) => {
exec('tasklist /fi "imagename eq node.exe" /fo csv | findstr remotion', (error, stdout) => {
if (!error && stdout) {
console.log('Found remaining remotion processes, attempting cleanup...');
exec('taskkill /f /im node.exe /fi "windowtitle eq *remotion*"', (killError) => {
if (!killError) {
console.log('Cleaned up remaining remotion processes');
}
resolve();
});
} else {
resolve();
}
});
});
}
/**
* Unix-specific remaining process cleanup
* @param {string} pattern - Process pattern
*/
async _killRemainingUnixProcesses(pattern) {
return new Promise((resolve) => {
exec(`pkill -f "${pattern}"`, (error) => {
if (!error) {
console.log('Cleaned up remaining remotion processes');
}
resolve();
});
});
}
/**
* Comprehensive process termination with multiple strategies
* @param {number} pid - Process ID to terminate
* @param {Object} options - Termination options
* @returns {Promise<boolean>} - True if successfully terminated
*/
async terminateProcess(pid, options = {}) {
const {
gracefulTimeout = 2000,
forceTimeout = 1000,
processPattern = "remotion.*render",
onProgress = () => { }
} = options;
if (!pid) {
onProgress('No PID available');
return false;
}
try {
onProgress(`Attempting to kill process tree with PID: ${pid}`);
// Stage 1: Graceful termination
await this.killProcessTree(pid, 'SIGTERM');
// Wait and verify
await new Promise(resolve => setTimeout(resolve, gracefulTimeout));
const isTerminated = await this.verifyProcessTerminated(pid);
if (isTerminated) {
onProgress('Process terminated successfully with SIGTERM');
return true;
}
// Stage 2: Force termination
onProgress('Process still running, trying SIGKILL');
await this.killProcessTree(pid, 'SIGKILL');
// Final verification
await new Promise(resolve => setTimeout(resolve, forceTimeout));
const isFinallyTerminated = await this.verifyProcessTerminated(pid);
if (isFinallyTerminated) {
onProgress('Process successfully terminated');
return true;
}
// Stage 3: Cleanup remaining processes
onProgress('Process still exists after SIGKILL, attempting additional cleanup');
await this.killRemainingProcesses(processPattern);
return true; // Assume success after cleanup attempt
} catch (e) {
console.error('Failed to terminate process:', e.message);
// Final fallback cleanup
await this.killRemainingProcesses(processPattern);
return false;
}
}
/**
* Clean up all tracked PIDs
*/
clearTrackedPids() {
this.trackedPids.clear();
}
/**
* Get all tracked PIDs
* @returns {Set<number>}
*/
getTrackedPids() {
return new Set(this.trackedPids);
}
}
/**
* Default export - singleton instance
*/
export default new ProcessKiller();
/**
* Convenience function for quick process termination
* @param {number} pid - Process ID
* @param {Object} options - Termination options
* @returns {Promise<boolean>}
*/
export async function terminateProcess(pid, options = {}) {
const killer = new ProcessKiller();
return await killer.terminateProcess(pid, options);
}
/**
* Convenience function for process tree killing
* @param {number} pid - Process ID
* @param {string} signal - Signal to send
* @returns {Promise<boolean>}
*/
export async function killProcessTree(pid, signal = 'SIGTERM') {
const killer = new ProcessKiller();
return await killer.killProcessTree(pid, signal);
} |