Use a map a register response and incoming request handlers
[e-mobility-charging-stations-simulator.git] / src / charging-station / AutomaticTransactionGenerator.ts
CommitLineData
c8eeb62b
JB
1// Partial Copyright Jerome Benoit. 2021. All Rights Reserved.
2
c0560973 3import { AuthorizationStatus, AuthorizeResponse, StartTransactionResponse, StopTransactionReason, StopTransactionResponse } from '../types/ocpp/Transaction';
6af9012e
JB
4
5import ChargingStation from './ChargingStation';
6import Constants from '../utils/Constants';
a6b3c6c3 7import PerformanceStatistics from '../performance/PerformanceStatistics';
9664ec50 8import { Status } from '../types/AutomaticTransactionGenerator';
6af9012e
JB
9import Utils from '../utils/Utils';
10import logger from '../utils/Logger';
11
12export default class AutomaticTransactionGenerator {
265e4266 13 public started: boolean;
72740232 14 private chargingStation: ChargingStation;
9664ec50 15 private connectorsStatus: Map<number, Status>;
6af9012e
JB
16
17 constructor(chargingStation: ChargingStation) {
ad2f27c3 18 this.chargingStation = chargingStation;
9664ec50 19 this.connectorsStatus = new Map<number, Status>();
72740232 20 this.stopConnectors();
265e4266 21 this.started = false;
6af9012e
JB
22 }
23
7d75bee1 24 public start(): void {
b809adf1
JB
25 if (this.started) {
26 logger.error(`${this.logPrefix()} trying to start while already started`);
27 return;
28 }
72740232 29 this.startConnectors();
265e4266 30 this.started = true;
6af9012e
JB
31 }
32
0045cef5 33 public stop(): void {
265e4266
JB
34 if (!this.started) {
35 logger.error(`${this.logPrefix()} trying to stop while not started`);
36 return;
37 }
72740232 38 this.stopConnectors();
265e4266 39 this.started = false;
6af9012e
JB
40 }
41
72740232
JB
42 private startConnectors(): void {
43 for (const connector in this.chargingStation.connectors) {
44 const connectorId = Utils.convertToInt(connector);
45 if (connectorId > 0) {
83a3286a 46 this.startConnector(connectorId);
72740232
JB
47 }
48 }
49 }
50
51 private stopConnectors(): void {
52 for (const connector in this.chargingStation.connectors) {
53 const connectorId = Utils.convertToInt(connector);
54 if (connectorId > 0) {
55 this.stopConnector(connectorId);
56 }
57 }
58 }
59
83a3286a 60 private async internalStartConnector(connectorId: number): Promise<void> {
9664ec50
JB
61 this.initStartConnectorStatus(connectorId);
62 logger.info(this.logPrefix(connectorId) + ' started on connector and will run for ' + Utils.formatDurationMilliSeconds(this.connectorsStatus.get(connectorId).stopDate.getTime() - this.connectorsStatus.get(connectorId).startDate.getTime()));
63 while (this.connectorsStatus.get(connectorId).start) {
64 if ((new Date()) > this.connectorsStatus.get(connectorId).stopDate) {
65 this.stopConnector(connectorId);
17991e8c
JB
66 break;
67 }
c0560973 68 if (!this.chargingStation.isRegistered()) {
9664ec50
JB
69 logger.error(this.logPrefix(connectorId) + ' entered in transaction loop while the charging station is not registered');
70 this.stopConnector(connectorId);
17991e8c
JB
71 break;
72 }
c0560973 73 if (!this.chargingStation.isChargingStationAvailable()) {
9664ec50
JB
74 logger.info(this.logPrefix(connectorId) + ' entered in transaction loop while the charging station is unavailable');
75 this.stopConnector(connectorId);
ab5f4b03
JB
76 break;
77 }
c0560973 78 if (!this.chargingStation.isConnectorAvailable(connectorId)) {
9664ec50 79 logger.info(`${this.logPrefix(connectorId)} entered in transaction loop while the connector ${connectorId} is unavailable`);
9c7195b2 80 this.stopConnector(connectorId);
17991e8c
JB
81 break;
82 }
c0560973 83 if (!this.chargingStation?.ocppRequestService) {
9664ec50 84 logger.info(`${this.logPrefix(connectorId)} transaction loop waiting for charging station service to be initialized`);
c0560973 85 do {
a4cc42ea 86 await Utils.sleep(Constants.CHARGING_STATION_ATG_INITIALIZATION_TIME);
c0560973
JB
87 } while (!this.chargingStation?.ocppRequestService);
88 }
72740232 89 const wait = Utils.getRandomInteger(this.chargingStation.stationInfo.AutomaticTransactionGenerator.maxDelayBetweenTwoTransactions,
ad2f27c3 90 this.chargingStation.stationInfo.AutomaticTransactionGenerator.minDelayBetweenTwoTransactions) * 1000;
d7d1db72 91 logger.info(this.logPrefix(connectorId) + ' waiting for ' + Utils.formatDurationMilliSeconds(wait));
6af9012e 92 await Utils.sleep(wait);
c37528f1 93 const start = Utils.secureRandom();
ad2f27c3 94 if (start < this.chargingStation.stationInfo.AutomaticTransactionGenerator.probabilityOfStart) {
9664ec50 95 this.connectorsStatus.get(connectorId).skippedConsecutiveTransactions = 0;
6af9012e 96 // Start transaction
aef1b33a 97 const startResponse = await this.startTransaction(connectorId);
071a9315 98 this.connectorsStatus.get(connectorId).startTransactionRequests++;
ef6076c1 99 if (startResponse?.idTagInfo?.status !== AuthorizationStatus.ACCEPTED) {
9664ec50 100 logger.warn(this.logPrefix(connectorId) + ' start transaction rejected');
071a9315 101 this.connectorsStatus.get(connectorId).rejectedStartTransactionRequests++;
6af9012e
JB
102 } else {
103 // Wait until end of transaction
72740232 104 const waitTrxEnd = Utils.getRandomInteger(this.chargingStation.stationInfo.AutomaticTransactionGenerator.maxDuration,
ad2f27c3 105 this.chargingStation.stationInfo.AutomaticTransactionGenerator.minDuration) * 1000;
9664ec50 106 logger.info(this.logPrefix(connectorId) + ' transaction ' + this.chargingStation.getConnector(connectorId).transactionId.toString() + ' started and will stop in ' + Utils.formatDurationMilliSeconds(waitTrxEnd));
071a9315 107 this.connectorsStatus.get(connectorId).acceptedStartTransactionRequests++;
6af9012e
JB
108 await Utils.sleep(waitTrxEnd);
109 // Stop transaction
85d20667
JB
110 logger.info(this.logPrefix(connectorId) + ' stop transaction ' + this.chargingStation.getConnector(connectorId).transactionId.toString());
111 await this.stopTransaction(connectorId);
6af9012e
JB
112 }
113 } else {
9664ec50
JB
114 this.connectorsStatus.get(connectorId).skippedConsecutiveTransactions++;
115 this.connectorsStatus.get(connectorId).skippedTransactions++;
116 logger.info(this.logPrefix(connectorId) + ' skipped consecutively ' + this.connectorsStatus.get(connectorId).skippedConsecutiveTransactions.toString() + '/' + this.connectorsStatus.get(connectorId).skippedTransactions.toString() + ' transaction(s)');
6af9012e 117 }
9664ec50 118 this.connectorsStatus.get(connectorId).lastRunDate = new Date();
7d75bee1 119 }
0045cef5 120 await this.stopTransaction(connectorId);
9664ec50
JB
121 this.connectorsStatus.get(connectorId).stoppedDate = new Date();
122 logger.info(this.logPrefix(connectorId) + ' stopped on connector and lasted for ' + Utils.formatDurationMilliSeconds(this.connectorsStatus.get(connectorId).stoppedDate.getTime() - this.connectorsStatus.get(connectorId).startDate.getTime()));
123 logger.debug(`${this.logPrefix(connectorId)} connector status %j`, this.connectorsStatus.get(connectorId));
6af9012e
JB
124 }
125
83a3286a
JB
126 private startConnector(connectorId: number): void {
127 // Avoid hogging the event loop with a busy loop
128 setImmediate(() => {
129 this.internalStartConnector(connectorId).catch(() => { /* This is intentional */ });
130 });
131 }
132
72740232 133 private stopConnector(connectorId: number): void {
b2bece24 134 this.connectorsStatus.set(connectorId, { ...this.connectorsStatus.get(connectorId), start: false });
9664ec50
JB
135 }
136
137 private initStartConnectorStatus(connectorId: number): void {
071a9315
JB
138 this.connectorsStatus.get(connectorId).authorizeRequests = this?.connectorsStatus.get(connectorId)?.authorizeRequests ?? 0;
139 this.connectorsStatus.get(connectorId).acceptedAuthorizeRequests = this?.connectorsStatus.get(connectorId)?.acceptedAuthorizeRequests ?? 0;
140 this.connectorsStatus.get(connectorId).rejectedAuthorizeRequests = this?.connectorsStatus.get(connectorId)?.rejectedAuthorizeRequests ?? 0;
141 this.connectorsStatus.get(connectorId).startTransactionRequests = this?.connectorsStatus.get(connectorId)?.startTransactionRequests ?? 0;
142 this.connectorsStatus.get(connectorId).acceptedStartTransactionRequests = this?.connectorsStatus.get(connectorId)?.acceptedStartTransactionRequests ?? 0;
143 this.connectorsStatus.get(connectorId).rejectedStartTransactionRequests = this?.connectorsStatus.get(connectorId)?.rejectedStartTransactionRequests ?? 0;
144 this.connectorsStatus.get(connectorId).stopTransactionRequests = this?.connectorsStatus.get(connectorId)?.stopTransactionRequests ?? 0;
9664ec50 145 this.connectorsStatus.get(connectorId).skippedConsecutiveTransactions = 0;
071a9315 146 this.connectorsStatus.get(connectorId).skippedTransactions = this?.connectorsStatus.get(connectorId)?.skippedTransactions ?? 0;
9664ec50
JB
147 const previousRunDuration = (this?.connectorsStatus.get(connectorId)?.startDate && this?.connectorsStatus.get(connectorId)?.lastRunDate)
148 ? (this.connectorsStatus.get(connectorId).lastRunDate.getTime() - this.connectorsStatus.get(connectorId).startDate.getTime())
149 : 0;
150 this.connectorsStatus.get(connectorId).startDate = new Date();
151 this.connectorsStatus.get(connectorId).stopDate = new Date(this.connectorsStatus.get(connectorId).startDate.getTime()
152 + (this.chargingStation.stationInfo?.AutomaticTransactionGenerator?.stopAfterHours ?? Constants.CHARGING_STATION_ATG_DEFAULT_STOP_AFTER_HOURS) * 3600 * 1000
153 - previousRunDuration);
154 this.connectorsStatus.get(connectorId).start = true;
72740232
JB
155 }
156
aef1b33a
JB
157 private async startTransaction(connectorId: number): Promise<StartTransactionResponse | AuthorizeResponse> {
158 const measureId = 'StartTransaction with ATG';
159 const beginId = PerformanceStatistics.beginMeasure(measureId);
160 let startResponse: StartTransactionResponse;
161 if (this.chargingStation.hasAuthorizedTags()) {
f4bf2abd 162 const idTag = this.chargingStation.getRandomIdTag();
aef1b33a 163 if (this.chargingStation.getAutomaticTransactionGeneratorRequireAuthorize()) {
f4bf2abd
JB
164 // Authorize idTag
165 const authorizeResponse = await this.chargingStation.ocppRequestService.sendAuthorize(connectorId, idTag);
071a9315 166 this.connectorsStatus.get(connectorId).authorizeRequests++;
5fdab605 167 if (authorizeResponse?.idTagInfo?.status === AuthorizationStatus.ACCEPTED) {
071a9315 168 this.connectorsStatus.get(connectorId).acceptedAuthorizeRequests++;
f4bf2abd 169 logger.info(this.logPrefix(connectorId) + ' start transaction for idTag ' + idTag);
5fdab605 170 // Start transaction
f4bf2abd 171 startResponse = await this.chargingStation.ocppRequestService.sendStartTransaction(connectorId, idTag);
aef1b33a
JB
172 PerformanceStatistics.endMeasure(measureId, beginId);
173 return startResponse;
5fdab605 174 }
071a9315 175 this.connectorsStatus.get(connectorId).rejectedAuthorizeRequests++;
aef1b33a 176 PerformanceStatistics.endMeasure(measureId, beginId);
4faad557 177 return authorizeResponse;
ef6076c1 178 }
f4bf2abd 179 logger.info(this.logPrefix(connectorId) + ' start transaction for idTag ' + idTag);
5fdab605 180 // Start transaction
f4bf2abd 181 startResponse = await this.chargingStation.ocppRequestService.sendStartTransaction(connectorId, idTag);
aef1b33a
JB
182 PerformanceStatistics.endMeasure(measureId, beginId);
183 return startResponse;
6af9012e 184 }
107efcc6 185 logger.info(this.logPrefix(connectorId) + ' start transaction without an idTag');
aef1b33a
JB
186 startResponse = await this.chargingStation.ocppRequestService.sendStartTransaction(connectorId);
187 PerformanceStatistics.endMeasure(measureId, beginId);
188 return startResponse;
6af9012e
JB
189 }
190
0045cef5 191 private async stopTransaction(connectorId: number, reason: StopTransactionReason = StopTransactionReason.NONE): Promise<StopTransactionResponse> {
aef1b33a
JB
192 const measureId = 'StopTransaction with ATG';
193 const beginId = PerformanceStatistics.beginMeasure(measureId);
8eb02b62 194 let transactionId = 0;
0045cef5
JB
195 let stopResponse: StopTransactionResponse;
196 if (this.chargingStation.getConnector(connectorId)?.transactionStarted) {
8eb02b62 197 transactionId = this.chargingStation.getConnector(connectorId).transactionId;
0045cef5
JB
198 stopResponse = await this.chargingStation.ocppRequestService.sendStopTransaction(transactionId,
199 this.chargingStation.getEnergyActiveImportRegisterByTransactionId(transactionId),
200 this.chargingStation.getTransactionIdTag(transactionId),
201 reason);
071a9315 202 this.connectorsStatus.get(connectorId).stopTransactionRequests++;
0045cef5 203 } else {
8eb02b62 204 logger.warn(`${this.logPrefix(connectorId)} trying to stop a not started transaction${transactionId ? ' ' + transactionId.toString() : ''}`);
0045cef5 205 }
aef1b33a
JB
206 PerformanceStatistics.endMeasure(measureId, beginId);
207 return stopResponse;
c0560973
JB
208 }
209
6e0964c8 210 private logPrefix(connectorId?: number): string {
c0560973 211 if (connectorId) {
54b1efe0 212 return Utils.logPrefix(' ' + this.chargingStation.stationInfo.chargingStationId + ' | ATG on connector #' + connectorId.toString() + ':');
c0560973 213 }
54b1efe0 214 return Utils.logPrefix(' ' + this.chargingStation.stationInfo.chargingStationId + ' | ATG:');
6af9012e
JB
215 }
216}