X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FErrorUtils.ts;h=0a444c6b1f5d945e5577dd7fbebc6ec235df16e6;hb=b8e3363a179fcf79d8bb66f47724b377d4d38a75;hp=537aa308b41a0516e4b688c7f9b38124952d455f;hpb=36adaf06028acd6337cf32183974fbe5a62c8444;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/ErrorUtils.ts b/src/utils/ErrorUtils.ts index 537aa308..0a444c6b 100644 --- a/src/utils/ErrorUtils.ts +++ b/src/utils/ErrorUtils.ts @@ -1,98 +1,130 @@ -import process from 'node:process'; +import process from 'node:process' -import chalk from 'chalk'; +import chalk from 'chalk' -import { logger } from './Logger'; -import { isNotEmptyString } from './Utils'; -import type { ChargingStation } from '../charging-station'; +import type { ChargingStation } from '../charging-station/index.js' +import { getMessageTypeString } from '../charging-station/ocpp/OCPPServiceUtils.js' import type { EmptyObject, FileType, HandleErrorParams, IncomingRequestCommand, JsonType, - RequestCommand, -} from '../types'; + MessageType, + RequestCommand +} from '../types/index.js' +import { logger } from './Logger.js' +import { isNotEmptyString } from './Utils.js' + +const moduleName = 'ErrorUtils' const defaultErrorParams = { throwError: true, - consoleOut: false, -}; + consoleOut: false +} satisfies HandleErrorParams export const handleUncaughtException = (): void => { process.on('uncaughtException', (error: Error) => { - console.error(chalk.red('Uncaught exception: '), error); - }); -}; + console.error(chalk.red('Uncaught exception: '), error) + }) +} export const handleUnhandledRejection = (): void => { process.on('unhandledRejection', (reason: unknown) => { - console.error(chalk.red('Unhandled rejection: '), reason); - }); -}; + console.error(chalk.red('Unhandled rejection: '), reason) + }) +} export const handleFileException = ( file: string, fileType: FileType, error: NodeJS.ErrnoException, logPrefix: string, - params: HandleErrorParams = defaultErrorParams, + params: HandleErrorParams = defaultErrorParams ): void => { - setDefaultErrorParams(params); - const prefix = isNotEmptyString(logPrefix) ? `${logPrefix} ` : ''; - let logMsg: string; + params = setDefaultErrorParams(params) + const prefix = isNotEmptyString(logPrefix) ? `${logPrefix} ` : '' + let logMsg: string switch (error.code) { case 'ENOENT': - logMsg = `${fileType} file ${file} not found:`; - break; + logMsg = `${fileType} file ${file} not found:` + break case 'EEXIST': - logMsg = `${fileType} file ${file} already exists:`; - break; + logMsg = `${fileType} file ${file} already exists:` + break case 'EACCES': - logMsg = `${fileType} file ${file} access denied:`; - break; + logMsg = `${fileType} file ${file} access denied:` + break case 'EPERM': - logMsg = `${fileType} file ${file} permission denied:`; - break; + logMsg = `${fileType} file ${file} permission denied:` + break default: - logMsg = `${fileType} file ${file} error:`; + logMsg = `${fileType} file ${file} error:` } - if (params?.consoleOut === true) { - logMsg = `${logMsg} `; - if (params?.throwError) { - console.error(`${chalk.green(prefix)}${chalk.red(logMsg)}`, error); + if (params.consoleOut === true) { + logMsg = `${logMsg} ` + if (params.throwError === true) { + console.error(`${chalk.green(prefix)}${chalk.red(logMsg)}`, error) } else { - console.warn(`${chalk.green(prefix)}${chalk.yellow(logMsg)}`, error); + console.warn(`${chalk.green(prefix)}${chalk.yellow(logMsg)}`, error) } - } else if (params?.consoleOut === false) { - if (params?.throwError) { - logger.error(`${prefix}${logMsg}`, error); + } else if (params.consoleOut === false) { + if (params.throwError === true) { + logger.error(`${prefix}${logMsg}`, error) } else { - logger.warn(`${prefix}${logMsg}`, error); + logger.warn(`${prefix}${logMsg}`, error) } } - if (params?.throwError) { - throw error; + if (params.throwError === true) { + throw error } -}; +} export const handleSendMessageError = ( chargingStation: ChargingStation, commandName: RequestCommand | IncomingRequestCommand, + messageType: MessageType, error: Error, - params: HandleErrorParams = { throwError: false, consoleOut: false }, + 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; + params = setDefaultErrorParams(params, { throwError: false, consoleOut: false }) + logger.error( + `${chargingStation.logPrefix()} ${moduleName}.handleSendMessageError: Send ${getMessageTypeString(messageType)} command '${commandName}' error:`, + error + ) + if (params.throwError === true) { + throw error + } +} + +export const handleIncomingRequestError = ( + chargingStation: ChargingStation, + commandName: IncomingRequestCommand, + error: Error, + params: HandleErrorParams = { throwError: true, consoleOut: false } +): T | undefined => { + params = setDefaultErrorParams(params) + logger.error( + `${chargingStation.logPrefix()} ${moduleName}.handleIncomingRequestError: Incoming request command '${commandName}' error:`, + error + ) + if (params.throwError === false && params.errorResponse != null) { + return params.errorResponse + } + if (params.throwError === true && params.errorResponse == null) { + throw error + } + if (params.throwError === true && params.errorResponse != null) { + return params.errorResponse } -}; +} export const setDefaultErrorParams = ( params: HandleErrorParams, - defaultParams: HandleErrorParams = defaultErrorParams, + defaultParams: HandleErrorParams = defaultErrorParams ): HandleErrorParams => { - params = { ...defaultParams, ...params }; - return params; -}; + return { ...defaultParams, ...params } +}