512a822df295d17ba7578302274c4d87e615e9b9
[poolifier.git] / src / worker / abstract-worker.ts
1 import { AsyncResource } from 'node:async_hooks'
2 import type { Worker } from 'node:cluster'
3 import type { MessagePort } from 'node:worker_threads'
4 import { performance } from 'node:perf_hooks'
5 import type {
6 MessageValue,
7 Task,
8 TaskPerformance,
9 WorkerStatistics
10 } from '../utility-types'
11 import {
12 DEFAULT_TASK_NAME,
13 EMPTY_FUNCTION,
14 isAsyncFunction,
15 isPlainObject
16 } from '../utils'
17 import {
18 type KillBehavior,
19 KillBehaviors,
20 type WorkerOptions
21 } from './worker-options'
22 import type {
23 TaskAsyncFunction,
24 TaskFunction,
25 TaskFunctions,
26 TaskSyncFunction
27 } from './task-functions'
28
29 const DEFAULT_MAX_INACTIVE_TIME = 60000
30 const DEFAULT_KILL_BEHAVIOR: KillBehavior = KillBehaviors.SOFT
31
32 /**
33 * Base class that implements some shared logic for all poolifier workers.
34 *
35 * @typeParam MainWorker - Type of main worker.
36 * @typeParam Data - Type of data this worker receives from pool's execution. This can only be structured-cloneable data.
37 * @typeParam Response - Type of response the worker sends back to the main worker. This can only be structured-cloneable data.
38 */
39 export abstract class AbstractWorker<
40 MainWorker extends Worker | MessagePort,
41 Data = unknown,
42 Response = unknown
43 > extends AsyncResource {
44 /**
45 * Worker id.
46 */
47 protected abstract id: number
48 /**
49 * Task function(s) processed by the worker when the pool's `execution` function is invoked.
50 */
51 protected taskFunctions!: Map<string, TaskFunction<Data, Response>>
52 /**
53 * Timestamp of the last task processed by this worker.
54 */
55 protected lastTaskTimestamp!: number
56 /**
57 * Performance statistics computation requirements.
58 */
59 protected statistics!: WorkerStatistics
60 /**
61 * Handler id of the `activeInterval` worker activity check.
62 */
63 protected activeInterval?: NodeJS.Timeout
64 /**
65 * Constructs a new poolifier worker.
66 *
67 * @param type - The type of async event.
68 * @param isMain - Whether this is the main worker or not.
69 * @param mainWorker - Reference to main worker.
70 * @param taskFunctions - Task function(s) processed by the worker when the pool's `execution` function is invoked. The first function is the default function.
71 * @param opts - Options for the worker.
72 */
73 public constructor (
74 type: string,
75 protected readonly isMain: boolean,
76 private readonly mainWorker: MainWorker,
77 taskFunctions: TaskFunction<Data, Response> | TaskFunctions<Data, Response>,
78 protected readonly opts: WorkerOptions = {
79 /**
80 * The kill behavior option on this worker or its default value.
81 */
82 killBehavior: DEFAULT_KILL_BEHAVIOR,
83 /**
84 * The maximum time to keep this worker active while idle.
85 * The pool automatically checks and terminates this worker when the time expires.
86 */
87 maxInactiveTime: DEFAULT_MAX_INACTIVE_TIME,
88 /**
89 * The function to call when the worker is killed.
90 */
91 killHandler: EMPTY_FUNCTION
92 }
93 ) {
94 super(type)
95 this.checkWorkerOptions(this.opts)
96 this.checkTaskFunctions(taskFunctions)
97 if (!this.isMain) {
98 this.getMainWorker()?.on('message', this.handleReadyMessage.bind(this))
99 }
100 }
101
102 private checkWorkerOptions (opts: WorkerOptions): void {
103 this.opts.killBehavior = opts.killBehavior ?? DEFAULT_KILL_BEHAVIOR
104 this.opts.maxInactiveTime =
105 opts.maxInactiveTime ?? DEFAULT_MAX_INACTIVE_TIME
106 delete this.opts.async
107 this.opts.killHandler = opts.killHandler ?? EMPTY_FUNCTION
108 }
109
110 /**
111 * Checks if the `taskFunctions` parameter is passed to the constructor.
112 *
113 * @param taskFunctions - The task function(s) parameter that should be checked.
114 */
115 private checkTaskFunctions (
116 taskFunctions: TaskFunction<Data, Response> | TaskFunctions<Data, Response>
117 ): void {
118 if (taskFunctions == null) {
119 throw new Error('taskFunctions parameter is mandatory')
120 }
121 this.taskFunctions = new Map<string, TaskFunction<Data, Response>>()
122 if (typeof taskFunctions === 'function') {
123 const boundFn = taskFunctions.bind(this)
124 this.taskFunctions.set(DEFAULT_TASK_NAME, boundFn)
125 this.taskFunctions.set(
126 typeof taskFunctions.name === 'string' &&
127 taskFunctions.name.trim().length > 0
128 ? taskFunctions.name
129 : 'fn1',
130 boundFn
131 )
132 } else if (isPlainObject(taskFunctions)) {
133 let firstEntry = true
134 for (const [name, fn] of Object.entries(taskFunctions)) {
135 if (typeof name !== 'string') {
136 throw new TypeError(
137 'A taskFunctions parameter object key is not a string'
138 )
139 }
140 if (typeof fn !== 'function') {
141 throw new TypeError(
142 'A taskFunctions parameter object value is not a function'
143 )
144 }
145 const boundFn = fn.bind(this)
146 if (firstEntry) {
147 this.taskFunctions.set(DEFAULT_TASK_NAME, boundFn)
148 firstEntry = false
149 }
150 this.taskFunctions.set(name, boundFn)
151 }
152 if (firstEntry) {
153 throw new Error('taskFunctions parameter object is empty')
154 }
155 } else {
156 throw new TypeError(
157 'taskFunctions parameter is not a function or a plain object'
158 )
159 }
160 }
161
162 /**
163 * Checks if the worker has a task function with the given name.
164 *
165 * @param name - The name of the task function to check.
166 * @returns Whether the worker has a task function with the given name or not.
167 * @throws {@link https://nodejs.org/api/errors.html#class-typeerror} If the `name` parameter is not a string.
168 */
169 public hasTaskFunction (name: string): boolean {
170 if (typeof name !== 'string') {
171 throw new TypeError('name parameter is not a string')
172 }
173 return this.taskFunctions.has(name)
174 }
175
176 /**
177 * Adds a task function to the worker.
178 * If a task function with the same name already exists, it is replaced.
179 *
180 * @param name - The name of the task function to add.
181 * @param fn - The task function to add.
182 * @returns Whether the task function was added or not.
183 * @throws {@link https://nodejs.org/api/errors.html#class-typeerror} If the `name` parameter is not a string.
184 * @throws {@link https://nodejs.org/api/errors.html#class-error} If the `name` parameter is the default task function reserved name.
185 * @throws {@link https://nodejs.org/api/errors.html#class-typeerror} If the `fn` parameter is not a function.
186 */
187 public addTaskFunction (
188 name: string,
189 fn: TaskFunction<Data, Response>
190 ): boolean {
191 if (typeof name !== 'string') {
192 throw new TypeError('name parameter is not a string')
193 }
194 if (name === DEFAULT_TASK_NAME) {
195 throw new Error(
196 'Cannot add a task function with the default reserved name'
197 )
198 }
199 if (typeof fn !== 'function') {
200 throw new TypeError('fn parameter is not a function')
201 }
202 try {
203 const boundFn = fn.bind(this)
204 if (
205 this.taskFunctions.get(name) ===
206 this.taskFunctions.get(DEFAULT_TASK_NAME)
207 ) {
208 this.taskFunctions.set(DEFAULT_TASK_NAME, boundFn)
209 }
210 this.taskFunctions.set(name, boundFn)
211 return true
212 } catch {
213 return false
214 }
215 }
216
217 /**
218 * Removes a task function from the worker.
219 *
220 * @param name - The name of the task function to remove.
221 * @returns Whether the task function existed and was removed or not.
222 * @throws {@link https://nodejs.org/api/errors.html#class-typeerror} If the `name` parameter is not a string.
223 * @throws {@link https://nodejs.org/api/errors.html#class-error} If the `name` parameter is the default task function reserved name.
224 * @throws {@link https://nodejs.org/api/errors.html#class-error} If the `name` parameter is the task function used as default task function.
225 */
226 public removeTaskFunction (name: string): boolean {
227 if (typeof name !== 'string') {
228 throw new TypeError('name parameter is not a string')
229 }
230 if (name === DEFAULT_TASK_NAME) {
231 throw new Error(
232 'Cannot remove the task function with the default reserved name'
233 )
234 }
235 if (
236 this.taskFunctions.get(name) === this.taskFunctions.get(DEFAULT_TASK_NAME)
237 ) {
238 throw new Error(
239 'Cannot remove the task function used as the default task function'
240 )
241 }
242 return this.taskFunctions.delete(name)
243 }
244
245 /**
246 * Lists the names of the worker's task functions.
247 *
248 * @returns The names of the worker's task functions.
249 */
250 public listTaskFunctions (): string[] {
251 return [...this.taskFunctions.keys()]
252 }
253
254 /**
255 * Sets the default task function to use in the worker.
256 *
257 * @param name - The name of the task function to use as default task function.
258 * @returns Whether the default task function was set or not.
259 * @throws {@link https://nodejs.org/api/errors.html#class-typeerror} If the `name` parameter is not a string.
260 * @throws {@link https://nodejs.org/api/errors.html#class-error} If the `name` parameter is the default task function reserved name.
261 * @throws {@link https://nodejs.org/api/errors.html#class-error} If the `name` parameter is a non-existing task function.
262 */
263 public setDefaultTaskFunction (name: string): boolean {
264 if (typeof name !== 'string') {
265 throw new TypeError('name parameter is not a string')
266 }
267 if (name === DEFAULT_TASK_NAME) {
268 throw new Error(
269 'Cannot set the default task function reserved name as the default task function'
270 )
271 }
272 if (!this.taskFunctions.has(name)) {
273 throw new Error(
274 'Cannot set the default task function to a non-existing task function'
275 )
276 }
277 try {
278 this.taskFunctions.set(
279 DEFAULT_TASK_NAME,
280 this.taskFunctions.get(name) as TaskFunction<Data, Response>
281 )
282 return true
283 } catch {
284 return false
285 }
286 }
287
288 /**
289 * Handles the ready message sent by the main worker.
290 *
291 * @param message - The ready message.
292 */
293 protected abstract handleReadyMessage (message: MessageValue<Data>): void
294
295 /**
296 * Worker message listener.
297 *
298 * @param message - The received message.
299 */
300 protected messageListener (message: MessageValue<Data>): void {
301 if (this.isMain) {
302 throw new Error('Cannot handle message to worker in main worker')
303 } else if (message.workerId != null && message.workerId !== this.id) {
304 throw new Error('Message worker id does not match the worker id')
305 } else if (message.workerId === this.id) {
306 if (message.statistics != null) {
307 // Statistics message received
308 this.statistics = message.statistics
309 } else if (message.checkActive != null) {
310 // Check active message received
311 message.checkActive ? this.startCheckActive() : this.stopCheckActive()
312 } else if (message.taskId != null && message.data != null) {
313 // Task message received
314 this.run(message)
315 } else if (message.kill === true) {
316 // Kill message received
317 this.handleKillMessage(message)
318 }
319 }
320 }
321
322 /**
323 * Handles a kill message sent by the main worker.
324 *
325 * @param message - The kill message.
326 */
327 protected handleKillMessage (message: MessageValue<Data>): void {
328 this.stopCheckActive()
329 this.opts.killHandler?.()
330 this.emitDestroy()
331 }
332
333 /**
334 * Starts the worker check active interval.
335 */
336 private startCheckActive (): void {
337 this.lastTaskTimestamp = performance.now()
338 this.activeInterval = setInterval(
339 this.checkActive.bind(this),
340 (this.opts.maxInactiveTime ?? DEFAULT_MAX_INACTIVE_TIME) / 2
341 )
342 }
343
344 /**
345 * Stops the worker check active interval.
346 */
347 private stopCheckActive (): void {
348 if (this.activeInterval != null) {
349 clearInterval(this.activeInterval)
350 delete this.activeInterval
351 }
352 }
353
354 /**
355 * Checks if the worker should be terminated, because its living too long.
356 */
357 private checkActive (): void {
358 if (
359 performance.now() - this.lastTaskTimestamp >
360 (this.opts.maxInactiveTime ?? DEFAULT_MAX_INACTIVE_TIME)
361 ) {
362 this.sendToMainWorker({ kill: this.opts.killBehavior, workerId: this.id })
363 }
364 }
365
366 /**
367 * Returns the main worker.
368 *
369 * @returns Reference to the main worker.
370 */
371 protected getMainWorker (): MainWorker {
372 if (this.mainWorker == null) {
373 throw new Error('Main worker not set')
374 }
375 return this.mainWorker
376 }
377
378 /**
379 * Sends a message to main worker.
380 *
381 * @param message - The response message.
382 */
383 protected abstract sendToMainWorker (
384 message: MessageValue<Response, Data>
385 ): void
386
387 /**
388 * Handles an error and convert it to a string so it can be sent back to the main worker.
389 *
390 * @param e - The error raised by the worker.
391 * @returns The error message.
392 */
393 protected handleError (e: Error | string): string {
394 return e instanceof Error ? e.message : e
395 }
396
397 /**
398 * Runs the given task.
399 *
400 * @param task - The task to execute.
401 * @throws {@link https://nodejs.org/api/errors.html#class-error} If the task function is not found.
402 */
403 protected run (task: Task<Data>): void {
404 const fn = this.getTaskFunction(task.name)
405 if (isAsyncFunction(fn)) {
406 this.runInAsyncScope(this.runAsync.bind(this), this, fn, task)
407 } else {
408 this.runInAsyncScope(this.runSync.bind(this), this, fn, task)
409 }
410 }
411
412 /**
413 * Runs the given task function synchronously.
414 *
415 * @param fn - Task function that will be executed.
416 * @param task - Input data for the task function.
417 */
418 protected runSync (
419 fn: TaskSyncFunction<Data, Response>,
420 task: Task<Data>
421 ): void {
422 try {
423 let taskPerformance = this.beginTaskPerformance(task.name)
424 const res = fn(task.data)
425 taskPerformance = this.endTaskPerformance(taskPerformance)
426 this.sendToMainWorker({
427 data: res,
428 taskPerformance,
429 workerId: this.id,
430 taskId: task.taskId
431 })
432 } catch (e) {
433 const errorMessage = this.handleError(e as Error | string)
434 this.sendToMainWorker({
435 taskError: {
436 name: task.name ?? DEFAULT_TASK_NAME,
437 message: errorMessage,
438 data: task.data
439 },
440 workerId: this.id,
441 taskId: task.taskId
442 })
443 } finally {
444 this.updateLastTaskTimestamp()
445 }
446 }
447
448 /**
449 * Runs the given task function asynchronously.
450 *
451 * @param fn - Task function that will be executed.
452 * @param task - Input data for the task function.
453 */
454 protected runAsync (
455 fn: TaskAsyncFunction<Data, Response>,
456 task: Task<Data>
457 ): void {
458 let taskPerformance = this.beginTaskPerformance(task.name)
459 fn(task.data)
460 .then((res) => {
461 taskPerformance = this.endTaskPerformance(taskPerformance)
462 this.sendToMainWorker({
463 data: res,
464 taskPerformance,
465 workerId: this.id,
466 taskId: task.taskId
467 })
468 return null
469 })
470 .catch((e) => {
471 const errorMessage = this.handleError(e as Error | string)
472 this.sendToMainWorker({
473 taskError: {
474 name: task.name ?? DEFAULT_TASK_NAME,
475 message: errorMessage,
476 data: task.data
477 },
478 workerId: this.id,
479 taskId: task.taskId
480 })
481 })
482 .finally(() => {
483 this.updateLastTaskTimestamp()
484 })
485 .catch(EMPTY_FUNCTION)
486 }
487
488 /**
489 * Gets the task function with the given name.
490 *
491 * @param name - Name of the task function that will be returned.
492 * @returns The task function.
493 * @throws {@link https://nodejs.org/api/errors.html#class-error} If the task function is not found.
494 */
495 private getTaskFunction (name?: string): TaskFunction<Data, Response> {
496 name = name ?? DEFAULT_TASK_NAME
497 const fn = this.taskFunctions.get(name)
498 if (fn == null) {
499 throw new Error(`Task function '${name}' not found`)
500 }
501 return fn
502 }
503
504 private beginTaskPerformance (name?: string): TaskPerformance {
505 this.checkStatistics()
506 return {
507 name: name ?? DEFAULT_TASK_NAME,
508 timestamp: performance.now(),
509 ...(this.statistics.elu && { elu: performance.eventLoopUtilization() })
510 }
511 }
512
513 private endTaskPerformance (
514 taskPerformance: TaskPerformance
515 ): TaskPerformance {
516 this.checkStatistics()
517 return {
518 ...taskPerformance,
519 ...(this.statistics.runTime && {
520 runTime: performance.now() - taskPerformance.timestamp
521 }),
522 ...(this.statistics.elu && {
523 elu: performance.eventLoopUtilization(taskPerformance.elu)
524 })
525 }
526 }
527
528 private checkStatistics (): void {
529 if (this.statistics == null) {
530 throw new Error('Performance statistics computation requirements not set')
531 }
532 }
533
534 private updateLastTaskTimestamp (): void {
535 if (this.activeInterval != null) {
536 this.lastTaskTimestamp = performance.now()
537 }
538 }
539 }