1 import { AsyncResource
} from
'node:async_hooks'
2 import type { Worker
} from
'node:cluster'
3 import type { MessagePort
} from
'node:worker_threads'
10 } from
'../utility-types'
11 import { EMPTY_FUNCTION
, isPlainObject
} from
'../utils'
12 import type { KillBehavior
, WorkerOptions
} from
'./worker-options'
13 import { KillBehaviors
} from
'./worker-options'
15 const DEFAULT_FUNCTION_NAME
= 'default'
16 const DEFAULT_MAX_INACTIVE_TIME
= 60000
17 const DEFAULT_KILL_BEHAVIOR
: KillBehavior
= KillBehaviors
.SOFT
20 * Base class that implements some shared logic for all poolifier workers.
22 * @typeParam MainWorker - Type of main worker.
23 * @typeParam Data - Type of data this worker receives from pool's execution. This can only be serializable data.
24 * @typeParam Response - Type of response the worker sends back to the main worker. This can only be serializable data.
26 export abstract class AbstractWorker
<
27 MainWorker
extends Worker
| MessagePort
,
30 > extends AsyncResource
{
32 * Task function(s) processed by the worker when the pool's `execution` function is invoked.
34 protected taskFunctions
!: Map
<string, WorkerFunction
<Data
, Response
>>
36 * Timestamp of the last task processed by this worker.
38 protected lastTaskTimestamp
!: number
40 * Handler id of the `aliveInterval` worker alive check.
42 protected readonly aliveInterval
?: NodeJS
.Timeout
44 * Constructs a new poolifier worker.
46 * @param type - The type of async event.
47 * @param isMain - Whether this is the main worker or not.
48 * @param taskFunctions - Task function(s) processed by the worker when the pool's `execution` function is invoked. The first function is the default function.
49 * @param mainWorker - Reference to main worker.
50 * @param opts - Options for the worker.
54 protected readonly isMain
: boolean,
56 | WorkerFunction
<Data
, Response
>
57 | TaskFunctions
<Data
, Response
>,
58 protected mainWorker
: MainWorker
| undefined | null,
59 protected readonly opts
: WorkerOptions
= {
61 * The kill behavior option on this worker or its default value.
63 killBehavior
: DEFAULT_KILL_BEHAVIOR
,
65 * The maximum time to keep this worker alive while idle.
66 * The pool automatically checks and terminates this worker when the time expires.
68 maxInactiveTime
: DEFAULT_MAX_INACTIVE_TIME
72 this.checkWorkerOptions(this.opts
)
73 this.checkTaskFunctions(taskFunctions
)
75 this.lastTaskTimestamp
= performance
.now()
76 this.aliveInterval
= setInterval(
77 this.checkAlive
.bind(this),
78 (this.opts
.maxInactiveTime
?? DEFAULT_MAX_INACTIVE_TIME
) / 2
80 this.checkAlive
.bind(this)()
83 this.mainWorker
?.on('message', this.messageListener
.bind(this))
86 private checkWorkerOptions (opts
: WorkerOptions
): void {
87 this.opts
.killBehavior
= opts
.killBehavior
?? DEFAULT_KILL_BEHAVIOR
88 this.opts
.maxInactiveTime
=
89 opts
.maxInactiveTime
?? DEFAULT_MAX_INACTIVE_TIME
90 delete this.opts
.async
94 * Checks if the `taskFunctions` parameter is passed to the constructor.
96 * @param taskFunctions - The task function(s) parameter that should be checked.
98 private checkTaskFunctions (
100 | WorkerFunction
<Data
, Response
>
101 | TaskFunctions
<Data
, Response
>
103 if (taskFunctions
== null) {
104 throw new Error('taskFunctions parameter is mandatory')
106 this.taskFunctions
= new Map
<string, WorkerFunction
<Data
, Response
>>()
107 if (typeof taskFunctions
=== 'function') {
108 this.taskFunctions
.set(DEFAULT_FUNCTION_NAME
, taskFunctions
.bind(this))
109 } else if (isPlainObject(taskFunctions
)) {
110 let firstEntry
= true
111 for (const [name
, fn
] of Object.entries(taskFunctions
)) {
112 if (typeof fn
!== 'function') {
114 'A taskFunctions parameter object value is not a function'
117 this.taskFunctions
.set(name
, fn
.bind(this))
119 this.taskFunctions
.set(DEFAULT_FUNCTION_NAME
, fn
.bind(this))
124 throw new Error('taskFunctions parameter object is empty')
128 'taskFunctions parameter is not a function or a plain object'
134 * Worker message listener.
136 * @param message - Message received.
138 protected messageListener (message
: MessageValue
<Data
, MainWorker
>): void {
139 if (message
.id
!= null && message
.data
!= null) {
140 // Task message received
141 const fn
= this.getTaskFunction(message
.name
)
142 if (fn
?.constructor
.name
=== 'AsyncFunction') {
143 this.runInAsyncScope(this.runAsync
.bind(this), this, fn
, message
)
145 this.runInAsyncScope(this.runSync
.bind(this), this, fn
, message
)
147 } else if (message
.parent != null) {
148 // Main worker reference message received
149 this.mainWorker
= message
.parent
150 } else if (message
.kill
!= null) {
151 // Kill message received
152 this.aliveInterval
!= null && clearInterval(this.aliveInterval
)
158 * Returns the main worker.
160 * @returns Reference to the main worker.
162 protected getMainWorker (): MainWorker
{
163 if (this.mainWorker
== null) {
164 throw new Error('Main worker was not set')
166 return this.mainWorker
170 * Sends a message to the main worker.
172 * @param message - The response message.
174 protected abstract sendToMainWorker (message
: MessageValue
<Response
>): void
177 * Checks if the worker should be terminated, because its living too long.
179 protected checkAlive (): void {
181 performance
.now() - this.lastTaskTimestamp
>
182 (this.opts
.maxInactiveTime
?? DEFAULT_MAX_INACTIVE_TIME
)
184 this.sendToMainWorker({ kill
: this.opts
.killBehavior
})
189 * Handles an error and convert it to a string so it can be sent back to the main worker.
191 * @param e - The error raised by the worker.
192 * @returns Message of the error.
194 protected handleError (e
: Error | string): string {
199 * Runs the given function synchronously.
201 * @param fn - Function that will be executed.
202 * @param message - Input data for the given function.
205 fn
: WorkerSyncFunction
<Data
, Response
>,
206 message
: MessageValue
<Data
>
209 const startTimestamp
= performance
.now()
210 const res
= fn(message
.data
)
211 const runTime
= performance
.now() - startTimestamp
212 this.sendToMainWorker({
218 const err
= this.handleError(e
as Error)
219 this.sendToMainWorker({ error
: err
, id
: message
.id
})
221 !this.isMain
&& (this.lastTaskTimestamp
= performance
.now())
226 * Runs the given function asynchronously.
228 * @param fn - Function that will be executed.
229 * @param message - Input data for the given function.
232 fn
: WorkerAsyncFunction
<Data
, Response
>,
233 message
: MessageValue
<Data
>
235 const startTimestamp
= performance
.now()
238 const runTime
= performance
.now() - startTimestamp
239 this.sendToMainWorker({
247 const err
= this.handleError(e
as Error)
248 this.sendToMainWorker({ error
: err
, id
: message
.id
})
251 !this.isMain
&& (this.lastTaskTimestamp
= performance
.now())
253 .catch(EMPTY_FUNCTION
)
257 * Gets the task function in the given scope.
259 * @param name - Name of the function that will be returned.
261 private getTaskFunction (name
?: string): WorkerFunction
<Data
, Response
> {
262 name
= name
?? DEFAULT_FUNCTION_NAME
263 const fn
= this.taskFunctions
.get(name
)
265 throw new Error(`Task function "${name}" not found`)