X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fstart.ts;h=03bd4b8b03d41cbb3fd7a0787f0e8f082a7770ba;hb=059f35a55515a998352f621e40a1e35bd22b424d;hp=fb58c2d28ca2187dbcf0bb48b8e5b4905f23c512;hpb=3d2ff9e4875d166265bb925e00a4301e82f5c248;p=e-mobility-charging-stations-simulator.git diff --git a/src/start.ts b/src/start.ts index fb58c2d2..03bd4b8b 100644 --- a/src/start.ts +++ b/src/start.ts @@ -1,47 +1,31 @@ import Configuration from './utils/Configuration'; -import { StationTemplateURL } from './types/ConfigurationData'; +import { StationWorkerData } from './types/Worker'; import Utils from './utils/Utils'; -import Wrk from './charging-station/Worker'; -import WorkerData from './types/WorkerData'; -import fs from 'fs'; +import WorkerFactory from './worker/WorkerFactory'; +import Wrk from './worker/Wrk'; class Bootstrap { static async start() { try { let numStationsTotal = 0; - let numConcurrentWorkers = 0; - let worker: Wrk; - let chargingStationsPerWorker = Configuration.getChargingStationsPerWorker(); - let counter = 0; - // Start each ChargingStation object in a worker thread + const workerImplementation: Wrk = WorkerFactory.getWorkerImpl('./dist/charging-station/StationWorker.js'); + await workerImplementation.start(); + // Start ChargingStation object in worker thread if (Configuration.getStationTemplateURLs()) { - for await (const stationURL of Configuration.getStationTemplateURLs()) { + for (const stationURL of Configuration.getStationTemplateURLs()) { try { const nbStations = stationURL.numberOfStations ? stationURL.numberOfStations : 0; - numStationsTotal += nbStations; for (let index = 1; index <= nbStations; index++) { - const workerData = { + const workerData: StationWorkerData = { index, templateFile: stationURL.file - } as WorkerData; - if(counter === 0 || counter === chargingStationsPerWorker) { - // Start new worker with one charging station - worker = await new Wrk('./dist/charging-station/StationWorker.js', workerData, numStationsTotal); - worker.start().catch(() => {}); - counter = 0; - // Start workers sequentially to optimize memory at start time - await Utils.sleep(500); - } else { - // Add new charging station to existing Worker - worker.startNewChargingStation(workerData, numStationsTotal) - } - counter++; - // Start charging station sequentially to optimize memory at start time - numConcurrentWorkers = worker.concurrentWorkers; + }; + await workerImplementation.addElement(workerData); + numStationsTotal++; } } catch (error) { // eslint-disable-next-line no-console - console.log('Charging station start with template file ' + stationURL.file + ' error ' + JSON.stringify(error, null, ' ')); + console.error('Charging station start with template file ' + stationURL.file + ' error ', error); } } } else { @@ -50,13 +34,17 @@ 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) of ' + numConcurrentWorkers.toString() + ' concurrently running'); + 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 - console.log('Bootstrap start error ' + JSON.stringify(error, null, ' ')); + console.error('Bootstrap start error ', error); } } } -Bootstrap.start(); +Bootstrap.start().catch( + (error) => { + console.error(error); + } +);