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=5061ed78d854b066e05e813a5d6972ad2f8c0853;hpb=db2336d96424096d5570606680824af180e33c3a;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 5061ed78..74403cea 100644 --- a/src/charging-station/ui-server/ui-services/UIService001.ts +++ b/src/charging-station/ui-server/ui-services/UIService001.ts @@ -4,24 +4,13 @@ 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_TRANSACTION, - this.handleStartTransaction.bind(this) as ProtocolRequestHandler - ); - this.requestHandlers.set( - ProcedureName.STOP_TRANSACTION, - this.handleStopTransaction.bind(this) as ProtocolRequestHandler - ); this.requestHandlers.set( ProcedureName.START_CHARGING_STATION, this.handleStartChargingStation.bind(this) as ProtocolRequestHandler @@ -38,53 +27,85 @@ export default class UIService001 extends AbstractUIService { ProcedureName.CLOSE_CONNECTION, this.handleCloseConnection.bind(this) as ProtocolRequestHandler ); + this.requestHandlers.set( + ProcedureName.START_TRANSACTION, + this.handleStartTransaction.bind(this) as ProtocolRequestHandler + ); + this.requestHandlers.set( + ProcedureName.STOP_TRANSACTION, + this.handleStopTransaction.bind(this) as ProtocolRequestHandler + ); + this.requestHandlers.set( + ProcedureName.START_AUTOMATIC_TRANSACTION_GENERATOR, + this.handleStartAutomaticTransactionGenerator.bind(this) as ProtocolRequestHandler + ); + this.requestHandlers.set( + ProcedureName.STOP_AUTOMATIC_TRANSACTION_GENERATOR, + this.handleStopAutomaticTransactionGenerator.bind(this) as ProtocolRequestHandler + ); + this.requestHandlers.set( + ProcedureName.STATUS_NOTIFICATION, + this.handleStatusNotification.bind(this) as ProtocolRequestHandler + ); } - private handleStartTransaction(uuid: string, payload: RequestPayload): void { - this.uiServiceWorkerBroadcastChannel.sendRequest([ + private handleStartChargingStation(uuid: string, payload: RequestPayload): void { + this.sendBroadcastChannelRequest( uuid, - BroadcastChannelProcedureName.START_TRANSACTION, - payload as BroadcastChannelRequestPayload, - ]); + BroadcastChannelProcedureName.START_CHARGING_STATION, + payload + ); } - private handleStopTransaction(uuid: string, payload: RequestPayload): void { - this.uiServiceWorkerBroadcastChannel.sendRequest([ + private handleStopChargingStation(uuid: string, payload: RequestPayload): void { + this.sendBroadcastChannelRequest( uuid, - BroadcastChannelProcedureName.STOP_TRANSACTION, - payload as BroadcastChannelRequestPayload, - ]); + BroadcastChannelProcedureName.STOP_CHARGING_STATION, + payload + ); } - private handleStartChargingStation(uuid: string, payload: RequestPayload): void { - this.uiServiceWorkerBroadcastChannel.sendRequest([ + 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.sendBroadcastChannelRequest( uuid, - BroadcastChannelProcedureName.START_CHARGING_STATION, - payload as BroadcastChannelRequestPayload, - ]); + BroadcastChannelProcedureName.START_TRANSACTION, + payload + ); } - private handleStopChargingStation(uuid: string, payload: RequestPayload): void { - this.uiServiceWorkerBroadcastChannel.sendRequest([ + private handleStopTransaction(uuid: string, payload: RequestPayload): void { + this.sendBroadcastChannelRequest(uuid, BroadcastChannelProcedureName.STOP_TRANSACTION, payload); + } + + private handleStartAutomaticTransactionGenerator(uuid: string, payload: RequestPayload): void { + this.sendBroadcastChannelRequest( uuid, - BroadcastChannelProcedureName.STOP_CHARGING_STATION, - payload as BroadcastChannelRequestPayload, - ]); + BroadcastChannelProcedureName.START_AUTOMATIC_TRANSACTION_GENERATOR, + payload + ); } - private handleOpenConnection(uuid: string, payload: RequestPayload): void { - this.uiServiceWorkerBroadcastChannel.sendRequest([ + private handleStopAutomaticTransactionGenerator(uuid: string, payload: RequestPayload): void { + this.sendBroadcastChannelRequest( uuid, - BroadcastChannelProcedureName.OPEN_CONNECTION, - payload as BroadcastChannelRequestPayload, - ]); + BroadcastChannelProcedureName.STOP_AUTOMATIC_TRANSACTION_GENERATOR, + payload + ); } - private handleCloseConnection(uuid: string, payload: RequestPayload): void { - this.uiServiceWorkerBroadcastChannel.sendRequest([ + private handleStatusNotification(uuid: string, payload: RequestPayload): void { + this.sendBroadcastChannelRequest( uuid, - BroadcastChannelProcedureName.CLOSE_CONNECTION, - payload as BroadcastChannelRequestPayload, - ]); + BroadcastChannelProcedureName.STATUS_NOTIFICATION, + payload + ); } }