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