X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcharging-station%2FChargingStationWorker.ts;h=6201bf07e2b52fe7e6d1931412da74e89043717c;hb=4ed03b6ec8110ad11b67ead121145c80995f69df;hp=6a6f631ca4597809fedafcaaeb696e8c35bd50d1;hpb=c0f4be747574980ada77fd4be1c691637fa69347;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ChargingStationWorker.ts b/src/charging-station/ChargingStationWorker.ts index 6a6f631c..6201bf07 100644 --- a/src/charging-station/ChargingStationWorker.ts +++ b/src/charging-station/ChargingStationWorker.ts @@ -1,52 +1,69 @@ -// Partial Copyright Jerome Benoit. 2021. All Rights Reserved. +// Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved. -import { - ChargingStationWorkerData, - ChargingStationWorkerMessage, - ChargingStationWorkerMessageEvents, -} from '../types/ChargingStationWorker'; -import { parentPort, workerData } from 'worker_threads'; +import { AsyncResource } from 'node:async_hooks'; +import { parentPort } from 'node:worker_threads'; -import ChargingStation from './ChargingStation'; import { ThreadWorker } from 'poolifier'; -import Utils from '../utils/Utils'; -import WorkerConstants from '../worker/WorkerConstants'; -// Conditionally export ThreadWorker instance for pool usage -export let threadWorker: ThreadWorker; -if (Utils.workerPoolInUse()) { - threadWorker = new ThreadWorker(startChargingStation, { - maxInactiveTime: WorkerConstants.POOL_MAX_INACTIVE_TIME, - async: false, - }); -} else { - // Add message listener to start charging station from main thread - addMessageListener(); - if (!Utils.isUndefined(workerData)) { - startChargingStation({ - index: (workerData as Record).index as number, - templateFile: (workerData as Record).templateFile as string, - }); - } -} +import { ChargingStation } from './ChargingStation'; +import { BaseError } from '../exception'; +import type { ChargingStationWorkerData } from '../types'; +import { Configuration } from '../utils'; +import { type WorkerMessage, WorkerMessageEvents } from '../worker'; -/** - * Listen messages send by the main thread - */ -function addMessageListener(): void { - parentPort?.on('message', (message: ChargingStationWorkerMessage) => { - if (message.id === ChargingStationWorkerMessageEvents.START_WORKER_ELEMENT) { - startChargingStation(message.data); - } - }); -} +const moduleName = 'ChargingStationWorker'; /** - * Create and start a charging station instance + * Creates and starts a charging station instance * - * @param data workerData + * @param data - workerData */ -function startChargingStation(data: ChargingStationWorkerData): void { - const station = new ChargingStation(data.index, data.templateFile); - station.start(); +const startChargingStation = (data?: ChargingStationWorkerData): void => { + new ChargingStation(data!.index, data!.templateFile).start(); +}; + +class ChargingStationWorker extends AsyncResource { + constructor() { + super(moduleName); + // Add message listener to create and start charging station from the main thread + parentPort?.on('message', (message: WorkerMessage) => { + switch (message.event) { + case WorkerMessageEvents.startWorkerElement: + try { + this.runInAsyncScope( + startChargingStation.bind(this) as (data?: ChargingStationWorkerData) => void, + this, + message.data, + ); + parentPort?.postMessage({ + event: WorkerMessageEvents.startedWorkerElement, + }); + } catch (error) { + parentPort?.postMessage({ + event: WorkerMessageEvents.startWorkerElementError, + data: { + message: (error as Error).message, + stack: (error as Error).stack, + }, + }); + } + break; + default: + throw new BaseError( + `Unknown worker event: '${message.event}' received with data: '${JSON.stringify( + message.data, + undefined, + 2, + )}'`, + ); + } + }); + } +} + +export let chargingStationWorker: ChargingStationWorker | ThreadWorker; +if (Configuration.workerPoolInUse()) { + chargingStationWorker = new ThreadWorker(startChargingStation); +} else { + chargingStationWorker = new ChargingStationWorker(); }