X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fworker%2FWorkerStaticPool.ts;h=818fd21af48f1c466b9e8dc8920ed94bb73a915a;hb=5767874516784070db4445321b5212ad7e5a84b4;hp=1de7cba23304a7f3812dd906a9c64162a3f39dc9;hpb=1af50fac1ab71fed19f11864d1644261046698a3;p=e-mobility-charging-stations-simulator.git diff --git a/src/worker/WorkerStaticPool.ts b/src/worker/WorkerStaticPool.ts index 1de7cba2..818fd21a 100644 --- a/src/worker/WorkerStaticPool.ts +++ b/src/worker/WorkerStaticPool.ts @@ -1,42 +1,45 @@ -import { FixedThreadPool, FixedThreadPoolOptions } from 'poolifier'; +import { WorkerData, WorkerOptions } from '../types/Worker'; -import Constants from '../utils/Constants'; +import { FixedThreadPool } from 'poolifier'; import Utils from '../utils/Utils'; -import { WorkerData } from '../types/Worker'; -import Wrk from './Wrk'; +import WorkerAbstract from './WorkerAbstract'; +import { WorkerUtils } from './WorkerUtils'; -export default class WorkerStaticPool extends Wrk { - private pool: StaticPool; +export default class WorkerStaticPool extends WorkerAbstract { + private readonly pool: FixedThreadPool; /** * Create 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.workerOptions.poolOptions.exitHandler = this.workerOptions?.poolOptions?.exitHandler ?? WorkerUtils.defaultExitHandler; + this.pool = new FixedThreadPool(this.workerOptions.poolMaxSize, this.workerScript, this.workerOptions.poolOptions); } get size(): number { return this.pool.workers.length; } - get maxElementsPerWorker(): number { - return 1; + get maxElementsPerWorker(): number | null { + return null; } /** * - * @return {Promise} + * @returns * @public */ - // eslint-disable-next-line @typescript-eslint/no-empty-function - public async start(): Promise { } + public async start(): Promise { + // This is intentional + } /** * - * @return {Promise} + * @returns * @public */ public async stop(): Promise { @@ -45,35 +48,13 @@ export default class WorkerStaticPool extends Wrk { /** * - * @return {Promise} + * @param elementData + * @returns * @public */ - public async addElement(elementData: T): Promise { + public async addElement(elementData: WorkerData): Promise { await this.pool.execute(elementData); - // Start worker sequentially to optimize memory at startup - await Utils.sleep(Constants.START_WORKER_DELAY); - } -} - -class StaticPool extends FixedThreadPool { - private static instance: StaticPool; - - private constructor(numThreads: number, workerScript: string, opts?: FixedThreadPoolOptions) { - super(numThreads, workerScript, opts); - } - - 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; + // Start element sequentially to optimize memory at startup + this.workerOptions.elementStartDelay > 0 && await Utils.sleep(this.workerOptions.elementStartDelay); } }