X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2FWorkerBroadcastChannel.ts;h=96fe7c17df01c76471c384f03af3605175372013;hb=8a36b1eb6df21e7ff434b36333d26739edf0e146;hp=d1d430c3a0c39230aef0c00dd5de5660b25e42a0;hpb=4e3ff94d15f16cbeb7f65d14525bca7af3c551fd;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/WorkerBroadcastChannel.ts b/src/charging-station/WorkerBroadcastChannel.ts index d1d430c3..96fe7c17 100644 --- a/src/charging-station/WorkerBroadcastChannel.ts +++ b/src/charging-station/WorkerBroadcastChannel.ts @@ -1,13 +1,58 @@ import { BroadcastChannel } from 'worker_threads'; -import { BroadcastChannelRequest } from '../types/WorkerBroadcastChannel'; +import * as uuid from 'uuid'; -export default class WorkerBroadcastChannel extends BroadcastChannel { - constructor() { +import type { JsonType } from '../types/JsonType'; +import type { + BroadcastChannelRequest, + BroadcastChannelResponse, + MessageEvent, +} from '../types/WorkerBroadcastChannel'; +import logger from '../utils/Logger'; +import Utils from '../utils/Utils'; + +const moduleName = 'WorkerBroadcastChannel'; + +export default abstract class WorkerBroadcastChannel extends BroadcastChannel { + protected constructor() { super('worker'); } public sendRequest(request: BroadcastChannelRequest): void { this.postMessage(request); } + + protected sendResponse(response: BroadcastChannelResponse): void { + this.postMessage(response); + } + + protected isRequest(message: JsonType[]): boolean { + return Array.isArray(message) && message.length === 3; + } + + protected isResponse(message: JsonType[]): boolean { + return Array.isArray(message) && message.length === 2; + } + + protected validateMessageEvent(messageEvent: MessageEvent): MessageEvent | false { + if (Array.isArray(messageEvent.data) === false) { + logger.error( + this.logPrefix(moduleName, 'validateMessageEvent') + + ' Worker broadcast channel protocol message event data is not an array' + ); + return false; + } + if (uuid.validate(messageEvent.data[0]) === false) { + logger.error( + this.logPrefix(moduleName, 'validateMessageEvent') + + ' Worker broadcast channel protocol message event data UUID field is invalid' + ); + return false; + } + return messageEvent; + } + + private logPrefix(modName: string, methodName: string): string { + return Utils.logPrefix(` Worker Broadcast Channel | ${modName}.${methodName}:`); + } }