Convert sendTransactionBeginMeterValues to OCPP message sending handler
[e-mobility-charging-stations-simulator.git] / src / charging-station / ChargingStation.ts
CommitLineData
b4d34251
JB
1// Partial Copyright Jerome Benoit. 2021. All Rights Reserved.
2
e7aeea18
JB
3import {
4 AvailabilityType,
5 BootNotificationRequest,
6 CachedRequest,
7 IncomingRequest,
8 IncomingRequestCommand,
9 RequestCommand,
10} from '../types/ocpp/Requests';
efa43e52 11import { BootNotificationResponse, RegistrationStatus } from '../types/ocpp/Responses';
e7aeea18
JB
12import ChargingStationConfiguration, {
13 ConfigurationKey,
14} from '../types/ChargingStationConfiguration';
15import ChargingStationTemplate, {
16 CurrentType,
17 PowerUnits,
18 Voltage,
19} from '../types/ChargingStationTemplate';
20import {
21 ConnectorPhaseRotation,
22 StandardParametersKey,
23 SupportedFeatureProfiles,
24 VendorDefaultParametersKey,
25} from '../types/ocpp/Configuration';
0f3d5941 26import { MeterValue, MeterValueMeasurand, MeterValuePhase } from '../types/ocpp/MeterValues';
16b0d4e7 27import { WSError, WebSocketCloseEventStatusCode } from '../types/WebSocket';
9534e74e 28import WebSocket, { ClientOptions, Data, OPEN, RawData } from 'ws';
3f40bc9c 29
6af9012e 30import AutomaticTransactionGenerator from './AutomaticTransactionGenerator';
93b4a429 31import { ChargePointErrorCode } from '../types/ocpp/ChargePointErrorCode';
c0560973
JB
32import { ChargePointStatus } from '../types/ocpp/ChargePointStatus';
33import { ChargingProfile } from '../types/ocpp/ChargingProfile';
9ac86a7e 34import ChargingStationInfo from '../types/ChargingStationInfo';
ee0f106b 35import { ChargingStationWorkerMessageEvents } from '../types/ChargingStationWorker';
15042c5f 36import { ClientRequestArgs } from 'http';
6af9012e 37import Configuration from '../utils/Configuration';
057e2042 38import { ConnectorStatus } from '../types/ConnectorStatus';
63b48f77 39import Constants from '../utils/Constants';
14763b46 40import { ErrorType } from '../types/ocpp/ErrorType';
23132a44 41import FileUtils from '../utils/FileUtils';
d1888640 42import { JsonType } from '../types/JsonType';
d2a64eb5 43import { MessageType } from '../types/ocpp/MessageType';
e7171280 44import OCPP16IncomingRequestService from './ocpp/1.6/OCPP16IncomingRequestService';
c0560973
JB
45import OCPP16RequestService from './ocpp/1.6/OCPP16RequestService';
46import OCPP16ResponseService from './ocpp/1.6/OCPP16ResponseService';
68c993d5 47import { OCPP16ServiceUtils } from './ocpp/1.6/OCPP16ServiceUtils';
e58068fd 48import OCPPError from '../exception/OCPPError';
c0560973
JB
49import OCPPIncomingRequestService from './ocpp/OCPPIncomingRequestService';
50import OCPPRequestService from './ocpp/OCPPRequestService';
51import { OCPPVersion } from '../types/ocpp/OCPPVersion';
a6b3c6c3 52import PerformanceStatistics from '../performance/PerformanceStatistics';
057e2042 53import { SampledValueTemplate } from '../types/MeasurandPerPhaseSampledValueTemplates';
c0560973 54import { StopTransactionReason } from '../types/ocpp/Transaction';
2dcfe98e 55import { SupervisionUrlDistribution } from '../types/ConfigurationData';
57939a9d 56import { URL } from 'url';
6af9012e 57import Utils from '../utils/Utils';
3f40bc9c
JB
58import crypto from 'crypto';
59import fs from 'fs';
9f2e3130 60import logger from '../utils/Logger';
ee0f106b 61import { parentPort } from 'worker_threads';
bf1866b2 62import path from 'path';
3f40bc9c
JB
63
64export default class ChargingStation {
9f2e3130 65 public readonly id: string;
9e23580d 66 public readonly stationTemplateFile: string;
c0560973 67 public authorizedTags: string[];
6e0964c8 68 public stationInfo!: ChargingStationInfo;
9e23580d 69 public readonly connectors: Map<number, ConnectorStatus>;
6e0964c8 70 public configuration!: ChargingStationConfiguration;
6e0964c8 71 public wsConnection!: WebSocket;
9e23580d 72 public readonly requests: Map<string, CachedRequest>;
6e0964c8
JB
73 public performanceStatistics!: PerformanceStatistics;
74 public heartbeatSetInterval!: NodeJS.Timeout;
6e0964c8 75 public ocppRequestService!: OCPPRequestService;
9e23580d 76 private readonly index: number;
6e0964c8
JB
77 private bootNotificationRequest!: BootNotificationRequest;
78 private bootNotificationResponse!: BootNotificationResponse | null;
79 private connectorsConfigurationHash!: string;
a472cf2b 80 private ocppIncomingRequestService!: OCPPIncomingRequestService;
8e242273 81 private readonly messageBuffer: Set<string>;
12fc74d6 82 private wsConfiguredConnectionUrl!: URL;
265e4266 83 private wsConnectionRestarted: boolean;
a472cf2b 84 private stopped: boolean;
ad2f27c3 85 private autoReconnectRetryCount: number;
265e4266 86 private automaticTransactionGenerator!: AutomaticTransactionGenerator;
6e0964c8 87 private webSocketPingSetInterval!: NodeJS.Timeout;
6af9012e
JB
88
89 constructor(index: number, stationTemplateFile: string) {
1629a152 90 this.id = Utils.generateUUID();
ad2f27c3
JB
91 this.index = index;
92 this.stationTemplateFile = stationTemplateFile;
265e4266
JB
93 this.stopped = false;
94 this.wsConnectionRestarted = false;
ad2f27c3 95 this.autoReconnectRetryCount = 0;
9f2e3130 96 this.connectors = new Map<number, ConnectorStatus>();
32b02249 97 this.requests = new Map<string, CachedRequest>();
8e242273 98 this.messageBuffer = new Set<string>();
9f2e3130 99 this.initialize();
c0560973
JB
100 this.authorizedTags = this.getAuthorizedTags();
101 }
102
12fc74d6 103 get wsConnectionUrl(): URL {
e7aeea18
JB
104 return this.getSupervisionUrlOcppConfiguration()
105 ? new URL(
106 this.getConfigurationKey(
107 this.stationInfo.supervisionUrlOcppKey ?? VendorDefaultParametersKey.ConnectionUrl
108 ).value +
109 '/' +
110 this.stationInfo.chargingStationId
111 )
112 : this.wsConfiguredConnectionUrl;
12fc74d6
JB
113 }
114
c0560973 115 public logPrefix(): string {
54b1efe0 116 return Utils.logPrefix(` ${this.stationInfo.chargingStationId} |`);
c0560973
JB
117 }
118
802cfa13
JB
119 public getBootNotificationRequest(): BootNotificationRequest {
120 return this.bootNotificationRequest;
121 }
122
f4bf2abd 123 public getRandomIdTag(): string {
c37528f1 124 const index = Math.floor(Utils.secureRandom() * this.authorizedTags.length);
c0560973
JB
125 return this.authorizedTags[index];
126 }
127
128 public hasAuthorizedTags(): boolean {
129 return !Utils.isEmptyArray(this.authorizedTags);
130 }
131
6e0964c8 132 public getEnableStatistics(): boolean | undefined {
e7aeea18
JB
133 return !Utils.isUndefined(this.stationInfo.enableStatistics)
134 ? this.stationInfo.enableStatistics
135 : true;
c0560973
JB
136 }
137
a7fc8211
JB
138 public getMayAuthorizeAtRemoteStart(): boolean | undefined {
139 return this.stationInfo.mayAuthorizeAtRemoteStart ?? true;
140 }
141
6e0964c8 142 public getNumberOfPhases(): number | undefined {
7decf1b6 143 switch (this.getCurrentOutType()) {
4c2b4904 144 case CurrentType.AC:
e7aeea18
JB
145 return !Utils.isUndefined(this.stationInfo.numberOfPhases)
146 ? this.stationInfo.numberOfPhases
147 : 3;
4c2b4904 148 case CurrentType.DC:
c0560973
JB
149 return 0;
150 }
151 }
152
d5bff457 153 public isWebSocketConnectionOpened(): boolean {
e58068fd 154 return this?.wsConnection?.readyState === OPEN;
c0560973
JB
155 }
156
672fed6e
JB
157 public getRegistrationStatus(): RegistrationStatus {
158 return this?.bootNotificationResponse?.status;
159 }
160
73c4266d
JB
161 public isInUnknownState(): boolean {
162 return Utils.isNullOrUndefined(this?.bootNotificationResponse?.status);
163 }
164
16cd35ad
JB
165 public isInPendingState(): boolean {
166 return this?.bootNotificationResponse?.status === RegistrationStatus.PENDING;
167 }
168
169 public isInAcceptedState(): boolean {
e58068fd 170 return this?.bootNotificationResponse?.status === RegistrationStatus.ACCEPTED;
c0560973
JB
171 }
172
16cd35ad
JB
173 public isInRejectedState(): boolean {
174 return this?.bootNotificationResponse?.status === RegistrationStatus.REJECTED;
175 }
176
177 public isRegistered(): boolean {
73c4266d 178 return !this.isInUnknownState() && (this.isInAcceptedState() || this.isInPendingState());
16cd35ad
JB
179 }
180
c0560973 181 public isChargingStationAvailable(): boolean {
734d790d 182 return this.getConnectorStatus(0).availability === AvailabilityType.OPERATIVE;
c0560973
JB
183 }
184
185 public isConnectorAvailable(id: number): boolean {
9f2e3130 186 return id > 0 && this.getConnectorStatus(id).availability === AvailabilityType.OPERATIVE;
c0560973
JB
187 }
188
54544ef1
JB
189 public getNumberOfConnectors(): number {
190 return this.connectors.get(0) ? this.connectors.size - 1 : this.connectors.size;
191 }
192
734d790d
JB
193 public getConnectorStatus(id: number): ConnectorStatus {
194 return this.connectors.get(id);
c0560973
JB
195 }
196
4c2b4904
JB
197 public getCurrentOutType(): CurrentType | undefined {
198 return this.stationInfo.currentOutType ?? CurrentType.AC;
c0560973
JB
199 }
200
672fed6e
JB
201 public getOcppStrictCompliance(): boolean {
202 return this.stationInfo.ocppStrictCompliance ?? false;
203 }
204
6e0964c8 205 public getVoltageOut(): number | undefined {
e7aeea18
JB
206 const errMsg = `${this.logPrefix()} Unknown ${this.getCurrentOutType()} currentOutType in template file ${
207 this.stationTemplateFile
208 }, cannot define default voltage out`;
c0560973 209 let defaultVoltageOut: number;
7decf1b6 210 switch (this.getCurrentOutType()) {
4c2b4904
JB
211 case CurrentType.AC:
212 defaultVoltageOut = Voltage.VOLTAGE_230;
c0560973 213 break;
4c2b4904
JB
214 case CurrentType.DC:
215 defaultVoltageOut = Voltage.VOLTAGE_400;
c0560973
JB
216 break;
217 default:
9f2e3130 218 logger.error(errMsg);
290d006c 219 throw new Error(errMsg);
c0560973 220 }
e7aeea18
JB
221 return !Utils.isUndefined(this.stationInfo.voltageOut)
222 ? this.stationInfo.voltageOut
223 : defaultVoltageOut;
c0560973
JB
224 }
225
6e0964c8 226 public getTransactionIdTag(transactionId: number): string | undefined {
734d790d
JB
227 for (const connectorId of this.connectors.keys()) {
228 if (connectorId > 0 && this.getConnectorStatus(connectorId).transactionId === transactionId) {
229 return this.getConnectorStatus(connectorId).transactionIdTag;
c0560973
JB
230 }
231 }
232 }
233
6ed92bc1
JB
234 public getOutOfOrderEndMeterValues(): boolean {
235 return this.stationInfo.outOfOrderEndMeterValues ?? false;
236 }
237
238 public getBeginEndMeterValues(): boolean {
239 return this.stationInfo.beginEndMeterValues ?? false;
240 }
241
242 public getMeteringPerTransaction(): boolean {
243 return this.stationInfo.meteringPerTransaction ?? true;
244 }
245
fd0c36fa
JB
246 public getTransactionDataMeterValues(): boolean {
247 return this.stationInfo.transactionDataMeterValues ?? false;
248 }
249
9ccca265
JB
250 public getMainVoltageMeterValues(): boolean {
251 return this.stationInfo.mainVoltageMeterValues ?? true;
252 }
253
6b10669b
JB
254 public getPhaseLineToLineVoltageMeterValues(): boolean {
255 return this.stationInfo.phaseLineToLineVoltageMeterValues ?? false;
9bd87386
JB
256 }
257
6ed92bc1
JB
258 public getEnergyActiveImportRegisterByTransactionId(transactionId: number): number | undefined {
259 if (this.getMeteringPerTransaction()) {
734d790d 260 for (const connectorId of this.connectors.keys()) {
e7aeea18
JB
261 if (
262 connectorId > 0 &&
263 this.getConnectorStatus(connectorId).transactionId === transactionId
264 ) {
734d790d 265 return this.getConnectorStatus(connectorId).transactionEnergyActiveImportRegisterValue;
6ed92bc1
JB
266 }
267 }
268 }
734d790d
JB
269 for (const connectorId of this.connectors.keys()) {
270 if (connectorId > 0 && this.getConnectorStatus(connectorId).transactionId === transactionId) {
271 return this.getConnectorStatus(connectorId).energyActiveImportRegisterValue;
c0560973
JB
272 }
273 }
274 }
275
6ed92bc1
JB
276 public getEnergyActiveImportRegisterByConnectorId(connectorId: number): number | undefined {
277 if (this.getMeteringPerTransaction()) {
734d790d 278 return this.getConnectorStatus(connectorId).transactionEnergyActiveImportRegisterValue;
6ed92bc1 279 }
734d790d 280 return this.getConnectorStatus(connectorId).energyActiveImportRegisterValue;
6ed92bc1
JB
281 }
282
c0560973 283 public getAuthorizeRemoteTxRequests(): boolean {
e7aeea18
JB
284 const authorizeRemoteTxRequests = this.getConfigurationKey(
285 StandardParametersKey.AuthorizeRemoteTxRequests
286 );
287 return authorizeRemoteTxRequests
288 ? Utils.convertToBoolean(authorizeRemoteTxRequests.value)
289 : false;
c0560973
JB
290 }
291
292 public getLocalAuthListEnabled(): boolean {
e7aeea18
JB
293 const localAuthListEnabled = this.getConfigurationKey(
294 StandardParametersKey.LocalAuthListEnabled
295 );
c0560973
JB
296 return localAuthListEnabled ? Utils.convertToBoolean(localAuthListEnabled.value) : false;
297 }
298
299 public restartWebSocketPing(): void {
300 // Stop WebSocket ping
301 this.stopWebSocketPing();
302 // Start WebSocket ping
303 this.startWebSocketPing();
304 }
305
e7aeea18
JB
306 public getSampledValueTemplate(
307 connectorId: number,
308 measurand: MeterValueMeasurand = MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER,
309 phase?: MeterValuePhase
310 ): SampledValueTemplate | undefined {
9ed69c71 311 const onPhaseStr = phase ? `on phase ${phase} ` : '';
9ccca265 312 if (!Constants.SUPPORTED_MEASURANDS.includes(measurand)) {
e7aeea18
JB
313 logger.warn(
314 `${this.logPrefix()} Trying to get unsupported MeterValues measurand '${measurand}' ${onPhaseStr}in template on connectorId ${connectorId}`
315 );
9bd87386
JB
316 return;
317 }
e7aeea18
JB
318 if (
319 measurand !== MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER &&
320 !this.getConfigurationKey(StandardParametersKey.MeterValuesSampledData).value.includes(
321 measurand
322 )
323 ) {
324 logger.debug(
325 `${this.logPrefix()} Trying to get MeterValues measurand '${measurand}' ${onPhaseStr}in template on connectorId ${connectorId} not found in '${
326 StandardParametersKey.MeterValuesSampledData
327 }' OCPP parameter`
328 );
9ccca265
JB
329 return;
330 }
e7aeea18
JB
331 const sampledValueTemplates: SampledValueTemplate[] =
332 this.getConnectorStatus(connectorId).MeterValues;
333 for (
334 let index = 0;
335 !Utils.isEmptyArray(sampledValueTemplates) && index < sampledValueTemplates.length;
336 index++
337 ) {
338 if (
339 !Constants.SUPPORTED_MEASURANDS.includes(
340 sampledValueTemplates[index]?.measurand ??
341 MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER
342 )
343 ) {
344 logger.warn(
345 `${this.logPrefix()} Unsupported MeterValues measurand '${measurand}' ${onPhaseStr}in template on connectorId ${connectorId}`
346 );
347 } else if (
348 phase &&
349 sampledValueTemplates[index]?.phase === phase &&
350 sampledValueTemplates[index]?.measurand === measurand &&
351 this.getConfigurationKey(StandardParametersKey.MeterValuesSampledData).value.includes(
352 measurand
353 )
354 ) {
9ccca265 355 return sampledValueTemplates[index];
e7aeea18
JB
356 } else if (
357 !phase &&
358 !sampledValueTemplates[index].phase &&
359 sampledValueTemplates[index]?.measurand === measurand &&
360 this.getConfigurationKey(StandardParametersKey.MeterValuesSampledData).value.includes(
361 measurand
362 )
363 ) {
9ccca265 364 return sampledValueTemplates[index];
e7aeea18
JB
365 } else if (
366 measurand === MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER &&
367 (!sampledValueTemplates[index].measurand ||
368 sampledValueTemplates[index].measurand === measurand)
369 ) {
9ccca265
JB
370 return sampledValueTemplates[index];
371 }
372 }
9bd87386 373 if (measurand === MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER) {
7d75bee1 374 const errorMsg = `${this.logPrefix()} Missing MeterValues for default measurand '${measurand}' in template on connectorId ${connectorId}`;
9f2e3130 375 logger.error(errorMsg);
de96acad 376 throw new Error(errorMsg);
9ccca265 377 }
e7aeea18
JB
378 logger.debug(
379 `${this.logPrefix()} No MeterValues for measurand '${measurand}' ${onPhaseStr}in template on connectorId ${connectorId}`
380 );
9ccca265
JB
381 }
382
e644918b
JB
383 public getAutomaticTransactionGeneratorRequireAuthorize(): boolean {
384 return this.stationInfo.AutomaticTransactionGenerator.requireAuthorize ?? true;
385 }
386
c0560973 387 public startHeartbeat(): void {
e7aeea18
JB
388 if (
389 this.getHeartbeatInterval() &&
390 this.getHeartbeatInterval() > 0 &&
391 !this.heartbeatSetInterval
392 ) {
71623267
JB
393 // eslint-disable-next-line @typescript-eslint/no-misused-promises
394 this.heartbeatSetInterval = setInterval(async (): Promise<void> => {
94a464f9 395 await this.ocppRequestService.sendMessageHandler(RequestCommand.HEARTBEAT);
c0560973 396 }, this.getHeartbeatInterval());
e7aeea18
JB
397 logger.info(
398 this.logPrefix() +
399 ' Heartbeat started every ' +
400 Utils.formatDurationMilliSeconds(this.getHeartbeatInterval())
401 );
c0560973 402 } else if (this.heartbeatSetInterval) {
e7aeea18
JB
403 logger.info(
404 this.logPrefix() +
405 ' Heartbeat already started every ' +
406 Utils.formatDurationMilliSeconds(this.getHeartbeatInterval())
407 );
c0560973 408 } else {
e7aeea18
JB
409 logger.error(
410 `${this.logPrefix()} Heartbeat interval set to ${
411 this.getHeartbeatInterval()
412 ? Utils.formatDurationMilliSeconds(this.getHeartbeatInterval())
413 : this.getHeartbeatInterval()
414 }, not starting the heartbeat`
415 );
c0560973
JB
416 }
417 }
418
419 public restartHeartbeat(): void {
420 // Stop heartbeat
421 this.stopHeartbeat();
422 // Start heartbeat
423 this.startHeartbeat();
424 }
425
426 public startMeterValues(connectorId: number, interval: number): void {
427 if (connectorId === 0) {
e7aeea18
JB
428 logger.error(
429 `${this.logPrefix()} Trying to start MeterValues on connector Id ${connectorId.toString()}`
430 );
c0560973
JB
431 return;
432 }
734d790d 433 if (!this.getConnectorStatus(connectorId)) {
e7aeea18
JB
434 logger.error(
435 `${this.logPrefix()} Trying to start MeterValues on non existing connector Id ${connectorId.toString()}`
436 );
c0560973
JB
437 return;
438 }
734d790d 439 if (!this.getConnectorStatus(connectorId)?.transactionStarted) {
e7aeea18
JB
440 logger.error(
441 `${this.logPrefix()} Trying to start MeterValues on connector Id ${connectorId} with no transaction started`
442 );
c0560973 443 return;
e7aeea18
JB
444 } else if (
445 this.getConnectorStatus(connectorId)?.transactionStarted &&
446 !this.getConnectorStatus(connectorId)?.transactionId
447 ) {
448 logger.error(
449 `${this.logPrefix()} Trying to start MeterValues on connector Id ${connectorId} with no transaction id`
450 );
c0560973
JB
451 return;
452 }
453 if (interval > 0) {
71623267 454 // eslint-disable-next-line @typescript-eslint/no-misused-promises
e7aeea18 455 this.getConnectorStatus(connectorId).transactionSetInterval = setInterval(
9534e74e 456 // eslint-disable-next-line @typescript-eslint/no-misused-promises
e7aeea18 457 async (): Promise<void> => {
0f3d5941
JB
458 // FIXME: Implement OCPP version agnostic helpers
459 const meterValue: MeterValue = OCPP16ServiceUtils.buildMeterValue(
460 this,
e7aeea18
JB
461 connectorId,
462 this.getConnectorStatus(connectorId).transactionId,
463 interval
464 );
0f3d5941
JB
465 await this.ocppRequestService.sendMessageHandler(RequestCommand.METER_VALUES, {
466 connectorId,
467 transactionId: this.getConnectorStatus(connectorId).transactionId,
468 meterValue: [meterValue],
469 });
e7aeea18
JB
470 },
471 interval
472 );
c0560973 473 } else {
e7aeea18
JB
474 logger.error(
475 `${this.logPrefix()} Charging station ${
476 StandardParametersKey.MeterValueSampleInterval
477 } configuration set to ${
478 interval ? Utils.formatDurationMilliSeconds(interval) : interval
479 }, not sending MeterValues`
480 );
c0560973
JB
481 }
482 }
483
484 public start(): void {
7874b0b1
JB
485 if (this.getEnableStatistics()) {
486 this.performanceStatistics.start();
487 }
c0560973
JB
488 this.openWSConnection();
489 // Monitor authorization file
490 this.startAuthorizationFileMonitoring();
491 // Monitor station template file
492 this.startStationTemplateFileMonitoring();
8bf88613 493 // Handle WebSocket message
9534e74e
JB
494 this.wsConnection.on(
495 'message',
496 this.onMessage.bind(this) as (this: WebSocket, data: RawData, isBinary: boolean) => void
497 );
5dc8b1b5 498 // Handle WebSocket error
9534e74e
JB
499 this.wsConnection.on(
500 'error',
501 this.onError.bind(this) as (this: WebSocket, error: Error) => void
502 );
5dc8b1b5 503 // Handle WebSocket close
9534e74e
JB
504 this.wsConnection.on(
505 'close',
506 this.onClose.bind(this) as (this: WebSocket, code: number, reason: Buffer) => void
507 );
8bf88613 508 // Handle WebSocket open
9534e74e 509 this.wsConnection.on('open', this.onOpen.bind(this) as (this: WebSocket) => void);
5dc8b1b5 510 // Handle WebSocket ping
9534e74e 511 this.wsConnection.on('ping', this.onPing.bind(this) as (this: WebSocket, data: Buffer) => void);
5dc8b1b5 512 // Handle WebSocket pong
9534e74e 513 this.wsConnection.on('pong', this.onPong.bind(this) as (this: WebSocket, data: Buffer) => void);
e7aeea18
JB
514 parentPort.postMessage({
515 id: ChargingStationWorkerMessageEvents.STARTED,
516 data: { id: this.stationInfo.chargingStationId },
517 });
c0560973
JB
518 }
519
520 public async stop(reason: StopTransactionReason = StopTransactionReason.NONE): Promise<void> {
521 // Stop message sequence
522 await this.stopMessageSequence(reason);
734d790d
JB
523 for (const connectorId of this.connectors.keys()) {
524 if (connectorId > 0) {
93b4a429 525 await this.ocppRequestService.sendMessageHandler(RequestCommand.STATUS_NOTIFICATION, {
e7aeea18 526 connectorId,
93b4a429
JB
527 status: ChargePointStatus.UNAVAILABLE,
528 errorCode: ChargePointErrorCode.NO_ERROR,
529 });
734d790d 530 this.getConnectorStatus(connectorId).status = ChargePointStatus.UNAVAILABLE;
c0560973
JB
531 }
532 }
d5bff457 533 if (this.isWebSocketConnectionOpened()) {
c0560973
JB
534 this.wsConnection.close();
535 }
7874b0b1
JB
536 if (this.getEnableStatistics()) {
537 this.performanceStatistics.stop();
538 }
c0560973 539 this.bootNotificationResponse = null;
e7aeea18
JB
540 parentPort.postMessage({
541 id: ChargingStationWorkerMessageEvents.STOPPED,
542 data: { id: this.stationInfo.chargingStationId },
543 });
265e4266 544 this.stopped = true;
c0560973
JB
545 }
546
e7aeea18
JB
547 public getConfigurationKey(
548 key: string | StandardParametersKey,
549 caseInsensitive = false
550 ): ConfigurationKey | undefined {
7874b0b1 551 return this.configuration.configurationKey.find((configElement) => {
c0560973
JB
552 if (caseInsensitive) {
553 return configElement.key.toLowerCase() === key.toLowerCase();
554 }
555 return configElement.key === key;
556 });
c0560973
JB
557 }
558
e7aeea18
JB
559 public addConfigurationKey(
560 key: string | StandardParametersKey,
561 value: string,
562 options: { readonly?: boolean; visible?: boolean; reboot?: boolean } = {
563 readonly: false,
564 visible: true,
565 reboot: false,
566 }
567 ): void {
c0560973 568 const keyFound = this.getConfigurationKey(key);
12fc74d6
JB
569 const readonly = options.readonly;
570 const visible = options.visible;
571 const reboot = options.reboot;
c0560973
JB
572 if (!keyFound) {
573 this.configuration.configurationKey.push({
574 key,
575 readonly,
576 value,
577 visible,
578 reboot,
579 });
580 } else {
e7aeea18
JB
581 logger.error(
582 `${this.logPrefix()} Trying to add an already existing configuration key: %j`,
583 keyFound
584 );
c0560973
JB
585 }
586 }
587
588 public setConfigurationKeyValue(key: string | StandardParametersKey, value: string): void {
589 const keyFound = this.getConfigurationKey(key);
590 if (keyFound) {
591 const keyIndex = this.configuration.configurationKey.indexOf(keyFound);
592 this.configuration.configurationKey[keyIndex].value = value;
593 } else {
e7aeea18
JB
594 logger.error(
595 `${this.logPrefix()} Trying to set a value on a non existing configuration key: %j`,
596 { key, value }
597 );
c0560973
JB
598 }
599 }
600
a7fc8211
JB
601 public setChargingProfile(connectorId: number, cp: ChargingProfile): void {
602 let cpReplaced = false;
734d790d 603 if (!Utils.isEmptyArray(this.getConnectorStatus(connectorId).chargingProfiles)) {
e7aeea18
JB
604 this.getConnectorStatus(connectorId).chargingProfiles?.forEach(
605 (chargingProfile: ChargingProfile, index: number) => {
606 if (
607 chargingProfile.chargingProfileId === cp.chargingProfileId ||
608 (chargingProfile.stackLevel === cp.stackLevel &&
609 chargingProfile.chargingProfilePurpose === cp.chargingProfilePurpose)
610 ) {
611 this.getConnectorStatus(connectorId).chargingProfiles[index] = cp;
612 cpReplaced = true;
613 }
c0560973 614 }
e7aeea18 615 );
c0560973 616 }
734d790d 617 !cpReplaced && this.getConnectorStatus(connectorId).chargingProfiles?.push(cp);
c0560973
JB
618 }
619
a2653482
JB
620 public resetConnectorStatus(connectorId: number): void {
621 this.getConnectorStatus(connectorId).idTagLocalAuthorized = false;
622 this.getConnectorStatus(connectorId).idTagAuthorized = false;
623 this.getConnectorStatus(connectorId).transactionRemoteStarted = false;
734d790d 624 this.getConnectorStatus(connectorId).transactionStarted = false;
a2653482 625 delete this.getConnectorStatus(connectorId).localAuthorizeIdTag;
734d790d
JB
626 delete this.getConnectorStatus(connectorId).authorizeIdTag;
627 delete this.getConnectorStatus(connectorId).transactionId;
628 delete this.getConnectorStatus(connectorId).transactionIdTag;
629 this.getConnectorStatus(connectorId).transactionEnergyActiveImportRegisterValue = 0;
630 delete this.getConnectorStatus(connectorId).transactionBeginMeterValue;
dd119a6b 631 this.stopMeterValues(connectorId);
2e6f5966
JB
632 }
633
8e242273
JB
634 public bufferMessage(message: string): void {
635 this.messageBuffer.add(message);
3ba2381e
JB
636 }
637
8e242273
JB
638 private flushMessageBuffer() {
639 if (this.messageBuffer.size > 0) {
640 this.messageBuffer.forEach((message) => {
aef1b33a 641 // TODO: evaluate the need to track performance
77f00f84 642 this.wsConnection.send(message);
8e242273 643 this.messageBuffer.delete(message);
77f00f84
JB
644 });
645 }
646 }
647
1f5df42a
JB
648 private getSupervisionUrlOcppConfiguration(): boolean {
649 return this.stationInfo.supervisionUrlOcppConfiguration ?? false;
12fc74d6
JB
650 }
651
c0560973 652 private getChargingStationId(stationTemplate: ChargingStationTemplate): string {
ef6076c1 653 // In case of multiple instances: add instance index to charging station id
203bc097 654 const instanceIndex = process.env.CF_INSTANCE_INDEX ?? 0;
9ccca265 655 const idSuffix = stationTemplate.nameSuffix ?? '';
e7aeea18
JB
656 return stationTemplate.fixedName
657 ? stationTemplate.baseName
658 : stationTemplate.baseName +
659 '-' +
660 instanceIndex.toString() +
661 ('000000000' + this.index.toString()).substr(
662 ('000000000' + this.index.toString()).length - 4
663 ) +
664 idSuffix;
5ad8570f
JB
665 }
666
c0560973 667 private buildStationInfo(): ChargingStationInfo {
9ac86a7e 668 let stationTemplateFromFile: ChargingStationTemplate;
5ad8570f
JB
669 try {
670 // Load template file
ad2f27c3 671 const fileDescriptor = fs.openSync(this.stationTemplateFile, 'r');
e7aeea18
JB
672 stationTemplateFromFile = JSON.parse(
673 fs.readFileSync(fileDescriptor, 'utf8')
674 ) as ChargingStationTemplate;
5ad8570f
JB
675 fs.closeSync(fileDescriptor);
676 } catch (error) {
e7aeea18
JB
677 FileUtils.handleFileException(
678 this.logPrefix(),
679 'Template',
680 this.stationTemplateFile,
681 error as NodeJS.ErrnoException
682 );
5ad8570f 683 }
2dcfe98e
JB
684 const chargingStationId = this.getChargingStationId(stationTemplateFromFile);
685 // Deprecation template keys section
e7aeea18
JB
686 this.warnDeprecatedTemplateKey(
687 stationTemplateFromFile,
688 'supervisionUrl',
689 chargingStationId,
690 "Use 'supervisionUrls' instead"
691 );
2dcfe98e 692 this.convertDeprecatedTemplateKey(stationTemplateFromFile, 'supervisionUrl', 'supervisionUrls');
e7aeea18 693 const stationInfo: ChargingStationInfo = stationTemplateFromFile ?? ({} as ChargingStationInfo);
cd8dd457 694 stationInfo.wsOptions = stationTemplateFromFile?.wsOptions ?? {};
0a60c33c 695 if (!Utils.isEmptyArray(stationTemplateFromFile.power)) {
9ac86a7e 696 stationTemplateFromFile.power = stationTemplateFromFile.power as number[];
e7aeea18
JB
697 const powerArrayRandomIndex = Math.floor(
698 Utils.secureRandom() * stationTemplateFromFile.power.length
699 );
700 stationInfo.maxPower =
701 stationTemplateFromFile.powerUnit === PowerUnits.KILO_WATT
702 ? stationTemplateFromFile.power[powerArrayRandomIndex] * 1000
703 : stationTemplateFromFile.power[powerArrayRandomIndex];
5ad8570f 704 } else {
510f0fa5 705 stationTemplateFromFile.power = stationTemplateFromFile.power as number;
e7aeea18
JB
706 stationInfo.maxPower =
707 stationTemplateFromFile.powerUnit === PowerUnits.KILO_WATT
708 ? stationTemplateFromFile.power * 1000
709 : stationTemplateFromFile.power;
5ad8570f 710 }
fd0c36fa
JB
711 delete stationInfo.power;
712 delete stationInfo.powerUnit;
2dcfe98e 713 stationInfo.chargingStationId = chargingStationId;
e7aeea18
JB
714 stationInfo.resetTime = stationTemplateFromFile.resetTime
715 ? stationTemplateFromFile.resetTime * 1000
716 : Constants.CHARGING_STATION_DEFAULT_RESET_TIME;
9ac86a7e 717 return stationInfo;
5ad8570f
JB
718 }
719
1f5df42a 720 private getOcppVersion(): OCPPVersion {
c0560973
JB
721 return this.stationInfo.ocppVersion ? this.stationInfo.ocppVersion : OCPPVersion.VERSION_16;
722 }
723
724 private handleUnsupportedVersion(version: OCPPVersion) {
e7aeea18
JB
725 const errMsg = `${this.logPrefix()} Unsupported protocol version '${version}' configured in template file ${
726 this.stationTemplateFile
727 }`;
9f2e3130 728 logger.error(errMsg);
c0560973
JB
729 throw new Error(errMsg);
730 }
731
732 private initialize(): void {
733 this.stationInfo = this.buildStationInfo();
37486900 734 this.configuration = this.getTemplateChargingStationConfiguration();
798010fa 735 delete this.stationInfo.Configuration;
ad2f27c3
JB
736 this.bootNotificationRequest = {
737 chargePointModel: this.stationInfo.chargePointModel,
738 chargePointVendor: this.stationInfo.chargePointVendor,
e7aeea18
JB
739 ...(!Utils.isUndefined(this.stationInfo.chargeBoxSerialNumberPrefix) && {
740 chargeBoxSerialNumber: this.stationInfo.chargeBoxSerialNumberPrefix,
741 }),
742 ...(!Utils.isUndefined(this.stationInfo.firmwareVersion) && {
743 firmwareVersion: this.stationInfo.firmwareVersion,
744 }),
2e6f5966 745 };
0a60c33c 746 // Build connectors if needed
c0560973 747 const maxConnectors = this.getMaxNumberOfConnectors();
6ecb15e4 748 if (maxConnectors <= 0) {
e7aeea18
JB
749 logger.warn(
750 `${this.logPrefix()} Charging station template ${
751 this.stationTemplateFile
752 } with ${maxConnectors} connectors`
753 );
7abfea5f 754 }
c0560973 755 const templateMaxConnectors = this.getTemplateMaxNumberOfConnectors();
7abfea5f 756 if (templateMaxConnectors <= 0) {
e7aeea18
JB
757 logger.warn(
758 `${this.logPrefix()} Charging station template ${
759 this.stationTemplateFile
760 } with no connector configuration`
761 );
593cf3f9 762 }
ad2f27c3 763 if (!this.stationInfo.Connectors[0]) {
e7aeea18
JB
764 logger.warn(
765 `${this.logPrefix()} Charging station template ${
766 this.stationTemplateFile
767 } with no connector Id 0 configuration`
768 );
7abfea5f
JB
769 }
770 // Sanity check
e7aeea18
JB
771 if (
772 maxConnectors >
773 (this.stationInfo.Connectors[0] ? templateMaxConnectors - 1 : templateMaxConnectors) &&
774 !this.stationInfo.randomConnectors
775 ) {
776 logger.warn(
777 `${this.logPrefix()} Number of connectors exceeds the number of connector configurations in template ${
778 this.stationTemplateFile
779 }, forcing random connector configurations affectation`
780 );
ad2f27c3 781 this.stationInfo.randomConnectors = true;
6ecb15e4 782 }
e7aeea18
JB
783 const connectorsConfigHash = crypto
784 .createHash('sha256')
785 .update(JSON.stringify(this.stationInfo.Connectors) + maxConnectors.toString())
786 .digest('hex');
787 const connectorsConfigChanged =
788 this.connectors?.size !== 0 && this.connectorsConfigurationHash !== connectorsConfigHash;
54544ef1 789 if (this.connectors?.size === 0 || connectorsConfigChanged) {
e7aeea18 790 connectorsConfigChanged && this.connectors.clear();
ad2f27c3 791 this.connectorsConfigurationHash = connectorsConfigHash;
7abfea5f 792 // Add connector Id 0
6af9012e 793 let lastConnector = '0';
ad2f27c3 794 for (lastConnector in this.stationInfo.Connectors) {
734d790d 795 const lastConnectorId = Utils.convertToInt(lastConnector);
e7aeea18
JB
796 if (
797 lastConnectorId === 0 &&
798 this.getUseConnectorId0() &&
799 this.stationInfo.Connectors[lastConnector]
800 ) {
801 this.connectors.set(
802 lastConnectorId,
803 Utils.cloneObject<ConnectorStatus>(this.stationInfo.Connectors[lastConnector])
804 );
734d790d
JB
805 this.getConnectorStatus(lastConnectorId).availability = AvailabilityType.OPERATIVE;
806 if (Utils.isUndefined(this.getConnectorStatus(lastConnectorId)?.chargingProfiles)) {
807 this.getConnectorStatus(lastConnectorId).chargingProfiles = [];
418106c8 808 }
0a60c33c
JB
809 }
810 }
0a60c33c 811 // Generate all connectors
e7aeea18
JB
812 if (
813 (this.stationInfo.Connectors[0] ? templateMaxConnectors - 1 : templateMaxConnectors) > 0
814 ) {
7abfea5f 815 for (let index = 1; index <= maxConnectors; index++) {
e7aeea18
JB
816 const randConnectorId = this.stationInfo.randomConnectors
817 ? Utils.getRandomInteger(Utils.convertToInt(lastConnector), 1)
818 : index;
819 this.connectors.set(
820 index,
821 Utils.cloneObject<ConnectorStatus>(this.stationInfo.Connectors[randConnectorId])
822 );
734d790d
JB
823 this.getConnectorStatus(index).availability = AvailabilityType.OPERATIVE;
824 if (Utils.isUndefined(this.getConnectorStatus(index)?.chargingProfiles)) {
825 this.getConnectorStatus(index).chargingProfiles = [];
418106c8 826 }
7abfea5f 827 }
0a60c33c
JB
828 }
829 }
d4a73fb7 830 // Avoid duplication of connectors related information
ad2f27c3 831 delete this.stationInfo.Connectors;
0a60c33c 832 // Initialize transaction attributes on connectors
734d790d
JB
833 for (const connectorId of this.connectors.keys()) {
834 if (connectorId > 0 && !this.getConnectorStatus(connectorId)?.transactionStarted) {
a2653482 835 this.initializeConnectorStatus(connectorId);
0a60c33c
JB
836 }
837 }
e7aeea18
JB
838 this.wsConfiguredConnectionUrl = new URL(
839 this.getConfiguredSupervisionUrl().href + '/' + this.stationInfo.chargingStationId
840 );
1f5df42a 841 switch (this.getOcppVersion()) {
c0560973 842 case OCPPVersion.VERSION_16:
e7aeea18
JB
843 this.ocppIncomingRequestService =
844 OCPP16IncomingRequestService.getInstance<OCPP16IncomingRequestService>(this);
845 this.ocppRequestService = OCPP16RequestService.getInstance<OCPP16RequestService>(
846 this,
847 OCPP16ResponseService.getInstance<OCPP16ResponseService>(this)
848 );
c0560973
JB
849 break;
850 default:
1f5df42a 851 this.handleUnsupportedVersion(this.getOcppVersion());
c0560973
JB
852 break;
853 }
7abfea5f 854 // OCPP parameters
1f5df42a 855 this.initOcppParameters();
47e22477
JB
856 if (this.stationInfo.autoRegister) {
857 this.bootNotificationResponse = {
858 currentTime: new Date().toISOString(),
859 interval: this.getHeartbeatInterval() / 1000,
e7aeea18 860 status: RegistrationStatus.ACCEPTED,
47e22477
JB
861 };
862 }
147d0e0f
JB
863 this.stationInfo.powerDivider = this.getPowerDivider();
864 if (this.getEnableStatistics()) {
e7aeea18
JB
865 this.performanceStatistics = PerformanceStatistics.getInstance(
866 this.id,
867 this.stationInfo.chargingStationId,
868 this.wsConnectionUrl
869 );
147d0e0f
JB
870 }
871 }
872
1f5df42a 873 private initOcppParameters(): void {
e7aeea18
JB
874 if (
875 this.getSupervisionUrlOcppConfiguration() &&
876 !this.getConfigurationKey(
877 this.stationInfo.supervisionUrlOcppKey ?? VendorDefaultParametersKey.ConnectionUrl
878 )
879 ) {
880 this.addConfigurationKey(
881 VendorDefaultParametersKey.ConnectionUrl,
882 this.getConfiguredSupervisionUrl().href,
883 { reboot: true }
884 );
12fc74d6 885 }
36f6a92e 886 if (!this.getConfigurationKey(StandardParametersKey.SupportedFeatureProfiles)) {
e7aeea18
JB
887 this.addConfigurationKey(
888 StandardParametersKey.SupportedFeatureProfiles,
889 `${SupportedFeatureProfiles.Core},${SupportedFeatureProfiles.Local_Auth_List_Management},${SupportedFeatureProfiles.Smart_Charging}`
890 );
891 }
892 this.addConfigurationKey(
893 StandardParametersKey.NumberOfConnectors,
894 this.getNumberOfConnectors().toString(),
895 { readonly: true }
896 );
c0560973 897 if (!this.getConfigurationKey(StandardParametersKey.MeterValuesSampledData)) {
e7aeea18
JB
898 this.addConfigurationKey(
899 StandardParametersKey.MeterValuesSampledData,
900 MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER
901 );
7abfea5f 902 }
7e1dc878
JB
903 if (!this.getConfigurationKey(StandardParametersKey.ConnectorPhaseRotation)) {
904 const connectorPhaseRotation = [];
734d790d 905 for (const connectorId of this.connectors.keys()) {
7e1dc878 906 // AC/DC
734d790d
JB
907 if (connectorId === 0 && this.getNumberOfPhases() === 0) {
908 connectorPhaseRotation.push(`${connectorId}.${ConnectorPhaseRotation.RST}`);
909 } else if (connectorId > 0 && this.getNumberOfPhases() === 0) {
910 connectorPhaseRotation.push(`${connectorId}.${ConnectorPhaseRotation.NotApplicable}`);
e7aeea18 911 // AC
734d790d
JB
912 } else if (connectorId > 0 && this.getNumberOfPhases() === 1) {
913 connectorPhaseRotation.push(`${connectorId}.${ConnectorPhaseRotation.NotApplicable}`);
914 } else if (connectorId > 0 && this.getNumberOfPhases() === 3) {
915 connectorPhaseRotation.push(`${connectorId}.${ConnectorPhaseRotation.RST}`);
7e1dc878
JB
916 }
917 }
e7aeea18
JB
918 this.addConfigurationKey(
919 StandardParametersKey.ConnectorPhaseRotation,
920 connectorPhaseRotation.toString()
921 );
7e1dc878 922 }
36f6a92e
JB
923 if (!this.getConfigurationKey(StandardParametersKey.AuthorizeRemoteTxRequests)) {
924 this.addConfigurationKey(StandardParametersKey.AuthorizeRemoteTxRequests, 'true');
925 }
e7aeea18
JB
926 if (
927 !this.getConfigurationKey(StandardParametersKey.LocalAuthListEnabled) &&
928 this.getConfigurationKey(StandardParametersKey.SupportedFeatureProfiles).value.includes(
929 SupportedFeatureProfiles.Local_Auth_List_Management
930 )
931 ) {
36f6a92e
JB
932 this.addConfigurationKey(StandardParametersKey.LocalAuthListEnabled, 'false');
933 }
147d0e0f 934 if (!this.getConfigurationKey(StandardParametersKey.ConnectionTimeOut)) {
e7aeea18
JB
935 this.addConfigurationKey(
936 StandardParametersKey.ConnectionTimeOut,
937 Constants.DEFAULT_CONNECTION_TIMEOUT.toString()
938 );
8bce55bf 939 }
7dde0b73
JB
940 }
941
c0560973 942 private async onOpen(): Promise<void> {
e7aeea18
JB
943 logger.info(
944 `${this.logPrefix()} Connected to OCPP server through ${this.wsConnectionUrl.toString()}`
945 );
672fed6e 946 if (!this.isInAcceptedState()) {
c0560973
JB
947 // Send BootNotification
948 let registrationRetryCount = 0;
949 do {
6a8b180d
JB
950 this.bootNotificationResponse = (await this.ocppRequestService.sendMessageHandler(
951 RequestCommand.BOOT_NOTIFICATION,
952 {
953 chargePointModel: this.bootNotificationRequest.chargePointModel,
954 chargePointVendor: this.bootNotificationRequest.chargePointVendor,
955 chargeBoxSerialNumber: this.bootNotificationRequest.chargeBoxSerialNumber,
956 firmwareVersion: this.bootNotificationRequest.firmwareVersion,
957 },
958 { skipBufferingOnError: true }
959 )) as BootNotificationResponse;
672fed6e
JB
960 if (!this.isInAcceptedState()) {
961 this.getRegistrationMaxRetries() !== -1 && registrationRetryCount++;
e7aeea18
JB
962 await Utils.sleep(
963 this.bootNotificationResponse?.interval
964 ? this.bootNotificationResponse.interval * 1000
965 : Constants.OCPP_DEFAULT_BOOT_NOTIFICATION_INTERVAL
966 );
c0560973 967 }
e7aeea18
JB
968 } while (
969 !this.isInAcceptedState() &&
970 (registrationRetryCount <= this.getRegistrationMaxRetries() ||
971 this.getRegistrationMaxRetries() === -1)
972 );
c7db4718 973 }
16cd35ad 974 if (this.isInAcceptedState()) {
c0560973 975 await this.startMessageSequence();
265e4266
JB
976 this.stopped && (this.stopped = false);
977 if (this.wsConnectionRestarted && this.isWebSocketConnectionOpened()) {
caad9d6b
JB
978 this.flushMessageBuffer();
979 }
2e6f5966 980 } else {
e7aeea18
JB
981 logger.error(
982 `${this.logPrefix()} Registration failure: max retries reached (${this.getRegistrationMaxRetries()}) or retry disabled (${this.getRegistrationMaxRetries()})`
983 );
2e6f5966 984 }
c0560973 985 this.autoReconnectRetryCount = 0;
265e4266 986 this.wsConnectionRestarted = false;
2e6f5966
JB
987 }
988
6c65a295 989 private async onClose(code: number, reason: string): Promise<void> {
d09085e9 990 switch (code) {
6c65a295
JB
991 // Normal close
992 case WebSocketCloseEventStatusCode.CLOSE_NORMAL:
c0560973 993 case WebSocketCloseEventStatusCode.CLOSE_NO_STATUS:
e7aeea18
JB
994 logger.info(
995 `${this.logPrefix()} WebSocket normally closed with status '${Utils.getWebSocketCloseEventStatusString(
996 code
997 )}' and reason '${reason}'`
998 );
c0560973
JB
999 this.autoReconnectRetryCount = 0;
1000 break;
6c65a295
JB
1001 // Abnormal close
1002 default:
e7aeea18
JB
1003 logger.error(
1004 `${this.logPrefix()} WebSocket abnormally closed with status '${Utils.getWebSocketCloseEventStatusString(
1005 code
1006 )}' and reason '${reason}'`
1007 );
d09085e9 1008 await this.reconnect(code);
c0560973
JB
1009 break;
1010 }
2e6f5966
JB
1011 }
1012
16b0d4e7 1013 private async onMessage(data: Data): Promise<void> {
e7aeea18
JB
1014 let [messageType, messageId, commandName, commandPayload, errorDetails]: IncomingRequest = [
1015 0,
1016 '',
1017 '' as IncomingRequestCommand,
1018 {},
1019 {},
1020 ];
1021 let responseCallback: (
1022 payload: JsonType | string,
1023 requestPayload: JsonType | OCPPError
1024 ) => void;
9239b49a 1025 let rejectCallback: (error: OCPPError, requestStatistic?: boolean) => void;
32b02249 1026 let requestCommandName: RequestCommand | IncomingRequestCommand;
d1888640 1027 let requestPayload: JsonType | OCPPError;
32b02249 1028 let cachedRequest: CachedRequest;
c0560973
JB
1029 let errMsg: string;
1030 try {
16b0d4e7 1031 const request = JSON.parse(data.toString()) as IncomingRequest;
47e22477
JB
1032 if (Utils.isIterable(request)) {
1033 // Parse the message
1034 [messageType, messageId, commandName, commandPayload, errorDetails] = request;
1035 } else {
e7aeea18
JB
1036 throw new OCPPError(
1037 ErrorType.PROTOCOL_ERROR,
1038 'Incoming request is not iterable',
1039 commandName
1040 );
47e22477 1041 }
c0560973
JB
1042 // Check the Type of message
1043 switch (messageType) {
1044 // Incoming Message
1045 case MessageType.CALL_MESSAGE:
1046 if (this.getEnableStatistics()) {
aef1b33a 1047 this.performanceStatistics.addRequestStatistic(commandName, messageType);
c0560973
JB
1048 }
1049 // Process the call
e7aeea18
JB
1050 await this.ocppIncomingRequestService.handleRequest(
1051 messageId,
1052 commandName,
1053 commandPayload
1054 );
c0560973
JB
1055 break;
1056 // Outcome Message
1057 case MessageType.CALL_RESULT_MESSAGE:
1058 // Respond
16b0d4e7
JB
1059 cachedRequest = this.requests.get(messageId);
1060 if (Utils.isIterable(cachedRequest)) {
32b02249 1061 [responseCallback, , , requestPayload] = cachedRequest;
c0560973 1062 } else {
e7aeea18
JB
1063 throw new OCPPError(
1064 ErrorType.PROTOCOL_ERROR,
1065 `Cached request for message id ${messageId} response is not iterable`,
1066 commandName
1067 );
c0560973
JB
1068 }
1069 if (!responseCallback) {
1070 // Error
e7aeea18
JB
1071 throw new OCPPError(
1072 ErrorType.INTERNAL_ERROR,
1073 `Response for unknown message id ${messageId}`,
1074 commandName
1075 );
c0560973 1076 }
c0560973
JB
1077 responseCallback(commandName, requestPayload);
1078 break;
1079 // Error Message
1080 case MessageType.CALL_ERROR_MESSAGE:
16b0d4e7 1081 cachedRequest = this.requests.get(messageId);
16b0d4e7 1082 if (Utils.isIterable(cachedRequest)) {
32b02249 1083 [, rejectCallback, requestCommandName] = cachedRequest;
c0560973 1084 } else {
e7aeea18
JB
1085 throw new OCPPError(
1086 ErrorType.PROTOCOL_ERROR,
1087 `Cached request for message id ${messageId} error response is not iterable`
1088 );
c0560973 1089 }
32b02249
JB
1090 if (!rejectCallback) {
1091 // Error
e7aeea18
JB
1092 throw new OCPPError(
1093 ErrorType.INTERNAL_ERROR,
1094 `Error response for unknown message id ${messageId}`,
1095 requestCommandName
1096 );
32b02249 1097 }
e7aeea18
JB
1098 rejectCallback(
1099 new OCPPError(commandName, commandPayload.toString(), requestCommandName, errorDetails)
1100 );
c0560973
JB
1101 break;
1102 // Error
1103 default:
9534e74e 1104 // eslint-disable-next-line @typescript-eslint/restrict-template-expressions
c0560973 1105 errMsg = `${this.logPrefix()} Wrong message type ${messageType}`;
9f2e3130 1106 logger.error(errMsg);
14763b46 1107 throw new OCPPError(ErrorType.PROTOCOL_ERROR, errMsg);
c0560973
JB
1108 }
1109 } catch (error) {
1110 // Log
e7aeea18
JB
1111 logger.error(
1112 '%s Incoming OCPP message %j matching cached request %j processing error %j',
1113 this.logPrefix(),
1114 data.toString(),
1115 this.requests.get(messageId),
1116 error
1117 );
c0560973 1118 // Send error
e7aeea18
JB
1119 messageType === MessageType.CALL_MESSAGE &&
1120 (await this.ocppRequestService.sendError(messageId, error as OCPPError, commandName));
c0560973 1121 }
2328be1e
JB
1122 }
1123
c0560973 1124 private onPing(): void {
9f2e3130 1125 logger.debug(this.logPrefix() + ' Received a WS ping (rfc6455) from the server');
c0560973
JB
1126 }
1127
1128 private onPong(): void {
9f2e3130 1129 logger.debug(this.logPrefix() + ' Received a WS pong (rfc6455) from the server');
c0560973
JB
1130 }
1131
9534e74e 1132 private onError(error: WSError): void {
9f2e3130 1133 logger.error(this.logPrefix() + ' WebSocket error: %j', error);
c0560973
JB
1134 }
1135
1136 private getTemplateChargingStationConfiguration(): ChargingStationConfiguration {
e7aeea18 1137 return this.stationInfo.Configuration ?? ({} as ChargingStationConfiguration);
c0560973
JB
1138 }
1139
6e0964c8 1140 private getAuthorizationFile(): string | undefined {
e7aeea18
JB
1141 return (
1142 this.stationInfo.authorizationFile &&
1143 path.join(
1144 path.resolve(__dirname, '../'),
1145 'assets',
1146 path.basename(this.stationInfo.authorizationFile)
1147 )
1148 );
c0560973
JB
1149 }
1150
1151 private getAuthorizedTags(): string[] {
1152 let authorizedTags: string[] = [];
1153 const authorizationFile = this.getAuthorizationFile();
1154 if (authorizationFile) {
1155 try {
1156 // Load authorization file
1157 const fileDescriptor = fs.openSync(authorizationFile, 'r');
1158 authorizedTags = JSON.parse(fs.readFileSync(fileDescriptor, 'utf8')) as string[];
1159 fs.closeSync(fileDescriptor);
1160 } catch (error) {
e7aeea18
JB
1161 FileUtils.handleFileException(
1162 this.logPrefix(),
1163 'Authorization',
1164 authorizationFile,
1165 error as NodeJS.ErrnoException
1166 );
c0560973
JB
1167 }
1168 } else {
e7aeea18
JB
1169 logger.info(
1170 this.logPrefix() +
1171 ' No authorization file given in template file ' +
1172 this.stationTemplateFile
1173 );
8c4da341 1174 }
c0560973
JB
1175 return authorizedTags;
1176 }
1177
6e0964c8 1178 private getUseConnectorId0(): boolean | undefined {
e7aeea18
JB
1179 return !Utils.isUndefined(this.stationInfo.useConnectorId0)
1180 ? this.stationInfo.useConnectorId0
1181 : true;
8bce55bf
JB
1182 }
1183
c0560973 1184 private getNumberOfRunningTransactions(): number {
6ecb15e4 1185 let trxCount = 0;
734d790d
JB
1186 for (const connectorId of this.connectors.keys()) {
1187 if (connectorId > 0 && this.getConnectorStatus(connectorId)?.transactionStarted) {
6ecb15e4
JB
1188 trxCount++;
1189 }
1190 }
1191 return trxCount;
1192 }
1193
1f761b9a 1194 // 0 for disabling
6e0964c8 1195 private getConnectionTimeout(): number | undefined {
291cb255 1196 if (this.getConfigurationKey(StandardParametersKey.ConnectionTimeOut)) {
e7aeea18
JB
1197 return (
1198 parseInt(this.getConfigurationKey(StandardParametersKey.ConnectionTimeOut).value) ??
1199 Constants.DEFAULT_CONNECTION_TIMEOUT
1200 );
291cb255 1201 }
291cb255 1202 return Constants.DEFAULT_CONNECTION_TIMEOUT;
3574dfd3
JB
1203 }
1204
1f761b9a 1205 // -1 for unlimited, 0 for disabling
6e0964c8 1206 private getAutoReconnectMaxRetries(): number | undefined {
ad2f27c3
JB
1207 if (!Utils.isUndefined(this.stationInfo.autoReconnectMaxRetries)) {
1208 return this.stationInfo.autoReconnectMaxRetries;
3574dfd3
JB
1209 }
1210 if (!Utils.isUndefined(Configuration.getAutoReconnectMaxRetries())) {
1211 return Configuration.getAutoReconnectMaxRetries();
1212 }
1213 return -1;
1214 }
1215
ec977daf 1216 // 0 for disabling
6e0964c8 1217 private getRegistrationMaxRetries(): number | undefined {
ad2f27c3
JB
1218 if (!Utils.isUndefined(this.stationInfo.registrationMaxRetries)) {
1219 return this.stationInfo.registrationMaxRetries;
32a1eb7a
JB
1220 }
1221 return -1;
1222 }
1223
c0560973
JB
1224 private getPowerDivider(): number {
1225 let powerDivider = this.getNumberOfConnectors();
ad2f27c3 1226 if (this.stationInfo.powerSharedByConnectors) {
c0560973 1227 powerDivider = this.getNumberOfRunningTransactions();
6ecb15e4
JB
1228 }
1229 return powerDivider;
1230 }
1231
c0560973 1232 private getTemplateMaxNumberOfConnectors(): number {
ad2f27c3 1233 return Object.keys(this.stationInfo.Connectors).length;
7abfea5f
JB
1234 }
1235
c0560973 1236 private getMaxNumberOfConnectors(): number {
e58068fd 1237 let maxConnectors: number;
ad2f27c3
JB
1238 if (!Utils.isEmptyArray(this.stationInfo.numberOfConnectors)) {
1239 const numberOfConnectors = this.stationInfo.numberOfConnectors as number[];
6ecb15e4 1240 // Distribute evenly the number of connectors
ad2f27c3
JB
1241 maxConnectors = numberOfConnectors[(this.index - 1) % numberOfConnectors.length];
1242 } else if (!Utils.isUndefined(this.stationInfo.numberOfConnectors)) {
1243 maxConnectors = this.stationInfo.numberOfConnectors as number;
488fd3a7 1244 } else {
e7aeea18
JB
1245 maxConnectors = this.stationInfo.Connectors[0]
1246 ? this.getTemplateMaxNumberOfConnectors() - 1
1247 : this.getTemplateMaxNumberOfConnectors();
5ad8570f
JB
1248 }
1249 return maxConnectors;
2e6f5966
JB
1250 }
1251
c0560973 1252 private async startMessageSequence(): Promise<void> {
6114e6f1 1253 if (this.stationInfo.autoRegister) {
6a8b180d
JB
1254 await this.ocppRequestService.sendMessageHandler(
1255 RequestCommand.BOOT_NOTIFICATION,
1256 {
1257 chargePointModel: this.bootNotificationRequest.chargePointModel,
1258 chargePointVendor: this.bootNotificationRequest.chargePointVendor,
1259 chargeBoxSerialNumber: this.bootNotificationRequest.chargeBoxSerialNumber,
1260 firmwareVersion: this.bootNotificationRequest.firmwareVersion,
1261 },
1262 { skipBufferingOnError: true }
e7aeea18 1263 );
6114e6f1 1264 }
136c90ba 1265 // Start WebSocket ping
c0560973 1266 this.startWebSocketPing();
5ad8570f 1267 // Start heartbeat
c0560973 1268 this.startHeartbeat();
0a60c33c 1269 // Initialize connectors status
734d790d
JB
1270 for (const connectorId of this.connectors.keys()) {
1271 if (connectorId === 0) {
593cf3f9 1272 continue;
e7aeea18
JB
1273 } else if (
1274 !this.stopped &&
1275 !this.getConnectorStatus(connectorId)?.status &&
1276 this.getConnectorStatus(connectorId)?.bootStatus
1277 ) {
136c90ba 1278 // Send status in template at startup
93b4a429 1279 await this.ocppRequestService.sendMessageHandler(RequestCommand.STATUS_NOTIFICATION, {
e7aeea18 1280 connectorId,
93b4a429
JB
1281 status: this.getConnectorStatus(connectorId).bootStatus,
1282 errorCode: ChargePointErrorCode.NO_ERROR,
1283 });
e7aeea18
JB
1284 this.getConnectorStatus(connectorId).status =
1285 this.getConnectorStatus(connectorId).bootStatus;
1286 } else if (
1287 this.stopped &&
1288 this.getConnectorStatus(connectorId)?.status &&
1289 this.getConnectorStatus(connectorId)?.bootStatus
1290 ) {
136c90ba 1291 // Send status in template after reset
93b4a429 1292 await this.ocppRequestService.sendMessageHandler(RequestCommand.STATUS_NOTIFICATION, {
e7aeea18 1293 connectorId,
93b4a429
JB
1294 status: this.getConnectorStatus(connectorId).bootStatus,
1295 errorCode: ChargePointErrorCode.NO_ERROR,
1296 });
e7aeea18
JB
1297 this.getConnectorStatus(connectorId).status =
1298 this.getConnectorStatus(connectorId).bootStatus;
734d790d 1299 } else if (!this.stopped && this.getConnectorStatus(connectorId)?.status) {
136c90ba 1300 // Send previous status at template reload
93b4a429 1301 await this.ocppRequestService.sendMessageHandler(RequestCommand.STATUS_NOTIFICATION, {
e7aeea18 1302 connectorId,
93b4a429
JB
1303 status: this.getConnectorStatus(connectorId).status,
1304 errorCode: ChargePointErrorCode.NO_ERROR,
1305 });
5ad8570f 1306 } else {
136c90ba 1307 // Send default status
93b4a429 1308 await this.ocppRequestService.sendMessageHandler(RequestCommand.STATUS_NOTIFICATION, {
e7aeea18 1309 connectorId,
93b4a429
JB
1310 status: ChargePointStatus.AVAILABLE,
1311 errorCode: ChargePointErrorCode.NO_ERROR,
1312 });
734d790d 1313 this.getConnectorStatus(connectorId).status = ChargePointStatus.AVAILABLE;
5ad8570f
JB
1314 }
1315 }
0a60c33c 1316 // Start the ATG
dd119a6b 1317 this.startAutomaticTransactionGenerator();
dd119a6b
JB
1318 }
1319
1320 private startAutomaticTransactionGenerator() {
ad2f27c3 1321 if (this.stationInfo.AutomaticTransactionGenerator.enable) {
265e4266 1322 if (!this.automaticTransactionGenerator) {
73b9adec 1323 this.automaticTransactionGenerator = AutomaticTransactionGenerator.getInstance(this);
5ad8570f 1324 }
265e4266
JB
1325 if (!this.automaticTransactionGenerator.started) {
1326 this.automaticTransactionGenerator.start();
5ad8570f
JB
1327 }
1328 }
5ad8570f
JB
1329 }
1330
e7aeea18
JB
1331 private async stopMessageSequence(
1332 reason: StopTransactionReason = StopTransactionReason.NONE
1333 ): Promise<void> {
136c90ba 1334 // Stop WebSocket ping
c0560973 1335 this.stopWebSocketPing();
79411696 1336 // Stop heartbeat
c0560973 1337 this.stopHeartbeat();
79411696 1338 // Stop the ATG
e7aeea18
JB
1339 if (
1340 this.stationInfo.AutomaticTransactionGenerator.enable &&
1341 this.automaticTransactionGenerator?.started
1342 ) {
0045cef5 1343 this.automaticTransactionGenerator.stop();
79411696 1344 } else {
734d790d
JB
1345 for (const connectorId of this.connectors.keys()) {
1346 if (connectorId > 0 && this.getConnectorStatus(connectorId)?.transactionStarted) {
1347 const transactionId = this.getConnectorStatus(connectorId).transactionId;
68c993d5
JB
1348 if (
1349 this.getBeginEndMeterValues() &&
1350 this.getOcppStrictCompliance() &&
1351 !this.getOutOfOrderEndMeterValues()
1352 ) {
1353 // FIXME: Implement OCPP version agnostic helpers
1354 const transactionEndMeterValue = OCPP16ServiceUtils.buildTransactionEndMeterValue(
1355 this,
1356 connectorId,
1357 this.getEnergyActiveImportRegisterByTransactionId(transactionId)
1358 );
1359 await this.ocppRequestService.sendTransactionEndMeterValues(
1360 connectorId,
1361 transactionId,
1362 transactionEndMeterValue
1363 );
1364 }
1365 await this.ocppRequestService.sendMessageHandler(RequestCommand.STOP_TRANSACTION, {
e7aeea18 1366 transactionId,
68c993d5
JB
1367 meterStop: this.getEnergyActiveImportRegisterByTransactionId(transactionId),
1368 idTag: this.getTransactionIdTag(transactionId),
1369 reason,
1370 });
79411696
JB
1371 }
1372 }
1373 }
1374 }
1375
c0560973 1376 private startWebSocketPing(): void {
e7aeea18
JB
1377 const webSocketPingInterval: number = this.getConfigurationKey(
1378 StandardParametersKey.WebSocketPingInterval
1379 )
1380 ? Utils.convertToInt(
1381 this.getConfigurationKey(StandardParametersKey.WebSocketPingInterval).value
1382 )
9cd3dfb0 1383 : 0;
ad2f27c3
JB
1384 if (webSocketPingInterval > 0 && !this.webSocketPingSetInterval) {
1385 this.webSocketPingSetInterval = setInterval(() => {
d5bff457 1386 if (this.isWebSocketConnectionOpened()) {
e7aeea18
JB
1387 this.wsConnection.ping((): void => {
1388 /* This is intentional */
1389 });
136c90ba
JB
1390 }
1391 }, webSocketPingInterval * 1000);
e7aeea18
JB
1392 logger.info(
1393 this.logPrefix() +
1394 ' WebSocket ping started every ' +
1395 Utils.formatDurationSeconds(webSocketPingInterval)
1396 );
ad2f27c3 1397 } else if (this.webSocketPingSetInterval) {
e7aeea18
JB
1398 logger.info(
1399 this.logPrefix() +
1400 ' WebSocket ping every ' +
1401 Utils.formatDurationSeconds(webSocketPingInterval) +
1402 ' already started'
1403 );
136c90ba 1404 } else {
e7aeea18
JB
1405 logger.error(
1406 `${this.logPrefix()} WebSocket ping interval set to ${
1407 webSocketPingInterval
1408 ? Utils.formatDurationSeconds(webSocketPingInterval)
1409 : webSocketPingInterval
1410 }, not starting the WebSocket ping`
1411 );
136c90ba
JB
1412 }
1413 }
1414
c0560973 1415 private stopWebSocketPing(): void {
ad2f27c3
JB
1416 if (this.webSocketPingSetInterval) {
1417 clearInterval(this.webSocketPingSetInterval);
136c90ba
JB
1418 }
1419 }
1420
e7aeea18
JB
1421 private warnDeprecatedTemplateKey(
1422 template: ChargingStationTemplate,
1423 key: string,
1424 chargingStationId: string,
1425 logMsgToAppend = ''
1426 ): void {
2dcfe98e 1427 if (!Utils.isUndefined(template[key])) {
e7aeea18
JB
1428 const logPrefixStr = ` ${chargingStationId} |`;
1429 logger.warn(
1430 `${Utils.logPrefix(logPrefixStr)} Deprecated template key '${key}' usage in file '${
1431 this.stationTemplateFile
1432 }'${logMsgToAppend && '. ' + logMsgToAppend}`
1433 );
2dcfe98e
JB
1434 }
1435 }
1436
e7aeea18
JB
1437 private convertDeprecatedTemplateKey(
1438 template: ChargingStationTemplate,
1439 deprecatedKey: string,
1440 key: string
1441 ): void {
2dcfe98e 1442 if (!Utils.isUndefined(template[deprecatedKey])) {
c0f4be74 1443 template[key] = template[deprecatedKey] as unknown;
2dcfe98e
JB
1444 delete template[deprecatedKey];
1445 }
1446 }
1447
1f5df42a 1448 private getConfiguredSupervisionUrl(): URL {
e7aeea18
JB
1449 const supervisionUrls = Utils.cloneObject<string | string[]>(
1450 this.stationInfo.supervisionUrls ?? Configuration.getSupervisionUrls()
1451 );
c0560973 1452 if (!Utils.isEmptyArray(supervisionUrls)) {
2dcfe98e
JB
1453 let urlIndex = 0;
1454 switch (Configuration.getSupervisionUrlDistribution()) {
1455 case SupervisionUrlDistribution.ROUND_ROBIN:
1456 urlIndex = (this.index - 1) % supervisionUrls.length;
1457 break;
1458 case SupervisionUrlDistribution.RANDOM:
1459 // Get a random url
1460 urlIndex = Math.floor(Utils.secureRandom() * supervisionUrls.length);
1461 break;
1462 case SupervisionUrlDistribution.SEQUENTIAL:
1463 if (this.index <= supervisionUrls.length) {
1464 urlIndex = this.index - 1;
1465 } else {
e7aeea18
JB
1466 logger.warn(
1467 `${this.logPrefix()} No more configured supervision urls available, using the first one`
1468 );
2dcfe98e
JB
1469 }
1470 break;
1471 default:
e7aeea18
JB
1472 logger.error(
1473 `${this.logPrefix()} Unknown supervision url distribution '${Configuration.getSupervisionUrlDistribution()}' from values '${SupervisionUrlDistribution.toString()}', defaulting to ${
1474 SupervisionUrlDistribution.ROUND_ROBIN
1475 }`
1476 );
2dcfe98e
JB
1477 urlIndex = (this.index - 1) % supervisionUrls.length;
1478 break;
c0560973 1479 }
2dcfe98e 1480 return new URL(supervisionUrls[urlIndex]);
c0560973 1481 }
57939a9d 1482 return new URL(supervisionUrls as string);
136c90ba
JB
1483 }
1484
6e0964c8 1485 private getHeartbeatInterval(): number | undefined {
c0560973
JB
1486 const HeartbeatInterval = this.getConfigurationKey(StandardParametersKey.HeartbeatInterval);
1487 if (HeartbeatInterval) {
1488 return Utils.convertToInt(HeartbeatInterval.value) * 1000;
1489 }
1490 const HeartBeatInterval = this.getConfigurationKey(StandardParametersKey.HeartBeatInterval);
1491 if (HeartBeatInterval) {
1492 return Utils.convertToInt(HeartBeatInterval.value) * 1000;
0a60c33c 1493 }
e7aeea18
JB
1494 !this.stationInfo.autoRegister &&
1495 logger.warn(
1496 `${this.logPrefix()} Heartbeat interval configuration key not set, using default value: ${
1497 Constants.DEFAULT_HEARTBEAT_INTERVAL
1498 }`
1499 );
47e22477 1500 return Constants.DEFAULT_HEARTBEAT_INTERVAL;
0a60c33c
JB
1501 }
1502
c0560973 1503 private stopHeartbeat(): void {
ad2f27c3
JB
1504 if (this.heartbeatSetInterval) {
1505 clearInterval(this.heartbeatSetInterval);
7dde0b73 1506 }
5ad8570f
JB
1507 }
1508
e7aeea18
JB
1509 private openWSConnection(
1510 options: ClientOptions & ClientRequestArgs = this.stationInfo.wsOptions,
1511 forceCloseOpened = false
1512 ): void {
37486900 1513 options.handshakeTimeout = options?.handshakeTimeout ?? this.getConnectionTimeout() * 1000;
e7aeea18
JB
1514 if (
1515 !Utils.isNullOrUndefined(this.stationInfo.supervisionUser) &&
1516 !Utils.isNullOrUndefined(this.stationInfo.supervisionPassword)
1517 ) {
15042c5f
JB
1518 options.auth = `${this.stationInfo.supervisionUser}:${this.stationInfo.supervisionPassword}`;
1519 }
d5bff457 1520 if (this.isWebSocketConnectionOpened() && forceCloseOpened) {
c0560973
JB
1521 this.wsConnection.close();
1522 }
88184022 1523 let protocol: string;
1f5df42a 1524 switch (this.getOcppVersion()) {
c0560973
JB
1525 case OCPPVersion.VERSION_16:
1526 protocol = 'ocpp' + OCPPVersion.VERSION_16;
1527 break;
1528 default:
1f5df42a 1529 this.handleUnsupportedVersion(this.getOcppVersion());
c0560973
JB
1530 break;
1531 }
1532 this.wsConnection = new WebSocket(this.wsConnectionUrl, protocol, options);
e7aeea18
JB
1533 logger.info(
1534 this.logPrefix() + ' Open OCPP connection to URL ' + this.wsConnectionUrl.toString()
1535 );
136c90ba
JB
1536 }
1537
dd119a6b 1538 private stopMeterValues(connectorId: number) {
734d790d
JB
1539 if (this.getConnectorStatus(connectorId)?.transactionSetInterval) {
1540 clearInterval(this.getConnectorStatus(connectorId).transactionSetInterval);
dd119a6b
JB
1541 }
1542 }
1543
c0560973 1544 private startAuthorizationFileMonitoring(): void {
23132a44
JB
1545 const authorizationFile = this.getAuthorizationFile();
1546 if (authorizationFile) {
5ad8570f 1547 try {
3ec10737
JB
1548 fs.watch(authorizationFile, (event, filename) => {
1549 if (filename && event === 'change') {
1550 try {
e7aeea18
JB
1551 logger.debug(
1552 this.logPrefix() +
1553 ' Authorization file ' +
1554 authorizationFile +
1555 ' have changed, reload'
1556 );
3ec10737
JB
1557 // Initialize authorizedTags
1558 this.authorizedTags = this.getAuthorizedTags();
1559 } catch (error) {
9f2e3130 1560 logger.error(this.logPrefix() + ' Authorization file monitoring error: %j', error);
3ec10737 1561 }
23132a44
JB
1562 }
1563 });
5ad8570f 1564 } catch (error) {
e7aeea18
JB
1565 FileUtils.handleFileException(
1566 this.logPrefix(),
1567 'Authorization',
1568 authorizationFile,
1569 error as NodeJS.ErrnoException
1570 );
5ad8570f 1571 }
23132a44 1572 } else {
e7aeea18
JB
1573 logger.info(
1574 this.logPrefix() +
1575 ' No authorization file given in template file ' +
1576 this.stationTemplateFile +
1577 '. Not monitoring changes'
1578 );
23132a44 1579 }
5ad8570f
JB
1580 }
1581
c0560973 1582 private startStationTemplateFileMonitoring(): void {
23132a44 1583 try {
b809adf1 1584 fs.watch(this.stationTemplateFile, (event, filename): void => {
3ec10737
JB
1585 if (filename && event === 'change') {
1586 try {
e7aeea18
JB
1587 logger.debug(
1588 this.logPrefix() +
1589 ' Template file ' +
1590 this.stationTemplateFile +
1591 ' have changed, reload'
1592 );
3ec10737
JB
1593 // Initialize
1594 this.initialize();
1595 // Restart the ATG
e7aeea18
JB
1596 if (
1597 !this.stationInfo.AutomaticTransactionGenerator.enable &&
1598 this.automaticTransactionGenerator
1599 ) {
0045cef5 1600 this.automaticTransactionGenerator.stop();
3ec10737
JB
1601 }
1602 this.startAutomaticTransactionGenerator();
1603 if (this.getEnableStatistics()) {
1604 this.performanceStatistics.restart();
1605 } else {
1606 this.performanceStatistics.stop();
1607 }
1608 // FIXME?: restart heartbeat and WebSocket ping when their interval values have changed
1609 } catch (error) {
e7aeea18
JB
1610 logger.error(
1611 this.logPrefix() + ' Charging station template file monitoring error: %j',
1612 error
1613 );
087a502d 1614 }
79411696 1615 }
23132a44
JB
1616 });
1617 } catch (error) {
e7aeea18
JB
1618 FileUtils.handleFileException(
1619 this.logPrefix(),
1620 'Template',
1621 this.stationTemplateFile,
1622 error as NodeJS.ErrnoException
1623 );
23132a44 1624 }
5ad8570f
JB
1625 }
1626
6e0964c8 1627 private getReconnectExponentialDelay(): boolean | undefined {
e7aeea18
JB
1628 return !Utils.isUndefined(this.stationInfo.reconnectExponentialDelay)
1629 ? this.stationInfo.reconnectExponentialDelay
1630 : false;
5ad8570f
JB
1631 }
1632
d09085e9 1633 private async reconnect(code: number): Promise<void> {
7874b0b1
JB
1634 // Stop WebSocket ping
1635 this.stopWebSocketPing();
136c90ba 1636 // Stop heartbeat
c0560973 1637 this.stopHeartbeat();
5ad8570f 1638 // Stop the ATG if needed
e7aeea18
JB
1639 if (
1640 this.stationInfo.AutomaticTransactionGenerator.enable &&
ad2f27c3 1641 this.stationInfo.AutomaticTransactionGenerator.stopOnConnectionFailure &&
e7aeea18
JB
1642 this.automaticTransactionGenerator?.started
1643 ) {
0045cef5 1644 this.automaticTransactionGenerator.stop();
ad2f27c3 1645 }
e7aeea18
JB
1646 if (
1647 this.autoReconnectRetryCount < this.getAutoReconnectMaxRetries() ||
1648 this.getAutoReconnectMaxRetries() === -1
1649 ) {
ad2f27c3 1650 this.autoReconnectRetryCount++;
e7aeea18
JB
1651 const reconnectDelay = this.getReconnectExponentialDelay()
1652 ? Utils.exponentialDelay(this.autoReconnectRetryCount)
1653 : this.getConnectionTimeout() * 1000;
1654 const reconnectTimeout = reconnectDelay - 100 > 0 && reconnectDelay;
1655 logger.error(
1656 `${this.logPrefix()} WebSocket: connection retry in ${Utils.roundTo(
1657 reconnectDelay,
1658 2
1659 )}ms, timeout ${reconnectTimeout}ms`
1660 );
032d6efc 1661 await Utils.sleep(reconnectDelay);
e7aeea18
JB
1662 logger.error(
1663 this.logPrefix() +
1664 ' WebSocket: reconnecting try #' +
1665 this.autoReconnectRetryCount.toString()
1666 );
1667 this.openWSConnection(
1668 { ...this.stationInfo.wsOptions, handshakeTimeout: reconnectTimeout },
1669 true
1670 );
265e4266 1671 this.wsConnectionRestarted = true;
c0560973 1672 } else if (this.getAutoReconnectMaxRetries() !== -1) {
e7aeea18
JB
1673 logger.error(
1674 `${this.logPrefix()} WebSocket reconnect failure: max retries reached (${
1675 this.autoReconnectRetryCount
1676 }) or retry disabled (${this.getAutoReconnectMaxRetries()})`
1677 );
5ad8570f
JB
1678 }
1679 }
1680
a2653482
JB
1681 private initializeConnectorStatus(connectorId: number): void {
1682 this.getConnectorStatus(connectorId).idTagLocalAuthorized = false;
1683 this.getConnectorStatus(connectorId).idTagAuthorized = false;
1684 this.getConnectorStatus(connectorId).transactionRemoteStarted = false;
734d790d
JB
1685 this.getConnectorStatus(connectorId).transactionStarted = false;
1686 this.getConnectorStatus(connectorId).energyActiveImportRegisterValue = 0;
1687 this.getConnectorStatus(connectorId).transactionEnergyActiveImportRegisterValue = 0;
0a60c33c 1688 }
7dde0b73 1689}