183 lines
6.5 KiB
TypeScript
183 lines
6.5 KiB
TypeScript
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
import { CompletionMessage, HubMessage, IHubProtocol, InvocationMessage, MessageHeaders, MessageType, StreamInvocationMessage, StreamItemMessage, TransferFormat } from "@aspnet/signalr";
|
|
import { Buffer } from "buffer";
|
|
import * as msgpack5 from "msgpack5";
|
|
import { BinaryMessageFormat } from "./BinaryMessageFormat";
|
|
|
|
export class MessagePackHubProtocol implements IHubProtocol {
|
|
|
|
public readonly name: string = "messagepack";
|
|
|
|
public readonly transferFormat: TransferFormat = TransferFormat.Binary;
|
|
|
|
public parseMessages(input: ArrayBuffer): HubMessage[] {
|
|
return BinaryMessageFormat.parse(input).map((m) => this.parseMessage(m));
|
|
}
|
|
|
|
private parseMessage(input: Uint8Array): HubMessage {
|
|
if (input.length === 0) {
|
|
throw new Error("Invalid payload.");
|
|
}
|
|
|
|
const msgpack = msgpack5();
|
|
const properties = msgpack.decode(new Buffer(input));
|
|
if (properties.length === 0 || !(properties instanceof Array)) {
|
|
throw new Error("Invalid payload.");
|
|
}
|
|
|
|
const messageType = properties[0] as MessageType;
|
|
|
|
switch (messageType) {
|
|
case MessageType.Invocation:
|
|
return this.createInvocationMessage(this.readHeaders(properties), properties);
|
|
case MessageType.StreamItem:
|
|
return this.createStreamItemMessage(this.readHeaders(properties), properties);
|
|
case MessageType.Completion:
|
|
return this.createCompletionMessage(this.readHeaders(properties), properties);
|
|
case MessageType.Ping:
|
|
return this.createPingMessage(properties);
|
|
case MessageType.Close:
|
|
return this.createCloseMessage(properties);
|
|
default:
|
|
throw new Error("Invalid message type.");
|
|
}
|
|
}
|
|
|
|
private createCloseMessage(properties: any[]): HubMessage {
|
|
if (properties.length !== 2) {
|
|
throw new Error("Invalid payload for Close message.");
|
|
}
|
|
|
|
return {
|
|
// Close messages have no headers.
|
|
error: properties[1],
|
|
type: MessageType.Close,
|
|
} as HubMessage;
|
|
}
|
|
|
|
private createPingMessage(properties: any[]): HubMessage {
|
|
if (properties.length !== 1) {
|
|
throw new Error("Invalid payload for Ping message.");
|
|
}
|
|
|
|
return {
|
|
// Ping messages have no headers.
|
|
type: MessageType.Ping,
|
|
} as HubMessage;
|
|
}
|
|
|
|
private createInvocationMessage(headers: MessageHeaders, properties: any[]): InvocationMessage {
|
|
if (properties.length !== 5) {
|
|
throw new Error("Invalid payload for Invocation message.");
|
|
}
|
|
|
|
const invocationId = properties[2] as string;
|
|
if (invocationId) {
|
|
return {
|
|
arguments: properties[4],
|
|
headers,
|
|
invocationId,
|
|
target: properties[3] as string,
|
|
type: MessageType.Invocation,
|
|
};
|
|
} else {
|
|
return {
|
|
arguments: properties[4],
|
|
headers,
|
|
target: properties[3],
|
|
type: MessageType.Invocation,
|
|
};
|
|
}
|
|
|
|
}
|
|
|
|
private createStreamItemMessage(headers: MessageHeaders, properties: any[]): StreamItemMessage {
|
|
if (properties.length !== 4) {
|
|
throw new Error("Invalid payload for stream Result message.");
|
|
}
|
|
|
|
return {
|
|
headers,
|
|
invocationId: properties[2],
|
|
item: properties[3],
|
|
type: MessageType.StreamItem,
|
|
} as StreamItemMessage;
|
|
}
|
|
|
|
private createCompletionMessage(headers: MessageHeaders, properties: any[]): CompletionMessage {
|
|
if (properties.length < 4) {
|
|
throw new Error("Invalid payload for Completion message.");
|
|
}
|
|
|
|
const errorResult = 1;
|
|
const voidResult = 2;
|
|
const nonVoidResult = 3;
|
|
|
|
const resultKind = properties[3];
|
|
|
|
if ((resultKind === voidResult && properties.length !== 4) ||
|
|
(resultKind !== voidResult && properties.length !== 5)) {
|
|
throw new Error("Invalid payload for Completion message.");
|
|
}
|
|
|
|
const completionMessage = {
|
|
error: null as string,
|
|
headers,
|
|
invocationId: properties[2],
|
|
result: null as any,
|
|
type: MessageType.Completion,
|
|
};
|
|
|
|
switch (resultKind) {
|
|
case errorResult:
|
|
completionMessage.error = properties[4];
|
|
break;
|
|
case nonVoidResult:
|
|
completionMessage.result = properties[4];
|
|
break;
|
|
}
|
|
|
|
return completionMessage as CompletionMessage;
|
|
}
|
|
|
|
public writeMessage(message: HubMessage): ArrayBuffer {
|
|
switch (message.type) {
|
|
case MessageType.Invocation:
|
|
return this.writeInvocation(message as InvocationMessage);
|
|
case MessageType.StreamInvocation:
|
|
return this.writeStreamInvocation(message as StreamInvocationMessage);
|
|
case MessageType.StreamItem:
|
|
case MessageType.Completion:
|
|
throw new Error(`Writing messages of type '${message.type}' is not supported.`);
|
|
default:
|
|
throw new Error("Invalid message type.");
|
|
}
|
|
}
|
|
|
|
private writeInvocation(invocationMessage: InvocationMessage): ArrayBuffer {
|
|
const msgpack = msgpack5();
|
|
const payload = msgpack.encode([MessageType.Invocation, invocationMessage.headers || {}, invocationMessage.invocationId || null,
|
|
invocationMessage.target, invocationMessage.arguments]);
|
|
|
|
return BinaryMessageFormat.write(payload.slice());
|
|
}
|
|
|
|
private writeStreamInvocation(streamInvocationMessage: StreamInvocationMessage): ArrayBuffer {
|
|
const msgpack = msgpack5();
|
|
const payload = msgpack.encode([MessageType.StreamInvocation, streamInvocationMessage.headers || {}, streamInvocationMessage.invocationId,
|
|
streamInvocationMessage.target, streamInvocationMessage.arguments]);
|
|
|
|
return BinaryMessageFormat.write(payload.slice());
|
|
}
|
|
|
|
private readHeaders(properties: any): MessageHeaders {
|
|
const headers: MessageHeaders = properties[1] as MessageHeaders;
|
|
if (typeof headers !== "object") {
|
|
throw new Error("Invalid headers.");
|
|
}
|
|
return headers;
|
|
}
|
|
}
|