Use object factory design pattern for code handling workers.
[e-mobility-charging-stations-simulator.git] / src / start.ts
index 591ef96f0b6d186ede5a40053b7d1a466f3611a7..aa3cfdeff96af62b59895cc9cefab0dbed60fa4f 100644 (file)
@@ -1,23 +1,15 @@
 import Configuration from './utils/Configuration';
-import Constants from './utils/Constants';
-import Utils from './utils/Utils';
 import WorkerData from './types/WorkerData';
-import WorkerGroup from './worker/WorkerGroup';
-import WorkerPool from './worker/WorkerPool';
+import WorkerFactory from './worker/WorkerFactory';
+import Wrk from './worker/Worker';
 
 class Bootstrap {
-  static async start() {
+  static start() {
     try {
       let numStationsTotal = 0;
-      let numConcurrentWorkers = 0;
-      const chargingStationsPerWorker = Configuration.getChargingStationsPerWorker();
-      let chargingStationsPerWorkerCounter = 0;
-      let workerImplementation: WorkerGroup | WorkerPool;
-      if (Configuration.useWorkerPool()) {
-        workerImplementation = new WorkerPool('./dist/charging-station/StationWorker.js');
-        void workerImplementation.start();
-      }
-      // 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 {
@@ -27,32 +19,12 @@ class Bootstrap {
                 index,
                 templateFile: stationURL.file
               };
-              if (Configuration.useWorkerPool()) {
-                void workerImplementation.addElement(workerData);
-                numConcurrentWorkers = workerImplementation.size;
-                // Start worker sequentially to optimize memory at start time
-                await Utils.sleep(Constants.START_WORKER_DELAY);
-              } else {
-                // eslint-disable-next-line no-lonely-if
-                if (chargingStationsPerWorkerCounter === 0 || chargingStationsPerWorkerCounter >= chargingStationsPerWorker) {
-                  // Start new WorkerGroup with one charging station
-                  workerImplementation = new WorkerGroup('./dist/charging-station/StationWorker.js', workerData, chargingStationsPerWorker);
-                  void workerImplementation.start();
-                  numConcurrentWorkers++;
-                  chargingStationsPerWorkerCounter = 1;
-                  // Start worker sequentially to optimize memory at start time
-                  await Utils.sleep(Constants.START_WORKER_DELAY);
-                } else {
-                  // Add charging station to existing WorkerGroup
-                  void workerImplementation.addElement(workerData);
-                  chargingStationsPerWorkerCounter++;
-                }
-              }
+              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 {
@@ -60,20 +32,14 @@ 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.getWorkerPoolMaxSize().toString()} worker(s) concurrently running`);
       } else {
-        console.log(`Charging station simulator started with ${numStationsTotal.toString()} charging station(s) and ${numConcurrentWorkers.toString()} worker(s) concurrently running (${chargingStationsPerWorker} charging station(s) per worker)`);
+        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();