Prepare the code for ESM support
[e-mobility-charging-stations-simulator.git] / src / charging-station / Bootstrap.ts
CommitLineData
b4d34251
JB
1// Partial Copyright Jerome Benoit. 2021. All Rights Reserved.
2
e7aeea18
JB
3import {
4 ChargingStationWorkerData,
5 ChargingStationWorkerMessage,
6 ChargingStationWorkerMessageEvents,
7} from '../types/ChargingStationWorker';
81797102 8
fe94fce0
JB
9import { AbstractUIServer } from './ui-server/AbstractUIServer';
10import { ApplicationProtocol } from '../types/UIProtocol';
17ac262c 11import { ChargingStationUtils } from './ChargingStationUtils';
ded13d97 12import Configuration from '../utils/Configuration';
717c1e56 13import { StationTemplateUrl } from '../types/ConfigurationData';
c3ee95af 14import Statistics from '../types/Statistics';
a6b3c6c3
JB
15import { Storage } from '../performance/storage/Storage';
16import { StorageFactory } from '../performance/storage/StorageFactory';
fe94fce0 17import UIServerFactory from './ui-server/UIServerFactory';
675fa8e3 18import { UIServiceUtils } from './ui-server/ui-services/UIServiceUtils';
ded13d97 19import Utils from '../utils/Utils';
fd1fdf1b 20import WorkerAbstract from '../worker/WorkerAbstract';
ded13d97 21import WorkerFactory from '../worker/WorkerFactory';
8eac9a09 22import chalk from 'chalk';
0d8140bd 23import { fileURLToPath } from 'url';
ded13d97 24import { isMainThread } from 'worker_threads';
bf1866b2 25import path from 'path';
84e52c2c 26import { version } from '../../package.json';
ded13d97
JB
27
28export default class Bootstrap {
535aaa27 29 private static instance: Bootstrap | null = null;
c3ee95af 30 private workerImplementation: WorkerAbstract<ChargingStationWorkerData> | null = null;
fe94fce0 31 private readonly uiServer!: AbstractUIServer;
6a49ad23 32 private readonly storage!: Storage;
7c72977b
JB
33 private numberOfChargingStationTemplates!: number;
34 private numberOfChargingStations!: number;
9e23580d 35 private readonly version: string = version;
eb87fe87 36 private started: boolean;
9e23580d 37 private readonly workerScript: string;
ded13d97
JB
38
39 private constructor() {
eb87fe87 40 this.started = false;
e7aeea18 41 this.workerScript = path.join(
0d8140bd 42 path.resolve(path.dirname(fileURLToPath(import.meta.url)), '../'),
e7aeea18
JB
43 'charging-station',
44 'ChargingStationWorker.js'
45 );
7c72977b 46 this.initialize();
8df3f0a9 47 this.initWorkerImplementation();
675fa8e3 48 Configuration.getUIServer().enabled &&
fe94fce0 49 (this.uiServer = UIServerFactory.getUIServerImplementation(ApplicationProtocol.WS, {
675fa8e3 50 ...Configuration.getUIServer().options,
e7aeea18
JB
51 handleProtocols: UIServiceUtils.handleProtocols,
52 }));
53 Configuration.getPerformanceStorage().enabled &&
54 (this.storage = StorageFactory.getStorage(
55 Configuration.getPerformanceStorage().type,
56 Configuration.getPerformanceStorage().uri,
57 this.logPrefix()
58 ));
7874b0b1 59 Configuration.setConfigurationChangeCallback(async () => Bootstrap.getInstance().restart());
ded13d97
JB
60 }
61
62 public static getInstance(): Bootstrap {
63 if (!Bootstrap.instance) {
64 Bootstrap.instance = new Bootstrap();
65 }
66 return Bootstrap.instance;
67 }
68
69 public async start(): Promise<void> {
eb87fe87 70 if (isMainThread && !this.started) {
ded13d97 71 try {
7c72977b 72 this.initialize();
6a49ad23 73 await this.storage?.open();
a4bc2942 74 await this.workerImplementation.start();
675fa8e3 75 this.uiServer?.start();
1f5df42a 76 const stationTemplateUrls = Configuration.getStationTemplateUrls();
7c72977b 77 this.numberOfChargingStationTemplates = stationTemplateUrls.length;
ded13d97 78 // Start ChargingStation object in worker thread
45bd0627 79 if (!Utils.isEmptyArray(stationTemplateUrls)) {
1f5df42a 80 for (const stationTemplateUrl of stationTemplateUrls) {
ded13d97 81 try {
1f5df42a 82 const nbStations = stationTemplateUrl.numberOfStations ?? 0;
ded13d97 83 for (let index = 1; index <= nbStations; index++) {
717c1e56 84 await this.startChargingStation(index, stationTemplateUrl);
ded13d97
JB
85 }
86 } catch (error) {
e7aeea18
JB
87 console.error(
88 chalk.red(
3d25cc86
JB
89 'Error at starting charging station with template file ' +
90 stationTemplateUrl.file +
91 ': '
e7aeea18
JB
92 ),
93 error
94 );
ded13d97
JB
95 }
96 }
97 } else {
45bd0627
JB
98 console.warn(
99 chalk.yellow("'stationTemplateUrls' not defined or empty in configuration, exiting")
100 );
ded13d97 101 }
a4bc2942 102 if (this.numberOfChargingStations === 0) {
e7aeea18
JB
103 console.warn(
104 chalk.yellow('No charging station template enabled in configuration, exiting')
105 );
ded13d97 106 } else {
e7aeea18
JB
107 console.log(
108 chalk.green(
109 `Charging stations simulator ${
110 this.version
7c72977b 111 } started with ${this.numberOfChargingStations.toString()} charging station(s) from ${this.numberOfChargingStationTemplates.toString()} configured charging station template(s) and ${
17ac262c 112 ChargingStationUtils.workerDynamicPoolInUse()
e7aeea18
JB
113 ? `${Configuration.getWorkerPoolMinSize().toString()}/`
114 : ''
115 }${this.workerImplementation.size}${
17ac262c
JB
116 ChargingStationUtils.workerPoolInUse()
117 ? `/${Configuration.getWorkerPoolMaxSize().toString()}`
118 : ''
e7aeea18
JB
119 } worker(s) concurrently running in '${Configuration.getWorkerProcess()}' mode${
120 this.workerImplementation.maxElementsPerWorker
121 ? ` (${this.workerImplementation.maxElementsPerWorker} charging station(s) per worker)`
122 : ''
123 }`
124 )
125 );
ded13d97 126 }
eb87fe87 127 this.started = true;
ded13d97 128 } catch (error) {
8eac9a09 129 console.error(chalk.red('Bootstrap start error '), error);
ded13d97 130 }
b322b8b4
JB
131 } else {
132 console.error(chalk.red('Cannot start an already started charging stations simulator'));
ded13d97
JB
133 }
134 }
135
136 public async stop(): Promise<void> {
eb87fe87 137 if (isMainThread && this.started) {
a4bc2942 138 await this.workerImplementation.stop();
675fa8e3 139 this.uiServer?.stop();
6a49ad23 140 await this.storage?.close();
b322b8b4
JB
141 } else {
142 console.error(chalk.red('Trying to stop the charging stations simulator while not started'));
ded13d97 143 }
eb87fe87 144 this.started = false;
ded13d97
JB
145 }
146
147 public async restart(): Promise<void> {
148 await this.stop();
7c72977b 149 this.initialize();
535aaa27 150 this.initWorkerImplementation();
ded13d97
JB
151 await this.start();
152 }
153
2a370053 154 private initWorkerImplementation(): void {
e7aeea18
JB
155 this.workerImplementation = WorkerFactory.getWorkerImplementation<ChargingStationWorkerData>(
156 this.workerScript,
157 Configuration.getWorkerProcess(),
8df3f0a9 158 {
4bfd80fa
JB
159 workerStartDelay: Configuration.getWorkerStartDelay(),
160 elementStartDelay: Configuration.getElementStartDelay(),
8df3f0a9
JB
161 poolMaxSize: Configuration.getWorkerPoolMaxSize(),
162 poolMinSize: Configuration.getWorkerPoolMinSize(),
163 elementsPerWorker: Configuration.getChargingStationsPerWorker(),
164 poolOptions: {
e7aeea18 165 workerChoiceStrategy: Configuration.getWorkerPoolStrategy(),
ffd71f2c 166 },
98dc07fa 167 messageHandler: async (msg: ChargingStationWorkerMessage) => {
ee0f106b 168 if (msg.id === ChargingStationWorkerMessageEvents.STARTED) {
675fa8e3 169 this.uiServer.chargingStations.add(msg.data.id as string);
ee0f106b 170 } else if (msg.id === ChargingStationWorkerMessageEvents.STOPPED) {
675fa8e3 171 this.uiServer.chargingStations.delete(msg.data.id as string);
ee0f106b 172 } else if (msg.id === ChargingStationWorkerMessageEvents.PERFORMANCE_STATISTICS) {
c3ee95af 173 await this.storage.storePerformanceStatistics(msg.data as unknown as Statistics);
ffd71f2c 174 }
e7aeea18
JB
175 },
176 }
177 );
ded13d97 178 }
81797102 179
7c72977b
JB
180 private initialize() {
181 this.numberOfChargingStations = 0;
182 this.numberOfChargingStationTemplates = 0;
183 }
184
e7aeea18
JB
185 private async startChargingStation(
186 index: number,
187 stationTemplateUrl: StationTemplateUrl
188 ): Promise<void> {
717c1e56
JB
189 const workerData: ChargingStationWorkerData = {
190 index,
e7aeea18 191 templateFile: path.join(
0d8140bd 192 path.resolve(path.dirname(fileURLToPath(import.meta.url)), '../'),
e7aeea18
JB
193 'assets',
194 'station-templates',
195 path.basename(stationTemplateUrl.file)
196 ),
717c1e56
JB
197 };
198 await this.workerImplementation.addElement(workerData);
199 this.numberOfChargingStations++;
200 }
201
81797102 202 private logPrefix(): string {
689dca78 203 return Utils.logPrefix(' Bootstrap |');
81797102 204 }
ded13d97 205}