X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fstart.ts;h=af569c53e3e46f2e12c694c221b6e1620955111c;hb=42b8cf5cdca8eaab1e7442f7c92c2a5ed97434f6;hp=591ef96f0b6d186ede5a40053b7d1a466f3611a7;hpb=73705988e2448ac96150bb851fa36d059ee40c17;p=e-mobility-charging-stations-simulator.git diff --git a/src/start.ts b/src/start.ts index 591ef96f..af569c53 100644 --- a/src/start.ts +++ b/src/start.ts @@ -1,79 +1,11 @@ -import Configuration from './utils/Configuration'; -import Constants from './utils/Constants'; -import Utils from './utils/Utils'; -import WorkerData from './types/WorkerData'; -import WorkerGroup from './worker/WorkerGroup'; -import WorkerPool from './worker/WorkerPool'; +// Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved. -class Bootstrap { - static async start() { - try { - let numStationsTotal = 0; - let numConcurrentWorkers = 0; - const chargingStationsPerWorker = Configuration.getChargingStationsPerWorker(); - let chargingStationsPerWorkerCounter = 0; - let workerImplementation: WorkerGroup | WorkerPool; - if (Configuration.useWorkerPool()) { - workerImplementation = new WorkerPool('./dist/charging-station/StationWorker.js'); - void workerImplementation.start(); - } - // Start each ChargingStation object in a 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 - }; - if (Configuration.useWorkerPool()) { - void workerImplementation.addElement(workerData); - numConcurrentWorkers = workerImplementation.size; - // Start worker sequentially to optimize memory at start time - await Utils.sleep(Constants.START_WORKER_DELAY); - } else { - // eslint-disable-next-line no-lonely-if - if (chargingStationsPerWorkerCounter === 0 || chargingStationsPerWorkerCounter >= chargingStationsPerWorker) { - // Start new WorkerGroup with one charging station - workerImplementation = new WorkerGroup('./dist/charging-station/StationWorker.js', workerData, chargingStationsPerWorker); - void workerImplementation.start(); - numConcurrentWorkers++; - chargingStationsPerWorkerCounter = 1; - // Start worker sequentially to optimize memory at start time - await Utils.sleep(Constants.START_WORKER_DELAY); - } else { - // Add charging station to existing WorkerGroup - void workerImplementation.addElement(workerData); - chargingStationsPerWorkerCounter++; - } - } - numStationsTotal++; - } - } 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 if (Configuration.useWorkerPool()) { - console.log(`Charging station simulator started with ${numStationsTotal.toString()} charging station(s) and ${numConcurrentWorkers.toString()}/${Configuration.getWorkerPoolMaxSize().toString()} worker(s) concurrently running`); - } else { - console.log(`Charging station simulator started with ${numStationsTotal.toString()} charging station(s) and ${numConcurrentWorkers.toString()} worker(s) concurrently running (${chargingStationsPerWorker} charging station(s) per worker)`); - } - } 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().catch( - (error) => { - console.error(error); - } -); +try { + await Bootstrap.getInstance().start(); +} catch (error) { + console.error(chalk.red('Startup error: '), error); +}