X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2FAutomaticTransactionGenerator.ts;h=5e11f36e4f95762bf408f6dcb16c0a63e5c5c028;hb=357a5553eba0104e7017b3d955a3ea6da0ef6a6d;hp=3e7f0716de721be39426ae363f8070e00e4d2b92;hpb=e1d9a0f4d6ff1a90048e9a694fd12b7031cc6961;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/AutomaticTransactionGenerator.ts b/src/charging-station/AutomaticTransactionGenerator.ts index 3e7f0716..5e11f36e 100644 --- a/src/charging-station/AutomaticTransactionGenerator.ts +++ b/src/charging-station/AutomaticTransactionGenerator.ts @@ -2,9 +2,11 @@ import { AsyncResource } from 'node:async_hooks'; +import { hoursToMilliseconds, secondsToMilliseconds } from 'date-fns'; + import type { ChargingStation } from './ChargingStation'; -import { checkChargingStation } from './ChargingStationUtils'; import { IdTagsCache } from './IdTagsCache'; +import { checkChargingStation } from './Utils'; import { BaseError } from '../exception'; import { PerformanceStatistics } from '../performance'; import { @@ -188,46 +190,7 @@ export class AutomaticTransactionGenerator extends AsyncResource { )}`, ); while (this.connectorsStatus.get(connectorId)?.start === true) { - if (new Date() > this.connectorsStatus.get(connectorId)!.stopDate!) { - this.stopConnector(connectorId); - break; - } - if (this.chargingStation.inAcceptedState() === false) { - logger.error( - `${this.logPrefix( - connectorId, - )} entered in transaction loop while the charging station is not in accepted state`, - ); - this.stopConnector(connectorId); - break; - } - if (this.chargingStation.isChargingStationAvailable() === false) { - logger.info( - `${this.logPrefix( - connectorId, - )} entered in transaction loop while the charging station is unavailable`, - ); - this.stopConnector(connectorId); - break; - } - if (this.chargingStation.isConnectorAvailable(connectorId) === false) { - logger.info( - `${this.logPrefix( - connectorId, - )} entered in transaction loop while the connector ${connectorId} is unavailable`, - ); - this.stopConnector(connectorId); - break; - } - if ( - this.chargingStation.getConnectorStatus(connectorId)?.status === - ConnectorStatusEnum.Unavailable - ) { - logger.info( - `${this.logPrefix( - connectorId, - )} entered in transaction loop while the connector ${connectorId} status is unavailable`, - ); + if (!this.canStartConnector(connectorId)) { this.stopConnector(connectorId); break; } @@ -241,13 +204,14 @@ export class AutomaticTransactionGenerator extends AsyncResource { await sleep(Constants.CHARGING_STATION_ATG_INITIALIZATION_TIME); } while (!this.chargingStation?.ocppRequestService); } - const wait = + const wait = secondsToMilliseconds( getRandomInteger( this.chargingStation.getAutomaticTransactionGeneratorConfiguration() .maxDelayBetweenTwoTransactions, this.chargingStation.getAutomaticTransactionGeneratorConfiguration() .minDelayBetweenTwoTransactions, - ) * 1000; + ), + ); logger.info(`${this.logPrefix(connectorId)} waiting for ${formatDurationMilliSeconds(wait)}`); await sleep(wait); const start = secureRandom(); @@ -260,11 +224,12 @@ export class AutomaticTransactionGenerator extends AsyncResource { const startResponse = await this.startTransaction(connectorId); if (startResponse?.idTagInfo?.status === AuthorizationStatus.ACCEPTED) { // Wait until end of transaction - const waitTrxEnd = + const waitTrxEnd = secondsToMilliseconds( getRandomInteger( this.chargingStation.getAutomaticTransactionGeneratorConfiguration().maxDuration, this.chargingStation.getAutomaticTransactionGeneratorConfiguration().minDuration, - ) * 1000; + ), + ); logger.info( `${this.logPrefix(connectorId)} transaction started with id ${this.chargingStation .getConnectorStatus(connectorId) @@ -320,14 +285,56 @@ export class AutomaticTransactionGenerator extends AsyncResource { this.connectorsStatus.get(connectorId)!.startDate = new Date(); this.connectorsStatus.get(connectorId)!.stopDate = new Date( this.connectorsStatus.get(connectorId)!.startDate!.getTime() + - this.chargingStation.getAutomaticTransactionGeneratorConfiguration().stopAfterHours * - 3600 * - 1000 - + hoursToMilliseconds( + this.chargingStation.getAutomaticTransactionGeneratorConfiguration().stopAfterHours, + ) - previousRunDuration, ); this.connectorsStatus.get(connectorId)!.start = true; } + private canStartConnector(connectorId: number): boolean { + if (new Date() > this.connectorsStatus.get(connectorId)!.stopDate!) { + return false; + } + if (this.chargingStation.inAcceptedState() === false) { + logger.error( + `${this.logPrefix( + connectorId, + )} entered in transaction loop while the charging station is not in accepted state`, + ); + return false; + } + if (this.chargingStation.isChargingStationAvailable() === false) { + logger.info( + `${this.logPrefix( + connectorId, + )} entered in transaction loop while the charging station is unavailable`, + ); + return false; + } + if (this.chargingStation.isConnectorAvailable(connectorId) === false) { + logger.info( + `${this.logPrefix( + connectorId, + )} entered in transaction loop while the connector ${connectorId} is unavailable`, + ); + return false; + } + if ( + this.chargingStation.getConnectorStatus(connectorId)?.status === + ConnectorStatusEnum.Unavailable + ) { + logger.info( + `${this.logPrefix( + connectorId, + )} entered in transaction loop while the connector ${connectorId} status is unavailable`, + ); + return false; + } + return true; + } + private initializeConnectorsStatus(): void { if (this.chargingStation.hasEvses) { for (const [evseId, evseStatus] of this.chargingStation.evses) { @@ -347,9 +354,11 @@ export class AutomaticTransactionGenerator extends AsyncResource { } private getConnectorStatus(connectorId: number): Status { - const connectorStatus = cloneObject( - this.chargingStation.getAutomaticTransactionGeneratorStatuses()!, - )[connectorId]; + const connectorStatus = this.chargingStation.getAutomaticTransactionGeneratorStatuses() + ? cloneObject(this.chargingStation.getAutomaticTransactionGeneratorStatuses()!)[ + connectorId + ] + : undefined; delete connectorStatus?.startDate; delete connectorStatus?.lastRunDate; delete connectorStatus?.stopDate;