Add support for unit in meter values.
[e-mobility-charging-stations-simulator.git] / src / charging-station / ChargingStation.ts
CommitLineData
efa43e52 1import { BootNotificationResponse, RegistrationStatus } from '../types/ocpp/Responses';
e118beaa 2import ChargingStationConfiguration, { ConfigurationKey } from '../types/ChargingStationConfiguration';
510f0fa5 3import ChargingStationTemplate, { CurrentOutType, PowerUnits, VoltageOut } from '../types/ChargingStationTemplate';
10570d97 4import Connectors, { Connector } from '../types/Connectors';
6af9012e 5import { PerformanceObserver, performance } from 'perf_hooks';
c0560973 6import Requests, { AvailabilityType, BootNotificationRequest, IncomingRequest, IncomingRequestCommand } from '../types/ocpp/Requests';
136c90ba 7import WebSocket, { MessageEvent } from 'ws';
3f40bc9c 8
6af9012e 9import AutomaticTransactionGenerator from './AutomaticTransactionGenerator';
c0560973
JB
10import { ChargePointStatus } from '../types/ocpp/ChargePointStatus';
11import { ChargingProfile } from '../types/ocpp/ChargingProfile';
9ac86a7e 12import ChargingStationInfo from '../types/ChargingStationInfo';
6af9012e 13import Configuration from '../utils/Configuration';
63b48f77 14import Constants from '../utils/Constants';
23132a44 15import FileUtils from '../utils/FileUtils';
d2a64eb5 16import { MessageType } from '../types/ocpp/MessageType';
c0560973
JB
17import { MeterValueMeasurand } from '../types/ocpp/MeterValues';
18import OCPP16IncomingRequestService from './ocpp/1.6/OCCP16IncomingRequestService';
19import OCPP16RequestService from './ocpp/1.6/OCPP16RequestService';
20import OCPP16ResponseService from './ocpp/1.6/OCPP16ResponseService';
63b48f77 21import OCPPError from './OcppError';
c0560973
JB
22import OCPPIncomingRequestService from './ocpp/OCPPIncomingRequestService';
23import OCPPRequestService from './ocpp/OCPPRequestService';
24import { OCPPVersion } from '../types/ocpp/OCPPVersion';
54b1efe0 25import PerformanceStatistics from '../utils/PerformanceStatistics';
c0560973 26import { StandardParametersKey } from '../types/ocpp/Configuration';
c0560973 27import { StopTransactionReason } from '../types/ocpp/Transaction';
6af9012e 28import Utils from '../utils/Utils';
32a1eb7a 29import { WebSocketCloseEventStatusCode } from '../types/WebSocket';
3f40bc9c
JB
30import crypto from 'crypto';
31import fs from 'fs';
6af9012e 32import logger from '../utils/Logger';
bf1866b2 33import path from 'path';
3f40bc9c
JB
34
35export default class ChargingStation {
c0560973
JB
36 public stationTemplateFile: string;
37 public authorizedTags: string[];
6e0964c8 38 public stationInfo!: ChargingStationInfo;
ad2f27c3 39 public connectors: Connectors;
6e0964c8 40 public configuration!: ChargingStationConfiguration;
c0560973 41 public hasStopped: boolean;
6e0964c8 42 public wsConnection!: WebSocket;
c0560973
JB
43 public requests: Requests;
44 public messageQueue: string[];
6e0964c8
JB
45 public performanceStatistics!: PerformanceStatistics;
46 public heartbeatSetInterval!: NodeJS.Timeout;
47 public ocppIncomingRequestService!: OCPPIncomingRequestService;
48 public ocppRequestService!: OCPPRequestService;
ad2f27c3 49 private index: number;
6e0964c8
JB
50 private bootNotificationRequest!: BootNotificationRequest;
51 private bootNotificationResponse!: BootNotificationResponse | null;
52 private connectorsConfigurationHash!: string;
53 private supervisionUrl!: string;
54 private wsConnectionUrl!: string;
ad2f27c3
JB
55 private hasSocketRestarted: boolean;
56 private autoReconnectRetryCount: number;
6e0964c8
JB
57 private automaticTransactionGeneration!: AutomaticTransactionGenerator;
58 private performanceObserver!: PerformanceObserver;
59 private webSocketPingSetInterval!: NodeJS.Timeout;
6af9012e
JB
60
61 constructor(index: number, stationTemplateFile: string) {
ad2f27c3
JB
62 this.index = index;
63 this.stationTemplateFile = stationTemplateFile;
64 this.connectors = {} as Connectors;
c0560973 65 this.initialize();
2e6f5966 66
ad2f27c3
JB
67 this.hasStopped = false;
68 this.hasSocketRestarted = false;
69 this.autoReconnectRetryCount = 0;
2e6f5966 70
ad2f27c3
JB
71 this.requests = {} as Requests;
72 this.messageQueue = [] as string[];
2e6f5966 73
c0560973
JB
74 this.authorizedTags = this.getAuthorizedTags();
75 }
76
77 public logPrefix(): string {
54b1efe0 78 return Utils.logPrefix(` ${this.stationInfo.chargingStationId} |`);
c0560973
JB
79 }
80
81 public getRandomTagId(): string {
82 const index = Math.floor(Math.random() * this.authorizedTags.length);
83 return this.authorizedTags[index];
84 }
85
86 public hasAuthorizedTags(): boolean {
87 return !Utils.isEmptyArray(this.authorizedTags);
88 }
89
6e0964c8 90 public getEnableStatistics(): boolean | undefined {
c0560973
JB
91 return !Utils.isUndefined(this.stationInfo.enableStatistics) ? this.stationInfo.enableStatistics : true;
92 }
93
6e0964c8 94 public getNumberOfPhases(): number | undefined {
7decf1b6
JB
95 switch (this.getCurrentOutType()) {
96 case CurrentOutType.AC:
c0560973 97 return !Utils.isUndefined(this.stationInfo.numberOfPhases) ? this.stationInfo.numberOfPhases : 3;
7decf1b6 98 case CurrentOutType.DC:
c0560973
JB
99 return 0;
100 }
101 }
102
103 public isWebSocketOpen(): boolean {
104 return this.wsConnection?.readyState === WebSocket.OPEN;
105 }
106
107 public isRegistered(): boolean {
108 return this.bootNotificationResponse?.status === RegistrationStatus.ACCEPTED;
109 }
110
111 public isChargingStationAvailable(): boolean {
112 return this.getConnector(0).availability === AvailabilityType.OPERATIVE;
113 }
114
115 public isConnectorAvailable(id: number): boolean {
116 return this.getConnector(id).availability === AvailabilityType.OPERATIVE;
117 }
118
119 public getConnector(id: number): Connector {
120 return this.connectors[id];
121 }
122
6e0964c8 123 public getCurrentOutType(): CurrentOutType | undefined {
7decf1b6 124 return !Utils.isUndefined(this.stationInfo.currentOutType) ? this.stationInfo.currentOutType : CurrentOutType.AC;
c0560973
JB
125 }
126
6e0964c8 127 public getVoltageOut(): number | undefined {
7decf1b6 128 const errMsg = `${this.logPrefix()} Unknown ${this.getCurrentOutType()} currentOutType in template file ${this.stationTemplateFile}, cannot define default voltage out`;
c0560973 129 let defaultVoltageOut: number;
7decf1b6
JB
130 switch (this.getCurrentOutType()) {
131 case CurrentOutType.AC:
c0560973
JB
132 defaultVoltageOut = VoltageOut.VOLTAGE_230;
133 break;
7decf1b6 134 case CurrentOutType.DC:
c0560973
JB
135 defaultVoltageOut = VoltageOut.VOLTAGE_400;
136 break;
137 default:
138 logger.error(errMsg);
139 throw Error(errMsg);
140 }
141 return !Utils.isUndefined(this.stationInfo.voltageOut) ? this.stationInfo.voltageOut : defaultVoltageOut;
142 }
143
6e0964c8 144 public getTransactionIdTag(transactionId: number): string | undefined {
c0560973
JB
145 for (const connector in this.connectors) {
146 if (Utils.convertToInt(connector) > 0 && this.getConnector(Utils.convertToInt(connector)).transactionId === transactionId) {
147 return this.getConnector(Utils.convertToInt(connector)).idTag;
148 }
149 }
150 }
151
6ed92bc1
JB
152 public getOutOfOrderEndMeterValues(): boolean {
153 return this.stationInfo.outOfOrderEndMeterValues ?? false;
154 }
155
156 public getBeginEndMeterValues(): boolean {
157 return this.stationInfo.beginEndMeterValues ?? false;
158 }
159
160 public getMeteringPerTransaction(): boolean {
161 return this.stationInfo.meteringPerTransaction ?? true;
162 }
163
164 public getEnergyActiveImportRegisterByTransactionId(transactionId: number): number | undefined {
165 if (this.getMeteringPerTransaction()) {
166 for (const connector in this.connectors) {
167 if (Utils.convertToInt(connector) > 0 && this.getConnector(Utils.convertToInt(connector)).transactionId === transactionId) {
168 return this.getConnector(Utils.convertToInt(connector)).transactionEnergyActiveImportRegisterValue;
169 }
170 }
171 }
c0560973
JB
172 for (const connector in this.connectors) {
173 if (Utils.convertToInt(connector) > 0 && this.getConnector(Utils.convertToInt(connector)).transactionId === transactionId) {
6ed92bc1 174 return this.getConnector(Utils.convertToInt(connector)).energyActiveImportRegisterValue;
c0560973
JB
175 }
176 }
177 }
178
6ed92bc1
JB
179 public getEnergyActiveImportRegisterByConnectorId(connectorId: number): number | undefined {
180 if (this.getMeteringPerTransaction()) {
181 return this.getConnector(connectorId).transactionEnergyActiveImportRegisterValue;
182 }
183 return this.getConnector(connectorId).energyActiveImportRegisterValue;
184 }
185
c0560973
JB
186 public getAuthorizeRemoteTxRequests(): boolean {
187 const authorizeRemoteTxRequests = this.getConfigurationKey(StandardParametersKey.AuthorizeRemoteTxRequests);
188 return authorizeRemoteTxRequests ? Utils.convertToBoolean(authorizeRemoteTxRequests.value) : false;
189 }
190
191 public getLocalAuthListEnabled(): boolean {
192 const localAuthListEnabled = this.getConfigurationKey(StandardParametersKey.LocalAuthListEnabled);
193 return localAuthListEnabled ? Utils.convertToBoolean(localAuthListEnabled.value) : false;
194 }
195
196 public restartWebSocketPing(): void {
197 // Stop WebSocket ping
198 this.stopWebSocketPing();
199 // Start WebSocket ping
200 this.startWebSocketPing();
201 }
202
e644918b
JB
203 public getAutomaticTransactionGeneratorRequireAuthorize(): boolean {
204 return this.stationInfo.AutomaticTransactionGenerator.requireAuthorize ?? true;
205 }
206
c0560973
JB
207 public startHeartbeat(): void {
208 if (this.getHeartbeatInterval() && this.getHeartbeatInterval() > 0 && !this.heartbeatSetInterval) {
71623267
JB
209 // eslint-disable-next-line @typescript-eslint/no-misused-promises
210 this.heartbeatSetInterval = setInterval(async (): Promise<void> => {
c0560973
JB
211 await this.ocppRequestService.sendHeartbeat();
212 }, this.getHeartbeatInterval());
213 logger.info(this.logPrefix() + ' Heartbeat started every ' + Utils.milliSecondsToHHMMSS(this.getHeartbeatInterval()));
214 } else if (this.heartbeatSetInterval) {
54b1efe0 215 logger.info(this.logPrefix() + ' Heartbeat already started every ' + Utils.milliSecondsToHHMMSS(this.getHeartbeatInterval()));
c0560973
JB
216 } else {
217 logger.error(`${this.logPrefix()} Heartbeat interval set to ${this.getHeartbeatInterval() ? Utils.milliSecondsToHHMMSS(this.getHeartbeatInterval()) : this.getHeartbeatInterval()}, not starting the heartbeat`);
218 }
219 }
220
221 public restartHeartbeat(): void {
222 // Stop heartbeat
223 this.stopHeartbeat();
224 // Start heartbeat
225 this.startHeartbeat();
226 }
227
228 public startMeterValues(connectorId: number, interval: number): void {
229 if (connectorId === 0) {
230 logger.error(`${this.logPrefix()} Trying to start MeterValues on connector Id ${connectorId.toString()}`);
231 return;
232 }
233 if (!this.getConnector(connectorId)) {
234 logger.error(`${this.logPrefix()} Trying to start MeterValues on non existing connector Id ${connectorId.toString()}`);
235 return;
236 }
237 if (!this.getConnector(connectorId)?.transactionStarted) {
238 logger.error(`${this.logPrefix()} Trying to start MeterValues on connector Id ${connectorId} with no transaction started`);
239 return;
240 } else if (this.getConnector(connectorId)?.transactionStarted && !this.getConnector(connectorId)?.transactionId) {
241 logger.error(`${this.logPrefix()} Trying to start MeterValues on connector Id ${connectorId} with no transaction id`);
242 return;
243 }
244 if (interval > 0) {
71623267
JB
245 // eslint-disable-next-line @typescript-eslint/no-misused-promises
246 this.getConnector(connectorId).transactionSetInterval = setInterval(async (): Promise<void> => {
c0560973
JB
247 if (this.getEnableStatistics()) {
248 const sendMeterValues = performance.timerify(this.ocppRequestService.sendMeterValues);
249 this.performanceObserver.observe({
250 entryTypes: ['function'],
251 });
252 await sendMeterValues(connectorId, this.getConnector(connectorId).transactionId, interval, this.ocppRequestService);
253 } else {
254 await this.ocppRequestService.sendMeterValues(connectorId, this.getConnector(connectorId).transactionId, interval, this.ocppRequestService);
255 }
256 }, interval);
257 } else {
eb87fe87 258 logger.error(`${this.logPrefix()} Charging station ${StandardParametersKey.MeterValueSampleInterval} configuration set to ${interval ? Utils.milliSecondsToHHMMSS(interval) : interval}, not sending MeterValues`);
c0560973
JB
259 }
260 }
261
262 public start(): void {
263 this.openWSConnection();
264 // Monitor authorization file
265 this.startAuthorizationFileMonitoring();
266 // Monitor station template file
267 this.startStationTemplateFileMonitoring();
268 // Handle Socket incoming messages
269 this.wsConnection.on('message', this.onMessage.bind(this));
270 // Handle Socket error
271 this.wsConnection.on('error', this.onError.bind(this));
272 // Handle Socket close
273 this.wsConnection.on('close', this.onClose.bind(this));
274 // Handle Socket opening connection
275 this.wsConnection.on('open', this.onOpen.bind(this));
276 // Handle Socket ping
277 this.wsConnection.on('ping', this.onPing.bind(this));
278 // Handle Socket pong
279 this.wsConnection.on('pong', this.onPong.bind(this));
280 }
281
282 public async stop(reason: StopTransactionReason = StopTransactionReason.NONE): Promise<void> {
283 // Stop message sequence
284 await this.stopMessageSequence(reason);
285 for (const connector in this.connectors) {
286 if (Utils.convertToInt(connector) > 0) {
287 await this.ocppRequestService.sendStatusNotification(Utils.convertToInt(connector), ChargePointStatus.UNAVAILABLE);
288 this.getConnector(Utils.convertToInt(connector)).status = ChargePointStatus.UNAVAILABLE;
289 }
290 }
291 if (this.isWebSocketOpen()) {
292 this.wsConnection.close();
293 }
294 this.bootNotificationResponse = null;
295 this.hasStopped = true;
296 }
297
6e0964c8
JB
298 public getConfigurationKey(key: string | StandardParametersKey, caseInsensitive = false): ConfigurationKey | undefined {
299 const configurationKey: ConfigurationKey | undefined = this.configuration.configurationKey.find((configElement) => {
c0560973
JB
300 if (caseInsensitive) {
301 return configElement.key.toLowerCase() === key.toLowerCase();
302 }
303 return configElement.key === key;
304 });
305 return configurationKey;
306 }
307
308 public addConfigurationKey(key: string | StandardParametersKey, value: string, readonly = false, visible = true, reboot = false): void {
309 const keyFound = this.getConfigurationKey(key);
310 if (!keyFound) {
311 this.configuration.configurationKey.push({
312 key,
313 readonly,
314 value,
315 visible,
316 reboot,
317 });
318 } else {
319 logger.error(`${this.logPrefix()} Trying to add an already existing configuration key: %j`, keyFound);
320 }
321 }
322
323 public setConfigurationKeyValue(key: string | StandardParametersKey, value: string): void {
324 const keyFound = this.getConfigurationKey(key);
325 if (keyFound) {
326 const keyIndex = this.configuration.configurationKey.indexOf(keyFound);
327 this.configuration.configurationKey[keyIndex].value = value;
328 } else {
329 logger.error(`${this.logPrefix()} Trying to set a value on a non existing configuration key: %j`, { key, value });
330 }
331 }
332
333 public setChargingProfile(connectorId: number, cp: ChargingProfile): boolean {
334 if (!Utils.isEmptyArray(this.getConnector(connectorId).chargingProfiles)) {
6e0964c8 335 this.getConnector(connectorId).chargingProfiles?.forEach((chargingProfile: ChargingProfile, index: number) => {
c0560973
JB
336 if (chargingProfile.chargingProfileId === cp.chargingProfileId
337 || (chargingProfile.stackLevel === cp.stackLevel && chargingProfile.chargingProfilePurpose === cp.chargingProfilePurpose)) {
338 this.getConnector(connectorId).chargingProfiles[index] = cp;
339 return true;
340 }
341 });
342 }
6e0964c8 343 this.getConnector(connectorId).chargingProfiles?.push(cp);
c0560973
JB
344 return true;
345 }
346
347 public resetTransactionOnConnector(connectorId: number): void {
6ed92bc1
JB
348 this.getConnector(connectorId).transactionStarted = false;
349 delete this.getConnector(connectorId).transactionId;
350 delete this.getConnector(connectorId).idTag;
351 this.getConnector(connectorId).transactionEnergyActiveImportRegisterValue = 0;
dd119a6b 352 this.stopMeterValues(connectorId);
2e6f5966
JB
353 }
354
77f00f84 355 public addToMessageQueue(message: string): void {
3ba2381e 356 let dups = false;
cb31c873 357 // Handle dups in message queue
3ba2381e 358 for (const bufferedMessage of this.messageQueue) {
cb31c873 359 // Message already in the queue
3ba2381e
JB
360 if (message === bufferedMessage) {
361 dups = true;
362 break;
363 }
364 }
365 if (!dups) {
cb31c873 366 // Queue message
3ba2381e
JB
367 this.messageQueue.push(message);
368 }
369 }
370
77f00f84
JB
371 private flushMessageQueue() {
372 if (!Utils.isEmptyArray(this.messageQueue)) {
373 this.messageQueue.forEach((message, index) => {
374 this.messageQueue.splice(index, 1);
375 this.wsConnection.send(message);
376 });
377 }
378 }
379
c0560973 380 private getChargingStationId(stationTemplate: ChargingStationTemplate): string {
ef6076c1
J
381 // In case of multiple instances: add instance index to charging station id
382 let instanceIndex = process.env.CF_INSTANCE_INDEX ? process.env.CF_INSTANCE_INDEX : 0;
383 instanceIndex = instanceIndex > 0 ? instanceIndex : '';
5fdab605 384 const idSuffix = stationTemplate.nameSuffix ? stationTemplate.nameSuffix : '';
ad2f27c3 385 return stationTemplate.fixedName ? stationTemplate.baseName : stationTemplate.baseName + '-' + instanceIndex.toString() + ('000000000' + this.index.toString()).substr(('000000000' + this.index.toString()).length - 4) + idSuffix;
5ad8570f
JB
386 }
387
c0560973 388 private buildStationInfo(): ChargingStationInfo {
9ac86a7e 389 let stationTemplateFromFile: ChargingStationTemplate;
5ad8570f
JB
390 try {
391 // Load template file
ad2f27c3 392 const fileDescriptor = fs.openSync(this.stationTemplateFile, 'r');
9ac86a7e 393 stationTemplateFromFile = JSON.parse(fs.readFileSync(fileDescriptor, 'utf8')) as ChargingStationTemplate;
5ad8570f
JB
394 fs.closeSync(fileDescriptor);
395 } catch (error) {
23132a44 396 FileUtils.handleFileException(this.logPrefix(), 'Template', this.stationTemplateFile, error);
5ad8570f 397 }
510f0fa5 398 const stationInfo: ChargingStationInfo = stationTemplateFromFile ?? {} as ChargingStationInfo;
0a60c33c 399 if (!Utils.isEmptyArray(stationTemplateFromFile.power)) {
9ac86a7e 400 stationTemplateFromFile.power = stationTemplateFromFile.power as number[];
510f0fa5
JB
401 const powerArrayRandomIndex = Math.floor(Math.random() * stationTemplateFromFile.power.length);
402 stationInfo.maxPower = stationTemplateFromFile.powerUnit === PowerUnits.KILO_WATT
403 ? stationTemplateFromFile.power[powerArrayRandomIndex] * 1000
404 : stationTemplateFromFile.power[powerArrayRandomIndex];
5ad8570f 405 } else {
510f0fa5
JB
406 stationTemplateFromFile.power = stationTemplateFromFile.power as number;
407 stationInfo.maxPower = stationTemplateFromFile.powerUnit === PowerUnits.KILO_WATT
408 ? (stationTemplateFromFile.power) * 1000
409 : stationTemplateFromFile.power;
5ad8570f 410 }
c0560973 411 stationInfo.chargingStationId = this.getChargingStationId(stationTemplateFromFile);
9ac86a7e
JB
412 stationInfo.resetTime = stationTemplateFromFile.resetTime ? stationTemplateFromFile.resetTime * 1000 : Constants.CHARGING_STATION_DEFAULT_RESET_TIME;
413 return stationInfo;
5ad8570f
JB
414 }
415
c0560973
JB
416 private getOCPPVersion(): OCPPVersion {
417 return this.stationInfo.ocppVersion ? this.stationInfo.ocppVersion : OCPPVersion.VERSION_16;
418 }
419
420 private handleUnsupportedVersion(version: OCPPVersion) {
421 const errMsg = `${this.logPrefix()} Unsupported protocol version '${version}' configured in template file ${this.stationTemplateFile}`;
422 logger.error(errMsg);
423 throw new Error(errMsg);
424 }
425
426 private initialize(): void {
427 this.stationInfo = this.buildStationInfo();
ad2f27c3
JB
428 this.bootNotificationRequest = {
429 chargePointModel: this.stationInfo.chargePointModel,
430 chargePointVendor: this.stationInfo.chargePointVendor,
431 ...!Utils.isUndefined(this.stationInfo.chargeBoxSerialNumberPrefix) && { chargeBoxSerialNumber: this.stationInfo.chargeBoxSerialNumberPrefix },
432 ...!Utils.isUndefined(this.stationInfo.firmwareVersion) && { firmwareVersion: this.stationInfo.firmwareVersion },
2e6f5966 433 };
c0560973
JB
434 this.configuration = this.getTemplateChargingStationConfiguration();
435 this.supervisionUrl = this.getSupervisionURL();
ad2f27c3 436 this.wsConnectionUrl = this.supervisionUrl + '/' + this.stationInfo.chargingStationId;
0a60c33c 437 // Build connectors if needed
c0560973 438 const maxConnectors = this.getMaxNumberOfConnectors();
6ecb15e4 439 if (maxConnectors <= 0) {
c0560973 440 logger.warn(`${this.logPrefix()} Charging station template ${this.stationTemplateFile} with ${maxConnectors} connectors`);
7abfea5f 441 }
c0560973 442 const templateMaxConnectors = this.getTemplateMaxNumberOfConnectors();
7abfea5f 443 if (templateMaxConnectors <= 0) {
c0560973 444 logger.warn(`${this.logPrefix()} Charging station template ${this.stationTemplateFile} with no connector configuration`);
593cf3f9 445 }
ad2f27c3 446 if (!this.stationInfo.Connectors[0]) {
c0560973 447 logger.warn(`${this.logPrefix()} Charging station template ${this.stationTemplateFile} with no connector Id 0 configuration`);
7abfea5f
JB
448 }
449 // Sanity check
ad2f27c3 450 if (maxConnectors > (this.stationInfo.Connectors[0] ? templateMaxConnectors - 1 : templateMaxConnectors) && !this.stationInfo.randomConnectors) {
c0560973 451 logger.warn(`${this.logPrefix()} Number of connectors exceeds the number of connector configurations in template ${this.stationTemplateFile}, forcing random connector configurations affectation`);
ad2f27c3 452 this.stationInfo.randomConnectors = true;
6ecb15e4 453 }
ad2f27c3 454 const connectorsConfigHash = crypto.createHash('sha256').update(JSON.stringify(this.stationInfo.Connectors) + maxConnectors.toString()).digest('hex');
de1f5008 455 // FIXME: Handle shrinking the number of connectors
ad2f27c3
JB
456 if (!this.connectors || (this.connectors && this.connectorsConfigurationHash !== connectorsConfigHash)) {
457 this.connectorsConfigurationHash = connectorsConfigHash;
7abfea5f 458 // Add connector Id 0
6af9012e 459 let lastConnector = '0';
ad2f27c3 460 for (lastConnector in this.stationInfo.Connectors) {
c0560973 461 if (Utils.convertToInt(lastConnector) === 0 && this.getUseConnectorId0() && this.stationInfo.Connectors[lastConnector]) {
ad2f27c3
JB
462 this.connectors[lastConnector] = Utils.cloneObject<Connector>(this.stationInfo.Connectors[lastConnector]);
463 this.connectors[lastConnector].availability = AvailabilityType.OPERATIVE;
418106c8
JB
464 if (Utils.isUndefined(this.connectors[lastConnector]?.chargingProfiles)) {
465 this.connectors[lastConnector].chargingProfiles = [];
466 }
0a60c33c
JB
467 }
468 }
0a60c33c 469 // Generate all connectors
ad2f27c3 470 if ((this.stationInfo.Connectors[0] ? templateMaxConnectors - 1 : templateMaxConnectors) > 0) {
7abfea5f 471 for (let index = 1; index <= maxConnectors; index++) {
ad2f27c3
JB
472 const randConnectorID = this.stationInfo.randomConnectors ? Utils.getRandomInt(Utils.convertToInt(lastConnector), 1) : index;
473 this.connectors[index] = Utils.cloneObject<Connector>(this.stationInfo.Connectors[randConnectorID]);
474 this.connectors[index].availability = AvailabilityType.OPERATIVE;
418106c8
JB
475 if (Utils.isUndefined(this.connectors[lastConnector]?.chargingProfiles)) {
476 this.connectors[index].chargingProfiles = [];
477 }
7abfea5f 478 }
0a60c33c
JB
479 }
480 }
d4a73fb7 481 // Avoid duplication of connectors related information
ad2f27c3 482 delete this.stationInfo.Connectors;
0a60c33c 483 // Initialize transaction attributes on connectors
ad2f27c3 484 for (const connector in this.connectors) {
593cf3f9 485 if (Utils.convertToInt(connector) > 0 && !this.getConnector(Utils.convertToInt(connector)).transactionStarted) {
6ed92bc1 486 this.initTransactionAttributesOnConnector(Utils.convertToInt(connector));
0a60c33c
JB
487 }
488 }
c0560973
JB
489 switch (this.getOCPPVersion()) {
490 case OCPPVersion.VERSION_16:
491 this.ocppIncomingRequestService = new OCPP16IncomingRequestService(this);
492 this.ocppRequestService = new OCPP16RequestService(this, new OCPP16ResponseService(this));
493 break;
494 default:
495 this.handleUnsupportedVersion(this.getOCPPVersion());
496 break;
497 }
7abfea5f 498 // OCPP parameters
c0560973
JB
499 this.addConfigurationKey(StandardParametersKey.NumberOfConnectors, this.getNumberOfConnectors().toString(), true);
500 if (!this.getConfigurationKey(StandardParametersKey.MeterValuesSampledData)) {
501 this.addConfigurationKey(StandardParametersKey.MeterValuesSampledData, MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER);
7abfea5f 502 }
c0560973 503 this.stationInfo.powerDivider = this.getPowerDivider();
8bce55bf 504 if (this.getEnableStatistics()) {
54b1efe0 505 this.performanceStatistics = new PerformanceStatistics(this.stationInfo.chargingStationId);
ad2f27c3 506 this.performanceObserver = new PerformanceObserver((list) => {
8bce55bf 507 const entry = list.getEntries()[0];
54b1efe0 508 this.performanceStatistics.logPerformance(entry, Constants.ENTITY_CHARGING_STATION);
ad2f27c3 509 this.performanceObserver.disconnect();
8bce55bf
JB
510 });
511 }
7dde0b73
JB
512 }
513
c0560973
JB
514 private async onOpen(): Promise<void> {
515 logger.info(`${this.logPrefix()} Is connected to server through ${this.wsConnectionUrl}`);
516 if (!this.isRegistered()) {
517 // Send BootNotification
518 let registrationRetryCount = 0;
519 do {
43d673d9
JB
520 this.bootNotificationResponse = await this.ocppRequestService.sendBootNotification(this.bootNotificationRequest.chargePointModel,
521 this.bootNotificationRequest.chargePointVendor, this.bootNotificationRequest.chargeBoxSerialNumber, this.bootNotificationRequest.firmwareVersion);
c0560973
JB
522 if (!this.isRegistered()) {
523 registrationRetryCount++;
524 await Utils.sleep(this.bootNotificationResponse?.interval ? this.bootNotificationResponse.interval * 1000 : Constants.OCPP_DEFAULT_BOOT_NOTIFICATION_INTERVAL);
525 }
526 } while (!this.isRegistered() && (registrationRetryCount <= this.getRegistrationMaxRetries() || this.getRegistrationMaxRetries() === -1));
c7db4718
JB
527 }
528 if (this.isRegistered()) {
c0560973 529 await this.startMessageSequence();
3ba49ba9 530 this.hasStopped && (this.hasStopped = false);
c0560973 531 if (this.hasSocketRestarted && this.isWebSocketOpen()) {
77f00f84 532 this.flushMessageQueue();
2e6f5966
JB
533 }
534 } else {
c0560973 535 logger.error(`${this.logPrefix()} Registration failure: max retries reached (${this.getRegistrationMaxRetries()}) or retry disabled (${this.getRegistrationMaxRetries()})`);
2e6f5966 536 }
c0560973
JB
537 this.autoReconnectRetryCount = 0;
538 this.hasSocketRestarted = false;
2e6f5966
JB
539 }
540
6e0964c8 541 private async onClose(closeEvent: any): Promise<void> {
c0560973
JB
542 switch (closeEvent) {
543 case WebSocketCloseEventStatusCode.CLOSE_NORMAL: // Normal close
544 case WebSocketCloseEventStatusCode.CLOSE_NO_STATUS:
545 logger.info(`${this.logPrefix()} Socket normally closed with status '${Utils.getWebSocketCloseEventStatusString(closeEvent)}'`);
546 this.autoReconnectRetryCount = 0;
547 break;
548 default: // Abnormal close
549 logger.error(`${this.logPrefix()} Socket abnormally closed with status '${Utils.getWebSocketCloseEventStatusString(closeEvent)}'`);
550 await this.reconnect(closeEvent);
551 break;
552 }
2e6f5966
JB
553 }
554
c0560973
JB
555 private async onMessage(messageEvent: MessageEvent): Promise<void> {
556 let [messageType, messageId, commandName, commandPayload, errorDetails]: IncomingRequest = [0, '', '' as IncomingRequestCommand, {}, {}];
193d2c0a 557 let responseCallback: (payload: Record<string, unknown> | string, requestPayload: Record<string, unknown>) => void;
c0560973
JB
558 let rejectCallback: (error: OCPPError) => void;
559 let requestPayload: Record<string, unknown>;
560 let errMsg: string;
561 try {
562 // Parse the message
563 [messageType, messageId, commandName, commandPayload, errorDetails] = JSON.parse(messageEvent.toString()) as IncomingRequest;
c0560973
JB
564 // Check the Type of message
565 switch (messageType) {
566 // Incoming Message
567 case MessageType.CALL_MESSAGE:
568 if (this.getEnableStatistics()) {
54b1efe0 569 this.performanceStatistics.addMessage(commandName, messageType);
c0560973
JB
570 }
571 // Process the call
572 await this.ocppIncomingRequestService.handleRequest(messageId, commandName, commandPayload);
573 break;
574 // Outcome Message
575 case MessageType.CALL_RESULT_MESSAGE:
576 // Respond
577 if (Utils.isIterable(this.requests[messageId])) {
578 [responseCallback, , requestPayload] = this.requests[messageId];
579 } else {
580 throw new Error(`Response request for message id ${messageId} is not iterable`);
581 }
582 if (!responseCallback) {
583 // Error
584 throw new Error(`Response request for unknown message id ${messageId}`);
585 }
586 delete this.requests[messageId];
587 responseCallback(commandName, requestPayload);
588 break;
589 // Error Message
590 case MessageType.CALL_ERROR_MESSAGE:
591 if (!this.requests[messageId]) {
592 // Error
593 throw new Error(`Error request for unknown message id ${messageId}`);
594 }
595 if (Utils.isIterable(this.requests[messageId])) {
596 [, rejectCallback] = this.requests[messageId];
597 } else {
598 throw new Error(`Error request for message id ${messageId} is not iterable`);
599 }
600 delete this.requests[messageId];
601 rejectCallback(new OCPPError(commandName, commandPayload.toString(), errorDetails));
602 break;
603 // Error
604 default:
605 errMsg = `${this.logPrefix()} Wrong message type ${messageType}`;
606 logger.error(errMsg);
607 throw new Error(errMsg);
608 }
609 } catch (error) {
610 // Log
611 logger.error('%s Incoming message %j processing error %j on request content type %j', this.logPrefix(), messageEvent, error, this.requests[messageId]);
612 // Send error
613 messageType !== MessageType.CALL_ERROR_MESSAGE && await this.ocppRequestService.sendError(messageId, error, commandName);
614 }
2328be1e
JB
615 }
616
c0560973
JB
617 private onPing(): void {
618 logger.debug(this.logPrefix() + ' Has received a WS ping (rfc6455) from the server');
619 }
620
621 private onPong(): void {
622 logger.debug(this.logPrefix() + ' Has received a WS pong (rfc6455) from the server');
623 }
624
6e0964c8 625 private async onError(errorEvent: any): Promise<void> {
c0560973 626 logger.error(this.logPrefix() + ' Socket error: %j', errorEvent);
0a44f741 627 // switch (errorEvent.code) {
c0560973
JB
628 // case 'ECONNREFUSED':
629 // await this._reconnect(errorEvent);
630 // break;
631 // }
632 }
633
634 private getTemplateChargingStationConfiguration(): ChargingStationConfiguration {
635 return this.stationInfo.Configuration ? this.stationInfo.Configuration : {} as ChargingStationConfiguration;
636 }
637
6e0964c8 638 private getAuthorizationFile(): string | undefined {
bf1866b2 639 return this.stationInfo.authorizationFile && path.join(path.resolve(__dirname, '../'), 'assets', path.basename(this.stationInfo.authorizationFile));
c0560973
JB
640 }
641
642 private getAuthorizedTags(): string[] {
643 let authorizedTags: string[] = [];
644 const authorizationFile = this.getAuthorizationFile();
645 if (authorizationFile) {
646 try {
647 // Load authorization file
648 const fileDescriptor = fs.openSync(authorizationFile, 'r');
649 authorizedTags = JSON.parse(fs.readFileSync(fileDescriptor, 'utf8')) as string[];
650 fs.closeSync(fileDescriptor);
651 } catch (error) {
23132a44 652 FileUtils.handleFileException(this.logPrefix(), 'Authorization', authorizationFile, error);
c0560973
JB
653 }
654 } else {
655 logger.info(this.logPrefix() + ' No authorization file given in template file ' + this.stationTemplateFile);
8c4da341 656 }
c0560973
JB
657 return authorizedTags;
658 }
659
6e0964c8 660 private getUseConnectorId0(): boolean | undefined {
c0560973 661 return !Utils.isUndefined(this.stationInfo.useConnectorId0) ? this.stationInfo.useConnectorId0 : true;
8bce55bf
JB
662 }
663
c0560973 664 private getNumberOfRunningTransactions(): number {
6ecb15e4 665 let trxCount = 0;
ad2f27c3 666 for (const connector in this.connectors) {
593cf3f9 667 if (Utils.convertToInt(connector) > 0 && this.getConnector(Utils.convertToInt(connector)).transactionStarted) {
6ecb15e4
JB
668 trxCount++;
669 }
670 }
671 return trxCount;
672 }
673
1f761b9a 674 // 0 for disabling
6e0964c8 675 private getConnectionTimeout(): number | undefined {
ad2f27c3
JB
676 if (!Utils.isUndefined(this.stationInfo.connectionTimeout)) {
677 return this.stationInfo.connectionTimeout;
3574dfd3
JB
678 }
679 if (!Utils.isUndefined(Configuration.getConnectionTimeout())) {
680 return Configuration.getConnectionTimeout();
681 }
682 return 30;
683 }
684
1f761b9a 685 // -1 for unlimited, 0 for disabling
6e0964c8 686 private getAutoReconnectMaxRetries(): number | undefined {
ad2f27c3
JB
687 if (!Utils.isUndefined(this.stationInfo.autoReconnectMaxRetries)) {
688 return this.stationInfo.autoReconnectMaxRetries;
3574dfd3
JB
689 }
690 if (!Utils.isUndefined(Configuration.getAutoReconnectMaxRetries())) {
691 return Configuration.getAutoReconnectMaxRetries();
692 }
693 return -1;
694 }
695
ec977daf 696 // 0 for disabling
6e0964c8 697 private getRegistrationMaxRetries(): number | undefined {
ad2f27c3
JB
698 if (!Utils.isUndefined(this.stationInfo.registrationMaxRetries)) {
699 return this.stationInfo.registrationMaxRetries;
32a1eb7a
JB
700 }
701 return -1;
702 }
703
c0560973
JB
704 private getPowerDivider(): number {
705 let powerDivider = this.getNumberOfConnectors();
ad2f27c3 706 if (this.stationInfo.powerSharedByConnectors) {
c0560973 707 powerDivider = this.getNumberOfRunningTransactions();
6ecb15e4
JB
708 }
709 return powerDivider;
710 }
711
c0560973 712 private getTemplateMaxNumberOfConnectors(): number {
ad2f27c3 713 return Object.keys(this.stationInfo.Connectors).length;
7abfea5f
JB
714 }
715
c0560973 716 private getMaxNumberOfConnectors(): number {
5ad8570f 717 let maxConnectors = 0;
ad2f27c3
JB
718 if (!Utils.isEmptyArray(this.stationInfo.numberOfConnectors)) {
719 const numberOfConnectors = this.stationInfo.numberOfConnectors as number[];
6ecb15e4 720 // Distribute evenly the number of connectors
ad2f27c3
JB
721 maxConnectors = numberOfConnectors[(this.index - 1) % numberOfConnectors.length];
722 } else if (!Utils.isUndefined(this.stationInfo.numberOfConnectors)) {
723 maxConnectors = this.stationInfo.numberOfConnectors as number;
488fd3a7 724 } else {
c0560973 725 maxConnectors = this.stationInfo.Connectors[0] ? this.getTemplateMaxNumberOfConnectors() - 1 : this.getTemplateMaxNumberOfConnectors();
5ad8570f
JB
726 }
727 return maxConnectors;
2e6f5966
JB
728 }
729
c0560973 730 private getNumberOfConnectors(): number {
ad2f27c3 731 return this.connectors[0] ? Object.keys(this.connectors).length - 1 : Object.keys(this.connectors).length;
6ecb15e4
JB
732 }
733
c0560973 734 private async startMessageSequence(): Promise<void> {
136c90ba 735 // Start WebSocket ping
c0560973 736 this.startWebSocketPing();
5ad8570f 737 // Start heartbeat
c0560973 738 this.startHeartbeat();
0a60c33c 739 // Initialize connectors status
ad2f27c3 740 for (const connector in this.connectors) {
593cf3f9
JB
741 if (Utils.convertToInt(connector) === 0) {
742 continue;
ad2f27c3 743 } else if (!this.hasStopped && !this.getConnector(Utils.convertToInt(connector))?.status && this.getConnector(Utils.convertToInt(connector))?.bootStatus) {
136c90ba 744 // Send status in template at startup
c0560973
JB
745 await this.ocppRequestService.sendStatusNotification(Utils.convertToInt(connector), this.getConnector(Utils.convertToInt(connector)).bootStatus);
746 this.getConnector(Utils.convertToInt(connector)).status = this.getConnector(Utils.convertToInt(connector)).bootStatus;
ad2f27c3 747 } else if (this.hasStopped && this.getConnector(Utils.convertToInt(connector))?.bootStatus) {
136c90ba 748 // Send status in template after reset
c0560973
JB
749 await this.ocppRequestService.sendStatusNotification(Utils.convertToInt(connector), this.getConnector(Utils.convertToInt(connector)).bootStatus);
750 this.getConnector(Utils.convertToInt(connector)).status = this.getConnector(Utils.convertToInt(connector)).bootStatus;
ad2f27c3 751 } else if (!this.hasStopped && this.getConnector(Utils.convertToInt(connector))?.status) {
136c90ba 752 // Send previous status at template reload
c0560973 753 await this.ocppRequestService.sendStatusNotification(Utils.convertToInt(connector), this.getConnector(Utils.convertToInt(connector)).status);
5ad8570f 754 } else {
136c90ba 755 // Send default status
c0560973
JB
756 await this.ocppRequestService.sendStatusNotification(Utils.convertToInt(connector), ChargePointStatus.AVAILABLE);
757 this.getConnector(Utils.convertToInt(connector)).status = ChargePointStatus.AVAILABLE;
5ad8570f
JB
758 }
759 }
0a60c33c 760 // Start the ATG
dd119a6b
JB
761 this.startAutomaticTransactionGenerator();
762 if (this.getEnableStatistics()) {
763 this.performanceStatistics.start();
764 }
765 }
766
767 private startAutomaticTransactionGenerator() {
ad2f27c3
JB
768 if (this.stationInfo.AutomaticTransactionGenerator.enable) {
769 if (!this.automaticTransactionGeneration) {
770 this.automaticTransactionGeneration = new AutomaticTransactionGenerator(this);
5ad8570f 771 }
ad2f27c3 772 if (this.automaticTransactionGeneration.timeToStop) {
a1256107
JB
773 // The ATG might sleep
774 void this.automaticTransactionGeneration.start();
5ad8570f
JB
775 }
776 }
5ad8570f
JB
777 }
778
c0560973 779 private async stopMessageSequence(reason: StopTransactionReason = StopTransactionReason.NONE): Promise<void> {
136c90ba 780 // Stop WebSocket ping
c0560973 781 this.stopWebSocketPing();
79411696 782 // Stop heartbeat
c0560973 783 this.stopHeartbeat();
79411696 784 // Stop the ATG
ad2f27c3
JB
785 if (this.stationInfo.AutomaticTransactionGenerator.enable &&
786 this.automaticTransactionGeneration &&
787 !this.automaticTransactionGeneration.timeToStop) {
788 await this.automaticTransactionGeneration.stop(reason);
79411696 789 } else {
ad2f27c3 790 for (const connector in this.connectors) {
593cf3f9 791 if (Utils.convertToInt(connector) > 0 && this.getConnector(Utils.convertToInt(connector)).transactionStarted) {
c0560973 792 const transactionId = this.getConnector(Utils.convertToInt(connector)).transactionId;
6ed92bc1
JB
793 await this.ocppRequestService.sendStopTransaction(transactionId, this.getEnergyActiveImportRegisterByTransactionId(transactionId),
794 this.getTransactionIdTag(transactionId), reason);
79411696
JB
795 }
796 }
797 }
798 }
799
c0560973 800 private startWebSocketPing(): void {
9cd3dfb0
JB
801 const webSocketPingInterval: number = this.getConfigurationKey(StandardParametersKey.WebSocketPingInterval)
802 ? Utils.convertToInt(this.getConfigurationKey(StandardParametersKey.WebSocketPingInterval).value)
803 : 0;
ad2f27c3
JB
804 if (webSocketPingInterval > 0 && !this.webSocketPingSetInterval) {
805 this.webSocketPingSetInterval = setInterval(() => {
c0560973 806 if (this.isWebSocketOpen()) {
ad2f27c3 807 this.wsConnection.ping((): void => { });
136c90ba
JB
808 }
809 }, webSocketPingInterval * 1000);
c0560973 810 logger.info(this.logPrefix() + ' WebSocket ping started every ' + Utils.secondsToHHMMSS(webSocketPingInterval));
ad2f27c3 811 } else if (this.webSocketPingSetInterval) {
c0560973 812 logger.info(this.logPrefix() + ' WebSocket ping every ' + Utils.secondsToHHMMSS(webSocketPingInterval) + ' already started');
136c90ba 813 } else {
c0560973 814 logger.error(`${this.logPrefix()} WebSocket ping interval set to ${webSocketPingInterval ? Utils.secondsToHHMMSS(webSocketPingInterval) : webSocketPingInterval}, not starting the WebSocket ping`);
136c90ba
JB
815 }
816 }
817
c0560973 818 private stopWebSocketPing(): void {
ad2f27c3
JB
819 if (this.webSocketPingSetInterval) {
820 clearInterval(this.webSocketPingSetInterval);
136c90ba
JB
821 }
822 }
823
c0560973
JB
824 private getSupervisionURL(): string {
825 const supervisionUrls = Utils.cloneObject<string | string[]>(this.stationInfo.supervisionURL ? this.stationInfo.supervisionURL : Configuration.getSupervisionURLs());
826 let indexUrl = 0;
827 if (!Utils.isEmptyArray(supervisionUrls)) {
828 if (Configuration.getDistributeStationsToTenantsEqually()) {
829 indexUrl = this.index % supervisionUrls.length;
830 } else {
831 // Get a random url
832 indexUrl = Math.floor(Math.random() * supervisionUrls.length);
833 }
834 return supervisionUrls[indexUrl];
835 }
836 return supervisionUrls as string;
136c90ba
JB
837 }
838
6e0964c8 839 private getHeartbeatInterval(): number | undefined {
c0560973
JB
840 const HeartbeatInterval = this.getConfigurationKey(StandardParametersKey.HeartbeatInterval);
841 if (HeartbeatInterval) {
842 return Utils.convertToInt(HeartbeatInterval.value) * 1000;
843 }
844 const HeartBeatInterval = this.getConfigurationKey(StandardParametersKey.HeartBeatInterval);
845 if (HeartBeatInterval) {
846 return Utils.convertToInt(HeartBeatInterval.value) * 1000;
0a60c33c
JB
847 }
848 }
849
c0560973 850 private stopHeartbeat(): void {
ad2f27c3
JB
851 if (this.heartbeatSetInterval) {
852 clearInterval(this.heartbeatSetInterval);
7dde0b73 853 }
5ad8570f
JB
854 }
855
c0560973 856 private openWSConnection(options?: WebSocket.ClientOptions, forceCloseOpened = false): void {
ee6fd7d1
JB
857 options ?? {} as WebSocket.ClientOptions;
858 options?.handshakeTimeout ?? this.getConnectionTimeout() * 1000;
c0560973
JB
859 if (this.isWebSocketOpen() && forceCloseOpened) {
860 this.wsConnection.close();
861 }
862 let protocol;
863 switch (this.getOCPPVersion()) {
864 case OCPPVersion.VERSION_16:
865 protocol = 'ocpp' + OCPPVersion.VERSION_16;
866 break;
867 default:
868 this.handleUnsupportedVersion(this.getOCPPVersion());
869 break;
870 }
871 this.wsConnection = new WebSocket(this.wsConnectionUrl, protocol, options);
872 logger.info(this.logPrefix() + ' Will communicate through URL ' + this.supervisionUrl);
136c90ba
JB
873 }
874
dd119a6b
JB
875 private stopMeterValues(connectorId: number) {
876 if (this.getConnector(connectorId)?.transactionSetInterval) {
877 clearInterval(this.getConnector(connectorId).transactionSetInterval);
878 }
879 }
880
c0560973 881 private startAuthorizationFileMonitoring(): void {
23132a44
JB
882 const authorizationFile = this.getAuthorizationFile();
883 if (authorizationFile) {
5ad8570f 884 try {
23132a44
JB
885 fs.watch(authorizationFile).on('change', (e) => {
886 try {
887 logger.debug(this.logPrefix() + ' Authorization file ' + authorizationFile + ' have changed, reload');
888 // Initialize authorizedTags
889 this.authorizedTags = this.getAuthorizedTags();
890 } catch (error) {
891 logger.error(this.logPrefix() + ' Authorization file monitoring error: %j', error);
892 }
893 });
5ad8570f 894 } catch (error) {
23132a44 895 FileUtils.handleFileException(this.logPrefix(), 'Authorization', authorizationFile, error);
5ad8570f 896 }
23132a44
JB
897 } else {
898 logger.info(this.logPrefix() + ' No authorization file given in template file ' + this.stationTemplateFile + '. Not monitoring changes');
899 }
5ad8570f
JB
900 }
901
c0560973 902 private startStationTemplateFileMonitoring(): void {
23132a44 903 try {
71623267 904 // eslint-disable-next-line @typescript-eslint/no-misused-promises
23132a44
JB
905 fs.watch(this.stationTemplateFile).on('change', async (e): Promise<void> => {
906 try {
907 logger.debug(this.logPrefix() + ' Template file ' + this.stationTemplateFile + ' have changed, reload');
908 // Initialize
909 this.initialize();
910 // Stop the ATG
911 if (!this.stationInfo.AutomaticTransactionGenerator.enable &&
ad2f27c3 912 this.automaticTransactionGeneration) {
23132a44
JB
913 await this.automaticTransactionGeneration.stop();
914 }
915 // Start the ATG
916 this.startAutomaticTransactionGenerator();
917 // FIXME?: restart heartbeat and WebSocket ping when their interval values have changed
918 } catch (error) {
919 logger.error(this.logPrefix() + ' Charging station template file monitoring error: %j', error);
79411696 920 }
23132a44
JB
921 });
922 } catch (error) {
923 FileUtils.handleFileException(this.logPrefix(), 'Template', this.stationTemplateFile, error);
924 }
5ad8570f
JB
925 }
926
6e0964c8 927 private getReconnectExponentialDelay(): boolean | undefined {
c0560973 928 return !Utils.isUndefined(this.stationInfo.reconnectExponentialDelay) ? this.stationInfo.reconnectExponentialDelay : false;
5ad8570f
JB
929 }
930
6e0964c8 931 private async reconnect(error: any): Promise<void> {
136c90ba 932 // Stop heartbeat
c0560973 933 this.stopHeartbeat();
5ad8570f 934 // Stop the ATG if needed
ad2f27c3
JB
935 if (this.stationInfo.AutomaticTransactionGenerator.enable &&
936 this.stationInfo.AutomaticTransactionGenerator.stopOnConnectionFailure &&
937 this.automaticTransactionGeneration &&
938 !this.automaticTransactionGeneration.timeToStop) {
dd119a6b 939 await this.automaticTransactionGeneration.stop();
ad2f27c3 940 }
c0560973 941 if (this.autoReconnectRetryCount < this.getAutoReconnectMaxRetries() || this.getAutoReconnectMaxRetries() === -1) {
ad2f27c3 942 this.autoReconnectRetryCount++;
c0560973
JB
943 const reconnectDelay = (this.getReconnectExponentialDelay() ? Utils.exponentialDelay(this.autoReconnectRetryCount) : this.getConnectionTimeout() * 1000);
944 logger.error(`${this.logPrefix()} Socket: connection retry in ${Utils.roundTo(reconnectDelay, 2)}ms, timeout ${reconnectDelay - 100}ms`);
032d6efc 945 await Utils.sleep(reconnectDelay);
c0560973
JB
946 logger.error(this.logPrefix() + ' Socket: reconnecting try #' + this.autoReconnectRetryCount.toString());
947 this.openWSConnection({ handshakeTimeout: reconnectDelay - 100 });
ad2f27c3 948 this.hasSocketRestarted = true;
c0560973
JB
949 } else if (this.getAutoReconnectMaxRetries() !== -1) {
950 logger.error(`${this.logPrefix()} Socket reconnect failure: max retries reached (${this.autoReconnectRetryCount}) or retry disabled (${this.getAutoReconnectMaxRetries()})`);
5ad8570f
JB
951 }
952 }
953
6ed92bc1 954 private initTransactionAttributesOnConnector(connectorId: number): void {
8bce55bf 955 this.getConnector(connectorId).transactionStarted = false;
6ed92bc1
JB
956 this.getConnector(connectorId).energyActiveImportRegisterValue = 0;
957 this.getConnector(connectorId).transactionEnergyActiveImportRegisterValue = 0;
0a60c33c 958 }
7dde0b73
JB
959}
960