X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2FAutomaticTransactionGenerator.ts;h=5e11f36e4f95762bf408f6dcb16c0a63e5c5c028;hb=357a5553eba0104e7017b3d955a3ea6da0ef6a6d;hp=5b27a258c9e2e73d0424f04c8d68e6c7cc2ec24c;hpb=be4c670224282bebd69a75fec8fa45b7666634ff;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/AutomaticTransactionGenerator.ts b/src/charging-station/AutomaticTransactionGenerator.ts index 5b27a258..5e11f36e 100644 --- a/src/charging-station/AutomaticTransactionGenerator.ts +++ b/src/charging-station/AutomaticTransactionGenerator.ts @@ -5,8 +5,8 @@ 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 { @@ -190,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; } @@ -332,6 +293,48 @@ export class AutomaticTransactionGenerator extends AsyncResource { 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) { @@ -352,7 +355,9 @@ export class AutomaticTransactionGenerator extends AsyncResource { private getConnectorStatus(connectorId: number): Status { const connectorStatus = this.chargingStation.getAutomaticTransactionGeneratorStatuses() - ? cloneObject(this.chargingStation.getAutomaticTransactionGeneratorStatuses()!)[connectorId] + ? cloneObject(this.chargingStation.getAutomaticTransactionGeneratorStatuses()!)[ + connectorId + ] : undefined; delete connectorStatus?.startDate; delete connectorStatus?.lastRunDate;