Add WorkerEvents enum.
[e-mobility-charging-stations-simulator.git] / src / start.ts
index 1e0916c23bdbc80b7e46c9f5cc86c126f84d5e57..90eb5161fc4c85b3c3a6330e6398b7d82102a2ef 100644 (file)
@@ -1,52 +1,30 @@
 import Configuration from './utils/Configuration';
-import Constants from './utils/Constants';
-import Utils from './utils/Utils';
 import WorkerData from './types/WorkerData';
-import Wrk from './charging-station/Worker';
+import WorkerFactory from './worker/WorkerFactory';
+import Wrk from './worker/Wrk';
 
 class Bootstrap {
-  static async start() {
+  static start() {
     try {
       let numStationsTotal = 0;
-      let numConcurrentWorkers = 0;
-      const chargingStationsPerWorker = Configuration.getChargingStationsPerWorker();
-      let chargingStationsPerWorkerCounter = 0;
-      let worker: Wrk;
-      // Start each ChargingStation object in a worker thread
+      const workerImplementation: Wrk = WorkerFactory.getWorkerImpl('./dist/charging-station/StationWorker.js');
+      void workerImplementation.start();
+      // Start ChargingStation object in worker thread
       if (Configuration.getStationTemplateURLs()) {
         for (const stationURL of Configuration.getStationTemplateURLs()) {
           try {
             const nbStations = stationURL.numberOfStations ? stationURL.numberOfStations : 0;
             for (let index = 1; index <= nbStations; index++) {
-              const workerData = {
+              const workerData: WorkerData = {
                 index,
                 templateFile: stationURL.file
-              } as WorkerData;
-              if (Configuration.useWorkerPool()) {
-                worker = new Wrk('./dist/charging-station/StationWorker.js', workerData);
-                worker.start().catch(() => { });
-                numConcurrentWorkers = worker.getPoolSize();
-                numStationsTotal = numConcurrentWorkers;
-                await Utils.sleep(Constants.START_WORKER_DELAY);
-              } else if (!Configuration.useWorkerPool() && (chargingStationsPerWorkerCounter === 0 || chargingStationsPerWorkerCounter === chargingStationsPerWorker)) {
-                // Start new Wrk with one charging station
-                worker = new Wrk('./dist/charging-station/StationWorker.js', workerData);
-                worker.start().catch(() => { });
-                numConcurrentWorkers++;
-                numStationsTotal++;
-                chargingStationsPerWorkerCounter = 1;
-                // Start Wrk sequentially to optimize memory at start time
-                await Utils.sleep(Constants.START_WORKER_DELAY);
-              } else if (!Configuration.useWorkerPool()) {
-                // Add charging station to existing Wrk
-                worker.addWorkerElement(workerData);
-                chargingStationsPerWorkerCounter++;
-                numStationsTotal++;
-              }
+              };
+              void workerImplementation.addElement(workerData);
+              numStationsTotal++;
             }
           } catch (error) {
             // eslint-disable-next-line no-console
-            console.log('Charging station start with template file ' + stationURL.file + ' error ' + JSON.stringify(error, null, ' '));
+            console.error('Charging station start with template file ' + stationURL.file + ' error ', error);
           }
         }
       } else {
@@ -55,21 +33,13 @@ class Bootstrap {
       if (numStationsTotal === 0) {
         console.log('No charging station template enabled in configuration, exiting');
       } else {
-        if (Configuration.useWorkerPool()) {
-          console.log('Charging station simulator started with ' + numStationsTotal.toString() + ' charging station(s) and ' + numConcurrentWorkers.toString() + '/' + Configuration.getWorkerMaxPoolSize() + ' worker(s) concurrently running');
-        } else {
-          console.log('Charging station simulator started with ' + numStationsTotal.toString() + ' charging station(s) and ' + numConcurrentWorkers.toString() + ' worker(s) concurrently running');
-        }
+        console.log(`Charging station simulator started with ${numStationsTotal.toString()} charging station(s) and ${workerImplementation.size}${Configuration.useWorkerPool() ? `/${Configuration.getWorkerPoolMaxSize().toString()}` : ''} worker(s) concurrently running (${workerImplementation.maxElementsPerWorker} charging station(s) per worker)`);
       }
     } catch (error) {
       // eslint-disable-next-line no-console
-      console.log('Bootstrap start error ' + JSON.stringify(error, null, ' '));
+      console.error('Bootstrap start error ', error);
     }
   }
 }
 
-Bootstrap.start().catch(
-  (error) => {
-    console.error(error);
-  }
-);
+Bootstrap.start();