X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2FBootstrap.ts;h=6bcc8511f487fd36db4289aeb3d82dbaa46b2e34;hb=2a370053f45f2d58e90ab7b292294c521a262ca1;hp=b018df60949332198edd94128c10c53505f98cd9;hpb=07f350040f34e6727c548bc645e9982c189cd4ef;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/Bootstrap.ts b/src/charging-station/Bootstrap.ts index b018df60..6bcc8511 100644 --- a/src/charging-station/Bootstrap.ts +++ b/src/charging-station/Bootstrap.ts @@ -1,4 +1,4 @@ -import { ChargingStationWorkerData, WorkerEvents, WorkerMessage } from '../types/Worker'; +import { ChargingStationWorkerData, WorkerMessage, WorkerMessageEvents } from '../types/Worker'; import Configuration from '../utils/Configuration'; import { Storage } from '../utils/performance-storage/Storage'; @@ -38,6 +38,7 @@ export default class Bootstrap { if (isMainThread && !this.started) { try { let numStationsTotal = 0; + await Bootstrap.storage.open(); await Bootstrap.workerImplementation.start(); // Start ChargingStation object in worker thread if (Configuration.getStationTemplateURLs()) { @@ -74,6 +75,7 @@ export default class Bootstrap { public async stop(): Promise { if (isMainThread && this.started) { await Bootstrap.workerImplementation.stop(); + await Bootstrap.storage.close(); } this.started = false; } @@ -84,7 +86,7 @@ export default class Bootstrap { await this.start(); } - private initWorkerImplementation() { + private initWorkerImplementation(): void { Bootstrap.workerImplementation = WorkerFactory.getWorkerImplementation(this.workerScript, Configuration.getWorkerProcess(), { startDelay: Configuration.getWorkerStartDelay(), @@ -94,17 +96,15 @@ export default class Bootstrap { poolOptions: { workerChoiceStrategy: Configuration.getWorkerPoolStrategy() } - }, (msg: WorkerMessage) => { - if (msg.id === WorkerEvents.PERFORMANCE_STATISTICS) { - Bootstrap.storage.storePerformanceStatistics(msg.data); + // eslint-disable-next-line @typescript-eslint/no-misused-promises + }, async (msg: WorkerMessage) => { + if (msg.id === WorkerMessageEvents.PERFORMANCE_STATISTICS) { + await Bootstrap.storage.storePerformanceStatistics(msg.data); } }); - if (!Bootstrap.workerImplementation) { - throw new Error('Worker implementation not found'); - } } private logPrefix(): string { - return Utils.logPrefix(' Bootstrap'); + return Utils.logPrefix(' Bootstrap |'); } }