X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fthread%2Fdynamic.ts;h=1d3f3f5d3c64d0d94a367c17f92a6df1d2b4d75f;hb=21f710aa73abbb5d90328cfb199adfc0f7a70406;hp=7a0d4ffd8c0513bac3a4ffaf983182f109d23b3d;hpb=afd20c11f44e34385623a4b86834f69bcf660606;p=poolifier.git diff --git a/src/pools/thread/dynamic.ts b/src/pools/thread/dynamic.ts index 7a0d4ffd..1d3f3f5d 100644 --- a/src/pools/thread/dynamic.ts +++ b/src/pools/thread/dynamic.ts @@ -1,76 +1,51 @@ -import type { JSONValue } from '../../utility-types' -import type { PoolOptions } from '../abstract-pool' -import type { ThreadWorkerWithMessageChannel } from './fixed' -import { FixedThreadPool } from './fixed' -import { killBehaviorEnumeration } from '../../worker/worker-options' +import { type PoolType, PoolTypes } from '../pool' +import { FixedThreadPool, type ThreadPoolOptions } from './fixed' /** * A thread pool with a dynamic number of threads, but a guaranteed minimum number of threads. * * This thread pool creates new threads when the others are busy, up to the maximum number of threads. - * When the maximum number of threads is reached, an event is emitted. If you want to listen to this event, use the pool's `emitter`. - * - * @template Data Type of data sent to the worker. - * @template Response Type of response of execution. + * When the maximum number of threads is reached and workers are busy, an event is emitted. If you want to listen to this event, use the pool's `emitter`. * + * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data. + * @typeParam Response - Type of execution response. This can only be structured-cloneable data. * @author [Alessandro Pio Ardizio](https://github.com/pioardi) * @since 0.0.1 */ export class DynamicThreadPool< - Data extends JSONValue = JSONValue, - Response extends JSONValue = JSONValue + Data = unknown, + Response = unknown > extends FixedThreadPool { /** * Constructs a new poolifier dynamic thread pool. * - * @param min Minimum number of threads which are always active. - * @param max Maximum number of threads that can be created by this pool. - * @param filename Path to an implementation of a `ThreadWorker` file, which can be relative or absolute. - * @param opts Options for this fixed thread pool. Default: `{ maxTasks: 1000 }` + * @param min - Minimum number of threads which are always active. + * @param max - Maximum number of threads that can be created by this pool. + * @param filePath - Path to an implementation of a `ThreadWorker` file, which can be relative or absolute. + * @param opts - Options for this dynamic thread pool. */ public constructor ( min: number, - public readonly max: number, - filename: string, - opts: PoolOptions = { maxTasks: 1000 } + protected readonly max: number, + filePath: string, + opts: ThreadPoolOptions = {} ) { - super(min, filename, opts) + super(min, filePath, opts) + this.checkDynamicPoolSize(this.numberOfWorkers, this.max) } - /** - * Choose a thread for the next task. - * - * It will first check for and return an idle thread. - * If all threads are busy, then it will try to create a new one up to the `max` thread count. - * If the max thread count is reached, the emitter will emit a `FullPool` event and it will fall back to using a round robin algorithm to distribute the load. - * - * @returns Thread worker. - */ - protected chooseWorker (): ThreadWorkerWithMessageChannel { - for (const [worker, numberOfTasks] of this.tasks) { - if (numberOfTasks === 0) { - // A worker is free, use it - return worker - } - } + /** @inheritDoc */ + protected get type (): PoolType { + return PoolTypes.dynamic + } - if (this.workers.length === this.max) { - this.emitter.emit('FullPool') - return super.chooseWorker() - } + /** @inheritDoc */ + protected get maxSize (): number { + return this.max + } - // All workers are busy, create a new worker - const worker = this.createAndSetupWorker() - this.registerWorkerMessageListener(worker, message => { - const tasksInProgress = this.tasks.get(worker) - const isKillBehaviorOptionHard = - message.kill === killBehaviorEnumeration.HARD - if (isKillBehaviorOptionHard || tasksInProgress === 0) { - // Kill received from the worker, means that no new tasks are submitted to that worker for a while ( > maxInactiveTime) - this.sendToWorker(worker, { kill: 1 }) - void this.destroyWorker(worker) - } - }) - return worker + /** @inheritDoc */ + protected get busy (): boolean { + return this.full && this.internalBusy() } }