X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2FBootstrap.ts;h=2c7f56fe4de94c1d7524e99957e68c1b8503c83c;hb=f23be6aad227f8942bb140d286585423fe84f60b;hp=4e848c1f29adcb9f88eb6f5a90ea0a6e93ea972a;hpb=a2e0e562686bd9c8d41087e15d10cb62a97a716f;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/Bootstrap.ts b/src/charging-station/Bootstrap.ts index 4e848c1f..2c7f56fe 100644 --- a/src/charging-station/Bootstrap.ts +++ b/src/charging-station/Bootstrap.ts @@ -2,7 +2,7 @@ import { EventEmitter } from 'node:events'; import { dirname, extname, join } from 'node:path'; -import { exit } from 'node:process'; +import process, { exit } from 'node:process'; import { fileURLToPath } from 'node:url'; import chalk from 'chalk'; @@ -56,7 +56,7 @@ export class Bootstrap extends EventEmitter { public numberOfChargingStations!: number; public numberOfChargingStationTemplates!: number; private workerImplementation: WorkerAbstract | null; - private readonly uiServer!: AbstractUIServer | null; + private readonly uiServer: AbstractUIServer | null; private readonly storage!: Storage; private numberOfStartedChargingStations!: number; private readonly version: string = version; @@ -69,7 +69,7 @@ export class Bootstrap extends EventEmitter { private constructor() { super(); for (const signal of ['SIGINT', 'SIGQUIT', 'SIGTERM']) { - process.on(signal, this.gracefulShutdown); + process.on(signal, this.gracefulShutdown.bind(this)); } // Enable unconditionally for now handleUnhandledRejection(); @@ -84,11 +84,9 @@ export class Bootstrap extends EventEmitter { dirname(fileURLToPath(import.meta.url)), `ChargingStationWorker${extname(fileURLToPath(import.meta.url))}`, ); - const uiServerConfiguration = Configuration.getConfigurationSection( - ConfigurationSection.uiServer, + this.uiServer = UIServerFactory.getUIServerImplementation( + Configuration.getConfigurationSection(ConfigurationSection.uiServer), ); - uiServerConfiguration.enabled === true && - (this.uiServer = UIServerFactory.getUIServerImplementation(uiServerConfiguration)); const performanceStorageConfiguration = Configuration.getConfigurationSection( ConfigurationSection.performanceStorage, @@ -99,7 +97,7 @@ export class Bootstrap extends EventEmitter { performanceStorageConfiguration.uri!, this.logPrefix(), )); - Configuration.configurationChangeCallback = async () => Bootstrap.getInstance().restart(); + Configuration.configurationChangeCallback = async () => Bootstrap.getInstance().restart(false); } public static getInstance(): Bootstrap { @@ -120,7 +118,8 @@ export class Bootstrap extends EventEmitter { this.initializeWorkerImplementation(workerConfiguration); await this.workerImplementation?.start(); await this.storage?.open(); - this.uiServer?.start(); + Configuration.getConfigurationSection(ConfigurationSection.uiServer) + .enabled === true && this.uiServer?.start(); // Start ChargingStation object instance in worker thread for (const stationTemplateUrl of Configuration.getStationTemplateUrls()!) { try { @@ -173,33 +172,20 @@ export class Bootstrap extends EventEmitter { } } - public async stop(): Promise { + public async stop(stopChargingStations = true): Promise { if (this.started === true) { if (this.stopping === false) { this.stopping = true; - await this.uiServer?.sendInternalRequest( - this.uiServer.buildProtocolRequest( - generateUUID(), - ProcedureName.STOP_CHARGING_STATION, - Constants.EMPTY_FROZEN_OBJECT, - ), - ); - await Promise.race([ - waitChargingStationEvents( - this, - ChargingStationWorkerMessageEvents.stopped, - this.numberOfChargingStations, - ), - new Promise((resolve) => { - setTimeout(() => { - const message = `Timeout ${formatDurationMilliSeconds( - Constants.STOP_SIMULATOR_TIMEOUT, - )} reached at stopping charging stations simulator`; - console.warn(chalk.yellow(message)); - resolve(message); - }, Constants.STOP_SIMULATOR_TIMEOUT); - }), - ]); + if (stopChargingStations === true) { + await this.uiServer?.sendInternalRequest( + this.uiServer.buildProtocolRequest( + generateUUID(), + ProcedureName.STOP_CHARGING_STATION, + Constants.EMPTY_FROZEN_OBJECT, + ), + ); + await this.waitChargingStationsStopped(); + } await this.workerImplementation?.stop(); this.workerImplementation = null; this.uiServer?.stop(); @@ -216,11 +202,30 @@ export class Bootstrap extends EventEmitter { } } - public async restart(): Promise { - await this.stop(); + public async restart(stopChargingStations?: boolean): Promise { + await this.stop(stopChargingStations); await this.start(); } + private async waitChargingStationsStopped(): Promise { + await Promise.race([ + waitChargingStationEvents( + this, + ChargingStationWorkerMessageEvents.stopped, + this.numberOfChargingStations, + ), + new Promise((resolve) => { + setTimeout(() => { + const message = `Timeout ${formatDurationMilliSeconds( + Constants.STOP_SIMULATOR_TIMEOUT, + )} reached at stopping charging stations simulator`; + console.warn(chalk.yellow(message)); + resolve(message); + }, Constants.STOP_SIMULATOR_TIMEOUT); + }), + ]); + } + private initializeWorkerImplementation(workerConfiguration: WorkerConfiguration): void { let elementsPerWorker: number | undefined; if (workerConfiguration?.elementsPerWorker === 'auto') { @@ -381,17 +386,25 @@ export class Bootstrap extends EventEmitter { }); } - private gracefulShutdown = (): void => { + private gracefulShutdown(): void { this.stop() .then(() => { console.info(`${chalk.green('Graceful shutdown')}`); - exit(exitCodes.succeeded); + // stop() asks for charging stations to stop by default + this.waitChargingStationsStopped() + .then(() => { + exit(exitCodes.succeeded); + }) + .catch((error) => { + console.error(chalk.red('Error while waiting for charging stations to stop: '), error); + exit(exitCodes.gracefulShutdownError); + }); }) .catch((error) => { console.error(chalk.red('Error while shutdowning charging stations simulator: '), error); exit(exitCodes.gracefulShutdownError); }); - }; + } private logPrefix = (): string => { return logPrefix(' Bootstrap |');