Skip to content

Commit 2dd1fae

Browse files
hasezoeynodkz
authored andcommittedSep 8, 2020
fix(mongo_killer): refactor mongo_killer to make more sense
1 parent 9b6cf26 commit 2dd1fae

File tree

2 files changed

+52
-18
lines changed

2 files changed

+52
-18
lines changed
 

‎packages/mongodb-memory-server-core/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@
8888
"lint": "npm run eslint && npm run tscheck",
8989
"eslint": "eslint -c ../../.eslintrc.js 'src/**/*.{js,ts}'",
9090
"test": "npm run lint && npm run coverage",
91+
"test:watch": "npm run watch",
9192
"tscheck": "tsc --noEmit"
9293
}
9394
}

‎packages/mongodb-memory-server-core/scripts/mongo_killer.js

+51-18
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,61 @@
77
- kill itself
88
*/
99

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+
1034
const parentPid = parseInt(process.argv[2], 10);
1135
const childPid = parseInt(process.argv[3], 10);
1236

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');
1641
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);
2545
}
46+
process.exit();
47+
}
2648

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);
3459
}
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

Comments
 (0)
Please sign in to comment.