X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Focpp%2F2.0%2FOCPP20ServiceUtils.ts;h=c924b2400187931cfe4406d96ddc18bd72307787;hb=856e8f67312da4acabeff1bd8452f02658a22fdb;hp=2c7d3df3191f2246eb3086e4bb02d003ef241663;hpb=130783a74f495abcb198b7f01abe19dab4f7fb47;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ocpp/2.0/OCPP20ServiceUtils.ts b/src/charging-station/ocpp/2.0/OCPP20ServiceUtils.ts index 2c7d3df3..c924b240 100644 --- a/src/charging-station/ocpp/2.0/OCPP20ServiceUtils.ts +++ b/src/charging-station/ocpp/2.0/OCPP20ServiceUtils.ts @@ -1,30 +1,21 @@ // Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved. -import fs from 'node:fs'; -import path from 'node:path'; -import { fileURLToPath } from 'node:url'; - import type { JSONSchemaType } from 'ajv'; -import { FileType } from '../../../types/FileType'; -import type { JsonType } from '../../../types/JsonType'; -import { OCPPVersion } from '../../../types/ocpp/OCPPVersion'; -import FileUtils from '../../../utils/FileUtils'; +import { type JsonType, OCPPVersion } from '../../../types'; import { OCPPServiceUtils } from '../OCPPServiceUtils'; export class OCPP20ServiceUtils extends OCPPServiceUtils { - public static parseJsonSchemaFile(relativePath: string): JSONSchemaType { - const filePath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), relativePath); - try { - return JSON.parse(fs.readFileSync(filePath, 'utf8')) as JSONSchemaType; - } catch (error) { - FileUtils.handleFileException( - OCPPServiceUtils.logPrefix(OCPPVersion.VERSION_20), - FileType.JsonSchema, - filePath, - error as NodeJS.ErrnoException, - { throwError: false } - ); - } + public static parseJsonSchemaFile( + relativePath: string, + moduleName?: string, + methodName?: string, + ): JSONSchemaType { + return super.parseJsonSchemaFile( + relativePath, + OCPPVersion.VERSION_20, + moduleName, + methodName, + ); } }