X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fstart.ts;h=7c42c4d205682073c4d23c04d7d2a3eff15add97;hb=6027002ff1398a1cb3bb55d4994e4615efded2c0;hp=7f5822225cfe260d3073a12ce536f31dde881d18;hpb=c045d9a97ebdf3747b82746b733b0c60a7db3f32;p=e-mobility-charging-stations-simulator.git diff --git a/src/start.ts b/src/start.ts index 7f582222..7c42c4d2 100644 --- a/src/start.ts +++ b/src/start.ts @@ -1,45 +1,11 @@ -import Configuration from './utils/Configuration'; -import { WorkerData } from './types/Worker'; -import WorkerFactory from './worker/WorkerFactory'; -import Wrk from './worker/Wrk'; +// Partial Copyright Jerome Benoit. 2021-2024. All Rights Reserved. -class Bootstrap { - static start() { - try { - let numStationsTotal = 0; - const workerImplementation: Wrk = WorkerFactory.getWorkerImpl('./dist/charging-station/StationWorker.js'); - void 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 = { - index, - templateFile: stationURL.file - }; - void workerImplementation.addElement(workerData); - numStationsTotal++; - } - } catch (error) { - // eslint-disable-next-line no-console - console.error('Charging station start with template file ' + stationURL.file + ' error ', error); - } - } - } 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) and ${workerImplementation.size}${Configuration.useWorkerPool() ? `/${Configuration.getWorkerPoolMaxSize().toString()}` : ''} worker(s) concurrently running (${workerImplementation.maxElementsPerWorker} charging station(s) per worker)`); - } - } catch (error) { - // eslint-disable-next-line no-console - console.error('Bootstrap start error ', error); - } - } -} +import chalk from 'chalk' + +import { Bootstrap } from './charging-station/index.js' -Bootstrap.start(); +try { + await Bootstrap.getInstance().start() +} catch (error) { + console.error(chalk.red('Startup error: '), error) +}