All files / src/Ice Protocol.js

94.33% Statements 200/212
66.66% Branches 12/18
100% Functions 9/9
94.33% Lines 200/212

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 21341x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 8045x 2x 2x 41x 41x 41x 26x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 5x 5x 41x 41x 41x 41x 41x 41x 41x 41x 41x 92x 92x 41x 41x 41x 41x 41x 41x 41x 41x 41x 1x 1x 41x 41x 41x 41x 41x 41x 41x 41x 41x 4692x 4692x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 97x 97x 97x     97x 97x 97x 97x     97x 97x     97x 41x 97x 97x 97x     97x 97x 97x 97x     97x 97x     97x 41x 4693x 4693x 4693x  
// Copyright (c) ZeroC, Inc.
 
import { StringUtil } from "./StringUtil.js";
import { MarshalException, ParseException } from "./LocalExceptions.js";
import { Ice as Ice_Version } from "./Version.js";
const { EncodingVersion, ProtocolVersion } = Ice_Version;
 
export const Protocol = {};
 
export const Encoding_1_0 = new EncodingVersion(1, 0);
export const Encoding_1_1 = new EncodingVersion(1, 1);
 
export const Protocol_1_0 = new ProtocolVersion(1, 0);
 
//
// Size of the Ice protocol header
//
// Magic number (4 bytes)
// Protocol version major (Byte)
// Protocol version minor (Byte)
// Encoding version major (Byte)
// Encoding version minor (Byte)
// Message type (Byte)
// Compression status (Byte)
// Message size (Int)
//
Protocol.headerSize = 14;
 
//
// The magic number at the front of each message ['I', 'c', 'e', 'P']
//
Protocol.magic = new Uint8Array([0x49, 0x63, 0x65, 0x50]);
 
//
// The current Ice protocol and Slice encoding version
//
Protocol.protocolMajor = 1;
Protocol.protocolMinor = 0;
Protocol.protocolEncodingMajor = 1;
Protocol.protocolEncodingMinor = 0;
 
//
// The Ice protocol message types
//
Protocol.requestMsg = 0;
Protocol.requestBatchMsg = 1;
Protocol.replyMsg = 2;
Protocol.validateConnectionMsg = 3;
Protocol.closeConnectionMsg = 4;
 
Protocol.requestHdr = new Uint8Array([
    Protocol.magic[0],
    Protocol.magic[1],
    Protocol.magic[2],
    Protocol.magic[3],
    Protocol.protocolMajor,
    Protocol.protocolMinor,
    Protocol.protocolEncodingMajor,
    Protocol.protocolEncodingMinor,
    Protocol.requestMsg,
    0, // Compression status.
    0,
    0,
    0,
    0, // Message size (placeholder).
    0,
    0,
    0,
    0, // Request ID (placeholder).
]);
 
Protocol.requestBatchHdr = new Uint8Array([
    Protocol.magic[0],
    Protocol.magic[1],
    Protocol.magic[2],
    Protocol.magic[3],
    Protocol.protocolMajor,
    Protocol.protocolMinor,
    Protocol.protocolEncodingMajor,
    Protocol.protocolEncodingMinor,
    Protocol.requestBatchMsg,
    0, // Compression status.
    0,
    0,
    0,
    0, // Message size (placeholder).
    0,
    0,
    0,
    0, // Number of requests in batch (placeholder).
]);
 
Protocol.replyHdr = new Uint8Array([
    Protocol.magic[0],
    Protocol.magic[1],
    Protocol.magic[2],
    Protocol.magic[3],
    Protocol.protocolMajor,
    Protocol.protocolMinor,
    Protocol.protocolEncodingMajor,
    Protocol.protocolEncodingMinor,
    Protocol.replyMsg,
    0, // Compression status.
    0,
    0,
    0,
    0, // Message size (placeholder).
]);
 
Protocol.currentProtocol = new ProtocolVersion(Protocol.protocolMajor, Protocol.protocolMinor);
Protocol.currentProtocolEncoding = new EncodingVersion(Protocol.protocolEncodingMajor, Protocol.protocolEncodingMinor);
 
Protocol.checkSupportedEncoding = function (v) {
    if (v.major !== Encoding_1_1.major || v.minor > Encoding_1_1.minor) {
        throw new MarshalException(`This Ice runtime does not support encoding version ${v.major}.${v.minor}`);
    }
};
 
Protocol.isSupported = function (version, supported) {
    return version.major === supported.major && version.minor <= supported.minor;
};
 
/**
 * Converts a string to a protocol version.
 *
 * @param version The string to convert.
 *
 * @return The converted protocol version.
 */
export function stringToProtocolVersion(version) {
    return new ProtocolVersion(stringToMajor(version), stringToMinor(version));
}
 
/**
 * Converts a string to an encoding version.
 *
 * @param version The string to convert.
 *
 * @return The converted object identity.
 */
export function stringToEncodingVersion(version) {
    return new EncodingVersion(stringToMajor(version), stringToMinor(version));
}
 
/**
 * Converts a protocol version to a string.
 *
 * @param v The protocol version to convert.
 *
 * @return The converted string.
 */
export function protocolVersionToString(v) {
    return majorMinorToString(v.major, v.minor);
}
 
/**
 * Converts an encoding version to a string.
 *
 * @param v The encoding version to convert.
 *
 * @return The converted string.
 */
export function encodingVersionToString(v) {
    return majorMinorToString(v.major, v.minor);
}
 
Protocol.OPTIONAL_END_MARKER = 0xff;
Protocol.FLAG_HAS_TYPE_ID_STRING = 1 << 0;
Protocol.FLAG_HAS_TYPE_ID_INDEX = 1 << 1;
Protocol.FLAG_HAS_TYPE_ID_COMPACT = (1 << 1) | (1 << 0);
Protocol.FLAG_HAS_OPTIONAL_MEMBERS = 1 << 2;
Protocol.FLAG_HAS_INDIRECTION_TABLE = 1 << 3;
Protocol.FLAG_HAS_SLICE_SIZE = 1 << 4;
Protocol.FLAG_IS_LAST_SLICE = 1 << 5;
 
function stringToMajor(str) {
    const pos = str.indexOf(".");
    if (pos === -1) {
        throw new ParseException(`malformed version value in '${str}'`);
    }
 
    try {
        const majVersion = StringUtil.toInt32(str.substring(0, pos));
        if (majVersion < 1 || majVersion > 255) {
            throw new ParseException(`range error in version ${str}'`);
        }
        return majVersion;
    } catch (ex) {
        throw new ParseException(`invalid version value in '${str}'`, ex);
    }
}
 
function stringToMinor(str) {
    const pos = str.indexOf(".");
    if (pos === -1) {
        throw new ParseException(`malformed version value in '${str}'`);
    }
 
    try {
        const minVersion = StringUtil.toInt32(str.substring(pos + 1));
        if (minVersion < 0 || minVersion > 255) {
            throw new ParseException(`range error in version '${str}'`);
        }
        return minVersion;
    } catch (ex) {
        throw new ParseException(`invalid version value in '${str}'`, ex);
    }
}
 
function majorMinorToString(major, minor) {
    return major + "." + minor;
}