fix: brown paper bag bug referencing the same object literal
[poolifier.git] / src / pools / abstract-pool.ts
1 import type {
2 MessageValue,
3 PromiseWorkerResponseWrapper
4 } from '../utility-types'
5 import { EMPTY_FUNCTION } from '../utils'
6 import { KillBehaviors, isKillBehavior } from '../worker/worker-options'
7 import type { PoolOptions } from './pool'
8 import { PoolEmitter } from './pool'
9 import type { IPoolInternal, TasksUsage } from './pool-internal'
10 import { PoolType } from './pool-internal'
11 import type { IPoolWorker } from './pool-worker'
12 import {
13 WorkerChoiceStrategies,
14 type WorkerChoiceStrategy
15 } from './selection-strategies/selection-strategies-types'
16 import { WorkerChoiceStrategyContext } from './selection-strategies/worker-choice-strategy-context'
17
18 /**
19 * Base class that implements some shared logic for all poolifier pools.
20 *
21 * @typeParam Worker - Type of worker which manages this pool.
22 * @typeParam Data - Type of data sent to the worker. This can only be serializable data.
23 * @typeParam Response - Type of response of execution. This can only be serializable data.
24 */
25 export abstract class AbstractPool<
26 Worker extends IPoolWorker,
27 Data = unknown,
28 Response = unknown
29 > implements IPoolInternal<Worker, Data, Response> {
30 /** {@inheritDoc} */
31 public readonly workers: Worker[] = []
32
33 /** {@inheritDoc} */
34 public readonly workersTasksUsage: Map<Worker, TasksUsage> = new Map<
35 Worker,
36 TasksUsage
37 >()
38
39 /** {@inheritDoc} */
40 public readonly emitter?: PoolEmitter
41
42 /**
43 * The promise map.
44 *
45 * - `key`: This is the message Id of each submitted task.
46 * - `value`: An object that contains the worker, the resolve function and the reject function.
47 *
48 * When we receive a message from the worker we get a map entry and resolve/reject the promise based on the message.
49 */
50 protected promiseMap: Map<
51 number,
52 PromiseWorkerResponseWrapper<Worker, Response>
53 > = new Map<number, PromiseWorkerResponseWrapper<Worker, Response>>()
54
55 /**
56 * Id of the next message.
57 */
58 protected nextMessageId: number = 0
59
60 /**
61 * Worker choice strategy instance implementing the worker choice algorithm.
62 *
63 * Default to a strategy implementing a round robin algorithm.
64 */
65 protected workerChoiceStrategyContext: WorkerChoiceStrategyContext<
66 Worker,
67 Data,
68 Response
69 >
70
71 /**
72 * Constructs a new poolifier pool.
73 *
74 * @param numberOfWorkers - Number of workers that this pool should manage.
75 * @param filePath - Path to the worker-file.
76 * @param opts - Options for the pool.
77 */
78 public constructor (
79 public readonly numberOfWorkers: number,
80 public readonly filePath: string,
81 public readonly opts: PoolOptions<Worker>
82 ) {
83 if (!this.isMain()) {
84 throw new Error('Cannot start a pool from a worker!')
85 }
86 this.checkNumberOfWorkers(this.numberOfWorkers)
87 this.checkFilePath(this.filePath)
88 this.checkPoolOptions(this.opts)
89 this.setupHook()
90
91 for (let i = 1; i <= this.numberOfWorkers; i++) {
92 this.createAndSetupWorker()
93 }
94
95 if (this.opts.enableEvents === true) {
96 this.emitter = new PoolEmitter()
97 }
98 this.workerChoiceStrategyContext = new WorkerChoiceStrategyContext(
99 this,
100 () => {
101 const workerCreated = this.createAndSetupWorker()
102 this.registerWorkerMessageListener(workerCreated, message => {
103 if (
104 isKillBehavior(KillBehaviors.HARD, message.kill) ||
105 this.getWorkerRunningTasks(workerCreated) === 0
106 ) {
107 // Kill received from the worker, means that no new tasks are submitted to that worker for a while ( > maxInactiveTime)
108 void (this.destroyWorker(workerCreated) as Promise<void>)
109 }
110 })
111 return workerCreated
112 },
113 this.opts.workerChoiceStrategy
114 )
115 }
116
117 private checkFilePath (filePath: string): void {
118 if (filePath == null || filePath.length === 0) {
119 throw new Error('Please specify a file with a worker implementation')
120 }
121 }
122
123 private checkNumberOfWorkers (numberOfWorkers: number): void {
124 if (numberOfWorkers == null) {
125 throw new Error(
126 'Cannot instantiate a pool without specifying the number of workers'
127 )
128 } else if (!Number.isSafeInteger(numberOfWorkers)) {
129 throw new TypeError(
130 'Cannot instantiate a pool with a non integer number of workers'
131 )
132 } else if (numberOfWorkers < 0) {
133 throw new RangeError(
134 'Cannot instantiate a pool with a negative number of workers'
135 )
136 } else if (this.type === PoolType.FIXED && numberOfWorkers === 0) {
137 throw new Error('Cannot instantiate a fixed pool with no worker')
138 }
139 }
140
141 private checkPoolOptions (opts: PoolOptions<Worker>): void {
142 this.opts.workerChoiceStrategy =
143 opts.workerChoiceStrategy ?? WorkerChoiceStrategies.ROUND_ROBIN
144 this.opts.enableEvents = opts.enableEvents ?? true
145 }
146
147 /** {@inheritDoc} */
148 public abstract get type (): PoolType
149
150 /** {@inheritDoc} */
151 public get numberOfRunningTasks (): number {
152 return this.promiseMap.size
153 }
154
155 /** {@inheritDoc} */
156 public getWorkerIndex (worker: Worker): number {
157 return this.workers.indexOf(worker)
158 }
159
160 /** {@inheritDoc} */
161 public getWorkerRunningTasks (worker: Worker): number | undefined {
162 return this.workersTasksUsage.get(worker)?.running
163 }
164
165 /** {@inheritDoc} */
166 public getWorkerAverageTasksRunTime (worker: Worker): number | undefined {
167 return this.workersTasksUsage.get(worker)?.avgRunTime
168 }
169
170 /** {@inheritDoc} */
171 public setWorkerChoiceStrategy (
172 workerChoiceStrategy: WorkerChoiceStrategy
173 ): void {
174 this.opts.workerChoiceStrategy = workerChoiceStrategy
175 for (const worker of this.workers) {
176 this.resetWorkerTasksUsage(worker)
177 }
178 this.workerChoiceStrategyContext.setWorkerChoiceStrategy(
179 workerChoiceStrategy
180 )
181 }
182
183 /** {@inheritDoc} */
184 public abstract get busy (): boolean
185
186 protected internalGetBusyStatus (): boolean {
187 return (
188 this.numberOfRunningTasks >= this.numberOfWorkers &&
189 this.findFreeWorker() === false
190 )
191 }
192
193 /** {@inheritDoc} */
194 public findFreeWorker (): Worker | false {
195 for (const worker of this.workers) {
196 if (this.getWorkerRunningTasks(worker) === 0) {
197 // A worker is free, return the matching worker
198 return worker
199 }
200 }
201 return false
202 }
203
204 /** {@inheritDoc} */
205 public async execute (data: Data): Promise<Response> {
206 // Configure worker to handle message with the specified task
207 const worker = this.chooseWorker()
208 const res = this.internalExecute(worker, this.nextMessageId)
209 this.checkAndEmitBusy()
210 this.sendToWorker(worker, {
211 data,
212 id: this.nextMessageId
213 })
214 ++this.nextMessageId
215 // eslint-disable-next-line @typescript-eslint/return-await
216 return res
217 }
218
219 /** {@inheritDoc} */
220 public async destroy (): Promise<void> {
221 await Promise.all(
222 this.workers.map(async worker => {
223 await this.destroyWorker(worker)
224 })
225 )
226 }
227
228 /**
229 * Shutdowns given worker.
230 *
231 * @param worker - A worker within `workers`.
232 */
233 protected abstract destroyWorker (worker: Worker): void | Promise<void>
234
235 /**
236 * Setup hook that can be overridden by a Poolifier pool implementation
237 * to run code before workers are created in the abstract constructor.
238 */
239 protected setupHook (): void {
240 // Can be overridden
241 }
242
243 /**
244 * Should return whether the worker is the main worker or not.
245 */
246 protected abstract isMain (): boolean
247
248 /**
249 * Hook executed before the worker task promise resolution.
250 * Can be overridden.
251 *
252 * @param worker - The worker.
253 */
254 protected beforePromiseWorkerResponseHook (worker: Worker): void {
255 this.increaseWorkerRunningTasks(worker)
256 }
257
258 /**
259 * Hook executed after the worker task promise resolution.
260 * Can be overridden.
261 *
262 * @param message - The received message.
263 * @param promise - The Promise response.
264 */
265 protected afterPromiseWorkerResponseHook (
266 message: MessageValue<Response>,
267 promise: PromiseWorkerResponseWrapper<Worker, Response>
268 ): void {
269 this.decreaseWorkerRunningTasks(promise.worker)
270 this.stepWorkerRunTasks(promise.worker, 1)
271 this.updateWorkerTasksRunTime(promise.worker, message.taskRunTime)
272 }
273
274 /**
275 * Removes the given worker from the pool.
276 *
277 * @param worker - The worker that will be removed.
278 */
279 protected removeWorker (worker: Worker): void {
280 // Clean worker from data structure
281 this.workers.splice(this.getWorkerIndex(worker), 1)
282 this.removeWorkerTasksUsage(worker)
283 }
284
285 /**
286 * Chooses a worker for the next task.
287 *
288 * The default implementation uses a round robin algorithm to distribute the load.
289 *
290 * @returns Worker.
291 */
292 protected chooseWorker (): Worker {
293 return this.workerChoiceStrategyContext.execute()
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.workers.push(worker)
348
349 // Init worker tasks usage map
350 this.initWorkerTasksUsage(worker)
351
352 this.afterWorkerSetup(worker)
353
354 return worker
355 }
356
357 /**
358 * This function is the listener registered for each worker.
359 *
360 * @returns The listener function to execute when a message is received from a worker.
361 */
362 protected workerListener (): (message: MessageValue<Response>) => void {
363 return message => {
364 if (message.id !== undefined) {
365 const promise = this.promiseMap.get(message.id)
366 if (promise !== undefined) {
367 if (message.error != null) {
368 promise.reject(message.error)
369 } else {
370 promise.resolve(message.data as Response)
371 }
372 this.afterPromiseWorkerResponseHook(message, promise)
373 this.promiseMap.delete(message.id)
374 }
375 }
376 }
377 }
378
379 private async internalExecute (
380 worker: Worker,
381 messageId: number
382 ): Promise<Response> {
383 this.beforePromiseWorkerResponseHook(worker)
384 return await new Promise<Response>((resolve, reject) => {
385 this.promiseMap.set(messageId, { resolve, reject, worker })
386 })
387 }
388
389 private checkAndEmitBusy (): void {
390 if (this.opts.enableEvents === true && this.busy) {
391 this.emitter?.emit('busy')
392 }
393 }
394
395 /**
396 * Increases the number of tasks that the given worker has applied.
397 *
398 * @param worker - Worker which running tasks is increased.
399 */
400 private increaseWorkerRunningTasks (worker: Worker): void {
401 this.stepWorkerRunningTasks(worker, 1)
402 }
403
404 /**
405 * Decreases the number of tasks that the given worker has applied.
406 *
407 * @param worker - Worker which running tasks is decreased.
408 */
409 private decreaseWorkerRunningTasks (worker: Worker): void {
410 this.stepWorkerRunningTasks(worker, -1)
411 }
412
413 /**
414 * Steps the number of tasks that the given worker has applied.
415 *
416 * @param worker - Worker which running tasks are stepped.
417 * @param step - Number of running tasks step.
418 */
419 private stepWorkerRunningTasks (worker: Worker, step: number): void {
420 if (this.checkWorkerTasksUsage(worker)) {
421 const tasksUsage = this.workersTasksUsage.get(worker) as TasksUsage
422 tasksUsage.running = tasksUsage.running + step
423 this.workersTasksUsage.set(worker, tasksUsage)
424 }
425 }
426
427 /**
428 * Steps the number of tasks that the given worker has run.
429 *
430 * @param worker - Worker which has run tasks.
431 * @param step - Number of run tasks step.
432 */
433 private stepWorkerRunTasks (worker: Worker, step: number): void {
434 if (this.checkWorkerTasksUsage(worker)) {
435 const tasksUsage = this.workersTasksUsage.get(worker) as TasksUsage
436 tasksUsage.run = tasksUsage.run + step
437 this.workersTasksUsage.set(worker, tasksUsage)
438 }
439 }
440
441 /**
442 * Updates tasks runtime for the given worker.
443 *
444 * @param worker - Worker which run the task.
445 * @param taskRunTime - Worker task runtime.
446 */
447 private updateWorkerTasksRunTime (
448 worker: Worker,
449 taskRunTime: number | undefined
450 ): void {
451 if (
452 this.workerChoiceStrategyContext.getWorkerChoiceStrategy()
453 .requiredStatistics.runTime &&
454 this.checkWorkerTasksUsage(worker)
455 ) {
456 const tasksUsage = this.workersTasksUsage.get(worker) as TasksUsage
457 tasksUsage.runTime += taskRunTime ?? 0
458 if (tasksUsage.run !== 0) {
459 tasksUsage.avgRunTime = tasksUsage.runTime / tasksUsage.run
460 }
461 this.workersTasksUsage.set(worker, tasksUsage)
462 }
463 }
464
465 /**
466 * Checks if the given worker is registered in the workers tasks usage map.
467 *
468 * @param worker - Worker to check.
469 * @returns `true` if the worker is registered in the workers tasks usage map. `false` otherwise.
470 */
471 private checkWorkerTasksUsage (worker: Worker): boolean {
472 const hasTasksUsage = this.workersTasksUsage.has(worker)
473 if (!hasTasksUsage) {
474 throw new Error('Worker could not be found in workers tasks usage map')
475 }
476 return hasTasksUsage
477 }
478
479 /**
480 * Initializes tasks usage statistics.
481 *
482 * @param worker - The worker.
483 */
484 private initWorkerTasksUsage (worker: Worker): void {
485 this.workersTasksUsage.set(worker, {
486 run: 0,
487 running: 0,
488 runTime: 0,
489 avgRunTime: 0
490 })
491 }
492
493 /**
494 * Removes worker tasks usage statistics.
495 *
496 * @param worker - The worker.
497 */
498 private removeWorkerTasksUsage (worker: Worker): void {
499 this.workersTasksUsage.delete(worker)
500 }
501
502 /**
503 * Resets worker tasks usage statistics.
504 *
505 * @param worker - The worker.
506 */
507 private resetWorkerTasksUsage (worker: Worker): void {
508 this.removeWorkerTasksUsage(worker)
509 this.initWorkerTasksUsage(worker)
510 }
511 }