X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Fui-server%2Fui-services%2FUIService001.ts;h=74403ceaaed5cbbbca6b99bc4b740f1da13519b6;hb=7acb3f7bb991a6d02a4521c0cbc5f163aa5e8a61;hp=d4f59ebc5e71746f609492e27d2042ca9be16101;hpb=6812b4e11d45a0d6179a266687c7ad9aa6e3b538;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ui-server/ui-services/UIService001.ts b/src/charging-station/ui-server/ui-services/UIService001.ts index d4f59ebc..74403cea 100644 --- a/src/charging-station/ui-server/ui-services/UIService001.ts +++ b/src/charging-station/ui-server/ui-services/UIService001.ts @@ -4,16 +4,29 @@ import { ProtocolVersion, RequestPayload, } from '../../../types/UIProtocol'; -import { - BroadcastChannelProcedureName, - BroadcastChannelRequestPayload, -} from '../../../types/WorkerBroadcastChannel'; -import { AbstractUIServer } from '../AbstractUIServer'; +import { BroadcastChannelProcedureName } from '../../../types/WorkerBroadcastChannel'; +import type { AbstractUIServer } from '../AbstractUIServer'; import AbstractUIService from './AbstractUIService'; export default class UIService001 extends AbstractUIService { constructor(uiServer: AbstractUIServer) { super(uiServer, ProtocolVersion['0.0.1']); + this.requestHandlers.set( + ProcedureName.START_CHARGING_STATION, + this.handleStartChargingStation.bind(this) as ProtocolRequestHandler + ); + this.requestHandlers.set( + ProcedureName.STOP_CHARGING_STATION, + this.handleStopChargingStation.bind(this) as ProtocolRequestHandler + ); + this.requestHandlers.set( + ProcedureName.OPEN_CONNECTION, + this.handleOpenConnection.bind(this) as ProtocolRequestHandler + ); + this.requestHandlers.set( + ProcedureName.CLOSE_CONNECTION, + this.handleCloseConnection.bind(this) as ProtocolRequestHandler + ); this.requestHandlers.set( ProcedureName.START_TRANSACTION, this.handleStartTransaction.bind(this) as ProtocolRequestHandler @@ -23,44 +36,76 @@ export default class UIService001 extends AbstractUIService { this.handleStopTransaction.bind(this) as ProtocolRequestHandler ); this.requestHandlers.set( - ProcedureName.START_CHARGING_STATION, - this.handleStartChargingStation.bind(this) as ProtocolRequestHandler + ProcedureName.START_AUTOMATIC_TRANSACTION_GENERATOR, + this.handleStartAutomaticTransactionGenerator.bind(this) as ProtocolRequestHandler ); this.requestHandlers.set( - ProcedureName.STOP_CHARGING_STATION, - this.handleStopChargingStation.bind(this) as ProtocolRequestHandler + ProcedureName.STOP_AUTOMATIC_TRANSACTION_GENERATOR, + this.handleStopAutomaticTransactionGenerator.bind(this) as ProtocolRequestHandler + ); + this.requestHandlers.set( + ProcedureName.STATUS_NOTIFICATION, + this.handleStatusNotification.bind(this) as ProtocolRequestHandler ); } + private handleStartChargingStation(uuid: string, payload: RequestPayload): void { + this.sendBroadcastChannelRequest( + uuid, + BroadcastChannelProcedureName.START_CHARGING_STATION, + payload + ); + } + + private handleStopChargingStation(uuid: string, payload: RequestPayload): void { + this.sendBroadcastChannelRequest( + uuid, + BroadcastChannelProcedureName.STOP_CHARGING_STATION, + payload + ); + } + + private handleOpenConnection(uuid: string, payload: RequestPayload): void { + this.sendBroadcastChannelRequest(uuid, BroadcastChannelProcedureName.OPEN_CONNECTION, payload); + } + + private handleCloseConnection(uuid: string, payload: RequestPayload): void { + this.sendBroadcastChannelRequest(uuid, BroadcastChannelProcedureName.CLOSE_CONNECTION, payload); + } + private handleStartTransaction(uuid: string, payload: RequestPayload): void { - this.uiServiceWorkerBroadcastChannel.sendRequest([ + this.sendBroadcastChannelRequest( uuid, BroadcastChannelProcedureName.START_TRANSACTION, - payload as BroadcastChannelRequestPayload, - ]); + payload + ); } private handleStopTransaction(uuid: string, payload: RequestPayload): void { - this.uiServiceWorkerBroadcastChannel.sendRequest([ + this.sendBroadcastChannelRequest(uuid, BroadcastChannelProcedureName.STOP_TRANSACTION, payload); + } + + private handleStartAutomaticTransactionGenerator(uuid: string, payload: RequestPayload): void { + this.sendBroadcastChannelRequest( uuid, - BroadcastChannelProcedureName.STOP_TRANSACTION, - payload as BroadcastChannelRequestPayload, - ]); + BroadcastChannelProcedureName.START_AUTOMATIC_TRANSACTION_GENERATOR, + payload + ); } - private handleStartChargingStation(uuid: string, payload: RequestPayload): void { - this.uiServiceWorkerBroadcastChannel.sendRequest([ + private handleStopAutomaticTransactionGenerator(uuid: string, payload: RequestPayload): void { + this.sendBroadcastChannelRequest( uuid, - BroadcastChannelProcedureName.START_CHARGING_STATION, - payload as BroadcastChannelRequestPayload, - ]); + BroadcastChannelProcedureName.STOP_AUTOMATIC_TRANSACTION_GENERATOR, + payload + ); } - private handleStopChargingStation(uuid: string, payload: RequestPayload): void { - this.uiServiceWorkerBroadcastChannel.sendRequest([ + private handleStatusNotification(uuid: string, payload: RequestPayload): void { + this.sendBroadcastChannelRequest( uuid, - BroadcastChannelProcedureName.STOP_CHARGING_STATION, - payload as BroadcastChannelRequestPayload, - ]); + BroadcastChannelProcedureName.STATUS_NOTIFICATION, + payload + ); } }