-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
/
threadChild.ts
228 lines (190 loc) · 5.47 KB
/
threadChild.ts
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
228
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import {isMainThread, parentPort} from 'worker_threads';
import {isPromise} from 'jest-util';
import {
CHILD_MESSAGE_CALL,
CHILD_MESSAGE_CALL_SETUP,
CHILD_MESSAGE_END,
CHILD_MESSAGE_INITIALIZE,
CHILD_MESSAGE_MEM_USAGE,
type ChildMessageCall,
type ChildMessageInitialize,
PARENT_MESSAGE_CLIENT_ERROR,
type PARENT_MESSAGE_ERROR,
PARENT_MESSAGE_MEM_USAGE,
PARENT_MESSAGE_OK,
PARENT_MESSAGE_SETUP_ERROR,
type ParentMessageMemUsage,
} from '../types';
import {isDataCloneError} from './isDataCloneError';
import {packMessage} from './safeMessageTransferring';
type UnknownFunction = (...args: Array<unknown>) => unknown | Promise<unknown>;
let file: string | null = null;
let setupArgs: Array<unknown> = [];
let initialized = false;
/**
* This file is a small bootstrapper for workers. It sets up the communication
* between the worker and the parent process, interpreting parent messages and
* sending results back.
*
* The file loaded will be lazily initialized the first time any of the workers
* is called. This is done for optimal performance: if the farm is initialized,
* but no call is made to it, child Node processes will be consuming the least
* possible amount of memory.
*
* If an invalid message is detected, the child will exit (by throwing) with a
* non-zero exit code.
*/
const messageListener = (request: any) => {
switch (request[0]) {
case CHILD_MESSAGE_INITIALIZE:
const init: ChildMessageInitialize = request;
file = init[2];
setupArgs = init[3];
process.env.JEST_WORKER_ID = init[4];
break;
case CHILD_MESSAGE_CALL:
const call: ChildMessageCall = request;
execMethod(call[2], call[3]);
break;
case CHILD_MESSAGE_END:
end();
break;
case CHILD_MESSAGE_MEM_USAGE:
reportMemoryUsage();
break;
case CHILD_MESSAGE_CALL_SETUP:
if (initialized) {
reportSuccess(void 0);
} else {
const main = require(file!);
initialized = true;
if (main.setup) {
execFunction(
main.setup,
main,
setupArgs,
reportSuccess,
reportInitializeError,
);
} else {
reportSuccess(void 0);
}
}
break;
default:
throw new TypeError(
`Unexpected request from parent process: ${request[0]}`,
);
}
};
parentPort!.on('message', messageListener);
function reportMemoryUsage() {
if (isMainThread) {
throw new Error('Child can only be used on a forked process');
}
const msg: ParentMessageMemUsage = [
PARENT_MESSAGE_MEM_USAGE,
process.memoryUsage().heapUsed,
];
parentPort!.postMessage(msg);
}
function reportSuccess(result: unknown) {
if (isMainThread) {
throw new Error('Child can only be used on a forked process');
}
try {
parentPort!.postMessage([PARENT_MESSAGE_OK, result]);
} catch (error) {
let resolvedError = error;
// Try to handle https://html.spec.whatwg.org/multipage/structured-data.html#structuredserializeinternal
// for `symbols` and `functions`
if (isDataCloneError(error)) {
try {
parentPort!.postMessage([PARENT_MESSAGE_OK, packMessage(result)]);
return;
} catch (secondTryError) {
resolvedError = secondTryError;
}
}
// Handling it here to avoid unhandled rejection
// which is hard to distinguish on the parent side
reportClientError(resolvedError as Error);
}
}
function reportClientError(error: Error) {
return reportError(error, PARENT_MESSAGE_CLIENT_ERROR);
}
function reportInitializeError(error: Error) {
return reportError(error, PARENT_MESSAGE_SETUP_ERROR);
}
function reportError(error: Error, type: PARENT_MESSAGE_ERROR) {
if (isMainThread) {
throw new Error('Child can only be used on a forked process');
}
if (error == null) {
error = new Error('"null" or "undefined" thrown');
}
parentPort!.postMessage([
type,
error.constructor && error.constructor.name,
error.message,
error.stack,
typeof error === 'object' ? {...error} : error,
]);
}
function end(): void {
const main = require(file!);
if (!main.teardown) {
exitProcess();
return;
}
execFunction(main.teardown, main, [], exitProcess, exitProcess);
}
function exitProcess(): void {
// Clean up open handles so the worker ideally exits gracefully
parentPort!.removeListener('message', messageListener);
}
function execMethod(method: string, args: Array<unknown>): void {
const main = require(file!);
let fn: UnknownFunction;
if (method === 'default') {
fn = main.__esModule ? main.default : main;
} else {
fn = main[method];
}
function execHelper() {
execFunction(fn, main, args, reportSuccess, reportClientError);
}
if (initialized || !main.setup) {
execHelper();
return;
}
initialized = true;
execFunction(main.setup, main, setupArgs, execHelper, reportInitializeError);
}
function execFunction(
fn: UnknownFunction,
ctx: unknown,
args: Array<unknown>,
onResult: (result: unknown) => void,
onError: (error: Error) => void,
): void {
let result: unknown;
try {
result = fn.apply(ctx, args);
} catch (error: any) {
onError(error);
return;
}
if (isPromise(result)) {
result.then(onResult, onError);
} else {
onResult(result);
}
}