X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fworker%2FWorkerStaticPool.ts;h=7000ac9a45e7f0ea8d5de89a9ba3496782c59b63;hb=5edd8ba0f8978cfb3ca9d80f299d9748c6c5970e;hp=1de7cba23304a7f3812dd906a9c64162a3f39dc9;hpb=ded13d9799aa6fb958da48a6b702d4193e7954f2;p=e-mobility-charging-stations-simulator.git diff --git a/src/worker/WorkerStaticPool.ts b/src/worker/WorkerStaticPool.ts index 1de7cba2..7000ac9a 100644 --- a/src/worker/WorkerStaticPool.ts +++ b/src/worker/WorkerStaticPool.ts @@ -1,79 +1,57 @@ -import { FixedThreadPool, FixedThreadPoolOptions } from 'poolifier'; +import { FixedThreadPool, type PoolEmitter, type PoolInfo } from 'poolifier'; -import Constants from '../utils/Constants'; -import Utils from '../utils/Utils'; -import { WorkerData } from '../types/Worker'; -import Wrk from './Wrk'; +import { WorkerAbstract } from './WorkerAbstract'; +import type { WorkerData, WorkerOptions } from './WorkerTypes'; +import { sleep } from './WorkerUtils'; -export default class WorkerStaticPool extends Wrk { - private pool: StaticPool; +export class WorkerStaticPool extends WorkerAbstract { + private readonly pool: FixedThreadPool; /** - * Create a new `WorkerStaticPool`. + * Creates a new `WorkerStaticPool`. * - * @param {string} workerScript + * @param workerScript - + * @param workerOptions - */ - constructor(workerScript: string, numThreads: number) { - super(workerScript); - this.pool = StaticPool.getInstance(numThreads, this.workerScript); + constructor(workerScript: string, workerOptions?: WorkerOptions) { + super(workerScript, workerOptions); + this.pool = new FixedThreadPool( + this.workerOptions.poolMaxSize, + this.workerScript, + this.workerOptions.poolOptions, + ); } - get size(): number { - return this.pool.workers.length; + get info(): PoolInfo { + return this.pool.info; } - get maxElementsPerWorker(): number { - return 1; + get size(): number { + return this.pool.info.workerNodes; } - /** - * - * @return {Promise} - * @public - */ - // eslint-disable-next-line @typescript-eslint/no-empty-function - public async start(): Promise { } - - /** - * - * @return {Promise} - * @public - */ - public async stop(): Promise { - return this.pool.destroy(); + get maxElementsPerWorker(): number | undefined { + return undefined; } - /** - * - * @return {Promise} - * @public - */ - public async addElement(elementData: T): Promise { - await this.pool.execute(elementData); - // Start worker sequentially to optimize memory at startup - await Utils.sleep(Constants.START_WORKER_DELAY); + get emitter(): PoolEmitter | undefined { + return this.pool?.emitter; } -} -class StaticPool extends FixedThreadPool { - private static instance: StaticPool; + /** @inheritDoc */ + public async start(): Promise { + // This is intentional + } - private constructor(numThreads: number, workerScript: string, opts?: FixedThreadPoolOptions) { - super(numThreads, workerScript, opts); + /** @inheritDoc */ + public async stop(): Promise { + return this.pool.destroy(); } - public static getInstance(numThreads: number, workerScript: string): StaticPool { - if (!StaticPool.instance) { - StaticPool.instance = new StaticPool(numThreads, workerScript, - { - exitHandler: (code) => { - if (code !== 0) { - console.error(`Worker stopped with exit code ${code}`); - } - } - } - ); - } - return StaticPool.instance; + /** @inheritDoc */ + public async addElement(elementData: WorkerData): Promise { + await this.pool.execute(elementData); + // Start element sequentially to optimize memory at startup + this.workerOptions.elementStartDelay > 0 && (await sleep(this.workerOptions.elementStartDelay)); } }