X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fperformance%2Fstorage%2FMongoDBStorage.ts;h=aff757b5c343c58850bc36a9ac990ca37491f683;hb=c3da35d496cbb2c78e85fb3d2e125ffd6fd297f4;hp=4e1d0eb2f10afe818b2efa4df663035eb7b3cd6c;hpb=dc100e978337264ceade1c7bbd67faa967c874e1;p=e-mobility-charging-stations-simulator.git diff --git a/src/performance/storage/MongoDBStorage.ts b/src/performance/storage/MongoDBStorage.ts index 4e1d0eb2..aff757b5 100644 --- a/src/performance/storage/MongoDBStorage.ts +++ b/src/performance/storage/MongoDBStorage.ts @@ -1,26 +1,31 @@ -// Copyright Jerome Benoit. 2021. All Rights Reserved. +// Copyright Jerome Benoit. 2021-2023. All Rights Reserved. -import Constants from '../../utils/Constants'; import { MongoClient } from 'mongodb'; -import Statistics from '../../types/Statistics'; + import { Storage } from './Storage'; -import { StorageType } from '../../types/Storage'; +import { type Statistics, StorageType } from '../../types'; +import { Constants } from '../../utils'; export class MongoDBStorage extends Storage { private readonly client: MongoClient | null; private connected: boolean; - constructor(storageURI: string, logPrefix: string) { - super(storageURI, logPrefix); - this.client = new MongoClient(this.storageURI.toString()); + constructor(storageUri: string, logPrefix: string) { + super(storageUri, logPrefix); + this.client = new MongoClient(this.storageUri.toString()); this.connected = false; - this.dbName = this.storageURI.pathname.replace(/(?:^\/)|(?:\/$)/g, '') ?? Constants.DEFAULT_PERFORMANCE_RECORDS_DB_NAME; + this.dbName = + this.storageUri.pathname.replace(/(?:^\/)|(?:\/$)/g, '') ?? + Constants.DEFAULT_PERFORMANCE_RECORDS_DB_NAME; } public async storePerformanceStatistics(performanceStatistics: Statistics): Promise { try { this.checkDBConnection(); - await this.client.db(this.dbName).collection(Constants.PERFORMANCE_RECORDS_TABLE).insertOne(performanceStatistics); + await this.client + ?.db(this.dbName) + .collection(Constants.PERFORMANCE_RECORDS_TABLE) + .insertOne(performanceStatistics); } catch (error) { this.handleDBError(StorageType.MONGO_DB, error as Error, Constants.PERFORMANCE_RECORDS_TABLE); } @@ -50,10 +55,18 @@ export class MongoDBStorage extends Storage { private checkDBConnection() { if (!this?.client) { - throw new Error(`${this.logPrefix} ${this.getDBNameFromStorageType(StorageType.MONGO_DB)} client initialization failed while trying to issue a request`); + throw new Error( + `${this.logPrefix} ${this.getDBNameFromStorageType( + StorageType.MONGO_DB + )} client initialization failed while trying to issue a request` + ); } if (!this.connected) { - throw new Error(`${this.logPrefix} ${this.getDBNameFromStorageType(StorageType.MONGO_DB)} connection not opened while trying to issue a request`); + throw new Error( + `${this.logPrefix} ${this.getDBNameFromStorageType( + StorageType.MONGO_DB + )} connection not opened while trying to issue a request` + ); } } }