X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FErrorUtils.ts;h=537aa308b41a0516e4b688c7f9b38124952d455f;hb=6a4032b5d8f3cbaa18d3beddcdfe9d335c1cba90;hp=bca12b6463f5a2e76c6388f6b476fda65658c0b8;hpb=a9c8f6cbcff34dc5338c064fab986e4b01451aa2;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/ErrorUtils.ts b/src/utils/ErrorUtils.ts index bca12b64..537aa308 100644 --- a/src/utils/ErrorUtils.ts +++ b/src/utils/ErrorUtils.ts @@ -1,7 +1,9 @@ +import process from 'node:process'; + import chalk from 'chalk'; import { logger } from './Logger'; -import { Utils } from './Utils'; +import { isNotEmptyString } from './Utils'; import type { ChargingStation } from '../charging-station'; import type { EmptyObject, @@ -17,85 +19,80 @@ const defaultErrorParams = { consoleOut: false, }; -export class ErrorUtils { - private constructor() { - // This is intentional - } +export const handleUncaughtException = (): void => { + process.on('uncaughtException', (error: Error) => { + console.error(chalk.red('Uncaught exception: '), error); + }); +}; - public static handleUncaughtException(): void { - process.on('uncaughtException', (error: Error) => { - console.error(chalk.red('Uncaught exception: '), error); - }); - } +export const handleUnhandledRejection = (): void => { + process.on('unhandledRejection', (reason: unknown) => { + console.error(chalk.red('Unhandled rejection: '), reason); + }); +}; - public static handleUnhandledRejection(): void { - process.on('unhandledRejection', (reason: unknown) => { - console.error(chalk.red('Unhandled rejection: '), reason); - }); +export const handleFileException = ( + file: string, + fileType: FileType, + error: NodeJS.ErrnoException, + logPrefix: string, + params: HandleErrorParams = defaultErrorParams, +): void => { + setDefaultErrorParams(params); + const prefix = isNotEmptyString(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; + case 'EPERM': + logMsg = `${fileType} file ${file} permission denied:`; + break; + default: + logMsg = `${fileType} file ${file} error:`; } - - public static handleFileException( - file: string, - fileType: FileType, - error: NodeJS.ErrnoException, - logPrefix: string, - params: HandleErrorParams = defaultErrorParams - ): void { - ErrorUtils.setDefaultErrorParams(params); - const prefix = Utils.isNotEmptyString(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; - case 'EPERM': - logMsg = `${fileType} file ${file} permission denied:`; - break; - default: - logMsg = `${fileType} file ${file} error:`; - } - if (params?.consoleOut === true) { - if (params?.throwError) { - console.error(`${chalk.green(prefix)}${chalk.red(`${logMsg} `)}`, error); - } else { - console.warn(`${chalk.green(prefix)}${chalk.yellow(`${logMsg} `)}`, error); - } - } else if (params?.consoleOut === false) { - if (params?.throwError) { - logger.error(`${prefix}${logMsg}`, error); - } else { - logger.warn(`${prefix}${logMsg}`, error); - } + if (params?.consoleOut === true) { + logMsg = `${logMsg} `; + if (params?.throwError) { + console.error(`${chalk.green(prefix)}${chalk.red(logMsg)}`, error); + } else { + console.warn(`${chalk.green(prefix)}${chalk.yellow(logMsg)}`, error); } + } else if (params?.consoleOut === false) { if (params?.throwError) { - throw error; + logger.error(`${prefix}${logMsg}`, error); + } else { + logger.warn(`${prefix}${logMsg}`, error); } } - - public static handleSendMessageError( - chargingStation: ChargingStation, - commandName: RequestCommand | IncomingRequestCommand, - error: Error, - params: HandleErrorParams = { throwError: false, consoleOut: false } - ): void { - ErrorUtils.setDefaultErrorParams(params, { throwError: false, consoleOut: false }); - logger.error(`${chargingStation.logPrefix()} Request command '${commandName}' error:`, error); - if (params?.throwError === true) { - throw error; - } + if (params?.throwError) { + throw error; } +}; - public static setDefaultErrorParams( - params: HandleErrorParams, - defaultParams: HandleErrorParams = defaultErrorParams - ): HandleErrorParams { - params = { ...defaultParams, ...params }; - return params; +export const handleSendMessageError = ( + chargingStation: ChargingStation, + commandName: RequestCommand | IncomingRequestCommand, + error: Error, + params: HandleErrorParams = { throwError: false, consoleOut: false }, +): void => { + setDefaultErrorParams(params, { throwError: false, consoleOut: false }); + logger.error(`${chargingStation.logPrefix()} Request command '${commandName}' error:`, error); + if (params?.throwError === true) { + throw error; } -} +}; + +export const setDefaultErrorParams = ( + params: HandleErrorParams, + defaultParams: HandleErrorParams = defaultErrorParams, +): HandleErrorParams => { + params = { ...defaultParams, ...params }; + return params; +};