perf: use worker key as much as possible instead of a reference to the
[poolifier.git] / src / pools / abstract-pool.ts
1 import crypto from 'node:crypto'
2 import type { MessageValue, PromiseResponseWrapper } from '../utility-types'
3 import { EMPTY_FUNCTION } from '../utils'
4 import { KillBehaviors, isKillBehavior } from '../worker/worker-options'
5 import type { PoolOptions } from './pool'
6 import { PoolEmitter } from './pool'
7 import type { IPoolInternal, TasksUsage, WorkerType } from './pool-internal'
8 import { PoolType } from './pool-internal'
9 import type { IPoolWorker } from './pool-worker'
10 import {
11 WorkerChoiceStrategies,
12 type WorkerChoiceStrategy
13 } from './selection-strategies/selection-strategies-types'
14 import { WorkerChoiceStrategyContext } from './selection-strategies/worker-choice-strategy-context'
15
16 /**
17 * Base class that implements some shared logic for all poolifier pools.
18 *
19 * @typeParam Worker - Type of worker which manages this pool.
20 * @typeParam Data - Type of data sent to the worker. This can only be serializable data.
21 * @typeParam Response - Type of response of execution. This can only be serializable data.
22 */
23 export abstract class AbstractPool<
24 Worker extends IPoolWorker,
25 Data = unknown,
26 Response = unknown
27 > implements IPoolInternal<Worker, Data, Response> {
28 /** {@inheritDoc} */
29 public readonly workers: Array<WorkerType<Worker>> = []
30
31 /** {@inheritDoc} */
32 public readonly emitter?: PoolEmitter
33
34 /**
35 * The promise response map.
36 *
37 * - `key`: The message id of each submitted task.
38 * - `value`: An object that contains the worker, the promise resolve and reject callbacks.
39 *
40 * When we receive a message from the worker we get a map entry with the promise resolve/reject bound to the message.
41 */
42 protected promiseResponseMap: Map<
43 string,
44 PromiseResponseWrapper<Worker, Response>
45 > = new Map<string, PromiseResponseWrapper<Worker, Response>>()
46
47 /**
48 * Worker choice strategy instance implementing the worker choice algorithm.
49 *
50 * Default to a strategy implementing a round robin algorithm.
51 */
52 protected workerChoiceStrategyContext: WorkerChoiceStrategyContext<
53 Worker,
54 Data,
55 Response
56 >
57
58 /**
59 * Constructs a new poolifier pool.
60 *
61 * @param numberOfWorkers - Number of workers that this pool should manage.
62 * @param filePath - Path to the worker-file.
63 * @param opts - Options for the pool.
64 */
65 public constructor (
66 public readonly numberOfWorkers: number,
67 public readonly filePath: string,
68 public readonly opts: PoolOptions<Worker>
69 ) {
70 if (!this.isMain()) {
71 throw new Error('Cannot start a pool from a worker!')
72 }
73 this.checkNumberOfWorkers(this.numberOfWorkers)
74 this.checkFilePath(this.filePath)
75 this.checkPoolOptions(this.opts)
76 this.setupHook()
77
78 for (let i = 1; i <= this.numberOfWorkers; i++) {
79 this.createAndSetupWorker()
80 }
81
82 if (this.opts.enableEvents === true) {
83 this.emitter = new PoolEmitter()
84 }
85 this.workerChoiceStrategyContext = new WorkerChoiceStrategyContext(
86 this,
87 () => {
88 const createdWorker = this.createAndSetupWorker()
89 this.registerWorkerMessageListener(createdWorker, message => {
90 if (
91 isKillBehavior(KillBehaviors.HARD, message.kill) ||
92 this.getWorkerTasksUsage(createdWorker)?.running === 0
93 ) {
94 // Kill received from the worker, means that no new tasks are submitted to that worker for a while ( > maxInactiveTime)
95 void this.destroyWorker(createdWorker)
96 }
97 })
98 return this.getWorkerKey(createdWorker)
99 },
100 this.opts.workerChoiceStrategy
101 )
102 }
103
104 private checkFilePath (filePath: string): void {
105 if (
106 filePath == null ||
107 (typeof filePath === 'string' && filePath.trim().length === 0)
108 ) {
109 throw new Error('Please specify a file with a worker implementation')
110 }
111 }
112
113 private checkNumberOfWorkers (numberOfWorkers: number): void {
114 if (numberOfWorkers == null) {
115 throw new Error(
116 'Cannot instantiate a pool without specifying the number of workers'
117 )
118 } else if (!Number.isSafeInteger(numberOfWorkers)) {
119 throw new TypeError(
120 'Cannot instantiate a pool with a non integer number of workers'
121 )
122 } else if (numberOfWorkers < 0) {
123 throw new RangeError(
124 'Cannot instantiate a pool with a negative number of workers'
125 )
126 } else if (this.type === PoolType.FIXED && numberOfWorkers === 0) {
127 throw new Error('Cannot instantiate a fixed pool with no worker')
128 }
129 }
130
131 private checkPoolOptions (opts: PoolOptions<Worker>): void {
132 this.opts.workerChoiceStrategy =
133 opts.workerChoiceStrategy ?? WorkerChoiceStrategies.ROUND_ROBIN
134 this.opts.enableEvents = opts.enableEvents ?? true
135 }
136
137 /** {@inheritDoc} */
138 public abstract get type (): PoolType
139
140 /** {@inheritDoc} */
141 public get numberOfRunningTasks (): number {
142 return this.promiseResponseMap.size
143 }
144
145 /**
146 * Gets the given worker key.
147 *
148 * @param worker - The worker.
149 * @returns The worker key.
150 */
151 private getWorkerKey (worker: Worker): number {
152 return this.workers.findIndex(workerItem => workerItem.worker === worker)
153 }
154
155 /** {@inheritDoc} */
156 public setWorkerChoiceStrategy (
157 workerChoiceStrategy: WorkerChoiceStrategy
158 ): void {
159 this.opts.workerChoiceStrategy = workerChoiceStrategy
160 for (const [index, workerItem] of this.workers.entries()) {
161 this.setWorker(index, workerItem.worker, {
162 run: 0,
163 running: 0,
164 runTime: 0,
165 avgRunTime: 0,
166 error: 0
167 })
168 }
169 this.workerChoiceStrategyContext.setWorkerChoiceStrategy(
170 workerChoiceStrategy
171 )
172 }
173
174 /** {@inheritDoc} */
175 public abstract get busy (): boolean
176
177 protected internalGetBusyStatus (): boolean {
178 return (
179 this.numberOfRunningTasks >= this.numberOfWorkers &&
180 this.findFreeWorkerKey() === false
181 )
182 }
183
184 /** {@inheritDoc} */
185 public findFreeWorkerKey (): number | false {
186 const freeWorkerKey = this.workers.findIndex(workerItem => {
187 return workerItem.tasksUsage.running === 0
188 })
189 return freeWorkerKey !== -1 ? freeWorkerKey : false
190 }
191
192 /** {@inheritDoc} */
193 public async execute (data: Data): Promise<Response> {
194 const [workerKey, worker] = this.chooseWorker()
195 const messageId = crypto.randomUUID()
196 const res = this.internalExecute(workerKey, worker, messageId)
197 this.checkAndEmitBusy()
198 this.sendToWorker(worker, {
199 // eslint-disable-next-line @typescript-eslint/consistent-type-assertions
200 data: data ?? ({} as Data),
201 id: messageId
202 })
203 // eslint-disable-next-line @typescript-eslint/return-await
204 return res
205 }
206
207 /** {@inheritDoc} */
208 public async destroy (): Promise<void> {
209 await Promise.all(
210 this.workers.map(async workerItem => {
211 await this.destroyWorker(workerItem.worker)
212 })
213 )
214 }
215
216 /**
217 * Shutdowns given worker.
218 *
219 * @param worker - A worker within `workers`.
220 */
221 protected abstract destroyWorker (worker: Worker): void | Promise<void>
222
223 /**
224 * Setup hook that can be overridden by a Poolifier pool implementation
225 * to run code before workers are created in the abstract constructor.
226 */
227 protected setupHook (): void {
228 // Can be overridden
229 }
230
231 /**
232 * Should return whether the worker is the main worker or not.
233 */
234 protected abstract isMain (): boolean
235
236 /**
237 * Hook executed before the worker task promise resolution.
238 * Can be overridden.
239 *
240 * @param workerKey - The worker key.
241 */
242 protected beforePromiseResponseHook (workerKey: number): void {
243 ++this.workers[workerKey].tasksUsage.running
244 }
245
246 /**
247 * Hook executed after the worker task promise resolution.
248 * Can be overridden.
249 *
250 * @param worker - The worker.
251 * @param message - The received message.
252 */
253 protected afterPromiseResponseHook (
254 worker: Worker,
255 message: MessageValue<Response>
256 ): void {
257 const workerTasksUsage = this.getWorkerTasksUsage(worker) as TasksUsage
258 --workerTasksUsage.running
259 ++workerTasksUsage.run
260 if (message.error != null) {
261 ++workerTasksUsage.error
262 }
263 if (
264 this.workerChoiceStrategyContext.getWorkerChoiceStrategy()
265 .requiredStatistics.runTime
266 ) {
267 workerTasksUsage.runTime += message.taskRunTime ?? 0
268 if (workerTasksUsage.run !== 0) {
269 workerTasksUsage.avgRunTime =
270 workerTasksUsage.runTime / workerTasksUsage.run
271 }
272 }
273 }
274
275 /**
276 * Removes the given worker from the pool.
277 *
278 * @param worker - The worker that will be removed.
279 */
280 protected removeWorker (worker: Worker): void {
281 this.workers.splice(this.getWorkerKey(worker), 1)
282 }
283
284 /**
285 * Chooses a worker for the next task.
286 *
287 * The default implementation uses a round robin algorithm to distribute the load.
288 *
289 * @returns [worker key, worker].
290 */
291 protected chooseWorker (): [number, Worker] {
292 const workerKey = this.workerChoiceStrategyContext.execute()
293 return [workerKey, this.workers[workerKey].worker]
294 }
295
296 /**
297 * Sends a message to the given worker.
298 *
299 * @param worker - The worker which should receive the message.
300 * @param message - The message.
301 */
302 protected abstract sendToWorker (
303 worker: Worker,
304 message: MessageValue<Data>
305 ): void
306
307 /**
308 * Registers a listener callback on a given worker.
309 *
310 * @param worker - The worker which should register a listener.
311 * @param listener - The message listener callback.
312 */
313 protected abstract registerWorkerMessageListener<
314 Message extends Data | Response
315 >(worker: Worker, listener: (message: MessageValue<Message>) => void): void
316
317 /**
318 * Returns a newly created worker.
319 */
320 protected abstract createWorker (): Worker
321
322 /**
323 * Function that can be hooked up when a worker has been newly created and moved to the workers registry.
324 *
325 * Can be used to update the `maxListeners` or binding the `main-worker`\<-\>`worker` connection if not bind by default.
326 *
327 * @param worker - The newly created worker.
328 */
329 protected abstract afterWorkerSetup (worker: Worker): void
330
331 /**
332 * Creates a new worker for this pool and sets it up completely.
333 *
334 * @returns New, completely set up worker.
335 */
336 protected createAndSetupWorker (): Worker {
337 const worker = this.createWorker()
338
339 worker.on('message', this.opts.messageHandler ?? EMPTY_FUNCTION)
340 worker.on('error', this.opts.errorHandler ?? EMPTY_FUNCTION)
341 worker.on('online', this.opts.onlineHandler ?? EMPTY_FUNCTION)
342 worker.on('exit', this.opts.exitHandler ?? EMPTY_FUNCTION)
343 worker.once('exit', () => {
344 this.removeWorker(worker)
345 })
346
347 this.pushWorker(worker, {
348 run: 0,
349 running: 0,
350 runTime: 0,
351 avgRunTime: 0,
352 error: 0
353 })
354
355 this.afterWorkerSetup(worker)
356
357 return worker
358 }
359
360 /**
361 * This function is the listener registered for each worker.
362 *
363 * @returns The listener function to execute when a message is received from a worker.
364 */
365 protected workerListener (): (message: MessageValue<Response>) => void {
366 return message => {
367 if (message.id !== undefined) {
368 const promiseResponse = this.promiseResponseMap.get(message.id)
369 if (promiseResponse !== undefined) {
370 if (message.error != null) {
371 promiseResponse.reject(message.error)
372 } else {
373 promiseResponse.resolve(message.data as Response)
374 }
375 this.afterPromiseResponseHook(promiseResponse.worker, message)
376 this.promiseResponseMap.delete(message.id)
377 }
378 }
379 }
380 }
381
382 private async internalExecute (
383 workerKey: number,
384 worker: Worker,
385 messageId: string
386 ): Promise<Response> {
387 this.beforePromiseResponseHook(workerKey)
388 return await new Promise<Response>((resolve, reject) => {
389 this.promiseResponseMap.set(messageId, { resolve, reject, worker })
390 })
391 }
392
393 private checkAndEmitBusy (): void {
394 if (this.opts.enableEvents === true && this.busy) {
395 this.emitter?.emit('busy')
396 }
397 }
398
399 /**
400 * Gets worker tasks usage.
401 *
402 * @param worker - The worker.
403 * @returns The worker tasks usage.
404 */
405 private getWorkerTasksUsage (worker: Worker): TasksUsage | undefined {
406 const workerKey = this.getWorkerKey(worker)
407 if (workerKey !== -1) {
408 return this.workers[workerKey].tasksUsage
409 }
410 throw new Error('Worker could not be found in the pool')
411 }
412
413 /**
414 * Pushes the given worker.
415 *
416 * @param worker - The worker.
417 * @param tasksUsage - The worker tasks usage.
418 */
419 private pushWorker (worker: Worker, tasksUsage: TasksUsage): void {
420 this.workers.push({
421 worker,
422 tasksUsage
423 })
424 }
425
426 /**
427 * Sets the given worker.
428 *
429 * @param workerKey - The worker key.
430 * @param worker - The worker.
431 * @param tasksUsage - The worker tasks usage.
432 */
433 private setWorker (
434 workerKey: number,
435 worker: Worker,
436 tasksUsage: TasksUsage
437 ): void {
438 this.workers[workerKey] = {
439 worker,
440 tasksUsage
441 }
442 }
443 }