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