refactor: rename a template key to a more sensible name
[e-mobility-charging-stations-simulator.git] / src / performance / storage / JsonFileStorage.ts
index 94c36eddac1ea5012d81d22d314f52dfa8edc12f..fcb35a4df0507569d941edbcb1aac223561e6be4 100644 (file)
@@ -1,14 +1,12 @@
 // Copyright Jerome Benoit. 2021-2023. All Rights Reserved.
 
-import fs from 'fs';
+import fs from 'node:fs';
 
 import lockfile from 'proper-lockfile';
 
-import { Storage } from './Storage';
-import { FileType } from '../../types/FileType';
-import type { Statistics } from '../../types/Statistics';
-import FileUtils from '../../utils/FileUtils';
-import Utils from '../../utils/Utils';
+import { FileType, type Statistics } from '../../types';
+import { Constants, FileUtils, Utils } from '../../utils';
+import { Storage } from '../internal';
 
 export class JsonFileStorage extends Storage {
   private fd: number | null = null;
@@ -22,7 +20,7 @@ export class JsonFileStorage extends Storage {
     this.checkPerformanceRecordsFile();
     lockfile
       .lock(this.dbName, { stale: 5000, retries: 3 })
-      .then(async release => {
+      .then(async (release) => {
         try {
           const fileData = fs.readFileSync(this.dbName, 'utf8');
           const performanceRecords: Statistics[] = fileData
@@ -36,30 +34,28 @@ export class JsonFileStorage extends Storage {
           );
         } catch (error) {
           FileUtils.handleFileException(
-            this.logPrefix,
-            FileType.PerformanceRecords,
             this.dbName,
-            error as NodeJS.ErrnoException
+            FileType.PerformanceRecords,
+            error as NodeJS.ErrnoException,
+            this.logPrefix
           );
         }
         await release();
       })
-      .catch(() => {
-        /* This is intentional */
-      });
+      .catch(Constants.EMPTY_FUNCTION);
   }
 
   public open(): void {
     try {
-      if (!this?.fd) {
+      if (Utils.isNullOrUndefined(this?.fd)) {
         this.fd = fs.openSync(this.dbName, 'a+');
       }
     } catch (error) {
       FileUtils.handleFileException(
-        this.logPrefix,
-        FileType.PerformanceRecords,
         this.dbName,
-        error as NodeJS.ErrnoException
+        FileType.PerformanceRecords,
+        error as NodeJS.ErrnoException,
+        this.logPrefix
       );
     }
   }
@@ -72,10 +68,10 @@ export class JsonFileStorage extends Storage {
       }
     } catch (error) {
       FileUtils.handleFileException(
-        this.logPrefix,
-        FileType.PerformanceRecords,
         this.dbName,
-        error as NodeJS.ErrnoException
+        FileType.PerformanceRecords,
+        error as NodeJS.ErrnoException,
+        this.logPrefix
       );
     }
   }