a6f223e674bb4bb2d18e5df8e61f0b6132d62c8f
[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, median } from '../utils'
4 import { KillBehaviors, isKillBehavior } from '../worker/worker-options'
5 import { PoolEvents, type PoolOptions } from './pool'
6 import { PoolEmitter } from './pool'
7 import type { IPoolInternal } from './pool-internal'
8 import { PoolType } from './pool-internal'
9 import type { IWorker, Task, TasksUsage, WorkerNode } from './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 import { CircularArray } from '../circular-array'
16
17 /**
18 * Base class that implements some shared logic for all poolifier pools.
19 *
20 * @typeParam Worker - Type of worker which manages this pool.
21 * @typeParam Data - Type of data sent to the worker. This can only be serializable data.
22 * @typeParam Response - Type of response of execution. This can only be serializable data.
23 */
24 export abstract class AbstractPool<
25 Worker extends IWorker,
26 Data = unknown,
27 Response = unknown
28 > implements IPoolInternal<Worker, Data, Response> {
29 /** @inheritDoc */
30 public readonly workerNodes: Array<WorkerNode<Worker, Data>> = []
31
32 /** @inheritDoc */
33 public readonly emitter?: PoolEmitter
34
35 /**
36 * The execution response promise map.
37 *
38 * - `key`: The message id of each submitted task.
39 * - `value`: An object that contains the worker, the execution response promise resolve and reject callbacks.
40 *
41 * When we receive a message from the worker, we get a map entry with the promise resolve/reject bound to the message id.
42 */
43 protected promiseResponseMap: Map<
44 string,
45 PromiseResponseWrapper<Worker, Response>
46 > = new Map<string, PromiseResponseWrapper<Worker, Response>>()
47
48 /**
49 * Worker choice strategy context referencing a worker choice algorithm implementation.
50 *
51 * Default to a round robin algorithm.
52 */
53 protected workerChoiceStrategyContext: WorkerChoiceStrategyContext<
54 Worker,
55 Data,
56 Response
57 >
58
59 /**
60 * Constructs a new poolifier pool.
61 *
62 * @param numberOfWorkers - Number of workers that this pool should manage.
63 * @param filePath - Path to the worker-file.
64 * @param opts - Options for the pool.
65 */
66 public constructor (
67 public readonly numberOfWorkers: number,
68 public readonly filePath: string,
69 public readonly opts: PoolOptions<Worker>
70 ) {
71 if (!this.isMain()) {
72 throw new Error('Cannot start a pool from a worker!')
73 }
74 this.checkNumberOfWorkers(this.numberOfWorkers)
75 this.checkFilePath(this.filePath)
76 this.checkPoolOptions(this.opts)
77
78 this.chooseWorkerNode.bind(this)
79 this.executeTask.bind(this)
80 this.enqueueTask.bind(this)
81 this.checkAndEmitEvents.bind(this)
82
83 this.setupHook()
84
85 for (let i = 1; i <= this.numberOfWorkers; i++) {
86 this.createAndSetupWorker()
87 }
88
89 if (this.opts.enableEvents === true) {
90 this.emitter = new PoolEmitter()
91 }
92 this.workerChoiceStrategyContext = new WorkerChoiceStrategyContext<
93 Worker,
94 Data,
95 Response
96 >(
97 this,
98 this.opts.workerChoiceStrategy,
99 this.opts.workerChoiceStrategyOptions
100 )
101 }
102
103 private checkFilePath (filePath: string): void {
104 if (
105 filePath == null ||
106 (typeof filePath === 'string' && filePath.trim().length === 0)
107 ) {
108 throw new Error('Please specify a file with a worker implementation')
109 }
110 }
111
112 private checkNumberOfWorkers (numberOfWorkers: number): void {
113 if (numberOfWorkers == null) {
114 throw new Error(
115 'Cannot instantiate a pool without specifying the number of workers'
116 )
117 } else if (!Number.isSafeInteger(numberOfWorkers)) {
118 throw new TypeError(
119 'Cannot instantiate a pool with a non integer number of workers'
120 )
121 } else if (numberOfWorkers < 0) {
122 throw new RangeError(
123 'Cannot instantiate a pool with a negative number of workers'
124 )
125 } else if (this.type === PoolType.FIXED && numberOfWorkers === 0) {
126 throw new Error('Cannot instantiate a fixed pool with no worker')
127 }
128 }
129
130 private checkPoolOptions (opts: PoolOptions<Worker>): void {
131 this.opts.workerChoiceStrategy =
132 opts.workerChoiceStrategy ?? WorkerChoiceStrategies.ROUND_ROBIN
133 this.checkValidWorkerChoiceStrategy(this.opts.workerChoiceStrategy)
134 this.opts.workerChoiceStrategyOptions =
135 opts.workerChoiceStrategyOptions ?? { medRunTime: false }
136 this.opts.enableEvents = opts.enableEvents ?? true
137 this.opts.enableTasksQueue = opts.enableTasksQueue ?? false
138 }
139
140 private checkValidWorkerChoiceStrategy (
141 workerChoiceStrategy: WorkerChoiceStrategy
142 ): void {
143 if (!Object.values(WorkerChoiceStrategies).includes(workerChoiceStrategy)) {
144 throw new Error(
145 `Invalid worker choice strategy '${workerChoiceStrategy}'`
146 )
147 }
148 }
149
150 /** @inheritDoc */
151 public abstract get type (): PoolType
152
153 /**
154 * Number of tasks running in the pool.
155 */
156 private get numberOfRunningTasks (): number {
157 return this.workerNodes.reduce(
158 (accumulator, workerNode) => accumulator + workerNode.tasksUsage.running,
159 0
160 )
161 }
162
163 /**
164 * Number of tasks queued in the pool.
165 */
166 private get numberOfQueuedTasks (): number {
167 if (this.opts.enableTasksQueue === false) {
168 return 0
169 }
170 return this.workerNodes.reduce(
171 (accumulator, workerNode) => accumulator + workerNode.tasksQueue.length,
172 0
173 )
174 }
175
176 /**
177 * Gets the given worker its worker node key.
178 *
179 * @param worker - The worker.
180 * @returns The worker node key if the worker is found in the pool worker nodes, `-1` otherwise.
181 */
182 private getWorkerNodeKey (worker: Worker): number {
183 return this.workerNodes.findIndex(
184 workerNode => workerNode.worker === worker
185 )
186 }
187
188 /** @inheritDoc */
189 public setWorkerChoiceStrategy (
190 workerChoiceStrategy: WorkerChoiceStrategy
191 ): void {
192 this.checkValidWorkerChoiceStrategy(workerChoiceStrategy)
193 this.opts.workerChoiceStrategy = workerChoiceStrategy
194 for (const workerNode of this.workerNodes) {
195 this.setWorkerNodeTasksUsage(workerNode, {
196 run: 0,
197 running: 0,
198 runTime: 0,
199 runTimeHistory: new CircularArray(),
200 avgRunTime: 0,
201 medRunTime: 0,
202 error: 0
203 })
204 }
205 this.workerChoiceStrategyContext.setWorkerChoiceStrategy(
206 workerChoiceStrategy
207 )
208 }
209
210 /** @inheritDoc */
211 public abstract get full (): boolean
212
213 /** @inheritDoc */
214 public abstract get busy (): boolean
215
216 protected internalBusy (): boolean {
217 return (
218 this.numberOfRunningTasks >= this.numberOfWorkers &&
219 this.findFreeWorkerNodeKey() === -1
220 )
221 }
222
223 /** @inheritDoc */
224 public findFreeWorkerNodeKey (): number {
225 return this.workerNodes.findIndex(workerNode => {
226 return workerNode.tasksUsage?.running === 0
227 })
228 }
229
230 /** @inheritDoc */
231 public async execute (data: Data): Promise<Response> {
232 const [workerNodeKey, workerNode] = this.chooseWorkerNode()
233 const submittedTask: Task<Data> = {
234 // eslint-disable-next-line @typescript-eslint/consistent-type-assertions
235 data: data ?? ({} as Data),
236 id: crypto.randomUUID()
237 }
238 const res = new Promise<Response>((resolve, reject) => {
239 this.promiseResponseMap.set(submittedTask.id, {
240 resolve,
241 reject,
242 worker: workerNode.worker
243 })
244 })
245 if (
246 this.opts.enableTasksQueue === true &&
247 (this.busy || this.workerNodes[workerNodeKey].tasksUsage.running > 0)
248 ) {
249 this.enqueueTask(workerNodeKey, submittedTask)
250 } else {
251 this.executeTask(workerNodeKey, submittedTask)
252 }
253 this.checkAndEmitEvents()
254 // eslint-disable-next-line @typescript-eslint/return-await
255 return res
256 }
257
258 /** @inheritDoc */
259 public async destroy (): Promise<void> {
260 await Promise.all(
261 this.workerNodes.map(async workerNode => {
262 this.flushTasksQueueByWorker(workerNode.worker)
263 await this.destroyWorker(workerNode.worker)
264 })
265 )
266 }
267
268 /**
269 * Shutdowns the given worker.
270 *
271 * @param worker - A worker within `workerNodes`.
272 */
273 protected abstract destroyWorker (worker: Worker): void | Promise<void>
274
275 /**
276 * Setup hook to execute code before worker node are created in the abstract constructor.
277 * Can be overridden
278 *
279 * @virtual
280 */
281 protected setupHook (): void {
282 // Intentionally empty
283 }
284
285 /**
286 * Should return whether the worker is the main worker or not.
287 */
288 protected abstract isMain (): boolean
289
290 /**
291 * Hook executed before the worker task execution.
292 * Can be overridden.
293 *
294 * @param workerNodeKey - The worker node key.
295 */
296 protected beforeTaskExecutionHook (workerNodeKey: number): void {
297 ++this.workerNodes[workerNodeKey].tasksUsage.running
298 }
299
300 /**
301 * Hook executed after the worker task execution.
302 * Can be overridden.
303 *
304 * @param worker - The worker.
305 * @param message - The received message.
306 */
307 protected afterTaskExecutionHook (
308 worker: Worker,
309 message: MessageValue<Response>
310 ): void {
311 const workerTasksUsage = this.getWorkerTasksUsage(worker) as TasksUsage
312 --workerTasksUsage.running
313 ++workerTasksUsage.run
314 if (message.error != null) {
315 ++workerTasksUsage.error
316 }
317 if (this.workerChoiceStrategyContext.getRequiredStatistics().runTime) {
318 workerTasksUsage.runTime += message.runTime ?? 0
319 if (
320 this.workerChoiceStrategyContext.getRequiredStatistics().avgRunTime &&
321 workerTasksUsage.run !== 0
322 ) {
323 workerTasksUsage.avgRunTime =
324 workerTasksUsage.runTime / workerTasksUsage.run
325 }
326 if (this.workerChoiceStrategyContext.getRequiredStatistics().medRunTime) {
327 workerTasksUsage.runTimeHistory.push(message.runTime ?? 0)
328 workerTasksUsage.medRunTime = median(workerTasksUsage.runTimeHistory)
329 }
330 }
331 }
332
333 /**
334 * Chooses a worker node for the next task.
335 *
336 * The default uses a round robin algorithm to distribute the load.
337 *
338 * @returns [worker node key, worker node].
339 */
340 protected chooseWorkerNode (): [number, WorkerNode<Worker, Data>] {
341 let workerNodeKey: number
342 if (
343 this.type === PoolType.DYNAMIC &&
344 !this.full &&
345 this.findFreeWorkerNodeKey() === -1
346 ) {
347 const workerCreated = this.createAndSetupWorker()
348 this.registerWorkerMessageListener(workerCreated, message => {
349 if (
350 isKillBehavior(KillBehaviors.HARD, message.kill) ||
351 (message.kill != null &&
352 this.getWorkerTasksUsage(workerCreated)?.running === 0)
353 ) {
354 // Kill message received from the worker: no new tasks are submitted to that worker for a while ( > maxInactiveTime)
355 this.flushTasksQueueByWorker(workerCreated)
356 void this.destroyWorker(workerCreated)
357 }
358 })
359 workerNodeKey = this.getWorkerNodeKey(workerCreated)
360 } else {
361 workerNodeKey = this.workerChoiceStrategyContext.execute()
362 }
363 return [workerNodeKey, this.workerNodes[workerNodeKey]]
364 }
365
366 /**
367 * Sends a message to the given worker.
368 *
369 * @param worker - The worker which should receive the message.
370 * @param message - The message.
371 */
372 protected abstract sendToWorker (
373 worker: Worker,
374 message: MessageValue<Data>
375 ): void
376
377 /**
378 * Registers a listener callback on the given worker.
379 *
380 * @param worker - The worker which should register a listener.
381 * @param listener - The message listener callback.
382 */
383 protected abstract registerWorkerMessageListener<
384 Message extends Data | Response
385 >(worker: Worker, listener: (message: MessageValue<Message>) => void): void
386
387 /**
388 * Returns a newly created worker.
389 */
390 protected abstract createWorker (): Worker
391
392 /**
393 * Function that can be hooked up when a worker has been newly created and moved to the pool worker nodes.
394 *
395 * Can be used to update the `maxListeners` or binding the `main-worker`\<-\>`worker` connection if not bind by default.
396 *
397 * @param worker - The newly created worker.
398 */
399 protected abstract afterWorkerSetup (worker: Worker): void
400
401 /**
402 * Creates a new worker and sets it up completely in the pool worker nodes.
403 *
404 * @returns New, completely set up worker.
405 */
406 protected createAndSetupWorker (): Worker {
407 const worker = this.createWorker()
408
409 worker.on('message', this.opts.messageHandler ?? EMPTY_FUNCTION)
410 worker.on('error', this.opts.errorHandler ?? EMPTY_FUNCTION)
411 worker.on('online', this.opts.onlineHandler ?? EMPTY_FUNCTION)
412 worker.on('exit', this.opts.exitHandler ?? EMPTY_FUNCTION)
413 worker.once('exit', () => {
414 this.removeWorkerNode(worker)
415 })
416
417 this.pushWorkerNode(worker)
418
419 this.afterWorkerSetup(worker)
420
421 return worker
422 }
423
424 /**
425 * This function is the listener registered for each worker message.
426 *
427 * @returns The listener function to execute when a message is received from a worker.
428 */
429 protected workerListener (): (message: MessageValue<Response>) => void {
430 return message => {
431 if (message.id != null) {
432 // Task execution response received
433 const promiseResponse = this.promiseResponseMap.get(message.id)
434 if (promiseResponse != null) {
435 if (message.error != null) {
436 promiseResponse.reject(message.error)
437 } else {
438 promiseResponse.resolve(message.data as Response)
439 }
440 this.afterTaskExecutionHook(promiseResponse.worker, message)
441 this.promiseResponseMap.delete(message.id)
442 const workerNodeKey = this.getWorkerNodeKey(promiseResponse.worker)
443 if (
444 this.opts.enableTasksQueue === true &&
445 this.tasksQueueSize(workerNodeKey) > 0
446 ) {
447 this.executeTask(
448 workerNodeKey,
449 this.dequeueTask(workerNodeKey) as Task<Data>
450 )
451 }
452 }
453 }
454 }
455 }
456
457 private checkAndEmitEvents (): void {
458 if (this.opts.enableEvents === true) {
459 if (this.busy) {
460 this.emitter?.emit(PoolEvents.busy)
461 }
462 if (this.type === PoolType.DYNAMIC && this.full) {
463 this.emitter?.emit(PoolEvents.full)
464 }
465 }
466 }
467
468 /**
469 * Sets the given worker node its tasks usage in the pool.
470 *
471 * @param workerNode - The worker node.
472 * @param tasksUsage - The worker node tasks usage.
473 */
474 private setWorkerNodeTasksUsage (
475 workerNode: WorkerNode<Worker, Data>,
476 tasksUsage: TasksUsage
477 ): void {
478 workerNode.tasksUsage = tasksUsage
479 }
480
481 /**
482 * Gets the given worker its tasks usage in the pool.
483 *
484 * @param worker - The worker.
485 * @returns The worker tasks usage.
486 */
487 private getWorkerTasksUsage (worker: Worker): TasksUsage | undefined {
488 const workerNodeKey = this.getWorkerNodeKey(worker)
489 if (workerNodeKey !== -1) {
490 return this.workerNodes[workerNodeKey].tasksUsage
491 }
492 throw new Error('Worker could not be found in the pool worker nodes')
493 }
494
495 /**
496 * Pushes the given worker in the pool worker nodes.
497 *
498 * @param worker - The worker.
499 * @returns The worker nodes length.
500 */
501 private pushWorkerNode (worker: Worker): number {
502 return this.workerNodes.push({
503 worker,
504 tasksUsage: {
505 run: 0,
506 running: 0,
507 runTime: 0,
508 runTimeHistory: new CircularArray(),
509 avgRunTime: 0,
510 medRunTime: 0,
511 error: 0
512 },
513 tasksQueue: []
514 })
515 }
516
517 /**
518 * Sets the given worker in the pool worker nodes.
519 *
520 * @param workerNodeKey - The worker node key.
521 * @param worker - The worker.
522 * @param tasksUsage - The worker tasks usage.
523 * @param tasksQueue - The worker task queue.
524 */
525 private setWorkerNode (
526 workerNodeKey: number,
527 worker: Worker,
528 tasksUsage: TasksUsage,
529 tasksQueue: Array<Task<Data>>
530 ): void {
531 this.workerNodes[workerNodeKey] = {
532 worker,
533 tasksUsage,
534 tasksQueue
535 }
536 }
537
538 /**
539 * Removes the given worker from the pool worker nodes.
540 *
541 * @param worker - The worker.
542 */
543 private removeWorkerNode (worker: Worker): void {
544 const workerNodeKey = this.getWorkerNodeKey(worker)
545 this.workerNodes.splice(workerNodeKey, 1)
546 this.workerChoiceStrategyContext.remove(workerNodeKey)
547 }
548
549 private executeTask (workerNodeKey: number, task: Task<Data>): void {
550 this.beforeTaskExecutionHook(workerNodeKey)
551 this.sendToWorker(this.workerNodes[workerNodeKey].worker, task)
552 }
553
554 private enqueueTask (workerNodeKey: number, task: Task<Data>): void {
555 this.workerNodes[workerNodeKey].tasksQueue.push(task)
556 }
557
558 private dequeueTask (workerNodeKey: number): Task<Data> | undefined {
559 return this.workerNodes[workerNodeKey].tasksQueue.shift()
560 }
561
562 private tasksQueueSize (workerNodeKey: number): number {
563 return this.workerNodes[workerNodeKey].tasksQueue.length
564 }
565
566 private flushTasksQueue (workerNodeKey: number): void {
567 if (this.tasksQueueSize(workerNodeKey) > 0) {
568 for (const task of this.workerNodes[workerNodeKey].tasksQueue) {
569 this.executeTask(workerNodeKey, task)
570 }
571 this.workerNodes[workerNodeKey].tasksQueue = []
572 }
573 }
574
575 private flushTasksQueueByWorker (worker: Worker): void {
576 const workerNodeKey = this.getWorkerNodeKey(worker)
577 this.flushTasksQueue(workerNodeKey)
578 }
579 }