X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcharging-station%2FBootstrap.ts;h=74fb74b7cb6e195524f0440b3eb831e85f25804d;hb=4198ad5c76ad58e444c1dd2d3f81b5f8fd2846d4;hp=809c623ab51062db24812fefac5f780be76e63ab;hpb=9e23580d87c4e356f85a41eff450693f7d7738dd;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/Bootstrap.ts b/src/charging-station/Bootstrap.ts index 809c623a..74fb74b7 100644 --- a/src/charging-station/Bootstrap.ts +++ b/src/charging-station/Bootstrap.ts @@ -5,6 +5,8 @@ import { ChargingStationWorkerData, ChargingStationWorkerMessage, ChargingStatio import Configuration from '../utils/Configuration'; import { Storage } from '../performance/storage/Storage'; import { StorageFactory } from '../performance/storage/StorageFactory'; +import { UIServiceUtils } from './UIWebSocketServices/UIServiceUtils'; +import UIWebSocketServer from './UIWebSocketServer'; import Utils from '../utils/Utils'; import WorkerAbstract from '../worker/WorkerAbstract'; import WorkerFactory from '../worker/WorkerFactory'; @@ -15,9 +17,10 @@ import { version } from '../../package.json'; export default class Bootstrap { private static instance: Bootstrap | null = null; - private static workerImplementation: WorkerAbstract | null = null; - private static storage: Storage; - private static numberOfChargingStations: number; + private workerImplementation: WorkerAbstract | null = null; + private readonly uiWebSocketServer: UIWebSocketServer; + private readonly storage: Storage; + private numberOfChargingStations: number; private readonly version: string = version; private started: boolean; private readonly workerScript: string; @@ -26,7 +29,8 @@ export default class Bootstrap { this.started = false; this.workerScript = path.join(path.resolve(__dirname, '../'), 'charging-station', 'ChargingStationWorker.js'); this.initWorkerImplementation(); - Bootstrap.storage = StorageFactory.getStorage(Configuration.getPerformanceStorage().type, Configuration.getPerformanceStorage().URI, this.logPrefix()); + this.uiWebSocketServer = new UIWebSocketServer({ port: 80, handleProtocols: UIServiceUtils.handleProtocols }); + this.storage = StorageFactory.getStorage(Configuration.getPerformanceStorage().type, Configuration.getPerformanceStorage().URI, this.logPrefix()); Configuration.setConfigurationChangeCallback(async () => Bootstrap.getInstance().restart()); } @@ -40,9 +44,10 @@ export default class Bootstrap { public async start(): Promise { if (isMainThread && !this.started) { try { - Bootstrap.numberOfChargingStations = 0; - await Bootstrap.storage.open(); - await Bootstrap.workerImplementation.start(); + this.numberOfChargingStations = 0; + await this.storage.open(); + await this.workerImplementation.start(); + this.uiWebSocketServer.start(); // Start ChargingStation object in worker thread if (Configuration.getStationTemplateURLs()) { for (const stationURL of Configuration.getStationTemplateURLs()) { @@ -53,8 +58,8 @@ export default class Bootstrap { index, templateFile: path.join(path.resolve(__dirname, '../'), 'assets', 'station-templates', path.basename(stationURL.file)) }; - await Bootstrap.workerImplementation.addElement(workerData); - Bootstrap.numberOfChargingStations++; + await this.workerImplementation.addElement(workerData); + this.numberOfChargingStations++; } } catch (error) { console.error(chalk.red('Charging station start with template file ' + stationURL.file + ' error '), error); @@ -63,10 +68,10 @@ export default class Bootstrap { } else { console.warn(chalk.yellow('No stationTemplateURLs defined in configuration, exiting')); } - if (Bootstrap.numberOfChargingStations === 0) { + if (this.numberOfChargingStations === 0) { console.warn(chalk.yellow('No charging station template enabled in configuration, exiting')); } else { - console.log(chalk.green(`Charging stations simulator ${this.version} started with ${Bootstrap.numberOfChargingStations.toString()} charging station(s) and ${Utils.workerDynamicPoolInUse() ? `${Configuration.getWorkerPoolMinSize().toString()}/` : ''}${Bootstrap.workerImplementation.size}${Utils.workerPoolInUse() ? `/${Configuration.getWorkerPoolMaxSize().toString()}` : ''} worker(s) concurrently running in '${Configuration.getWorkerProcess()}' mode${Bootstrap.workerImplementation.maxElementsPerWorker ? ` (${Bootstrap.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) { @@ -79,8 +84,9 @@ export default class Bootstrap { public async stop(): Promise { if (isMainThread && this.started) { - await Bootstrap.workerImplementation.stop(); - await Bootstrap.storage.close(); + await this.workerImplementation.stop(); + this.uiWebSocketServer.stop(); + await this.storage.close(); } else { console.error(chalk.red('Trying to stop the charging stations simulator while not started')); } @@ -94,7 +100,7 @@ export default class Bootstrap { } private initWorkerImplementation(): void { - Bootstrap.workerImplementation = WorkerFactory.getWorkerImplementation(this.workerScript, Configuration.getWorkerProcess(), + this.workerImplementation = WorkerFactory.getWorkerImplementation(this.workerScript, Configuration.getWorkerProcess(), { startDelay: Configuration.getWorkerStartDelay(), poolMaxSize: Configuration.getWorkerPoolMaxSize(), @@ -104,8 +110,12 @@ export default class Bootstrap { workerChoiceStrategy: Configuration.getWorkerPoolStrategy() }, messageHandler: async (msg: ChargingStationWorkerMessage) => { - if (msg.id === ChargingStationWorkerMessageEvents.PERFORMANCE_STATISTICS) { - await Bootstrap.storage.storePerformanceStatistics(msg.data); + if (msg.id === ChargingStationWorkerMessageEvents.STARTED) { + this.uiWebSocketServer.uiService.chargingStations.add(msg.data.id); + } else if (msg.id === ChargingStationWorkerMessageEvents.STOPPED) { + this.uiWebSocketServer.uiService.chargingStations.delete(msg.data.id); + } else if (msg.id === ChargingStationWorkerMessageEvents.PERFORMANCE_STATISTICS) { + await this.storage.storePerformanceStatistics(msg.data); } } });