X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fstart.ts;h=596f0275e8335a9c36e0dc29cb31dff5539cc4fb;hb=8eac9a09368f841fc44e980f31674146833e449b;hp=5aaeea9f940235ba0641122e8da86e91ae7f4529;hpb=46eb543c2eb31661c078b7e9697dacc593d83e5e;p=e-mobility-charging-stations-simulator.git diff --git a/src/start.ts b/src/start.ts index 5aaeea9f..596f0275 100644 --- a/src/start.ts +++ b/src/start.ts @@ -1,50 +1,8 @@ -import Configuration from './utils/Configuration'; -import { StationWorkerData } from './types/Worker'; -import Utils from './utils/Utils'; -import WorkerFactory from './worker/WorkerFactory'; -import Wrk from './worker/Wrk'; +import Bootstrap from './charging-station/Bootstrap'; +import chalk from 'chalk'; -class Bootstrap { - static async start() { - try { - let numStationsTotal = 0; - const workerImplementation: Wrk = WorkerFactory.getWorkerImpl('./dist/charging-station/StationWorker.js'); - 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: StationWorkerData = { - index, - templateFile: stationURL.file - }; - await 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}${Utils.workerPoolInUse() ? `/${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); - } - } -} - -Bootstrap.start().catch( +Bootstrap.getInstance().start().catch( (error) => { - console.error(error); + console.error(chalk.red(error)); } );