123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the MIT license.
- import { TextMessageFormat } from "./TextMessageFormat";
- import { isArrayBuffer } from "./Utils";
- /** @private */
- export class HandshakeProtocol {
- // Handshake request is always JSON
- writeHandshakeRequest(handshakeRequest) {
- return TextMessageFormat.write(JSON.stringify(handshakeRequest));
- }
- parseHandshakeResponse(data) {
- let messageData;
- let remainingData;
- if (isArrayBuffer(data)) {
- // Format is binary but still need to read JSON text from handshake response
- const binaryData = new Uint8Array(data);
- const separatorIndex = binaryData.indexOf(TextMessageFormat.RecordSeparatorCode);
- if (separatorIndex === -1) {
- throw new Error("Message is incomplete.");
- }
- // content before separator is handshake response
- // optional content after is additional messages
- const responseLength = separatorIndex + 1;
- messageData = String.fromCharCode.apply(null, Array.prototype.slice.call(binaryData.slice(0, responseLength)));
- remainingData = (binaryData.byteLength > responseLength) ? binaryData.slice(responseLength).buffer : null;
- }
- else {
- const textData = data;
- const separatorIndex = textData.indexOf(TextMessageFormat.RecordSeparator);
- if (separatorIndex === -1) {
- throw new Error("Message is incomplete.");
- }
- // content before separator is handshake response
- // optional content after is additional messages
- const responseLength = separatorIndex + 1;
- messageData = textData.substring(0, responseLength);
- remainingData = (textData.length > responseLength) ? textData.substring(responseLength) : null;
- }
- // At this point we should have just the single handshake message
- const messages = TextMessageFormat.parse(messageData);
- const response = JSON.parse(messages[0]);
- if (response.type) {
- throw new Error("Expected a handshake response from the server.");
- }
- const responseMessage = response;
- // multiple messages could have arrived with handshake
- // return additional data to be parsed as usual, or null if all parsed
- return [remainingData, responseMessage];
- }
- }
- //# sourceMappingURL=HandshakeProtocol.js.map
|