X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fstart.ts;h=af569c53e3e46f2e12c694c221b6e1620955111c;hb=42b8cf5cdca8eaab1e7442f7c92c2a5ed97434f6;hp=e841b57ec63692d173ea6f8e9d69703be546e668;hpb=ad3de6c4ec07b788fe1c84a40081902c3abc5b3b;p=e-mobility-charging-stations-simulator.git diff --git a/src/start.ts b/src/start.ts index e841b57e..af569c53 100644 --- a/src/start.ts +++ b/src/start.ts @@ -1,44 +1,11 @@ -import Configuration from './utils/Configuration'; -import { StationTemplateURL } from './types/ConfigurationData'; -import Wrk from './charging-station/Worker'; +// Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved. -class Bootstrap { - static start() { - try { - let numStationsTotal = 0; - let numConcurrentWorkers = 0; - // Start each ChargingStation object in a worker thread - if (Configuration.getStationTemplateURLs()) { - Configuration.getStationTemplateURLs().forEach((stationURL: StationTemplateURL) => { - try { - const nbStations = stationURL.numberOfStations ? stationURL.numberOfStations : 0; - numStationsTotal += nbStations; - for (let index = 1; index <= nbStations; index++) { - const worker = new Wrk('./dist/charging-station/StationWorker.js', { - index, - templateFile: stationURL.file, - }, numStationsTotal); - worker.start().catch(() => {}); - numConcurrentWorkers = worker.concurrentWorkers; - } - } catch (error) { - // eslint-disable-next-line no-console - console.log('Charging station start with template file ' + stationURL.file + ' error ' + JSON.stringify(error, null, ' ')); - } - }); - } else { - console.log('No stationTemplateURLs defined in configuration, exiting'); - } - 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'); - } - } catch (error) { - // eslint-disable-next-line no-console - console.log('Bootstrap start error ' + JSON.stringify(error, null, ' ')); - } - } -} +import chalk from 'chalk'; + +import { Bootstrap } from './charging-station'; -Bootstrap.start(); +try { + await Bootstrap.getInstance().start(); +} catch (error) { + console.error(chalk.red('Startup error: '), error); +}