X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FFileUtils.ts;h=4e556a4bc1c3d642c8c9edecbb92049d5e880044;hb=42486f2357b011f9244c6b29f4e05185138ce8d1;hp=2e99f52f800834435d240bb418443bf429b31711;hpb=1895299db899eb53db7fb1615b82624f806017e8;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/FileUtils.ts b/src/utils/FileUtils.ts index 2e99f52f..4e556a4b 100644 --- a/src/utils/FileUtils.ts +++ b/src/utils/FileUtils.ts @@ -1,42 +1,44 @@ -import fs from 'fs'; +import fs from 'node:fs'; -import chalk from 'chalk'; +import { ErrorUtils } from './ErrorUtils'; +import { logger } from './Logger'; +import { Utils } from './Utils'; +import type { FileType, JsonType } from '../types'; -import logger from './Logger'; -import Utils from './Utils'; -import type { EmptyObject } from '../types/EmptyObject'; -import type { HandleErrorParams } from '../types/Error'; -import type { FileType } from '../types/FileType'; -import type { JsonType } from '../types/JsonType'; - -export default class FileUtils { +export class FileUtils { private constructor() { // This is intentional } public static watchJsonFile( - logPrefix: string, - fileType: FileType, file: string, + fileType: FileType, + logPrefix: string, refreshedVariable?: T, listener: fs.WatchListener = (event, filename) => { - if (filename && event === 'change') { + if (Utils.isNotEmptyString(filename) && event === 'change') { try { logger.debug(`${logPrefix} ${fileType} file ${file} have changed, reload`); refreshedVariable && (refreshedVariable = JSON.parse(fs.readFileSync(file, 'utf8')) as T); } catch (error) { - FileUtils.handleFileException(logPrefix, fileType, file, error as NodeJS.ErrnoException, { - throwError: false, - }); + ErrorUtils.handleFileException( + file, + fileType, + error as NodeJS.ErrnoException, + logPrefix, + { + throwError: false, + } + ); } } } ): fs.FSWatcher | undefined { - if (file) { + if (Utils.isNotEmptyString(file)) { try { return fs.watch(file, listener); } catch (error) { - FileUtils.handleFileException(logPrefix, fileType, file, error as NodeJS.ErrnoException, { + ErrorUtils.handleFileException(file, fileType, error as NodeJS.ErrnoException, logPrefix, { throwError: false, }); } @@ -44,37 +46,4 @@ export default class FileUtils { logger.info(`${logPrefix} No ${fileType} file to watch given. Not monitoring its changes`); } } - - public static handleFileException( - logPrefix: string, - fileType: FileType, - file: string, - error: NodeJS.ErrnoException, - params: HandleErrorParams = { throwError: true, consoleOut: false } - ): void { - const prefix = !Utils.isEmptyString(logPrefix) ? `${logPrefix} ` : ''; - let logMsg: string; - switch (error.code) { - case 'ENOENT': - logMsg = `${fileType} file ${file} not found:`; - break; - case 'EEXIST': - logMsg = `${fileType} file ${file} already exists:`; - break; - case 'EACCES': - logMsg = `${fileType} file ${file} access denied:`; - break; - default: - logMsg = `${fileType} file ${file} error:`; - } - if (params?.consoleOut) { - logMsg = `${logMsg} `; - console.warn(`${chalk.green(prefix)}${chalk.yellow(logMsg)}`, error); - } else { - logger.warn(`${prefix}${logMsg}`, error); - } - if (params?.throwError) { - throw error; - } - } }