forked from node-modules/cfork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
227 lines (193 loc) · 5.63 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
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
/**!
* cfork - index.js
*
* Copyright(c) node-modules and other contributors.
* MIT Licensed
*
* Authors:
* fengmk2 <[email protected]> (http://fengmk2.com)
*/
'use strict';
/**
* Module dependencies.
*/
var cluster = require('cluster');
var os = require('os');
var util = require('util');
var defer = global.setImmediate || process.nextTick;
module.exports = fork;
/**
* cluster fork
*
* @param {Object} [options]
* - {String} exec exec file path
* - {Array} [args] exec arguments
* - {Array} [slaves] slave processes
* - {Boolean} [silent] whether or not to send output to parent's stdio, default is `false`
* - {Number} [count] worker num, defualt is `os.cpus().length`
* - {Boolean} [refork] refork when disconect and unexpected exit, default is `true`
* - {Boolean} [autoCoverage] auto fork with istanbul when `running_under_istanbul` env set, default is `false`
* @return {Cluster}
*/
function fork(options) {
if (cluster.isWorker) {
return;
}
options = options || {};
var count = options.count || os.cpus().length;
var refork = options.refork !== false;
var limit = options.limit || 60;
var duration = options.duration || 60000; // 1 min
var reforks = [];
var newWorker;
if (options.exec) {
var opts = {
exec: options.exec
};
if (options.execArgv !== undefined) {
opts.execArgv = options.execArgv;
}
if (options.args !== undefined) {
opts.args = options.args;
}
if (options.silent !== undefined) {
opts.silent = options.silent;
}
// https://github.com/gotwarlost/istanbul#multiple-process-usage
// Multiple Process under istanbul
if (options.autoCoverage && process.env.running_under_istanbul) {
// use coverage for forked process
// disabled reporting and output for child process
// enable pid in child process coverage filename
var args = [
'cover', '--report', 'none', '--print', 'none', '--include-pid',
opts.exec,
];
if (opts.args && opts.args.length > 0) {
args.push('--');
args = args.concat(opts.args);
}
opts.exec = './node_modules/.bin/istanbul';
opts.args = args;
}
cluster.setupMaster(opts);
}
var disconnects = {};
var disconnectCount = 0;
var unexpectedCount = 0;
cluster.on('disconnect', function (worker) {
disconnectCount++;
if (worker.isDead && worker.isDead()) {
// worker has terminated before disconnect
return;
}
disconnects[worker.process.pid] = new Date();
if (allow()) {
newWorker = forkWorker(worker._clusterSettings);
newWorker._clusterSettings = worker._clusterSettings;
}
});
cluster.on('exit', function (worker, code, signal) {
if (disconnects[worker.process.pid]) {
delete disconnects[worker.process.pid];
// worker disconnect first, exit expected
return;
}
unexpectedCount++;
if (allow()) {
newWorker = forkWorker(worker._clusterSettings);
newWorker._clusterSettings = worker._clusterSettings;
}
cluster.emit('unexpectedExit', worker, code, signal);
});
// defer to set the listeners
// so you can listen this by your own
defer(function () {
if (process.listeners('uncaughtException').length === 0) {
process.on('uncaughtException', onerror);
}
if (cluster.listeners('unexpectedExit').length === 0) {
cluster.on('unexpectedExit', onUnexpected);
}
});
for (var i = 0; i < count; i++) {
newWorker = forkWorker();
newWorker._clusterSettings = cluster.settings;
}
// fork slaves after workers are forked
if (options.slaves) {
var slaves = Array.isArray(options.slaves) ? options.slaves : [options.slaves];
slaves.map(normalizeSlaveConfig)
.forEach(function(settings) {
if (settings) {
newWorker = forkWorker(settings);
newWorker._clusterSettings = settings;
}
});
}
return cluster;
/**
* allow refork
*/
function allow() {
if (!refork) {
return false;
}
var times = reforks.push(Date.now());
if (times > limit) {
reforks.shift();
}
var span = reforks[reforks.length - 1] - reforks[0];
var canFork = reforks.length < limit || span > duration;
if (!canFork) {
cluster.emit('reachReforkLimit');
}
return canFork;
}
/**
* uncaughtException default handler
*/
function onerror(err) {
if (!err) {
return;
}
console.error('[%s] [cfork:master:%s] master uncaughtException: %s', Date(), process.pid, err.stack);
console.error(err);
console.error('(total %d disconnect, %d unexpected exit)', disconnectCount, unexpectedCount);
}
/**
* unexpectedExit default handler
*/
function onUnexpected(worker, code, signal) {
var exitCode = worker.process.exitCode;
var err = new Error(util.format('worker:%s died unexpected (code: %s, signal: %s, suicide: %s, state: %s)',
worker.process.pid, exitCode, signal, worker.suicide, worker.state));
err.name = 'WorkerDiedUnexpectedError';
console.error('[%s] [cfork:master:%s] (total %d disconnect, %d unexpected exit) %s',
Date(), process.pid, disconnectCount, unexpectedCount, err.stack);
}
/**
* normalize slave config
*/
function normalizeSlaveConfig(opt) {
// exec path
if (typeof opt === 'string') {
opt = { exec: opt };
}
if (!opt.exec) {
return null;
} else {
return opt;
}
}
/**
* fork worker with certain settings
*/
function forkWorker(settings) {
if (settings) {
cluster.settings = settings;
cluster.setupMaster();
}
return cluster.fork();
}
}