X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2FBootstrap.ts;h=7113500740fa30d57ad5915ad12ef91483fe4f8c;hb=3d25cc86c52089ae31a24dae52385c315595c976;hp=ce5286acd70de97586b09839d9fb4b45492eae0a;hpb=1f5df42ad17d09d3a1f53f6618eba325a403d7ad;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/Bootstrap.ts b/src/charging-station/Bootstrap.ts index ce5286ac..71135007 100644 --- a/src/charging-station/Bootstrap.ts +++ b/src/charging-station/Bootstrap.ts @@ -1,8 +1,14 @@ // Partial Copyright Jerome Benoit. 2021. All Rights Reserved. -import { ChargingStationWorkerData, ChargingStationWorkerMessage, ChargingStationWorkerMessageEvents } from '../types/ChargingStationWorker'; +import { + ChargingStationWorkerData, + ChargingStationWorkerMessage, + ChargingStationWorkerMessageEvents, +} from '../types/ChargingStationWorker'; import Configuration from '../utils/Configuration'; +import { StationTemplateUrl } from '../types/ConfigurationData'; +import Statistics from '../types/Statistics'; import { Storage } from '../performance/storage/Storage'; import { StorageFactory } from '../performance/storage/StorageFactory'; import { UIServiceUtils } from './ui-websocket-services/UIServiceUtils'; @@ -17,7 +23,7 @@ import { version } from '../../package.json'; export default class Bootstrap { private static instance: Bootstrap | null = null; - private workerImplementation: WorkerAbstract | null = null; + private workerImplementation: WorkerAbstract | null = null; private readonly uiWebSocketServer!: UIWebSocketServer; private readonly storage!: Storage; private numberOfChargingStations: number; @@ -27,16 +33,23 @@ export default class Bootstrap { private constructor() { this.started = false; - this.workerScript = path.join(path.resolve(__dirname, '../'), 'charging-station', 'ChargingStationWorker.js'); + this.workerScript = path.join( + path.resolve(__dirname, '../'), + 'charging-station', + 'ChargingStationWorker.js' + ); this.initWorkerImplementation(); - Configuration.getUIWebSocketServer().enabled && (this.uiWebSocketServer = new UIWebSocketServer({ - ...Configuration.getUIWebSocketServer().options, handleProtocols: UIServiceUtils.handleProtocols - })); - Configuration.getPerformanceStorage().enabled && (this.storage = StorageFactory.getStorage( - Configuration.getPerformanceStorage().type, - Configuration.getPerformanceStorage().uri, - this.logPrefix() - )); + Configuration.getUIWebSocketServer().enabled && + (this.uiWebSocketServer = new UIWebSocketServer({ + ...Configuration.getUIWebSocketServer().options, + handleProtocols: UIServiceUtils.handleProtocols, + })); + Configuration.getPerformanceStorage().enabled && + (this.storage = StorageFactory.getStorage( + Configuration.getPerformanceStorage().type, + Configuration.getPerformanceStorage().uri, + this.logPrefix() + )); Configuration.setConfigurationChangeCallback(async () => Bootstrap.getInstance().restart()); } @@ -61,24 +74,44 @@ export default class Bootstrap { try { const nbStations = stationTemplateUrl.numberOfStations ?? 0; for (let index = 1; index <= nbStations; index++) { - const workerData: ChargingStationWorkerData = { - index, - templateFile: path.join(path.resolve(__dirname, '../'), 'assets', 'station-templates', path.basename(stationTemplateUrl.file)) - }; - await this.workerImplementation.addElement(workerData); - this.numberOfChargingStations++; + await this.startChargingStation(index, stationTemplateUrl); } } catch (error) { - console.error(chalk.red('Charging station start with template file ' + stationTemplateUrl.file + ' error '), error); + console.error( + chalk.red( + 'Error at starting charging station with template file ' + + stationTemplateUrl.file + + ': ' + ), + error + ); } } } else { - console.warn(chalk.yellow('No stationTemplateUrls defined in configuration, exiting')); + console.warn(chalk.yellow("No 'stationTemplateUrls' defined in configuration, exiting")); } if (this.numberOfChargingStations === 0) { - console.warn(chalk.yellow('No charging station template enabled in configuration, exiting')); + console.warn( + chalk.yellow('No charging station template enabled in configuration, exiting') + ); } else { - console.log(chalk.green(`Charging stations simulator ${this.version} started with ${this.numberOfChargingStations.toString()} charging station(s) and ${Utils.workerDynamicPoolInUse() ? `${Configuration.getWorkerPoolMinSize().toString()}/` : ''}${this.workerImplementation.size}${Utils.workerPoolInUse() ? `/${Configuration.getWorkerPoolMaxSize().toString()}` : ''} worker(s) concurrently running in '${Configuration.getWorkerProcess()}' mode${this.workerImplementation.maxElementsPerWorker ? ` (${this.workerImplementation.maxElementsPerWorker} charging station(s) per worker)` : ''}`)); + console.log( + chalk.green( + `Charging stations simulator ${ + this.version + } started with ${this.numberOfChargingStations.toString()} charging station(s) and ${ + Utils.workerDynamicPoolInUse() + ? `${Configuration.getWorkerPoolMinSize().toString()}/` + : '' + }${this.workerImplementation.size}${ + Utils.workerPoolInUse() ? `/${Configuration.getWorkerPoolMaxSize().toString()}` : '' + } worker(s) concurrently running in '${Configuration.getWorkerProcess()}' mode${ + this.workerImplementation.maxElementsPerWorker + ? ` (${this.workerImplementation.maxElementsPerWorker} charging station(s) per worker)` + : '' + }` + ) + ); } this.started = true; } catch (error) { @@ -107,25 +140,46 @@ export default class Bootstrap { } private initWorkerImplementation(): void { - this.workerImplementation = WorkerFactory.getWorkerImplementation(this.workerScript, Configuration.getWorkerProcess(), + this.workerImplementation = WorkerFactory.getWorkerImplementation( + this.workerScript, + Configuration.getWorkerProcess(), { - startDelay: Configuration.getWorkerStartDelay(), + workerStartDelay: Configuration.getWorkerStartDelay(), + elementStartDelay: Configuration.getElementStartDelay(), poolMaxSize: Configuration.getWorkerPoolMaxSize(), poolMinSize: Configuration.getWorkerPoolMinSize(), elementsPerWorker: Configuration.getChargingStationsPerWorker(), poolOptions: { - workerChoiceStrategy: Configuration.getWorkerPoolStrategy() + workerChoiceStrategy: Configuration.getWorkerPoolStrategy(), }, messageHandler: async (msg: ChargingStationWorkerMessage) => { if (msg.id === ChargingStationWorkerMessageEvents.STARTED) { - this.uiWebSocketServer.chargingStations.add(msg.data.id); + this.uiWebSocketServer.chargingStations.add(msg.data.id as string); } else if (msg.id === ChargingStationWorkerMessageEvents.STOPPED) { - this.uiWebSocketServer.chargingStations.delete(msg.data.id); + this.uiWebSocketServer.chargingStations.delete(msg.data.id as string); } else if (msg.id === ChargingStationWorkerMessageEvents.PERFORMANCE_STATISTICS) { - await this.storage.storePerformanceStatistics(msg.data); + await this.storage.storePerformanceStatistics(msg.data as unknown as Statistics); } - } - }); + }, + } + ); + } + + private async startChargingStation( + index: number, + stationTemplateUrl: StationTemplateUrl + ): Promise { + const workerData: ChargingStationWorkerData = { + index, + templateFile: path.join( + path.resolve(__dirname, '../'), + 'assets', + 'station-templates', + path.basename(stationTemplateUrl.file) + ), + }; + await this.workerImplementation.addElement(workerData); + this.numberOfChargingStations++; } private logPrefix(): string {