UNPKG

protobufjs-no-cli

Version:

Protocol Buffers for JavaScript. Finally.

1,412 lines (1,254 loc) 176 kB
/* Copyright 2013 Daniel Wirtz <dcode@dcode.io> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ /** * @license protobuf.js (c) 2013 Daniel Wirtz <dcode@dcode.io> * Released under the Apache License, Version 2.0 * see: https://github.com/dcodeIO/protobuf.js for details */ (function(global, factory) { /* AMD */ if (typeof define === 'function' && define["amd"]) define(["bytebuffer"], factory); /* CommonJS */ else if (typeof require === "function" && typeof module === "object" && module && module["exports"]) module["exports"] = factory(require("bytebuffer"), true); /* Global */ else (global["dcodeIO"] = global["dcodeIO"] || {})["ProtoBuf"] = factory(global["dcodeIO"]["ByteBuffer"]); })(this, function(ByteBuffer, isCommonJS) { "use strict"; /** * The ProtoBuf namespace. * @exports ProtoBuf * @namespace * @expose */ var ProtoBuf = {}; /** * @type {!function(new: ByteBuffer, ...[*])} * @expose */ ProtoBuf.ByteBuffer = ByteBuffer; /** * @type {?function(new: Long, ...[*])} * @expose */ ProtoBuf.Long = ByteBuffer.Long || null; /** * ProtoBuf.js version. * @type {string} * @const * @expose */ ProtoBuf.VERSION = "5.0.1"; /** * Wire types. * @type {Object.<string,number>} * @const * @expose */ ProtoBuf.WIRE_TYPES = {}; /** * Varint wire type. * @type {number} * @expose */ ProtoBuf.WIRE_TYPES.VARINT = 0; /** * Fixed 64 bits wire type. * @type {number} * @const * @expose */ ProtoBuf.WIRE_TYPES.BITS64 = 1; /** * Length delimited wire type. * @type {number} * @const * @expose */ ProtoBuf.WIRE_TYPES.LDELIM = 2; /** * Start group wire type. * @type {number} * @const * @expose */ ProtoBuf.WIRE_TYPES.STARTGROUP = 3; /** * End group wire type. * @type {number} * @const * @expose */ ProtoBuf.WIRE_TYPES.ENDGROUP = 4; /** * Fixed 32 bits wire type. * @type {number} * @const * @expose */ ProtoBuf.WIRE_TYPES.BITS32 = 5; /** * Packable wire types. * @type {!Array.<number>} * @const * @expose */ ProtoBuf.PACKABLE_WIRE_TYPES = [ ProtoBuf.WIRE_TYPES.VARINT, ProtoBuf.WIRE_TYPES.BITS64, ProtoBuf.WIRE_TYPES.BITS32 ]; /** * Types. * @dict * @type {!Object.<string,{name: string, wireType: number, defaultValue: *}>} * @const * @expose */ ProtoBuf.TYPES = { // According to the protobuf spec. "int32": { name: "int32", wireType: ProtoBuf.WIRE_TYPES.VARINT, defaultValue: 0 }, "uint32": { name: "uint32", wireType: ProtoBuf.WIRE_TYPES.VARINT, defaultValue: 0 }, "sint32": { name: "sint32", wireType: ProtoBuf.WIRE_TYPES.VARINT, defaultValue: 0 }, "int64": { name: "int64", wireType: ProtoBuf.WIRE_TYPES.VARINT, defaultValue: ProtoBuf.Long ? ProtoBuf.Long.ZERO : undefined }, "uint64": { name: "uint64", wireType: ProtoBuf.WIRE_TYPES.VARINT, defaultValue: ProtoBuf.Long ? ProtoBuf.Long.UZERO : undefined }, "sint64": { name: "sint64", wireType: ProtoBuf.WIRE_TYPES.VARINT, defaultValue: ProtoBuf.Long ? ProtoBuf.Long.ZERO : undefined }, "bool": { name: "bool", wireType: ProtoBuf.WIRE_TYPES.VARINT, defaultValue: false }, "double": { name: "double", wireType: ProtoBuf.WIRE_TYPES.BITS64, defaultValue: 0 }, "string": { name: "string", wireType: ProtoBuf.WIRE_TYPES.LDELIM, defaultValue: "" }, "bytes": { name: "bytes", wireType: ProtoBuf.WIRE_TYPES.LDELIM, defaultValue: null // overridden in the code, must be a unique instance }, "fixed32": { name: "fixed32", wireType: ProtoBuf.WIRE_TYPES.BITS32, defaultValue: 0 }, "sfixed32": { name: "sfixed32", wireType: ProtoBuf.WIRE_TYPES.BITS32, defaultValue: 0 }, "fixed64": { name: "fixed64", wireType: ProtoBuf.WIRE_TYPES.BITS64, defaultValue: ProtoBuf.Long ? ProtoBuf.Long.UZERO : undefined }, "sfixed64": { name: "sfixed64", wireType: ProtoBuf.WIRE_TYPES.BITS64, defaultValue: ProtoBuf.Long ? ProtoBuf.Long.ZERO : undefined }, "float": { name: "float", wireType: ProtoBuf.WIRE_TYPES.BITS32, defaultValue: 0 }, "enum": { name: "enum", wireType: ProtoBuf.WIRE_TYPES.VARINT, defaultValue: 0 }, "message": { name: "message", wireType: ProtoBuf.WIRE_TYPES.LDELIM, defaultValue: null }, "group": { name: "group", wireType: ProtoBuf.WIRE_TYPES.STARTGROUP, defaultValue: null } }; /** * Valid map key types. * @type {!Array.<!Object.<string,{name: string, wireType: number, defaultValue: *}>>} * @const * @expose */ ProtoBuf.MAP_KEY_TYPES = [ ProtoBuf.TYPES["int32"], ProtoBuf.TYPES["sint32"], ProtoBuf.TYPES["sfixed32"], ProtoBuf.TYPES["uint32"], ProtoBuf.TYPES["fixed32"], ProtoBuf.TYPES["int64"], ProtoBuf.TYPES["sint64"], ProtoBuf.TYPES["sfixed64"], ProtoBuf.TYPES["uint64"], ProtoBuf.TYPES["fixed64"], ProtoBuf.TYPES["bool"], ProtoBuf.TYPES["string"], ProtoBuf.TYPES["bytes"] ]; /** * Minimum field id. * @type {number} * @const * @expose */ ProtoBuf.ID_MIN = 1; /** * Maximum field id. * @type {number} * @const * @expose */ ProtoBuf.ID_MAX = 0x1FFFFFFF; /** * If set to `true`, field names will be converted from underscore notation to camel case. Defaults to `false`. * Must be set prior to parsing. * @type {boolean} * @expose */ ProtoBuf.convertFieldsToCamelCase = false; /** * By default, messages are populated with (setX, set_x) accessors for each field. This can be disabled by * setting this to `false` prior to building messages. * @type {boolean} * @expose */ ProtoBuf.populateAccessors = true; /** * By default, messages are populated with default values if a field is not present on the wire. To disable * this behavior, set this setting to `false`. * @type {boolean} * @expose */ ProtoBuf.populateDefaults = true; /** * @alias ProtoBuf.Util * @expose */ ProtoBuf.Util = (function() { "use strict"; /** * ProtoBuf utilities. * @exports ProtoBuf.Util * @namespace */ var Util = {}; /** * Flag if running in node or not. * @type {boolean} * @const * @expose */ Util.IS_NODE = !!( typeof process === 'object' && process+'' === '[object process]' && !process['browser'] ); /** * Constructs a XMLHttpRequest object. * @return {XMLHttpRequest} * @throws {Error} If XMLHttpRequest is not supported * @expose */ Util.XHR = function() { // No dependencies please, ref: http://www.quirksmode.org/js/xmlhttp.html var XMLHttpFactories = [ function () {return new XMLHttpRequest()}, function () {return new ActiveXObject("Msxml2.XMLHTTP")}, function () {return new ActiveXObject("Msxml3.XMLHTTP")}, function () {return new ActiveXObject("Microsoft.XMLHTTP")} ]; /** @type {?XMLHttpRequest} */ var xhr = null; for (var i=0;i<XMLHttpFactories.length;i++) { try { xhr = XMLHttpFactories[i](); } catch (e) { continue; } break; } if (!xhr) throw Error("XMLHttpRequest is not supported"); return xhr; }; /** * Fetches a resource. * @param {string} path Resource path * @param {function(?string)=} callback Callback receiving the resource's contents. If omitted the resource will * be fetched synchronously. If the request failed, contents will be null. * @return {?string|undefined} Resource contents if callback is omitted (null if the request failed), else undefined. * @expose */ Util.fetch = function(path, callback) { if (callback && typeof callback != 'function') callback = null; if (Util.IS_NODE) { var fs = require("fs"); if (callback) { fs.readFile(path, function(err, data) { if (err) callback(null); else callback(""+data); }); } else try { return fs.readFileSync(path); } catch (e) { return null; } } else { var xhr = Util.XHR(); xhr.open('GET', path, callback ? true : false); // xhr.setRequestHeader('User-Agent', 'XMLHTTP/1.0'); xhr.setRequestHeader('Accept', 'text/plain'); if (typeof xhr.overrideMimeType === 'function') xhr.overrideMimeType('text/plain'); if (callback) { xhr.onreadystatechange = function() { if (xhr.readyState != 4) return; if (/* remote */ xhr.status == 200 || /* local */ (xhr.status == 0 && typeof xhr.responseText === 'string')) callback(xhr.responseText); else callback(null); }; if (xhr.readyState == 4) return; xhr.send(null); } else { xhr.send(null); if (/* remote */ xhr.status == 200 || /* local */ (xhr.status == 0 && typeof xhr.responseText === 'string')) return xhr.responseText; return null; } } }; /** * Converts a string to camel case. * @param {string} str * @returns {string} * @expose */ Util.toCamelCase = function(str) { return str.replace(/_([a-zA-Z])/g, function ($0, $1) { return $1.toUpperCase(); }); }; return Util; })(); /** * Language expressions. * @type {!Object.<string,!RegExp>} * @expose */ ProtoBuf.Lang = { // Characters always ending a statement DELIM: /[\s\{\}=;:\[\],'"\(\)<>]/g, // Field rules RULE: /^(?:required|optional|repeated|map)$/, // Field types TYPE: /^(?:double|float|int32|uint32|sint32|int64|uint64|sint64|fixed32|sfixed32|fixed64|sfixed64|bool|string|bytes)$/, // Names NAME: /^[a-zA-Z_][a-zA-Z_0-9]*$/, // Type definitions TYPEDEF: /^[a-zA-Z][a-zA-Z_0-9]*$/, // Type references TYPEREF: /^(?:\.?[a-zA-Z_][a-zA-Z_0-9]*)+$/, // Fully qualified type references FQTYPEREF: /^(?:\.[a-zA-Z][a-zA-Z_0-9]*)+$/, // All numbers NUMBER: /^-?(?:[1-9][0-9]*|0|0[xX][0-9a-fA-F]+|0[0-7]+|([0-9]*(\.[0-9]*)?([Ee][+-]?[0-9]+)?)|inf|nan)$/, // Decimal numbers NUMBER_DEC: /^(?:[1-9][0-9]*|0)$/, // Hexadecimal numbers NUMBER_HEX: /^0[xX][0-9a-fA-F]+$/, // Octal numbers NUMBER_OCT: /^0[0-7]+$/, // Floating point numbers NUMBER_FLT: /^([0-9]*(\.[0-9]*)?([Ee][+-]?[0-9]+)?|inf|nan)$/, // Booleans BOOL: /^(?:true|false)$/i, // Id numbers ID: /^(?:[1-9][0-9]*|0|0[xX][0-9a-fA-F]+|0[0-7]+)$/, // Negative id numbers (enum values) NEGID: /^\-?(?:[1-9][0-9]*|0|0[xX][0-9a-fA-F]+|0[0-7]+)$/, // Whitespaces WHITESPACE: /\s/, // All strings STRING: /(?:"([^"\\]*(?:\\.[^"\\]*)*)")|(?:'([^'\\]*(?:\\.[^'\\]*)*)')/g, // Double quoted strings STRING_DQ: /(?:"([^"\\]*(?:\\.[^"\\]*)*)")/g, // Single quoted strings STRING_SQ: /(?:'([^'\\]*(?:\\.[^'\\]*)*)')/g }; /** * @alias ProtoBuf.Reflect * @expose */ ProtoBuf.Reflect = (function(ProtoBuf) { "use strict"; /** * Reflection types. * @exports ProtoBuf.Reflect * @namespace */ var Reflect = {}; /** * Constructs a Reflect base class. * @exports ProtoBuf.Reflect.T * @constructor * @abstract * @param {!ProtoBuf.Builder} builder Builder reference * @param {?ProtoBuf.Reflect.T} parent Parent object * @param {string} name Object name */ var T = function(builder, parent, name) { /** * Builder reference. * @type {!ProtoBuf.Builder} * @expose */ this.builder = builder; /** * Parent object. * @type {?ProtoBuf.Reflect.T} * @expose */ this.parent = parent; /** * Object name in namespace. * @type {string} * @expose */ this.name = name; /** * Fully qualified class name * @type {string} * @expose */ this.className; }; /** * @alias ProtoBuf.Reflect.T.prototype * @inner */ var TPrototype = T.prototype; /** * Returns the fully qualified name of this object. * @returns {string} Fully qualified name as of ".PATH.TO.THIS" * @expose */ TPrototype.fqn = function() { var name = this.name, ptr = this; do { ptr = ptr.parent; if (ptr == null) break; name = ptr.name+"."+name; } while (true); return name; }; /** * Returns a string representation of this Reflect object (its fully qualified name). * @param {boolean=} includeClass Set to true to include the class name. Defaults to false. * @return String representation * @expose */ TPrototype.toString = function(includeClass) { return (includeClass ? this.className + " " : "") + this.fqn(); }; /** * Builds this type. * @throws {Error} If this type cannot be built directly * @expose */ TPrototype.build = function() { throw Error(this.toString(true)+" cannot be built directly"); }; /** * @alias ProtoBuf.Reflect.T * @expose */ Reflect.T = T; /** * Constructs a new Namespace. * @exports ProtoBuf.Reflect.Namespace * @param {!ProtoBuf.Builder} builder Builder reference * @param {?ProtoBuf.Reflect.Namespace} parent Namespace parent * @param {string} name Namespace name * @param {Object.<string,*>=} options Namespace options * @param {string?} syntax The syntax level of this definition (e.g., proto3) * @constructor * @extends ProtoBuf.Reflect.T */ var Namespace = function(builder, parent, name, options, syntax) { T.call(this, builder, parent, name); /** * @override */ this.className = "Namespace"; /** * Children inside the namespace. * @type {!Array.<ProtoBuf.Reflect.T>} */ this.children = []; /** * Options. * @type {!Object.<string, *>} */ this.options = options || {}; /** * Syntax level (e.g., proto2 or proto3). * @type {!string} */ this.syntax = syntax || "proto2"; }; /** * @alias ProtoBuf.Reflect.Namespace.prototype * @inner */ var NamespacePrototype = Namespace.prototype = Object.create(T.prototype); /** * Returns an array of the namespace's children. * @param {ProtoBuf.Reflect.T=} type Filter type (returns instances of this type only). Defaults to null (all children). * @return {Array.<ProtoBuf.Reflect.T>} * @expose */ NamespacePrototype.getChildren = function(type) { type = type || null; if (type == null) return this.children.slice(); var children = []; for (var i=0, k=this.children.length; i<k; ++i) if (this.children[i] instanceof type) children.push(this.children[i]); return children; }; /** * Adds a child to the namespace. * @param {ProtoBuf.Reflect.T} child Child * @throws {Error} If the child cannot be added (duplicate) * @expose */ NamespacePrototype.addChild = function(child) { var other; if (other = this.getChild(child.name)) { // Try to revert camelcase transformation on collision if (other instanceof Message.Field && other.name !== other.originalName && this.getChild(other.originalName) === null) other.name = other.originalName; // Revert previous first (effectively keeps both originals) else if (child instanceof Message.Field && child.name !== child.originalName && this.getChild(child.originalName) === null) child.name = child.originalName; else throw Error("Duplicate name in namespace "+this.toString(true)+": "+child.name); } this.children.push(child); }; /** * Gets a child by its name or id. * @param {string|number} nameOrId Child name or id * @return {?ProtoBuf.Reflect.T} The child or null if not found * @expose */ NamespacePrototype.getChild = function(nameOrId) { var key = typeof nameOrId === 'number' ? 'id' : 'name'; for (var i=0, k=this.children.length; i<k; ++i) if (this.children[i][key] === nameOrId) return this.children[i]; return null; }; /** * Resolves a reflect object inside of this namespace. * @param {string|!Array.<string>} qn Qualified name to resolve * @param {boolean=} excludeNonNamespace Excludes non-namespace types, defaults to `false` * @return {?ProtoBuf.Reflect.Namespace} The resolved type or null if not found * @expose */ NamespacePrototype.resolve = function(qn, excludeNonNamespace) { var part = typeof qn === 'string' ? qn.split(".") : qn, ptr = this, i = 0; if (part[i] === "") { // Fully qualified name, e.g. ".My.Message' while (ptr.parent !== null) ptr = ptr.parent; i++; } var child; do { do { if (!(ptr instanceof Reflect.Namespace)) { ptr = null; break; } child = ptr.getChild(part[i]); if (!child || !(child instanceof Reflect.T) || (excludeNonNamespace && !(child instanceof Reflect.Namespace))) { ptr = null; break; } ptr = child; i++; } while (i < part.length); if (ptr != null) break; // Found // Else search the parent if (this.parent !== null) return this.parent.resolve(qn, excludeNonNamespace); } while (ptr != null); return ptr; }; /** * Determines the shortest qualified name of the specified type, if any, relative to this namespace. * @param {!ProtoBuf.Reflect.T} t Reflection type * @returns {string} The shortest qualified name or, if there is none, the fqn * @expose */ NamespacePrototype.qn = function(t) { var part = [], ptr = t; do { part.unshift(ptr.name); ptr = ptr.parent; } while (ptr !== null); for (var len=1; len <= part.length; len++) { var qn = part.slice(part.length-len); if (t === this.resolve(qn, t instanceof Reflect.Namespace)) return qn.join("."); } return t.fqn(); }; /** * Builds the namespace and returns the runtime counterpart. * @return {Object.<string,Function|Object>} Runtime namespace * @expose */ NamespacePrototype.build = function() { /** @dict */ var ns = {}; var children = this.children; for (var i=0, k=children.length, child; i<k; ++i) { child = children[i]; if (child instanceof Namespace) ns[child.name] = child.build(); } if (Object.defineProperty) Object.defineProperty(ns, "$options", { "value": this.buildOpt() }); return ns; }; /** * Builds the namespace's '$options' property. * @return {Object.<string,*>} */ NamespacePrototype.buildOpt = function() { var opt = {}, keys = Object.keys(this.options); for (var i=0, k=keys.length; i<k; ++i) { var key = keys[i], val = this.options[keys[i]]; // TODO: Options are not resolved, yet. // if (val instanceof Namespace) { // opt[key] = val.build(); // } else { opt[key] = val; // } } return opt; }; /** * Gets the value assigned to the option with the specified name. * @param {string=} name Returns the option value if specified, otherwise all options are returned. * @return {*|Object.<string,*>}null} Option value or NULL if there is no such option */ NamespacePrototype.getOption = function(name) { if (typeof name === 'undefined') return this.options; return typeof this.options[name] !== 'undefined' ? this.options[name] : null; }; /** * @alias ProtoBuf.Reflect.Namespace * @expose */ Reflect.Namespace = Namespace; /** * Constructs a new Element implementation that checks and converts values for a * particular field type, as appropriate. * * An Element represents a single value: either the value of a singular field, * or a value contained in one entry of a repeated field or map field. This * class does not implement these higher-level concepts; it only encapsulates * the low-level typechecking and conversion. * * @exports ProtoBuf.Reflect.Element * @param {{name: string, wireType: number}} type Resolved data type * @param {ProtoBuf.Reflect.T|null} resolvedType Resolved type, if relevant * (e.g. submessage field). * @param {boolean} isMapKey Is this element a Map key? The value will be * converted to string form if so. * @param {string} syntax Syntax level of defining message type, e.g., * proto2 or proto3. * @param {string} name Name of the field containing this element (for error * messages) * @constructor */ var Element = function(type, resolvedType, isMapKey, syntax, name) { /** * Element type, as a string (e.g., int32). * @type {{name: string, wireType: number}} */ this.type = type; /** * Element type reference to submessage or enum definition, if needed. * @type {ProtoBuf.Reflect.T|null} */ this.resolvedType = resolvedType; /** * Element is a map key. * @type {boolean} */ this.isMapKey = isMapKey; /** * Syntax level of defining message type, e.g., proto2 or proto3. * @type {string} */ this.syntax = syntax; /** * Name of the field containing this element (for error messages) * @type {string} */ this.name = name; if (isMapKey && ProtoBuf.MAP_KEY_TYPES.indexOf(type) < 0) throw Error("Invalid map key type: " + type.name); }; var ElementPrototype = Element.prototype; /** * Obtains a (new) default value for the specified type. * @param type {string|{name: string, wireType: number}} Field type * @returns {*} Default value * @inner */ function mkDefault(type) { if (typeof type === 'string') type = ProtoBuf.TYPES[type]; if (typeof type.defaultValue === 'undefined') throw Error("default value for type "+type.name+" is not supported"); if (type == ProtoBuf.TYPES["bytes"]) return new ByteBuffer(0); return type.defaultValue; } /** * Returns the default value for this field in proto3. * @function * @param type {string|{name: string, wireType: number}} the field type * @returns {*} Default value */ Element.defaultFieldValue = mkDefault; /** * Makes a Long from a value. * @param {{low: number, high: number, unsigned: boolean}|string|number} value Value * @param {boolean=} unsigned Whether unsigned or not, defaults to reuse it from Long-like objects or to signed for * strings and numbers * @returns {!Long} * @throws {Error} If the value cannot be converted to a Long * @inner */ function mkLong(value, unsigned) { if (value && typeof value.low === 'number' && typeof value.high === 'number' && typeof value.unsigned === 'boolean' && value.low === value.low && value.high === value.high) return new ProtoBuf.Long(value.low, value.high, typeof unsigned === 'undefined' ? value.unsigned : unsigned); if (typeof value === 'string') return ProtoBuf.Long.fromString(value, unsigned || false, 10); if (typeof value === 'number') return ProtoBuf.Long.fromNumber(value, unsigned || false); throw Error("not convertible to Long"); } ElementPrototype.toString = function() { return (this.name || '') + (this.isMapKey ? 'map' : 'value') + ' element'; } /** * Checks if the given value can be set for an element of this type (singular * field or one element of a repeated field or map). * @param {*} value Value to check * @return {*} Verified, maybe adjusted, value * @throws {Error} If the value cannot be verified for this element slot * @expose */ ElementPrototype.verifyValue = function(value) { var self = this; function fail(val, msg) { throw Error("Illegal value for "+self.toString(true)+" of type "+self.type.name+": "+val+" ("+msg+")"); } switch (this.type) { // Signed 32bit case ProtoBuf.TYPES["int32"]: case ProtoBuf.TYPES["sint32"]: case ProtoBuf.TYPES["sfixed32"]: // Account for !NaN: value === value if (typeof value !== 'number' || (value === value && value % 1 !== 0)) fail(typeof value, "not an integer"); return value > 4294967295 ? value | 0 : value; // Unsigned 32bit case ProtoBuf.TYPES["uint32"]: case ProtoBuf.TYPES["fixed32"]: if (typeof value !== 'number' || (value === value && value % 1 !== 0)) fail(typeof value, "not an integer"); return value < 0 ? value >>> 0 : value; // Signed 64bit case ProtoBuf.TYPES["int64"]: case ProtoBuf.TYPES["sint64"]: case ProtoBuf.TYPES["sfixed64"]: { if (ProtoBuf.Long) try { return mkLong(value, false); } catch (e) { fail(typeof value, e.message); } else fail(typeof value, "requires Long.js"); } // Unsigned 64bit case ProtoBuf.TYPES["uint64"]: case ProtoBuf.TYPES["fixed64"]: { if (ProtoBuf.Long) try { return mkLong(value, true); } catch (e) { fail(typeof value, e.message); } else fail(typeof value, "requires Long.js"); } // Bool case ProtoBuf.TYPES["bool"]: if (typeof value !== 'boolean') fail(typeof value, "not a boolean"); return value; // Float case ProtoBuf.TYPES["float"]: case ProtoBuf.TYPES["double"]: if (typeof value !== 'number') fail(typeof value, "not a number"); return value; // Length-delimited string case ProtoBuf.TYPES["string"]: if (typeof value !== 'string' && !(value && value instanceof String)) fail(typeof value, "not a string"); return ""+value; // Convert String object to string // Length-delimited bytes case ProtoBuf.TYPES["bytes"]: if (ByteBuffer.isByteBuffer(value)) return value; return ByteBuffer.wrap(value, "base64"); // Constant enum value case ProtoBuf.TYPES["enum"]: { var values = this.resolvedType.getChildren(ProtoBuf.Reflect.Enum.Value); for (i=0; i<values.length; i++) if (values[i].name == value) return values[i].id; else if (values[i].id == value) return values[i].id; if (this.syntax === 'proto3') { // proto3: just make sure it's an integer. if (typeof value !== 'number' || (value === value && value % 1 !== 0)) fail(typeof value, "not an integer"); if (value > 4294967295 || value < 0) fail(typeof value, "not in range for uint32") return value; } else { // proto2 requires enum values to be valid. fail(value, "not a valid enum value"); } } // Embedded message case ProtoBuf.TYPES["group"]: case ProtoBuf.TYPES["message"]: { if (!value || typeof value !== 'object') fail(typeof value, "object expected"); if (value instanceof this.resolvedType.clazz) return value; if (value instanceof ProtoBuf.Builder.Message) { // Mismatched type: Convert to object (see: https://github.com/dcodeIO/ProtoBuf.js/issues/180) var obj = {}; for (var i in value) if (value.hasOwnProperty(i)) obj[i] = value[i]; value = obj; } // Else let's try to construct one from a key-value object return new (this.resolvedType.clazz)(value); // May throw for a hundred of reasons } } // We should never end here throw Error("[INTERNAL] Illegal value for "+this.toString(true)+": "+value+" (undefined type "+this.type+")"); }; /** * Calculates the byte length of an element on the wire. * @param {number} id Field number * @param {*} value Field value * @returns {number} Byte length * @throws {Error} If the value cannot be calculated * @expose */ ElementPrototype.calculateLength = function(id, value) { if (value === null) return 0; // Nothing to encode // Tag has already been written var n; switch (this.type) { case ProtoBuf.TYPES["int32"]: return value < 0 ? ByteBuffer.calculateVarint64(value) : ByteBuffer.calculateVarint32(value); case ProtoBuf.TYPES["uint32"]: return ByteBuffer.calculateVarint32(value); case ProtoBuf.TYPES["sint32"]: return ByteBuffer.calculateVarint32(ByteBuffer.zigZagEncode32(value)); case ProtoBuf.TYPES["fixed32"]: case ProtoBuf.TYPES["sfixed32"]: case ProtoBuf.TYPES["float"]: return 4; case ProtoBuf.TYPES["int64"]: case ProtoBuf.TYPES["uint64"]: return ByteBuffer.calculateVarint64(value); case ProtoBuf.TYPES["sint64"]: return ByteBuffer.calculateVarint64(ByteBuffer.zigZagEncode64(value)); case ProtoBuf.TYPES["fixed64"]: case ProtoBuf.TYPES["sfixed64"]: return 8; case ProtoBuf.TYPES["bool"]: return 1; case ProtoBuf.TYPES["enum"]: return ByteBuffer.calculateVarint32(value); case ProtoBuf.TYPES["double"]: return 8; case ProtoBuf.TYPES["string"]: n = ByteBuffer.calculateUTF8Bytes(value); return ByteBuffer.calculateVarint32(n) + n; case ProtoBuf.TYPES["bytes"]: if (value.remaining() < 0) throw Error("Illegal value for "+this.toString(true)+": "+value.remaining()+" bytes remaining"); return ByteBuffer.calculateVarint32(value.remaining()) + value.remaining(); case ProtoBuf.TYPES["message"]: n = this.resolvedType.calculate(value); return ByteBuffer.calculateVarint32(n) + n; case ProtoBuf.TYPES["group"]: n = this.resolvedType.calculate(value); return n + ByteBuffer.calculateVarint32((id << 3) | ProtoBuf.WIRE_TYPES.ENDGROUP); } // We should never end here throw Error("[INTERNAL] Illegal value to encode in "+this.toString(true)+": "+value+" (unknown type)"); }; /** * Encodes a value to the specified buffer. Does not encode the key. * @param {number} id Field number * @param {*} value Field value * @param {ByteBuffer} buffer ByteBuffer to encode to * @return {ByteBuffer} The ByteBuffer for chaining * @throws {Error} If the value cannot be encoded * @expose */ ElementPrototype.encodeValue = function(id, value, buffer) { if (value === null) return buffer; // Nothing to encode // Tag has already been written switch (this.type) { // 32bit signed varint case ProtoBuf.TYPES["int32"]: // "If you use int32 or int64 as the type for a negative number, the resulting varint is always ten bytes // long – it is, effectively, treated like a very large unsigned integer." (see #122) if (value < 0) buffer.writeVarint64(value); else buffer.writeVarint32(value); break; // 32bit unsigned varint case ProtoBuf.TYPES["uint32"]: buffer.writeVarint32(value); break; // 32bit varint zig-zag case ProtoBuf.TYPES["sint32"]: buffer.writeVarint32ZigZag(value); break; // Fixed unsigned 32bit case ProtoBuf.TYPES["fixed32"]: buffer.writeUint32(value); break; // Fixed signed 32bit case ProtoBuf.TYPES["sfixed32"]: buffer.writeInt32(value); break; // 64bit varint as-is case ProtoBuf.TYPES["int64"]: case ProtoBuf.TYPES["uint64"]: buffer.writeVarint64(value); // throws break; // 64bit varint zig-zag case ProtoBuf.TYPES["sint64"]: buffer.writeVarint64ZigZag(value); // throws break; // Fixed unsigned 64bit case ProtoBuf.TYPES["fixed64"]: buffer.writeUint64(value); // throws break; // Fixed signed 64bit case ProtoBuf.TYPES["sfixed64"]: buffer.writeInt64(value); // throws break; // Bool case ProtoBuf.TYPES["bool"]: if (typeof value === 'string') buffer.writeVarint32(value.toLowerCase() === 'false' ? 0 : !!value); else buffer.writeVarint32(value ? 1 : 0); break; // Constant enum value case ProtoBuf.TYPES["enum"]: buffer.writeVarint32(value); break; // 32bit float case ProtoBuf.TYPES["float"]: buffer.writeFloat32(value); break; // 64bit float case ProtoBuf.TYPES["double"]: buffer.writeFloat64(value); break; // Length-delimited string case ProtoBuf.TYPES["string"]: buffer.writeVString(value); break; // Length-delimited bytes case ProtoBuf.TYPES["bytes"]: if (value.remaining() < 0) throw Error("Illegal value for "+this.toString(true)+": "+value.remaining()+" bytes remaining"); var prevOffset = value.offset; buffer.writeVarint32(value.remaining()); buffer.append(value); value.offset = prevOffset; break; // Embedded message case ProtoBuf.TYPES["message"]: var bb = new ByteBuffer().LE(); this.resolvedType.encode(value, bb); buffer.writeVarint32(bb.offset); buffer.append(bb.flip()); break; // Legacy group case ProtoBuf.TYPES["group"]: this.resolvedType.encode(value, buffer); buffer.writeVarint32((id << 3) | ProtoBuf.WIRE_TYPES.ENDGROUP); break; default: // We should never end here throw Error("[INTERNAL] Illegal value to encode in "+this.toString(true)+": "+value+" (unknown type)"); } return buffer; }; /** * Decode one element value from the specified buffer. * @param {ByteBuffer} buffer ByteBuffer to decode from * @param {number} wireType The field wire type * @param {number} id The field number * @return {*} Decoded value * @throws {Error} If the field cannot be decoded * @expose */ ElementPrototype.decode = function(buffer, wireType, id) { if (wireType != this.type.wireType) throw Error("Unexpected wire type for element"); var value, nBytes; switch (this.type) { // 32bit signed varint case ProtoBuf.TYPES["int32"]: return buffer.readVarint32() | 0; // 32bit unsigned varint case ProtoBuf.TYPES["uint32"]: return buffer.readVarint32() >>> 0; // 32bit signed varint zig-zag case ProtoBuf.TYPES["sint32"]: return buffer.readVarint32ZigZag() | 0; // Fixed 32bit unsigned case ProtoBuf.TYPES["fixed32"]: return buffer.readUint32() >>> 0; case ProtoBuf.TYPES["sfixed32"]: return buffer.readInt32() | 0; // 64bit signed varint case ProtoBuf.TYPES["int64"]: return buffer.readVarint64(); // 64bit unsigned varint case ProtoBuf.TYPES["uint64"]: return buffer.readVarint64().toUnsigned(); // 64bit signed varint zig-zag case ProtoBuf.TYPES["sint64"]: return buffer.readVarint64ZigZag(); // Fixed 64bit unsigned case ProtoBuf.TYPES["fixed64"]: return buffer.readUint64(); // Fixed 64bit signed case ProtoBuf.TYPES["sfixed64"]: return buffer.readInt64(); // Bool varint case ProtoBuf.TYPES["bool"]: return !!buffer.readVarint32(); // Constant enum value (varint) case ProtoBuf.TYPES["enum"]: // The following Builder.Message#set will already throw return buffer.readVarint32(); // 32bit float case ProtoBuf.TYPES["float"]: return buffer.readFloat(); // 64bit float case ProtoBuf.TYPES["double"]: return buffer.readDouble(); // Length-delimited string case ProtoBuf.TYPES["string"]: return buffer.readVString(); // Length-delimited bytes case ProtoBuf.TYPES["bytes"]: { nBytes = buffer.readVarint32(); if (buffer.remaining() < nBytes) throw Error("Illegal number of bytes for "+this.toString(true)+": "+nBytes+" required but got only "+buffer.remaining()); value = buffer.clone(); // Offset already set value.limit = value.offset+nBytes; buffer.offset += nBytes; return value; } // Length-delimited embedded message case ProtoBuf.TYPES["message"]: { nBytes = buffer.readVarint32(); return this.resolvedType.decode(buffer, nBytes); } // Legacy group case ProtoBuf.TYPES["group"]: return this.resolvedType.decode(buffer, -1, id); } // We should never end here throw Error("[INTERNAL] Illegal decode type"); }; /** * Converts a value from a string to the canonical element type. * * Legal only when isMapKey is true. * * @param {string} str The string value * @returns {*} The value */ ElementPrototype.valueFromString = function(str) { if (!this.isMapKey) { throw Error("valueFromString() called on non-map-key element"); } switch (this.type) { case ProtoBuf.TYPES["int32"]: case ProtoBuf.TYPES["sint32"]: case ProtoBuf.TYPES["sfixed32"]: case ProtoBuf.TYPES["uint32"]: case ProtoBuf.TYPES["fixed32"]: return this.verifyValue(parseInt(str)); case ProtoBuf.TYPES["int64"]: case ProtoBuf.TYPES["sint64"]: case ProtoBuf.TYPES["sfixed64"]: case ProtoBuf.TYPES["uint64"]: case ProtoBuf.TYPES["fixed64"]: // Long-based fields support conversions from string already. return this.verifyValue(str); case ProtoBuf.TYPES["bool"]: return str === "true"; case ProtoBuf.TYPES["string"]: return this.verifyValue(str); case ProtoBuf.TYPES["bytes"]: return ByteBuffer.fromBinary(str); } }; /** * Converts a value from the canonical element type to a string. * * It should be the case that `valueFromString(valueToString(val))` returns * a value equivalent to `verifyValue(val)` for every legal value of `val` * according to this element type. * * This may be used when the element must be stored or used as a string, * e.g., as a map key on an Object. * * Legal only when isMapKey is true. * * @param {*} val The value * @returns {string} The string form of the value. */ ElementPrototype.valueToString = function(value) { if (!this.isMapKey) { throw Error("valueToString() called on non-map-key element"); } if (this.type === ProtoBuf.TYPES["bytes"]) { return value.toString("binary"); } else { return value.toString(); } }; /** * @alias ProtoBuf.Reflect.Element * @expose */ Reflect.Element = Element; /** * Constructs a new Message. * @exports ProtoBuf.Reflect.Message * @param {!ProtoBuf.Builder} builder Builder reference * @param {!ProtoBuf.Reflect.Namespace} parent Parent message or namespace * @param {string} name Message name * @param {Object.<string,*>=} options Message options * @param {boolean=} isGroup `true` if this is a legacy group * @param {string?} syntax The syntax level of this definition (e.g., proto3) * @constructor * @extends ProtoBuf.Reflect.Namespace */ var Message = function(builder, parent, name, options, isGroup, syntax) { Namespace.call(this, builder, parent, name, options, syntax); /** * @override */ this.className = "Message"; /** * Extensions range. * @type {!Array.<number>|undefined} * @expose */ this.extensions = undefined; /** * Runtime message class. * @type {?function(new:ProtoBuf.Builder.Message)} * @expose */ this.clazz = null; /** * Whether this is a legacy group or not. * @type {boolean} * @expose