|
7 | 7 | - kill itself
|
8 | 8 | */
|
9 | 9 |
|
| 10 | +/** |
| 11 | + * Because since node 4.0.0 the internal util.is* functions got deprecated |
| 12 | + * @param {any} val Any value to test if null or undefined |
| 13 | + */ |
| 14 | +function isNullOrUndefined(val) { |
| 15 | + return val === null || val === undefined; |
| 16 | +} |
| 17 | + |
| 18 | +/** |
| 19 | + * Check if the given Process is still alive |
| 20 | + * @param {number} pid The Process PID |
| 21 | + */ |
| 22 | +function isAlive(pid) { |
| 23 | + try { |
| 24 | + process.kill(pid, 0); |
| 25 | + return true; |
| 26 | + } catch (err) { |
| 27 | + return false; |
| 28 | + } |
| 29 | +} |
| 30 | + |
| 31 | +// the following line is just to ensure this process gets actually exited |
| 32 | +process.on('SIGINT', () => process.exit(0)); |
| 33 | + |
10 | 34 | const parentPid = parseInt(process.argv[2], 10);
|
11 | 35 | const childPid = parseInt(process.argv[3], 10);
|
12 | 36 |
|
13 |
| -if (parentPid && childPid) { |
14 |
| - setInterval(() => { |
15 |
| - // if parent dead |
| 37 | +function check() { |
| 38 | + // if parent dead |
| 39 | + if (!isAlive(parentPid)) { |
| 40 | + console.log('mongo_killer: parentPid not alive'); |
16 | 41 | try {
|
17 |
| - process.kill(parentPid, 0); |
18 |
| - } catch (e) { |
19 |
| - try { |
20 |
| - process.kill(childPid); |
21 |
| - } catch (ee) { |
22 |
| - // doesnt matter if it is dead |
23 |
| - } |
24 |
| - process.exit(); |
| 42 | + process.kill(childPid); |
| 43 | + } catch (err) { |
| 44 | + console.log('mongo_killer: couldnt kill child:', err); |
25 | 45 | }
|
| 46 | + process.exit(); |
| 47 | + } |
26 | 48 |
|
27 |
| - // if child dead |
28 |
| - try { |
29 |
| - process.kill(childPid, 0); |
30 |
| - } catch (e) { |
31 |
| - process.exit(); |
32 |
| - } |
33 |
| - }, 2000); |
| 49 | + // if child dead |
| 50 | + if (!isAlive(childPid)) { |
| 51 | + console.log('mongo_killer: childPid not alive'); |
| 52 | + process.exit(); |
| 53 | + } |
| 54 | +} |
| 55 | + |
| 56 | +if (isNullOrUndefined(parentPid) || Number.isNaN(parentPid)) { |
| 57 | + console.log('mongo_killer: parentPid is undefined or NaN!'); |
| 58 | + process.exit(-1); |
34 | 59 | }
|
| 60 | + |
| 61 | +if (isNullOrUndefined(childPid) || Number.isNaN(childPid)) { |
| 62 | + console.log('mongo_killer: childPid is undefined or NaN!'); |
| 63 | + process.exit(-1); |
| 64 | +} |
| 65 | + |
| 66 | +check(); // run once before the interval |
| 67 | +setInterval(check, 2000); |
0 commit comments