076b1ee0af596989d6d8eaa3f9cb8ba54207eaac
[e-mobility-charging-stations-simulator.git] / src / worker / WorkerStaticPool.ts
1 import { FixedThreadPool, PoolOptions } from 'poolifier';
2
3 import Utils from '../utils/Utils';
4 import { Worker } from 'worker_threads';
5 import WorkerAbstract from './WorkerAbstract';
6 import { WorkerData } from '../types/Worker';
7
8 export default class WorkerStaticPool<T> extends WorkerAbstract {
9 private pool: StaticPool;
10
11 /**
12 * Create a new `WorkerStaticPool`.
13 *
14 * @param {string} workerScript
15 * @param {number} numberOfThreads
16 * @param {number} startWorkerDelay
17 * @param {PoolOptions} opts
18 */
19 constructor(workerScript: string, numberOfThreads: number, startWorkerDelay?: number, opts?: PoolOptions<Worker>) {
20 super(workerScript, startWorkerDelay);
21 this.pool = StaticPool.getInstance(numberOfThreads, this.workerScript, opts);
22 }
23
24 get size(): number {
25 return this.pool.workers.length;
26 }
27
28 get maxElementsPerWorker(): number {
29 return null;
30 }
31
32 /**
33 *
34 * @returns {Promise<void>}
35 * @public
36 */
37 // eslint-disable-next-line @typescript-eslint/no-empty-function
38 public async start(): Promise<void> { }
39
40 /**
41 *
42 * @returns {Promise<void>}
43 * @public
44 */
45 public async stop(): Promise<void> {
46 return this.pool.destroy();
47 }
48
49 /**
50 *
51 * @param elementData
52 * @returns {Promise<void>}
53 * @public
54 */
55 public async addElement(elementData: T): Promise<void> {
56 await this.pool.execute(elementData);
57 // Start worker sequentially to optimize memory at startup
58 await Utils.sleep(this.workerStartDelay);
59 }
60 }
61
62 class StaticPool extends FixedThreadPool<WorkerData> {
63 private static instance: StaticPool;
64
65 private constructor(numberOfThreads: number, workerScript: string, opts?: PoolOptions<Worker>) {
66 super(numberOfThreads, workerScript, opts);
67 }
68
69 public static getInstance(numberOfThreads: number, workerScript: string, opts?: PoolOptions<Worker>): StaticPool {
70 if (!StaticPool.instance) {
71 opts.exitHandler = opts.exitHandler ?? ((code) => {
72 if (code !== 0) {
73 console.error(`Worker stopped with exit code ${code}`);
74 }
75 });
76 StaticPool.instance = new StaticPool(numberOfThreads, workerScript, opts);
77 }
78 return StaticPool.instance;
79 }
80 }