Commit | Line | Data |
---|---|---|
efa43e52 | 1 | import { BootNotificationResponse, RegistrationStatus } from '../types/ocpp/Responses'; |
e118beaa | 2 | import ChargingStationConfiguration, { ConfigurationKey } from '../types/ChargingStationConfiguration'; |
7decf1b6 | 3 | import ChargingStationTemplate, { CurrentOutType, VoltageOut } from '../types/ChargingStationTemplate'; |
10570d97 | 4 | import Connectors, { Connector } from '../types/Connectors'; |
6af9012e | 5 | import { PerformanceObserver, performance } from 'perf_hooks'; |
c0560973 | 6 | import Requests, { AvailabilityType, BootNotificationRequest, IncomingRequest, IncomingRequestCommand } from '../types/ocpp/Requests'; |
136c90ba | 7 | import WebSocket, { MessageEvent } from 'ws'; |
3f40bc9c | 8 | |
6af9012e | 9 | import AutomaticTransactionGenerator from './AutomaticTransactionGenerator'; |
c0560973 JB |
10 | import { ChargePointStatus } from '../types/ocpp/ChargePointStatus'; |
11 | import { ChargingProfile } from '../types/ocpp/ChargingProfile'; | |
9ac86a7e | 12 | import ChargingStationInfo from '../types/ChargingStationInfo'; |
6af9012e | 13 | import Configuration from '../utils/Configuration'; |
63b48f77 | 14 | import Constants from '../utils/Constants'; |
d2a64eb5 | 15 | import { MessageType } from '../types/ocpp/MessageType'; |
c0560973 JB |
16 | import { MeterValueMeasurand } from '../types/ocpp/MeterValues'; |
17 | import OCPP16IncomingRequestService from './ocpp/1.6/OCCP16IncomingRequestService'; | |
18 | import OCPP16RequestService from './ocpp/1.6/OCPP16RequestService'; | |
19 | import OCPP16ResponseService from './ocpp/1.6/OCPP16ResponseService'; | |
63b48f77 | 20 | import OCPPError from './OcppError'; |
c0560973 JB |
21 | import OCPPIncomingRequestService from './ocpp/OCPPIncomingRequestService'; |
22 | import OCPPRequestService from './ocpp/OCPPRequestService'; | |
23 | import { OCPPVersion } from '../types/ocpp/OCPPVersion'; | |
54b1efe0 | 24 | import PerformanceStatistics from '../utils/PerformanceStatistics'; |
c0560973 | 25 | import { StandardParametersKey } from '../types/ocpp/Configuration'; |
c0560973 | 26 | import { StopTransactionReason } from '../types/ocpp/Transaction'; |
6af9012e | 27 | import Utils from '../utils/Utils'; |
32a1eb7a | 28 | import { WebSocketCloseEventStatusCode } from '../types/WebSocket'; |
3f40bc9c JB |
29 | import crypto from 'crypto'; |
30 | import fs from 'fs'; | |
6af9012e | 31 | import logger from '../utils/Logger'; |
bf1866b2 | 32 | import path from 'path'; |
3f40bc9c JB |
33 | |
34 | export default class ChargingStation { | |
c0560973 JB |
35 | public stationTemplateFile: string; |
36 | public authorizedTags: string[]; | |
6e0964c8 | 37 | public stationInfo!: ChargingStationInfo; |
ad2f27c3 | 38 | public connectors: Connectors; |
6e0964c8 | 39 | public configuration!: ChargingStationConfiguration; |
c0560973 | 40 | public hasStopped: boolean; |
6e0964c8 | 41 | public wsConnection!: WebSocket; |
c0560973 JB |
42 | public requests: Requests; |
43 | public messageQueue: string[]; | |
6e0964c8 JB |
44 | public performanceStatistics!: PerformanceStatistics; |
45 | public heartbeatSetInterval!: NodeJS.Timeout; | |
46 | public ocppIncomingRequestService!: OCPPIncomingRequestService; | |
47 | public ocppRequestService!: OCPPRequestService; | |
ad2f27c3 | 48 | private index: number; |
6e0964c8 JB |
49 | private bootNotificationRequest!: BootNotificationRequest; |
50 | private bootNotificationResponse!: BootNotificationResponse | null; | |
51 | private connectorsConfigurationHash!: string; | |
52 | private supervisionUrl!: string; | |
53 | private wsConnectionUrl!: string; | |
ad2f27c3 JB |
54 | private hasSocketRestarted: boolean; |
55 | private autoReconnectRetryCount: number; | |
6e0964c8 JB |
56 | private automaticTransactionGeneration!: AutomaticTransactionGenerator; |
57 | private performanceObserver!: PerformanceObserver; | |
58 | private webSocketPingSetInterval!: NodeJS.Timeout; | |
6af9012e JB |
59 | |
60 | constructor(index: number, stationTemplateFile: string) { | |
ad2f27c3 JB |
61 | this.index = index; |
62 | this.stationTemplateFile = stationTemplateFile; | |
63 | this.connectors = {} as Connectors; | |
c0560973 | 64 | this.initialize(); |
2e6f5966 | 65 | |
ad2f27c3 JB |
66 | this.hasStopped = false; |
67 | this.hasSocketRestarted = false; | |
68 | this.autoReconnectRetryCount = 0; | |
2e6f5966 | 69 | |
ad2f27c3 JB |
70 | this.requests = {} as Requests; |
71 | this.messageQueue = [] as string[]; | |
2e6f5966 | 72 | |
c0560973 JB |
73 | this.authorizedTags = this.getAuthorizedTags(); |
74 | } | |
75 | ||
76 | public logPrefix(): string { | |
54b1efe0 | 77 | return Utils.logPrefix(` ${this.stationInfo.chargingStationId} |`); |
c0560973 JB |
78 | } |
79 | ||
80 | public getRandomTagId(): string { | |
81 | const index = Math.floor(Math.random() * this.authorizedTags.length); | |
82 | return this.authorizedTags[index]; | |
83 | } | |
84 | ||
85 | public hasAuthorizedTags(): boolean { | |
86 | return !Utils.isEmptyArray(this.authorizedTags); | |
87 | } | |
88 | ||
6e0964c8 | 89 | public getEnableStatistics(): boolean | undefined { |
c0560973 JB |
90 | return !Utils.isUndefined(this.stationInfo.enableStatistics) ? this.stationInfo.enableStatistics : true; |
91 | } | |
92 | ||
6e0964c8 | 93 | public getNumberOfPhases(): number | undefined { |
7decf1b6 JB |
94 | switch (this.getCurrentOutType()) { |
95 | case CurrentOutType.AC: | |
c0560973 | 96 | return !Utils.isUndefined(this.stationInfo.numberOfPhases) ? this.stationInfo.numberOfPhases : 3; |
7decf1b6 | 97 | case CurrentOutType.DC: |
c0560973 JB |
98 | return 0; |
99 | } | |
100 | } | |
101 | ||
102 | public isWebSocketOpen(): boolean { | |
103 | return this.wsConnection?.readyState === WebSocket.OPEN; | |
104 | } | |
105 | ||
106 | public isRegistered(): boolean { | |
107 | return this.bootNotificationResponse?.status === RegistrationStatus.ACCEPTED; | |
108 | } | |
109 | ||
110 | public isChargingStationAvailable(): boolean { | |
111 | return this.getConnector(0).availability === AvailabilityType.OPERATIVE; | |
112 | } | |
113 | ||
114 | public isConnectorAvailable(id: number): boolean { | |
115 | return this.getConnector(id).availability === AvailabilityType.OPERATIVE; | |
116 | } | |
117 | ||
118 | public getConnector(id: number): Connector { | |
119 | return this.connectors[id]; | |
120 | } | |
121 | ||
6e0964c8 | 122 | public getCurrentOutType(): CurrentOutType | undefined { |
7decf1b6 | 123 | return !Utils.isUndefined(this.stationInfo.currentOutType) ? this.stationInfo.currentOutType : CurrentOutType.AC; |
c0560973 JB |
124 | } |
125 | ||
6e0964c8 | 126 | public getVoltageOut(): number | undefined { |
7decf1b6 | 127 | const errMsg = `${this.logPrefix()} Unknown ${this.getCurrentOutType()} currentOutType in template file ${this.stationTemplateFile}, cannot define default voltage out`; |
c0560973 | 128 | let defaultVoltageOut: number; |
7decf1b6 JB |
129 | switch (this.getCurrentOutType()) { |
130 | case CurrentOutType.AC: | |
c0560973 JB |
131 | defaultVoltageOut = VoltageOut.VOLTAGE_230; |
132 | break; | |
7decf1b6 | 133 | case CurrentOutType.DC: |
c0560973 JB |
134 | defaultVoltageOut = VoltageOut.VOLTAGE_400; |
135 | break; | |
136 | default: | |
137 | logger.error(errMsg); | |
138 | throw Error(errMsg); | |
139 | } | |
140 | return !Utils.isUndefined(this.stationInfo.voltageOut) ? this.stationInfo.voltageOut : defaultVoltageOut; | |
141 | } | |
142 | ||
6e0964c8 | 143 | public getTransactionIdTag(transactionId: number): string | undefined { |
c0560973 JB |
144 | for (const connector in this.connectors) { |
145 | if (Utils.convertToInt(connector) > 0 && this.getConnector(Utils.convertToInt(connector)).transactionId === transactionId) { | |
146 | return this.getConnector(Utils.convertToInt(connector)).idTag; | |
147 | } | |
148 | } | |
149 | } | |
150 | ||
6e0964c8 | 151 | public getTransactionMeterStop(transactionId: number): number | undefined { |
c0560973 JB |
152 | for (const connector in this.connectors) { |
153 | if (Utils.convertToInt(connector) > 0 && this.getConnector(Utils.convertToInt(connector)).transactionId === transactionId) { | |
154 | return this.getConnector(Utils.convertToInt(connector)).lastEnergyActiveImportRegisterValue; | |
155 | } | |
156 | } | |
157 | } | |
158 | ||
159 | public getAuthorizeRemoteTxRequests(): boolean { | |
160 | const authorizeRemoteTxRequests = this.getConfigurationKey(StandardParametersKey.AuthorizeRemoteTxRequests); | |
161 | return authorizeRemoteTxRequests ? Utils.convertToBoolean(authorizeRemoteTxRequests.value) : false; | |
162 | } | |
163 | ||
164 | public getLocalAuthListEnabled(): boolean { | |
165 | const localAuthListEnabled = this.getConfigurationKey(StandardParametersKey.LocalAuthListEnabled); | |
166 | return localAuthListEnabled ? Utils.convertToBoolean(localAuthListEnabled.value) : false; | |
167 | } | |
168 | ||
169 | public restartWebSocketPing(): void { | |
170 | // Stop WebSocket ping | |
171 | this.stopWebSocketPing(); | |
172 | // Start WebSocket ping | |
173 | this.startWebSocketPing(); | |
174 | } | |
175 | ||
176 | public startHeartbeat(): void { | |
177 | if (this.getHeartbeatInterval() && this.getHeartbeatInterval() > 0 && !this.heartbeatSetInterval) { | |
71623267 JB |
178 | // eslint-disable-next-line @typescript-eslint/no-misused-promises |
179 | this.heartbeatSetInterval = setInterval(async (): Promise<void> => { | |
c0560973 JB |
180 | await this.ocppRequestService.sendHeartbeat(); |
181 | }, this.getHeartbeatInterval()); | |
182 | logger.info(this.logPrefix() + ' Heartbeat started every ' + Utils.milliSecondsToHHMMSS(this.getHeartbeatInterval())); | |
183 | } else if (this.heartbeatSetInterval) { | |
54b1efe0 | 184 | logger.info(this.logPrefix() + ' Heartbeat already started every ' + Utils.milliSecondsToHHMMSS(this.getHeartbeatInterval())); |
c0560973 JB |
185 | } else { |
186 | logger.error(`${this.logPrefix()} Heartbeat interval set to ${this.getHeartbeatInterval() ? Utils.milliSecondsToHHMMSS(this.getHeartbeatInterval()) : this.getHeartbeatInterval()}, not starting the heartbeat`); | |
187 | } | |
188 | } | |
189 | ||
190 | public restartHeartbeat(): void { | |
191 | // Stop heartbeat | |
192 | this.stopHeartbeat(); | |
193 | // Start heartbeat | |
194 | this.startHeartbeat(); | |
195 | } | |
196 | ||
197 | public startMeterValues(connectorId: number, interval: number): void { | |
198 | if (connectorId === 0) { | |
199 | logger.error(`${this.logPrefix()} Trying to start MeterValues on connector Id ${connectorId.toString()}`); | |
200 | return; | |
201 | } | |
202 | if (!this.getConnector(connectorId)) { | |
203 | logger.error(`${this.logPrefix()} Trying to start MeterValues on non existing connector Id ${connectorId.toString()}`); | |
204 | return; | |
205 | } | |
206 | if (!this.getConnector(connectorId)?.transactionStarted) { | |
207 | logger.error(`${this.logPrefix()} Trying to start MeterValues on connector Id ${connectorId} with no transaction started`); | |
208 | return; | |
209 | } else if (this.getConnector(connectorId)?.transactionStarted && !this.getConnector(connectorId)?.transactionId) { | |
210 | logger.error(`${this.logPrefix()} Trying to start MeterValues on connector Id ${connectorId} with no transaction id`); | |
211 | return; | |
212 | } | |
213 | if (interval > 0) { | |
71623267 JB |
214 | // eslint-disable-next-line @typescript-eslint/no-misused-promises |
215 | this.getConnector(connectorId).transactionSetInterval = setInterval(async (): Promise<void> => { | |
c0560973 JB |
216 | if (this.getEnableStatistics()) { |
217 | const sendMeterValues = performance.timerify(this.ocppRequestService.sendMeterValues); | |
218 | this.performanceObserver.observe({ | |
219 | entryTypes: ['function'], | |
220 | }); | |
221 | await sendMeterValues(connectorId, this.getConnector(connectorId).transactionId, interval, this.ocppRequestService); | |
222 | } else { | |
223 | await this.ocppRequestService.sendMeterValues(connectorId, this.getConnector(connectorId).transactionId, interval, this.ocppRequestService); | |
224 | } | |
225 | }, interval); | |
226 | } else { | |
eb87fe87 | 227 | logger.error(`${this.logPrefix()} Charging station ${StandardParametersKey.MeterValueSampleInterval} configuration set to ${interval ? Utils.milliSecondsToHHMMSS(interval) : interval}, not sending MeterValues`); |
c0560973 JB |
228 | } |
229 | } | |
230 | ||
231 | public start(): void { | |
232 | this.openWSConnection(); | |
233 | // Monitor authorization file | |
234 | this.startAuthorizationFileMonitoring(); | |
235 | // Monitor station template file | |
236 | this.startStationTemplateFileMonitoring(); | |
237 | // Handle Socket incoming messages | |
238 | this.wsConnection.on('message', this.onMessage.bind(this)); | |
239 | // Handle Socket error | |
240 | this.wsConnection.on('error', this.onError.bind(this)); | |
241 | // Handle Socket close | |
242 | this.wsConnection.on('close', this.onClose.bind(this)); | |
243 | // Handle Socket opening connection | |
244 | this.wsConnection.on('open', this.onOpen.bind(this)); | |
245 | // Handle Socket ping | |
246 | this.wsConnection.on('ping', this.onPing.bind(this)); | |
247 | // Handle Socket pong | |
248 | this.wsConnection.on('pong', this.onPong.bind(this)); | |
249 | } | |
250 | ||
251 | public async stop(reason: StopTransactionReason = StopTransactionReason.NONE): Promise<void> { | |
252 | // Stop message sequence | |
253 | await this.stopMessageSequence(reason); | |
254 | for (const connector in this.connectors) { | |
255 | if (Utils.convertToInt(connector) > 0) { | |
256 | await this.ocppRequestService.sendStatusNotification(Utils.convertToInt(connector), ChargePointStatus.UNAVAILABLE); | |
257 | this.getConnector(Utils.convertToInt(connector)).status = ChargePointStatus.UNAVAILABLE; | |
258 | } | |
259 | } | |
260 | if (this.isWebSocketOpen()) { | |
261 | this.wsConnection.close(); | |
262 | } | |
263 | this.bootNotificationResponse = null; | |
264 | this.hasStopped = true; | |
265 | } | |
266 | ||
6e0964c8 JB |
267 | public getConfigurationKey(key: string | StandardParametersKey, caseInsensitive = false): ConfigurationKey | undefined { |
268 | const configurationKey: ConfigurationKey | undefined = this.configuration.configurationKey.find((configElement) => { | |
c0560973 JB |
269 | if (caseInsensitive) { |
270 | return configElement.key.toLowerCase() === key.toLowerCase(); | |
271 | } | |
272 | return configElement.key === key; | |
273 | }); | |
274 | return configurationKey; | |
275 | } | |
276 | ||
277 | public addConfigurationKey(key: string | StandardParametersKey, value: string, readonly = false, visible = true, reboot = false): void { | |
278 | const keyFound = this.getConfigurationKey(key); | |
279 | if (!keyFound) { | |
280 | this.configuration.configurationKey.push({ | |
281 | key, | |
282 | readonly, | |
283 | value, | |
284 | visible, | |
285 | reboot, | |
286 | }); | |
287 | } else { | |
288 | logger.error(`${this.logPrefix()} Trying to add an already existing configuration key: %j`, keyFound); | |
289 | } | |
290 | } | |
291 | ||
292 | public setConfigurationKeyValue(key: string | StandardParametersKey, value: string): void { | |
293 | const keyFound = this.getConfigurationKey(key); | |
294 | if (keyFound) { | |
295 | const keyIndex = this.configuration.configurationKey.indexOf(keyFound); | |
296 | this.configuration.configurationKey[keyIndex].value = value; | |
297 | } else { | |
298 | logger.error(`${this.logPrefix()} Trying to set a value on a non existing configuration key: %j`, { key, value }); | |
299 | } | |
300 | } | |
301 | ||
302 | public setChargingProfile(connectorId: number, cp: ChargingProfile): boolean { | |
303 | if (!Utils.isEmptyArray(this.getConnector(connectorId).chargingProfiles)) { | |
6e0964c8 | 304 | this.getConnector(connectorId).chargingProfiles?.forEach((chargingProfile: ChargingProfile, index: number) => { |
c0560973 JB |
305 | if (chargingProfile.chargingProfileId === cp.chargingProfileId |
306 | || (chargingProfile.stackLevel === cp.stackLevel && chargingProfile.chargingProfilePurpose === cp.chargingProfilePurpose)) { | |
307 | this.getConnector(connectorId).chargingProfiles[index] = cp; | |
308 | return true; | |
309 | } | |
310 | }); | |
311 | } | |
6e0964c8 | 312 | this.getConnector(connectorId).chargingProfiles?.push(cp); |
c0560973 JB |
313 | return true; |
314 | } | |
315 | ||
316 | public resetTransactionOnConnector(connectorId: number): void { | |
317 | this.initTransactionOnConnector(connectorId); | |
318 | if (this.getConnector(connectorId)?.transactionSetInterval) { | |
319 | clearInterval(this.getConnector(connectorId).transactionSetInterval); | |
320 | } | |
2e6f5966 JB |
321 | } |
322 | ||
77f00f84 | 323 | public addToMessageQueue(message: string): void { |
3ba2381e | 324 | let dups = false; |
cb31c873 | 325 | // Handle dups in message queue |
3ba2381e | 326 | for (const bufferedMessage of this.messageQueue) { |
cb31c873 | 327 | // Message already in the queue |
3ba2381e JB |
328 | if (message === bufferedMessage) { |
329 | dups = true; | |
330 | break; | |
331 | } | |
332 | } | |
333 | if (!dups) { | |
cb31c873 | 334 | // Queue message |
3ba2381e JB |
335 | this.messageQueue.push(message); |
336 | } | |
337 | } | |
338 | ||
77f00f84 JB |
339 | private flushMessageQueue() { |
340 | if (!Utils.isEmptyArray(this.messageQueue)) { | |
341 | this.messageQueue.forEach((message, index) => { | |
342 | this.messageQueue.splice(index, 1); | |
343 | this.wsConnection.send(message); | |
344 | }); | |
345 | } | |
346 | } | |
347 | ||
c0560973 | 348 | private getChargingStationId(stationTemplate: ChargingStationTemplate): string { |
ef6076c1 J |
349 | // In case of multiple instances: add instance index to charging station id |
350 | let instanceIndex = process.env.CF_INSTANCE_INDEX ? process.env.CF_INSTANCE_INDEX : 0; | |
351 | instanceIndex = instanceIndex > 0 ? instanceIndex : ''; | |
5fdab605 | 352 | const idSuffix = stationTemplate.nameSuffix ? stationTemplate.nameSuffix : ''; |
ad2f27c3 | 353 | return stationTemplate.fixedName ? stationTemplate.baseName : stationTemplate.baseName + '-' + instanceIndex.toString() + ('000000000' + this.index.toString()).substr(('000000000' + this.index.toString()).length - 4) + idSuffix; |
5ad8570f JB |
354 | } |
355 | ||
c0560973 | 356 | private buildStationInfo(): ChargingStationInfo { |
9ac86a7e | 357 | let stationTemplateFromFile: ChargingStationTemplate; |
5ad8570f JB |
358 | try { |
359 | // Load template file | |
ad2f27c3 | 360 | const fileDescriptor = fs.openSync(this.stationTemplateFile, 'r'); |
9ac86a7e | 361 | stationTemplateFromFile = JSON.parse(fs.readFileSync(fileDescriptor, 'utf8')) as ChargingStationTemplate; |
5ad8570f JB |
362 | fs.closeSync(fileDescriptor); |
363 | } catch (error) { | |
ad2f27c3 | 364 | logger.error('Template file ' + this.stationTemplateFile + ' loading error: %j', error); |
cdd9fed5 | 365 | throw error; |
5ad8570f | 366 | } |
9ac86a7e | 367 | const stationInfo: ChargingStationInfo = stationTemplateFromFile || {} as ChargingStationInfo; |
0a60c33c | 368 | if (!Utils.isEmptyArray(stationTemplateFromFile.power)) { |
9ac86a7e JB |
369 | stationTemplateFromFile.power = stationTemplateFromFile.power as number[]; |
370 | stationInfo.maxPower = stationTemplateFromFile.power[Math.floor(Math.random() * stationTemplateFromFile.power.length)]; | |
5ad8570f | 371 | } else { |
9ac86a7e | 372 | stationInfo.maxPower = stationTemplateFromFile.power as number; |
5ad8570f | 373 | } |
c0560973 | 374 | stationInfo.chargingStationId = this.getChargingStationId(stationTemplateFromFile); |
9ac86a7e JB |
375 | stationInfo.resetTime = stationTemplateFromFile.resetTime ? stationTemplateFromFile.resetTime * 1000 : Constants.CHARGING_STATION_DEFAULT_RESET_TIME; |
376 | return stationInfo; | |
5ad8570f JB |
377 | } |
378 | ||
c0560973 JB |
379 | private getOCPPVersion(): OCPPVersion { |
380 | return this.stationInfo.ocppVersion ? this.stationInfo.ocppVersion : OCPPVersion.VERSION_16; | |
381 | } | |
382 | ||
383 | private handleUnsupportedVersion(version: OCPPVersion) { | |
384 | const errMsg = `${this.logPrefix()} Unsupported protocol version '${version}' configured in template file ${this.stationTemplateFile}`; | |
385 | logger.error(errMsg); | |
386 | throw new Error(errMsg); | |
387 | } | |
388 | ||
389 | private initialize(): void { | |
390 | this.stationInfo = this.buildStationInfo(); | |
ad2f27c3 JB |
391 | this.bootNotificationRequest = { |
392 | chargePointModel: this.stationInfo.chargePointModel, | |
393 | chargePointVendor: this.stationInfo.chargePointVendor, | |
394 | ...!Utils.isUndefined(this.stationInfo.chargeBoxSerialNumberPrefix) && { chargeBoxSerialNumber: this.stationInfo.chargeBoxSerialNumberPrefix }, | |
395 | ...!Utils.isUndefined(this.stationInfo.firmwareVersion) && { firmwareVersion: this.stationInfo.firmwareVersion }, | |
2e6f5966 | 396 | }; |
c0560973 JB |
397 | this.configuration = this.getTemplateChargingStationConfiguration(); |
398 | this.supervisionUrl = this.getSupervisionURL(); | |
ad2f27c3 | 399 | this.wsConnectionUrl = this.supervisionUrl + '/' + this.stationInfo.chargingStationId; |
0a60c33c | 400 | // Build connectors if needed |
c0560973 | 401 | const maxConnectors = this.getMaxNumberOfConnectors(); |
6ecb15e4 | 402 | if (maxConnectors <= 0) { |
c0560973 | 403 | logger.warn(`${this.logPrefix()} Charging station template ${this.stationTemplateFile} with ${maxConnectors} connectors`); |
7abfea5f | 404 | } |
c0560973 | 405 | const templateMaxConnectors = this.getTemplateMaxNumberOfConnectors(); |
7abfea5f | 406 | if (templateMaxConnectors <= 0) { |
c0560973 | 407 | logger.warn(`${this.logPrefix()} Charging station template ${this.stationTemplateFile} with no connector configuration`); |
593cf3f9 | 408 | } |
ad2f27c3 | 409 | if (!this.stationInfo.Connectors[0]) { |
c0560973 | 410 | logger.warn(`${this.logPrefix()} Charging station template ${this.stationTemplateFile} with no connector Id 0 configuration`); |
7abfea5f JB |
411 | } |
412 | // Sanity check | |
ad2f27c3 | 413 | if (maxConnectors > (this.stationInfo.Connectors[0] ? templateMaxConnectors - 1 : templateMaxConnectors) && !this.stationInfo.randomConnectors) { |
c0560973 | 414 | logger.warn(`${this.logPrefix()} Number of connectors exceeds the number of connector configurations in template ${this.stationTemplateFile}, forcing random connector configurations affectation`); |
ad2f27c3 | 415 | this.stationInfo.randomConnectors = true; |
6ecb15e4 | 416 | } |
ad2f27c3 | 417 | const connectorsConfigHash = crypto.createHash('sha256').update(JSON.stringify(this.stationInfo.Connectors) + maxConnectors.toString()).digest('hex'); |
de1f5008 | 418 | // FIXME: Handle shrinking the number of connectors |
ad2f27c3 JB |
419 | if (!this.connectors || (this.connectors && this.connectorsConfigurationHash !== connectorsConfigHash)) { |
420 | this.connectorsConfigurationHash = connectorsConfigHash; | |
7abfea5f | 421 | // Add connector Id 0 |
6af9012e | 422 | let lastConnector = '0'; |
ad2f27c3 | 423 | for (lastConnector in this.stationInfo.Connectors) { |
c0560973 | 424 | if (Utils.convertToInt(lastConnector) === 0 && this.getUseConnectorId0() && this.stationInfo.Connectors[lastConnector]) { |
ad2f27c3 JB |
425 | this.connectors[lastConnector] = Utils.cloneObject<Connector>(this.stationInfo.Connectors[lastConnector]); |
426 | this.connectors[lastConnector].availability = AvailabilityType.OPERATIVE; | |
418106c8 JB |
427 | if (Utils.isUndefined(this.connectors[lastConnector]?.chargingProfiles)) { |
428 | this.connectors[lastConnector].chargingProfiles = []; | |
429 | } | |
0a60c33c JB |
430 | } |
431 | } | |
0a60c33c | 432 | // Generate all connectors |
ad2f27c3 | 433 | if ((this.stationInfo.Connectors[0] ? templateMaxConnectors - 1 : templateMaxConnectors) > 0) { |
7abfea5f | 434 | for (let index = 1; index <= maxConnectors; index++) { |
ad2f27c3 JB |
435 | const randConnectorID = this.stationInfo.randomConnectors ? Utils.getRandomInt(Utils.convertToInt(lastConnector), 1) : index; |
436 | this.connectors[index] = Utils.cloneObject<Connector>(this.stationInfo.Connectors[randConnectorID]); | |
437 | this.connectors[index].availability = AvailabilityType.OPERATIVE; | |
418106c8 JB |
438 | if (Utils.isUndefined(this.connectors[lastConnector]?.chargingProfiles)) { |
439 | this.connectors[index].chargingProfiles = []; | |
440 | } | |
7abfea5f | 441 | } |
0a60c33c JB |
442 | } |
443 | } | |
d4a73fb7 | 444 | // Avoid duplication of connectors related information |
ad2f27c3 | 445 | delete this.stationInfo.Connectors; |
0a60c33c | 446 | // Initialize transaction attributes on connectors |
ad2f27c3 | 447 | for (const connector in this.connectors) { |
593cf3f9 | 448 | if (Utils.convertToInt(connector) > 0 && !this.getConnector(Utils.convertToInt(connector)).transactionStarted) { |
c0560973 | 449 | this.initTransactionOnConnector(Utils.convertToInt(connector)); |
0a60c33c JB |
450 | } |
451 | } | |
c0560973 JB |
452 | switch (this.getOCPPVersion()) { |
453 | case OCPPVersion.VERSION_16: | |
454 | this.ocppIncomingRequestService = new OCPP16IncomingRequestService(this); | |
455 | this.ocppRequestService = new OCPP16RequestService(this, new OCPP16ResponseService(this)); | |
456 | break; | |
457 | default: | |
458 | this.handleUnsupportedVersion(this.getOCPPVersion()); | |
459 | break; | |
460 | } | |
7abfea5f | 461 | // OCPP parameters |
c0560973 JB |
462 | this.addConfigurationKey(StandardParametersKey.NumberOfConnectors, this.getNumberOfConnectors().toString(), true); |
463 | if (!this.getConfigurationKey(StandardParametersKey.MeterValuesSampledData)) { | |
464 | this.addConfigurationKey(StandardParametersKey.MeterValuesSampledData, MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER); | |
7abfea5f | 465 | } |
c0560973 | 466 | this.stationInfo.powerDivider = this.getPowerDivider(); |
8bce55bf | 467 | if (this.getEnableStatistics()) { |
54b1efe0 | 468 | this.performanceStatistics = new PerformanceStatistics(this.stationInfo.chargingStationId); |
ad2f27c3 | 469 | this.performanceObserver = new PerformanceObserver((list) => { |
8bce55bf | 470 | const entry = list.getEntries()[0]; |
54b1efe0 | 471 | this.performanceStatistics.logPerformance(entry, Constants.ENTITY_CHARGING_STATION); |
ad2f27c3 | 472 | this.performanceObserver.disconnect(); |
8bce55bf JB |
473 | }); |
474 | } | |
7dde0b73 JB |
475 | } |
476 | ||
c0560973 JB |
477 | private async onOpen(): Promise<void> { |
478 | logger.info(`${this.logPrefix()} Is connected to server through ${this.wsConnectionUrl}`); | |
479 | if (!this.isRegistered()) { | |
480 | // Send BootNotification | |
481 | let registrationRetryCount = 0; | |
482 | do { | |
43d673d9 JB |
483 | this.bootNotificationResponse = await this.ocppRequestService.sendBootNotification(this.bootNotificationRequest.chargePointModel, |
484 | this.bootNotificationRequest.chargePointVendor, this.bootNotificationRequest.chargeBoxSerialNumber, this.bootNotificationRequest.firmwareVersion); | |
c0560973 JB |
485 | if (!this.isRegistered()) { |
486 | registrationRetryCount++; | |
487 | await Utils.sleep(this.bootNotificationResponse?.interval ? this.bootNotificationResponse.interval * 1000 : Constants.OCPP_DEFAULT_BOOT_NOTIFICATION_INTERVAL); | |
488 | } | |
489 | } while (!this.isRegistered() && (registrationRetryCount <= this.getRegistrationMaxRetries() || this.getRegistrationMaxRetries() === -1)); | |
c7db4718 JB |
490 | } |
491 | if (this.isRegistered()) { | |
c0560973 | 492 | await this.startMessageSequence(); |
3ba49ba9 | 493 | this.hasStopped && (this.hasStopped = false); |
c0560973 | 494 | if (this.hasSocketRestarted && this.isWebSocketOpen()) { |
77f00f84 | 495 | this.flushMessageQueue(); |
2e6f5966 JB |
496 | } |
497 | } else { | |
c0560973 | 498 | logger.error(`${this.logPrefix()} Registration failure: max retries reached (${this.getRegistrationMaxRetries()}) or retry disabled (${this.getRegistrationMaxRetries()})`); |
2e6f5966 | 499 | } |
c0560973 JB |
500 | this.autoReconnectRetryCount = 0; |
501 | this.hasSocketRestarted = false; | |
2e6f5966 JB |
502 | } |
503 | ||
6e0964c8 | 504 | private async onClose(closeEvent: any): Promise<void> { |
c0560973 JB |
505 | switch (closeEvent) { |
506 | case WebSocketCloseEventStatusCode.CLOSE_NORMAL: // Normal close | |
507 | case WebSocketCloseEventStatusCode.CLOSE_NO_STATUS: | |
508 | logger.info(`${this.logPrefix()} Socket normally closed with status '${Utils.getWebSocketCloseEventStatusString(closeEvent)}'`); | |
509 | this.autoReconnectRetryCount = 0; | |
510 | break; | |
511 | default: // Abnormal close | |
512 | logger.error(`${this.logPrefix()} Socket abnormally closed with status '${Utils.getWebSocketCloseEventStatusString(closeEvent)}'`); | |
513 | await this.reconnect(closeEvent); | |
514 | break; | |
515 | } | |
2e6f5966 JB |
516 | } |
517 | ||
c0560973 JB |
518 | private async onMessage(messageEvent: MessageEvent): Promise<void> { |
519 | let [messageType, messageId, commandName, commandPayload, errorDetails]: IncomingRequest = [0, '', '' as IncomingRequestCommand, {}, {}]; | |
193d2c0a | 520 | let responseCallback: (payload: Record<string, unknown> | string, requestPayload: Record<string, unknown>) => void; |
c0560973 JB |
521 | let rejectCallback: (error: OCPPError) => void; |
522 | let requestPayload: Record<string, unknown>; | |
523 | let errMsg: string; | |
524 | try { | |
525 | // Parse the message | |
526 | [messageType, messageId, commandName, commandPayload, errorDetails] = JSON.parse(messageEvent.toString()) as IncomingRequest; | |
5ad8570f | 527 | |
c0560973 JB |
528 | // Check the Type of message |
529 | switch (messageType) { | |
530 | // Incoming Message | |
531 | case MessageType.CALL_MESSAGE: | |
532 | if (this.getEnableStatistics()) { | |
54b1efe0 | 533 | this.performanceStatistics.addMessage(commandName, messageType); |
c0560973 JB |
534 | } |
535 | // Process the call | |
536 | await this.ocppIncomingRequestService.handleRequest(messageId, commandName, commandPayload); | |
537 | break; | |
538 | // Outcome Message | |
539 | case MessageType.CALL_RESULT_MESSAGE: | |
540 | // Respond | |
541 | if (Utils.isIterable(this.requests[messageId])) { | |
542 | [responseCallback, , requestPayload] = this.requests[messageId]; | |
543 | } else { | |
544 | throw new Error(`Response request for message id ${messageId} is not iterable`); | |
545 | } | |
546 | if (!responseCallback) { | |
547 | // Error | |
548 | throw new Error(`Response request for unknown message id ${messageId}`); | |
549 | } | |
550 | delete this.requests[messageId]; | |
551 | responseCallback(commandName, requestPayload); | |
552 | break; | |
553 | // Error Message | |
554 | case MessageType.CALL_ERROR_MESSAGE: | |
555 | if (!this.requests[messageId]) { | |
556 | // Error | |
557 | throw new Error(`Error request for unknown message id ${messageId}`); | |
558 | } | |
559 | if (Utils.isIterable(this.requests[messageId])) { | |
560 | [, rejectCallback] = this.requests[messageId]; | |
561 | } else { | |
562 | throw new Error(`Error request for message id ${messageId} is not iterable`); | |
563 | } | |
564 | delete this.requests[messageId]; | |
565 | rejectCallback(new OCPPError(commandName, commandPayload.toString(), errorDetails)); | |
566 | break; | |
567 | // Error | |
568 | default: | |
569 | errMsg = `${this.logPrefix()} Wrong message type ${messageType}`; | |
570 | logger.error(errMsg); | |
571 | throw new Error(errMsg); | |
572 | } | |
573 | } catch (error) { | |
574 | // Log | |
575 | logger.error('%s Incoming message %j processing error %j on request content type %j', this.logPrefix(), messageEvent, error, this.requests[messageId]); | |
576 | // Send error | |
577 | messageType !== MessageType.CALL_ERROR_MESSAGE && await this.ocppRequestService.sendError(messageId, error, commandName); | |
578 | } | |
2328be1e JB |
579 | } |
580 | ||
c0560973 JB |
581 | private onPing(): void { |
582 | logger.debug(this.logPrefix() + ' Has received a WS ping (rfc6455) from the server'); | |
583 | } | |
584 | ||
585 | private onPong(): void { | |
586 | logger.debug(this.logPrefix() + ' Has received a WS pong (rfc6455) from the server'); | |
587 | } | |
588 | ||
6e0964c8 | 589 | private async onError(errorEvent: any): Promise<void> { |
c0560973 JB |
590 | logger.error(this.logPrefix() + ' Socket error: %j', errorEvent); |
591 | // pragma switch (errorEvent.code) { | |
592 | // case 'ECONNREFUSED': | |
593 | // await this._reconnect(errorEvent); | |
594 | // break; | |
595 | // } | |
596 | } | |
597 | ||
598 | private getTemplateChargingStationConfiguration(): ChargingStationConfiguration { | |
599 | return this.stationInfo.Configuration ? this.stationInfo.Configuration : {} as ChargingStationConfiguration; | |
600 | } | |
601 | ||
6e0964c8 | 602 | private getAuthorizationFile(): string | undefined { |
bf1866b2 | 603 | return this.stationInfo.authorizationFile && path.join(path.resolve(__dirname, '../'), 'assets', path.basename(this.stationInfo.authorizationFile)); |
c0560973 JB |
604 | } |
605 | ||
606 | private getAuthorizedTags(): string[] { | |
607 | let authorizedTags: string[] = []; | |
608 | const authorizationFile = this.getAuthorizationFile(); | |
609 | if (authorizationFile) { | |
610 | try { | |
611 | // Load authorization file | |
612 | const fileDescriptor = fs.openSync(authorizationFile, 'r'); | |
613 | authorizedTags = JSON.parse(fs.readFileSync(fileDescriptor, 'utf8')) as string[]; | |
614 | fs.closeSync(fileDescriptor); | |
615 | } catch (error) { | |
616 | logger.error(this.logPrefix() + ' Authorization file ' + authorizationFile + ' loading error: %j', error); | |
617 | throw error; | |
618 | } | |
619 | } else { | |
620 | logger.info(this.logPrefix() + ' No authorization file given in template file ' + this.stationTemplateFile); | |
8c4da341 | 621 | } |
c0560973 JB |
622 | return authorizedTags; |
623 | } | |
624 | ||
6e0964c8 | 625 | private getUseConnectorId0(): boolean | undefined { |
c0560973 | 626 | return !Utils.isUndefined(this.stationInfo.useConnectorId0) ? this.stationInfo.useConnectorId0 : true; |
8bce55bf JB |
627 | } |
628 | ||
c0560973 | 629 | private getNumberOfRunningTransactions(): number { |
6ecb15e4 | 630 | let trxCount = 0; |
ad2f27c3 | 631 | for (const connector in this.connectors) { |
593cf3f9 | 632 | if (Utils.convertToInt(connector) > 0 && this.getConnector(Utils.convertToInt(connector)).transactionStarted) { |
6ecb15e4 JB |
633 | trxCount++; |
634 | } | |
635 | } | |
636 | return trxCount; | |
637 | } | |
638 | ||
1f761b9a | 639 | // 0 for disabling |
6e0964c8 | 640 | private getConnectionTimeout(): number | undefined { |
ad2f27c3 JB |
641 | if (!Utils.isUndefined(this.stationInfo.connectionTimeout)) { |
642 | return this.stationInfo.connectionTimeout; | |
3574dfd3 JB |
643 | } |
644 | if (!Utils.isUndefined(Configuration.getConnectionTimeout())) { | |
645 | return Configuration.getConnectionTimeout(); | |
646 | } | |
647 | return 30; | |
648 | } | |
649 | ||
1f761b9a | 650 | // -1 for unlimited, 0 for disabling |
6e0964c8 | 651 | private getAutoReconnectMaxRetries(): number | undefined { |
ad2f27c3 JB |
652 | if (!Utils.isUndefined(this.stationInfo.autoReconnectMaxRetries)) { |
653 | return this.stationInfo.autoReconnectMaxRetries; | |
3574dfd3 JB |
654 | } |
655 | if (!Utils.isUndefined(Configuration.getAutoReconnectMaxRetries())) { | |
656 | return Configuration.getAutoReconnectMaxRetries(); | |
657 | } | |
658 | return -1; | |
659 | } | |
660 | ||
ec977daf | 661 | // 0 for disabling |
6e0964c8 | 662 | private getRegistrationMaxRetries(): number | undefined { |
ad2f27c3 JB |
663 | if (!Utils.isUndefined(this.stationInfo.registrationMaxRetries)) { |
664 | return this.stationInfo.registrationMaxRetries; | |
32a1eb7a JB |
665 | } |
666 | return -1; | |
667 | } | |
668 | ||
c0560973 JB |
669 | private getPowerDivider(): number { |
670 | let powerDivider = this.getNumberOfConnectors(); | |
ad2f27c3 | 671 | if (this.stationInfo.powerSharedByConnectors) { |
c0560973 | 672 | powerDivider = this.getNumberOfRunningTransactions(); |
6ecb15e4 JB |
673 | } |
674 | return powerDivider; | |
675 | } | |
676 | ||
c0560973 | 677 | private getTemplateMaxNumberOfConnectors(): number { |
ad2f27c3 | 678 | return Object.keys(this.stationInfo.Connectors).length; |
7abfea5f JB |
679 | } |
680 | ||
c0560973 | 681 | private getMaxNumberOfConnectors(): number { |
5ad8570f | 682 | let maxConnectors = 0; |
ad2f27c3 JB |
683 | if (!Utils.isEmptyArray(this.stationInfo.numberOfConnectors)) { |
684 | const numberOfConnectors = this.stationInfo.numberOfConnectors as number[]; | |
6ecb15e4 | 685 | // Distribute evenly the number of connectors |
ad2f27c3 JB |
686 | maxConnectors = numberOfConnectors[(this.index - 1) % numberOfConnectors.length]; |
687 | } else if (!Utils.isUndefined(this.stationInfo.numberOfConnectors)) { | |
688 | maxConnectors = this.stationInfo.numberOfConnectors as number; | |
488fd3a7 | 689 | } else { |
c0560973 | 690 | maxConnectors = this.stationInfo.Connectors[0] ? this.getTemplateMaxNumberOfConnectors() - 1 : this.getTemplateMaxNumberOfConnectors(); |
5ad8570f JB |
691 | } |
692 | return maxConnectors; | |
2e6f5966 JB |
693 | } |
694 | ||
c0560973 | 695 | private getNumberOfConnectors(): number { |
ad2f27c3 | 696 | return this.connectors[0] ? Object.keys(this.connectors).length - 1 : Object.keys(this.connectors).length; |
6ecb15e4 JB |
697 | } |
698 | ||
c0560973 | 699 | private async startMessageSequence(): Promise<void> { |
136c90ba | 700 | // Start WebSocket ping |
c0560973 | 701 | this.startWebSocketPing(); |
5ad8570f | 702 | // Start heartbeat |
c0560973 | 703 | this.startHeartbeat(); |
0a60c33c | 704 | // Initialize connectors status |
ad2f27c3 | 705 | for (const connector in this.connectors) { |
593cf3f9 JB |
706 | if (Utils.convertToInt(connector) === 0) { |
707 | continue; | |
ad2f27c3 | 708 | } else if (!this.hasStopped && !this.getConnector(Utils.convertToInt(connector))?.status && this.getConnector(Utils.convertToInt(connector))?.bootStatus) { |
136c90ba | 709 | // Send status in template at startup |
c0560973 JB |
710 | await this.ocppRequestService.sendStatusNotification(Utils.convertToInt(connector), this.getConnector(Utils.convertToInt(connector)).bootStatus); |
711 | this.getConnector(Utils.convertToInt(connector)).status = this.getConnector(Utils.convertToInt(connector)).bootStatus; | |
ad2f27c3 | 712 | } else if (this.hasStopped && this.getConnector(Utils.convertToInt(connector))?.bootStatus) { |
136c90ba | 713 | // Send status in template after reset |
c0560973 JB |
714 | await this.ocppRequestService.sendStatusNotification(Utils.convertToInt(connector), this.getConnector(Utils.convertToInt(connector)).bootStatus); |
715 | this.getConnector(Utils.convertToInt(connector)).status = this.getConnector(Utils.convertToInt(connector)).bootStatus; | |
ad2f27c3 | 716 | } else if (!this.hasStopped && this.getConnector(Utils.convertToInt(connector))?.status) { |
136c90ba | 717 | // Send previous status at template reload |
c0560973 | 718 | await this.ocppRequestService.sendStatusNotification(Utils.convertToInt(connector), this.getConnector(Utils.convertToInt(connector)).status); |
5ad8570f | 719 | } else { |
136c90ba | 720 | // Send default status |
c0560973 JB |
721 | await this.ocppRequestService.sendStatusNotification(Utils.convertToInt(connector), ChargePointStatus.AVAILABLE); |
722 | this.getConnector(Utils.convertToInt(connector)).status = ChargePointStatus.AVAILABLE; | |
5ad8570f JB |
723 | } |
724 | } | |
0a60c33c | 725 | // Start the ATG |
ad2f27c3 JB |
726 | if (this.stationInfo.AutomaticTransactionGenerator.enable) { |
727 | if (!this.automaticTransactionGeneration) { | |
728 | this.automaticTransactionGeneration = new AutomaticTransactionGenerator(this); | |
5ad8570f | 729 | } |
ad2f27c3 | 730 | if (this.automaticTransactionGeneration.timeToStop) { |
a1256107 JB |
731 | // The ATG might sleep |
732 | void this.automaticTransactionGeneration.start(); | |
5ad8570f JB |
733 | } |
734 | } | |
8bce55bf | 735 | if (this.getEnableStatistics()) { |
54b1efe0 | 736 | this.performanceStatistics.start(); |
8bce55bf | 737 | } |
5ad8570f JB |
738 | } |
739 | ||
c0560973 | 740 | private async stopMessageSequence(reason: StopTransactionReason = StopTransactionReason.NONE): Promise<void> { |
136c90ba | 741 | // Stop WebSocket ping |
c0560973 | 742 | this.stopWebSocketPing(); |
79411696 | 743 | // Stop heartbeat |
c0560973 | 744 | this.stopHeartbeat(); |
79411696 | 745 | // Stop the ATG |
ad2f27c3 JB |
746 | if (this.stationInfo.AutomaticTransactionGenerator.enable && |
747 | this.automaticTransactionGeneration && | |
748 | !this.automaticTransactionGeneration.timeToStop) { | |
749 | await this.automaticTransactionGeneration.stop(reason); | |
79411696 | 750 | } else { |
ad2f27c3 | 751 | for (const connector in this.connectors) { |
593cf3f9 | 752 | if (Utils.convertToInt(connector) > 0 && this.getConnector(Utils.convertToInt(connector)).transactionStarted) { |
c0560973 JB |
753 | const transactionId = this.getConnector(Utils.convertToInt(connector)).transactionId; |
754 | await this.ocppRequestService.sendStopTransaction(transactionId, this.getTransactionMeterStop(transactionId), this.getTransactionIdTag(transactionId), reason); | |
79411696 JB |
755 | } |
756 | } | |
757 | } | |
758 | } | |
759 | ||
c0560973 JB |
760 | private startWebSocketPing(): void { |
761 | const webSocketPingInterval: number = this.getConfigurationKey(StandardParametersKey.WebSocketPingInterval) ? Utils.convertToInt(this.getConfigurationKey(StandardParametersKey.WebSocketPingInterval).value) : 0; | |
ad2f27c3 JB |
762 | if (webSocketPingInterval > 0 && !this.webSocketPingSetInterval) { |
763 | this.webSocketPingSetInterval = setInterval(() => { | |
c0560973 | 764 | if (this.isWebSocketOpen()) { |
ad2f27c3 | 765 | this.wsConnection.ping((): void => { }); |
136c90ba JB |
766 | } |
767 | }, webSocketPingInterval * 1000); | |
c0560973 | 768 | logger.info(this.logPrefix() + ' WebSocket ping started every ' + Utils.secondsToHHMMSS(webSocketPingInterval)); |
ad2f27c3 | 769 | } else if (this.webSocketPingSetInterval) { |
c0560973 | 770 | logger.info(this.logPrefix() + ' WebSocket ping every ' + Utils.secondsToHHMMSS(webSocketPingInterval) + ' already started'); |
136c90ba | 771 | } else { |
c0560973 | 772 | logger.error(`${this.logPrefix()} WebSocket ping interval set to ${webSocketPingInterval ? Utils.secondsToHHMMSS(webSocketPingInterval) : webSocketPingInterval}, not starting the WebSocket ping`); |
136c90ba JB |
773 | } |
774 | } | |
775 | ||
c0560973 | 776 | private stopWebSocketPing(): void { |
ad2f27c3 JB |
777 | if (this.webSocketPingSetInterval) { |
778 | clearInterval(this.webSocketPingSetInterval); | |
136c90ba JB |
779 | } |
780 | } | |
781 | ||
c0560973 JB |
782 | private getSupervisionURL(): string { |
783 | const supervisionUrls = Utils.cloneObject<string | string[]>(this.stationInfo.supervisionURL ? this.stationInfo.supervisionURL : Configuration.getSupervisionURLs()); | |
784 | let indexUrl = 0; | |
785 | if (!Utils.isEmptyArray(supervisionUrls)) { | |
786 | if (Configuration.getDistributeStationsToTenantsEqually()) { | |
787 | indexUrl = this.index % supervisionUrls.length; | |
788 | } else { | |
789 | // Get a random url | |
790 | indexUrl = Math.floor(Math.random() * supervisionUrls.length); | |
791 | } | |
792 | return supervisionUrls[indexUrl]; | |
793 | } | |
794 | return supervisionUrls as string; | |
136c90ba JB |
795 | } |
796 | ||
6e0964c8 | 797 | private getHeartbeatInterval(): number | undefined { |
c0560973 JB |
798 | const HeartbeatInterval = this.getConfigurationKey(StandardParametersKey.HeartbeatInterval); |
799 | if (HeartbeatInterval) { | |
800 | return Utils.convertToInt(HeartbeatInterval.value) * 1000; | |
801 | } | |
802 | const HeartBeatInterval = this.getConfigurationKey(StandardParametersKey.HeartBeatInterval); | |
803 | if (HeartBeatInterval) { | |
804 | return Utils.convertToInt(HeartBeatInterval.value) * 1000; | |
0a60c33c JB |
805 | } |
806 | } | |
807 | ||
c0560973 | 808 | private stopHeartbeat(): void { |
ad2f27c3 JB |
809 | if (this.heartbeatSetInterval) { |
810 | clearInterval(this.heartbeatSetInterval); | |
7dde0b73 | 811 | } |
5ad8570f JB |
812 | } |
813 | ||
c0560973 JB |
814 | private openWSConnection(options?: WebSocket.ClientOptions, forceCloseOpened = false): void { |
815 | if (Utils.isUndefined(options)) { | |
816 | options = {} as WebSocket.ClientOptions; | |
817 | } | |
6e0964c8 | 818 | if (Utils.isUndefined(options?.handshakeTimeout)) { |
c0560973 JB |
819 | options.handshakeTimeout = this.getConnectionTimeout() * 1000; |
820 | } | |
821 | if (this.isWebSocketOpen() && forceCloseOpened) { | |
822 | this.wsConnection.close(); | |
823 | } | |
824 | let protocol; | |
825 | switch (this.getOCPPVersion()) { | |
826 | case OCPPVersion.VERSION_16: | |
827 | protocol = 'ocpp' + OCPPVersion.VERSION_16; | |
828 | break; | |
829 | default: | |
830 | this.handleUnsupportedVersion(this.getOCPPVersion()); | |
831 | break; | |
832 | } | |
833 | this.wsConnection = new WebSocket(this.wsConnectionUrl, protocol, options); | |
834 | logger.info(this.logPrefix() + ' Will communicate through URL ' + this.supervisionUrl); | |
136c90ba JB |
835 | } |
836 | ||
c0560973 JB |
837 | private startAuthorizationFileMonitoring(): void { |
838 | fs.watch(this.getAuthorizationFile()).on('change', (e) => { | |
5ad8570f | 839 | try { |
c0560973 | 840 | logger.debug(this.logPrefix() + ' Authorization file ' + this.getAuthorizationFile() + ' have changed, reload'); |
adeb9b56 | 841 | // Initialize authorizedTags |
c0560973 | 842 | this.authorizedTags = this.getAuthorizedTags(); |
5ad8570f | 843 | } catch (error) { |
c0560973 | 844 | logger.error(this.logPrefix() + ' Authorization file monitoring error: %j', error); |
5ad8570f JB |
845 | } |
846 | }); | |
847 | } | |
848 | ||
c0560973 | 849 | private startStationTemplateFileMonitoring(): void { |
71623267 | 850 | // eslint-disable-next-line @typescript-eslint/no-misused-promises |
e268356b | 851 | fs.watch(this.stationTemplateFile).on('change', async (e): Promise<void> => { |
5ad8570f | 852 | try { |
c0560973 | 853 | logger.debug(this.logPrefix() + ' Template file ' + this.stationTemplateFile + ' have changed, reload'); |
5ad8570f | 854 | // Initialize |
c0560973 | 855 | this.initialize(); |
ef6076c1 | 856 | // Stop the ATG |
ad2f27c3 JB |
857 | if (!this.stationInfo.AutomaticTransactionGenerator.enable && |
858 | this.automaticTransactionGeneration) { | |
e268356b | 859 | await this.automaticTransactionGeneration.stop(); |
79411696 | 860 | } |
ef6076c1 | 861 | // Start the ATG |
ad2f27c3 JB |
862 | if (this.stationInfo.AutomaticTransactionGenerator.enable) { |
863 | if (!this.automaticTransactionGeneration) { | |
864 | this.automaticTransactionGeneration = new AutomaticTransactionGenerator(this); | |
ef6076c1 | 865 | } |
ad2f27c3 | 866 | if (this.automaticTransactionGeneration.timeToStop) { |
a1256107 JB |
867 | // The ATG might sleep |
868 | void this.automaticTransactionGeneration.start(); | |
ef6076c1 J |
869 | } |
870 | } | |
136c90ba | 871 | // FIXME?: restart heartbeat and WebSocket ping when their interval values have changed |
5ad8570f | 872 | } catch (error) { |
c0560973 | 873 | logger.error(this.logPrefix() + ' Charging station template file monitoring error: %j', error); |
5ad8570f JB |
874 | } |
875 | }); | |
876 | } | |
877 | ||
6e0964c8 | 878 | private getReconnectExponentialDelay(): boolean | undefined { |
c0560973 | 879 | return !Utils.isUndefined(this.stationInfo.reconnectExponentialDelay) ? this.stationInfo.reconnectExponentialDelay : false; |
5ad8570f JB |
880 | } |
881 | ||
6e0964c8 | 882 | private async reconnect(error: any): Promise<void> { |
136c90ba | 883 | // Stop heartbeat |
c0560973 | 884 | this.stopHeartbeat(); |
5ad8570f | 885 | // Stop the ATG if needed |
ad2f27c3 JB |
886 | if (this.stationInfo.AutomaticTransactionGenerator.enable && |
887 | this.stationInfo.AutomaticTransactionGenerator.stopOnConnectionFailure && | |
888 | this.automaticTransactionGeneration && | |
889 | !this.automaticTransactionGeneration.timeToStop) { | |
890 | this.automaticTransactionGeneration.stop().catch(() => { }); | |
891 | } | |
c0560973 | 892 | if (this.autoReconnectRetryCount < this.getAutoReconnectMaxRetries() || this.getAutoReconnectMaxRetries() === -1) { |
ad2f27c3 | 893 | this.autoReconnectRetryCount++; |
c0560973 JB |
894 | const reconnectDelay = (this.getReconnectExponentialDelay() ? Utils.exponentialDelay(this.autoReconnectRetryCount) : this.getConnectionTimeout() * 1000); |
895 | logger.error(`${this.logPrefix()} Socket: connection retry in ${Utils.roundTo(reconnectDelay, 2)}ms, timeout ${reconnectDelay - 100}ms`); | |
032d6efc | 896 | await Utils.sleep(reconnectDelay); |
c0560973 JB |
897 | logger.error(this.logPrefix() + ' Socket: reconnecting try #' + this.autoReconnectRetryCount.toString()); |
898 | this.openWSConnection({ handshakeTimeout: reconnectDelay - 100 }); | |
ad2f27c3 | 899 | this.hasSocketRestarted = true; |
c0560973 JB |
900 | } else if (this.getAutoReconnectMaxRetries() !== -1) { |
901 | logger.error(`${this.logPrefix()} Socket reconnect failure: max retries reached (${this.autoReconnectRetryCount}) or retry disabled (${this.getAutoReconnectMaxRetries()})`); | |
5ad8570f JB |
902 | } |
903 | } | |
904 | ||
c0560973 | 905 | private initTransactionOnConnector(connectorId: number): void { |
8bce55bf | 906 | this.getConnector(connectorId).transactionStarted = false; |
6e0964c8 JB |
907 | delete this.getConnector(connectorId).transactionId; |
908 | delete this.getConnector(connectorId).idTag; | |
8bce55bf | 909 | this.getConnector(connectorId).lastEnergyActiveImportRegisterValue = -1; |
0a60c33c | 910 | } |
7dde0b73 JB |
911 | } |
912 |