X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcharging-station%2Fui-server%2Fui-services%2FAbstractUIService.ts;h=9c1525dc0aa6df441c0a726d32c3fa09e4f84593;hb=6c8f5d901f6dbfd66e921decde63bf73548c156e;hp=30ad449a33775b4ed49d970cf2a419c5ee23a458;hpb=02a6943a30a9a6c93e5dcbdb79aa8d9746ae368e;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ui-server/ui-services/AbstractUIService.ts b/src/charging-station/ui-server/ui-services/AbstractUIService.ts index 30ad449a..9c1525dc 100644 --- a/src/charging-station/ui-server/ui-services/AbstractUIService.ts +++ b/src/charging-station/ui-server/ui-services/AbstractUIService.ts @@ -15,7 +15,7 @@ import { import logger from '../../../utils/Logger'; import Utils from '../../../utils/Utils'; import Bootstrap from '../../Bootstrap'; -import WorkerBroadcastChannel from '../../WorkerBroadcastChannel'; +import UIServiceWorkerBroadcastChannel from '../../UIServiceWorkerBroadcastChannel'; import { AbstractUIServer } from '../AbstractUIServer'; const moduleName = 'AbstractUIService'; @@ -24,7 +24,7 @@ export default abstract class AbstractUIService { protected readonly version: ProtocolVersion; protected readonly uiServer: AbstractUIServer; protected readonly requestHandlers: Map; - protected workerBroadcastChannel: WorkerBroadcastChannel; + protected workerBroadcastChannel: UIServiceWorkerBroadcastChannel; constructor(uiServer: AbstractUIServer, version: ProtocolVersion) { this.version = version; @@ -34,16 +34,16 @@ export default abstract class AbstractUIService { [ProcedureName.START_SIMULATOR, this.handleStartSimulator.bind(this)], [ProcedureName.STOP_SIMULATOR, this.handleStopSimulator.bind(this)], ]); - this.workerBroadcastChannel = new WorkerBroadcastChannel(); + this.workerBroadcastChannel = new UIServiceWorkerBroadcastChannel(this); } public async requestHandler(request: RawData): Promise { let messageId: string; let command: ProcedureName; - let requestPayload: RequestPayload; + let requestPayload: RequestPayload | undefined; let responsePayload: ResponsePayload; try { - [messageId, command, requestPayload] = this.dataValidation(request); + [messageId, command, requestPayload] = this.requestValidation(request); if (this.requestHandlers.has(command) === false) { throw new BaseError( @@ -55,46 +55,61 @@ export default abstract class AbstractUIService { ); } - // Call the message handler to build the response payload + // Call the request handler to build the response payload responsePayload = await this.requestHandlers.get(command)(messageId, requestPayload); } catch (error) { // Log logger.error( - `${this.uiServer.logPrefix(moduleName, 'messageHandler')} Handle message error:`, + `${this.uiServer.logPrefix(moduleName, 'messageHandler')} Handle request error:`, error ); - // Send the message response failure - this.uiServer.sendResponse( - this.buildProtocolResponse(messageId ?? 'error', { - status: ResponseStatus.FAILURE, - command, - requestPayload, - errorMessage: (error as Error).message, - errorStack: (error as Error).stack, - }) - ); - throw error; + responsePayload = { + status: ResponseStatus.FAILURE, + command, + requestPayload, + responsePayload, + errorMessage: (error as Error).message, + errorStack: (error as Error).stack, + }; + } + + if (responsePayload !== undefined) { + // Send the response + this.uiServer.sendResponse(this.buildProtocolResponse(messageId ?? 'error', responsePayload)); } + } + + public sendRequest( + messageId: string, + procedureName: ProcedureName, + requestPayload: RequestPayload + ): void { + this.uiServer.sendRequest(this.buildProtocolRequest(messageId, procedureName, requestPayload)); + } - // Send the message response success + public sendResponse(messageId: string, responsePayload: ResponsePayload): void { this.uiServer.sendResponse(this.buildProtocolResponse(messageId, responsePayload)); } - protected buildProtocolRequest( + public logPrefix(modName: string, methodName: string): string { + return `${this.uiServer.logPrefix(modName, methodName)}`; + } + + private buildProtocolRequest( messageId: string, procedureName: ProcedureName, - payload: RequestPayload + requestPayload: RequestPayload ): string { - return JSON.stringify([messageId, procedureName, payload] as ProtocolRequest); + return JSON.stringify([messageId, procedureName, requestPayload] as ProtocolRequest); } - protected buildProtocolResponse(messageId: string, payload: ResponsePayload): string { - return JSON.stringify([messageId, payload] as ProtocolResponse); + private buildProtocolResponse(messageId: string, responsePayload: ResponsePayload): string { + return JSON.stringify([messageId, responsePayload] as ProtocolResponse); } // Validate the raw data received from the WebSocket // TODO: should probably be moved to the ws verify clients callback - private dataValidation(rawData: RawData): ProtocolRequest { + private requestValidation(rawData: RawData): ProtocolRequest { // logger.debug( // `${this.uiServer.logPrefix( // moduleName,