X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Focpp%2FOCPPResponseService.ts;h=0e9c6164d299a927dd8adf3f58a15d7247e6ced6;hb=8f46463be058ed68cc4cc962c51722f7e3b55c54;hp=738aa5ae4ffea2c8ea2f7ce7013826241eabb1c1;hpb=a223d9be48ad8828e6aef060dd3c45d4f99ea9a9;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ocpp/OCPPResponseService.ts b/src/charging-station/ocpp/OCPPResponseService.ts index 738aa5ae..0e9c6164 100644 --- a/src/charging-station/ocpp/OCPPResponseService.ts +++ b/src/charging-station/ocpp/OCPPResponseService.ts @@ -1,7 +1,6 @@ -import _Ajv, { type JSONSchemaType, type ValidateFunction } from 'ajv' +import _Ajv, { type ValidateFunction } from 'ajv' import _ajvFormats from 'ajv-formats' -import { OCPPServiceUtils } from './OCPPServiceUtils.js' import type { ChargingStation } from '../../charging-station/index.js' import { OCPPError } from '../../exception/index.js' import type { @@ -10,7 +9,8 @@ import type { OCPPVersion, RequestCommand } from '../../types/index.js' -import { logger } from '../../utils/index.js' +import { Constants, logger } from '../../utils/index.js' +import { OCPPServiceUtils } from './OCPPServiceUtils.js' type Ajv = _Ajv.default // eslint-disable-next-line @typescript-eslint/no-redeclare const Ajv = _Ajv.default @@ -20,19 +20,13 @@ const moduleName = 'OCPPResponseService' export abstract class OCPPResponseService { private static instance: OCPPResponseService | null = null - - public jsonIncomingRequestResponseValidateFunctions: Map< - IncomingRequestCommand, - ValidateFunction - > - private readonly version: OCPPVersion - private readonly ajv: Ajv - private readonly jsonRequestValidateFunctions: Map> - - public abstract jsonIncomingRequestResponseSchemas: Map< + protected readonly ajv: Ajv + protected readonly ajvIncomingRequest: Ajv + protected abstract payloadValidateFunctions: Map> + public abstract incomingRequestResponsePayloadValidateFunctions: Map< IncomingRequestCommand, - JSONSchemaType + ValidateFunction > protected constructor (version: OCPPVersion) { @@ -42,26 +36,13 @@ export abstract class OCPPResponseService { multipleOfPrecision: 2 }) ajvFormats(this.ajv) - this.jsonRequestValidateFunctions = new Map>() - this.jsonIncomingRequestResponseValidateFunctions = new Map< - IncomingRequestCommand, - ValidateFunction - >() - this.responseHandler = this.responseHandler.bind(this) as < - ReqType extends JsonType, - ResType extends JsonType - >( - chargingStation: ChargingStation, - commandName: RequestCommand, - payload: ResType, - requestPayload: ReqType - ) => Promise - this.validateResponsePayload = this.validateResponsePayload.bind(this) as ( - chargingStation: ChargingStation, - commandName: RequestCommand, - schema: JSONSchemaType, - payload: T - ) => boolean + this.ajvIncomingRequest = new Ajv({ + keywords: ['javaType'], + multipleOfPrecision: 2 + }) + ajvFormats(this.ajvIncomingRequest) + this.responseHandler = this.responseHandler.bind(this) + this.validateResponsePayload = this.validateResponsePayload.bind(this) } public static getInstance(this: new () => T): T { @@ -74,42 +55,28 @@ export abstract class OCPPResponseService { protected validateResponsePayload( chargingStation: ChargingStation, commandName: RequestCommand, - schema: JSONSchemaType, payload: T ): boolean { if (chargingStation.stationInfo?.ocppStrictCompliance === false) { return true } - const validate = this.getJsonRequestValidateFunction(commandName, schema) - if (validate(payload)) { + const validate = this.payloadValidateFunctions.get(commandName) + if (validate?.(payload) === true) { return true } logger.error( `${chargingStation.logPrefix()} ${moduleName}.validateResponsePayload: Command '${commandName}' response PDU is invalid: %j`, - validate.errors + validate?.errors ) throw new OCPPError( - OCPPServiceUtils.ajvErrorsToErrorType(validate.errors), + OCPPServiceUtils.ajvErrorsToErrorType(validate?.errors), 'Response PDU is invalid', commandName, - JSON.stringify(validate.errors, undefined, 2) + JSON.stringify(validate?.errors, undefined, 2) ) } - protected emptyResponseHandler (): void { - /* This is intentional */ - } - - private getJsonRequestValidateFunction( - commandName: RequestCommand, - schema: JSONSchemaType - ): ValidateFunction { - if (!this.jsonRequestValidateFunctions.has(commandName)) { - this.jsonRequestValidateFunctions.set(commandName, this.ajv.compile(schema).bind(this)) - } - // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - return this.jsonRequestValidateFunctions.get(commandName)! - } + protected emptyResponseHandler = Constants.EMPTY_FUNCTION public abstract responseHandler( chargingStation: ChargingStation,