Refine comment at CS configuration file handling
[e-mobility-charging-stations-simulator.git] / src / charging-station / ChargingStation.ts
CommitLineData
b4d34251
JB
1// Partial Copyright Jerome Benoit. 2021. All Rights Reserved.
2
cc6e8ab5 3import { ACElectricUtils, DCElectricUtils } from '../utils/ElectricUtils';
e7aeea18
JB
4import {
5 AvailabilityType,
6 BootNotificationRequest,
7 CachedRequest,
ef6fa3fb 8 HeartbeatRequest,
e7aeea18
JB
9 IncomingRequest,
10 IncomingRequestCommand,
ef6fa3fb 11 MeterValuesRequest,
e7aeea18 12 RequestCommand,
ef6fa3fb 13 StatusNotificationRequest,
e7aeea18 14} from '../types/ocpp/Requests';
f22266fd
JB
15import {
16 BootNotificationResponse,
b3ec7bc1 17 ErrorResponse,
f22266fd
JB
18 HeartbeatResponse,
19 MeterValuesResponse,
20 RegistrationStatus,
b3ec7bc1 21 Response,
f22266fd
JB
22 StatusNotificationResponse,
23} from '../types/ocpp/Responses';
cfa9539e
JB
24import {
25 ChargingProfile,
26 ChargingRateUnitType,
27 ChargingSchedulePeriod,
28} from '../types/ocpp/ChargingProfile';
2484ac1e
JB
29import ChargingStationConfiguration, { Section } from '../types/ChargingStationConfiguration';
30import ChargingStationOcppConfiguration, {
e7aeea18 31 ConfigurationKey,
2484ac1e 32} from '../types/ChargingStationOcppConfiguration';
e7aeea18 33import ChargingStationTemplate, {
cc6e8ab5 34 AmpereUnits,
e7aeea18
JB
35 CurrentType,
36 PowerUnits,
37 Voltage,
2484ac1e 38 WsOptions,
e7aeea18
JB
39} from '../types/ChargingStationTemplate';
40import {
41 ConnectorPhaseRotation,
42 StandardParametersKey,
43 SupportedFeatureProfiles,
44 VendorDefaultParametersKey,
45} from '../types/ocpp/Configuration';
0f3d5941 46import { MeterValue, MeterValueMeasurand, MeterValuePhase } from '../types/ocpp/MeterValues';
ef6fa3fb
JB
47import {
48 StopTransactionReason,
49 StopTransactionRequest,
50 StopTransactionResponse,
51} from '../types/ocpp/Transaction';
16b0d4e7 52import { WSError, WebSocketCloseEventStatusCode } from '../types/WebSocket';
2484ac1e 53import WebSocket, { Data, OPEN, RawData } from 'ws';
3f40bc9c 54
6af9012e 55import AutomaticTransactionGenerator from './AutomaticTransactionGenerator';
93b4a429 56import { ChargePointErrorCode } from '../types/ocpp/ChargePointErrorCode';
c0560973 57import { ChargePointStatus } from '../types/ocpp/ChargePointStatus';
9ac86a7e 58import ChargingStationInfo from '../types/ChargingStationInfo';
ee0f106b 59import { ChargingStationWorkerMessageEvents } from '../types/ChargingStationWorker';
6af9012e 60import Configuration from '../utils/Configuration';
057e2042 61import { ConnectorStatus } from '../types/ConnectorStatus';
63b48f77 62import Constants from '../utils/Constants';
14763b46 63import { ErrorType } from '../types/ocpp/ErrorType';
a95873d8 64import { FileType } from '../types/FileType';
23132a44 65import FileUtils from '../utils/FileUtils';
d1888640 66import { JsonType } from '../types/JsonType';
d2a64eb5 67import { MessageType } from '../types/ocpp/MessageType';
e7171280 68import OCPP16IncomingRequestService from './ocpp/1.6/OCPP16IncomingRequestService';
c0560973
JB
69import OCPP16RequestService from './ocpp/1.6/OCPP16RequestService';
70import OCPP16ResponseService from './ocpp/1.6/OCPP16ResponseService';
68c993d5 71import { OCPP16ServiceUtils } from './ocpp/1.6/OCPP16ServiceUtils';
e58068fd 72import OCPPError from '../exception/OCPPError';
c0560973
JB
73import OCPPIncomingRequestService from './ocpp/OCPPIncomingRequestService';
74import OCPPRequestService from './ocpp/OCPPRequestService';
75import { OCPPVersion } from '../types/ocpp/OCPPVersion';
a6b3c6c3 76import PerformanceStatistics from '../performance/PerformanceStatistics';
057e2042 77import { SampledValueTemplate } from '../types/MeasurandPerPhaseSampledValueTemplates';
2dcfe98e 78import { SupervisionUrlDistribution } from '../types/ConfigurationData';
57939a9d 79import { URL } from 'url';
6af9012e 80import Utils from '../utils/Utils';
3f40bc9c
JB
81import crypto from 'crypto';
82import fs from 'fs';
9f2e3130 83import logger from '../utils/Logger';
ee0f106b 84import { parentPort } from 'worker_threads';
bf1866b2 85import path from 'path';
3f40bc9c
JB
86
87export default class ChargingStation {
3f94cab5 88 public hashId!: string;
2484ac1e 89 public readonly templateFile: string;
c0560973 90 public authorizedTags: string[];
6e0964c8 91 public stationInfo!: ChargingStationInfo;
9e23580d 92 public readonly connectors: Map<number, ConnectorStatus>;
2484ac1e 93 public ocppConfiguration!: ChargingStationOcppConfiguration;
6e0964c8 94 public wsConnection!: WebSocket;
9e23580d 95 public readonly requests: Map<string, CachedRequest>;
6e0964c8
JB
96 public performanceStatistics!: PerformanceStatistics;
97 public heartbeatSetInterval!: NodeJS.Timeout;
6e0964c8 98 public ocppRequestService!: OCPPRequestService;
ae711c83 99 public bootNotificationResponse!: BootNotificationResponse | null;
9e23580d 100 private readonly index: number;
073bd098 101 private configurationFile!: string;
6e0964c8 102 private bootNotificationRequest!: BootNotificationRequest;
6e0964c8 103 private connectorsConfigurationHash!: string;
a472cf2b 104 private ocppIncomingRequestService!: OCPPIncomingRequestService;
8e242273 105 private readonly messageBuffer: Set<string>;
12fc74d6 106 private wsConfiguredConnectionUrl!: URL;
265e4266 107 private wsConnectionRestarted: boolean;
a472cf2b 108 private stopped: boolean;
ad2f27c3 109 private autoReconnectRetryCount: number;
265e4266 110 private automaticTransactionGenerator!: AutomaticTransactionGenerator;
6e0964c8 111 private webSocketPingSetInterval!: NodeJS.Timeout;
6af9012e 112
2484ac1e 113 constructor(index: number, templateFile: string) {
ad2f27c3 114 this.index = index;
2484ac1e 115 this.templateFile = templateFile;
265e4266
JB
116 this.stopped = false;
117 this.wsConnectionRestarted = false;
ad2f27c3 118 this.autoReconnectRetryCount = 0;
9f2e3130 119 this.connectors = new Map<number, ConnectorStatus>();
32b02249 120 this.requests = new Map<string, CachedRequest>();
8e242273 121 this.messageBuffer = new Set<string>();
9f2e3130 122 this.initialize();
c0560973
JB
123 this.authorizedTags = this.getAuthorizedTags();
124 }
125
25f5a959 126 private get wsConnectionUrl(): URL {
e7aeea18
JB
127 return this.getSupervisionUrlOcppConfiguration()
128 ? new URL(
a59737e3 129 this.getConfigurationKey(this.getSupervisionUrlOcppKey()).value +
e7aeea18
JB
130 '/' +
131 this.stationInfo.chargingStationId
132 )
133 : this.wsConfiguredConnectionUrl;
12fc74d6
JB
134 }
135
c0560973 136 public logPrefix(): string {
54b1efe0 137 return Utils.logPrefix(` ${this.stationInfo.chargingStationId} |`);
c0560973
JB
138 }
139
802cfa13
JB
140 public getBootNotificationRequest(): BootNotificationRequest {
141 return this.bootNotificationRequest;
142 }
143
f4bf2abd 144 public getRandomIdTag(): string {
c37528f1 145 const index = Math.floor(Utils.secureRandom() * this.authorizedTags.length);
c0560973
JB
146 return this.authorizedTags[index];
147 }
148
149 public hasAuthorizedTags(): boolean {
150 return !Utils.isEmptyArray(this.authorizedTags);
151 }
152
6e0964c8 153 public getEnableStatistics(): boolean | undefined {
e7aeea18
JB
154 return !Utils.isUndefined(this.stationInfo.enableStatistics)
155 ? this.stationInfo.enableStatistics
156 : true;
c0560973
JB
157 }
158
a7fc8211
JB
159 public getMayAuthorizeAtRemoteStart(): boolean | undefined {
160 return this.stationInfo.mayAuthorizeAtRemoteStart ?? true;
161 }
162
6e0964c8 163 public getNumberOfPhases(): number | undefined {
7decf1b6 164 switch (this.getCurrentOutType()) {
4c2b4904 165 case CurrentType.AC:
e7aeea18
JB
166 return !Utils.isUndefined(this.stationInfo.numberOfPhases)
167 ? this.stationInfo.numberOfPhases
168 : 3;
4c2b4904 169 case CurrentType.DC:
c0560973
JB
170 return 0;
171 }
172 }
173
d5bff457 174 public isWebSocketConnectionOpened(): boolean {
e58068fd 175 return this?.wsConnection?.readyState === OPEN;
c0560973
JB
176 }
177
672fed6e
JB
178 public getRegistrationStatus(): RegistrationStatus {
179 return this?.bootNotificationResponse?.status;
180 }
181
73c4266d
JB
182 public isInUnknownState(): boolean {
183 return Utils.isNullOrUndefined(this?.bootNotificationResponse?.status);
184 }
185
16cd35ad
JB
186 public isInPendingState(): boolean {
187 return this?.bootNotificationResponse?.status === RegistrationStatus.PENDING;
188 }
189
190 public isInAcceptedState(): boolean {
e58068fd 191 return this?.bootNotificationResponse?.status === RegistrationStatus.ACCEPTED;
c0560973
JB
192 }
193
16cd35ad
JB
194 public isInRejectedState(): boolean {
195 return this?.bootNotificationResponse?.status === RegistrationStatus.REJECTED;
196 }
197
198 public isRegistered(): boolean {
73c4266d 199 return !this.isInUnknownState() && (this.isInAcceptedState() || this.isInPendingState());
16cd35ad
JB
200 }
201
c0560973 202 public isChargingStationAvailable(): boolean {
734d790d 203 return this.getConnectorStatus(0).availability === AvailabilityType.OPERATIVE;
c0560973
JB
204 }
205
206 public isConnectorAvailable(id: number): boolean {
9f2e3130 207 return id > 0 && this.getConnectorStatus(id).availability === AvailabilityType.OPERATIVE;
c0560973
JB
208 }
209
54544ef1
JB
210 public getNumberOfConnectors(): number {
211 return this.connectors.get(0) ? this.connectors.size - 1 : this.connectors.size;
212 }
213
734d790d
JB
214 public getConnectorStatus(id: number): ConnectorStatus {
215 return this.connectors.get(id);
c0560973
JB
216 }
217
4c2b4904
JB
218 public getCurrentOutType(): CurrentType | undefined {
219 return this.stationInfo.currentOutType ?? CurrentType.AC;
c0560973
JB
220 }
221
672fed6e
JB
222 public getOcppStrictCompliance(): boolean {
223 return this.stationInfo.ocppStrictCompliance ?? false;
224 }
225
6e0964c8 226 public getVoltageOut(): number | undefined {
e7aeea18 227 const errMsg = `${this.logPrefix()} Unknown ${this.getCurrentOutType()} currentOutType in template file ${
2484ac1e 228 this.templateFile
e7aeea18 229 }, cannot define default voltage out`;
c0560973 230 let defaultVoltageOut: number;
7decf1b6 231 switch (this.getCurrentOutType()) {
4c2b4904
JB
232 case CurrentType.AC:
233 defaultVoltageOut = Voltage.VOLTAGE_230;
c0560973 234 break;
4c2b4904
JB
235 case CurrentType.DC:
236 defaultVoltageOut = Voltage.VOLTAGE_400;
c0560973
JB
237 break;
238 default:
9f2e3130 239 logger.error(errMsg);
290d006c 240 throw new Error(errMsg);
c0560973 241 }
e7aeea18
JB
242 return !Utils.isUndefined(this.stationInfo.voltageOut)
243 ? this.stationInfo.voltageOut
244 : defaultVoltageOut;
c0560973
JB
245 }
246
ad8537a7 247 public getConnectorMaximumAvailablePower(connectorId: number): number {
d20f43b5 248 let connectorAmperageLimitationPowerLimit: number;
b47d68d7
JB
249 if (
250 !Utils.isNullOrUndefined(this.getAmperageLimitation()) &&
251 this.getAmperageLimitation() < this.stationInfo.maximumAmperage
252 ) {
4160ae28
JB
253 connectorAmperageLimitationPowerLimit =
254 (this.getCurrentOutType() === CurrentType.AC
cc6e8ab5
JB
255 ? ACElectricUtils.powerTotal(
256 this.getNumberOfPhases(),
257 this.getVoltageOut(),
da57964c 258 this.getAmperageLimitation() * this.getNumberOfConnectors()
cc6e8ab5 259 )
4160ae28
JB
260 : DCElectricUtils.power(this.getVoltageOut(), this.getAmperageLimitation())) /
261 this.stationInfo.powerDivider;
cc6e8ab5 262 }
0642c3d2 263 const connectorMaximumPower = this.getMaximumPower() / this.stationInfo.powerDivider;
7b872eaa 264 const connectorChargingProfilePowerLimit = this.getChargingProfilePowerLimit(connectorId);
ad8537a7
JB
265 return Math.min(
266 isNaN(connectorMaximumPower) ? Infinity : connectorMaximumPower,
267 isNaN(connectorAmperageLimitationPowerLimit)
268 ? Infinity
269 : connectorAmperageLimitationPowerLimit,
270 isNaN(connectorChargingProfilePowerLimit) ? Infinity : connectorChargingProfilePowerLimit
271 );
cc6e8ab5
JB
272 }
273
6e0964c8 274 public getTransactionIdTag(transactionId: number): string | undefined {
734d790d
JB
275 for (const connectorId of this.connectors.keys()) {
276 if (connectorId > 0 && this.getConnectorStatus(connectorId).transactionId === transactionId) {
277 return this.getConnectorStatus(connectorId).transactionIdTag;
c0560973
JB
278 }
279 }
280 }
281
6ed92bc1
JB
282 public getOutOfOrderEndMeterValues(): boolean {
283 return this.stationInfo.outOfOrderEndMeterValues ?? false;
284 }
285
286 public getBeginEndMeterValues(): boolean {
287 return this.stationInfo.beginEndMeterValues ?? false;
288 }
289
290 public getMeteringPerTransaction(): boolean {
291 return this.stationInfo.meteringPerTransaction ?? true;
292 }
293
fd0c36fa
JB
294 public getTransactionDataMeterValues(): boolean {
295 return this.stationInfo.transactionDataMeterValues ?? false;
296 }
297
9ccca265
JB
298 public getMainVoltageMeterValues(): boolean {
299 return this.stationInfo.mainVoltageMeterValues ?? true;
300 }
301
6b10669b
JB
302 public getPhaseLineToLineVoltageMeterValues(): boolean {
303 return this.stationInfo.phaseLineToLineVoltageMeterValues ?? false;
9bd87386
JB
304 }
305
f479a792 306 public getConnectorIdByTransactionId(transactionId: number): number | undefined {
734d790d 307 for (const connectorId of this.connectors.keys()) {
f479a792
JB
308 if (
309 connectorId > 0 &&
310 this.getConnectorStatus(connectorId)?.transactionId === transactionId
311 ) {
312 return connectorId;
c0560973
JB
313 }
314 }
315 }
316
cbad1217
JB
317 public getEnergyActiveImportRegisterByTransactionId(transactionId: number): number | undefined {
318 const transactionConnectorStatus = this.getConnectorStatus(
319 this.getConnectorIdByTransactionId(transactionId)
320 );
321 if (this.getMeteringPerTransaction()) {
322 return transactionConnectorStatus?.transactionEnergyActiveImportRegisterValue;
323 }
324 return transactionConnectorStatus?.energyActiveImportRegisterValue;
325 }
326
6ed92bc1 327 public getEnergyActiveImportRegisterByConnectorId(connectorId: number): number | undefined {
cbad1217 328 const connectorStatus = this.getConnectorStatus(connectorId);
6ed92bc1 329 if (this.getMeteringPerTransaction()) {
cbad1217 330 return connectorStatus?.transactionEnergyActiveImportRegisterValue;
6ed92bc1 331 }
cbad1217 332 return connectorStatus?.energyActiveImportRegisterValue;
6ed92bc1
JB
333 }
334
c0560973 335 public getAuthorizeRemoteTxRequests(): boolean {
e7aeea18
JB
336 const authorizeRemoteTxRequests = this.getConfigurationKey(
337 StandardParametersKey.AuthorizeRemoteTxRequests
338 );
339 return authorizeRemoteTxRequests
340 ? Utils.convertToBoolean(authorizeRemoteTxRequests.value)
341 : false;
c0560973
JB
342 }
343
344 public getLocalAuthListEnabled(): boolean {
e7aeea18
JB
345 const localAuthListEnabled = this.getConfigurationKey(
346 StandardParametersKey.LocalAuthListEnabled
347 );
c0560973
JB
348 return localAuthListEnabled ? Utils.convertToBoolean(localAuthListEnabled.value) : false;
349 }
350
351 public restartWebSocketPing(): void {
352 // Stop WebSocket ping
353 this.stopWebSocketPing();
354 // Start WebSocket ping
355 this.startWebSocketPing();
356 }
357
e7aeea18
JB
358 public getSampledValueTemplate(
359 connectorId: number,
360 measurand: MeterValueMeasurand = MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER,
361 phase?: MeterValuePhase
362 ): SampledValueTemplate | undefined {
9ed69c71 363 const onPhaseStr = phase ? `on phase ${phase} ` : '';
9ccca265 364 if (!Constants.SUPPORTED_MEASURANDS.includes(measurand)) {
e7aeea18
JB
365 logger.warn(
366 `${this.logPrefix()} Trying to get unsupported MeterValues measurand '${measurand}' ${onPhaseStr}in template on connectorId ${connectorId}`
367 );
9bd87386
JB
368 return;
369 }
e7aeea18
JB
370 if (
371 measurand !== MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER &&
68cb8b91 372 !this.getConfigurationKey(StandardParametersKey.MeterValuesSampledData)?.value.includes(
e7aeea18
JB
373 measurand
374 )
375 ) {
376 logger.debug(
377 `${this.logPrefix()} Trying to get MeterValues measurand '${measurand}' ${onPhaseStr}in template on connectorId ${connectorId} not found in '${
378 StandardParametersKey.MeterValuesSampledData
379 }' OCPP parameter`
380 );
9ccca265
JB
381 return;
382 }
e7aeea18
JB
383 const sampledValueTemplates: SampledValueTemplate[] =
384 this.getConnectorStatus(connectorId).MeterValues;
385 for (
386 let index = 0;
387 !Utils.isEmptyArray(sampledValueTemplates) && index < sampledValueTemplates.length;
388 index++
389 ) {
390 if (
391 !Constants.SUPPORTED_MEASURANDS.includes(
392 sampledValueTemplates[index]?.measurand ??
393 MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER
394 )
395 ) {
396 logger.warn(
397 `${this.logPrefix()} Unsupported MeterValues measurand '${measurand}' ${onPhaseStr}in template on connectorId ${connectorId}`
398 );
399 } else if (
400 phase &&
401 sampledValueTemplates[index]?.phase === phase &&
402 sampledValueTemplates[index]?.measurand === measurand &&
68cb8b91 403 this.getConfigurationKey(StandardParametersKey.MeterValuesSampledData)?.value.includes(
e7aeea18
JB
404 measurand
405 )
406 ) {
9ccca265 407 return sampledValueTemplates[index];
e7aeea18
JB
408 } else if (
409 !phase &&
410 !sampledValueTemplates[index].phase &&
411 sampledValueTemplates[index]?.measurand === measurand &&
68cb8b91 412 this.getConfigurationKey(StandardParametersKey.MeterValuesSampledData)?.value.includes(
e7aeea18
JB
413 measurand
414 )
415 ) {
9ccca265 416 return sampledValueTemplates[index];
e7aeea18
JB
417 } else if (
418 measurand === MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER &&
419 (!sampledValueTemplates[index].measurand ||
420 sampledValueTemplates[index].measurand === measurand)
421 ) {
9ccca265
JB
422 return sampledValueTemplates[index];
423 }
424 }
9bd87386 425 if (measurand === MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER) {
7d75bee1 426 const errorMsg = `${this.logPrefix()} Missing MeterValues for default measurand '${measurand}' in template on connectorId ${connectorId}`;
9f2e3130 427 logger.error(errorMsg);
de96acad 428 throw new Error(errorMsg);
9ccca265 429 }
e7aeea18
JB
430 logger.debug(
431 `${this.logPrefix()} No MeterValues for measurand '${measurand}' ${onPhaseStr}in template on connectorId ${connectorId}`
432 );
9ccca265
JB
433 }
434
e644918b
JB
435 public getAutomaticTransactionGeneratorRequireAuthorize(): boolean {
436 return this.stationInfo.AutomaticTransactionGenerator.requireAuthorize ?? true;
437 }
438
c0560973 439 public startHeartbeat(): void {
e7aeea18
JB
440 if (
441 this.getHeartbeatInterval() &&
442 this.getHeartbeatInterval() > 0 &&
443 !this.heartbeatSetInterval
444 ) {
71623267
JB
445 // eslint-disable-next-line @typescript-eslint/no-misused-promises
446 this.heartbeatSetInterval = setInterval(async (): Promise<void> => {
f7f98c68 447 await this.ocppRequestService.requestHandler<HeartbeatRequest, HeartbeatResponse>(
f22266fd
JB
448 RequestCommand.HEARTBEAT
449 );
c0560973 450 }, this.getHeartbeatInterval());
e7aeea18
JB
451 logger.info(
452 this.logPrefix() +
453 ' Heartbeat started every ' +
454 Utils.formatDurationMilliSeconds(this.getHeartbeatInterval())
455 );
c0560973 456 } else if (this.heartbeatSetInterval) {
e7aeea18
JB
457 logger.info(
458 this.logPrefix() +
459 ' Heartbeat already started every ' +
460 Utils.formatDurationMilliSeconds(this.getHeartbeatInterval())
461 );
c0560973 462 } else {
e7aeea18
JB
463 logger.error(
464 `${this.logPrefix()} Heartbeat interval set to ${
465 this.getHeartbeatInterval()
466 ? Utils.formatDurationMilliSeconds(this.getHeartbeatInterval())
467 : this.getHeartbeatInterval()
468 }, not starting the heartbeat`
469 );
c0560973
JB
470 }
471 }
472
473 public restartHeartbeat(): void {
474 // Stop heartbeat
475 this.stopHeartbeat();
476 // Start heartbeat
477 this.startHeartbeat();
478 }
479
480 public startMeterValues(connectorId: number, interval: number): void {
481 if (connectorId === 0) {
e7aeea18
JB
482 logger.error(
483 `${this.logPrefix()} Trying to start MeterValues on connector Id ${connectorId.toString()}`
484 );
c0560973
JB
485 return;
486 }
734d790d 487 if (!this.getConnectorStatus(connectorId)) {
e7aeea18
JB
488 logger.error(
489 `${this.logPrefix()} Trying to start MeterValues on non existing connector Id ${connectorId.toString()}`
490 );
c0560973
JB
491 return;
492 }
734d790d 493 if (!this.getConnectorStatus(connectorId)?.transactionStarted) {
e7aeea18
JB
494 logger.error(
495 `${this.logPrefix()} Trying to start MeterValues on connector Id ${connectorId} with no transaction started`
496 );
c0560973 497 return;
e7aeea18
JB
498 } else if (
499 this.getConnectorStatus(connectorId)?.transactionStarted &&
500 !this.getConnectorStatus(connectorId)?.transactionId
501 ) {
502 logger.error(
503 `${this.logPrefix()} Trying to start MeterValues on connector Id ${connectorId} with no transaction id`
504 );
c0560973
JB
505 return;
506 }
507 if (interval > 0) {
71623267 508 // eslint-disable-next-line @typescript-eslint/no-misused-promises
e7aeea18 509 this.getConnectorStatus(connectorId).transactionSetInterval = setInterval(
9534e74e 510 // eslint-disable-next-line @typescript-eslint/no-misused-promises
e7aeea18 511 async (): Promise<void> => {
0f3d5941
JB
512 // FIXME: Implement OCPP version agnostic helpers
513 const meterValue: MeterValue = OCPP16ServiceUtils.buildMeterValue(
514 this,
e7aeea18
JB
515 connectorId,
516 this.getConnectorStatus(connectorId).transactionId,
517 interval
518 );
f7f98c68 519 await this.ocppRequestService.requestHandler<MeterValuesRequest, MeterValuesResponse>(
f22266fd
JB
520 RequestCommand.METER_VALUES,
521 {
522 connectorId,
523 transactionId: this.getConnectorStatus(connectorId).transactionId,
524 meterValue: [meterValue],
525 }
526 );
e7aeea18
JB
527 },
528 interval
529 );
c0560973 530 } else {
e7aeea18
JB
531 logger.error(
532 `${this.logPrefix()} Charging station ${
533 StandardParametersKey.MeterValueSampleInterval
534 } configuration set to ${
535 interval ? Utils.formatDurationMilliSeconds(interval) : interval
536 }, not sending MeterValues`
537 );
c0560973
JB
538 }
539 }
540
541 public start(): void {
7874b0b1
JB
542 if (this.getEnableStatistics()) {
543 this.performanceStatistics.start();
544 }
c0560973 545 this.openWSConnection();
94bb24d5
JB
546 // Handle WebSocket message
547 this.wsConnection.on(
548 'message',
549 this.onMessage.bind(this) as (this: WebSocket, data: RawData, isBinary: boolean) => void
550 );
551 // Handle WebSocket error
552 this.wsConnection.on(
553 'error',
554 this.onError.bind(this) as (this: WebSocket, error: Error) => void
555 );
556 // Handle WebSocket close
557 this.wsConnection.on(
558 'close',
559 this.onClose.bind(this) as (this: WebSocket, code: number, reason: Buffer) => void
560 );
561 // Handle WebSocket open
562 this.wsConnection.on('open', this.onOpen.bind(this) as (this: WebSocket) => void);
563 // Handle WebSocket ping
564 this.wsConnection.on('ping', this.onPing.bind(this) as (this: WebSocket, data: Buffer) => void);
565 // Handle WebSocket pong
566 this.wsConnection.on('pong', this.onPong.bind(this) as (this: WebSocket, data: Buffer) => void);
c0560973 567 // Monitor authorization file
a95873d8
JB
568 FileUtils.watchJsonFile<string[]>(
569 this.logPrefix(),
570 FileType.Authorization,
571 this.getAuthorizationFile(),
572 this.authorizedTags
573 );
574 // Monitor charging station template file
575 FileUtils.watchJsonFile(
576 this.logPrefix(),
577 FileType.ChargingStationTemplate,
2484ac1e 578 this.templateFile,
a95873d8
JB
579 null,
580 (event, filename): void => {
581 if (filename && event === 'change') {
582 try {
583 logger.debug(
584 `${this.logPrefix()} ${FileType.ChargingStationTemplate} ${
2484ac1e 585 this.templateFile
a95873d8
JB
586 } file have changed, reload`
587 );
588 // Initialize
589 this.initialize();
590 // Restart the ATG
591 if (
592 !this.stationInfo.AutomaticTransactionGenerator.enable &&
593 this.automaticTransactionGenerator
594 ) {
595 this.automaticTransactionGenerator.stop();
596 }
597 this.startAutomaticTransactionGenerator();
598 if (this.getEnableStatistics()) {
599 this.performanceStatistics.restart();
600 } else {
601 this.performanceStatistics.stop();
602 }
603 // FIXME?: restart heartbeat and WebSocket ping when their interval values have changed
604 } catch (error) {
605 logger.error(
606 `${this.logPrefix()} ${FileType.ChargingStationTemplate} file monitoring error: %j`,
607 error
608 );
609 }
610 }
611 }
612 );
e7aeea18
JB
613 parentPort.postMessage({
614 id: ChargingStationWorkerMessageEvents.STARTED,
615 data: { id: this.stationInfo.chargingStationId },
616 });
c0560973
JB
617 }
618
619 public async stop(reason: StopTransactionReason = StopTransactionReason.NONE): Promise<void> {
620 // Stop message sequence
621 await this.stopMessageSequence(reason);
734d790d
JB
622 for (const connectorId of this.connectors.keys()) {
623 if (connectorId > 0) {
f7f98c68 624 await this.ocppRequestService.requestHandler<
ef6fa3fb
JB
625 StatusNotificationRequest,
626 StatusNotificationResponse
627 >(RequestCommand.STATUS_NOTIFICATION, {
628 connectorId,
629 status: ChargePointStatus.UNAVAILABLE,
630 errorCode: ChargePointErrorCode.NO_ERROR,
631 });
734d790d 632 this.getConnectorStatus(connectorId).status = ChargePointStatus.UNAVAILABLE;
c0560973
JB
633 }
634 }
d5bff457 635 if (this.isWebSocketConnectionOpened()) {
c0560973
JB
636 this.wsConnection.close();
637 }
7874b0b1
JB
638 if (this.getEnableStatistics()) {
639 this.performanceStatistics.stop();
640 }
c0560973 641 this.bootNotificationResponse = null;
e7aeea18
JB
642 parentPort.postMessage({
643 id: ChargingStationWorkerMessageEvents.STOPPED,
644 data: { id: this.stationInfo.chargingStationId },
645 });
265e4266 646 this.stopped = true;
c0560973
JB
647 }
648
e7aeea18
JB
649 public getConfigurationKey(
650 key: string | StandardParametersKey,
651 caseInsensitive = false
652 ): ConfigurationKey | undefined {
2484ac1e 653 return this.ocppConfiguration.configurationKey.find((configElement) => {
c0560973
JB
654 if (caseInsensitive) {
655 return configElement.key.toLowerCase() === key.toLowerCase();
656 }
657 return configElement.key === key;
658 });
c0560973
JB
659 }
660
e7aeea18
JB
661 public addConfigurationKey(
662 key: string | StandardParametersKey,
663 value: string,
664 options: { readonly?: boolean; visible?: boolean; reboot?: boolean } = {
665 readonly: false,
666 visible: true,
667 reboot: false,
a95873d8
JB
668 },
669 params: { overwrite?: boolean; save?: boolean } = { overwrite: false, save: false }
e7aeea18 670 ): void {
dbdcd513
JB
671 options = options ?? ({} as { readonly?: boolean; visible?: boolean; reboot?: boolean });
672 options.readonly = options?.readonly ?? false;
673 options.visible = options?.visible ?? true;
674 options.reboot = options?.reboot ?? false;
a95873d8
JB
675 let keyFound = this.getConfigurationKey(key);
676 if (keyFound && params?.overwrite) {
e6895390 677 this.deleteConfigurationKey(keyFound.key, { save: false });
a95873d8
JB
678 keyFound = undefined;
679 }
c0560973 680 if (!keyFound) {
2484ac1e 681 this.ocppConfiguration.configurationKey.push({
c0560973 682 key,
dbdcd513 683 readonly: options.readonly,
c0560973 684 value,
dbdcd513
JB
685 visible: options.visible,
686 reboot: options.reboot,
c0560973 687 });
2484ac1e 688 params?.save && this.saveOcppConfiguration();
c0560973 689 } else {
e7aeea18
JB
690 logger.error(
691 `${this.logPrefix()} Trying to add an already existing configuration key: %j`,
692 keyFound
693 );
c0560973
JB
694 }
695 }
696
a95873d8
JB
697 public setConfigurationKeyValue(
698 key: string | StandardParametersKey,
699 value: string,
700 caseInsensitive = false
701 ): void {
702 const keyFound = this.getConfigurationKey(key, caseInsensitive);
c0560973 703 if (keyFound) {
7a3a2ebb
JB
704 this.ocppConfiguration.configurationKey[
705 this.ocppConfiguration.configurationKey.indexOf(keyFound)
706 ].value = value;
2484ac1e 707 this.saveOcppConfiguration();
c0560973 708 } else {
e7aeea18
JB
709 logger.error(
710 `${this.logPrefix()} Trying to set a value on a non existing configuration key: %j`,
711 { key, value }
712 );
c0560973
JB
713 }
714 }
715
e6895390
JB
716 public deleteConfigurationKey(
717 key: string | StandardParametersKey,
718 params: { save?: boolean; caseInsensitive?: boolean } = { save: true, caseInsensitive: false }
719 ): ConfigurationKey[] {
720 const keyFound = this.getConfigurationKey(key, params?.caseInsensitive);
721 if (keyFound) {
2484ac1e
JB
722 const deletedConfigurationKey = this.ocppConfiguration.configurationKey.splice(
723 this.ocppConfiguration.configurationKey.indexOf(keyFound),
e6895390
JB
724 1
725 );
2484ac1e 726 params?.save && this.saveOcppConfiguration();
e6895390
JB
727 return deletedConfigurationKey;
728 }
729 }
730
ad8537a7 731 public getChargingProfilePowerLimit(connectorId: number): number | undefined {
cfa9539e
JB
732 const timestamp = new Date().getTime();
733 let matchingChargingProfile: ChargingProfile;
734 let chargingSchedulePeriods: ChargingSchedulePeriod[] = [];
ad8537a7 735 if (!Utils.isEmptyArray(this.getConnectorStatus(connectorId)?.chargingProfiles)) {
cfa9539e
JB
736 const chargingProfiles: ChargingProfile[] = this.getConnectorStatus(
737 connectorId
738 ).chargingProfiles.filter(
739 (chargingProfile) =>
740 timestamp >= chargingProfile.chargingSchedule?.startSchedule.getTime() &&
741 timestamp <
742 chargingProfile.chargingSchedule?.startSchedule.getTime() +
7b872eaa 743 chargingProfile.chargingSchedule.duration * 1000 &&
cfa9539e
JB
744 chargingProfile?.stackLevel === Math.max(...chargingProfiles.map((cp) => cp?.stackLevel))
745 );
746 if (!Utils.isEmptyArray(chargingProfiles)) {
747 for (const chargingProfile of chargingProfiles) {
748 if (!Utils.isEmptyArray(chargingProfile.chargingSchedule.chargingSchedulePeriod)) {
749 chargingSchedulePeriods =
750 chargingProfile.chargingSchedule.chargingSchedulePeriod.filter(
751 (chargingSchedulePeriod, index) => {
752 timestamp >=
753 chargingProfile.chargingSchedule.startSchedule.getTime() +
7b872eaa 754 chargingSchedulePeriod.startPeriod * 1000 &&
98c19a07
JB
755 ((chargingProfile.chargingSchedule.chargingSchedulePeriod[index + 1] &&
756 timestamp <
757 chargingProfile.chargingSchedule.startSchedule.getTime() +
758 chargingProfile.chargingSchedule.chargingSchedulePeriod[index + 1]
759 ?.startPeriod *
760 1000) ||
761 !chargingProfile.chargingSchedule.chargingSchedulePeriod[index + 1]);
cfa9539e
JB
762 }
763 );
764 if (!Utils.isEmptyArray(chargingSchedulePeriods)) {
765 matchingChargingProfile = chargingProfile;
766 break;
767 }
768 }
769 }
770 }
771 }
ad8537a7
JB
772 let limit: number;
773 if (!Utils.isEmptyArray(chargingSchedulePeriods)) {
774 switch (this.getCurrentOutType()) {
775 case CurrentType.AC:
776 limit =
777 matchingChargingProfile.chargingSchedule.chargingRateUnit === ChargingRateUnitType.WATT
778 ? chargingSchedulePeriods[0].limit
779 : ACElectricUtils.powerTotal(
780 this.getNumberOfPhases(),
781 this.getVoltageOut(),
782 chargingSchedulePeriods[0].limit
783 );
784 break;
785 case CurrentType.DC:
786 limit =
787 matchingChargingProfile.chargingSchedule.chargingRateUnit === ChargingRateUnitType.WATT
788 ? chargingSchedulePeriods[0].limit
789 : DCElectricUtils.power(this.getVoltageOut(), chargingSchedulePeriods[0].limit);
cfa9539e 790 }
ad8537a7 791 }
0642c3d2 792 const connectorMaximumPower = this.getMaximumPower() / this.stationInfo.powerDivider;
ad8537a7
JB
793 if (limit > connectorMaximumPower) {
794 logger.error(
021394c6
JB
795 `${this.logPrefix()} Charging profile id ${
796 matchingChargingProfile.chargingProfileId
797 } limit is greater than connector id ${connectorId} maximum, dump charging profiles' stack: %j`,
ad8537a7
JB
798 this.getConnectorStatus(connectorId).chargingProfiles
799 );
800 limit = connectorMaximumPower;
801 }
802 return limit;
cfa9539e
JB
803 }
804
a7fc8211
JB
805 public setChargingProfile(connectorId: number, cp: ChargingProfile): void {
806 let cpReplaced = false;
734d790d 807 if (!Utils.isEmptyArray(this.getConnectorStatus(connectorId).chargingProfiles)) {
e7aeea18
JB
808 this.getConnectorStatus(connectorId).chargingProfiles?.forEach(
809 (chargingProfile: ChargingProfile, index: number) => {
810 if (
811 chargingProfile.chargingProfileId === cp.chargingProfileId ||
812 (chargingProfile.stackLevel === cp.stackLevel &&
813 chargingProfile.chargingProfilePurpose === cp.chargingProfilePurpose)
814 ) {
815 this.getConnectorStatus(connectorId).chargingProfiles[index] = cp;
816 cpReplaced = true;
817 }
c0560973 818 }
e7aeea18 819 );
c0560973 820 }
734d790d 821 !cpReplaced && this.getConnectorStatus(connectorId).chargingProfiles?.push(cp);
c0560973
JB
822 }
823
a2653482
JB
824 public resetConnectorStatus(connectorId: number): void {
825 this.getConnectorStatus(connectorId).idTagLocalAuthorized = false;
826 this.getConnectorStatus(connectorId).idTagAuthorized = false;
827 this.getConnectorStatus(connectorId).transactionRemoteStarted = false;
734d790d 828 this.getConnectorStatus(connectorId).transactionStarted = false;
a2653482 829 delete this.getConnectorStatus(connectorId).localAuthorizeIdTag;
734d790d
JB
830 delete this.getConnectorStatus(connectorId).authorizeIdTag;
831 delete this.getConnectorStatus(connectorId).transactionId;
832 delete this.getConnectorStatus(connectorId).transactionIdTag;
833 this.getConnectorStatus(connectorId).transactionEnergyActiveImportRegisterValue = 0;
834 delete this.getConnectorStatus(connectorId).transactionBeginMeterValue;
dd119a6b 835 this.stopMeterValues(connectorId);
2e6f5966
JB
836 }
837
68cb8b91
JB
838 public hasFeatureProfile(featureProfile: SupportedFeatureProfiles) {
839 return this.getConfigurationKey(StandardParametersKey.SupportedFeatureProfiles)?.value.includes(
840 featureProfile
841 );
842 }
843
8e242273
JB
844 public bufferMessage(message: string): void {
845 this.messageBuffer.add(message);
3ba2381e
JB
846 }
847
8e242273
JB
848 private flushMessageBuffer() {
849 if (this.messageBuffer.size > 0) {
850 this.messageBuffer.forEach((message) => {
aef1b33a 851 // TODO: evaluate the need to track performance
77f00f84 852 this.wsConnection.send(message);
8e242273 853 this.messageBuffer.delete(message);
77f00f84
JB
854 });
855 }
856 }
857
1f5df42a
JB
858 private getSupervisionUrlOcppConfiguration(): boolean {
859 return this.stationInfo.supervisionUrlOcppConfiguration ?? false;
12fc74d6
JB
860 }
861
e8e865ea
JB
862 private getSupervisionUrlOcppKey(): string {
863 return this.stationInfo.supervisionUrlOcppKey ?? VendorDefaultParametersKey.ConnectionUrl;
864 }
865
c0560973 866 private getChargingStationId(stationTemplate: ChargingStationTemplate): string {
ef6076c1 867 // In case of multiple instances: add instance index to charging station id
203bc097 868 const instanceIndex = process.env.CF_INSTANCE_INDEX ?? 0;
9ccca265 869 const idSuffix = stationTemplate.nameSuffix ?? '';
de1ec47b 870 const idStr = '000000000' + this.index.toString();
e7aeea18
JB
871 return stationTemplate.fixedName
872 ? stationTemplate.baseName
873 : stationTemplate.baseName +
874 '-' +
875 instanceIndex.toString() +
de1ec47b 876 idStr.substring(idStr.length - 4) +
e7aeea18 877 idSuffix;
5ad8570f
JB
878 }
879
efb85e20
JB
880 private getRandomSerialNumberSuffix(params?: {
881 randomBytesLength?: number;
882 upperCase?: boolean;
883 }): string {
884 const randomSerialNumberSuffix = crypto
885 .randomBytes(params?.randomBytesLength ?? 16)
886 .toString('hex');
887 if (params?.upperCase) {
888 return randomSerialNumberSuffix.toUpperCase();
889 }
890 return randomSerialNumberSuffix;
891 }
892
9214b603 893 private getTemplateFromFile(): ChargingStationTemplate | null {
2484ac1e 894 let template: ChargingStationTemplate = null;
5ad8570f 895 try {
42a3eee7
JB
896 const measureId = `${FileType.ChargingStationTemplate} read`;
897 const beginId = PerformanceStatistics.beginMeasure(measureId);
f765beaa
JB
898 template =
899 (JSON.parse(fs.readFileSync(this.templateFile, 'utf8')) as ChargingStationTemplate) ??
900 ({} as ChargingStationTemplate);
42a3eee7 901 PerformanceStatistics.endMeasure(measureId, beginId);
f765beaa
JB
902 template.templateHash = crypto
903 .createHash(Constants.DEFAULT_HASH_ALGORITHM)
904 .update(JSON.stringify(template))
905 .digest('hex');
5ad8570f 906 } catch (error) {
e7aeea18
JB
907 FileUtils.handleFileException(
908 this.logPrefix(),
a95873d8 909 FileType.ChargingStationTemplate,
2484ac1e 910 this.templateFile,
e7aeea18
JB
911 error as NodeJS.ErrnoException
912 );
5ad8570f 913 }
2484ac1e
JB
914 return template;
915 }
916
917 private createSerialNumber(
918 stationInfo: ChargingStationInfo,
7a3a2ebb
JB
919 existingStationInfo?: ChargingStationInfo,
920 params: { randomSerialNumberUpperCase?: boolean; randomSerialNumber?: boolean } = {
921 randomSerialNumberUpperCase: true,
922 randomSerialNumber: true,
923 }
2484ac1e 924 ): void {
7a3a2ebb
JB
925 params = params ?? {};
926 params.randomSerialNumberUpperCase = params?.randomSerialNumberUpperCase ?? true;
927 params.randomSerialNumber = params?.randomSerialNumber ?? true;
928 if (existingStationInfo) {
929 existingStationInfo?.chargePointSerialNumber &&
930 (stationInfo.chargePointSerialNumber = existingStationInfo.chargePointSerialNumber);
931 existingStationInfo?.chargeBoxSerialNumber &&
932 (stationInfo.chargeBoxSerialNumber = existingStationInfo.chargeBoxSerialNumber);
0b7c34ba
JB
933 existingStationInfo?.meterSerialNumber &&
934 (stationInfo.meterSerialNumber = existingStationInfo.meterSerialNumber);
7a3a2ebb
JB
935 } else {
936 const serialNumberSuffix = params?.randomSerialNumber
937 ? this.getRandomSerialNumberSuffix({ upperCase: params.randomSerialNumberUpperCase })
938 : '';
939 stationInfo.chargePointSerialNumber =
940 stationInfo?.chargePointSerialNumberPrefix &&
941 stationInfo.chargePointSerialNumberPrefix + serialNumberSuffix;
942 stationInfo.chargeBoxSerialNumber =
943 stationInfo?.chargeBoxSerialNumberPrefix &&
944 stationInfo.chargeBoxSerialNumberPrefix + serialNumberSuffix;
0b7c34ba
JB
945 stationInfo.meterSerialNumber =
946 stationInfo?.meterSerialNumberPrefix &&
947 stationInfo.meterSerialNumberPrefix + serialNumberSuffix;
7a3a2ebb
JB
948 }
949 }
950
951 private getStationInfoFromTemplate(): ChargingStationInfo {
f765beaa 952 const stationInfo: ChargingStationInfo = this.getTemplateFromFile();
7a3a2ebb 953 const chargingStationId = this.getChargingStationId(stationInfo);
2dcfe98e 954 // Deprecation template keys section
e7aeea18 955 this.warnDeprecatedTemplateKey(
7a3a2ebb 956 stationInfo,
e7aeea18
JB
957 'supervisionUrl',
958 chargingStationId,
959 "Use 'supervisionUrls' instead"
960 );
7a3a2ebb
JB
961 this.convertDeprecatedTemplateKey(stationInfo, 'supervisionUrl', 'supervisionUrls');
962 stationInfo.wsOptions = stationInfo?.wsOptions ?? {};
963 if (!Utils.isEmptyArray(stationInfo.power)) {
964 stationInfo.power = stationInfo.power as number[];
965 const powerArrayRandomIndex = Math.floor(Utils.secureRandom() * stationInfo.power.length);
cc6e8ab5 966 stationInfo.maximumPower =
7a3a2ebb
JB
967 stationInfo.powerUnit === PowerUnits.KILO_WATT
968 ? stationInfo.power[powerArrayRandomIndex] * 1000
969 : stationInfo.power[powerArrayRandomIndex];
5ad8570f 970 } else {
7a3a2ebb 971 stationInfo.power = stationInfo.power as number;
cc6e8ab5 972 stationInfo.maximumPower =
7a3a2ebb
JB
973 stationInfo.powerUnit === PowerUnits.KILO_WATT
974 ? stationInfo.power * 1000
975 : stationInfo.power;
5ad8570f 976 }
fd0c36fa
JB
977 delete stationInfo.power;
978 delete stationInfo.powerUnit;
2dcfe98e 979 stationInfo.chargingStationId = chargingStationId;
7a3a2ebb
JB
980 stationInfo.resetTime = stationInfo.resetTime
981 ? stationInfo.resetTime * 1000
e7aeea18 982 : Constants.CHARGING_STATION_DEFAULT_RESET_TIME;
9ac86a7e 983 return stationInfo;
5ad8570f
JB
984 }
985
f765beaa
JB
986 private getStationInfoFromFile(): ChargingStationInfo {
987 const stationInfo = this.getConfigurationFromFile()?.stationInfo ?? ({} as ChargingStationInfo);
988 stationInfo.infoHash = crypto
989 .createHash(Constants.DEFAULT_HASH_ALGORITHM)
990 .update(JSON.stringify(stationInfo))
991 .digest('hex');
992 return stationInfo;
2484ac1e
JB
993 }
994
995 private getStationInfo(): ChargingStationInfo {
996 const stationInfoFromTemplate: ChargingStationInfo = this.getStationInfoFromTemplate();
7a3a2ebb 997 this.hashId = this.getHashId(stationInfoFromTemplate);
2484ac1e
JB
998 this.configurationFile = path.join(
999 path.resolve(__dirname, '../'),
1000 'assets',
1001 'configurations',
1002 this.hashId + '.json'
1003 );
1004 const stationInfoFromFile: ChargingStationInfo = this.getStationInfoFromFile();
aca53a1a 1005 // Priority: charging station info from template > charging station info from configuration file > charging station info attribute
f765beaa 1006 if (stationInfoFromFile?.templateHash === stationInfoFromTemplate.templateHash) {
2484ac1e 1007 return stationInfoFromFile;
f765beaa
JB
1008 } else if (stationInfoFromFile?.templateHash !== stationInfoFromTemplate.templateHash) {
1009 this.createSerialNumber(stationInfoFromTemplate, stationInfoFromFile);
1010 return stationInfoFromTemplate;
1011 }
1012 if (this.stationInfo?.infoHash === stationInfoFromFile?.infoHash) {
1013 return this.stationInfo;
2484ac1e 1014 }
f765beaa 1015 return stationInfoFromFile;
2484ac1e
JB
1016 }
1017
1018 private saveStationInfo(): void {
1019 this.saveConfiguration(Section.stationInfo);
1020 }
1021
1f5df42a 1022 private getOcppVersion(): OCPPVersion {
c0560973
JB
1023 return this.stationInfo.ocppVersion ? this.stationInfo.ocppVersion : OCPPVersion.VERSION_16;
1024 }
1025
e8e865ea
JB
1026 private getOcppPersistentConfiguration(): boolean {
1027 return this.stationInfo.ocppPersistentConfiguration ?? true;
1028 }
1029
c0560973 1030 private handleUnsupportedVersion(version: OCPPVersion) {
e7aeea18 1031 const errMsg = `${this.logPrefix()} Unsupported protocol version '${version}' configured in template file ${
2484ac1e 1032 this.templateFile
e7aeea18 1033 }`;
9f2e3130 1034 logger.error(errMsg);
c0560973
JB
1035 throw new Error(errMsg);
1036 }
1037
2484ac1e
JB
1038 private createBootNotificationRequest(stationInfo: ChargingStationInfo): BootNotificationRequest {
1039 return {
1040 chargePointModel: stationInfo.chargePointModel,
1041 chargePointVendor: stationInfo.chargePointVendor,
1042 ...(!Utils.isUndefined(stationInfo.chargeBoxSerialNumber) && {
1043 chargeBoxSerialNumber: stationInfo.chargeBoxSerialNumber,
e7aeea18 1044 }),
2484ac1e
JB
1045 ...(!Utils.isUndefined(stationInfo.chargePointSerialNumber) && {
1046 chargePointSerialNumber: stationInfo.chargePointSerialNumber,
43bb4cd9 1047 }),
2484ac1e
JB
1048 ...(!Utils.isUndefined(stationInfo.firmwareVersion) && {
1049 firmwareVersion: stationInfo.firmwareVersion,
e7aeea18 1050 }),
2484ac1e
JB
1051 ...(!Utils.isUndefined(stationInfo.iccid) && { iccid: stationInfo.iccid }),
1052 ...(!Utils.isUndefined(stationInfo.imsi) && { imsi: stationInfo.imsi }),
1053 ...(!Utils.isUndefined(stationInfo.meterSerialNumber) && {
1054 meterSerialNumber: stationInfo.meterSerialNumber,
3f94cab5 1055 }),
2484ac1e
JB
1056 ...(!Utils.isUndefined(stationInfo.meterType) && {
1057 meterType: stationInfo.meterType,
3f94cab5 1058 }),
2e6f5966 1059 };
2484ac1e
JB
1060 }
1061
7a3a2ebb
JB
1062 private getHashId(stationInfo: ChargingStationInfo): string {
1063 const hashBootNotificationRequest = {
1064 chargePointModel: stationInfo.chargePointModel,
1065 chargePointVendor: stationInfo.chargePointVendor,
1066 ...(!Utils.isUndefined(stationInfo.chargeBoxSerialNumberPrefix) && {
1067 chargeBoxSerialNumber: stationInfo.chargeBoxSerialNumberPrefix,
1068 }),
1069 ...(!Utils.isUndefined(stationInfo.chargePointSerialNumberPrefix) && {
1070 chargePointSerialNumber: stationInfo.chargePointSerialNumberPrefix,
1071 }),
1072 ...(!Utils.isUndefined(stationInfo.firmwareVersion) && {
1073 firmwareVersion: stationInfo.firmwareVersion,
1074 }),
1075 ...(!Utils.isUndefined(stationInfo.iccid) && { iccid: stationInfo.iccid }),
1076 ...(!Utils.isUndefined(stationInfo.imsi) && { imsi: stationInfo.imsi }),
0b7c34ba
JB
1077 ...(!Utils.isUndefined(stationInfo.meterSerialNumberPrefix) && {
1078 meterSerialNumber: stationInfo.meterSerialNumberPrefix,
7a3a2ebb
JB
1079 }),
1080 ...(!Utils.isUndefined(stationInfo.meterType) && {
1081 meterType: stationInfo.meterType,
1082 }),
1083 };
2484ac1e 1084 return crypto
3f94cab5 1085 .createHash(Constants.DEFAULT_HASH_ALGORITHM)
7a3a2ebb 1086 .update(JSON.stringify(hashBootNotificationRequest) + stationInfo.chargingStationId)
3f94cab5 1087 .digest('hex');
2484ac1e
JB
1088 }
1089
1090 private initialize(): void {
1091 this.stationInfo = this.getStationInfo();
3f94cab5 1092 logger.info(`${this.logPrefix()} Charging station hashId '${this.hashId}'`);
2484ac1e
JB
1093 this.bootNotificationRequest = this.createBootNotificationRequest(this.stationInfo);
1094 this.ocppConfiguration = this.getOcppConfiguration();
3f94cab5 1095 delete this.stationInfo.Configuration;
0642c3d2
JB
1096 this.wsConfiguredConnectionUrl = new URL(
1097 this.getConfiguredSupervisionUrl().href + '/' + this.stationInfo.chargingStationId
1098 );
0a60c33c 1099 // Build connectors if needed
c0560973 1100 const maxConnectors = this.getMaxNumberOfConnectors();
6ecb15e4 1101 if (maxConnectors <= 0) {
e7aeea18
JB
1102 logger.warn(
1103 `${this.logPrefix()} Charging station template ${
2484ac1e 1104 this.templateFile
e7aeea18
JB
1105 } with ${maxConnectors} connectors`
1106 );
7abfea5f 1107 }
c0560973 1108 const templateMaxConnectors = this.getTemplateMaxNumberOfConnectors();
7abfea5f 1109 if (templateMaxConnectors <= 0) {
e7aeea18
JB
1110 logger.warn(
1111 `${this.logPrefix()} Charging station template ${
2484ac1e 1112 this.templateFile
e7aeea18
JB
1113 } with no connector configuration`
1114 );
593cf3f9 1115 }
ad2f27c3 1116 if (!this.stationInfo.Connectors[0]) {
e7aeea18
JB
1117 logger.warn(
1118 `${this.logPrefix()} Charging station template ${
2484ac1e 1119 this.templateFile
e7aeea18
JB
1120 } with no connector Id 0 configuration`
1121 );
7abfea5f
JB
1122 }
1123 // Sanity check
e7aeea18
JB
1124 if (
1125 maxConnectors >
1126 (this.stationInfo.Connectors[0] ? templateMaxConnectors - 1 : templateMaxConnectors) &&
1127 !this.stationInfo.randomConnectors
1128 ) {
1129 logger.warn(
1130 `${this.logPrefix()} Number of connectors exceeds the number of connector configurations in template ${
2484ac1e 1131 this.templateFile
e7aeea18
JB
1132 }, forcing random connector configurations affectation`
1133 );
ad2f27c3 1134 this.stationInfo.randomConnectors = true;
6ecb15e4 1135 }
e7aeea18 1136 const connectorsConfigHash = crypto
3f94cab5 1137 .createHash(Constants.DEFAULT_HASH_ALGORITHM)
e7aeea18
JB
1138 .update(JSON.stringify(this.stationInfo.Connectors) + maxConnectors.toString())
1139 .digest('hex');
1140 const connectorsConfigChanged =
1141 this.connectors?.size !== 0 && this.connectorsConfigurationHash !== connectorsConfigHash;
54544ef1 1142 if (this.connectors?.size === 0 || connectorsConfigChanged) {
e7aeea18 1143 connectorsConfigChanged && this.connectors.clear();
ad2f27c3 1144 this.connectorsConfigurationHash = connectorsConfigHash;
7abfea5f 1145 // Add connector Id 0
6af9012e 1146 let lastConnector = '0';
ad2f27c3 1147 for (lastConnector in this.stationInfo.Connectors) {
734d790d 1148 const lastConnectorId = Utils.convertToInt(lastConnector);
e7aeea18
JB
1149 if (
1150 lastConnectorId === 0 &&
1151 this.getUseConnectorId0() &&
1152 this.stationInfo.Connectors[lastConnector]
1153 ) {
1154 this.connectors.set(
1155 lastConnectorId,
1156 Utils.cloneObject<ConnectorStatus>(this.stationInfo.Connectors[lastConnector])
1157 );
734d790d
JB
1158 this.getConnectorStatus(lastConnectorId).availability = AvailabilityType.OPERATIVE;
1159 if (Utils.isUndefined(this.getConnectorStatus(lastConnectorId)?.chargingProfiles)) {
1160 this.getConnectorStatus(lastConnectorId).chargingProfiles = [];
418106c8 1161 }
0a60c33c
JB
1162 }
1163 }
0a60c33c 1164 // Generate all connectors
e7aeea18
JB
1165 if (
1166 (this.stationInfo.Connectors[0] ? templateMaxConnectors - 1 : templateMaxConnectors) > 0
1167 ) {
7abfea5f 1168 for (let index = 1; index <= maxConnectors; index++) {
e7aeea18
JB
1169 const randConnectorId = this.stationInfo.randomConnectors
1170 ? Utils.getRandomInteger(Utils.convertToInt(lastConnector), 1)
1171 : index;
1172 this.connectors.set(
1173 index,
1174 Utils.cloneObject<ConnectorStatus>(this.stationInfo.Connectors[randConnectorId])
1175 );
734d790d
JB
1176 this.getConnectorStatus(index).availability = AvailabilityType.OPERATIVE;
1177 if (Utils.isUndefined(this.getConnectorStatus(index)?.chargingProfiles)) {
1178 this.getConnectorStatus(index).chargingProfiles = [];
418106c8 1179 }
7abfea5f 1180 }
0a60c33c
JB
1181 }
1182 }
cc6e8ab5
JB
1183 this.stationInfo.maximumAmperage = this.getMaximumAmperage();
1184 this.saveStationInfo();
7a3a2ebb 1185 // Avoid duplication of connectors related information in RAM
ad2f27c3 1186 delete this.stationInfo.Connectors;
0a60c33c 1187 // Initialize transaction attributes on connectors
734d790d
JB
1188 for (const connectorId of this.connectors.keys()) {
1189 if (connectorId > 0 && !this.getConnectorStatus(connectorId)?.transactionStarted) {
a2653482 1190 this.initializeConnectorStatus(connectorId);
0a60c33c
JB
1191 }
1192 }
2484ac1e
JB
1193 // OCPP configuration
1194 this.initializeOcppConfiguration();
0642c3d2
JB
1195 if (this.getEnableStatistics()) {
1196 this.performanceStatistics = PerformanceStatistics.getInstance(
1197 this.hashId,
1198 this.stationInfo.chargingStationId,
1199 this.wsConnectionUrl
1200 );
1201 }
1f5df42a 1202 switch (this.getOcppVersion()) {
c0560973 1203 case OCPPVersion.VERSION_16:
e7aeea18
JB
1204 this.ocppIncomingRequestService =
1205 OCPP16IncomingRequestService.getInstance<OCPP16IncomingRequestService>(this);
1206 this.ocppRequestService = OCPP16RequestService.getInstance<OCPP16RequestService>(
1207 this,
1208 OCPP16ResponseService.getInstance<OCPP16ResponseService>(this)
1209 );
c0560973
JB
1210 break;
1211 default:
1f5df42a 1212 this.handleUnsupportedVersion(this.getOcppVersion());
c0560973
JB
1213 break;
1214 }
47e22477
JB
1215 if (this.stationInfo.autoRegister) {
1216 this.bootNotificationResponse = {
1217 currentTime: new Date().toISOString(),
1218 interval: this.getHeartbeatInterval() / 1000,
e7aeea18 1219 status: RegistrationStatus.ACCEPTED,
47e22477
JB
1220 };
1221 }
147d0e0f 1222 this.stationInfo.powerDivider = this.getPowerDivider();
147d0e0f
JB
1223 }
1224
2484ac1e 1225 private initializeOcppConfiguration(): void {
e7aeea18
JB
1226 if (
1227 this.getSupervisionUrlOcppConfiguration() &&
a59737e3 1228 !this.getConfigurationKey(this.getSupervisionUrlOcppKey())
e7aeea18
JB
1229 ) {
1230 this.addConfigurationKey(
a59737e3 1231 this.getSupervisionUrlOcppKey(),
e7aeea18
JB
1232 this.getConfiguredSupervisionUrl().href,
1233 { reboot: true }
1234 );
e6895390
JB
1235 } else if (
1236 !this.getSupervisionUrlOcppConfiguration() &&
1237 this.getConfigurationKey(this.getSupervisionUrlOcppKey())
1238 ) {
1239 this.deleteConfigurationKey(this.getSupervisionUrlOcppKey(), { save: false });
12fc74d6 1240 }
cc6e8ab5
JB
1241 if (
1242 this.stationInfo.amperageLimitationOcppKey &&
1243 !this.getConfigurationKey(this.stationInfo.amperageLimitationOcppKey)
1244 ) {
1245 this.addConfigurationKey(
1246 this.stationInfo.amperageLimitationOcppKey,
1247 (this.stationInfo.maximumAmperage * this.getAmperageLimitationUnitDivider()).toString()
1248 );
1249 }
36f6a92e 1250 if (!this.getConfigurationKey(StandardParametersKey.SupportedFeatureProfiles)) {
e7aeea18
JB
1251 this.addConfigurationKey(
1252 StandardParametersKey.SupportedFeatureProfiles,
b22787b4 1253 `${SupportedFeatureProfiles.Core},${SupportedFeatureProfiles.FirmwareManagement},${SupportedFeatureProfiles.LocalAuthListManagement},${SupportedFeatureProfiles.SmartCharging},${SupportedFeatureProfiles.RemoteTrigger}`
e7aeea18
JB
1254 );
1255 }
1256 this.addConfigurationKey(
1257 StandardParametersKey.NumberOfConnectors,
1258 this.getNumberOfConnectors().toString(),
a95873d8
JB
1259 { readonly: true },
1260 { overwrite: true }
e7aeea18 1261 );
c0560973 1262 if (!this.getConfigurationKey(StandardParametersKey.MeterValuesSampledData)) {
e7aeea18
JB
1263 this.addConfigurationKey(
1264 StandardParametersKey.MeterValuesSampledData,
1265 MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER
1266 );
7abfea5f 1267 }
7e1dc878
JB
1268 if (!this.getConfigurationKey(StandardParametersKey.ConnectorPhaseRotation)) {
1269 const connectorPhaseRotation = [];
734d790d 1270 for (const connectorId of this.connectors.keys()) {
7e1dc878 1271 // AC/DC
734d790d
JB
1272 if (connectorId === 0 && this.getNumberOfPhases() === 0) {
1273 connectorPhaseRotation.push(`${connectorId}.${ConnectorPhaseRotation.RST}`);
1274 } else if (connectorId > 0 && this.getNumberOfPhases() === 0) {
1275 connectorPhaseRotation.push(`${connectorId}.${ConnectorPhaseRotation.NotApplicable}`);
e7aeea18 1276 // AC
734d790d
JB
1277 } else if (connectorId > 0 && this.getNumberOfPhases() === 1) {
1278 connectorPhaseRotation.push(`${connectorId}.${ConnectorPhaseRotation.NotApplicable}`);
1279 } else if (connectorId > 0 && this.getNumberOfPhases() === 3) {
1280 connectorPhaseRotation.push(`${connectorId}.${ConnectorPhaseRotation.RST}`);
7e1dc878
JB
1281 }
1282 }
e7aeea18
JB
1283 this.addConfigurationKey(
1284 StandardParametersKey.ConnectorPhaseRotation,
1285 connectorPhaseRotation.toString()
1286 );
7e1dc878 1287 }
36f6a92e
JB
1288 if (!this.getConfigurationKey(StandardParametersKey.AuthorizeRemoteTxRequests)) {
1289 this.addConfigurationKey(StandardParametersKey.AuthorizeRemoteTxRequests, 'true');
1290 }
e7aeea18
JB
1291 if (
1292 !this.getConfigurationKey(StandardParametersKey.LocalAuthListEnabled) &&
68cb8b91 1293 this.getConfigurationKey(StandardParametersKey.SupportedFeatureProfiles)?.value.includes(
b22787b4 1294 SupportedFeatureProfiles.LocalAuthListManagement
e7aeea18
JB
1295 )
1296 ) {
36f6a92e
JB
1297 this.addConfigurationKey(StandardParametersKey.LocalAuthListEnabled, 'false');
1298 }
147d0e0f 1299 if (!this.getConfigurationKey(StandardParametersKey.ConnectionTimeOut)) {
e7aeea18
JB
1300 this.addConfigurationKey(
1301 StandardParametersKey.ConnectionTimeOut,
1302 Constants.DEFAULT_CONNECTION_TIMEOUT.toString()
1303 );
8bce55bf 1304 }
2484ac1e 1305 this.saveOcppConfiguration();
073bd098
JB
1306 }
1307
7f7b65ca 1308 private getConfigurationFromFile(): ChargingStationConfiguration | null {
073bd098 1309 let configuration: ChargingStationConfiguration = null;
2484ac1e 1310 if (this.configurationFile && fs.existsSync(this.configurationFile)) {
073bd098 1311 try {
42a3eee7 1312 const measureId = `${FileType.ChargingStationConfiguration} read`;
0642c3d2 1313 const beginId = PerformanceStatistics.beginMeasure(measureId);
073bd098 1314 configuration = JSON.parse(
a95873d8 1315 fs.readFileSync(this.configurationFile, 'utf8')
073bd098 1316 ) as ChargingStationConfiguration;
42a3eee7 1317 PerformanceStatistics.endMeasure(measureId, beginId);
073bd098
JB
1318 } catch (error) {
1319 FileUtils.handleFileException(
1320 this.logPrefix(),
a95873d8 1321 FileType.ChargingStationConfiguration,
073bd098
JB
1322 this.configurationFile,
1323 error as NodeJS.ErrnoException
1324 );
1325 }
1326 }
1327 return configuration;
1328 }
1329
2484ac1e
JB
1330 private saveConfiguration(section?: Section): void {
1331 if (this.configurationFile) {
1332 try {
1333 const configurationData: ChargingStationConfiguration =
1334 this.getConfigurationFromFile() ?? {};
1335 if (!fs.existsSync(path.dirname(this.configurationFile))) {
1336 fs.mkdirSync(path.dirname(this.configurationFile), { recursive: true });
073bd098 1337 }
2484ac1e
JB
1338 switch (section) {
1339 case Section.ocppConfiguration:
1340 configurationData.configurationKey = this.ocppConfiguration.configurationKey;
1341 break;
1342 case Section.stationInfo:
1343 configurationData.stationInfo = this.stationInfo;
1344 break;
1345 default:
1346 configurationData.configurationKey = this.ocppConfiguration.configurationKey;
1347 configurationData.stationInfo = this.stationInfo;
1348 break;
1349 }
42a3eee7
JB
1350 const measureId = `${FileType.ChargingStationConfiguration} write`;
1351 const beginId = PerformanceStatistics.beginMeasure(measureId);
2484ac1e
JB
1352 const fileDescriptor = fs.openSync(this.configurationFile, 'w');
1353 fs.writeFileSync(fileDescriptor, JSON.stringify(configurationData, null, 2), 'utf8');
1354 fs.closeSync(fileDescriptor);
42a3eee7 1355 PerformanceStatistics.endMeasure(measureId, beginId);
2484ac1e
JB
1356 } catch (error) {
1357 FileUtils.handleFileException(
1358 this.logPrefix(),
1359 FileType.ChargingStationConfiguration,
1360 this.configurationFile,
1361 error as NodeJS.ErrnoException
073bd098
JB
1362 );
1363 }
2484ac1e
JB
1364 } else {
1365 logger.error(
1366 `${this.logPrefix()} Trying to save charging station configuration to undefined file`
1367 );
073bd098
JB
1368 }
1369 }
1370
2484ac1e
JB
1371 private getOcppConfigurationFromTemplate(): ChargingStationOcppConfiguration {
1372 return this.getTemplateFromFile().Configuration ?? ({} as ChargingStationOcppConfiguration);
1373 }
1374
1375 private getOcppConfigurationFromFile(): ChargingStationOcppConfiguration | null {
1376 let configuration: ChargingStationConfiguration = null;
1377 if (this.getOcppPersistentConfiguration()) {
7a3a2ebb
JB
1378 const configurationFromFile = this.getConfigurationFromFile();
1379 configuration = configurationFromFile?.configurationKey && configurationFromFile;
073bd098 1380 }
2484ac1e 1381 configuration && delete configuration.stationInfo;
073bd098 1382 return configuration;
7dde0b73
JB
1383 }
1384
2484ac1e
JB
1385 private getOcppConfiguration(): ChargingStationOcppConfiguration {
1386 let ocppConfiguration: ChargingStationOcppConfiguration = this.getOcppConfigurationFromFile();
1387 if (!ocppConfiguration) {
1388 ocppConfiguration = this.getOcppConfigurationFromTemplate();
1389 }
1390 return ocppConfiguration;
1391 }
1392
1393 private saveOcppConfiguration(): void {
1394 if (this.getOcppPersistentConfiguration()) {
1395 this.saveConfiguration(Section.ocppConfiguration);
1396 }
1397 }
1398
c0560973 1399 private async onOpen(): Promise<void> {
5144f4d1
JB
1400 if (this.isWebSocketConnectionOpened()) {
1401 logger.info(
1402 `${this.logPrefix()} Connection to OCPP server through ${this.wsConnectionUrl.toString()} succeeded`
1403 );
94bb24d5 1404 if (!this.isRegistered()) {
5144f4d1
JB
1405 // Send BootNotification
1406 let registrationRetryCount = 0;
1407 do {
f7f98c68 1408 this.bootNotificationResponse = await this.ocppRequestService.requestHandler<
5144f4d1
JB
1409 BootNotificationRequest,
1410 BootNotificationResponse
1411 >(
f22266fd
JB
1412 RequestCommand.BOOT_NOTIFICATION,
1413 {
1414 chargePointModel: this.bootNotificationRequest.chargePointModel,
1415 chargePointVendor: this.bootNotificationRequest.chargePointVendor,
1416 chargeBoxSerialNumber: this.bootNotificationRequest.chargeBoxSerialNumber,
1417 firmwareVersion: this.bootNotificationRequest.firmwareVersion,
1418 chargePointSerialNumber: this.bootNotificationRequest.chargePointSerialNumber,
1419 iccid: this.bootNotificationRequest.iccid,
1420 imsi: this.bootNotificationRequest.imsi,
1421 meterSerialNumber: this.bootNotificationRequest.meterSerialNumber,
1422 meterType: this.bootNotificationRequest.meterType,
1423 },
1424 { skipBufferingOnError: true }
1425 );
94bb24d5 1426 if (!this.isRegistered()) {
5144f4d1
JB
1427 this.getRegistrationMaxRetries() !== -1 && registrationRetryCount++;
1428 await Utils.sleep(
1429 this.bootNotificationResponse?.interval
1430 ? this.bootNotificationResponse.interval * 1000
1431 : Constants.OCPP_DEFAULT_BOOT_NOTIFICATION_INTERVAL
1432 );
1433 }
1434 } while (
94bb24d5 1435 !this.isRegistered() &&
5144f4d1
JB
1436 (registrationRetryCount <= this.getRegistrationMaxRetries() ||
1437 this.getRegistrationMaxRetries() === -1)
1438 );
1439 }
94bb24d5
JB
1440 if (this.isRegistered()) {
1441 if (this.isInAcceptedState()) {
1442 await this.startMessageSequence();
1443 this.wsConnectionRestarted && this.flushMessageBuffer();
c0560973 1444 }
5144f4d1
JB
1445 } else {
1446 logger.error(
1447 `${this.logPrefix()} Registration failure: max retries reached (${this.getRegistrationMaxRetries()}) or retry disabled (${this.getRegistrationMaxRetries()})`
1448 );
caad9d6b 1449 }
94bb24d5 1450 this.stopped && (this.stopped = false);
5144f4d1
JB
1451 this.autoReconnectRetryCount = 0;
1452 this.wsConnectionRestarted = false;
2e6f5966 1453 } else {
5144f4d1
JB
1454 logger.warn(
1455 `${this.logPrefix()} Connection to OCPP server through ${this.wsConnectionUrl.toString()} failed`
e7aeea18 1456 );
2e6f5966 1457 }
2e6f5966
JB
1458 }
1459
6c65a295 1460 private async onClose(code: number, reason: string): Promise<void> {
d09085e9 1461 switch (code) {
6c65a295
JB
1462 // Normal close
1463 case WebSocketCloseEventStatusCode.CLOSE_NORMAL:
c0560973 1464 case WebSocketCloseEventStatusCode.CLOSE_NO_STATUS:
e7aeea18
JB
1465 logger.info(
1466 `${this.logPrefix()} WebSocket normally closed with status '${Utils.getWebSocketCloseEventStatusString(
1467 code
1468 )}' and reason '${reason}'`
1469 );
c0560973
JB
1470 this.autoReconnectRetryCount = 0;
1471 break;
6c65a295
JB
1472 // Abnormal close
1473 default:
e7aeea18
JB
1474 logger.error(
1475 `${this.logPrefix()} WebSocket abnormally closed with status '${Utils.getWebSocketCloseEventStatusString(
1476 code
1477 )}' and reason '${reason}'`
1478 );
d09085e9 1479 await this.reconnect(code);
c0560973
JB
1480 break;
1481 }
2e6f5966
JB
1482 }
1483
16b0d4e7 1484 private async onMessage(data: Data): Promise<void> {
b3ec7bc1
JB
1485 let messageType: number;
1486 let messageId: string;
1487 let commandName: IncomingRequestCommand;
1488 let commandPayload: JsonType;
1489 let errorType: ErrorType;
1490 let errorMessage: string;
1491 let errorDetails: JsonType;
1492 let responseCallback: (payload: JsonType, requestPayload: JsonType) => void;
9239b49a 1493 let rejectCallback: (error: OCPPError, requestStatistic?: boolean) => void;
32b02249 1494 let requestCommandName: RequestCommand | IncomingRequestCommand;
b3ec7bc1 1495 let requestPayload: JsonType;
32b02249 1496 let cachedRequest: CachedRequest;
c0560973
JB
1497 let errMsg: string;
1498 try {
b3ec7bc1 1499 const request = JSON.parse(data.toString()) as IncomingRequest | Response | ErrorResponse;
47e22477 1500 if (Utils.isIterable(request)) {
9934652c 1501 [messageType, messageId] = request;
b3ec7bc1
JB
1502 // Check the type of message
1503 switch (messageType) {
1504 // Incoming Message
1505 case MessageType.CALL_MESSAGE:
9934652c 1506 [, , commandName, commandPayload] = request as IncomingRequest;
b3ec7bc1
JB
1507 if (this.getEnableStatistics()) {
1508 this.performanceStatistics.addRequestStatistic(commandName, messageType);
1509 }
1510 logger.debug(
1511 `${this.logPrefix()} << Command '${commandName}' received request payload: ${JSON.stringify(
1512 request
1513 )}`
1514 );
1515 // Process the message
1516 await this.ocppIncomingRequestService.incomingRequestHandler(
1517 messageId,
1518 commandName,
1519 commandPayload
1520 );
1521 break;
1522 // Outcome Message
1523 case MessageType.CALL_RESULT_MESSAGE:
9934652c 1524 [, , commandPayload] = request as Response;
b3ec7bc1
JB
1525 // Respond
1526 cachedRequest = this.requests.get(messageId);
1527 if (Utils.isIterable(cachedRequest)) {
1528 [responseCallback, , requestCommandName, requestPayload] = cachedRequest;
1529 } else {
1530 throw new OCPPError(
1531 ErrorType.PROTOCOL_ERROR,
c2bc716f
JB
1532 `Cached request for message id ${messageId} response is not iterable`,
1533 null,
1534 cachedRequest as unknown as JsonType
b3ec7bc1
JB
1535 );
1536 }
1537 logger.debug(
7ec6c5c9
JB
1538 `${this.logPrefix()} << Command '${
1539 requestCommandName ?? ''
1540 }' received response payload: ${JSON.stringify(request)}`
b3ec7bc1
JB
1541 );
1542 if (!responseCallback) {
1543 // Error
1544 throw new OCPPError(
1545 ErrorType.INTERNAL_ERROR,
c2bc716f
JB
1546 `Response for unknown message id ${messageId}`,
1547 null,
1548 commandPayload
b3ec7bc1
JB
1549 );
1550 }
1551 responseCallback(commandPayload, requestPayload);
1552 break;
1553 // Error Message
1554 case MessageType.CALL_ERROR_MESSAGE:
9934652c 1555 [, , errorType, errorMessage, errorDetails] = request as ErrorResponse;
b3ec7bc1
JB
1556 cachedRequest = this.requests.get(messageId);
1557 if (Utils.isIterable(cachedRequest)) {
1558 [, rejectCallback, requestCommandName] = cachedRequest;
1559 } else {
1560 throw new OCPPError(
1561 ErrorType.PROTOCOL_ERROR,
c2bc716f
JB
1562 `Cached request for message id ${messageId} error response is not iterable`,
1563 null,
1564 cachedRequest as unknown as JsonType
b3ec7bc1
JB
1565 );
1566 }
1567 logger.debug(
7ec6c5c9
JB
1568 `${this.logPrefix()} << Command '${
1569 requestCommandName ?? ''
1570 }' received error payload: ${JSON.stringify(request)}`
b3ec7bc1
JB
1571 );
1572 if (!rejectCallback) {
1573 // Error
1574 throw new OCPPError(
1575 ErrorType.INTERNAL_ERROR,
c2bc716f
JB
1576 `Error response for unknown message id ${messageId}`,
1577 null,
1578 { errorType, errorMessage, errorDetails }
b3ec7bc1
JB
1579 );
1580 }
1581 rejectCallback(
1582 new OCPPError(errorType, errorMessage, requestCommandName, errorDetails)
1583 );
1584 break;
1585 // Error
1586 default:
1587 // eslint-disable-next-line @typescript-eslint/restrict-template-expressions
1588 errMsg = `${this.logPrefix()} Wrong message type ${messageType}`;
1589 logger.error(errMsg);
1590 throw new OCPPError(ErrorType.PROTOCOL_ERROR, errMsg);
1591 }
47e22477 1592 } else {
ac54a9bb
JB
1593 throw new OCPPError(ErrorType.PROTOCOL_ERROR, 'Incoming message is not iterable', null, {
1594 payload: request,
1595 });
47e22477 1596 }
c0560973
JB
1597 } catch (error) {
1598 // Log
e7aeea18
JB
1599 logger.error(
1600 '%s Incoming OCPP message %j matching cached request %j processing error %j',
1601 this.logPrefix(),
1602 data.toString(),
1603 this.requests.get(messageId),
1604 error
1605 );
c0560973 1606 // Send error
e7aeea18 1607 messageType === MessageType.CALL_MESSAGE &&
b3ec7bc1
JB
1608 (await this.ocppRequestService.sendError(
1609 messageId,
1610 error as OCPPError,
ac54a9bb 1611 Utils.isString(commandName) ? commandName : requestCommandName ?? null
b3ec7bc1 1612 ));
c0560973 1613 }
2328be1e
JB
1614 }
1615
c0560973 1616 private onPing(): void {
9f2e3130 1617 logger.debug(this.logPrefix() + ' Received a WS ping (rfc6455) from the server');
c0560973
JB
1618 }
1619
1620 private onPong(): void {
9f2e3130 1621 logger.debug(this.logPrefix() + ' Received a WS pong (rfc6455) from the server');
c0560973
JB
1622 }
1623
9534e74e 1624 private onError(error: WSError): void {
9f2e3130 1625 logger.error(this.logPrefix() + ' WebSocket error: %j', error);
c0560973
JB
1626 }
1627
6e0964c8 1628 private getAuthorizationFile(): string | undefined {
e7aeea18
JB
1629 return (
1630 this.stationInfo.authorizationFile &&
1631 path.join(
1632 path.resolve(__dirname, '../'),
1633 'assets',
1634 path.basename(this.stationInfo.authorizationFile)
1635 )
1636 );
c0560973
JB
1637 }
1638
1639 private getAuthorizedTags(): string[] {
1640 let authorizedTags: string[] = [];
1641 const authorizationFile = this.getAuthorizationFile();
1642 if (authorizationFile) {
1643 try {
1644 // Load authorization file
a95873d8 1645 authorizedTags = JSON.parse(fs.readFileSync(authorizationFile, 'utf8')) as string[];
c0560973 1646 } catch (error) {
e7aeea18
JB
1647 FileUtils.handleFileException(
1648 this.logPrefix(),
a95873d8 1649 FileType.Authorization,
e7aeea18
JB
1650 authorizationFile,
1651 error as NodeJS.ErrnoException
1652 );
c0560973
JB
1653 }
1654 } else {
e7aeea18 1655 logger.info(
2484ac1e 1656 this.logPrefix() + ' No authorization file given in template file ' + this.templateFile
e7aeea18 1657 );
8c4da341 1658 }
c0560973
JB
1659 return authorizedTags;
1660 }
1661
6e0964c8 1662 private getUseConnectorId0(): boolean | undefined {
e7aeea18
JB
1663 return !Utils.isUndefined(this.stationInfo.useConnectorId0)
1664 ? this.stationInfo.useConnectorId0
1665 : true;
8bce55bf
JB
1666 }
1667
c0560973 1668 private getNumberOfRunningTransactions(): number {
6ecb15e4 1669 let trxCount = 0;
734d790d
JB
1670 for (const connectorId of this.connectors.keys()) {
1671 if (connectorId > 0 && this.getConnectorStatus(connectorId)?.transactionStarted) {
6ecb15e4
JB
1672 trxCount++;
1673 }
1674 }
1675 return trxCount;
1676 }
1677
1f761b9a 1678 // 0 for disabling
6e0964c8 1679 private getConnectionTimeout(): number | undefined {
291cb255 1680 if (this.getConfigurationKey(StandardParametersKey.ConnectionTimeOut)) {
e7aeea18
JB
1681 return (
1682 parseInt(this.getConfigurationKey(StandardParametersKey.ConnectionTimeOut).value) ??
1683 Constants.DEFAULT_CONNECTION_TIMEOUT
1684 );
291cb255 1685 }
291cb255 1686 return Constants.DEFAULT_CONNECTION_TIMEOUT;
3574dfd3
JB
1687 }
1688
1f761b9a 1689 // -1 for unlimited, 0 for disabling
6e0964c8 1690 private getAutoReconnectMaxRetries(): number | undefined {
ad2f27c3
JB
1691 if (!Utils.isUndefined(this.stationInfo.autoReconnectMaxRetries)) {
1692 return this.stationInfo.autoReconnectMaxRetries;
3574dfd3
JB
1693 }
1694 if (!Utils.isUndefined(Configuration.getAutoReconnectMaxRetries())) {
1695 return Configuration.getAutoReconnectMaxRetries();
1696 }
1697 return -1;
1698 }
1699
ec977daf 1700 // 0 for disabling
6e0964c8 1701 private getRegistrationMaxRetries(): number | undefined {
ad2f27c3
JB
1702 if (!Utils.isUndefined(this.stationInfo.registrationMaxRetries)) {
1703 return this.stationInfo.registrationMaxRetries;
32a1eb7a
JB
1704 }
1705 return -1;
1706 }
1707
c0560973
JB
1708 private getPowerDivider(): number {
1709 let powerDivider = this.getNumberOfConnectors();
ad2f27c3 1710 if (this.stationInfo.powerSharedByConnectors) {
c0560973 1711 powerDivider = this.getNumberOfRunningTransactions();
6ecb15e4
JB
1712 }
1713 return powerDivider;
1714 }
1715
c0560973 1716 private getTemplateMaxNumberOfConnectors(): number {
ad2f27c3 1717 return Object.keys(this.stationInfo.Connectors).length;
7abfea5f
JB
1718 }
1719
c0560973 1720 private getMaxNumberOfConnectors(): number {
e58068fd 1721 let maxConnectors: number;
ad2f27c3
JB
1722 if (!Utils.isEmptyArray(this.stationInfo.numberOfConnectors)) {
1723 const numberOfConnectors = this.stationInfo.numberOfConnectors as number[];
6ecb15e4 1724 // Distribute evenly the number of connectors
ad2f27c3
JB
1725 maxConnectors = numberOfConnectors[(this.index - 1) % numberOfConnectors.length];
1726 } else if (!Utils.isUndefined(this.stationInfo.numberOfConnectors)) {
1727 maxConnectors = this.stationInfo.numberOfConnectors as number;
488fd3a7 1728 } else {
e7aeea18
JB
1729 maxConnectors = this.stationInfo.Connectors[0]
1730 ? this.getTemplateMaxNumberOfConnectors() - 1
1731 : this.getTemplateMaxNumberOfConnectors();
5ad8570f
JB
1732 }
1733 return maxConnectors;
2e6f5966
JB
1734 }
1735
0642c3d2
JB
1736 private getMaximumPower(): number {
1737 return (this.stationInfo['maxPower'] as number) ?? this.stationInfo.maximumPower;
1738 }
1739
cc6e8ab5 1740 private getMaximumAmperage(): number | undefined {
0642c3d2 1741 const maximumPower = this.getMaximumPower();
cc6e8ab5
JB
1742 switch (this.getCurrentOutType()) {
1743 case CurrentType.AC:
1744 return ACElectricUtils.amperagePerPhaseFromPower(
1745 this.getNumberOfPhases(),
ad8537a7 1746 maximumPower / this.getNumberOfConnectors(),
cc6e8ab5
JB
1747 this.getVoltageOut()
1748 );
1749 case CurrentType.DC:
ad8537a7 1750 return DCElectricUtils.amperage(maximumPower, this.getVoltageOut());
cc6e8ab5
JB
1751 }
1752 }
1753
1754 private getAmperageLimitationUnitDivider(): number {
1755 let unitDivider = 1;
1756 switch (this.stationInfo.amperageLimitationUnit) {
1757 case AmpereUnits.DECI_AMPERE:
1758 unitDivider = 10;
1759 break;
1760 case AmpereUnits.CENTI_AMPERE:
1761 unitDivider = 100;
1762 break;
1763 case AmpereUnits.MILLI_AMPERE:
1764 unitDivider = 1000;
1765 break;
1766 }
1767 return unitDivider;
1768 }
1769
1770 private getAmperageLimitation(): number | undefined {
1771 if (
1772 this.stationInfo.amperageLimitationOcppKey &&
1773 this.getConfigurationKey(this.stationInfo.amperageLimitationOcppKey)
1774 ) {
1775 return (
1776 Utils.convertToInt(
1777 this.getConfigurationKey(this.stationInfo.amperageLimitationOcppKey).value
1778 ) / this.getAmperageLimitationUnitDivider()
1779 );
1780 }
1781 }
1782
c0560973 1783 private async startMessageSequence(): Promise<void> {
6114e6f1 1784 if (this.stationInfo.autoRegister) {
f7f98c68 1785 await this.ocppRequestService.requestHandler<
ef6fa3fb
JB
1786 BootNotificationRequest,
1787 BootNotificationResponse
1788 >(
6a8b180d
JB
1789 RequestCommand.BOOT_NOTIFICATION,
1790 {
1791 chargePointModel: this.bootNotificationRequest.chargePointModel,
1792 chargePointVendor: this.bootNotificationRequest.chargePointVendor,
1793 chargeBoxSerialNumber: this.bootNotificationRequest.chargeBoxSerialNumber,
1794 firmwareVersion: this.bootNotificationRequest.firmwareVersion,
29d1e2e7
JB
1795 chargePointSerialNumber: this.bootNotificationRequest.chargePointSerialNumber,
1796 iccid: this.bootNotificationRequest.iccid,
1797 imsi: this.bootNotificationRequest.imsi,
1798 meterSerialNumber: this.bootNotificationRequest.meterSerialNumber,
1799 meterType: this.bootNotificationRequest.meterType,
6a8b180d
JB
1800 },
1801 { skipBufferingOnError: true }
e7aeea18 1802 );
6114e6f1 1803 }
136c90ba 1804 // Start WebSocket ping
c0560973 1805 this.startWebSocketPing();
5ad8570f 1806 // Start heartbeat
c0560973 1807 this.startHeartbeat();
0a60c33c 1808 // Initialize connectors status
734d790d
JB
1809 for (const connectorId of this.connectors.keys()) {
1810 if (connectorId === 0) {
593cf3f9 1811 continue;
e7aeea18
JB
1812 } else if (
1813 !this.stopped &&
1814 !this.getConnectorStatus(connectorId)?.status &&
1815 this.getConnectorStatus(connectorId)?.bootStatus
1816 ) {
136c90ba 1817 // Send status in template at startup
f7f98c68 1818 await this.ocppRequestService.requestHandler<
ef6fa3fb
JB
1819 StatusNotificationRequest,
1820 StatusNotificationResponse
1821 >(RequestCommand.STATUS_NOTIFICATION, {
1822 connectorId,
1823 status: this.getConnectorStatus(connectorId).bootStatus,
1824 errorCode: ChargePointErrorCode.NO_ERROR,
1825 });
e7aeea18
JB
1826 this.getConnectorStatus(connectorId).status =
1827 this.getConnectorStatus(connectorId).bootStatus;
1828 } else if (
1829 this.stopped &&
1830 this.getConnectorStatus(connectorId)?.status &&
1831 this.getConnectorStatus(connectorId)?.bootStatus
1832 ) {
136c90ba 1833 // Send status in template after reset
f7f98c68 1834 await this.ocppRequestService.requestHandler<
ef6fa3fb
JB
1835 StatusNotificationRequest,
1836 StatusNotificationResponse
1837 >(RequestCommand.STATUS_NOTIFICATION, {
1838 connectorId,
1839 status: this.getConnectorStatus(connectorId).bootStatus,
1840 errorCode: ChargePointErrorCode.NO_ERROR,
1841 });
e7aeea18
JB
1842 this.getConnectorStatus(connectorId).status =
1843 this.getConnectorStatus(connectorId).bootStatus;
734d790d 1844 } else if (!this.stopped && this.getConnectorStatus(connectorId)?.status) {
136c90ba 1845 // Send previous status at template reload
f7f98c68 1846 await this.ocppRequestService.requestHandler<
ef6fa3fb
JB
1847 StatusNotificationRequest,
1848 StatusNotificationResponse
1849 >(RequestCommand.STATUS_NOTIFICATION, {
1850 connectorId,
1851 status: this.getConnectorStatus(connectorId).status,
1852 errorCode: ChargePointErrorCode.NO_ERROR,
1853 });
5ad8570f 1854 } else {
136c90ba 1855 // Send default status
f7f98c68 1856 await this.ocppRequestService.requestHandler<
ef6fa3fb
JB
1857 StatusNotificationRequest,
1858 StatusNotificationResponse
1859 >(RequestCommand.STATUS_NOTIFICATION, {
1860 connectorId,
1861 status: ChargePointStatus.AVAILABLE,
1862 errorCode: ChargePointErrorCode.NO_ERROR,
1863 });
734d790d 1864 this.getConnectorStatus(connectorId).status = ChargePointStatus.AVAILABLE;
5ad8570f
JB
1865 }
1866 }
0a60c33c 1867 // Start the ATG
dd119a6b 1868 this.startAutomaticTransactionGenerator();
dd119a6b
JB
1869 }
1870
1871 private startAutomaticTransactionGenerator() {
ad2f27c3 1872 if (this.stationInfo.AutomaticTransactionGenerator.enable) {
265e4266 1873 if (!this.automaticTransactionGenerator) {
73b9adec 1874 this.automaticTransactionGenerator = AutomaticTransactionGenerator.getInstance(this);
5ad8570f 1875 }
265e4266
JB
1876 if (!this.automaticTransactionGenerator.started) {
1877 this.automaticTransactionGenerator.start();
5ad8570f
JB
1878 }
1879 }
5ad8570f
JB
1880 }
1881
e7aeea18
JB
1882 private async stopMessageSequence(
1883 reason: StopTransactionReason = StopTransactionReason.NONE
1884 ): Promise<void> {
136c90ba 1885 // Stop WebSocket ping
c0560973 1886 this.stopWebSocketPing();
79411696 1887 // Stop heartbeat
c0560973 1888 this.stopHeartbeat();
79411696 1889 // Stop the ATG
e7aeea18
JB
1890 if (
1891 this.stationInfo.AutomaticTransactionGenerator.enable &&
1892 this.automaticTransactionGenerator?.started
1893 ) {
0045cef5 1894 this.automaticTransactionGenerator.stop();
79411696 1895 } else {
734d790d
JB
1896 for (const connectorId of this.connectors.keys()) {
1897 if (connectorId > 0 && this.getConnectorStatus(connectorId)?.transactionStarted) {
1898 const transactionId = this.getConnectorStatus(connectorId).transactionId;
68c993d5
JB
1899 if (
1900 this.getBeginEndMeterValues() &&
1901 this.getOcppStrictCompliance() &&
1902 !this.getOutOfOrderEndMeterValues()
1903 ) {
1904 // FIXME: Implement OCPP version agnostic helpers
1905 const transactionEndMeterValue = OCPP16ServiceUtils.buildTransactionEndMeterValue(
1906 this,
1907 connectorId,
1908 this.getEnergyActiveImportRegisterByTransactionId(transactionId)
1909 );
f7f98c68
JB
1910 await this.ocppRequestService.requestHandler<MeterValuesRequest, MeterValuesResponse>(
1911 RequestCommand.METER_VALUES,
1912 {
1913 connectorId,
1914 transactionId,
1915 meterValue: transactionEndMeterValue,
1916 }
1917 );
ef6fa3fb 1918 }
f7f98c68 1919 await this.ocppRequestService.requestHandler<
ef6fa3fb
JB
1920 StopTransactionRequest,
1921 StopTransactionResponse
1922 >(RequestCommand.STOP_TRANSACTION, {
1923 transactionId,
1924 meterStop: this.getEnergyActiveImportRegisterByTransactionId(transactionId),
1925 idTag: this.getTransactionIdTag(transactionId),
1926 reason,
1927 });
79411696
JB
1928 }
1929 }
1930 }
1931 }
1932
c0560973 1933 private startWebSocketPing(): void {
e7aeea18
JB
1934 const webSocketPingInterval: number = this.getConfigurationKey(
1935 StandardParametersKey.WebSocketPingInterval
1936 )
1937 ? Utils.convertToInt(
1938 this.getConfigurationKey(StandardParametersKey.WebSocketPingInterval).value
1939 )
9cd3dfb0 1940 : 0;
ad2f27c3
JB
1941 if (webSocketPingInterval > 0 && !this.webSocketPingSetInterval) {
1942 this.webSocketPingSetInterval = setInterval(() => {
d5bff457 1943 if (this.isWebSocketConnectionOpened()) {
e7aeea18
JB
1944 this.wsConnection.ping((): void => {
1945 /* This is intentional */
1946 });
136c90ba
JB
1947 }
1948 }, webSocketPingInterval * 1000);
e7aeea18
JB
1949 logger.info(
1950 this.logPrefix() +
1951 ' WebSocket ping started every ' +
1952 Utils.formatDurationSeconds(webSocketPingInterval)
1953 );
ad2f27c3 1954 } else if (this.webSocketPingSetInterval) {
e7aeea18
JB
1955 logger.info(
1956 this.logPrefix() +
1957 ' WebSocket ping every ' +
1958 Utils.formatDurationSeconds(webSocketPingInterval) +
1959 ' already started'
1960 );
136c90ba 1961 } else {
e7aeea18
JB
1962 logger.error(
1963 `${this.logPrefix()} WebSocket ping interval set to ${
1964 webSocketPingInterval
1965 ? Utils.formatDurationSeconds(webSocketPingInterval)
1966 : webSocketPingInterval
1967 }, not starting the WebSocket ping`
1968 );
136c90ba
JB
1969 }
1970 }
1971
c0560973 1972 private stopWebSocketPing(): void {
ad2f27c3
JB
1973 if (this.webSocketPingSetInterval) {
1974 clearInterval(this.webSocketPingSetInterval);
136c90ba
JB
1975 }
1976 }
1977
e7aeea18
JB
1978 private warnDeprecatedTemplateKey(
1979 template: ChargingStationTemplate,
1980 key: string,
1981 chargingStationId: string,
1982 logMsgToAppend = ''
1983 ): void {
2dcfe98e 1984 if (!Utils.isUndefined(template[key])) {
e7aeea18
JB
1985 const logPrefixStr = ` ${chargingStationId} |`;
1986 logger.warn(
1987 `${Utils.logPrefix(logPrefixStr)} Deprecated template key '${key}' usage in file '${
2484ac1e 1988 this.templateFile
e7aeea18
JB
1989 }'${logMsgToAppend && '. ' + logMsgToAppend}`
1990 );
2dcfe98e
JB
1991 }
1992 }
1993
e7aeea18
JB
1994 private convertDeprecatedTemplateKey(
1995 template: ChargingStationTemplate,
1996 deprecatedKey: string,
1997 key: string
1998 ): void {
2dcfe98e 1999 if (!Utils.isUndefined(template[deprecatedKey])) {
c0f4be74 2000 template[key] = template[deprecatedKey] as unknown;
2dcfe98e
JB
2001 delete template[deprecatedKey];
2002 }
2003 }
2004
1f5df42a 2005 private getConfiguredSupervisionUrl(): URL {
e7aeea18
JB
2006 const supervisionUrls = Utils.cloneObject<string | string[]>(
2007 this.stationInfo.supervisionUrls ?? Configuration.getSupervisionUrls()
2008 );
c0560973 2009 if (!Utils.isEmptyArray(supervisionUrls)) {
2dcfe98e
JB
2010 let urlIndex = 0;
2011 switch (Configuration.getSupervisionUrlDistribution()) {
2012 case SupervisionUrlDistribution.ROUND_ROBIN:
2013 urlIndex = (this.index - 1) % supervisionUrls.length;
2014 break;
2015 case SupervisionUrlDistribution.RANDOM:
2016 // Get a random url
2017 urlIndex = Math.floor(Utils.secureRandom() * supervisionUrls.length);
2018 break;
2019 case SupervisionUrlDistribution.SEQUENTIAL:
2020 if (this.index <= supervisionUrls.length) {
2021 urlIndex = this.index - 1;
2022 } else {
e7aeea18
JB
2023 logger.warn(
2024 `${this.logPrefix()} No more configured supervision urls available, using the first one`
2025 );
2dcfe98e
JB
2026 }
2027 break;
2028 default:
e7aeea18
JB
2029 logger.error(
2030 `${this.logPrefix()} Unknown supervision url distribution '${Configuration.getSupervisionUrlDistribution()}' from values '${SupervisionUrlDistribution.toString()}', defaulting to ${
2031 SupervisionUrlDistribution.ROUND_ROBIN
2032 }`
2033 );
2dcfe98e
JB
2034 urlIndex = (this.index - 1) % supervisionUrls.length;
2035 break;
c0560973 2036 }
2dcfe98e 2037 return new URL(supervisionUrls[urlIndex]);
c0560973 2038 }
57939a9d 2039 return new URL(supervisionUrls as string);
136c90ba
JB
2040 }
2041
6e0964c8 2042 private getHeartbeatInterval(): number | undefined {
c0560973
JB
2043 const HeartbeatInterval = this.getConfigurationKey(StandardParametersKey.HeartbeatInterval);
2044 if (HeartbeatInterval) {
2045 return Utils.convertToInt(HeartbeatInterval.value) * 1000;
2046 }
2047 const HeartBeatInterval = this.getConfigurationKey(StandardParametersKey.HeartBeatInterval);
2048 if (HeartBeatInterval) {
2049 return Utils.convertToInt(HeartBeatInterval.value) * 1000;
0a60c33c 2050 }
e7aeea18
JB
2051 !this.stationInfo.autoRegister &&
2052 logger.warn(
2053 `${this.logPrefix()} Heartbeat interval configuration key not set, using default value: ${
2054 Constants.DEFAULT_HEARTBEAT_INTERVAL
2055 }`
2056 );
47e22477 2057 return Constants.DEFAULT_HEARTBEAT_INTERVAL;
0a60c33c
JB
2058 }
2059
c0560973 2060 private stopHeartbeat(): void {
ad2f27c3
JB
2061 if (this.heartbeatSetInterval) {
2062 clearInterval(this.heartbeatSetInterval);
7dde0b73 2063 }
5ad8570f
JB
2064 }
2065
e7aeea18 2066 private openWSConnection(
2484ac1e 2067 options: WsOptions = this.stationInfo.wsOptions,
e7aeea18
JB
2068 forceCloseOpened = false
2069 ): void {
37486900 2070 options.handshakeTimeout = options?.handshakeTimeout ?? this.getConnectionTimeout() * 1000;
e7aeea18
JB
2071 if (
2072 !Utils.isNullOrUndefined(this.stationInfo.supervisionUser) &&
2073 !Utils.isNullOrUndefined(this.stationInfo.supervisionPassword)
2074 ) {
15042c5f
JB
2075 options.auth = `${this.stationInfo.supervisionUser}:${this.stationInfo.supervisionPassword}`;
2076 }
d5bff457 2077 if (this.isWebSocketConnectionOpened() && forceCloseOpened) {
c0560973
JB
2078 this.wsConnection.close();
2079 }
88184022 2080 let protocol: string;
1f5df42a 2081 switch (this.getOcppVersion()) {
c0560973
JB
2082 case OCPPVersion.VERSION_16:
2083 protocol = 'ocpp' + OCPPVersion.VERSION_16;
2084 break;
2085 default:
1f5df42a 2086 this.handleUnsupportedVersion(this.getOcppVersion());
c0560973
JB
2087 break;
2088 }
2089 this.wsConnection = new WebSocket(this.wsConnectionUrl, protocol, options);
e7aeea18
JB
2090 logger.info(
2091 this.logPrefix() + ' Open OCPP connection to URL ' + this.wsConnectionUrl.toString()
2092 );
136c90ba
JB
2093 }
2094
dd119a6b 2095 private stopMeterValues(connectorId: number) {
734d790d
JB
2096 if (this.getConnectorStatus(connectorId)?.transactionSetInterval) {
2097 clearInterval(this.getConnectorStatus(connectorId).transactionSetInterval);
dd119a6b
JB
2098 }
2099 }
2100
6e0964c8 2101 private getReconnectExponentialDelay(): boolean | undefined {
e7aeea18
JB
2102 return !Utils.isUndefined(this.stationInfo.reconnectExponentialDelay)
2103 ? this.stationInfo.reconnectExponentialDelay
2104 : false;
5ad8570f
JB
2105 }
2106
d09085e9 2107 private async reconnect(code: number): Promise<void> {
7874b0b1
JB
2108 // Stop WebSocket ping
2109 this.stopWebSocketPing();
136c90ba 2110 // Stop heartbeat
c0560973 2111 this.stopHeartbeat();
5ad8570f 2112 // Stop the ATG if needed
e7aeea18
JB
2113 if (
2114 this.stationInfo.AutomaticTransactionGenerator.enable &&
ad2f27c3 2115 this.stationInfo.AutomaticTransactionGenerator.stopOnConnectionFailure &&
e7aeea18
JB
2116 this.automaticTransactionGenerator?.started
2117 ) {
0045cef5 2118 this.automaticTransactionGenerator.stop();
ad2f27c3 2119 }
e7aeea18
JB
2120 if (
2121 this.autoReconnectRetryCount < this.getAutoReconnectMaxRetries() ||
2122 this.getAutoReconnectMaxRetries() === -1
2123 ) {
ad2f27c3 2124 this.autoReconnectRetryCount++;
e7aeea18
JB
2125 const reconnectDelay = this.getReconnectExponentialDelay()
2126 ? Utils.exponentialDelay(this.autoReconnectRetryCount)
2127 : this.getConnectionTimeout() * 1000;
2128 const reconnectTimeout = reconnectDelay - 100 > 0 && reconnectDelay;
2129 logger.error(
2130 `${this.logPrefix()} WebSocket: connection retry in ${Utils.roundTo(
2131 reconnectDelay,
2132 2
2133 )}ms, timeout ${reconnectTimeout}ms`
2134 );
032d6efc 2135 await Utils.sleep(reconnectDelay);
e7aeea18
JB
2136 logger.error(
2137 this.logPrefix() +
2138 ' WebSocket: reconnecting try #' +
2139 this.autoReconnectRetryCount.toString()
2140 );
2141 this.openWSConnection(
2142 { ...this.stationInfo.wsOptions, handshakeTimeout: reconnectTimeout },
2143 true
2144 );
265e4266 2145 this.wsConnectionRestarted = true;
c0560973 2146 } else if (this.getAutoReconnectMaxRetries() !== -1) {
e7aeea18 2147 logger.error(
71a77ac2 2148 `${this.logPrefix()} WebSocket reconnect failure: maximum retries reached (${
e7aeea18
JB
2149 this.autoReconnectRetryCount
2150 }) or retry disabled (${this.getAutoReconnectMaxRetries()})`
2151 );
5ad8570f
JB
2152 }
2153 }
2154
a2653482
JB
2155 private initializeConnectorStatus(connectorId: number): void {
2156 this.getConnectorStatus(connectorId).idTagLocalAuthorized = false;
2157 this.getConnectorStatus(connectorId).idTagAuthorized = false;
2158 this.getConnectorStatus(connectorId).transactionRemoteStarted = false;
734d790d
JB
2159 this.getConnectorStatus(connectorId).transactionStarted = false;
2160 this.getConnectorStatus(connectorId).energyActiveImportRegisterValue = 0;
2161 this.getConnectorStatus(connectorId).transactionEnergyActiveImportRegisterValue = 0;
0a60c33c 2162 }
7dde0b73 2163}