| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896 | // Protocol Buffers - Google's data interchange format// Copyright 2008 Google Inc.  All rights reserved.// https://developers.google.com/protocol-buffers///// Redistribution and use in source and binary forms, with or without// modification, are permitted provided that the following conditions are// met:////     * Redistributions of source code must retain the above copyright// notice, this list of conditions and the following disclaimer.//     * Redistributions in binary form must reproduce the above// copyright notice, this list of conditions and the following disclaimer// in the documentation and/or other materials provided with the// distribution.//     * Neither the name of Google Inc. nor the names of its// contributors may be used to endorse or promote products derived from// this software without specific prior written permission.//// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE./** * @fileoverview Definition of jspb.Message. * * @author mwr@google.com (Mark Rawling) */goog.provide('jspb.ExtensionFieldBinaryInfo');goog.provide('jspb.ExtensionFieldInfo');goog.provide('jspb.Message');goog.require('goog.array');goog.require('goog.asserts');goog.require('goog.crypt.base64');goog.require('jspb.BinaryReader');goog.require('jspb.Map');/** * Stores information for a single extension field. * * For example, an extension field defined like so: * *     extend BaseMessage { *       optional MyMessage my_field = 123; *     } * * will result in an ExtensionFieldInfo object with these properties: * *     { *       fieldIndex: 123, *       fieldName: {my_field_renamed: 0}, *       ctor: proto.example.MyMessage, *       toObjectFn: proto.example.MyMessage.toObject, *       isRepeated: 0 *     } * * We include `toObjectFn` to allow the JSCompiler to perform dead-code removal * on unused toObject() methods. * * If an extension field is primitive, ctor and toObjectFn will be null. * isRepeated should be 0 or 1. * * binary{Reader,Writer}Fn and (if message type) binaryMessageSerializeFn are * always provided. binaryReaderFn and binaryWriterFn are references to the * appropriate methods on BinaryReader/BinaryWriter to read/write the value of * this extension, and binaryMessageSerializeFn is a reference to the message * class's .serializeBinary method, if available. * * @param {number} fieldNumber * @param {Object} fieldName This has the extension field name as a property. * @param {?function(new: jspb.Message, Array=)} ctor * @param {?function((boolean|undefined),!jspb.Message):!Object} toObjectFn * @param {number} isRepeated * @constructor * @struct * @template T */jspb.ExtensionFieldInfo = function(fieldNumber, fieldName, ctor, toObjectFn,    isRepeated) {  /** @const */  this.fieldIndex = fieldNumber;  /** @const */  this.fieldName = fieldName;  /** @const */  this.ctor = ctor;  /** @const */  this.toObjectFn = toObjectFn;  /** @const */  this.isRepeated = isRepeated;};/** * Stores binary-related information for a single extension field. * @param {!jspb.ExtensionFieldInfo<T>} fieldInfo * @param {function(this:jspb.BinaryReader,number,?,?)} binaryReaderFn * @param {function(this:jspb.BinaryWriter,number,?) *        |function(this:jspb.BinaryWriter,number,?,?,?,?,?)} binaryWriterFn * @param {function(?,?)=} opt_binaryMessageSerializeFn * @param {function(?,?)=} opt_binaryMessageDeserializeFn * @param {boolean=} opt_isPacked * @constructor * @struct * @template T */jspb.ExtensionFieldBinaryInfo = function(fieldInfo, binaryReaderFn, binaryWriterFn,    opt_binaryMessageSerializeFn, opt_binaryMessageDeserializeFn, opt_isPacked) {  /** @const */  this.fieldInfo = fieldInfo;  /** @const */  this.binaryReaderFn = binaryReaderFn;  /** @const */  this.binaryWriterFn = binaryWriterFn;  /** @const */  this.binaryMessageSerializeFn = opt_binaryMessageSerializeFn;  /** @const */  this.binaryMessageDeserializeFn = opt_binaryMessageDeserializeFn;  /** @const */  this.isPacked = opt_isPacked;};/** * @return {boolean} Does this field represent a sub Message? */jspb.ExtensionFieldInfo.prototype.isMessageType = function() {  return !!this.ctor;};/** * Base class for all JsPb messages. * * Several common methods (toObject, serializeBinary, in particular) are not * defined on the prototype to encourage code patterns that minimize code bloat * due to otherwise unused code on all protos contained in the project. * * If you want to call these methods on a generic message, either * pass in your instance of method as a parameter: *     someFunction(instanceOfKnownProto, *                  KnownProtoClass.prototype.serializeBinary); * or use a lambda that knows the type: *     someFunction(()=>instanceOfKnownProto.serializeBinary()); * or, if you don't care about code size, just suppress the *     WARNING - Property serializeBinary never defined on jspb.Message * and call it the intuitive way. * * @constructor * @struct */jspb.Message = function() {};/** * @define {boolean} Whether to generate toObject methods for objects. Turn *     this off, if you do not want toObject to be ever used in your project. *     When turning off this flag, consider adding a conformance test that bans *     calling toObject. Enabling this will disable the JSCompiler's ability to *     dead code eliminate fields used in protocol buffers that are never used *     in an application. */jspb.Message.GENERATE_TO_OBJECT =    goog.define('jspb.Message.GENERATE_TO_OBJECT', true);/** * @define {boolean} Whether to generate fromObject methods for objects. Turn *     this off, if you do not want fromObject to be ever used in your project. *     When turning off this flag, consider adding a conformance test that bans *     calling fromObject. Enabling this might disable the JSCompiler's ability *     to dead code eliminate fields used in protocol buffers that are never *     used in an application. *     By default this is enabled for test code only. */jspb.Message.GENERATE_FROM_OBJECT = goog.define(    'jspb.Message.GENERATE_FROM_OBJECT', !goog.DISALLOW_TEST_ONLY_CODE);/** * @define {boolean} Whether to generate toString methods for objects. Turn *     this off if you do not use toString in your project and want to trim it *     from the compiled JS. */jspb.Message.GENERATE_TO_STRING =    goog.define('jspb.Message.GENERATE_TO_STRING', true);/** * @define {boolean} Whether arrays passed to initialize() can be assumed to be *     local (e.g. not from another iframe) and thus safely classified with *     instanceof Array. */jspb.Message.ASSUME_LOCAL_ARRAYS =    goog.define('jspb.Message.ASSUME_LOCAL_ARRAYS', false);// TODO(jakubvrana): Turn this off by default./** * @define {boolean} Disabling the serialization of empty trailing fields *     reduces the size of serialized protos. The price is an extra iteration of *     the proto before serialization. This is enabled by default to be *     backwards compatible. Projects are advised to turn this flag always off. */jspb.Message.SERIALIZE_EMPTY_TRAILING_FIELDS =    goog.define('jspb.Message.SERIALIZE_EMPTY_TRAILING_FIELDS', true);/** * Does this JavaScript environment support Uint8Aray typed arrays? * @type {boolean} * @private */jspb.Message.SUPPORTS_UINT8ARRAY_ = (typeof Uint8Array == 'function');/** * The internal data array. * @type {!Array} * @protected */jspb.Message.prototype.array;/** * Wrappers are the constructed instances of message-type fields. They are built * on demand from the raw array data. Includes message fields, repeated message * fields and extension message fields. Indexed by field number. * @type {Object} * @private */jspb.Message.prototype.wrappers_;/** * The object that contains extension fields, if any. This is an object that * maps from a proto field number to the field's value. * @type {Object} * @private */jspb.Message.prototype.extensionObject_;/** * Non-extension fields with a field number at or above the pivot are * stored in the extension object (in addition to all extension fields). * @type {number} * @private */jspb.Message.prototype.pivot_;/** * The JsPb message_id of this proto. * @type {string|undefined} the message id or undefined if this message *     has no id. * @private */jspb.Message.prototype.messageId_;/** * Repeated fields that have been converted to their proper type. This is used * for numbers stored as strings (typically "NaN", "Infinity" and "-Infinity") * and for booleans stored as numbers (0 or 1). * @private {!Object<number,boolean>|undefined} */jspb.Message.prototype.convertedPrimitiveFields_;/** * Repeated fields numbers. * @protected {?Array<number>|undefined} */jspb.Message.prototype.repeatedFields;/** * Returns the JsPb message_id of this proto. * @return {string|undefined} the message id or undefined if this message *     has no id. */jspb.Message.prototype.getJsPbMessageId = function() {  return this.messageId_;};/** * An offset applied to lookups into this.array to account for the presence or * absence of a messageId at position 0. For response messages, this will be 0. * Otherwise, it will be -1 so that the first array position is not wasted. * @type {number} * @private */jspb.Message.prototype.arrayIndexOffset_;/** * Returns the index into msg.array at which the proto field with tag number * fieldNumber will be located. * @param {!jspb.Message} msg Message for which we're calculating an index. * @param {number} fieldNumber The field number. * @return {number} The index. * @private */jspb.Message.getIndex_ = function(msg, fieldNumber) {  return fieldNumber + msg.arrayIndexOffset_;};// This is only here to ensure we are not back sliding on ES6 requiements for// protos in g3.jspb.Message.hiddenES6Property_ = class {};/** * Returns the tag number based on the index in msg.array. * @param {!jspb.Message} msg Message for which we're calculating an index. * @param {number} index The tag number. * @return {number} The field number. * @private */jspb.Message.getFieldNumber_ = function(msg, index) {  return index - msg.arrayIndexOffset_;};/** * Initializes a JsPb Message. * @param {!jspb.Message} msg The JsPb proto to modify. * @param {Array|undefined} data An initial data array. * @param {string|number} messageId For response messages, the message id or '' *     if no message id is specified. For non-response messages, 0. * @param {number} suggestedPivot The field number at which to start putting *     fields into the extension object. This is only used if data does not *     contain an extension object already. -1 if no extension object is *     required for this message type. * @param {Array<number>} repeatedFields The message's repeated fields. * @param {Array<!Array<number>>=} opt_oneofFields The fields belonging to *     each of the message's oneof unions. * @protected */jspb.Message.initialize = function(    msg, data, messageId, suggestedPivot, repeatedFields, opt_oneofFields) {  msg.wrappers_ = null;  if (!data) {    data = messageId ? [messageId] : [];  }  msg.messageId_ = messageId ? String(messageId) : undefined;  // If the messageId is 0, this message is not a response message, so we shift  // array indices down by 1 so as not to waste the first position in the array,  // which would otherwise go unused.  msg.arrayIndexOffset_ = messageId === 0 ? -1 : 0;  msg.array = data;  jspb.Message.initPivotAndExtensionObject_(msg, suggestedPivot);  msg.convertedPrimitiveFields_ = {};  if (!jspb.Message.SERIALIZE_EMPTY_TRAILING_FIELDS) {    // TODO(jakubvrana): This is same for all instances, move to prototype.    // TODO(jakubvrana): There are indexOf calls on this in serializtion,    // consider switching to a set.    msg.repeatedFields = repeatedFields;  }  if (repeatedFields) {    for (var i = 0; i < repeatedFields.length; i++) {      var fieldNumber = repeatedFields[i];      if (fieldNumber < msg.pivot_) {        var index = jspb.Message.getIndex_(msg, fieldNumber);        msg.array[index] =            msg.array[index] || jspb.Message.EMPTY_LIST_SENTINEL_;      } else {        jspb.Message.maybeInitEmptyExtensionObject_(msg);        msg.extensionObject_[fieldNumber] = msg.extensionObject_[fieldNumber] ||            jspb.Message.EMPTY_LIST_SENTINEL_;      }    }  }  if (opt_oneofFields && opt_oneofFields.length) {    // Compute the oneof case for each union. This ensures only one value is    // set in the union.    for (var i = 0; i < opt_oneofFields.length; i++) {      jspb.Message.computeOneofCase(msg, opt_oneofFields[i]);    }  }};/** * Used to mark empty repeated fields. Serializes to null when serialized * to JSON. * When reading a repeated field readers must check the return value against * this value and return and replace it with a new empty array if it is * present. * @private @const {!Object} */jspb.Message.EMPTY_LIST_SENTINEL_ = goog.DEBUG && Object.freeze ?    Object.freeze([]) :    [];/** * Returns true if the provided argument is an array. * @param {*} o The object to classify as array or not. * @return {boolean} True if the provided object is an array. * @private */jspb.Message.isArray_ = function(o) {  return jspb.Message.ASSUME_LOCAL_ARRAYS ? o instanceof Array :                                            goog.isArray(o);};/** * Returns true if the provided argument is an extension object. * @param {*} o The object to classify as array or not. * @return {boolean} True if the provided object is an extension object. * @private */jspb.Message.isExtensionObject_ = function(o) {  // Normal fields are never objects, so we can be sure that if we find an  // object here, then it's the extension object. However, we must ensure that  // the object is not an array, since arrays are valid field values (bytes  // fields can also be array).  // NOTE(lukestebbing): We avoid looking at .length to avoid a JIT bug  // in Safari on iOS 8. See the description of CL/86511464 for details.  return (o !== null && typeof o == 'object' &&      !jspb.Message.isArray_(o) &&      !(jspb.Message.SUPPORTS_UINT8ARRAY_ && o instanceof Uint8Array));};/** * If the array contains an extension object in its last position, then the * object is kept in place and its position is used as the pivot.  If not, * decides the pivot of the message based on suggestedPivot without * materializing the extension object. * * @param {!jspb.Message} msg The JsPb proto to modify. * @param {number} suggestedPivot See description for initialize(). * @private */jspb.Message.initPivotAndExtensionObject_ = function(msg, suggestedPivot) {  // There are 3 variants that need to be dealt with which are the  // combination of whether there exists an extension object (EO) and  // whether there is a suggested pivot (SP).  //  // EO,    ?    : pivot is the index of the EO  // no-EO, no-SP: pivot is MAX_INT  // no-EO, SP   : pivot is the max(lastindex + 1, SP)  var msgLength = msg.array.length;  var lastIndex = -1;  if (msgLength) {    lastIndex = msgLength - 1;    var obj = msg.array[lastIndex];    if (jspb.Message.isExtensionObject_(obj)) {      msg.pivot_ = jspb.Message.getFieldNumber_(msg, lastIndex);      msg.extensionObject_ = obj;      return;    }  }  if (suggestedPivot > -1) {    // If a extension object is not present, set the pivot value as being    // after the last value in the array to avoid overwriting values, etc.    msg.pivot_ = Math.max(        suggestedPivot, jspb.Message.getFieldNumber_(msg, lastIndex + 1));    // Avoid changing the shape of the proto with an empty extension object by    // deferring the materialization of the extension object until the first    // time a field set into it (may be due to getting a repeated proto field    // from it, in which case a new empty array is set into it at first).    msg.extensionObject_ = null;  } else {    // suggestedPivot is -1, which means that we don't have an extension object    // at all, in which case all fields are stored in the array.    msg.pivot_ = Number.MAX_VALUE;  }};/** * Creates an empty extensionObject_ if non exists. * @param {!jspb.Message} msg The JsPb proto to modify. * @private */jspb.Message.maybeInitEmptyExtensionObject_ = function(msg) {  var pivotIndex = jspb.Message.getIndex_(msg, msg.pivot_);  if (!msg.array[pivotIndex]) {    msg.extensionObject_ = msg.array[pivotIndex] = {};  }};/** * Converts a JsPb repeated message field into an object list. * @param {!Array<T>} field The repeated message field to be *     converted. * @param {?function(boolean=): Object| *     function((boolean|undefined),T): Object} toObjectFn The toObject *     function for this field.  We need to pass this for effective dead code *     removal. * @param {boolean=} opt_includeInstance Whether to include the JSPB instance *     for transitional soy proto support: http://goto/soy-param-migration * @return {!Array<Object>} An array of converted message objects. * @template T */jspb.Message.toObjectList = function(field, toObjectFn, opt_includeInstance) {  // Not using goog.array.map in the generated code to keep it small.  // And not using it here to avoid a function call.  var result = [];  for (var i = 0; i < field.length; i++) {    result[i] = toObjectFn.call(field[i], opt_includeInstance, field[i]);  }  return result;};/** * Adds a proto's extension data to a Soy rendering object. * @param {!jspb.Message} proto The proto whose extensions to convert. * @param {!Object} obj The Soy object to add converted extension data to. * @param {!Object} extensions The proto class' registered extensions. * @param {function(this:?, jspb.ExtensionFieldInfo) : *} getExtensionFn *     The proto class' getExtension function. Passed for effective dead code *     removal. * @param {boolean=} opt_includeInstance Whether to include the JSPB instance *     for transitional soy proto support: http://goto/soy-param-migration */jspb.Message.toObjectExtension = function(proto, obj, extensions,    getExtensionFn, opt_includeInstance) {  for (var fieldNumber in extensions) {    var fieldInfo = extensions[fieldNumber];    var value = getExtensionFn.call(proto, fieldInfo);    if (value != null) {      for (var name in fieldInfo.fieldName) {        if (fieldInfo.fieldName.hasOwnProperty(name)) {          break; // the compiled field name        }      }      if (!fieldInfo.toObjectFn) {        obj[name] = value;      } else {        if (fieldInfo.isRepeated) {          obj[name] = jspb.Message.toObjectList(              /** @type {!Array<!jspb.Message>} */ (value),              fieldInfo.toObjectFn, opt_includeInstance);        } else {          obj[name] = fieldInfo.toObjectFn(              opt_includeInstance, /** @type {!jspb.Message} */ (value));        }      }    }  }};/** * Writes a proto's extension data to a binary-format output stream. * @param {!jspb.Message} proto The proto whose extensions to convert. * @param {*} writer The binary-format writer to write to. * @param {!Object} extensions The proto class' registered extensions. * @param {function(this:jspb.Message,!jspb.ExtensionFieldInfo) : *} getExtensionFn The proto *     class' getExtension function. Passed for effective dead code removal. */jspb.Message.serializeBinaryExtensions = function(proto, writer, extensions,    getExtensionFn) {  for (var fieldNumber in extensions) {    var binaryFieldInfo = extensions[fieldNumber];    var fieldInfo = binaryFieldInfo.fieldInfo;    // The old codegen doesn't add the extra fields to ExtensionFieldInfo, so we    // need to gracefully error-out here rather than produce a null dereference    // below.    if (!binaryFieldInfo.binaryWriterFn) {      throw new Error('Message extension present that was generated ' +                      'without binary serialization support');    }    var value = getExtensionFn.call(proto, fieldInfo);    if (value != null) {      if (fieldInfo.isMessageType()) {        // If the message type of the extension was generated without binary        // support, there may not be a binary message serializer function, and        // we can't know when we codegen the extending message that the extended        // message may require binary support, so we can *only* catch this error        // here, at runtime (and this decoupled codegen is the whole point of        // extensions!).        if (binaryFieldInfo.binaryMessageSerializeFn) {          binaryFieldInfo.binaryWriterFn.call(writer, fieldInfo.fieldIndex,              value, binaryFieldInfo.binaryMessageSerializeFn);        } else {          throw new Error('Message extension present holding submessage ' +                          'without binary support enabled, and message is ' +                          'being serialized to binary format');        }      } else {        binaryFieldInfo.binaryWriterFn.call(            writer, fieldInfo.fieldIndex, value);      }    }  }};/** * Reads an extension field from the given reader and, if a valid extension, * sets the extension value. * @param {!jspb.Message} msg A jspb proto. * @param {!jspb.BinaryReader} reader * @param {!Object} extensions The extensions object. * @param {function(this:jspb.Message,!jspb.ExtensionFieldInfo)} getExtensionFn * @param {function(this:jspb.Message,!jspb.ExtensionFieldInfo, ?)} setExtensionFn */jspb.Message.readBinaryExtension = function(msg, reader, extensions,    getExtensionFn, setExtensionFn) {  var binaryFieldInfo = extensions[reader.getFieldNumber()];  if (!binaryFieldInfo) {    reader.skipField();    return;  }  var fieldInfo = binaryFieldInfo.fieldInfo;  if (!binaryFieldInfo.binaryReaderFn) {    throw new Error('Deserializing extension whose generated code does not ' +                    'support binary format');  }  var value;  if (fieldInfo.isMessageType()) {    value = new fieldInfo.ctor();    binaryFieldInfo.binaryReaderFn.call(        reader, value, binaryFieldInfo.binaryMessageDeserializeFn);  } else {    // All other types.    value = binaryFieldInfo.binaryReaderFn.call(reader);  }  if (fieldInfo.isRepeated && !binaryFieldInfo.isPacked) {    var currentList = getExtensionFn.call(msg, fieldInfo);    if (!currentList) {      setExtensionFn.call(msg, fieldInfo, [value]);    } else {      currentList.push(value);    }  } else {    setExtensionFn.call(msg, fieldInfo, value);  }};/** * Gets the value of a non-extension field. * @param {!jspb.Message} msg A jspb proto. * @param {number} fieldNumber The field number. * @return {string|number|boolean|Uint8Array|Array|null|undefined} * The field's value. * @protected */jspb.Message.getField = function(msg, fieldNumber) {  if (fieldNumber < msg.pivot_) {    var index = jspb.Message.getIndex_(msg, fieldNumber);    var val = msg.array[index];    if (val === jspb.Message.EMPTY_LIST_SENTINEL_) {      return msg.array[index] = [];    }    return val;  } else {    if (!msg.extensionObject_) {      return undefined;    }    var val = msg.extensionObject_[fieldNumber];    if (val === jspb.Message.EMPTY_LIST_SENTINEL_) {      return msg.extensionObject_[fieldNumber] = [];    }    return val;  }};/** * Gets the value of a non-extension repeated field. * @param {!jspb.Message} msg A jspb proto. * @param {number} fieldNumber The field number. * @return {!Array} * The field's value. * @protected */jspb.Message.getRepeatedField = function(msg, fieldNumber) {  return /** @type {!Array} */ (jspb.Message.getField(msg, fieldNumber));};/** * Gets the value of an optional float or double field. * @param {!jspb.Message} msg A jspb proto. * @param {number} fieldNumber The field number. * @return {?number|undefined} The field's value. * @protected */jspb.Message.getOptionalFloatingPointField = function(msg, fieldNumber) {  var value = jspb.Message.getField(msg, fieldNumber);  // Converts "NaN", "Infinity" and "-Infinity" to their corresponding numbers.  return value == null ? value : +value;};/** * Gets the value of an optional boolean field. * @param {!jspb.Message} msg A jspb proto. * @param {number} fieldNumber The field number. * @return {?boolean|undefined} The field's value. * @protected */jspb.Message.getBooleanField = function(msg, fieldNumber) {  var value = jspb.Message.getField(msg, fieldNumber);  // TODO(b/122673075): always return null when the value is null-ish.  return value == null ? (value) : !!value;};/** * Gets the value of a repeated float or double field. * @param {!jspb.Message} msg A jspb proto. * @param {number} fieldNumber The field number. * @return {!Array<number>} The field's value. * @protected */jspb.Message.getRepeatedFloatingPointField = function(msg, fieldNumber) {  var values = jspb.Message.getRepeatedField(msg, fieldNumber);  if (!msg.convertedPrimitiveFields_) {    msg.convertedPrimitiveFields_ = {};  }  if (!msg.convertedPrimitiveFields_[fieldNumber]) {    for (var i = 0; i < values.length; i++) {      // Converts "NaN", "Infinity" and "-Infinity" to their corresponding      // numbers.      values[i] = +values[i];    }    msg.convertedPrimitiveFields_[fieldNumber] = true;  }  return /** @type {!Array<number>} */ (values);};/** * Gets the value of a repeated boolean field. * @param {!jspb.Message} msg A jspb proto. * @param {number} fieldNumber The field number. * @return {!Array<boolean>} The field's value. * @protected */jspb.Message.getRepeatedBooleanField = function(msg, fieldNumber) {  var values = jspb.Message.getRepeatedField(msg, fieldNumber);  if (!msg.convertedPrimitiveFields_) {    msg.convertedPrimitiveFields_ = {};  }  if (!msg.convertedPrimitiveFields_[fieldNumber]) {    for (var i = 0; i < values.length; i++) {      // Converts 0 and 1 to their corresponding booleans.      values[i] = !!values[i];    }    msg.convertedPrimitiveFields_[fieldNumber] = true;  }  return /** @type {!Array<boolean>} */ (values);};/** * Coerce a 'bytes' field to a base 64 string. * @param {string|Uint8Array|null} value * @return {?string} The field's coerced value. */jspb.Message.bytesAsB64 = function(value) {  if (value == null || goog.isString(value)) {    return value;  }  if (jspb.Message.SUPPORTS_UINT8ARRAY_ && value instanceof Uint8Array) {    return goog.crypt.base64.encodeByteArray(value);  }  goog.asserts.fail('Cannot coerce to b64 string: ' + goog.typeOf(value));  return null;};/** * Coerce a 'bytes' field to a Uint8Array byte buffer. * Note that Uint8Array is not supported on IE versions before 10 nor on Opera * Mini. @see http://caniuse.com/Uint8Array * @param {string|Uint8Array|null} value * @return {?Uint8Array} The field's coerced value. */jspb.Message.bytesAsU8 = function(value) {  if (value == null || value instanceof Uint8Array) {    return value;  }  if (goog.isString(value)) {    return goog.crypt.base64.decodeStringToUint8Array(value);  }  goog.asserts.fail('Cannot coerce to Uint8Array: ' + goog.typeOf(value));  return null;};/** * Coerce a repeated 'bytes' field to an array of base 64 strings. * Note: the returned array should be treated as immutable. * @param {!Array<string>|!Array<!Uint8Array>} value * @return {!Array<string?>} The field's coerced value. */jspb.Message.bytesListAsB64 = function(value) {  jspb.Message.assertConsistentTypes_(value);  if (!value.length || goog.isString(value[0])) {    return /** @type {!Array<string>} */ (value);  }  return goog.array.map(value, jspb.Message.bytesAsB64);};/** * Coerce a repeated 'bytes' field to an array of Uint8Array byte buffers. * Note: the returned array should be treated as immutable. * Note that Uint8Array is not supported on IE versions before 10 nor on Opera * Mini. @see http://caniuse.com/Uint8Array * @param {!Array<string>|!Array<!Uint8Array>} value * @return {!Array<Uint8Array?>} The field's coerced value. */jspb.Message.bytesListAsU8 = function(value) {  jspb.Message.assertConsistentTypes_(value);  if (!value.length || value[0] instanceof Uint8Array) {    return /** @type {!Array<!Uint8Array>} */ (value);  }  return goog.array.map(value, jspb.Message.bytesAsU8);};/** * Asserts that all elements of an array are of the same type. * @param {Array?} array The array to test. * @private */jspb.Message.assertConsistentTypes_ = function(array) {  if (goog.DEBUG && array && array.length > 1) {    var expected = goog.typeOf(array[0]);    goog.array.forEach(array, function(e) {      if (goog.typeOf(e) != expected) {        goog.asserts.fail('Inconsistent type in JSPB repeated field array. ' +            'Got ' + goog.typeOf(e) + ' expected ' + expected);      }    });  }};/** * Gets the value of a non-extension primitive field, with proto3 (non-nullable * primitives) semantics. Returns `defaultValue` if the field is not otherwise * set. * @template T * @param {!jspb.Message} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {T} defaultValue The default value. * @return {T} The field's value. * @protected */jspb.Message.getFieldWithDefault = function(msg, fieldNumber, defaultValue) {  var value = jspb.Message.getField(msg, fieldNumber);  if (value == null) {    return defaultValue;  } else {    return value;  }};/** * Gets the value of a boolean field, with proto3 (non-nullable primitives) * semantics. Returns `defaultValue` if the field is not otherwise set. * @template T * @param {!jspb.Message} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {boolean} defaultValue The default value. * @return {boolean} The field's value. * @protected */jspb.Message.getBooleanFieldWithDefault = function(    msg, fieldNumber, defaultValue) {  var value = jspb.Message.getBooleanField(msg, fieldNumber);  if (value == null) {    return defaultValue;  } else {    return value;  }};/** * Gets the value of a floating point field, with proto3 (non-nullable * primitives) semantics. Returns `defaultValue` if the field is not otherwise * set. * @template T * @param {!jspb.Message} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {number} defaultValue The default value. * @return {number} The field's value. * @protected */jspb.Message.getFloatingPointFieldWithDefault = function(    msg, fieldNumber, defaultValue) {  var value = jspb.Message.getOptionalFloatingPointField(msg, fieldNumber);  if (value == null) {    return defaultValue;  } else {    return value;  }};/** * Alias for getFieldWithDefault used by older generated code. * @template T * @param {!jspb.Message} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {T} defaultValue The default value. * @return {T} The field's value. * @protected */jspb.Message.getFieldProto3 = jspb.Message.getFieldWithDefault;/** * Gets the value of a map field, lazily creating the map container if * necessary. * * This should only be called from generated code, because it requires knowledge * of serialization/parsing callbacks (which are required by the map at * construction time, and the map may be constructed here). * * @template K, V * @param {!jspb.Message} msg * @param {number} fieldNumber * @param {boolean|undefined} noLazyCreate * @param {?=} opt_valueCtor * @return {!jspb.Map<K, V>|undefined} * @protected */jspb.Message.getMapField = function(msg, fieldNumber, noLazyCreate,    opt_valueCtor) {  if (!msg.wrappers_) {    msg.wrappers_ = {};  }  // If we already have a map in the map wrappers, return that.  if (fieldNumber in msg.wrappers_) {    return msg.wrappers_[fieldNumber];  }  var arr = jspb.Message.getField(msg, fieldNumber);  // Wrap the underlying elements array with a Map.  if (!arr) {    if (noLazyCreate) {      return undefined;    }    arr = [];    jspb.Message.setField(msg, fieldNumber, arr);  }  return msg.wrappers_[fieldNumber] =      new jspb.Map(          /** @type {!Array<!Array<!Object>>} */ (arr), opt_valueCtor);};/** * Sets the value of a non-extension field. * @param {T} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {string|number|boolean|Uint8Array|Array|undefined} value New value * @return {T} return msg * @template T * @protected */jspb.Message.setField = function(msg, fieldNumber, value) {  // TODO(b/35241823): replace this with a bounded generic when available  goog.asserts.assertInstanceof(msg, jspb.Message);  if (fieldNumber < msg.pivot_) {    msg.array[jspb.Message.getIndex_(msg, fieldNumber)] = value;  } else {    jspb.Message.maybeInitEmptyExtensionObject_(msg);    msg.extensionObject_[fieldNumber] = value;  }  return msg;};/** * Sets the value of a non-extension integer field of a proto3 * @param {T} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {number} value New value * @return {T} return msg * @template T * @protected */jspb.Message.setProto3IntField = function(msg, fieldNumber, value) {  return jspb.Message.setFieldIgnoringDefault_(msg, fieldNumber, value, 0);};/** * Sets the value of a non-extension floating point field of a proto3 * @param {T} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {number} value New value * @return {T} return msg * @template T * @protected */jspb.Message.setProto3FloatField = function(msg, fieldNumber, value) {  return jspb.Message.setFieldIgnoringDefault_(msg, fieldNumber, value, 0.0);};/** * Sets the value of a non-extension boolean field of a proto3 * @param {T} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {boolean} value New value * @return {T} return msg * @template T * @protected */jspb.Message.setProto3BooleanField = function(msg, fieldNumber, value) {  return jspb.Message.setFieldIgnoringDefault_(msg, fieldNumber, value, false);};/** * Sets the value of a non-extension String field of a proto3 * @param {T} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {string} value New value * @return {T} return msg * @template T * @protected */jspb.Message.setProto3StringField = function(msg, fieldNumber, value) {  return jspb.Message.setFieldIgnoringDefault_(msg, fieldNumber, value, '');};/** * Sets the value of a non-extension Bytes field of a proto3 * @param {T} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {!Uint8Array|string} value New value * @return {T} return msg * @template T * @protected */jspb.Message.setProto3BytesField = function(msg, fieldNumber, value) {  return jspb.Message.setFieldIgnoringDefault_(msg, fieldNumber, value, '');};/** * Sets the value of a non-extension enum field of a proto3 * @param {T} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {number} value New value * @return {T} return msg * @template T * @protected */jspb.Message.setProto3EnumField = function(msg, fieldNumber, value) {  return jspb.Message.setFieldIgnoringDefault_(msg, fieldNumber, value, 0);};/** * Sets the value of a non-extension int field of a proto3 that has jstype set * to String. * @param {T} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {string} value New value * @return {T} return msg * @template T * @protected */jspb.Message.setProto3StringIntField = function(msg, fieldNumber, value) {  return jspb.Message.setFieldIgnoringDefault_(msg, fieldNumber, value, '0');};/** * Sets the value of a non-extension primitive field, with proto3 (non-nullable * primitives) semantics of ignoring values that are equal to the type's * default. * @param {T} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {!Uint8Array|string|number|boolean|undefined} value New value * @param {!Uint8Array|string|number|boolean} defaultValue The default value. * @return {T} return msg * @template T * @private */jspb.Message.setFieldIgnoringDefault_ = function(    msg, fieldNumber, value, defaultValue) {  // TODO(b/35241823): replace this with a bounded generic when available  goog.asserts.assertInstanceof(msg, jspb.Message);  if (value !== defaultValue) {    jspb.Message.setField(msg, fieldNumber, value);  } else {    msg.array[jspb.Message.getIndex_(msg, fieldNumber)] = null;  }  return msg;};/** * Adds a value to a repeated, primitive field. * @param {T} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {string|number|boolean|!Uint8Array} value New value * @param {number=} opt_index Index where to put new value. * @return {T} return msg * @template T * @protected */jspb.Message.addToRepeatedField = function(msg, fieldNumber, value, opt_index) {  // TODO(b/35241823): replace this with a bounded generic when available  goog.asserts.assertInstanceof(msg, jspb.Message);  var arr = jspb.Message.getRepeatedField(msg, fieldNumber);  if (opt_index != undefined) {    arr.splice(opt_index, 0, value);  } else {    arr.push(value);  }  return msg;};/** * Sets the value of a field in a oneof union and clears all other fields in * the union. * @param {T} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {!Array<number>} oneof The fields belonging to the union. * @param {string|number|boolean|Uint8Array|Array|undefined} value New value * @return {T} return msg * @template T * @protected */jspb.Message.setOneofField = function(msg, fieldNumber, oneof, value) {  // TODO(b/35241823): replace this with a bounded generic when available  goog.asserts.assertInstanceof(msg, jspb.Message);  var currentCase = jspb.Message.computeOneofCase(msg, oneof);  if (currentCase && currentCase !== fieldNumber && value !== undefined) {    if (msg.wrappers_ && currentCase in msg.wrappers_) {      msg.wrappers_[currentCase] = undefined;    }    jspb.Message.setField(msg, currentCase, undefined);  }  return jspb.Message.setField(msg, fieldNumber, value);};/** * Computes the selection in a oneof group for the given message, ensuring * only one field is set in the process. * * According to the protobuf language guide ( * https://developers.google.com/protocol-buffers/docs/proto#oneof), "if the * parser encounters multiple members of the same oneof on the wire, only the * last member seen is used in the parsed message." Since JSPB serializes * messages to a JSON array, the "last member seen" will always be the field * with the greatest field number (directly corresponding to the greatest * array index). * * @param {!jspb.Message} msg A jspb proto. * @param {!Array<number>} oneof The field numbers belonging to the union. * @return {number} The field number currently set in the union, or 0 if none. * @protected */jspb.Message.computeOneofCase = function(msg, oneof) {  var oneofField;  var oneofValue;  for (var i = 0; i < oneof.length; i++) {    var fieldNumber = oneof[i];    var value = jspb.Message.getField(msg, fieldNumber);    if (value != null) {      oneofField = fieldNumber;      oneofValue = value;      jspb.Message.setField(msg, fieldNumber, undefined);    }  }  if (oneofField) {    // NB: We know the value is unique, so we can call jspb.Message.setField    // directly instead of jpsb.Message.setOneofField. Also, setOneofField    // calls this function.    jspb.Message.setField(msg, oneofField, oneofValue);    return oneofField;  }  return 0;};/** * Gets and wraps a proto field on access. * @param {!jspb.Message} msg A jspb proto. * @param {function(new:jspb.Message, Array)} ctor Constructor for the field. * @param {number} fieldNumber The field number. * @param {number=} opt_required True (1) if this is a required field. * @return {jspb.Message} The field as a jspb proto. * @protected */jspb.Message.getWrapperField = function(msg, ctor, fieldNumber, opt_required) {  // TODO(mwr): Consider copying data and/or arrays.  if (!msg.wrappers_) {    msg.wrappers_ = {};  }  if (!msg.wrappers_[fieldNumber]) {    var data = /** @type {Array} */ (jspb.Message.getField(msg, fieldNumber));    if (opt_required || data) {      // TODO(mwr): Remove existence test for always valid default protos.      msg.wrappers_[fieldNumber] = new ctor(data);    }  }  return /** @type {jspb.Message} */ (msg.wrappers_[fieldNumber]);};/** * Gets and wraps a repeated proto field on access. * @param {!jspb.Message} msg A jspb proto. * @param {function(new:jspb.Message, Array)} ctor Constructor for the field. * @param {number} fieldNumber The field number. * @return {!Array<!jspb.Message>} The repeated field as an array of protos. * @protected */jspb.Message.getRepeatedWrapperField = function(msg, ctor, fieldNumber) {  jspb.Message.wrapRepeatedField_(msg, ctor, fieldNumber);  var val = msg.wrappers_[fieldNumber];  if (val == jspb.Message.EMPTY_LIST_SENTINEL_) {    val = msg.wrappers_[fieldNumber] = [];  }  return /** @type {!Array<!jspb.Message>} */ (val);};/** * Wraps underlying array into proto message representation if it wasn't done * before. * @param {!jspb.Message} msg A jspb proto. * @param {function(new:jspb.Message, ?Array)} ctor Constructor for the field. * @param {number} fieldNumber The field number. * @private */jspb.Message.wrapRepeatedField_ = function(msg, ctor, fieldNumber) {  if (!msg.wrappers_) {    msg.wrappers_ = {};  }  if (!msg.wrappers_[fieldNumber]) {    var data = jspb.Message.getRepeatedField(msg, fieldNumber);    for (var wrappers = [], i = 0; i < data.length; i++) {      wrappers[i] = new ctor(data[i]);    }    msg.wrappers_[fieldNumber] = wrappers;  }};/** * Sets a proto field and syncs it to the backing array. * @param {T} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {?jspb.Message|?jspb.Map|undefined} value A new value for this proto * field. * @return {T} the msg * @template T * @protected */jspb.Message.setWrapperField = function(msg, fieldNumber, value) {  // TODO(b/35241823): replace this with a bounded generic when available  goog.asserts.assertInstanceof(msg, jspb.Message);  if (!msg.wrappers_) {    msg.wrappers_ = {};  }  var data = value ? value.toArray() : value;  msg.wrappers_[fieldNumber] = value;  return jspb.Message.setField(msg, fieldNumber, data);};/** * Sets a proto field in a oneof union and syncs it to the backing array. * @param {T} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {!Array<number>} oneof The fields belonging to the union. * @param {jspb.Message|undefined} value A new value for this proto field. * @return {T} the msg * @template T * @protected */jspb.Message.setOneofWrapperField = function(msg, fieldNumber, oneof, value) {  // TODO(b/35241823): replace this with a bounded generic when available  goog.asserts.assertInstanceof(msg, jspb.Message);  if (!msg.wrappers_) {    msg.wrappers_ = {};  }  var data = value ? value.toArray() : value;  msg.wrappers_[fieldNumber] = value;  return jspb.Message.setOneofField(msg, fieldNumber, oneof, data);};/** * Sets a repeated proto field and syncs it to the backing array. * @param {T} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {Array<!jspb.Message>|undefined} value An array of protos. * @return {T} the msg * @template T * @protected */jspb.Message.setRepeatedWrapperField = function(msg, fieldNumber, value) {  // TODO(b/35241823): replace this with a bounded generic when available  goog.asserts.assertInstanceof(msg, jspb.Message);  if (!msg.wrappers_) {    msg.wrappers_ = {};  }  value = value || [];  for (var data = [], i = 0; i < value.length; i++) {    data[i] = value[i].toArray();  }  msg.wrappers_[fieldNumber] = value;  return jspb.Message.setField(msg, fieldNumber, data);};/** * Add a message to a repeated proto field. * @param {!jspb.Message} msg A jspb proto. * @param {number} fieldNumber The field number. * @param {T_CHILD|undefined} value Proto that will be added to the *     repeated field. * @param {function(new:T_CHILD, ?Array=)} ctor The constructor of the *     message type. * @param {number|undefined} index Index at which to insert the value. * @return {T_CHILD_NOT_UNDEFINED} proto that was inserted to the repeated field * @template MessageType * Use go/closure-ttl to declare a non-undefined version of T_CHILD. Replace the * undefined in blah|undefined with none. This is necessary because the compiler * will infer T_CHILD to be |undefined. * @template T_CHILD * @template T_CHILD_NOT_UNDEFINED := *     cond(isUnknown(T_CHILD), unknown(), *       mapunion(T_CHILD, (X) => *         cond(eq(X, 'undefined'), none(), X))) * =: * @protected */jspb.Message.addToRepeatedWrapperField = function(    msg, fieldNumber, value, ctor, index) {  jspb.Message.wrapRepeatedField_(msg, ctor, fieldNumber);  var wrapperArray = msg.wrappers_[fieldNumber];  if (!wrapperArray) {    wrapperArray = msg.wrappers_[fieldNumber] = [];  }  var insertedValue = value ? value : new ctor();  var array = jspb.Message.getRepeatedField(msg, fieldNumber);  if (index != undefined) {    wrapperArray.splice(index, 0, insertedValue);    array.splice(index, 0, insertedValue.toArray());  } else {    wrapperArray.push(insertedValue);    array.push(insertedValue.toArray());  }  return insertedValue;};/** * Converts a JsPb repeated message field into a map. The map will contain * protos unless an optional toObject function is given, in which case it will * contain objects suitable for Soy rendering. * @param {!Array<T>} field The repeated message field to be *     converted. * @param {function() : string?} mapKeyGetterFn The function to get the key of *     the map. * @param {?function(boolean=): Object| *     function((boolean|undefined),T): Object} opt_toObjectFn The *     toObject function for this field. We need to pass this for effective *     dead code removal. * @param {boolean=} opt_includeInstance Whether to include the JSPB instance *     for transitional soy proto support: http://goto/soy-param-migration * @return {!Object<string, Object>} A map of proto or Soy objects. * @template T */jspb.Message.toMap = function(    field, mapKeyGetterFn, opt_toObjectFn, opt_includeInstance) {  var result = {};  for (var i = 0; i < field.length; i++) {    result[mapKeyGetterFn.call(field[i])] = opt_toObjectFn ?        opt_toObjectFn.call(field[i], opt_includeInstance,            /** @type {!jspb.Message} */ (field[i])) : field[i];  }  return result;};/** * Syncs all map fields' contents back to their underlying arrays. * @private */jspb.Message.prototype.syncMapFields_ = function() {  // This iterates over submessage, map, and repeated fields, which is intended.  // Submessages can contain maps which also need to be synced.  //  // There is a lot of opportunity for optimization here.  For example we could  // statically determine that some messages have no submessages with maps and  // optimize this method away for those just by generating one extra static  // boolean per message type.  if (this.wrappers_) {    for (var fieldNumber in this.wrappers_) {      var val = this.wrappers_[fieldNumber];      if (goog.isArray(val)) {        for (var i = 0; i < val.length; i++) {          if (val[i]) {            val[i].toArray();          }        }      } else {        // Works for submessages and maps.        if (val) {          val.toArray();        }      }    }  }};/** * Returns the internal array of this proto. * <p>Note: If you use this array to construct a second proto, the content * would then be partially shared between the two protos. * @return {!Array} The proto represented as an array. */jspb.Message.prototype.toArray = function() {  this.syncMapFields_();  return this.array;};if (jspb.Message.GENERATE_TO_STRING) {/** * Creates a string representation of the internal data array of this proto. * <p>NOTE: This string is *not* suitable for use in server requests. * @return {string} A string representation of this proto. * @override */jspb.Message.prototype.toString = function() {  this.syncMapFields_();  return this.array.toString();};}/** * Gets the value of the extension field from the extended object. * @param {jspb.ExtensionFieldInfo<T>} fieldInfo Specifies the field to get. * @return {T} The value of the field. * @template T */jspb.Message.prototype.getExtension = function(fieldInfo) {  if (!this.extensionObject_) {    return undefined;  }  if (!this.wrappers_) {    this.wrappers_ = {};  }  var fieldNumber = fieldInfo.fieldIndex;  if (fieldInfo.isRepeated) {    if (fieldInfo.isMessageType()) {      if (!this.wrappers_[fieldNumber]) {        this.wrappers_[fieldNumber] =            goog.array.map(this.extensionObject_[fieldNumber] || [],                function(arr) {                  return new fieldInfo.ctor(arr);                });      }      return this.wrappers_[fieldNumber];    } else {      return this.extensionObject_[fieldNumber];    }  } else {    if (fieldInfo.isMessageType()) {      if (!this.wrappers_[fieldNumber] && this.extensionObject_[fieldNumber]) {        this.wrappers_[fieldNumber] = new fieldInfo.ctor(            /** @type {Array|undefined} */ (                this.extensionObject_[fieldNumber]));      }      return this.wrappers_[fieldNumber];    } else {      return this.extensionObject_[fieldNumber];    }  }};/** * Sets the value of the extension field in the extended object. * @param {jspb.ExtensionFieldInfo} fieldInfo Specifies the field to set. * @param {jspb.Message|string|Uint8Array|number|boolean|Array?} value The value *     to set. * @return {THIS} For chaining * @this {THIS} * @template THIS */jspb.Message.prototype.setExtension = function(fieldInfo, value) {  // Cast self, since the inferred THIS is unknown inside the function body.  // https://github.com/google/closure-compiler/issues/1411#issuecomment-232442220  var self = /** @type {!jspb.Message} */ (this);  if (!self.wrappers_) {    self.wrappers_ = {};  }  jspb.Message.maybeInitEmptyExtensionObject_(self);  var fieldNumber = fieldInfo.fieldIndex;  if (fieldInfo.isRepeated) {    value = value || [];    if (fieldInfo.isMessageType()) {      self.wrappers_[fieldNumber] = value;      self.extensionObject_[fieldNumber] = goog.array.map(          /** @type {!Array<!jspb.Message>} */ (value), function(msg) {        return msg.toArray();      });    } else {      self.extensionObject_[fieldNumber] = value;    }  } else {    if (fieldInfo.isMessageType()) {      self.wrappers_[fieldNumber] = value;      self.extensionObject_[fieldNumber] =          value ? /** @type {!jspb.Message} */ (value).toArray() : value;    } else {      self.extensionObject_[fieldNumber] = value;    }  }  return self;};/** * Creates a difference object between two messages. * * The result will contain the top-level fields of m2 that differ from those of * m1 at any level of nesting. No data is cloned, the result object will * share its top-level elements with m2 (but not with m1). * * Note that repeated fields should not have null/undefined elements, but if * they do, this operation will treat repeated fields of different length as * the same if the only difference between them is due to trailing * null/undefined values. * * @param {!jspb.Message} m1 The first message object. * @param {!jspb.Message} m2 The second message object. * @return {!jspb.Message} The difference returned as a proto message. *     Note that the returned message may be missing required fields. This is *     currently tolerated in Js, but would cause an error if you tried to *     send such a proto to the server. You can access the raw difference *     array with result.toArray(). * @throws {Error} If the messages are responses with different types. */jspb.Message.difference = function(m1, m2) {  if (!(m1 instanceof m2.constructor)) {    throw new Error('Messages have different types.');  }  var arr1 = m1.toArray();  var arr2 = m2.toArray();  var res = [];  var start = 0;  var length = arr1.length > arr2.length ? arr1.length : arr2.length;  if (m1.getJsPbMessageId()) {    res[0] = m1.getJsPbMessageId();    start = 1;  }  for (var i = start; i < length; i++) {    if (!jspb.Message.compareFields(arr1[i], arr2[i])) {      res[i] = arr2[i];    }  }  return new m1.constructor(res);};/** * Tests whether two messages are equal. * @param {jspb.Message|undefined} m1 The first message object. * @param {jspb.Message|undefined} m2 The second message object. * @return {boolean} true if both messages are null/undefined, or if both are *     of the same type and have the same field values. */jspb.Message.equals = function(m1, m2) {  return m1 == m2 || (!!(m1 && m2) && (m1 instanceof m2.constructor) &&      jspb.Message.compareFields(m1.toArray(), m2.toArray()));};/** * Compares two message extension fields recursively. * @param {!Object} extension1 The first field. * @param {!Object} extension2 The second field. * @return {boolean} true if the extensions are null/undefined, or otherwise *     equal. */jspb.Message.compareExtensions = function(extension1, extension2) {  extension1 = extension1 || {};  extension2 = extension2 || {};  var keys = {};  for (var name in extension1) {    keys[name] = 0;  }  for (var name in extension2) {    keys[name] = 0;  }  for (name in keys) {    if (!jspb.Message.compareFields(extension1[name], extension2[name])) {      return false;    }  }  return true;};/** * Compares two message fields recursively. * @param {*} field1 The first field. * @param {*} field2 The second field. * @return {boolean} true if the fields are null/undefined, or otherwise equal. */jspb.Message.compareFields = function(field1, field2) {  // If the fields are trivially equal, they're equal.  if (field1 == field2) return true;  if (!goog.isObject(field1) || !goog.isObject(field2)) {    // NaN != NaN so we cover this case.    if ((goog.isNumber(field1) && isNaN(field1)) ||        (goog.isNumber(field2) && isNaN(field2))) {      // One of the fields might be a string 'NaN'.      return String(field1) == String(field2);    }    // If the fields aren't trivially equal and one of them isn't an object,    // they can't possibly be equal.    return false;  }  // We have two objects. If they're different types, they're not equal.  field1 = /** @type {!Object} */(field1);  field2 = /** @type {!Object} */(field2);  if (field1.constructor != field2.constructor) return false;  // If both are Uint8Arrays, compare them element-by-element.  if (jspb.Message.SUPPORTS_UINT8ARRAY_ && field1.constructor === Uint8Array) {    var bytes1 = /** @type {!Uint8Array} */(field1);    var bytes2 = /** @type {!Uint8Array} */(field2);    if (bytes1.length != bytes2.length) return false;    for (var i = 0; i < bytes1.length; i++) {      if (bytes1[i] != bytes2[i]) return false;    }    return true;  }  // If they're both Arrays, compare them element by element except for the  // optional extension objects at the end, which we compare separately.  if (field1.constructor === Array) {    var typedField1 = /** @type {!Array<?>} */ (field1);    var typedField2 = /** @type {!Array<?>} */ (field2);    var extension1 = undefined;    var extension2 = undefined;    var length = Math.max(typedField1.length, typedField2.length);    for (var i = 0; i < length; i++) {      var val1 = typedField1[i];      var val2 = typedField2[i];      if (val1 && (val1.constructor == Object)) {        goog.asserts.assert(extension1 === undefined);        goog.asserts.assert(i === typedField1.length - 1);        extension1 = val1;        val1 = undefined;      }      if (val2 && (val2.constructor == Object)) {        goog.asserts.assert(extension2 === undefined);        goog.asserts.assert(i === typedField2.length - 1);        extension2 = val2;        val2 = undefined;      }      if (!jspb.Message.compareFields(val1, val2)) {        return false;      }    }    if (extension1 || extension2) {      extension1 = extension1 || {};      extension2 = extension2 || {};      return jspb.Message.compareExtensions(extension1, extension2);    }    return true;  }  // If they're both plain Objects (i.e. extensions), compare them as  // extensions.  if (field1.constructor === Object) {    return jspb.Message.compareExtensions(field1, field2);  }  throw new Error('Invalid type in JSPB array');};/** * Templated, type-safe cloneMessage definition. * @return {THIS} * @this {THIS} * @template THIS */jspb.Message.prototype.cloneMessage = function() {  return jspb.Message.cloneMessage(/** @type {!jspb.Message} */ (this));};/** * Alias clone to cloneMessage. goog.object.unsafeClone uses clone to * efficiently copy objects. Without this alias, copying jspb messages comes * with a large performance penalty. * @return {THIS} * @this {THIS} * @template THIS */jspb.Message.prototype.clone = function() {  return jspb.Message.cloneMessage(/** @type {!jspb.Message} */ (this));};/** * Static clone function. NOTE: A type-safe method called "cloneMessage" * exists * on each generated JsPb class. Do not call this function directly. * @param {!jspb.Message} msg A message to clone. * @return {!jspb.Message} A deep clone of the given message. */jspb.Message.clone = function(msg) {  // Although we could include the wrappers, we leave them out here.  return jspb.Message.cloneMessage(msg);};/** * @param {!jspb.Message} msg A message to clone. * @return {!jspb.Message} A deep clone of the given message. * @protected */jspb.Message.cloneMessage = function(msg) {  // Although we could include the wrappers, we leave them out here.  return new msg.constructor(jspb.Message.clone_(msg.toArray()));};/** * Takes 2 messages of the same type and copies the contents of the first * message into the second. After this the 2 messages will equals in terms of * value semantics but share no state. All data in the destination message will * be overridden. * * @param {MESSAGE} fromMessage Message that will be copied into toMessage. * @param {MESSAGE} toMessage Message which will receive a copy of fromMessage *     as its contents. * @template MESSAGE */jspb.Message.copyInto = function(fromMessage, toMessage) {  goog.asserts.assertInstanceof(fromMessage, jspb.Message);  goog.asserts.assertInstanceof(toMessage, jspb.Message);  goog.asserts.assert(fromMessage.constructor == toMessage.constructor,      'Copy source and target message should have the same type.');  var copyOfFrom = jspb.Message.clone(fromMessage);  var to = toMessage.toArray();  var from = copyOfFrom.toArray();  // Empty destination in case it has more values at the end of the array.  to.length = 0;  // and then copy everything from the new to the existing message.  for (var i = 0; i < from.length; i++) {    to[i] = from[i];  }  // This is either null or empty for a fresh copy.  toMessage.wrappers_ = copyOfFrom.wrappers_;  // Just a reference into the shared array.  toMessage.extensionObject_ = copyOfFrom.extensionObject_;};/** * Helper for cloning an internal JsPb object. * @param {!Object} obj A JsPb object, eg, a field, to be cloned. * @return {!Object} A clone of the input object. * @private */jspb.Message.clone_ = function(obj) {  var o;  if (goog.isArray(obj)) {    // Allocate array of correct size.    var clonedArray = new Array(obj.length);    // Use array iteration where possible because it is faster than for-in.    for (var i = 0; i < obj.length; i++) {      o = obj[i];      if (o != null) {        // NOTE:redundant null check existing for NTI compatibility.        // see b/70515949        clonedArray[i] = (typeof o == 'object') ?            jspb.Message.clone_(goog.asserts.assert(o)) :            o;      }    }    return clonedArray;  }  if (jspb.Message.SUPPORTS_UINT8ARRAY_ && obj instanceof Uint8Array) {    return new Uint8Array(obj);  }  var clone = {};  for (var key in obj) {    o = obj[key];    if (o != null) {      // NOTE:redundant null check existing for NTI compatibility.      // see b/70515949      clone[key] = (typeof o == 'object') ?          jspb.Message.clone_(goog.asserts.assert(o)) :          o;    }  }  return clone;};/** * Registers a JsPb message type id with its constructor. * @param {string} id The id for this type of message. * @param {Function} constructor The message constructor. */jspb.Message.registerMessageType = function(id, constructor) {  jspb.Message.registry_[id] = constructor;  // This is needed so we can later access messageId directly on the contructor,  // otherwise it is not available due to 'property collapsing' by the compiler.  /**   * @suppress {strictMissingProperties} messageId is not defined on Function   */  constructor.messageId = id;};/** * The registry of message ids to message constructors. * @private */jspb.Message.registry_ = {};/** * The extensions registered on MessageSet. This is a map of extension * field number to field info object. This should be considered as a * private API. * * This is similar to [jspb class name].extensions object for * non-MessageSet. We special case MessageSet so that we do not need * to goog.require MessageSet from classes that extends MessageSet. * * @type {!Object<number, jspb.ExtensionFieldInfo>} */jspb.Message.messageSetExtensions = {};/** * @type {!Object<number, jspb.ExtensionFieldBinaryInfo>} */jspb.Message.messageSetExtensionsBinary = {};
 |