-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
119 lines (110 loc) · 2.96 KB
/
index.js
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
//@ts-check
/**
* @typedef {object} Options
* @property {number} [exitDelay]
* @property {number} [stopWindow]
* @property {string} [customEvent]
* @property {boolean} [handleExceptions]
*/
const DEFAULTS = {
exitDelay: 60,
stopWindow: 5000,
customEvent: null,
handleExceptions: false,
};
/**
* @param {number} tm
* @param {string} message
* @return {Promise<string>}
*/
function timeoutMessage(tm, message) {
return new Promise((resolve) => {
setTimeout(() => resolve(message), tm).unref();
});
}
/**
* @param {(args0: string) => Promise<void>} shutdown
* @param {Options} options
* @return {void}
*/
function onTerminate(shutdown, options) {
const { exitDelay, stopWindow, customEvent, handleExceptions } = {
...DEFAULTS,
...options,
};
const exitSoon = (/** @type {number | undefined} */ code) => {
setTimeout(() => process.exit(code), exitDelay).unref();
};
/**
* @param {string} reason
* @param {number | undefined} [code]
*/
function _shutDownHandler(reason, code) {
if (code != null) {
process.exitCode = code;
}
_detachListeners();
const timeoutFunction = timeoutMessage(
stopWindow,
`Graceful shutdown took more than stop window (${stopWindow} ms). Terminating process.`
);
return Promise.resolve()
.then(() => Promise.race([shutdown(reason), timeoutFunction]))
.then(() => exitSoon(code))
.catch((err) => {
Promise.resolve().then(() => exitSoon(1));
});
}
// event handlers
/**
* @param {{ code: any; }} payload
*/
function _stopListener(payload) {
_shutDownHandler(`'${customEvent}'`, payload && payload.code);
}
function _sigintListener() {
_shutDownHandler("SIGINT");
}
function _sigtermListener() {
_shutDownHandler("SIGTERM");
}
/**
* @param {Error} err
*/
function _uncaughtExceptionListener(err) {
console.error(err);
_shutDownHandler("uncaughtException", 1);
}
/**
* @param {Error} err
*/
function _unhandledRejectionListener(err) {
console.error(err);
_shutDownHandler("unhandledRejection", 1);
}
// attach/detach listeners
function _attachListeners() {
if (customEvent) {
process.once(customEvent, _stopListener);
}
process.once("SIGINT", _sigintListener);
process.once("SIGTERM", _sigtermListener);
if (handleExceptions) {
process.once("uncaughtException", _uncaughtExceptionListener);
process.once("unhandledRejection", _unhandledRejectionListener);
}
}
function _detachListeners() {
if (customEvent) {
process.removeListener(customEvent, _stopListener);
}
process.removeListener("SIGINT", _sigintListener);
process.removeListener("SIGTERM", _sigtermListener);
if (handleExceptions) {
process.removeListener("uncaughtException", _uncaughtExceptionListener);
process.removeListener("unhandledRejection", _unhandledRejectionListener);
}
}
_attachListeners();
}
module.exports = onTerminate;