X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fstart.ts;h=04dd28140811d09d114ce59aa1c87a00a7d467d7;hb=b8da29bc984201049370a2bc497b7ae4143db32a;hp=aa3cfdeff96af62b59895cc9cefab0dbed60fa4f;hpb=6013bc53ce820bacf728a4d85d875c3317ff2442;p=e-mobility-charging-stations-simulator.git diff --git a/src/start.ts b/src/start.ts index aa3cfdef..04dd2814 100644 --- a/src/start.ts +++ b/src/start.ts @@ -1,25 +1,30 @@ import Configuration from './utils/Configuration'; -import WorkerData from './types/WorkerData'; +import { StationWorkerData } from './types/Worker'; +import Utils from './utils/Utils'; import WorkerFactory from './worker/WorkerFactory'; -import Wrk from './worker/Worker'; +import Wrk from './worker/Wrk'; class Bootstrap { - static start() { + static async start() { try { let numStationsTotal = 0; - const workerImplementation: Wrk = WorkerFactory.getWorkerImpl('./dist/charging-station/StationWorker.js'); - void workerImplementation.start(); + const workerImplementation: Wrk = WorkerFactory.getWorkerImpl('./dist/charging-station/StationWorker.js', Configuration.getWorkerProcess(), { + poolMaxSize: Configuration.getWorkerPoolMaxSize(), + poolMinSize: Configuration.getWorkerPoolMinSize(), + elementsPerWorker: Configuration.getChargingStationsPerWorker() + }); + await workerImplementation.start(); // Start ChargingStation object in worker thread if (Configuration.getStationTemplateURLs()) { for (const stationURL of Configuration.getStationTemplateURLs()) { try { const nbStations = stationURL.numberOfStations ? stationURL.numberOfStations : 0; for (let index = 1; index <= nbStations; index++) { - const workerData: WorkerData = { + const workerData: StationWorkerData = { index, templateFile: stationURL.file }; - void workerImplementation.addElement(workerData); + await workerImplementation.addElement(workerData); numStationsTotal++; } } catch (error) { @@ -33,7 +38,7 @@ class Bootstrap { if (numStationsTotal === 0) { console.log('No charging station template enabled in configuration, exiting'); } else { - console.log(`Charging station simulator started with ${numStationsTotal.toString()} charging station(s) and ${workerImplementation.size}${Configuration.useWorkerPool() ? `/${Configuration.getWorkerPoolMaxSize().toString()}` : ''} worker(s) concurrently running (${workerImplementation.maxElementsPerWorker} charging station(s) per worker)`); + console.log(`Charging station simulator started with ${numStationsTotal.toString()} charging station(s) and ${Utils.workerDynamicPoolInUse() ? `${Configuration.getWorkerPoolMinSize().toString()}/` : ''}${workerImplementation.size}${Utils.workerPoolInUse() ? `/${Configuration.getWorkerPoolMaxSize().toString()}` : ''} worker(s) concurrently running in '${Configuration.getWorkerProcess()}' mode (${workerImplementation.maxElementsPerWorker} charging station(s) per worker)`); } } catch (error) { // eslint-disable-next-line no-console @@ -42,4 +47,8 @@ class Bootstrap { } } -Bootstrap.start(); +Bootstrap.start().catch( + (error) => { + console.error(error); + } +);