X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fperformance%2Fstorage%2FStorage.ts;h=ccdbb3f835411c27521e1c17df33002d7cfd259a;hb=6c0215d2bf5a098aceed9e9d94d75d50ff2630db;hp=8ee2a7018ee6dfc911d67218d07ef272df6293d9;hpb=66a7748ddeda8c94d7562a1ce58d440319654a4c;p=e-mobility-charging-stations-simulator.git diff --git a/src/performance/storage/Storage.ts b/src/performance/storage/Storage.ts index 8ee2a701..ccdbb3f8 100644 --- a/src/performance/storage/Storage.ts +++ b/src/performance/storage/Storage.ts @@ -1,4 +1,4 @@ -// Copyright Jerome Benoit. 2021-2023. All Rights Reserved. +// Copyright Jerome Benoit. 2021-2024. All Rights Reserved. import { URL } from 'node:url' @@ -15,19 +15,23 @@ export abstract class Storage { protected readonly storageUri: URL protected readonly logPrefix: string protected dbName!: string + private static readonly performanceStatistics = new Map() constructor (storageUri: string, logPrefix: string) { this.storageUri = new URL(storageUri) this.logPrefix = logPrefix } - protected handleDBError ( + protected handleDBStorageError ( type: StorageType, error: Error, table?: string, - params: HandleErrorParams = { throwError: false, consoleOut: false } + params: HandleErrorParams = { + throwError: false, + consoleOut: false + } ): void { - setDefaultErrorParams(params, { throwError: false, consoleOut: false }) + params = setDefaultErrorParams(params, { throwError: false, consoleOut: false }) const inTableOrCollectionStr = table != null && ` in table or collection '${table}'` logger.error( `${this.logPrefix} ${this.getDBNameFromStorageType(type)} error '${ @@ -35,24 +39,36 @@ export abstract class Storage { }'${inTableOrCollectionStr}:`, error ) - if (params?.throwError === true) { + if (params.throwError === true) { throw error } } protected getDBNameFromStorageType (type: StorageType): DBName | undefined { switch (type) { + case StorageType.SQLITE: + return DBName.SQLITE case StorageType.MARIA_DB: return DBName.MARIA_DB - case StorageType.MONGO_DB: - return DBName.MONGO_DB case StorageType.MYSQL: return DBName.MYSQL - case StorageType.SQLITE: - return DBName.SQLITE + case StorageType.MONGO_DB: + return DBName.MONGO_DB } } + public getPerformanceStatistics (): IterableIterator { + return Storage.performanceStatistics.values() + } + + protected setPerformanceStatistics (performanceStatistics: Statistics): void { + Storage.performanceStatistics.set(performanceStatistics.id, performanceStatistics) + } + + protected clearPerformanceStatistics (): void { + Storage.performanceStatistics.clear() + } + public abstract open (): void | Promise public abstract close (): void | Promise public abstract storePerformanceStatistics (