X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2FAuthorizedTagsCache.ts;h=edb695386c8609b8927460e628d03a3c57144faa;hb=ba62a535da8d31400787113da1f77282967abb65;hp=b63387eda9afcc9859ad6147d674163e9d2440cf;hpb=aaf2bf9c2ec7712394d7ab9da12449262d894e60;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/AuthorizedTagsCache.ts b/src/charging-station/AuthorizedTagsCache.ts index b63387ed..edb69538 100644 --- a/src/charging-station/AuthorizedTagsCache.ts +++ b/src/charging-station/AuthorizedTagsCache.ts @@ -60,19 +60,21 @@ export class AuthorizedTagsCache { private getRandomIdTag(hashId: string, file: string): string { const tags = this.getAuthorizedTags(file); + const addressableKey = file + hashId; this.tagsCachesAddressableIndexes.set( - file + hashId, + addressableKey, Math.floor(Utils.secureRandom() * tags.length) ); - return tags[this.tagsCachesAddressableIndexes.get(file + hashId)]; + return tags[this.tagsCachesAddressableIndexes.get(addressableKey)]; } private getRoundRobinIdTag(hashId: string, file: string): string { const tags = this.getAuthorizedTags(file); - const idTagIndex = this.tagsCachesAddressableIndexes.get(file + hashId) ?? 0; + const addressableKey = file + hashId; + const idTagIndex = this.tagsCachesAddressableIndexes.get(addressableKey) ?? 0; const idTag = tags[idTagIndex]; this.tagsCachesAddressableIndexes.set( - file + hashId, + addressableKey, idTagIndex === tags.length - 1 ? 0 : idTagIndex + 1 ); return idTag; @@ -82,11 +84,12 @@ export class AuthorizedTagsCache { const file = ChargingStationUtils.getAuthorizationFile(chargingStation.stationInfo); const tags = this.getAuthorizedTags(file); const hashId = chargingStation.stationInfo.hashId; + const addressableKey = file + hashId; this.tagsCachesAddressableIndexes.set( - file + hashId, + addressableKey, (chargingStation.index - 1 + (connectorId - 1)) % tags.length ); - return tags[this.tagsCachesAddressableIndexes.get(file + hashId)]; + return tags[this.tagsCachesAddressableIndexes.get(addressableKey)]; } private hasTags(file: string): boolean {