X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fperformance%2Fstorage%2FMongoDBStorage.ts;h=568f70953edc4a2a6db290dae0e51a1634e7cb68;hb=248f70eff6b955b177f0bbd9ca84356c3b99d72e;hp=851df0a1ba8248a582153056ce1bad688fd37d92;hpb=a6b3c6c313f1c0314a1445ed630cac85edf55b2c;p=e-mobility-charging-stations-simulator.git diff --git a/src/performance/storage/MongoDBStorage.ts b/src/performance/storage/MongoDBStorage.ts index 851df0a1..568f7095 100644 --- a/src/performance/storage/MongoDBStorage.ts +++ b/src/performance/storage/MongoDBStorage.ts @@ -1,56 +1,73 @@ -// 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 { BaseError } from '../../exception'; +import { type Statistics, StorageType } from '../../types'; +import { Constants } from '../../utils'; export class MongoDBStorage extends Storage { - private client: MongoClient; + private readonly client?: MongoClient; 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) + .replaceOne({ id: performanceStatistics.id }, performanceStatistics, { upsert: true }); } catch (error) { - this.handleDBError(StorageType.MONGO_DB, error, Constants.PERFORMANCE_RECORDS_TABLE); + this.handleDBError(StorageType.MONGO_DB, error as Error, Constants.PERFORMANCE_RECORDS_TABLE); } } public async open(): Promise { try { - if (!this.connected) { + if (!this.connected && this?.client) { await this.client.connect(); this.connected = true; } } catch (error) { - this.handleDBError(StorageType.MONGO_DB, error); + this.handleDBError(StorageType.MONGO_DB, error as Error); } } public async close(): Promise { try { - if (this.connected) { + if (this.connected && this?.client) { await this.client.close(); this.connected = false; } } catch (error) { - this.handleDBError(StorageType.MONGO_DB, error); + this.handleDBError(StorageType.MONGO_DB, error as Error); } } private checkDBConnection() { + if (!this?.client) { + throw new BaseError( + `${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 BaseError( + `${this.logPrefix} ${this.getDBNameFromStorageType( + StorageType.MONGO_DB, + )} connection not opened while trying to issue a request`, + ); } } }