X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fperformance%2Fstorage%2FJsonFileStorage.ts;h=8bbbd42cea06563d91d7e6d360bf38cc06f92563;hb=b3d7d65476a4ab586b3ccd188f0bfbe8452aba0e;hp=fb7062674bb2ea14787a2d5eb0ff6646bab75d11;hpb=dd485b567f2f1b595c8241fa2cf74ba0c27911f0;p=e-mobility-charging-stations-simulator.git diff --git a/src/performance/storage/JsonFileStorage.ts b/src/performance/storage/JsonFileStorage.ts index fb706267..8bbbd42c 100644 --- a/src/performance/storage/JsonFileStorage.ts +++ b/src/performance/storage/JsonFileStorage.ts @@ -1,10 +1,19 @@ // Copyright Jerome Benoit. 2021-2023. All Rights Reserved. -import fs from 'node:fs'; +import { closeSync, existsSync, mkdirSync, openSync, readFileSync, writeFileSync } from 'node:fs'; +import { dirname } from 'node:path'; +import { Storage } from './Storage'; +import { BaseError } from '../../exception'; import { FileType, type Statistics } from '../../types'; -import { AsyncLock, AsyncLockType, Constants, FileUtils, Utils } from '../../utils'; -import { Storage } from '../internal'; +import { + AsyncLock, + AsyncLockType, + Constants, + JSONStringifyWithMapSupport, + handleFileException, + isNullOrUndefined, +} from '../../utils'; export class JsonFileStorage extends Storage { private fd: number | null = null; @@ -18,23 +27,19 @@ export class JsonFileStorage extends Storage { this.checkPerformanceRecordsFile(); AsyncLock.acquire(AsyncLockType.performance) .then(() => { - const fileData = fs.readFileSync(this.dbName, 'utf8'); + const fileData = readFileSync(this.dbName, 'utf8'); const performanceRecords: Statistics[] = fileData ? (JSON.parse(fileData) as Statistics[]) : []; performanceRecords.push(performanceStatistics); - fs.writeFileSync( - this.dbName, - Utils.JSONStringifyWithMapSupport(performanceRecords, 2), - 'utf8' - ); + writeFileSync(this.dbName, JSONStringifyWithMapSupport(performanceRecords, 2), 'utf8'); }) .catch((error) => { - FileUtils.handleFileException( + handleFileException( this.dbName, FileType.PerformanceRecords, error as NodeJS.ErrnoException, - this.logPrefix + this.logPrefix, ); }) .finally(() => { @@ -44,15 +49,18 @@ export class JsonFileStorage extends Storage { public open(): void { try { - if (Utils.isNullOrUndefined(this?.fd)) { - this.fd = fs.openSync(this.dbName, 'a+'); + if (isNullOrUndefined(this?.fd)) { + if (!existsSync(dirname(this.dbName))) { + mkdirSync(dirname(this.dbName), { recursive: true }); + } + this.fd = openSync(this.dbName, 'a+'); } } catch (error) { - FileUtils.handleFileException( + handleFileException( this.dbName, FileType.PerformanceRecords, error as NodeJS.ErrnoException, - this.logPrefix + this.logPrefix, ); } } @@ -60,23 +68,23 @@ export class JsonFileStorage extends Storage { public close(): void { try { if (this?.fd) { - fs.closeSync(this.fd); + closeSync(this.fd); this.fd = null; } } catch (error) { - FileUtils.handleFileException( + handleFileException( this.dbName, FileType.PerformanceRecords, error as NodeJS.ErrnoException, - this.logPrefix + this.logPrefix, ); } } private checkPerformanceRecordsFile(): void { if (!this?.fd) { - throw new Error( - `${this.logPrefix} Performance records '${this.dbName}' file descriptor not found` + throw new BaseError( + `${this.logPrefix} Performance records '${this.dbName}' file descriptor not found`, ); } }