X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fperformance%2Fstorage%2FJsonFileStorage.ts;h=97ab104ccfb73a11fb52aafd8ca408eeaf1ff84f;hb=551f2b6e68f544b559243a2634c8b52a15bcdeec;hp=c4a9f7483e30060047607bdbad5a97e15fb7c91c;hpb=9bf0ef23c51160abc6866ad8d07eea85e308edb8;p=e-mobility-charging-stations-simulator.git diff --git a/src/performance/storage/JsonFileStorage.ts b/src/performance/storage/JsonFileStorage.ts index c4a9f748..97ab104c 100644 --- a/src/performance/storage/JsonFileStorage.ts +++ b/src/performance/storage/JsonFileStorage.ts @@ -1,59 +1,49 @@ -// Copyright Jerome Benoit. 2021-2023. All Rights Reserved. +// Copyright Jerome Benoit. 2021-2024. All Rights Reserved. -import { closeSync, existsSync, mkdirSync, openSync, readFileSync, writeFileSync } from 'node:fs'; -import { dirname } from 'node:path'; +import { closeSync, existsSync, mkdirSync, openSync, writeSync } 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, - JSONStringifyWithMapSupport, - handleFileException, - isNullOrUndefined, -} from '../../utils'; +import { BaseError } from '../../exception/index.js' +import { FileType, MapStringifyFormat, type Statistics } from '../../types/index.js' +import { AsyncLock, AsyncLockType, handleFileException, JSONStringify } from '../../utils/index.js' +import { Storage } from './Storage.js' export class JsonFileStorage extends Storage { - private fd: number | null = null; + private fd?: number - constructor(storageUri: string, logPrefix: string) { - super(storageUri, logPrefix); - this.dbName = this.storageUri.pathname; + constructor (storageUri: string, logPrefix: string) { + super(storageUri, logPrefix) + this.dbName = this.storageUri.pathname } - public storePerformanceStatistics(performanceStatistics: Statistics): void { - this.checkPerformanceRecordsFile(); - AsyncLock.acquire(AsyncLockType.performance) - .then(() => { - const fileData = readFileSync(this.dbName, 'utf8'); - const performanceRecords: Statistics[] = fileData - ? (JSON.parse(fileData) as Statistics[]) - : []; - performanceRecords.push(performanceStatistics); - writeFileSync(this.dbName, JSONStringifyWithMapSupport(performanceRecords, 2), 'utf8'); - }) - .catch((error) => { - handleFileException( - this.dbName, - FileType.PerformanceRecords, - error as NodeJS.ErrnoException, - this.logPrefix - ); - }) - .finally(() => { - AsyncLock.release(AsyncLockType.performance).catch(Constants.EMPTY_FUNCTION); - }); + public storePerformanceStatistics (performanceStatistics: Statistics): void { + this.setPerformanceStatistics(performanceStatistics) + this.checkPerformanceRecordsFile() + AsyncLock.runExclusive(AsyncLockType.performance, () => { + writeSync( + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + this.fd!, + JSONStringify([...this.getPerformanceStatistics()], 2, MapStringifyFormat.object), + 0, + 'utf8' + ) + }).catch((error: unknown) => { + handleFileException( + this.dbName, + FileType.PerformanceRecords, + error as NodeJS.ErrnoException, + this.logPrefix + ) + }) } - public open(): void { + public open (): void { try { - if (isNullOrUndefined(this?.fd)) { + if (this.fd == null) { if (!existsSync(dirname(this.dbName))) { - mkdirSync(dirname(this.dbName), { recursive: true }); + mkdirSync(dirname(this.dbName), { recursive: true }) } - this.fd = openSync(this.dbName, 'a+'); + this.fd = openSync(this.dbName, 'w') } } catch (error) { handleFileException( @@ -61,15 +51,16 @@ export class JsonFileStorage extends Storage { FileType.PerformanceRecords, error as NodeJS.ErrnoException, this.logPrefix - ); + ) } } - public close(): void { + public close (): void { + this.clearPerformanceStatistics() try { - if (this?.fd) { - closeSync(this.fd); - this.fd = null; + if (this.fd != null) { + closeSync(this.fd) + delete this.fd } } catch (error) { handleFileException( @@ -77,15 +68,15 @@ export class JsonFileStorage extends Storage { FileType.PerformanceRecords, error as NodeJS.ErrnoException, this.logPrefix - ); + ) } } - private checkPerformanceRecordsFile(): void { - if (!this?.fd) { + private checkPerformanceRecordsFile (): void { + if (this.fd == null) { throw new BaseError( `${this.logPrefix} Performance records '${this.dbName}' file descriptor not found` - ); + ) } } }