Vue UI + UI server
[e-mobility-charging-stations-simulator.git] / src / charging-station / Bootstrap.ts
index 0fa2c88d35c868650e76fa059a86f75d96c54b7e..f881c19bfb0c77436dddf8aa39e37bfd3f954fbd 100644 (file)
@@ -7,9 +7,11 @@ import { isMainThread } from 'worker_threads';
 import chalk from 'chalk';
 
 import { version } from '../../package.json';
+import BaseError from '../exception/BaseError';
 import { Storage } from '../performance/storage/Storage';
 import { StorageFactory } from '../performance/storage/StorageFactory';
 import {
+  ChargingStationData,
   ChargingStationWorkerData,
   ChargingStationWorkerMessage,
   ChargingStationWorkerMessageEvents,
@@ -18,6 +20,7 @@ import { StationTemplateUrl } from '../types/ConfigurationData';
 import Statistics from '../types/Statistics';
 import { ApplicationProtocol } from '../types/UIProtocol';
 import Configuration from '../utils/Configuration';
+import logger from '../utils/Logger';
 import Utils from '../utils/Utils';
 import WorkerAbstract from '../worker/WorkerAbstract';
 import WorkerFactory from '../worker/WorkerFactory';
@@ -26,6 +29,8 @@ import { AbstractUIServer } from './ui-server/AbstractUIServer';
 import { UIServiceUtils } from './ui-server/ui-services/UIServiceUtils';
 import UIServerFactory from './ui-server/UIServerFactory';
 
+const moduleName = 'Bootstrap';
+
 export default class Bootstrap {
   private static instance: Bootstrap | null = null;
   private workerImplementation: WorkerAbstract<ChargingStationWorkerData> | null = null;
@@ -103,8 +108,9 @@ export default class Bootstrap {
           console.warn(
             chalk.yellow('No charging station template enabled in configuration, exiting')
           );
+          process.exit();
         } else {
-          console.log(
+          console.info(
             chalk.green(
               `Charging stations simulator ${
                 this.version
@@ -165,19 +171,70 @@ export default class Bootstrap {
           poolOptions: {
             workerChoiceStrategy: Configuration.getWorker().poolStrategy,
           },
-          messageHandler: async (msg: ChargingStationWorkerMessage) => {
-            if (msg.id === ChargingStationWorkerMessageEvents.STARTED) {
-              this.uiServer.chargingStations.add(msg.data.id as string);
-            } else if (msg.id === ChargingStationWorkerMessageEvents.STOPPED) {
-              this.uiServer.chargingStations.delete(msg.data.id as string);
-            } else if (msg.id === ChargingStationWorkerMessageEvents.PERFORMANCE_STATISTICS) {
-              await this.storage.storePerformanceStatistics(msg.data as unknown as Statistics);
-            }
-          },
+          messageHandler: this.messageHandler.bind(this) as (
+            msg: ChargingStationWorkerMessage<ChargingStationData | Statistics>
+          ) => void,
         }
       ));
   }
 
+  private messageHandler(
+    msg: ChargingStationWorkerMessage<ChargingStationData | Statistics>
+  ): void {
+    // logger.debug(
+    //   `${this.logPrefix()} ${moduleName}.messageHandler: Worker channel message received: ${JSON.stringify(
+    //     msg,
+    //     null,
+    //     2
+    //   )}`
+    // );
+    try {
+      switch (msg.id) {
+        case ChargingStationWorkerMessageEvents.STARTED:
+          this.workerEventStarted(msg.data as ChargingStationData);
+          break;
+        case ChargingStationWorkerMessageEvents.STOPPED:
+          this.workerEventStopped(msg.data as ChargingStationData);
+          break;
+        case ChargingStationWorkerMessageEvents.UPDATED:
+          this.workerEventUpdated(msg.data as ChargingStationData);
+          break;
+        case ChargingStationWorkerMessageEvents.PERFORMANCE_STATISTICS:
+          this.workerEventPerformanceStatistics(msg.data as Statistics);
+          break;
+        default:
+          throw new BaseError(
+            `Unknown event type: '${msg.id}' for data: ${JSON.stringify(msg.data, null, 2)}`
+          );
+      }
+    } catch (error) {
+      logger.error(
+        `${this.logPrefix()} ${moduleName}.messageHandler: Error occurred while handling '${
+          msg.id
+        }' event:`,
+        error
+      );
+    }
+  }
+
+  private workerEventStarted(data: ChargingStationData) {
+    this.uiServer?.chargingStations.set(data.hashId, data);
+    this.started && ++this.numberOfChargingStations;
+  }
+
+  private workerEventStopped(data: ChargingStationData) {
+    this.uiServer?.chargingStations.delete(data.hashId);
+    this.started && --this.numberOfChargingStations;
+  }
+
+  private workerEventUpdated(data: ChargingStationData) {
+    this.uiServer?.chargingStations.set(data.hashId, data);
+  }
+
+  private workerEventPerformanceStatistics = (data: Statistics) => {
+    this.storage.storePerformanceStatistics(data) as void;
+  };
+
   private initialize() {
     this.numberOfChargingStations = 0;
     this.numberOfChargingStationTemplates = 0;