0775bcb93252de952589738be028c6c398979e4c
[e-mobility-charging-stations-simulator.git] / src / charging-station / ChargingStation.ts
1 // Partial Copyright Jerome Benoit. 2021. All Rights Reserved.
2
3 import crypto from 'crypto';
4 import fs from 'fs';
5 import path from 'path';
6 import { URL } from 'url';
7 import { parentPort } from 'worker_threads';
8
9 import WebSocket, { Data, RawData } from 'ws';
10
11 import BaseError from '../exception/BaseError';
12 import OCPPError from '../exception/OCPPError';
13 import PerformanceStatistics from '../performance/PerformanceStatistics';
14 import type { AutomaticTransactionGeneratorConfiguration } from '../types/AutomaticTransactionGenerator';
15 import type ChargingStationConfiguration from '../types/ChargingStationConfiguration';
16 import type ChargingStationInfo from '../types/ChargingStationInfo';
17 import type ChargingStationOcppConfiguration from '../types/ChargingStationOcppConfiguration';
18 import ChargingStationTemplate, {
19 CurrentType,
20 PowerUnits,
21 WsOptions,
22 } from '../types/ChargingStationTemplate';
23 import { SupervisionUrlDistribution } from '../types/ConfigurationData';
24 import type { ConnectorStatus } from '../types/ConnectorStatus';
25 import { FileType } from '../types/FileType';
26 import type { JsonType } from '../types/JsonType';
27 import { ChargePointErrorCode } from '../types/ocpp/ChargePointErrorCode';
28 import { ChargePointStatus } from '../types/ocpp/ChargePointStatus';
29 import { ChargingProfile, ChargingRateUnitType } from '../types/ocpp/ChargingProfile';
30 import {
31 ConnectorPhaseRotation,
32 StandardParametersKey,
33 SupportedFeatureProfiles,
34 VendorDefaultParametersKey,
35 } from '../types/ocpp/Configuration';
36 import { ErrorType } from '../types/ocpp/ErrorType';
37 import { MessageType } from '../types/ocpp/MessageType';
38 import { MeterValue, MeterValueMeasurand } from '../types/ocpp/MeterValues';
39 import { OCPPVersion } from '../types/ocpp/OCPPVersion';
40 import {
41 AvailabilityType,
42 BootNotificationRequest,
43 CachedRequest,
44 HeartbeatRequest,
45 IncomingRequest,
46 IncomingRequestCommand,
47 MeterValuesRequest,
48 RequestCommand,
49 StatusNotificationRequest,
50 } from '../types/ocpp/Requests';
51 import {
52 BootNotificationResponse,
53 ErrorResponse,
54 HeartbeatResponse,
55 MeterValuesResponse,
56 RegistrationStatus,
57 Response,
58 StatusNotificationResponse,
59 } from '../types/ocpp/Responses';
60 import {
61 StopTransactionReason,
62 StopTransactionRequest,
63 StopTransactionResponse,
64 } from '../types/ocpp/Transaction';
65 import { WSError, WebSocketCloseEventStatusCode } from '../types/WebSocket';
66 import Configuration from '../utils/Configuration';
67 import Constants from '../utils/Constants';
68 import { ACElectricUtils, DCElectricUtils } from '../utils/ElectricUtils';
69 import FileUtils from '../utils/FileUtils';
70 import logger from '../utils/Logger';
71 import Utils from '../utils/Utils';
72 import AuthorizedTagsCache from './AuthorizedTagsCache';
73 import AutomaticTransactionGenerator from './AutomaticTransactionGenerator';
74 import { ChargingStationConfigurationUtils } from './ChargingStationConfigurationUtils';
75 import { ChargingStationUtils } from './ChargingStationUtils';
76 import ChargingStationWorkerBroadcastChannel from './ChargingStationWorkerBroadcastChannel';
77 import { MessageChannelUtils } from './MessageChannelUtils';
78 import OCPP16IncomingRequestService from './ocpp/1.6/OCPP16IncomingRequestService';
79 import OCPP16RequestService from './ocpp/1.6/OCPP16RequestService';
80 import OCPP16ResponseService from './ocpp/1.6/OCPP16ResponseService';
81 import { OCPP16ServiceUtils } from './ocpp/1.6/OCPP16ServiceUtils';
82 import type OCPPIncomingRequestService from './ocpp/OCPPIncomingRequestService';
83 import type OCPPRequestService from './ocpp/OCPPRequestService';
84 import SharedLRUCache from './SharedLRUCache';
85
86 export default class ChargingStation {
87 public readonly templateFile: string;
88 public stationInfo!: ChargingStationInfo;
89 public started: boolean;
90 public authorizedTagsCache: AuthorizedTagsCache;
91 public automaticTransactionGenerator!: AutomaticTransactionGenerator;
92 public ocppConfiguration!: ChargingStationOcppConfiguration;
93 public wsConnection!: WebSocket;
94 public readonly connectors: Map<number, ConnectorStatus>;
95 public readonly requests: Map<string, CachedRequest>;
96 public performanceStatistics!: PerformanceStatistics;
97 public heartbeatSetInterval!: NodeJS.Timeout;
98 public ocppRequestService!: OCPPRequestService;
99 public bootNotificationRequest!: BootNotificationRequest;
100 public bootNotificationResponse!: BootNotificationResponse | null;
101 public powerDivider!: number;
102 private readonly index: number;
103 private configurationFile!: string;
104 private configurationFileHash!: string;
105 private connectorsConfigurationHash!: string;
106 private ocppIncomingRequestService!: OCPPIncomingRequestService;
107 private readonly messageBuffer: Set<string>;
108 private configuredSupervisionUrl!: URL;
109 private wsConnectionRestarted: boolean;
110 private autoReconnectRetryCount: number;
111 private templateFileWatcher!: fs.FSWatcher;
112 private readonly sharedLRUCache: SharedLRUCache;
113 private webSocketPingSetInterval!: NodeJS.Timeout;
114 private readonly chargingStationWorkerBroadcastChannel: ChargingStationWorkerBroadcastChannel;
115
116 constructor(index: number, templateFile: string) {
117 this.started = false;
118 this.wsConnectionRestarted = false;
119 this.autoReconnectRetryCount = 0;
120 this.index = index;
121 this.templateFile = templateFile;
122 this.connectors = new Map<number, ConnectorStatus>();
123 this.requests = new Map<string, CachedRequest>();
124 this.messageBuffer = new Set<string>();
125 this.sharedLRUCache = SharedLRUCache.getInstance();
126 this.authorizedTagsCache = AuthorizedTagsCache.getInstance();
127 this.chargingStationWorkerBroadcastChannel = new ChargingStationWorkerBroadcastChannel(this);
128
129 this.initialize();
130 }
131
132 private get wsConnectionUrl(): URL {
133 return new URL(
134 (this.getSupervisionUrlOcppConfiguration()
135 ? ChargingStationConfigurationUtils.getConfigurationKey(
136 this,
137 this.getSupervisionUrlOcppKey()
138 ).value
139 : this.configuredSupervisionUrl.href) +
140 '/' +
141 this.stationInfo.chargingStationId
142 );
143 }
144
145 public logPrefix(): string {
146 return Utils.logPrefix(
147 ` ${
148 this?.stationInfo?.chargingStationId ??
149 ChargingStationUtils.getChargingStationId(this.index, this.getTemplateFromFile())
150 } |`
151 );
152 }
153
154 public getRandomIdTag(): string {
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];
160 }
161
162 public hasAuthorizedTags(): boolean {
163 return !Utils.isEmptyArray(
164 this.authorizedTagsCache.getAuthorizedTags(
165 ChargingStationUtils.getAuthorizationFile(this.stationInfo)
166 )
167 );
168 }
169
170 public getEnableStatistics(): boolean | undefined {
171 return !Utils.isUndefined(this.stationInfo.enableStatistics)
172 ? this.stationInfo.enableStatistics
173 : true;
174 }
175
176 public getMustAuthorizeAtRemoteStart(): boolean | undefined {
177 return this.stationInfo.mustAuthorizeAtRemoteStart ?? true;
178 }
179
180 public getPayloadSchemaValidation(): boolean | undefined {
181 return this.stationInfo.payloadSchemaValidation ?? true;
182 }
183
184 public getNumberOfPhases(stationInfo?: ChargingStationInfo): number | undefined {
185 const localStationInfo: ChargingStationInfo = stationInfo ?? this.stationInfo;
186 switch (this.getCurrentOutType(stationInfo)) {
187 case CurrentType.AC:
188 return !Utils.isUndefined(localStationInfo.numberOfPhases)
189 ? localStationInfo.numberOfPhases
190 : 3;
191 case CurrentType.DC:
192 return 0;
193 }
194 }
195
196 public isWebSocketConnectionOpened(): boolean {
197 return this?.wsConnection?.readyState === WebSocket.OPEN;
198 }
199
200 public getRegistrationStatus(): RegistrationStatus {
201 return this?.bootNotificationResponse?.status;
202 }
203
204 public isInUnknownState(): boolean {
205 return Utils.isNullOrUndefined(this?.bootNotificationResponse?.status);
206 }
207
208 public isInPendingState(): boolean {
209 return this?.bootNotificationResponse?.status === RegistrationStatus.PENDING;
210 }
211
212 public isInAcceptedState(): boolean {
213 return this?.bootNotificationResponse?.status === RegistrationStatus.ACCEPTED;
214 }
215
216 public isInRejectedState(): boolean {
217 return this?.bootNotificationResponse?.status === RegistrationStatus.REJECTED;
218 }
219
220 public isRegistered(): boolean {
221 return !this.isInUnknownState() && (this.isInAcceptedState() || this.isInPendingState());
222 }
223
224 public isChargingStationAvailable(): boolean {
225 return this.getConnectorStatus(0).availability === AvailabilityType.OPERATIVE;
226 }
227
228 public isConnectorAvailable(id: number): boolean {
229 return id > 0 && this.getConnectorStatus(id).availability === AvailabilityType.OPERATIVE;
230 }
231
232 public getNumberOfConnectors(): number {
233 return this.connectors.get(0) ? this.connectors.size - 1 : this.connectors.size;
234 }
235
236 public getConnectorStatus(id: number): ConnectorStatus | undefined {
237 return this.connectors.get(id);
238 }
239
240 public getCurrentOutType(stationInfo?: ChargingStationInfo): CurrentType {
241 return (stationInfo ?? this.stationInfo).currentOutType ?? CurrentType.AC;
242 }
243
244 public getOcppStrictCompliance(): boolean {
245 return this.stationInfo?.ocppStrictCompliance ?? false;
246 }
247
248 public getVoltageOut(stationInfo?: ChargingStationInfo): number | undefined {
249 const defaultVoltageOut = ChargingStationUtils.getDefaultVoltageOut(
250 this.getCurrentOutType(stationInfo),
251 this.templateFile,
252 this.logPrefix()
253 );
254 const localStationInfo: ChargingStationInfo = stationInfo ?? this.stationInfo;
255 return !Utils.isUndefined(localStationInfo.voltageOut)
256 ? localStationInfo.voltageOut
257 : defaultVoltageOut;
258 }
259
260 public getConnectorMaximumAvailablePower(connectorId: number): number {
261 let connectorAmperageLimitationPowerLimit: number;
262 if (
263 !Utils.isNullOrUndefined(this.getAmperageLimitation()) &&
264 this.getAmperageLimitation() < this.stationInfo.maximumAmperage
265 ) {
266 connectorAmperageLimitationPowerLimit =
267 (this.getCurrentOutType() === CurrentType.AC
268 ? ACElectricUtils.powerTotal(
269 this.getNumberOfPhases(),
270 this.getVoltageOut(),
271 this.getAmperageLimitation() * this.getNumberOfConnectors()
272 )
273 : DCElectricUtils.power(this.getVoltageOut(), this.getAmperageLimitation())) /
274 this.powerDivider;
275 }
276 const connectorMaximumPower = this.getMaximumPower() / this.powerDivider;
277 const connectorChargingProfilePowerLimit = this.getChargingProfilePowerLimit(connectorId);
278 return Math.min(
279 isNaN(connectorMaximumPower) ? Infinity : connectorMaximumPower,
280 isNaN(connectorAmperageLimitationPowerLimit)
281 ? Infinity
282 : connectorAmperageLimitationPowerLimit,
283 isNaN(connectorChargingProfilePowerLimit) ? Infinity : connectorChargingProfilePowerLimit
284 );
285 }
286
287 public getTransactionIdTag(transactionId: number): string | undefined {
288 for (const connectorId of this.connectors.keys()) {
289 if (connectorId > 0 && this.getConnectorStatus(connectorId).transactionId === transactionId) {
290 return this.getConnectorStatus(connectorId).transactionIdTag;
291 }
292 }
293 }
294
295 public getOutOfOrderEndMeterValues(): boolean {
296 return this.stationInfo?.outOfOrderEndMeterValues ?? false;
297 }
298
299 public getBeginEndMeterValues(): boolean {
300 return this.stationInfo?.beginEndMeterValues ?? false;
301 }
302
303 public getMeteringPerTransaction(): boolean {
304 return this.stationInfo?.meteringPerTransaction ?? true;
305 }
306
307 public getTransactionDataMeterValues(): boolean {
308 return this.stationInfo?.transactionDataMeterValues ?? false;
309 }
310
311 public getMainVoltageMeterValues(): boolean {
312 return this.stationInfo?.mainVoltageMeterValues ?? true;
313 }
314
315 public getPhaseLineToLineVoltageMeterValues(): boolean {
316 return this.stationInfo?.phaseLineToLineVoltageMeterValues ?? false;
317 }
318
319 public getCustomValueLimitationMeterValues(): boolean {
320 return this.stationInfo?.customValueLimitationMeterValues ?? true;
321 }
322
323 public getConnectorIdByTransactionId(transactionId: number): number | undefined {
324 for (const connectorId of this.connectors.keys()) {
325 if (
326 connectorId > 0 &&
327 this.getConnectorStatus(connectorId)?.transactionId === transactionId
328 ) {
329 return connectorId;
330 }
331 }
332 }
333
334 public getEnergyActiveImportRegisterByTransactionId(
335 transactionId: number,
336 meterStop = false
337 ): number {
338 return this.getEnergyActiveImportRegister(
339 this.getConnectorStatus(this.getConnectorIdByTransactionId(transactionId)),
340 meterStop
341 );
342 }
343
344 public getEnergyActiveImportRegisterByConnectorId(connectorId: number): number {
345 return this.getEnergyActiveImportRegister(this.getConnectorStatus(connectorId));
346 }
347
348 public getAuthorizeRemoteTxRequests(): boolean {
349 const authorizeRemoteTxRequests = ChargingStationConfigurationUtils.getConfigurationKey(
350 this,
351 StandardParametersKey.AuthorizeRemoteTxRequests
352 );
353 return authorizeRemoteTxRequests
354 ? Utils.convertToBoolean(authorizeRemoteTxRequests.value)
355 : false;
356 }
357
358 public getLocalAuthListEnabled(): boolean {
359 const localAuthListEnabled = ChargingStationConfigurationUtils.getConfigurationKey(
360 this,
361 StandardParametersKey.LocalAuthListEnabled
362 );
363 return localAuthListEnabled ? Utils.convertToBoolean(localAuthListEnabled.value) : false;
364 }
365
366 public startHeartbeat(): void {
367 if (
368 this.getHeartbeatInterval() &&
369 this.getHeartbeatInterval() > 0 &&
370 !this.heartbeatSetInterval
371 ) {
372 // eslint-disable-next-line @typescript-eslint/no-misused-promises
373 this.heartbeatSetInterval = setInterval(async (): Promise<void> => {
374 await this.ocppRequestService.requestHandler<HeartbeatRequest, HeartbeatResponse>(
375 this,
376 RequestCommand.HEARTBEAT
377 );
378 }, this.getHeartbeatInterval());
379 logger.info(
380 this.logPrefix() +
381 ' Heartbeat started every ' +
382 Utils.formatDurationMilliSeconds(this.getHeartbeatInterval())
383 );
384 } else if (this.heartbeatSetInterval) {
385 logger.info(
386 this.logPrefix() +
387 ' Heartbeat already started every ' +
388 Utils.formatDurationMilliSeconds(this.getHeartbeatInterval())
389 );
390 } else {
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 );
398 }
399 }
400
401 public restartHeartbeat(): void {
402 // Stop heartbeat
403 this.stopHeartbeat();
404 // Start heartbeat
405 this.startHeartbeat();
406 }
407
408 public restartWebSocketPing(): void {
409 // Stop WebSocket ping
410 this.stopWebSocketPing();
411 // Start WebSocket ping
412 this.startWebSocketPing();
413 }
414
415 public startMeterValues(connectorId: number, interval: number): void {
416 if (connectorId === 0) {
417 logger.error(
418 `${this.logPrefix()} Trying to start MeterValues on connector Id ${connectorId.toString()}`
419 );
420 return;
421 }
422 if (!this.getConnectorStatus(connectorId)) {
423 logger.error(
424 `${this.logPrefix()} Trying to start MeterValues on non existing connector Id ${connectorId.toString()}`
425 );
426 return;
427 }
428 if (this.getConnectorStatus(connectorId)?.transactionStarted === false) {
429 logger.error(
430 `${this.logPrefix()} Trying to start MeterValues on connector Id ${connectorId} with no transaction started`
431 );
432 return;
433 } else if (
434 this.getConnectorStatus(connectorId)?.transactionStarted === true &&
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 );
440 return;
441 }
442 if (interval > 0) {
443 // eslint-disable-next-line @typescript-eslint/no-misused-promises
444 this.getConnectorStatus(connectorId).transactionSetInterval = setInterval(
445 // eslint-disable-next-line @typescript-eslint/no-misused-promises
446 async (): Promise<void> => {
447 // FIXME: Implement OCPP version agnostic helpers
448 const meterValue: MeterValue = OCPP16ServiceUtils.buildMeterValue(
449 this,
450 connectorId,
451 this.getConnectorStatus(connectorId).transactionId,
452 interval
453 );
454 await this.ocppRequestService.requestHandler<MeterValuesRequest, MeterValuesResponse>(
455 this,
456 RequestCommand.METER_VALUES,
457 {
458 connectorId,
459 transactionId: this.getConnectorStatus(connectorId).transactionId,
460 meterValue: [meterValue],
461 }
462 );
463 },
464 interval
465 );
466 } else {
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 );
474 }
475 }
476
477 public start(): void {
478 if (this.getEnableStatistics()) {
479 this.performanceStatistics.start();
480 }
481 this.openWSConnection();
482 // Monitor charging station template file
483 this.templateFileWatcher = FileUtils.watchJsonFile(
484 this.logPrefix(),
485 FileType.ChargingStationTemplate,
486 this.templateFile,
487 null,
488 (event, filename): void => {
489 if (filename && event === 'change') {
490 try {
491 logger.debug(
492 `${this.logPrefix()} ${FileType.ChargingStationTemplate} ${
493 this.templateFile
494 } file have changed, reload`
495 );
496 this.sharedLRUCache.deleteChargingStationTemplate(this.stationInfo?.templateHash);
497 // Initialize
498 this.initialize();
499 // Restart the ATG
500 this.stopAutomaticTransactionGenerator();
501 if (this.getAutomaticTransactionGeneratorConfigurationFromTemplate()?.enable === true) {
502 this.startAutomaticTransactionGenerator();
503 }
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(
512 `${this.logPrefix()} ${FileType.ChargingStationTemplate} file monitoring error:`,
513 error
514 );
515 }
516 }
517 }
518 );
519 parentPort.postMessage(MessageChannelUtils.buildStartedMessage(this));
520 }
521
522 public async stop(reason?: StopTransactionReason): Promise<void> {
523 await this.stopMessageSequence(reason);
524 for (const connectorId of this.connectors.keys()) {
525 if (connectorId > 0) {
526 await this.ocppRequestService.requestHandler<
527 StatusNotificationRequest,
528 StatusNotificationResponse
529 >(this, RequestCommand.STATUS_NOTIFICATION, {
530 connectorId,
531 status: ChargePointStatus.UNAVAILABLE,
532 errorCode: ChargePointErrorCode.NO_ERROR,
533 });
534 this.getConnectorStatus(connectorId).status = ChargePointStatus.UNAVAILABLE;
535 }
536 }
537 this.closeWSConnection();
538 if (this.getEnableStatistics()) {
539 this.performanceStatistics.stop();
540 }
541 this.sharedLRUCache.deleteChargingStationConfiguration(this.configurationFileHash);
542 this.templateFileWatcher.close();
543 this.sharedLRUCache.deleteChargingStationTemplate(this.stationInfo?.templateHash);
544 this.bootNotificationResponse = null;
545 this.started = false;
546 parentPort.postMessage(MessageChannelUtils.buildStoppedMessage(this));
547 }
548
549 public async reset(reason?: StopTransactionReason): Promise<void> {
550 await this.stop(reason);
551 await Utils.sleep(this.stationInfo.resetTime);
552 this.initialize();
553 this.start();
554 }
555
556 public saveOcppConfiguration(): void {
557 if (this.getOcppPersistentConfiguration()) {
558 this.saveConfiguration();
559 }
560 }
561
562 public setChargingProfile(connectorId: number, cp: ChargingProfile): void {
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 }
569 if (Array.isArray(this.getConnectorStatus(connectorId).chargingProfiles) === false) {
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 );
573 this.getConnectorStatus(connectorId).chargingProfiles = [];
574 }
575 let cpReplaced = false;
576 if (!Utils.isEmptyArray(this.getConnectorStatus(connectorId).chargingProfiles)) {
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 }
587 }
588 );
589 }
590 !cpReplaced && this.getConnectorStatus(connectorId).chargingProfiles?.push(cp);
591 }
592
593 public resetConnectorStatus(connectorId: number): void {
594 this.getConnectorStatus(connectorId).idTagLocalAuthorized = false;
595 this.getConnectorStatus(connectorId).idTagAuthorized = false;
596 this.getConnectorStatus(connectorId).transactionRemoteStarted = false;
597 this.getConnectorStatus(connectorId).transactionStarted = false;
598 delete this.getConnectorStatus(connectorId).localAuthorizeIdTag;
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;
604 this.stopMeterValues(connectorId);
605 parentPort.postMessage(MessageChannelUtils.buildUpdatedMessage(this));
606 }
607
608 public hasFeatureProfile(featureProfile: SupportedFeatureProfiles) {
609 return ChargingStationConfigurationUtils.getConfigurationKey(
610 this,
611 StandardParametersKey.SupportedFeatureProfiles
612 )?.value.includes(featureProfile);
613 }
614
615 public bufferMessage(message: string): void {
616 this.messageBuffer.add(message);
617 }
618
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
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
658 logger.info(
659 `${this.logPrefix()} Open OCPP connection to URL ${this.wsConnectionUrl.toString()}`
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
694 public startAutomaticTransactionGenerator(connectorIds?: number[]): void {
695 if (!this.automaticTransactionGenerator) {
696 this.automaticTransactionGenerator = AutomaticTransactionGenerator.getInstance(
697 this.getAutomaticTransactionGeneratorConfigurationFromTemplate(),
698 this
699 );
700 }
701 if (!Utils.isEmptyArray(connectorIds)) {
702 for (const connectorId of connectorIds) {
703 this.automaticTransactionGenerator.startConnector(connectorId);
704 }
705 } else {
706 this.automaticTransactionGenerator.start();
707 }
708 }
709
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();
717 this.automaticTransactionGenerator = null;
718 }
719 }
720
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),
753 reason,
754 }
755 );
756 }
757
758 private flushMessageBuffer(): void {
759 if (this.messageBuffer.size > 0) {
760 this.messageBuffer.forEach((message) => {
761 // TODO: evaluate the need to track performance
762 this.wsConnection.send(message);
763 this.messageBuffer.delete(message);
764 });
765 }
766 }
767
768 private getSupervisionUrlOcppConfiguration(): boolean {
769 return this.stationInfo.supervisionUrlOcppConfiguration ?? false;
770 }
771
772 private getSupervisionUrlOcppKey(): string {
773 return this.stationInfo.supervisionUrlOcppKey ?? VendorDefaultParametersKey.ConnectionUrl;
774 }
775
776 private getTemplateFromFile(): ChargingStationTemplate | null {
777 let template: ChargingStationTemplate = null;
778 try {
779 if (this.sharedLRUCache.hasChargingStationTemplate(this.stationInfo?.templateHash)) {
780 template = this.sharedLRUCache.getChargingStationTemplate(this.stationInfo.templateHash);
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');
792 this.sharedLRUCache.setChargingStationTemplate(template);
793 }
794 } catch (error) {
795 FileUtils.handleFileException(
796 this.logPrefix(),
797 FileType.ChargingStationTemplate,
798 this.templateFile,
799 error as NodeJS.ErrnoException
800 );
801 }
802 return template;
803 }
804
805 private getStationInfoFromTemplate(): ChargingStationInfo {
806 const stationTemplate: ChargingStationTemplate = this.getTemplateFromFile();
807 if (Utils.isNullOrUndefined(stationTemplate)) {
808 const errorMsg = 'Failed to read charging station template file';
809 logger.error(`${this.logPrefix()} ${errorMsg}`);
810 throw new BaseError(errorMsg);
811 }
812 if (Utils.isEmptyObject(stationTemplate)) {
813 const errorMsg = `Empty charging station information from template file ${this.templateFile}`;
814 logger.error(`${this.logPrefix()} ${errorMsg}`);
815 throw new BaseError(errorMsg);
816 }
817 // Deprecation template keys section
818 ChargingStationUtils.warnDeprecatedTemplateKey(
819 stationTemplate,
820 'supervisionUrl',
821 this.templateFile,
822 this.logPrefix(),
823 "Use 'supervisionUrls' instead"
824 );
825 ChargingStationUtils.convertDeprecatedTemplateKey(
826 stationTemplate,
827 'supervisionUrl',
828 'supervisionUrls'
829 );
830 const stationInfo: ChargingStationInfo =
831 ChargingStationUtils.stationTemplateToStationInfo(stationTemplate);
832 stationInfo.hashId = ChargingStationUtils.getHashId(this.index, stationTemplate);
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);
841 stationInfo.maximumPower =
842 stationTemplate.powerUnit === PowerUnits.KILO_WATT
843 ? stationTemplate.power[powerArrayRandomIndex] * 1000
844 : stationTemplate.power[powerArrayRandomIndex];
845 } else {
846 stationTemplate.power = stationTemplate.power as number;
847 stationInfo.maximumPower =
848 stationTemplate.powerUnit === PowerUnits.KILO_WATT
849 ? stationTemplate.power * 1000
850 : stationTemplate.power;
851 }
852 stationInfo.resetTime = stationTemplate.resetTime
853 ? stationTemplate.resetTime * 1000
854 : Constants.CHARGING_STATION_DEFAULT_RESET_TIME;
855 const configuredMaxConnectors = ChargingStationUtils.getConfiguredNumberOfConnectors(
856 this.index,
857 stationTemplate
858 );
859 ChargingStationUtils.checkConfiguredMaxConnectors(
860 configuredMaxConnectors,
861 this.templateFile,
862 this.logPrefix()
863 );
864 const templateMaxConnectors =
865 ChargingStationUtils.getTemplateMaxNumberOfConnectors(stationTemplate);
866 ChargingStationUtils.checkTemplateMaxConnectors(
867 templateMaxConnectors,
868 this.templateFile,
869 this.logPrefix()
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);
887 return stationInfo;
888 }
889
890 private getStationInfoFromFile(): ChargingStationInfo | null {
891 let stationInfo: ChargingStationInfo = null;
892 this.getStationInfoPersistentConfiguration() &&
893 (stationInfo = this.getConfigurationFromFile()?.stationInfo ?? null);
894 stationInfo && ChargingStationUtils.createStationInfoHash(stationInfo);
895 return stationInfo;
896 }
897
898 private getStationInfo(): ChargingStationInfo {
899 const stationInfoFromTemplate: ChargingStationInfo = this.getStationInfoFromTemplate();
900 const stationInfoFromFile: ChargingStationInfo = this.getStationInfoFromFile();
901 // Priority: charging station info from template > charging station info from configuration file > charging station info attribute
902 if (stationInfoFromFile?.templateHash === stationInfoFromTemplate.templateHash) {
903 if (this.stationInfo?.infoHash === stationInfoFromFile?.infoHash) {
904 return this.stationInfo;
905 }
906 return stationInfoFromFile;
907 }
908 stationInfoFromFile &&
909 ChargingStationUtils.propagateSerialNumber(
910 this.getTemplateFromFile(),
911 stationInfoFromFile,
912 stationInfoFromTemplate
913 );
914 return stationInfoFromTemplate;
915 }
916
917 private saveStationInfo(): void {
918 if (this.getStationInfoPersistentConfiguration()) {
919 this.saveConfiguration();
920 }
921 }
922
923 private getOcppVersion(): OCPPVersion {
924 return this.stationInfo.ocppVersion ?? OCPPVersion.VERSION_16;
925 }
926
927 private getOcppPersistentConfiguration(): boolean {
928 return this.stationInfo?.ocppPersistentConfiguration ?? true;
929 }
930
931 private getStationInfoPersistentConfiguration(): boolean {
932 return this.stationInfo?.stationInfoPersistentConfiguration ?? true;
933 }
934
935 private handleUnsupportedVersion(version: OCPPVersion) {
936 const errMsg = `Unsupported protocol version '${version}' configured in template file ${this.templateFile}`;
937 logger.error(`${this.logPrefix()} ${errMsg}`);
938 throw new BaseError(errMsg);
939 }
940
941 private initialize(): void {
942 this.configurationFile = path.join(
943 path.dirname(this.templateFile.replace('station-templates', 'configurations')),
944 ChargingStationUtils.getHashId(this.index, this.getTemplateFromFile()) + '.json'
945 );
946 this.stationInfo = this.getStationInfo();
947 this.saveStationInfo();
948 logger.info(`${this.logPrefix()} Charging station hashId '${this.stationInfo.hashId}'`);
949 // Avoid duplication of connectors related information in RAM
950 this.stationInfo?.Connectors && delete this.stationInfo.Connectors;
951 this.configuredSupervisionUrl = this.getConfiguredSupervisionUrl();
952 if (this.getEnableStatistics()) {
953 this.performanceStatistics = PerformanceStatistics.getInstance(
954 this.stationInfo.hashId,
955 this.stationInfo.chargingStationId,
956 this.configuredSupervisionUrl
957 );
958 }
959 this.bootNotificationRequest = ChargingStationUtils.createBootNotificationRequest(
960 this.stationInfo
961 );
962 this.powerDivider = this.getPowerDivider();
963 // OCPP configuration
964 this.ocppConfiguration = this.getOcppConfiguration();
965 this.initializeOcppConfiguration();
966 switch (this.getOcppVersion()) {
967 case OCPPVersion.VERSION_16:
968 this.ocppIncomingRequestService =
969 OCPP16IncomingRequestService.getInstance<OCPP16IncomingRequestService>();
970 this.ocppRequestService = OCPP16RequestService.getInstance<OCPP16RequestService>(
971 OCPP16ResponseService.getInstance<OCPP16ResponseService>()
972 );
973 break;
974 default:
975 this.handleUnsupportedVersion(this.getOcppVersion());
976 break;
977 }
978 if (this.stationInfo?.autoRegister) {
979 this.bootNotificationResponse = {
980 currentTime: new Date().toISOString(),
981 interval: this.getHeartbeatInterval() / 1000,
982 status: RegistrationStatus.ACCEPTED,
983 };
984 }
985 }
986
987 private initializeOcppConfiguration(): void {
988 if (
989 !ChargingStationConfigurationUtils.getConfigurationKey(
990 this,
991 StandardParametersKey.HeartbeatInterval
992 )
993 ) {
994 ChargingStationConfigurationUtils.addConfigurationKey(
995 this,
996 StandardParametersKey.HeartbeatInterval,
997 '0'
998 );
999 }
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 );
1012 }
1013 if (
1014 this.getSupervisionUrlOcppConfiguration() &&
1015 !ChargingStationConfigurationUtils.getConfigurationKey(this, this.getSupervisionUrlOcppKey())
1016 ) {
1017 ChargingStationConfigurationUtils.addConfigurationKey(
1018 this,
1019 this.getSupervisionUrlOcppKey(),
1020 this.configuredSupervisionUrl.href,
1021 { reboot: true }
1022 );
1023 } else if (
1024 !this.getSupervisionUrlOcppConfiguration() &&
1025 ChargingStationConfigurationUtils.getConfigurationKey(this, this.getSupervisionUrlOcppKey())
1026 ) {
1027 ChargingStationConfigurationUtils.deleteConfigurationKey(
1028 this,
1029 this.getSupervisionUrlOcppKey(),
1030 { save: false }
1031 );
1032 }
1033 if (
1034 this.stationInfo.amperageLimitationOcppKey &&
1035 !ChargingStationConfigurationUtils.getConfigurationKey(
1036 this,
1037 this.stationInfo.amperageLimitationOcppKey
1038 )
1039 ) {
1040 ChargingStationConfigurationUtils.addConfigurationKey(
1041 this,
1042 this.stationInfo.amperageLimitationOcppKey,
1043 (
1044 this.stationInfo.maximumAmperage *
1045 ChargingStationUtils.getAmperageLimitationUnitDivider(this.stationInfo)
1046 ).toString()
1047 );
1048 }
1049 if (
1050 !ChargingStationConfigurationUtils.getConfigurationKey(
1051 this,
1052 StandardParametersKey.SupportedFeatureProfiles
1053 )
1054 ) {
1055 ChargingStationConfigurationUtils.addConfigurationKey(
1056 this,
1057 StandardParametersKey.SupportedFeatureProfiles,
1058 `${SupportedFeatureProfiles.Core},${SupportedFeatureProfiles.FirmwareManagement},${SupportedFeatureProfiles.LocalAuthListManagement},${SupportedFeatureProfiles.SmartCharging},${SupportedFeatureProfiles.RemoteTrigger}`
1059 );
1060 }
1061 ChargingStationConfigurationUtils.addConfigurationKey(
1062 this,
1063 StandardParametersKey.NumberOfConnectors,
1064 this.getNumberOfConnectors().toString(),
1065 { readonly: true },
1066 { overwrite: true }
1067 );
1068 if (
1069 !ChargingStationConfigurationUtils.getConfigurationKey(
1070 this,
1071 StandardParametersKey.MeterValuesSampledData
1072 )
1073 ) {
1074 ChargingStationConfigurationUtils.addConfigurationKey(
1075 this,
1076 StandardParametersKey.MeterValuesSampledData,
1077 MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER
1078 );
1079 }
1080 if (
1081 !ChargingStationConfigurationUtils.getConfigurationKey(
1082 this,
1083 StandardParametersKey.ConnectorPhaseRotation
1084 )
1085 ) {
1086 const connectorPhaseRotation = [];
1087 for (const connectorId of this.connectors.keys()) {
1088 // AC/DC
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}`);
1093 // AC
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}`);
1098 }
1099 }
1100 ChargingStationConfigurationUtils.addConfigurationKey(
1101 this,
1102 StandardParametersKey.ConnectorPhaseRotation,
1103 connectorPhaseRotation.toString()
1104 );
1105 }
1106 if (
1107 !ChargingStationConfigurationUtils.getConfigurationKey(
1108 this,
1109 StandardParametersKey.AuthorizeRemoteTxRequests
1110 )
1111 ) {
1112 ChargingStationConfigurationUtils.addConfigurationKey(
1113 this,
1114 StandardParametersKey.AuthorizeRemoteTxRequests,
1115 'true'
1116 );
1117 }
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,
1142 StandardParametersKey.ConnectionTimeOut,
1143 Constants.DEFAULT_CONNECTION_TIMEOUT.toString()
1144 );
1145 }
1146 this.saveOcppConfiguration();
1147 }
1148
1149 private initializeConnectors(
1150 stationInfo: ChargingStationInfo,
1151 configuredMaxConnectors: number,
1152 templateMaxConnectors: number
1153 ): void {
1154 if (!stationInfo?.Connectors && this.connectors.size === 0) {
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}`);
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)
1169 .update(JSON.stringify(stationInfo?.Connectors) + configuredMaxConnectors.toString())
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 &&
1182 this.getUseConnectorId0(stationInfo) &&
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) {
1197 for (let index = 1; index <= configuredMaxConnectors; index++) {
1198 const randConnectorId = stationInfo?.randomConnectors
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()) {
1221 if (
1222 connectorId > 0 &&
1223 (this.getConnectorStatus(connectorId).transactionStarted === undefined ||
1224 this.getConnectorStatus(connectorId).transactionStarted === false)
1225 ) {
1226 this.initializeConnectorStatus(connectorId);
1227 }
1228 }
1229 }
1230
1231 private getConfigurationFromFile(): ChargingStationConfiguration | null {
1232 let configuration: ChargingStationConfiguration = null;
1233 if (this.configurationFile && fs.existsSync(this.configurationFile)) {
1234 try {
1235 if (this.sharedLRUCache.hasChargingStationConfiguration(this.configurationFileHash)) {
1236 configuration = this.sharedLRUCache.getChargingStationConfiguration(
1237 this.configurationFileHash
1238 );
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;
1247 this.sharedLRUCache.setChargingStationConfiguration(configuration);
1248 }
1249 } catch (error) {
1250 FileUtils.handleFileException(
1251 this.logPrefix(),
1252 FileType.ChargingStationConfiguration,
1253 this.configurationFile,
1254 error as NodeJS.ErrnoException
1255 );
1256 }
1257 }
1258 return configuration;
1259 }
1260
1261 private saveConfiguration(): void {
1262 if (this.configurationFile) {
1263 try {
1264 if (!fs.existsSync(path.dirname(this.configurationFile))) {
1265 fs.mkdirSync(path.dirname(this.configurationFile), { recursive: true });
1266 }
1267 const configurationData: ChargingStationConfiguration =
1268 this.getConfigurationFromFile() ?? {};
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);
1285 this.sharedLRUCache.deleteChargingStationConfiguration(this.configurationFileHash);
1286 this.configurationFileHash = configurationHash;
1287 this.sharedLRUCache.setChargingStationConfiguration(configurationData);
1288 } else {
1289 logger.debug(
1290 `${this.logPrefix()} Not saving unchanged charging station configuration file ${
1291 this.configurationFile
1292 }`
1293 );
1294 }
1295 } catch (error) {
1296 FileUtils.handleFileException(
1297 this.logPrefix(),
1298 FileType.ChargingStationConfiguration,
1299 this.configurationFile,
1300 error as NodeJS.ErrnoException
1301 );
1302 }
1303 } else {
1304 logger.error(
1305 `${this.logPrefix()} Trying to save charging station configuration to undefined configuration file`
1306 );
1307 }
1308 }
1309
1310 private getOcppConfigurationFromTemplate(): ChargingStationOcppConfiguration | null {
1311 return this.getTemplateFromFile()?.Configuration ?? null;
1312 }
1313
1314 private getOcppConfigurationFromFile(): ChargingStationOcppConfiguration | null {
1315 let configuration: ChargingStationConfiguration = null;
1316 if (this.getOcppPersistentConfiguration()) {
1317 const configurationFromFile = this.getConfigurationFromFile();
1318 configuration = configurationFromFile?.configurationKey && configurationFromFile;
1319 }
1320 configuration && delete configuration.stationInfo;
1321 return configuration;
1322 }
1323
1324 private getOcppConfiguration(): ChargingStationOcppConfiguration | null {
1325 let ocppConfiguration: ChargingStationOcppConfiguration = this.getOcppConfigurationFromFile();
1326 if (!ocppConfiguration) {
1327 ocppConfiguration = this.getOcppConfigurationFromTemplate();
1328 }
1329 return ocppConfiguration;
1330 }
1331
1332 private async onOpen(): Promise<void> {
1333 if (this.isWebSocketConnectionOpened()) {
1334 logger.info(
1335 `${this.logPrefix()} Connection to OCPP server through ${this.wsConnectionUrl.toString()} succeeded`
1336 );
1337 if (!this.isRegistered()) {
1338 // Send BootNotification
1339 let registrationRetryCount = 0;
1340 do {
1341 this.bootNotificationResponse = await this.ocppRequestService.requestHandler<
1342 BootNotificationRequest,
1343 BootNotificationResponse
1344 >(this, RequestCommand.BOOT_NOTIFICATION, this.bootNotificationRequest, {
1345 skipBufferingOnError: true,
1346 });
1347 if (!this.isRegistered()) {
1348 this.getRegistrationMaxRetries() !== -1 && registrationRetryCount++;
1349 await Utils.sleep(
1350 this.bootNotificationResponse?.interval
1351 ? this.bootNotificationResponse.interval * 1000
1352 : Constants.OCPP_DEFAULT_BOOT_NOTIFICATION_INTERVAL
1353 );
1354 }
1355 } while (
1356 !this.isRegistered() &&
1357 (registrationRetryCount <= this.getRegistrationMaxRetries() ||
1358 this.getRegistrationMaxRetries() === -1)
1359 );
1360 }
1361 if (this.isRegistered()) {
1362 if (this.isInAcceptedState()) {
1363 await this.startMessageSequence();
1364 }
1365 } else {
1366 logger.error(
1367 `${this.logPrefix()} Registration failure: max retries reached (${this.getRegistrationMaxRetries()}) or retry disabled (${this.getRegistrationMaxRetries()})`
1368 );
1369 }
1370 this.wsConnectionRestarted = false;
1371 this.autoReconnectRetryCount = 0;
1372 this.started = true;
1373 parentPort.postMessage(MessageChannelUtils.buildUpdatedMessage(this));
1374 } else {
1375 logger.warn(
1376 `${this.logPrefix()} Connection to OCPP server through ${this.wsConnectionUrl.toString()} failed`
1377 );
1378 }
1379 }
1380
1381 private async onClose(code: number, reason: string): Promise<void> {
1382 switch (code) {
1383 // Normal close
1384 case WebSocketCloseEventStatusCode.CLOSE_NORMAL:
1385 case WebSocketCloseEventStatusCode.CLOSE_NO_STATUS:
1386 logger.info(
1387 `${this.logPrefix()} WebSocket normally closed with status '${Utils.getWebSocketCloseEventStatusString(
1388 code
1389 )}' and reason '${reason}'`
1390 );
1391 this.autoReconnectRetryCount = 0;
1392 break;
1393 // Abnormal close
1394 default:
1395 logger.error(
1396 `${this.logPrefix()} WebSocket abnormally closed with status '${Utils.getWebSocketCloseEventStatusString(
1397 code
1398 )}' and reason '${reason}'`
1399 );
1400 await this.reconnect();
1401 break;
1402 }
1403 parentPort.postMessage(MessageChannelUtils.buildUpdatedMessage(this));
1404 }
1405
1406 private async onMessage(data: Data): Promise<void> {
1407 let messageType: number;
1408 let messageId: string;
1409 let commandName: IncomingRequestCommand;
1410 let commandPayload: JsonType;
1411 let errorType: ErrorType;
1412 let errorMessage: string;
1413 let errorDetails: JsonType;
1414 let responseCallback: (payload: JsonType, requestPayload: JsonType) => void;
1415 let errorCallback: (error: OCPPError, requestStatistic?: boolean) => void;
1416 let requestCommandName: RequestCommand | IncomingRequestCommand;
1417 let requestPayload: JsonType;
1418 let cachedRequest: CachedRequest;
1419 let errMsg: string;
1420 try {
1421 const request = JSON.parse(data.toString()) as IncomingRequest | Response | ErrorResponse;
1422 if (Array.isArray(request) === true) {
1423 [messageType, messageId] = request;
1424 // Check the type of message
1425 switch (messageType) {
1426 // Incoming Message
1427 case MessageType.CALL_MESSAGE:
1428 [, , commandName, commandPayload] = request as IncomingRequest;
1429 if (this.getEnableStatistics()) {
1430 this.performanceStatistics.addRequestStatistic(commandName, messageType);
1431 }
1432 logger.debug(
1433 `${this.logPrefix()} << Command '${commandName}' received request payload: ${JSON.stringify(
1434 request
1435 )}`
1436 );
1437 // Process the message
1438 await this.ocppIncomingRequestService.incomingRequestHandler(
1439 this,
1440 messageId,
1441 commandName,
1442 commandPayload
1443 );
1444 break;
1445 // Outcome Message
1446 case MessageType.CALL_RESULT_MESSAGE:
1447 [, , commandPayload] = request as Response;
1448 if (!this.requests.has(messageId)) {
1449 // Error
1450 throw new OCPPError(
1451 ErrorType.INTERNAL_ERROR,
1452 `Response for unknown message id ${messageId}`,
1453 null,
1454 commandPayload
1455 );
1456 }
1457 // Respond
1458 cachedRequest = this.requests.get(messageId);
1459 if (Array.isArray(cachedRequest) === true) {
1460 [responseCallback, , requestCommandName, requestPayload] = cachedRequest;
1461 } else {
1462 throw new OCPPError(
1463 ErrorType.PROTOCOL_ERROR,
1464 `Cached request for message id ${messageId} response is not an array`,
1465 null,
1466 cachedRequest as unknown as JsonType
1467 );
1468 }
1469 logger.debug(
1470 `${this.logPrefix()} << Command '${
1471 requestCommandName ?? 'unknown'
1472 }' received response payload: ${JSON.stringify(request)}`
1473 );
1474 responseCallback(commandPayload, requestPayload);
1475 break;
1476 // Error Message
1477 case MessageType.CALL_ERROR_MESSAGE:
1478 [, , errorType, errorMessage, errorDetails] = request as ErrorResponse;
1479 if (!this.requests.has(messageId)) {
1480 // Error
1481 throw new OCPPError(
1482 ErrorType.INTERNAL_ERROR,
1483 `Error response for unknown message id ${messageId}`,
1484 null,
1485 { errorType, errorMessage, errorDetails }
1486 );
1487 }
1488 cachedRequest = this.requests.get(messageId);
1489 if (Array.isArray(cachedRequest) === true) {
1490 [, errorCallback, requestCommandName] = cachedRequest;
1491 } else {
1492 throw new OCPPError(
1493 ErrorType.PROTOCOL_ERROR,
1494 `Cached request for message id ${messageId} error response is not an array`,
1495 null,
1496 cachedRequest as unknown as JsonType
1497 );
1498 }
1499 logger.debug(
1500 `${this.logPrefix()} << Command '${
1501 requestCommandName ?? 'unknown'
1502 }' received error payload: ${JSON.stringify(request)}`
1503 );
1504 errorCallback(new OCPPError(errorType, errorMessage, requestCommandName, errorDetails));
1505 break;
1506 // Error
1507 default:
1508 // eslint-disable-next-line @typescript-eslint/restrict-template-expressions
1509 errMsg = `Wrong message type ${messageType}`;
1510 logger.error(`${this.logPrefix()} ${errMsg}`);
1511 throw new OCPPError(ErrorType.PROTOCOL_ERROR, errMsg);
1512 }
1513 parentPort.postMessage(MessageChannelUtils.buildUpdatedMessage(this));
1514 } else {
1515 throw new OCPPError(ErrorType.PROTOCOL_ERROR, 'Incoming message is not an array', null, {
1516 payload: request,
1517 });
1518 }
1519 } catch (error) {
1520 // Log
1521 logger.error(
1522 `${this.logPrefix()} Incoming OCPP command '${
1523 commandName ?? requestCommandName ?? null
1524 }' message '${data.toString()}' matching cached request '${JSON.stringify(
1525 this.requests.get(messageId)
1526 )}' processing error:`,
1527 error
1528 );
1529 if (!(error instanceof OCPPError)) {
1530 logger.warn(
1531 `${this.logPrefix()} Error thrown at incoming OCPP command '${
1532 commandName ?? requestCommandName ?? null
1533 }' message '${data.toString()}' handling is not an OCPPError:`,
1534 error
1535 );
1536 }
1537 // Send error
1538 messageType === MessageType.CALL_MESSAGE &&
1539 (await this.ocppRequestService.sendError(
1540 this,
1541 messageId,
1542 error as OCPPError,
1543 commandName ?? requestCommandName ?? null
1544 ));
1545 }
1546 }
1547
1548 private onPing(): void {
1549 logger.debug(this.logPrefix() + ' Received a WS ping (rfc6455) from the server');
1550 }
1551
1552 private onPong(): void {
1553 logger.debug(this.logPrefix() + ' Received a WS pong (rfc6455) from the server');
1554 }
1555
1556 private onError(error: WSError): void {
1557 this.closeWSConnection();
1558 logger.error(this.logPrefix() + ' WebSocket error:', error);
1559 }
1560
1561 private getEnergyActiveImportRegister(
1562 connectorStatus: ConnectorStatus,
1563 meterStop = false
1564 ): number {
1565 if (this.getMeteringPerTransaction()) {
1566 return (
1567 (meterStop === true
1568 ? Math.round(connectorStatus?.transactionEnergyActiveImportRegisterValue)
1569 : connectorStatus?.transactionEnergyActiveImportRegisterValue) ?? 0
1570 );
1571 }
1572 return (
1573 (meterStop === true
1574 ? Math.round(connectorStatus?.energyActiveImportRegisterValue)
1575 : connectorStatus?.energyActiveImportRegisterValue) ?? 0
1576 );
1577 }
1578
1579 private getUseConnectorId0(stationInfo?: ChargingStationInfo): boolean | undefined {
1580 const localStationInfo = stationInfo ?? this.stationInfo;
1581 return !Utils.isUndefined(localStationInfo.useConnectorId0)
1582 ? localStationInfo.useConnectorId0
1583 : true;
1584 }
1585
1586 private getNumberOfRunningTransactions(): number {
1587 let trxCount = 0;
1588 for (const connectorId of this.connectors.keys()) {
1589 if (connectorId > 0 && this.getConnectorStatus(connectorId)?.transactionStarted === true) {
1590 trxCount++;
1591 }
1592 }
1593 return trxCount;
1594 }
1595
1596 private async stopRunningTransactions(reason = StopTransactionReason.NONE): Promise<void> {
1597 for (const connectorId of this.connectors.keys()) {
1598 if (connectorId > 0 && this.getConnectorStatus(connectorId)?.transactionStarted === true) {
1599 await this.stopTransactionOnConnector(connectorId, reason);
1600 }
1601 }
1602 }
1603
1604 // 0 for disabling
1605 private getConnectionTimeout(): number | undefined {
1606 if (
1607 ChargingStationConfigurationUtils.getConfigurationKey(
1608 this,
1609 StandardParametersKey.ConnectionTimeOut
1610 )
1611 ) {
1612 return (
1613 parseInt(
1614 ChargingStationConfigurationUtils.getConfigurationKey(
1615 this,
1616 StandardParametersKey.ConnectionTimeOut
1617 ).value
1618 ) ?? Constants.DEFAULT_CONNECTION_TIMEOUT
1619 );
1620 }
1621 return Constants.DEFAULT_CONNECTION_TIMEOUT;
1622 }
1623
1624 // -1 for unlimited, 0 for disabling
1625 private getAutoReconnectMaxRetries(): number | undefined {
1626 if (!Utils.isUndefined(this.stationInfo.autoReconnectMaxRetries)) {
1627 return this.stationInfo.autoReconnectMaxRetries;
1628 }
1629 if (!Utils.isUndefined(Configuration.getAutoReconnectMaxRetries())) {
1630 return Configuration.getAutoReconnectMaxRetries();
1631 }
1632 return -1;
1633 }
1634
1635 // 0 for disabling
1636 private getRegistrationMaxRetries(): number | undefined {
1637 if (!Utils.isUndefined(this.stationInfo.registrationMaxRetries)) {
1638 return this.stationInfo.registrationMaxRetries;
1639 }
1640 return -1;
1641 }
1642
1643 private getPowerDivider(): number {
1644 let powerDivider = this.getNumberOfConnectors();
1645 if (this.stationInfo?.powerSharedByConnectors) {
1646 powerDivider = this.getNumberOfRunningTransactions();
1647 }
1648 return powerDivider;
1649 }
1650
1651 private getMaximumPower(stationInfo?: ChargingStationInfo): number {
1652 const localStationInfo = stationInfo ?? this.stationInfo;
1653 return (localStationInfo['maxPower'] as number) ?? localStationInfo.maximumPower;
1654 }
1655
1656 private getMaximumAmperage(stationInfo: ChargingStationInfo): number | undefined {
1657 const maximumPower = this.getMaximumPower(stationInfo);
1658 switch (this.getCurrentOutType(stationInfo)) {
1659 case CurrentType.AC:
1660 return ACElectricUtils.amperagePerPhaseFromPower(
1661 this.getNumberOfPhases(stationInfo),
1662 maximumPower / this.getNumberOfConnectors(),
1663 this.getVoltageOut(stationInfo)
1664 );
1665 case CurrentType.DC:
1666 return DCElectricUtils.amperage(maximumPower, this.getVoltageOut(stationInfo));
1667 }
1668 }
1669
1670 private getAmperageLimitation(): number | undefined {
1671 if (
1672 this.stationInfo.amperageLimitationOcppKey &&
1673 ChargingStationConfigurationUtils.getConfigurationKey(
1674 this,
1675 this.stationInfo.amperageLimitationOcppKey
1676 )
1677 ) {
1678 return (
1679 Utils.convertToInt(
1680 ChargingStationConfigurationUtils.getConfigurationKey(
1681 this,
1682 this.stationInfo.amperageLimitationOcppKey
1683 ).value
1684 ) / ChargingStationUtils.getAmperageLimitationUnitDivider(this.stationInfo)
1685 );
1686 }
1687 }
1688
1689 private getChargingProfilePowerLimit(connectorId: number): number | undefined {
1690 let limit: number, matchingChargingProfile: ChargingProfile;
1691 let chargingProfiles: ChargingProfile[] = [];
1692 // Get charging profiles for connector and sort by stack level
1693 chargingProfiles = this.getConnectorStatus(connectorId).chargingProfiles.sort(
1694 (a, b) => b.stackLevel - a.stackLevel
1695 );
1696 // Get profiles on connector 0
1697 if (this.getConnectorStatus(0).chargingProfiles) {
1698 chargingProfiles.push(
1699 ...this.getConnectorStatus(0).chargingProfiles.sort((a, b) => b.stackLevel - a.stackLevel)
1700 );
1701 }
1702 if (!Utils.isEmptyArray(chargingProfiles)) {
1703 const result = ChargingStationUtils.getLimitFromChargingProfiles(
1704 chargingProfiles,
1705 this.logPrefix()
1706 );
1707 if (!Utils.isNullOrUndefined(result)) {
1708 limit = result.limit;
1709 matchingChargingProfile = result.matchingChargingProfile;
1710 switch (this.getCurrentOutType()) {
1711 case CurrentType.AC:
1712 limit =
1713 matchingChargingProfile.chargingSchedule.chargingRateUnit ===
1714 ChargingRateUnitType.WATT
1715 ? limit
1716 : ACElectricUtils.powerTotal(this.getNumberOfPhases(), this.getVoltageOut(), limit);
1717 break;
1718 case CurrentType.DC:
1719 limit =
1720 matchingChargingProfile.chargingSchedule.chargingRateUnit ===
1721 ChargingRateUnitType.WATT
1722 ? limit
1723 : DCElectricUtils.power(this.getVoltageOut(), limit);
1724 }
1725 const connectorMaximumPower = this.getMaximumPower() / this.powerDivider;
1726 if (limit > connectorMaximumPower) {
1727 logger.error(
1728 `${this.logPrefix()} Charging profile id ${
1729 matchingChargingProfile.chargingProfileId
1730 } limit is greater than connector id ${connectorId} maximum, dump charging profiles' stack: %j`,
1731 this.getConnectorStatus(connectorId).chargingProfiles
1732 );
1733 limit = connectorMaximumPower;
1734 }
1735 }
1736 }
1737 return limit;
1738 }
1739
1740 private async startMessageSequence(): Promise<void> {
1741 if (this.stationInfo?.autoRegister) {
1742 await this.ocppRequestService.requestHandler<
1743 BootNotificationRequest,
1744 BootNotificationResponse
1745 >(this, RequestCommand.BOOT_NOTIFICATION, this.bootNotificationRequest, {
1746 skipBufferingOnError: true,
1747 });
1748 }
1749 // Start WebSocket ping
1750 this.startWebSocketPing();
1751 // Start heartbeat
1752 this.startHeartbeat();
1753 // Initialize connectors status
1754 for (const connectorId of this.connectors.keys()) {
1755 if (connectorId === 0) {
1756 continue;
1757 } else if (
1758 this.started === true &&
1759 !this.getConnectorStatus(connectorId)?.status &&
1760 this.getConnectorStatus(connectorId)?.bootStatus
1761 ) {
1762 // Send status in template at startup
1763 await this.ocppRequestService.requestHandler<
1764 StatusNotificationRequest,
1765 StatusNotificationResponse
1766 >(this, RequestCommand.STATUS_NOTIFICATION, {
1767 connectorId,
1768 status: this.getConnectorStatus(connectorId).bootStatus,
1769 errorCode: ChargePointErrorCode.NO_ERROR,
1770 });
1771 this.getConnectorStatus(connectorId).status =
1772 this.getConnectorStatus(connectorId).bootStatus;
1773 } else if (
1774 this.started === false &&
1775 this.getConnectorStatus(connectorId)?.status &&
1776 this.getConnectorStatus(connectorId)?.bootStatus
1777 ) {
1778 // Send status in template after reset
1779 await this.ocppRequestService.requestHandler<
1780 StatusNotificationRequest,
1781 StatusNotificationResponse
1782 >(this, RequestCommand.STATUS_NOTIFICATION, {
1783 connectorId,
1784 status: this.getConnectorStatus(connectorId).bootStatus,
1785 errorCode: ChargePointErrorCode.NO_ERROR,
1786 });
1787 this.getConnectorStatus(connectorId).status =
1788 this.getConnectorStatus(connectorId).bootStatus;
1789 } else if (this.started === true && this.getConnectorStatus(connectorId)?.status) {
1790 // Send previous status at template reload
1791 await this.ocppRequestService.requestHandler<
1792 StatusNotificationRequest,
1793 StatusNotificationResponse
1794 >(this, RequestCommand.STATUS_NOTIFICATION, {
1795 connectorId,
1796 status: this.getConnectorStatus(connectorId).status,
1797 errorCode: ChargePointErrorCode.NO_ERROR,
1798 });
1799 } else {
1800 // Send default status
1801 await this.ocppRequestService.requestHandler<
1802 StatusNotificationRequest,
1803 StatusNotificationResponse
1804 >(this, RequestCommand.STATUS_NOTIFICATION, {
1805 connectorId,
1806 status: ChargePointStatus.AVAILABLE,
1807 errorCode: ChargePointErrorCode.NO_ERROR,
1808 });
1809 this.getConnectorStatus(connectorId).status = ChargePointStatus.AVAILABLE;
1810 }
1811 }
1812 // Start the ATG
1813 if (this.getAutomaticTransactionGeneratorConfigurationFromTemplate()?.enable === true) {
1814 this.startAutomaticTransactionGenerator();
1815 }
1816 this.wsConnectionRestarted === true && this.flushMessageBuffer();
1817 }
1818
1819 private async stopMessageSequence(
1820 reason: StopTransactionReason = StopTransactionReason.NONE
1821 ): Promise<void> {
1822 // Stop WebSocket ping
1823 this.stopWebSocketPing();
1824 // Stop heartbeat
1825 this.stopHeartbeat();
1826 // Stop ongoing transactions
1827 if (this.automaticTransactionGenerator?.started === true) {
1828 this.stopAutomaticTransactionGenerator();
1829 } else {
1830 await this.stopRunningTransactions(reason);
1831 }
1832 }
1833
1834 private startWebSocketPing(): void {
1835 const webSocketPingInterval: number = ChargingStationConfigurationUtils.getConfigurationKey(
1836 this,
1837 StandardParametersKey.WebSocketPingInterval
1838 )
1839 ? Utils.convertToInt(
1840 ChargingStationConfigurationUtils.getConfigurationKey(
1841 this,
1842 StandardParametersKey.WebSocketPingInterval
1843 ).value
1844 )
1845 : 0;
1846 if (webSocketPingInterval > 0 && !this.webSocketPingSetInterval) {
1847 this.webSocketPingSetInterval = setInterval(() => {
1848 if (this.isWebSocketConnectionOpened()) {
1849 this.wsConnection.ping((): void => {
1850 /* This is intentional */
1851 });
1852 }
1853 }, webSocketPingInterval * 1000);
1854 logger.info(
1855 this.logPrefix() +
1856 ' WebSocket ping started every ' +
1857 Utils.formatDurationSeconds(webSocketPingInterval)
1858 );
1859 } else if (this.webSocketPingSetInterval) {
1860 logger.info(
1861 this.logPrefix() +
1862 ' WebSocket ping every ' +
1863 Utils.formatDurationSeconds(webSocketPingInterval) +
1864 ' already started'
1865 );
1866 } else {
1867 logger.error(
1868 `${this.logPrefix()} WebSocket ping interval set to ${
1869 webSocketPingInterval
1870 ? Utils.formatDurationSeconds(webSocketPingInterval)
1871 : webSocketPingInterval
1872 }, not starting the WebSocket ping`
1873 );
1874 }
1875 }
1876
1877 private stopWebSocketPing(): void {
1878 if (this.webSocketPingSetInterval) {
1879 clearInterval(this.webSocketPingSetInterval);
1880 }
1881 }
1882
1883 private getConfiguredSupervisionUrl(): URL {
1884 const supervisionUrls = Utils.cloneObject<string | string[]>(
1885 this.stationInfo.supervisionUrls ?? Configuration.getSupervisionUrls()
1886 );
1887 if (!Utils.isEmptyArray(supervisionUrls)) {
1888 let urlIndex = 0;
1889 switch (Configuration.getSupervisionUrlDistribution()) {
1890 case SupervisionUrlDistribution.ROUND_ROBIN:
1891 urlIndex = (this.index - 1) % supervisionUrls.length;
1892 break;
1893 case SupervisionUrlDistribution.RANDOM:
1894 // Get a random url
1895 urlIndex = Math.floor(Utils.secureRandom() * supervisionUrls.length);
1896 break;
1897 case SupervisionUrlDistribution.SEQUENTIAL:
1898 if (this.index <= supervisionUrls.length) {
1899 urlIndex = this.index - 1;
1900 } else {
1901 logger.warn(
1902 `${this.logPrefix()} No more configured supervision urls available, using the first one`
1903 );
1904 }
1905 break;
1906 default:
1907 logger.error(
1908 `${this.logPrefix()} Unknown supervision url distribution '${Configuration.getSupervisionUrlDistribution()}' from values '${SupervisionUrlDistribution.toString()}', defaulting to ${
1909 SupervisionUrlDistribution.ROUND_ROBIN
1910 }`
1911 );
1912 urlIndex = (this.index - 1) % supervisionUrls.length;
1913 break;
1914 }
1915 return new URL(supervisionUrls[urlIndex]);
1916 }
1917 return new URL(supervisionUrls as string);
1918 }
1919
1920 private getHeartbeatInterval(): number | undefined {
1921 const HeartbeatInterval = ChargingStationConfigurationUtils.getConfigurationKey(
1922 this,
1923 StandardParametersKey.HeartbeatInterval
1924 );
1925 if (HeartbeatInterval) {
1926 return Utils.convertToInt(HeartbeatInterval.value) * 1000;
1927 }
1928 const HeartBeatInterval = ChargingStationConfigurationUtils.getConfigurationKey(
1929 this,
1930 StandardParametersKey.HeartBeatInterval
1931 );
1932 if (HeartBeatInterval) {
1933 return Utils.convertToInt(HeartBeatInterval.value) * 1000;
1934 }
1935 !this.stationInfo?.autoRegister &&
1936 logger.warn(
1937 `${this.logPrefix()} Heartbeat interval configuration key not set, using default value: ${
1938 Constants.DEFAULT_HEARTBEAT_INTERVAL
1939 }`
1940 );
1941 return Constants.DEFAULT_HEARTBEAT_INTERVAL;
1942 }
1943
1944 private stopHeartbeat(): void {
1945 if (this.heartbeatSetInterval) {
1946 clearInterval(this.heartbeatSetInterval);
1947 }
1948 }
1949
1950 private terminateWSConnection(): void {
1951 if (this.isWebSocketConnectionOpened()) {
1952 this.wsConnection.terminate();
1953 this.wsConnection = null;
1954 }
1955 }
1956
1957 private stopMeterValues(connectorId: number) {
1958 if (this.getConnectorStatus(connectorId)?.transactionSetInterval) {
1959 clearInterval(this.getConnectorStatus(connectorId).transactionSetInterval);
1960 }
1961 }
1962
1963 private getReconnectExponentialDelay(): boolean | undefined {
1964 return !Utils.isUndefined(this.stationInfo.reconnectExponentialDelay)
1965 ? this.stationInfo.reconnectExponentialDelay
1966 : false;
1967 }
1968
1969 private async reconnect(): Promise<void> {
1970 // Stop WebSocket ping
1971 this.stopWebSocketPing();
1972 // Stop heartbeat
1973 this.stopHeartbeat();
1974 // Stop the ATG if needed
1975 if (this.automaticTransactionGenerator?.configuration?.stopOnConnectionFailure === true) {
1976 this.stopAutomaticTransactionGenerator();
1977 }
1978 if (
1979 this.autoReconnectRetryCount < this.getAutoReconnectMaxRetries() ||
1980 this.getAutoReconnectMaxRetries() === -1
1981 ) {
1982 this.autoReconnectRetryCount++;
1983 const reconnectDelay = this.getReconnectExponentialDelay()
1984 ? Utils.exponentialDelay(this.autoReconnectRetryCount)
1985 : this.getConnectionTimeout() * 1000;
1986 const reconnectDelayWithdraw = 1000;
1987 const reconnectTimeout =
1988 reconnectDelay && reconnectDelay - reconnectDelayWithdraw > 0
1989 ? reconnectDelay - reconnectDelayWithdraw
1990 : 0;
1991 logger.error(
1992 `${this.logPrefix()} WebSocket: connection retry in ${Utils.roundTo(
1993 reconnectDelay,
1994 2
1995 )}ms, timeout ${reconnectTimeout}ms`
1996 );
1997 await Utils.sleep(reconnectDelay);
1998 logger.error(
1999 this.logPrefix() +
2000 ' WebSocket: reconnecting try #' +
2001 this.autoReconnectRetryCount.toString()
2002 );
2003 this.openWSConnection(
2004 { ...(this.stationInfo?.wsOptions ?? {}), handshakeTimeout: reconnectTimeout },
2005 { closeOpened: true }
2006 );
2007 this.wsConnectionRestarted = true;
2008 } else if (this.getAutoReconnectMaxRetries() !== -1) {
2009 logger.error(
2010 `${this.logPrefix()} WebSocket reconnect failure: maximum retries reached (${
2011 this.autoReconnectRetryCount
2012 }) or retry disabled (${this.getAutoReconnectMaxRetries()})`
2013 );
2014 }
2015 }
2016
2017 private getAutomaticTransactionGeneratorConfigurationFromTemplate(): AutomaticTransactionGeneratorConfiguration | null {
2018 return this.getTemplateFromFile()?.AutomaticTransactionGenerator ?? null;
2019 }
2020
2021 private initializeConnectorStatus(connectorId: number): void {
2022 this.getConnectorStatus(connectorId).idTagLocalAuthorized = false;
2023 this.getConnectorStatus(connectorId).idTagAuthorized = false;
2024 this.getConnectorStatus(connectorId).transactionRemoteStarted = false;
2025 this.getConnectorStatus(connectorId).transactionStarted = false;
2026 this.getConnectorStatus(connectorId).energyActiveImportRegisterValue = 0;
2027 this.getConnectorStatus(connectorId).transactionEnergyActiveImportRegisterValue = 0;
2028 }
2029 }