Add tunable for charging station start delay for linear ramp up
[e-mobility-charging-stations-simulator.git] / src / worker / WorkerFactory.ts
CommitLineData
ffd71f2c 1import { Worker, isMainThread } from 'worker_threads';
c3ee95af 2import { WorkerData, WorkerOptions, WorkerProcessType } from '../types/Worker';
b8da29bc 3
322c9192 4import Constants from '../utils/Constants';
ffd71f2c 5import { PoolOptions } from 'poolifier';
73b9adec 6import type WorkerAbstract from './WorkerAbstract';
a4624c96 7import WorkerDynamicPool from './WorkerDynamicPool';
6013bc53 8import WorkerSet from './WorkerSet';
a4624c96 9import WorkerStaticPool from './WorkerStaticPool';
6013bc53
JB
10
11export default class WorkerFactory {
6c3cfef8
JB
12 private constructor() {
13 // This is intentional
14 }
8df3f0a9 15
c3ee95af 16 public static getWorkerImplementation<T extends WorkerData>(workerScript: string, workerProcessType: WorkerProcessType, options?: WorkerOptions): WorkerAbstract<T> | null {
ded13d97
JB
17 if (!isMainThread) {
18 throw new Error('Trying to get a worker implementation outside the main thread');
19 }
535aaa27 20 options = options ?? {} as WorkerOptions;
4bfd80fa
JB
21 options.workerStartDelay = options?.workerStartDelay ?? Constants.WORKER_START_DELAY;
22 options.elementStartDelay = options?.elementStartDelay ?? Constants.ELEMENT_START_DELAY;
ffd71f2c 23 options.poolOptions = options?.poolOptions ?? {} as PoolOptions<Worker>;
b55c9112 24 options?.messageHandler && (options.poolOptions.messageHandler = options.messageHandler);
c3ee95af 25 let workerImplementation: WorkerAbstract<T> = null;
535aaa27
JB
26 switch (workerProcessType) {
27 case WorkerProcessType.WORKER_SET:
28 options.elementsPerWorker = options.elementsPerWorker ?? Constants.DEFAULT_CHARGING_STATIONS_PER_WORKER;
4bfd80fa 29 workerImplementation = new WorkerSet(workerScript, options.elementsPerWorker, { workerStartDelay: options.workerStartDelay, elementStartDelay: options.elementStartDelay }, options);
535aaa27
JB
30 break;
31 case WorkerProcessType.STATIC_POOL:
32 options.poolMaxSize = options.poolMaxSize ?? Constants.DEFAULT_WORKER_POOL_MAX_SIZE;
4bfd80fa 33 workerImplementation = new WorkerStaticPool(workerScript, options.poolMaxSize, { workerStartDelay: options.workerStartDelay, elementStartDelay: options.elementStartDelay }, options.poolOptions);
535aaa27
JB
34 break;
35 case WorkerProcessType.DYNAMIC_POOL:
36 options.poolMinSize = options.poolMinSize ?? Constants.DEFAULT_WORKER_POOL_MIN_SIZE;
37 options.poolMaxSize = options.poolMaxSize ?? Constants.DEFAULT_WORKER_POOL_MAX_SIZE;
4bfd80fa 38 workerImplementation = new WorkerDynamicPool(workerScript, options.poolMinSize, options.poolMaxSize, { workerStartDelay: options.workerStartDelay, elementStartDelay: options.elementStartDelay }, options.poolOptions);
535aaa27 39 break;
fb226c9b
JB
40 default:
41 throw new Error(`Worker implementation type '${workerProcessType}' not found`);
6013bc53 42 }
535aaa27 43 return workerImplementation;
6013bc53
JB
44 }
45}