Cleanup MikroORM configuration code for performance storage
authorJérôme Benoit <jerome.benoit@sap.com>
Fri, 3 Sep 2021 08:28:01 +0000 (10:28 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Fri, 3 Sep 2021 08:28:01 +0000 (10:28 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/performance/storage/MikroORMStorage.ts
src/utils/Configuration.ts

index 4d39dc7403beb97b3b46d24bbae4cb5198502a85..6afb820399e32d2d47f400d4f79a7bcd27cfe017 100644 (file)
@@ -16,7 +16,7 @@ export class MikroORMStorage extends Storage {
   constructor(storageURI: string, logPrefix: string, storageType: StorageType) {
     super(storageURI, logPrefix);
     this.storageType = storageType;
-    this.dbName = this.storageURI.pathname.replace(/(?:^\/)|(?:\/$)/g, '') ?? Constants.DEFAULT_PERFORMANCE_RECORDS_DB_NAME;
+    this.dbName = this.getDBName();
   }
 
   public async storePerformanceStatistics(performanceStatistics: Statistics): Promise<void> {
@@ -36,13 +36,30 @@ export class MikroORMStorage extends Storage {
     await this.orm.close();
   }
 
+  private getDBName(): string {
+    if (this.storageType === StorageType.SQLITE) {
+      return Constants.DEFAULT_PERFORMANCE_RECORDS_DB_NAME;
+    }
+    return this.storageURI.pathname.replace(/(?:^\/)|(?:\/$)/g, '') ?? Constants.DEFAULT_PERFORMANCE_RECORDS_DB_NAME;
+  }
+
   private getOptions(): Configuration<IDatabaseDriver<Connection>> | Options<IDatabaseDriver<Connection>> {
     return {
       entities: [PerformanceRecord, PerformanceData],
       dbName: this.dbName,
       type: this.storageType as MikroORMDBType,
-      clientUrl: this.storageURI.toString()
+      clientUrl: this.getClientUrl()
     };
   }
+
+  private getClientUrl(): string {
+    switch (this.storageType) {
+      case StorageType.SQLITE:
+        return this.storageURI.pathname;
+      case StorageType.MARIA_DB:
+      case StorageType.MYSQL:
+        return this.storageURI.toString();
+    }
+  }
 }
 
index 1b95f341e0ca8f5d05190e30dcdf996a3cc6a467..f7fe64bf5c7db4603e4b23751cd9d134ac4ac632 100644 (file)
@@ -25,9 +25,6 @@ export default class Configuration {
   }
 
   static getPerformanceStorage(): StorageConfiguration {
-    const defaultJSONFilePathURI = `file://${path.join(path.resolve(__dirname, '../../'), Constants.DEFAULT_PERFORMANCE_RECORDS_FILENAME)}`;
-    const SQLiteFileName = `${Constants.DEFAULT_PERFORMANCE_RECORDS_DB_NAME}.db`;
-    const defaultSQLiteFilePathURI = `file://${path.join(path.resolve(__dirname, '../../'), SQLiteFileName)}`;
     let storageConfiguration: StorageConfiguration;
     if (Configuration.objectHasOwnProperty(Configuration.getConfig(), 'performanceStorage')) {
       storageConfiguration =
@@ -36,14 +33,14 @@ export default class Configuration {
         ...Configuration.objectHasOwnProperty(Configuration.getConfig().performanceStorage, 'type') ? { type: Configuration.getConfig().performanceStorage.type } : { type: StorageType.JSON_FILE },
         ...Configuration.objectHasOwnProperty(Configuration.getConfig().performanceStorage, 'URI')
           ? { URI: Configuration.getConfig().performanceStorage.URI }
-          : { URI: (Configuration.getConfig().performanceStorage.type === StorageType.JSON_FILE) ? defaultJSONFilePathURI : defaultSQLiteFilePathURI }
+          : { URI: this.getDefaultPerformanceStorageURI(Configuration.getConfig()?.performanceStorage?.type ?? StorageType.JSON_FILE) }
       };
     } else {
       storageConfiguration =
       {
         enabled: false,
         type: StorageType.JSON_FILE,
-        URI: defaultJSONFilePathURI
+        URI: this.getDefaultPerformanceStorageURI(StorageType.JSON_FILE)
       };
     }
     return storageConfiguration;
@@ -178,6 +175,18 @@ export default class Configuration {
     }
   }
 
+  private static getDefaultPerformanceStorageURI(storageType: StorageType) {
+    const SQLiteFileName = `${Constants.DEFAULT_PERFORMANCE_RECORDS_DB_NAME}.db`;
+    switch (storageType) {
+      case StorageType.JSON_FILE:
+        return `file://${path.join(path.resolve(__dirname, '../../'), Constants.DEFAULT_PERFORMANCE_RECORDS_FILENAME)}`;
+      case StorageType.SQLITE:
+        return `file://${path.join(path.resolve(__dirname, '../../'), SQLiteFileName)}`;
+      default:
+        throw new Error(`Performance storage URI is mandatory with storage type '${storageType}'`);
+    }
+  }
+
   private static objectHasOwnProperty(object: any, property: string): boolean {
     return Object.prototype.hasOwnProperty.call(object, property) as boolean;
   }