1 // Partial Copyright Jerome Benoit. 2021. All Rights Reserved.
3 import path from
'path';
4 import { fileURLToPath
} from
'url';
5 import { isMainThread
} from
'worker_threads';
7 import chalk from
'chalk';
9 import { version
} from
'../../package.json';
10 import BaseError from
'../exception/BaseError';
11 import type { Storage
} from
'../performance/storage/Storage';
12 import { StorageFactory
} from
'../performance/storage/StorageFactory';
15 ChargingStationWorkerData
,
16 ChargingStationWorkerMessage
,
17 ChargingStationWorkerMessageData
,
18 ChargingStationWorkerMessageEvents
,
19 } from
'../types/ChargingStationWorker';
20 import type { StationTemplateUrl
} from
'../types/ConfigurationData';
21 import type Statistics from
'../types/Statistics';
22 import Configuration from
'../utils/Configuration';
23 import logger from
'../utils/Logger';
24 import Utils from
'../utils/Utils';
25 import type WorkerAbstract from
'../worker/WorkerAbstract';
26 import WorkerFactory from
'../worker/WorkerFactory';
27 import { ChargingStationUtils
} from
'./ChargingStationUtils';
28 import type { AbstractUIServer
} from
'./ui-server/AbstractUIServer';
29 import UIServerFactory from
'./ui-server/UIServerFactory';
31 const moduleName
= 'Bootstrap';
33 const missingChargingStationsConfigurationExitCode
= 1;
34 const noChargingStationTemplatesExitCode
= 2;
36 export class Bootstrap
{
37 private static instance
: Bootstrap
| null = null;
38 private workerImplementation
: WorkerAbstract
<ChargingStationWorkerData
> | null;
39 private readonly uiServer
!: AbstractUIServer
;
40 private readonly storage
!: Storage
;
41 private numberOfChargingStationTemplates
!: number;
42 private numberOfChargingStations
!: number;
43 private numberOfStartedChargingStations
!: number;
44 private readonly version
: string = version
;
45 private started
: boolean;
46 private readonly workerScript
: string;
48 private constructor() {
50 this.workerImplementation
= null;
51 this.workerScript
= path
.join(
52 path
.resolve(path
.dirname(fileURLToPath(import.meta
.url
)), '../'),
54 'ChargingStationWorker' + path
.extname(fileURLToPath(import.meta
.url
))
57 Configuration
.getUIServer().enabled
=== true &&
58 (this.uiServer
= UIServerFactory
.getUIServerImplementation(Configuration
.getUIServer()));
59 Configuration
.getPerformanceStorage().enabled
=== true &&
60 (this.storage
= StorageFactory
.getStorage(
61 Configuration
.getPerformanceStorage().type,
62 Configuration
.getPerformanceStorage().uri
,
65 Configuration
.setConfigurationChangeCallback(async () => Bootstrap
.getInstance().restart());
68 public static getInstance(): Bootstrap
{
69 if (Bootstrap
.instance
=== null) {
70 Bootstrap
.instance
= new Bootstrap();
72 return Bootstrap
.instance
;
75 public async start(): Promise
<void> {
76 if (isMainThread
&& this.started
=== false) {
79 await this.storage
?.open();
80 await this.workerImplementation
.start();
81 this.uiServer
?.start();
82 const stationTemplateUrls
= Configuration
.getStationTemplateUrls();
83 this.numberOfChargingStationTemplates
= stationTemplateUrls
.length
;
84 // Start ChargingStation object in worker thread
85 if (!Utils
.isEmptyArray(stationTemplateUrls
)) {
86 for (const stationTemplateUrl
of stationTemplateUrls
) {
88 const nbStations
= stationTemplateUrl
.numberOfStations
?? 0;
89 for (let index
= 1; index
<= nbStations
; index
++) {
90 await this.startChargingStation(index
, stationTemplateUrl
);
95 'Error at starting charging station with template file ' +
96 stationTemplateUrl
.file
+
105 chalk
.yellow("'stationTemplateUrls' not defined or empty in configuration, exiting")
107 process
.exit(missingChargingStationsConfigurationExitCode
);
109 if (this.numberOfChargingStations
=== 0) {
111 chalk
.yellow('No charging station template enabled in configuration, exiting')
113 process
.exit(noChargingStationTemplatesExitCode
);
117 `Charging stations simulator ${
119 } started with ${this.numberOfChargingStations.toString()} charging station(s) from ${this.numberOfChargingStationTemplates.toString()} configured charging station template(s) and ${
120 ChargingStationUtils.workerDynamicPoolInUse()
121 ? `${Configuration.getWorker().poolMinSize.toString()}
/`
123 }${this.workerImplementation.size}${
124 ChargingStationUtils.workerPoolInUse()
125 ? `/${Configuration.getWorker().poolMaxSize.toString()}
`
127 } worker(s) concurrently running in '${Configuration.getWorker().processType}' mode${
128 this.workerImplementation.maxElementsPerWorker
129 ? ` (${this.workerImplementation.maxElementsPerWorker} charging
station(s
) per worker
)`
137 console
.error(chalk
.red('Bootstrap start error: '), error
);
140 console
.error(chalk
.red('Cannot start an already started charging stations simulator'));
144 public async stop(): Promise
<void> {
145 if (isMainThread
&& this.started
=== true) {
146 await this.workerImplementation
.stop();
147 this.workerImplementation
= null;
148 this.uiServer
?.stop();
149 await this.storage
?.close();
150 this.started
= false;
152 console
.error(chalk
.red('Cannot stop a not started charging stations simulator'));
156 public async restart(): Promise
<void> {
162 private initializeWorkerImplementation(): void {
163 this.workerImplementation
=== null &&
164 (this.workerImplementation
= WorkerFactory
.getWorkerImplementation
<ChargingStationWorkerData
>(
166 Configuration
.getWorker().processType
,
168 workerStartDelay
: Configuration
.getWorker().startDelay
,
169 elementStartDelay
: Configuration
.getWorker().elementStartDelay
,
170 poolMaxSize
: Configuration
.getWorker().poolMaxSize
,
171 poolMinSize
: Configuration
.getWorker().poolMinSize
,
172 elementsPerWorker
: Configuration
.getWorker().elementsPerWorker
,
174 workerChoiceStrategy
: Configuration
.getWorker().poolStrategy
,
176 messageHandler
: this.messageHandler
.bind(this) as (
177 msg
: ChargingStationWorkerMessage
<ChargingStationWorkerMessageData
>
183 private messageHandler(
184 msg
: ChargingStationWorkerMessage
<ChargingStationWorkerMessageData
>
187 // `${this.logPrefix()} ${moduleName}.messageHandler: Worker channel message received: ${JSON.stringify(
195 case ChargingStationWorkerMessageEvents
.STARTED
:
196 this.workerEventStarted(msg
.data
as ChargingStationData
);
198 case ChargingStationWorkerMessageEvents
.STOPPED
:
199 this.workerEventStopped(msg
.data
as ChargingStationData
);
201 case ChargingStationWorkerMessageEvents
.UPDATED
:
202 this.workerEventUpdated(msg
.data
as ChargingStationData
);
204 case ChargingStationWorkerMessageEvents
.PERFORMANCE_STATISTICS
:
205 this.workerEventPerformanceStatistics(msg
.data
as Statistics
);
209 `Unknown event type: '${msg.id}' for data: ${JSON.stringify(msg.data, null, 2)}`
214 `${this.logPrefix()} ${moduleName}.messageHandler: Error occurred while handling '${
222 private workerEventStarted
= (data
: ChargingStationData
) => {
223 this.uiServer
?.chargingStations
.set(data
.stationInfo
.hashId
, data
);
224 ++this.numberOfStartedChargingStations
;
227 private workerEventStopped
= (data
: ChargingStationData
) => {
228 this.uiServer
?.chargingStations
.set(data
.stationInfo
.hashId
, data
);
229 --this.numberOfStartedChargingStations
;
232 private workerEventUpdated
= (data
: ChargingStationData
) => {
233 this.uiServer
?.chargingStations
.set(data
.stationInfo
.hashId
, data
);
236 private workerEventPerformanceStatistics
= (data
: Statistics
) => {
237 this.storage
.storePerformanceStatistics(data
) as void;
240 private initialize() {
241 this.numberOfChargingStationTemplates
= 0;
242 this.numberOfChargingStations
= 0;
243 this.numberOfStartedChargingStations
= 0;
244 this.initializeWorkerImplementation();
247 private async startChargingStation(
249 stationTemplateUrl
: StationTemplateUrl
251 const workerData
: ChargingStationWorkerData
= {
253 templateFile
: path
.join(
254 path
.resolve(path
.dirname(fileURLToPath(import.meta
.url
)), '../'),
257 stationTemplateUrl
.file
260 await this.workerImplementation
.addElement(workerData
);
261 ++this.numberOfChargingStations
;
264 private logPrefix(): string {
265 return Utils
.logPrefix(' Bootstrap |');