forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworker.js
More file actions
194 lines (159 loc) · 5.03 KB
/
worker.js
File metadata and controls
194 lines (159 loc) · 5.03 KB
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
/**
* Copyright (c) 2017-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
*/
'use strict';
import childProcess from 'child_process';
import {
CHILD_MESSAGE_INITIALIZE,
PARENT_MESSAGE_ERROR,
PARENT_MESSAGE_OK,
} from './types';
import type {ChildProcess} from 'child_process';
import type {Readable} from 'stream';
import type {
ChildMessage,
QueueCallback,
QueueChildMessage,
WorkerOptions,
} from './types';
/**
* This class wraps the child process and provides a nice interface to
* communicate with. It takes care of:
*
* - Re-spawning the process if it dies.
* - Queues calls while the worker is busy.
* - Re-sends the requests if the worker blew up.
*
* The reason for queueing them here (since childProcess.send also has an
* internal queue) is because the worker could be doing asynchronous work, and
* this would lead to the child process to read its receiving buffer and start a
* second call. By queueing calls here, we don't send the next call to the
* children until we receive the result of the previous one.
*
* As soon as a request starts to be processed by a worker, its "processed"
* field is changed to "true", so that other workers which might encounter the
* same call skip it.
*/
export default class {
_busy: boolean;
_child: ChildProcess;
_options: WorkerOptions;
_queue: Array<QueueChildMessage>;
_retries: number;
constructor(options: WorkerOptions) {
this._options = options;
this._queue = [];
this._initialize();
}
getStdout(): Readable {
return this._child.stdout;
}
getStderr(): Readable {
return this._child.stderr;
}
send(request: ChildMessage, callback: QueueCallback) {
this._queue.push({callback, request});
this._process();
}
_initialize() {
const child = childProcess.fork(
require.resolve('./child'),
// $FlowFixMe: Flow does not work well with Object.assign.
Object.assign(
{
cwd: process.cwd(),
env: Object.assign({}, process.env, {
JEST_WORKER_ID: this._options.workerId,
}),
// suppress --debug / --inspect flags while preserving others (like --harmony)
execArgv: process.execArgv.filter(v => !/^--(debug|inspect)/.test(v)),
silent: true,
},
this._options.forkOptions,
),
);
child.on('message', this._receive.bind(this));
child.on('exit', this._exit.bind(this));
// $FlowFixMe: wrong "ChildProcess.send" signature.
child.send([CHILD_MESSAGE_INITIALIZE, false, this._options.workerPath]);
this._retries++;
this._child = child;
this._busy = false;
// If we exceeded the amount of retries, we will emulate an error reply
// coming from the child. This avoids code duplication related with cleaning
// the queue, and scheduling the next call.
if (this._retries > this._options.maxRetries) {
const error = new Error('Call retries were exceeded');
this._receive([
PARENT_MESSAGE_ERROR,
error.name,
error.message,
error.stack,
{type: 'WorkerError'},
]);
}
}
_process() {
if (this._busy) {
return;
}
const queue = this._queue;
let skip = 0;
// Calls in the queue might have already been processed by another worker,
// so we have to skip them.
while (queue.length > skip && queue[skip].request[1]) {
skip++;
}
// Remove all pieces at once.
queue.splice(0, skip);
if (queue.length) {
const call = queue[0];
// Flag the call as processed, so that other workers know that they don't
// have to process it as well.
call.request[1] = true;
this._retries = 0;
this._busy = true;
// $FlowFixMe: wrong "ChildProcess.send" signature.
this._child.send(call.request);
}
}
_receive(response: any /* Should be ParentMessage */) {
const callback = this._queue[0].callback;
this._busy = false;
this._process();
switch (response[0]) {
case PARENT_MESSAGE_OK:
callback.call(this, null, response[1]);
break;
case PARENT_MESSAGE_ERROR:
let error = response[4];
if (error != null && typeof error === 'object') {
const extra = error;
const NativeCtor = global[response[1]];
const Ctor = typeof NativeCtor === 'function' ? NativeCtor : Error;
error = new Ctor(response[2]);
// $FlowFixMe: adding custom properties to errors.
error.type = response[1];
error.stack = response[3];
for (const key in extra) {
// $FlowFixMe: adding custom properties to errors.
error[key] = extra[key];
}
}
callback.call(this, error, null);
break;
default:
throw new TypeError('Unexpected response from worker: ' + response[0]);
}
}
_exit(exitCode: number) {
if (exitCode !== 0) {
this._initialize();
}
}
}