X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2FIdTagsCache.ts;h=da4b38bfce79de421343e16f90dd2b6a17e85c6b;hb=30695dcf67470f149e349d196b3d016482d11a17;hp=b50c062008b9b1388d9ea21cfeb21ac3ba0018ce;hpb=66a7748ddeda8c94d7562a1ce58d440319654a4c;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/IdTagsCache.ts b/src/charging-station/IdTagsCache.ts index b50c0620..da4b38bf 100644 --- a/src/charging-station/IdTagsCache.ts +++ b/src/charging-station/IdTagsCache.ts @@ -1,16 +1,16 @@ import { type FSWatcher, readFileSync } from 'node:fs' -import type { ChargingStation } from './ChargingStation.js' -import { getIdTagsFile } from './Helpers.js' import { FileType, IdTagDistribution } from '../types/index.js' import { handleFileException, isNotEmptyString, - logPrefix, logger, + logPrefix, secureRandom, watchJsonFile } from '../utils/index.js' +import type { ChargingStation } from './ChargingStation.js' +import { getIdTagsFile } from './Helpers.js' interface IdTagsCacheValueType { idTags: string[] @@ -48,9 +48,10 @@ export class IdTagsCache { chargingStation: ChargingStation, connectorId: number ): string { - const hashId = chargingStation.stationInfo.hashId // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - const idTagsFile = getIdTagsFile(chargingStation.stationInfo)! + const hashId = chargingStation.stationInfo!.hashId + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const idTagsFile = getIdTagsFile(chargingStation.stationInfo!)! switch (distribution) { case IdTagDistribution.RANDOM: return this.getRandomIdTag(hashId, idTagsFile) @@ -108,12 +109,13 @@ export class IdTagsCache { private getConnectorAffinityIdTag (chargingStation: ChargingStation, connectorId: number): string { // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - const file = getIdTagsFile(chargingStation.stationInfo)! + const file = getIdTagsFile(chargingStation.stationInfo!)! // eslint-disable-next-line @typescript-eslint/no-non-null-assertion const idTags = this.getIdTags(file)! const addressableKey = this.getIdTagsCacheIndexesAddressableKey( file, - chargingStation.stationInfo.hashId + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + chargingStation.stationInfo!.hashId ) this.idTagsCachesAddressableIndexes.set( addressableKey, @@ -141,8 +143,7 @@ export class IdTagsCache { logger.debug( `${this.logPrefix(file)} ${FileType.Authorization} file have changed, reload` ) - this.deleteIdTagsCache(file) - this.deleteIdTagsCacheIndexes(file) + this.deleteIdTags(file) } catch (error) { handleFileException( file, @@ -176,7 +177,7 @@ export class IdTagsCache { deleted.push(this.idTagsCachesAddressableIndexes.delete(key)) } } - return !deleted.some((value) => !value) + return !deleted.some(value => !value) } private getIdTagsCacheIndexesAddressableKey (prefix: string, uid: string): string {