GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

1 lines
983 KiB

{"version":3,"file":"firebase-database-compat.js","sources":["../logger/src/logger.ts","../util/src/crypt.ts","../util/src/constants.ts","../util/src/assert.ts","../util/src/deepCopy.ts","../util/src/deferred.ts","../util/src/environment.ts","../util/src/json.ts","../util/src/jwt.ts","../util/src/obj.ts","../util/src/sha1.ts","../util/src/validation.ts","../util/src/utf8.ts","../util/src/compat.ts","../component/src/component.ts","../component/src/constants.ts","../component/src/provider.ts","../component/src/component_container.ts","../database/src/core/version.ts","../database/src/core/storage/DOMStorageWrapper.ts","../database/src/core/storage/MemoryStorage.ts","../database/src/core/storage/storage.ts","../database/src/core/snap/snap.ts","../database/src/core/snap/indexes/PriorityIndex.ts","../database/src/core/operation/Operation.ts","../database/src/core/SyncPoint.ts","../database/src/core/SyncTree.ts","../database/src/register.ts","../database/src/core/util/util.ts","../database/src/core/AppCheckTokenProvider.ts","../database/src/core/AuthTokenProvider.ts","../database/src/realtime/Constants.ts","../database/src/core/RepoInfo.ts","../database/src/core/stats/StatsCollection.ts","../database/src/core/stats/StatsManager.ts","../database/src/realtime/polling/PacketReceiver.ts","../database/src/realtime/BrowserPollConnection.ts","../database/src/realtime/WebSocketConnection.ts","../database/src/realtime/TransportManager.ts","../database/src/realtime/Connection.ts","../database/src/core/ServerActions.ts","../database/src/core/util/EventEmitter.ts","../database/src/core/util/OnlineMonitor.ts","../database/src/core/util/Path.ts","../database/src/core/util/VisibilityMonitor.ts","../database/src/core/PersistentConnection.ts","../database/src/core/snap/Node.ts","../database/src/core/snap/indexes/Index.ts","../database/src/core/snap/indexes/KeyIndex.ts","../database/src/core/util/SortedMap.ts","../database/src/core/snap/comparators.ts","../database/src/core/snap/LeafNode.ts","../database/src/core/snap/childSet.ts","../database/src/core/snap/IndexMap.ts","../database/src/core/snap/ChildrenNode.ts","../database/src/core/snap/nodeFromJSON.ts","../database/src/core/snap/indexes/PathIndex.ts","../database/src/core/snap/indexes/ValueIndex.ts","../database/src/core/view/Change.ts","../database/src/core/view/filter/IndexedFilter.ts","../database/src/core/view/filter/RangedFilter.ts","../database/src/core/view/filter/LimitedFilter.ts","../database/src/core/view/QueryParams.ts","../database/src/core/ReadonlyRestClient.ts","../util/src/query.ts","../database/src/core/SnapshotHolder.ts","../database/src/core/SparseSnapshotTree.ts","../database/src/core/stats/StatsListener.ts","../database/src/core/stats/StatsReporter.ts","../database/src/core/operation/AckUserWrite.ts","../database/src/core/operation/ListenComplete.ts","../database/src/core/operation/Overwrite.ts","../database/src/core/operation/Merge.ts","../database/src/core/view/CacheNode.ts","../database/src/core/view/EventGenerator.ts","../database/src/core/view/ViewCache.ts","../database/src/core/util/ImmutableTree.ts","../database/src/core/CompoundWrite.ts","../database/src/core/WriteTree.ts","../database/src/core/view/ChildChangeAccumulator.ts","../database/src/core/view/CompleteChildSource.ts","../database/src/core/view/ViewProcessor.ts","../database/src/core/view/View.ts","../database/src/core/util/ServerValues.ts","../database/src/core/util/Tree.ts","../database/src/core/util/validation.ts","../database/src/core/view/EventQueue.ts","../database/src/core/Repo.ts","../database/src/core/util/libs/parser.ts","../database/src/core/util/NextPushId.ts","../database/src/core/view/Event.ts","../database/src/core/view/EventRegistration.ts","../database/src/api/OnDisconnect.ts","../database/src/api/Reference_impl.ts","../database/src/api/Database.ts","../util/src/emulator.ts","../database/src/api/ServerValue.ts","../database/src/api/Transaction.ts","../database/src/api/test_access.ts","../database-compat/src/util/util.ts","../database-compat/src/api/onDisconnect.ts","../database-compat/src/api/TransactionResult.ts","../database-compat/src/api/Reference.ts","../database-compat/src/util/validation.ts","../database-compat/src/api/Database.ts","../database-compat/src/index.ts","../database-compat/src/api/internal.ts"],"sourcesContent":["/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport type LogLevelString =\n | 'debug'\n | 'verbose'\n | 'info'\n | 'warn'\n | 'error'\n | 'silent';\n\nexport interface LogOptions {\n level: LogLevelString;\n}\n\nexport type LogCallback = (callbackParams: LogCallbackParams) => void;\n\nexport interface LogCallbackParams {\n level: LogLevelString;\n message: string;\n args: unknown[];\n type: string;\n}\n\n/**\n * A container for all of the Logger instances\n */\nexport const instances: Logger[] = [];\n\n/**\n * The JS SDK supports 5 log levels and also allows a user the ability to\n * silence the logs altogether.\n *\n * The order is a follows:\n * DEBUG < VERBOSE < INFO < WARN < ERROR\n *\n * All of the log types above the current log level will be captured (i.e. if\n * you set the log level to `INFO`, errors will still be logged, but `DEBUG` and\n * `VERBOSE` logs will not)\n */\nexport enum LogLevel {\n DEBUG,\n VERBOSE,\n INFO,\n WARN,\n ERROR,\n SILENT\n}\n\nconst levelStringToEnum: { [key in LogLevelString]: LogLevel } = {\n 'debug': LogLevel.DEBUG,\n 'verbose': LogLevel.VERBOSE,\n 'info': LogLevel.INFO,\n 'warn': LogLevel.WARN,\n 'error': LogLevel.ERROR,\n 'silent': LogLevel.SILENT\n};\n\n/**\n * The default log level\n */\nconst defaultLogLevel: LogLevel = LogLevel.INFO;\n\n/**\n * We allow users the ability to pass their own log handler. We will pass the\n * type of log, the current log level, and any other arguments passed (i.e. the\n * messages that the user wants to log) to this function.\n */\nexport type LogHandler = (\n loggerInstance: Logger,\n logType: LogLevel,\n ...args: unknown[]\n) => void;\n\n/**\n * By default, `console.debug` is not displayed in the developer console (in\n * chrome). To avoid forcing users to have to opt-in to these logs twice\n * (i.e. once for firebase, and once in the console), we are sending `DEBUG`\n * logs to the `console.log` function.\n */\nconst ConsoleMethod = {\n [LogLevel.DEBUG]: 'log',\n [LogLevel.VERBOSE]: 'log',\n [LogLevel.INFO]: 'info',\n [LogLevel.WARN]: 'warn',\n [LogLevel.ERROR]: 'error'\n};\n\n/**\n * The default log handler will forward DEBUG, VERBOSE, INFO, WARN, and ERROR\n * messages on to their corresponding console counterparts (if the log method\n * is supported by the current log level)\n */\nconst defaultLogHandler: LogHandler = (instance, logType, ...args): void => {\n if (logType < instance.logLevel) {\n return;\n }\n const now = new Date().toISOString();\n const method = ConsoleMethod[logType as keyof typeof ConsoleMethod];\n if (method) {\n console[method as 'log' | 'info' | 'warn' | 'error'](\n `[${now}] ${instance.name}:`,\n ...args\n );\n } else {\n throw new Error(\n `Attempted to log a message with an invalid logType (value: ${logType})`\n );\n }\n};\n\nexport class Logger {\n /**\n * Gives you an instance of a Logger to capture messages according to\n * Firebase's logging scheme.\n *\n * @param name The name that the logs will be associated with\n */\n constructor(public name: string) {\n /**\n * Capture the current instance for later use\n */\n instances.push(this);\n }\n\n /**\n * The log level of the given Logger instance.\n */\n private _logLevel = defaultLogLevel;\n\n get logLevel(): LogLevel {\n return this._logLevel;\n }\n\n set logLevel(val: LogLevel) {\n if (!(val in LogLevel)) {\n throw new TypeError(`Invalid value \"${val}\" assigned to \\`logLevel\\``);\n }\n this._logLevel = val;\n }\n\n // Workaround for setter/getter having to be the same type.\n setLogLevel(val: LogLevel | LogLevelString): void {\n this._logLevel = typeof val === 'string' ? levelStringToEnum[val] : val;\n }\n\n /**\n * The main (internal) log handler for the Logger instance.\n * Can be set to a new function in internal package code but not by user.\n */\n private _logHandler: LogHandler = defaultLogHandler;\n get logHandler(): LogHandler {\n return this._logHandler;\n }\n set logHandler(val: LogHandler) {\n if (typeof val !== 'function') {\n throw new TypeError('Value assigned to `logHandler` must be a function');\n }\n this._logHandler = val;\n }\n\n /**\n * The optional, additional, user-defined log handler for the Logger instance.\n */\n private _userLogHandler: LogHandler | null = null;\n get userLogHandler(): LogHandler | null {\n return this._userLogHandler;\n }\n set userLogHandler(val: LogHandler | null) {\n this._userLogHandler = val;\n }\n\n /**\n * The functions below are all based on the `console` interface\n */\n\n debug(...args: unknown[]): void {\n this._userLogHandler && this._userLogHandler(this, LogLevel.DEBUG, ...args);\n this._logHandler(this, LogLevel.DEBUG, ...args);\n }\n log(...args: unknown[]): void {\n this._userLogHandler &&\n this._userLogHandler(this, LogLevel.VERBOSE, ...args);\n this._logHandler(this, LogLevel.VERBOSE, ...args);\n }\n info(...args: unknown[]): void {\n this._userLogHandler && this._userLogHandler(this, LogLevel.INFO, ...args);\n this._logHandler(this, LogLevel.INFO, ...args);\n }\n warn(...args: unknown[]): void {\n this._userLogHandler && this._userLogHandler(this, LogLevel.WARN, ...args);\n this._logHandler(this, LogLevel.WARN, ...args);\n }\n error(...args: unknown[]): void {\n this._userLogHandler && this._userLogHandler(this, LogLevel.ERROR, ...args);\n this._logHandler(this, LogLevel.ERROR, ...args);\n }\n}\n\nexport function setLogLevel(level: LogLevelString | LogLevel): void {\n instances.forEach(inst => {\n inst.setLogLevel(level);\n });\n}\n\nexport function setUserLogHandler(\n logCallback: LogCallback | null,\n options?: LogOptions\n): void {\n for (const instance of instances) {\n let customLogLevel: LogLevel | null = null;\n if (options && options.level) {\n customLogLevel = levelStringToEnum[options.level];\n }\n if (logCallback === null) {\n instance.userLogHandler = null;\n } else {\n instance.userLogHandler = (\n instance: Logger,\n level: LogLevel,\n ...args: unknown[]\n ) => {\n const message = args\n .map(arg => {\n if (arg == null) {\n return null;\n } else if (typeof arg === 'string') {\n return arg;\n } else if (typeof arg === 'number' || typeof arg === 'boolean') {\n return arg.toString();\n } else if (arg instanceof Error) {\n return arg.message;\n } else {\n try {\n return JSON.stringify(arg);\n } catch (ignored) {\n return null;\n }\n }\n })\n .filter(arg => arg)\n .join(' ');\n if (level >= (customLogLevel ?? instance.logLevel)) {\n logCallback({\n level: LogLevel[level].toLowerCase() as LogLevelString,\n message,\n args,\n type: instance.name\n });\n }\n };\n }\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nconst stringToByteArray = function (str: string): number[] {\n // TODO(user): Use native implementations if/when available\n const out: number[] = [];\n let p = 0;\n for (let i = 0; i < str.length; i++) {\n let c = str.charCodeAt(i);\n if (c < 128) {\n out[p++] = c;\n } else if (c < 2048) {\n out[p++] = (c >> 6) | 192;\n out[p++] = (c & 63) | 128;\n } else if (\n (c & 0xfc00) === 0xd800 &&\n i + 1 < str.length &&\n (str.charCodeAt(i + 1) & 0xfc00) === 0xdc00\n ) {\n // Surrogate Pair\n c = 0x10000 + ((c & 0x03ff) << 10) + (str.charCodeAt(++i) & 0x03ff);\n out[p++] = (c >> 18) | 240;\n out[p++] = ((c >> 12) & 63) | 128;\n out[p++] = ((c >> 6) & 63) | 128;\n out[p++] = (c & 63) | 128;\n } else {\n out[p++] = (c >> 12) | 224;\n out[p++] = ((c >> 6) & 63) | 128;\n out[p++] = (c & 63) | 128;\n }\n }\n return out;\n};\n\n/**\n * Turns an array of numbers into the string given by the concatenation of the\n * characters to which the numbers correspond.\n * @param bytes Array of numbers representing characters.\n * @return Stringification of the array.\n */\nconst byteArrayToString = function (bytes: number[]): string {\n // TODO(user): Use native implementations if/when available\n const out: string[] = [];\n let pos = 0,\n c = 0;\n while (pos < bytes.length) {\n const c1 = bytes[pos++];\n if (c1 < 128) {\n out[c++] = String.fromCharCode(c1);\n } else if (c1 > 191 && c1 < 224) {\n const c2 = bytes[pos++];\n out[c++] = String.fromCharCode(((c1 & 31) << 6) | (c2 & 63));\n } else if (c1 > 239 && c1 < 365) {\n // Surrogate Pair\n const c2 = bytes[pos++];\n const c3 = bytes[pos++];\n const c4 = bytes[pos++];\n const u =\n (((c1 & 7) << 18) | ((c2 & 63) << 12) | ((c3 & 63) << 6) | (c4 & 63)) -\n 0x10000;\n out[c++] = String.fromCharCode(0xd800 + (u >> 10));\n out[c++] = String.fromCharCode(0xdc00 + (u & 1023));\n } else {\n const c2 = bytes[pos++];\n const c3 = bytes[pos++];\n out[c++] = String.fromCharCode(\n ((c1 & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63)\n );\n }\n }\n return out.join('');\n};\n\ninterface Base64 {\n byteToCharMap_: { [key: number]: string } | null;\n charToByteMap_: { [key: string]: number } | null;\n byteToCharMapWebSafe_: { [key: number]: string } | null;\n charToByteMapWebSafe_: { [key: string]: number } | null;\n ENCODED_VALS_BASE: string;\n readonly ENCODED_VALS: string;\n readonly ENCODED_VALS_WEBSAFE: string;\n HAS_NATIVE_SUPPORT: boolean;\n encodeByteArray(input: number[] | Uint8Array, webSafe?: boolean): string;\n encodeString(input: string, webSafe?: boolean): string;\n decodeString(input: string, webSafe: boolean): string;\n decodeStringToByteArray(input: string, webSafe: boolean): number[];\n init_(): void;\n}\n\n// We define it as an object literal instead of a class because a class compiled down to es5 can't\n// be treeshaked. https://github.com/rollup/rollup/issues/1691\n// Static lookup maps, lazily populated by init_()\nexport const base64: Base64 = {\n /**\n * Maps bytes to characters.\n */\n byteToCharMap_: null,\n\n /**\n * Maps characters to bytes.\n */\n charToByteMap_: null,\n\n /**\n * Maps bytes to websafe characters.\n * @private\n */\n byteToCharMapWebSafe_: null,\n\n /**\n * Maps websafe characters to bytes.\n * @private\n */\n charToByteMapWebSafe_: null,\n\n /**\n * Our default alphabet, shared between\n * ENCODED_VALS and ENCODED_VALS_WEBSAFE\n */\n ENCODED_VALS_BASE:\n 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' + 'abcdefghijklmnopqrstuvwxyz' + '0123456789',\n\n /**\n * Our default alphabet. Value 64 (=) is special; it means \"nothing.\"\n */\n get ENCODED_VALS() {\n return this.ENCODED_VALS_BASE + '+/=';\n },\n\n /**\n * Our websafe alphabet.\n */\n get ENCODED_VALS_WEBSAFE() {\n return this.ENCODED_VALS_BASE + '-_.';\n },\n\n /**\n * Whether this browser supports the atob and btoa functions. This extension\n * started at Mozilla but is now implemented by many browsers. We use the\n * ASSUME_* variables to avoid pulling in the full useragent detection library\n * but still allowing the standard per-browser compilations.\n *\n */\n HAS_NATIVE_SUPPORT: typeof atob === 'function',\n\n /**\n * Base64-encode an array of bytes.\n *\n * @param input An array of bytes (numbers with\n * value in [0, 255]) to encode.\n * @param webSafe Boolean indicating we should use the\n * alternative alphabet.\n * @return The base64 encoded string.\n */\n encodeByteArray(input: number[] | Uint8Array, webSafe?: boolean): string {\n if (!Array.isArray(input)) {\n throw Error('encodeByteArray takes an array as a parameter');\n }\n\n this.init_();\n\n const byteToCharMap = webSafe\n ? this.byteToCharMapWebSafe_!\n : this.byteToCharMap_!;\n\n const output = [];\n\n for (let i = 0; i < input.length; i += 3) {\n const byte1 = input[i];\n const haveByte2 = i + 1 < input.length;\n const byte2 = haveByte2 ? input[i + 1] : 0;\n const haveByte3 = i + 2 < input.length;\n const byte3 = haveByte3 ? input[i + 2] : 0;\n\n const outByte1 = byte1 >> 2;\n const outByte2 = ((byte1 & 0x03) << 4) | (byte2 >> 4);\n let outByte3 = ((byte2 & 0x0f) << 2) | (byte3 >> 6);\n let outByte4 = byte3 & 0x3f;\n\n if (!haveByte3) {\n outByte4 = 64;\n\n if (!haveByte2) {\n outByte3 = 64;\n }\n }\n\n output.push(\n byteToCharMap[outByte1],\n byteToCharMap[outByte2],\n byteToCharMap[outByte3],\n byteToCharMap[outByte4]\n );\n }\n\n return output.join('');\n },\n\n /**\n * Base64-encode a string.\n *\n * @param input A string to encode.\n * @param webSafe If true, we should use the\n * alternative alphabet.\n * @return The base64 encoded string.\n */\n encodeString(input: string, webSafe?: boolean): string {\n // Shortcut for Mozilla browsers that implement\n // a native base64 encoder in the form of \"btoa/atob\"\n if (this.HAS_NATIVE_SUPPORT && !webSafe) {\n return btoa(input);\n }\n return this.encodeByteArray(stringToByteArray(input), webSafe);\n },\n\n /**\n * Base64-decode a string.\n *\n * @param input to decode.\n * @param webSafe True if we should use the\n * alternative alphabet.\n * @return string representing the decoded value.\n */\n decodeString(input: string, webSafe: boolean): string {\n // Shortcut for Mozilla browsers that implement\n // a native base64 encoder in the form of \"btoa/atob\"\n if (this.HAS_NATIVE_SUPPORT && !webSafe) {\n return atob(input);\n }\n return byteArrayToString(this.decodeStringToByteArray(input, webSafe));\n },\n\n /**\n * Base64-decode a string.\n *\n * In base-64 decoding, groups of four characters are converted into three\n * bytes. If the encoder did not apply padding, the input length may not\n * be a multiple of 4.\n *\n * In this case, the last group will have fewer than 4 characters, and\n * padding will be inferred. If the group has one or two characters, it decodes\n * to one byte. If the group has three characters, it decodes to two bytes.\n *\n * @param input Input to decode.\n * @param webSafe True if we should use the web-safe alphabet.\n * @return bytes representing the decoded value.\n */\n decodeStringToByteArray(input: string, webSafe: boolean): number[] {\n this.init_();\n\n const charToByteMap = webSafe\n ? this.charToByteMapWebSafe_!\n : this.charToByteMap_!;\n\n const output: number[] = [];\n\n for (let i = 0; i < input.length; ) {\n const byte1 = charToByteMap[input.charAt(i++)];\n\n const haveByte2 = i < input.length;\n const byte2 = haveByte2 ? charToByteMap[input.charAt(i)] : 0;\n ++i;\n\n const haveByte3 = i < input.length;\n const byte3 = haveByte3 ? charToByteMap[input.charAt(i)] : 64;\n ++i;\n\n const haveByte4 = i < input.length;\n const byte4 = haveByte4 ? charToByteMap[input.charAt(i)] : 64;\n ++i;\n\n if (byte1 == null || byte2 == null || byte3 == null || byte4 == null) {\n throw Error();\n }\n\n const outByte1 = (byte1 << 2) | (byte2 >> 4);\n output.push(outByte1);\n\n if (byte3 !== 64) {\n const outByte2 = ((byte2 << 4) & 0xf0) | (byte3 >> 2);\n output.push(outByte2);\n\n if (byte4 !== 64) {\n const outByte3 = ((byte3 << 6) & 0xc0) | byte4;\n output.push(outByte3);\n }\n }\n }\n\n return output;\n },\n\n /**\n * Lazy static initialization function. Called before\n * accessing any of the static map variables.\n * @private\n */\n init_() {\n if (!this.byteToCharMap_) {\n this.byteToCharMap_ = {};\n this.charToByteMap_ = {};\n this.byteToCharMapWebSafe_ = {};\n this.charToByteMapWebSafe_ = {};\n\n // We want quick mappings back and forth, so we precompute two maps.\n for (let i = 0; i < this.ENCODED_VALS.length; i++) {\n this.byteToCharMap_[i] = this.ENCODED_VALS.charAt(i);\n this.charToByteMap_[this.byteToCharMap_[i]] = i;\n this.byteToCharMapWebSafe_[i] = this.ENCODED_VALS_WEBSAFE.charAt(i);\n this.charToByteMapWebSafe_[this.byteToCharMapWebSafe_[i]] = i;\n\n // Be forgiving when decoding and correctly decode both encodings.\n if (i >= this.ENCODED_VALS_BASE.length) {\n this.charToByteMap_[this.ENCODED_VALS_WEBSAFE.charAt(i)] = i;\n this.charToByteMapWebSafe_[this.ENCODED_VALS.charAt(i)] = i;\n }\n }\n }\n }\n};\n\n/**\n * URL-safe base64 encoding\n */\nexport const base64Encode = function (str: string): string {\n const utf8Bytes = stringToByteArray(str);\n return base64.encodeByteArray(utf8Bytes, true);\n};\n\n/**\n * URL-safe base64 encoding (without \".\" padding in the end).\n * e.g. Used in JSON Web Token (JWT) parts.\n */\nexport const base64urlEncodeWithoutPadding = function (str: string): string {\n // Use base64url encoding and remove padding in the end (dot characters).\n return base64Encode(str).replace(/\\./g, '');\n};\n\n/**\n * URL-safe base64 decoding\n *\n * NOTE: DO NOT use the global atob() function - it does NOT support the\n * base64Url variant encoding.\n *\n * @param str To be decoded\n * @return Decoded result, if possible\n */\nexport const base64Decode = function (str: string): string | null {\n try {\n return base64.decodeString(str, true);\n } catch (e) {\n console.error('base64Decode failed: ', e);\n }\n return null;\n};\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/**\n * @fileoverview Firebase constants. Some of these (@defines) can be overridden at compile-time.\n */\n\nexport const CONSTANTS = {\n /**\n * @define {boolean} Whether this is the client Node.js SDK.\n */\n NODE_CLIENT: false,\n /**\n * @define {boolean} Whether this is the Admin Node.js SDK.\n */\n NODE_ADMIN: false,\n\n /**\n * Firebase SDK Version\n */\n SDK_VERSION: '${JSCORE_VERSION}'\n};\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { CONSTANTS } from './constants';\n\n/**\n * Throws an error if the provided assertion is falsy\n */\nexport const assert = function (assertion: unknown, message: string): void {\n if (!assertion) {\n throw assertionError(message);\n }\n};\n\n/**\n * Returns an Error object suitable for throwing.\n */\nexport const assertionError = function (message: string): Error {\n return new Error(\n 'Firebase Database (' +\n CONSTANTS.SDK_VERSION +\n ') INTERNAL ASSERT FAILED: ' +\n message\n );\n};\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/**\n * Do a deep-copy of basic JavaScript Objects or Arrays.\n */\nexport function deepCopy<T>(value: T): T {\n return deepExtend(undefined, value) as T;\n}\n\n/**\n * Copy properties from source to target (recursively allows extension\n * of Objects and Arrays). Scalar values in the target are over-written.\n * If target is undefined, an object of the appropriate type will be created\n * (and returned).\n *\n * We recursively copy all child properties of plain Objects in the source- so\n * that namespace- like dictionaries are merged.\n *\n * Note that the target can be a function, in which case the properties in\n * the source Object are copied onto it as static properties of the Function.\n *\n * Note: we don't merge __proto__ to prevent prototype pollution\n */\nexport function deepExtend(target: unknown, source: unknown): unknown {\n if (!(source instanceof Object)) {\n return source;\n }\n\n switch (source.constructor) {\n case Date:\n // Treat Dates like scalars; if the target date object had any child\n // properties - they will be lost!\n const dateValue = source as Date;\n return new Date(dateValue.getTime());\n\n case Object:\n if (target === undefined) {\n target = {};\n }\n break;\n case Array:\n // Always copy the array source and overwrite the target.\n target = [];\n break;\n\n default:\n // Not a plain Object - treat it as a scalar.\n return source;\n }\n\n for (const prop in source) {\n // use isValidKey to guard against prototype pollution. See https://snyk.io/vuln/SNYK-JS-LODASH-450202\n if (!source.hasOwnProperty(prop) || !isValidKey(prop)) {\n continue;\n }\n (target as Record<string, unknown>)[prop] = deepExtend(\n (target as Record<string, unknown>)[prop],\n (source as Record<string, unknown>)[prop]\n );\n }\n\n return target;\n}\n\nfunction isValidKey(key: string): boolean {\n return key !== '__proto__';\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class Deferred<R> {\n promise: Promise<R>;\n reject: (value?: unknown) => void = () => {};\n resolve: (value?: unknown) => void = () => {};\n constructor() {\n this.promise = new Promise((resolve, reject) => {\n this.resolve = resolve as (value?: unknown) => void;\n this.reject = reject as (value?: unknown) => void;\n });\n }\n\n /**\n * Our API internals are not promiseified and cannot because our callback APIs have subtle expectations around\n * invoking promises inline, which Promises are forbidden to do. This method accepts an optional node-style callback\n * and returns a node-style callback which will resolve or reject the Deferred's promise.\n */\n wrapCallback(\n callback?: (error?: unknown, value?: unknown) => void\n ): (error: unknown, value?: unknown) => void {\n return (error, value?) => {\n if (error) {\n this.reject(error);\n } else {\n this.resolve(value);\n }\n if (typeof callback === 'function') {\n // Attaching noop handler just in case developer wasn't expecting\n // promises\n this.promise.catch(() => {});\n\n // Some of our callbacks don't expect a value and our own tests\n // assert that the parameter length is 1\n if (callback.length === 1) {\n callback(error);\n } else {\n callback(error, value);\n }\n }\n };\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { CONSTANTS } from './constants';\nimport { getDefaults } from './defaults';\n\n/**\n * Returns navigator.userAgent string or '' if it's not defined.\n * @return user agent string\n */\nexport function getUA(): string {\n if (\n typeof navigator !== 'undefined' &&\n typeof navigator['userAgent'] === 'string'\n ) {\n return navigator['userAgent'];\n } else {\n return '';\n }\n}\n\n/**\n * Detect Cordova / PhoneGap / Ionic frameworks on a mobile device.\n *\n * Deliberately does not rely on checking `file://` URLs (as this fails PhoneGap\n * in the Ripple emulator) nor Cordova `onDeviceReady`, which would normally\n * wait for a callback.\n */\nexport function isMobileCordova(): boolean {\n return (\n typeof window !== 'undefined' &&\n // @ts-ignore Setting up an broadly applicable index signature for Window\n // just to deal with this case would probably be a bad idea.\n !!(window['cordova'] || window['phonegap'] || window['PhoneGap']) &&\n /ios|iphone|ipod|ipad|android|blackberry|iemobile/i.test(getUA())\n );\n}\n\n/**\n * Detect Node.js.\n *\n * @return true if Node.js environment is detected or specified.\n */\n// Node detection logic from: https://github.com/iliakan/detect-node/\nexport function isNode(): boolean {\n const forceEnvironment = getDefaults()?.forceEnvironment;\n if (forceEnvironment === 'node') {\n return true;\n } else if (forceEnvironment === 'browser') {\n return false;\n }\n\n try {\n return (\n Object.prototype.toString.call(global.process) === '[object process]'\n );\n } catch (e) {\n return false;\n }\n}\n\n/**\n * Detect Browser Environment\n */\nexport function isBrowser(): boolean {\n return typeof self === 'object' && self.self === self;\n}\n\n/**\n * Detect browser extensions (Chrome and Firefox at least).\n */\ninterface BrowserRuntime {\n id?: unknown;\n}\ndeclare const chrome: { runtime?: BrowserRuntime };\ndeclare const browser: { runtime?: BrowserRuntime };\nexport function isBrowserExtension(): boolean {\n const runtime =\n typeof chrome === 'object'\n ? chrome.runtime\n : typeof browser === 'object'\n ? browser.runtime\n : undefined;\n return typeof runtime === 'object' && runtime.id !== undefined;\n}\n\n/**\n * Detect React Native.\n *\n * @return true if ReactNative environment is detected.\n */\nexport function isReactNative(): boolean {\n return (\n typeof navigator === 'object' && navigator['product'] === 'ReactNative'\n );\n}\n\n/** Detects Electron apps. */\nexport function isElectron(): boolean {\n return getUA().indexOf('Electron/') >= 0;\n}\n\n/** Detects Internet Explorer. */\nexport function isIE(): boolean {\n const ua = getUA();\n return ua.indexOf('MSIE ') >= 0 || ua.indexOf('Trident/') >= 0;\n}\n\n/** Detects Universal Windows Platform apps. */\nexport function isUWP(): boolean {\n return getUA().indexOf('MSAppHost/') >= 0;\n}\n\n/**\n * Detect whether the current SDK build is the Node version.\n *\n * @return true if it's the Node SDK build.\n */\nexport function isNodeSdk(): boolean {\n return CONSTANTS.NODE_CLIENT === true || CONSTANTS.NODE_ADMIN === true;\n}\n\n/** Returns true if we are running in Safari. */\nexport function isSafari(): boolean {\n return (\n !isNode() &&\n navigator.userAgent.includes('Safari') &&\n !navigator.userAgent.includes('Chrome')\n );\n}\n\n/**\n * This method checks if indexedDB is supported by current browser/service worker context\n * @return true if indexedDB is supported by current browser/service worker context\n */\nexport function isIndexedDBAvailable(): boolean {\n try {\n return typeof indexedDB === 'object';\n } catch (e) {\n return false;\n }\n}\n\n/**\n * This method validates browser/sw context for indexedDB by opening a dummy indexedDB database and reject\n * if errors occur during the database open operation.\n *\n * @throws exception if current browser/sw context can't run idb.open (ex: Safari iframe, Firefox\n * private browsing)\n */\nexport function validateIndexedDBOpenable(): Promise<boolean> {\n return new Promise((resolve, reject) => {\n try {\n let preExist: boolean = true;\n const DB_CHECK_NAME =\n 'validate-browser-context-for-indexeddb-analytics-module';\n const request = self.indexedDB.open(DB_CHECK_NAME);\n request.onsuccess = () => {\n request.result.close();\n // delete database only when it doesn't pre-exist\n if (!preExist) {\n self.indexedDB.deleteDatabase(DB_CHECK_NAME);\n }\n resolve(true);\n };\n request.onupgradeneeded = () => {\n preExist = false;\n };\n\n request.onerror = () => {\n reject(request.error?.message || '');\n };\n } catch (error) {\n reject(error);\n }\n });\n}\n\n/**\n *\n * This method checks whether cookie is enabled within current browser\n * @return true if cookie is enabled within current browser\n */\nexport function areCookiesEnabled(): boolean {\n if (typeof navigator === 'undefined' || !navigator.cookieEnabled) {\n return false;\n }\n return true;\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/**\n * Evaluates a JSON string into a javascript object.\n *\n * @param {string} str A string containing JSON.\n * @return {*} The javascript object representing the specified JSON.\n */\nexport function jsonEval(str: string): unknown {\n return JSON.parse(str);\n}\n\n/**\n * Returns JSON representing a javascript object.\n * @param {*} data Javascript object to be stringified.\n * @return {string} The JSON contents of the object.\n */\nexport function stringify(data: unknown): string {\n return JSON.stringify(data);\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { base64Decode } from './crypt';\nimport { jsonEval } from './json';\n\ninterface Claims {\n [key: string]: {};\n}\n\ninterface DecodedToken {\n header: object;\n claims: Claims;\n data: object;\n signature: string;\n}\n\n/**\n * Decodes a Firebase auth. token into constituent parts.\n *\n * Notes:\n * - May return with invalid / incomplete claims if there's no native base64 decoding support.\n * - Doesn't check if the token is actually valid.\n */\nexport const decode = function (token: string): DecodedToken {\n let header = {},\n claims: Claims = {},\n data = {},\n signature = '';\n\n try {\n const parts = token.split('.');\n header = jsonEval(base64Decode(parts[0]) || '') as object;\n claims = jsonEval(base64Decode(parts[1]) || '') as Claims;\n signature = parts[2];\n data = claims['d'] || {};\n delete claims['d'];\n } catch (e) {}\n\n return {\n header,\n claims,\n data,\n signature\n };\n};\n\ninterface DecodedToken {\n header: object;\n claims: Claims;\n data: object;\n signature: string;\n}\n\n/**\n * Decodes a Firebase auth. token and checks the validity of its time-based claims. Will return true if the\n * token is within the time window authorized by the 'nbf' (not-before) and 'iat' (issued-at) claims.\n *\n * Notes:\n * - May return a false negative if there's no native base64 decoding support.\n * - Doesn't check if the token is actually valid.\n */\nexport const isValidTimestamp = function (token: string): boolean {\n const claims: Claims = decode(token).claims;\n const now: number = Math.floor(new Date().getTime() / 1000);\n let validSince: number = 0,\n validUntil: number = 0;\n\n if (typeof claims === 'object') {\n if (claims.hasOwnProperty('nbf')) {\n validSince = claims['nbf'] as number;\n } else if (claims.hasOwnProperty('iat')) {\n validSince = claims['iat'] as number;\n }\n\n if (claims.hasOwnProperty('exp')) {\n validUntil = claims['exp'] as number;\n } else {\n // token will expire after 24h by default\n validUntil = validSince + 86400;\n }\n }\n\n return (\n !!now &&\n !!validSince &&\n !!validUntil &&\n now >= validSince &&\n now <= validUntil\n );\n};\n\n/**\n * Decodes a Firebase auth. token and returns its issued at time if valid, null otherwise.\n *\n * Notes:\n * - May return null if there's no native base64 decoding support.\n * - Doesn't check if the token is actually valid.\n */\nexport const issuedAtTime = function (token: string): number | null {\n const claims: Claims = decode(token).claims;\n if (typeof claims === 'object' && claims.hasOwnProperty('iat')) {\n return claims['iat'] as number;\n }\n return null;\n};\n\n/**\n * Decodes a Firebase auth. token and checks the validity of its format. Expects a valid issued-at time.\n *\n * Notes:\n * - May return a false negative if there's no native base64 decoding support.\n * - Doesn't check if the token is actually valid.\n */\nexport const isValidFormat = function (token: string): boolean {\n const decoded = decode(token),\n claims = decoded.claims;\n\n return !!claims && typeof claims === 'object' && claims.hasOwnProperty('iat');\n};\n\n/**\n * Attempts to peer into an auth token and determine if it's an admin auth token by looking at the claims portion.\n *\n * Notes:\n * - May return a false negative if there's no native base64 decoding support.\n * - Doesn't check if the token is actually valid.\n */\nexport const isAdmin = function (token: string): boolean {\n const claims: Claims = decode(token).claims;\n return typeof claims === 'object' && claims['admin'] === true;\n};\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport function contains<T extends object>(obj: T, key: string): boolean {\n return Object.prototype.hasOwnProperty.call(obj, key);\n}\n\nexport function safeGet<T extends object, K extends keyof T>(\n obj: T,\n key: K\n): T[K] | undefined {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n return obj[key];\n } else {\n return undefined;\n }\n}\n\nexport function isEmpty(obj: object): obj is {} {\n for (const key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n return false;\n }\n }\n return true;\n}\n\nexport function map<K extends string, V, U>(\n obj: { [key in K]: V },\n fn: (value: V, key: K, obj: { [key in K]: V }) => U,\n contextObj?: unknown\n): { [key in K]: U } {\n const res: Partial<{ [key in K]: U }> = {};\n for (const key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n res[key] = fn.call(contextObj, obj[key], key, obj);\n }\n }\n return res as { [key in K]: U };\n}\n\n/**\n * Deep equal two objects. Support Arrays and Objects.\n */\nexport function deepEqual(a: object, b: object): boolean {\n if (a === b) {\n return true;\n }\n\n const aKeys = Object.keys(a);\n const bKeys = Object.keys(b);\n for (const k of aKeys) {\n if (!bKeys.includes(k)) {\n return false;\n }\n\n const aProp = (a as Record<string, unknown>)[k];\n const bProp = (b as Record<string, unknown>)[k];\n if (isObject(aProp) && isObject(bProp)) {\n if (!deepEqual(aProp, bProp)) {\n return false;\n }\n } else if (aProp !== bProp) {\n return false;\n }\n }\n\n for (const k of bKeys) {\n if (!aKeys.includes(k)) {\n return false;\n }\n }\n return true;\n}\n\nfunction isObject(thing: unknown): thing is object {\n return thing !== null && typeof thing === 'object';\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/**\n * @fileoverview SHA-1 cryptographic hash.\n * Variable names follow the notation in FIPS PUB 180-3:\n * http://csrc.nist.gov/publications/fips/fips180-3/fips180-3_final.pdf.\n *\n * Usage:\n * var sha1 = new sha1();\n * sha1.update(bytes);\n * var hash = sha1.digest();\n *\n * Performance:\n * Chrome 23: ~400 Mbit/s\n * Firefox 16: ~250 Mbit/s\n *\n */\n\n/**\n * SHA-1 cryptographic hash constructor.\n *\n * The properties declared here are discussed in the above algorithm document.\n * @constructor\n * @final\n * @struct\n */\nexport class Sha1 {\n /**\n * Holds the previous values of accumulated variables a-e in the compress_\n * function.\n * @private\n */\n private chain_: number[] = [];\n\n /**\n * A buffer holding the partially computed hash result.\n * @private\n */\n private buf_: number[] = [];\n\n /**\n * An array of 80 bytes, each a part of the message to be hashed. Referred to\n * as the message schedule in the docs.\n * @private\n */\n private W_: number[] = [];\n\n /**\n * Contains data needed to pad messages less than 64 bytes.\n * @private\n */\n private pad_: number[] = [];\n\n /**\n * @private {number}\n */\n private inbuf_: number = 0;\n\n /**\n * @private {number}\n */\n private total_: number = 0;\n\n blockSize: number;\n\n constructor() {\n this.blockSize = 512 / 8;\n\n this.pad_[0] = 128;\n for (let i = 1; i < this.blockSize; ++i) {\n this.pad_[i] = 0;\n }\n\n this.reset();\n }\n\n reset(): void {\n this.chain_[0] = 0x67452301;\n this.chain_[1] = 0xefcdab89;\n this.chain_[2] = 0x98badcfe;\n this.chain_[3] = 0x10325476;\n this.chain_[4] = 0xc3d2e1f0;\n\n this.inbuf_ = 0;\n this.total_ = 0;\n }\n\n /**\n * Internal compress helper function.\n * @param buf Block to compress.\n * @param offset Offset of the block in the buffer.\n * @private\n */\n compress_(buf: number[] | Uint8Array | string, offset?: number): void {\n if (!offset) {\n offset = 0;\n }\n\n const W = this.W_;\n\n // get 16 big endian words\n if (typeof buf === 'string') {\n for (let i = 0; i < 16; i++) {\n // TODO(user): [bug 8140122] Recent versions of Safari for Mac OS and iOS\n // have a bug that turns the post-increment ++ operator into pre-increment\n // during JIT compilation. We have code that depends heavily on SHA-1 for\n // correctness and which is affected by this bug, so I've removed all uses\n // of post-increment ++ in which the result value is used. We can revert\n // this change once the Safari bug\n // (https://bugs.webkit.org/show_bug.cgi?id=109036) has been fixed and\n // most clients have been updated.\n W[i] =\n (buf.charCodeAt(offset) << 24) |\n (buf.charCodeAt(offset + 1) << 16) |\n (buf.charCodeAt(offset + 2) << 8) |\n buf.charCodeAt(offset + 3);\n offset += 4;\n }\n } else {\n for (let i = 0; i < 16; i++) {\n W[i] =\n (buf[offset] << 24) |\n (buf[offset + 1] << 16) |\n (buf[offset + 2] << 8) |\n buf[offset + 3];\n offset += 4;\n }\n }\n\n // expand to 80 words\n for (let i = 16; i < 80; i++) {\n const t = W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16];\n W[i] = ((t << 1) | (t >>> 31)) & 0xffffffff;\n }\n\n let a = this.chain_[0];\n let b = this.chain_[1];\n let c = this.chain_[2];\n let d = this.chain_[3];\n let e = this.chain_[4];\n let f, k;\n\n // TODO(user): Try to unroll this loop to speed up the computation.\n for (let i = 0; i < 80; i++) {\n if (i < 40) {\n if (i < 20) {\n f = d ^ (b & (c ^ d));\n k = 0x5a827999;\n } else {\n f = b ^ c ^ d;\n k = 0x6ed9eba1;\n }\n } else {\n if (i < 60) {\n f = (b & c) | (d & (b | c));\n k = 0x8f1bbcdc;\n } else {\n f = b ^ c ^ d;\n k = 0xca62c1d6;\n }\n }\n\n const t = (((a << 5) | (a >>> 27)) + f + e + k + W[i]) & 0xffffffff;\n e = d;\n d = c;\n c = ((b << 30) | (b >>> 2)) & 0xffffffff;\n b = a;\n a = t;\n }\n\n this.chain_[0] = (this.chain_[0] + a) & 0xffffffff;\n this.chain_[1] = (this.chain_[1] + b) & 0xffffffff;\n this.chain_[2] = (this.chain_[2] + c) & 0xffffffff;\n this.chain_[3] = (this.chain_[3] + d) & 0xffffffff;\n this.chain_[4] = (this.chain_[4] + e) & 0xffffffff;\n }\n\n update(bytes?: number[] | Uint8Array | string, length?: number): void {\n // TODO(johnlenz): tighten the function signature and remove this check\n if (bytes == null) {\n return;\n }\n\n if (length === undefined) {\n length = bytes.length;\n }\n\n const lengthMinusBlock = length - this.blockSize;\n let n = 0;\n // Using local instead of member variables gives ~5% speedup on Firefox 16.\n const buf = this.buf_;\n let inbuf = this.inbuf_;\n\n // The outer while loop should execute at most twice.\n while (n < length) {\n // When we have no data in the block to top up, we can directly process the\n // input buffer (assuming it contains sufficient data). This gives ~25%\n // speedup on Chrome 23 and ~15% speedup on Firefox 16, but requires that\n // the data is provided in large chunks (or in multiples of 64 bytes).\n if (inbuf === 0) {\n while (n <= lengthMinusBlock) {\n this.compress_(bytes, n);\n n += this.blockSize;\n }\n }\n\n if (typeof bytes === 'string') {\n while (n < length) {\n buf[inbuf] = bytes.charCodeAt(n);\n ++inbuf;\n ++n;\n if (inbuf === this.blockSize) {\n this.compress_(buf);\n inbuf = 0;\n // Jump to the outer loop so we use the full-block optimization.\n break;\n }\n }\n } else {\n while (n < length) {\n buf[inbuf] = bytes[n];\n ++inbuf;\n ++n;\n if (inbuf === this.blockSize) {\n this.compress_(buf);\n inbuf = 0;\n // Jump to the outer loop so we use the full-block optimization.\n break;\n }\n }\n }\n }\n\n this.inbuf_ = inbuf;\n this.total_ += length;\n }\n\n /** @override */\n digest(): number[] {\n const digest: number[] = [];\n let totalBits = this.total_ * 8;\n\n // Add pad 0x80 0x00*.\n if (this.inbuf_ < 56) {\n this.update(this.pad_, 56 - this.inbuf_);\n } else {\n this.update(this.pad_, this.blockSize - (this.inbuf_ - 56));\n }\n\n // Add # bits.\n for (let i = this.blockSize - 1; i >= 56; i--) {\n this.buf_[i] = totalBits & 255;\n totalBits /= 256; // Don't use bit-shifting here!\n }\n\n this.compress_(this.buf_);\n\n let n = 0;\n for (let i = 0; i < 5; i++) {\n for (let j = 24; j >= 0; j -= 8) {\n digest[n] = (this.chain_[i] >> j) & 255;\n ++n;\n }\n }\n return digest;\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/**\n * Check to make sure the appropriate number of arguments are provided for a public function.\n * Throws an error if it fails.\n *\n * @param fnName The function name\n * @param minCount The minimum number of arguments to allow for the function call\n * @param maxCount The maximum number of argument to allow for the function call\n * @param argCount The actual number of arguments provided.\n */\nexport const validateArgCount = function (\n fnName: string,\n minCount: number,\n maxCount: number,\n argCount: number\n): void {\n let argError;\n if (argCount < minCount) {\n argError = 'at least ' + minCount;\n } else if (argCount > maxCount) {\n argError = maxCount === 0 ? 'none' : 'no more than ' + maxCount;\n }\n if (argError) {\n const error =\n fnName +\n ' failed: Was called with ' +\n argCount +\n (argCount === 1 ? ' argument.' : ' arguments.') +\n ' Expects ' +\n argError +\n '.';\n throw new Error(error);\n }\n};\n\n/**\n * Generates a string to prefix an error message about failed argument validation\n *\n * @param fnName The function name\n * @param argName The name of the argument\n * @return The prefix to add to the error thrown for validation.\n */\nexport function errorPrefix(fnName: string, argName: string): string {\n return `${fnName} failed: ${argName} argument `;\n}\n\n/**\n * @param fnName\n * @param argumentNumber\n * @param namespace\n * @param optional\n */\nexport function validateNamespace(\n fnName: string,\n namespace: string,\n optional: boolean\n): void {\n if (optional && !namespace) {\n return;\n }\n if (typeof namespace !== 'string') {\n //TODO: I should do more validation here. We only allow certain chars in namespaces.\n throw new Error(\n errorPrefix(fnName, 'namespace') + 'must be a valid firebase namespace.'\n );\n }\n}\n\nexport function validateCallback(\n fnName: string,\n argumentName: string,\n // eslint-disable-next-line @typescript-eslint/ban-types\n callback: Function,\n optional: boolean\n): void {\n if (optional && !callback) {\n return;\n }\n if (typeof callback !== 'function') {\n throw new Error(\n errorPrefix(fnName, argumentName) + 'must be a valid function.'\n );\n }\n}\n\nexport function validateContextObject(\n fnName: string,\n argumentName: string,\n context: unknown,\n optional: boolean\n): void {\n if (optional && !context) {\n return;\n }\n if (typeof context !== 'object' || context === null) {\n throw new Error(\n errorPrefix(fnName, argumentName) + 'must be a valid context object.'\n );\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from './assert';\n\n// Code originally came from goog.crypt.stringToUtf8ByteArray, but for some reason they\n// automatically replaced '\\r\\n' with '\\n', and they didn't handle surrogate pairs,\n// so it's been modified.\n\n// Note that not all Unicode characters appear as single characters in JavaScript strings.\n// fromCharCode returns the UTF-16 encoding of a character - so some Unicode characters\n// use 2 characters in Javascript. All 4-byte UTF-8 characters begin with a first\n// character in the range 0xD800 - 0xDBFF (the first character of a so-called surrogate\n// pair).\n// See http://www.ecma-international.org/ecma-262/5.1/#sec-15.1.3\n\n/**\n * @param {string} str\n * @return {Array}\n */\nexport const stringToByteArray = function (str: string): number[] {\n const out: number[] = [];\n let p = 0;\n for (let i = 0; i < str.length; i++) {\n let c = str.charCodeAt(i);\n\n // Is this the lead surrogate in a surrogate pair?\n if (c >= 0xd800 && c <= 0xdbff) {\n const high = c - 0xd800; // the high 10 bits.\n i++;\n assert(i < str.length, 'Surrogate pair missing trail surrogate.');\n const low = str.charCodeAt(i) - 0xdc00; // the low 10 bits.\n c = 0x10000 + (high << 10) + low;\n }\n\n if (c < 128) {\n out[p++] = c;\n } else if (c < 2048) {\n out[p++] = (c >> 6) | 192;\n out[p++] = (c & 63) | 128;\n } else if (c < 65536) {\n out[p++] = (c >> 12) | 224;\n out[p++] = ((c >> 6) & 63) | 128;\n out[p++] = (c & 63) | 128;\n } else {\n out[p++] = (c >> 18) | 240;\n out[p++] = ((c >> 12) & 63) | 128;\n out[p++] = ((c >> 6) & 63) | 128;\n out[p++] = (c & 63) | 128;\n }\n }\n return out;\n};\n\n/**\n * Calculate length without actually converting; useful for doing cheaper validation.\n * @param {string} str\n * @return {number}\n */\nexport const stringLength = function (str: string): number {\n let p = 0;\n for (let i = 0; i < str.length; i++) {\n const c = str.charCodeAt(i);\n if (c < 128) {\n p++;\n } else if (c < 2048) {\n p += 2;\n } else if (c >= 0xd800 && c <= 0xdbff) {\n // Lead surrogate of a surrogate pair. The pair together will take 4 bytes to represent.\n p += 4;\n i++; // skip trail surrogate.\n } else {\n p += 3;\n }\n }\n return p;\n};\n","/**\n * @license\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport interface Compat<T> {\n _delegate: T;\n}\n\nexport function getModularInstance<ExpService>(\n service: Compat<ExpService> | ExpService\n): ExpService {\n if (service && (service as Compat<ExpService>)._delegate) {\n return (service as Compat<ExpService>)._delegate;\n } else {\n return service as ExpService;\n }\n}\n","/**\n * @license\n * Copyright 2019 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport {\n InstantiationMode,\n InstanceFactory,\n ComponentType,\n Dictionary,\n Name,\n onInstanceCreatedCallback\n} from './types';\n\n/**\n * Component for service name T, e.g. `auth`, `auth-internal`\n */\nexport class Component<T extends Name = Name> {\n multipleInstances = false;\n /**\n * Properties to be added to the service namespace\n */\n serviceProps: Dictionary = {};\n\n instantiationMode = InstantiationMode.LAZY;\n\n onInstanceCreated: onInstanceCreatedCallback<T> | null = null;\n\n /**\n *\n * @param name The public service name, e.g. app, auth, firestore, database\n * @param instanceFactory Service factory responsible for creating the public interface\n * @param type whether the service provided by the component is public or private\n */\n constructor(\n readonly name: T,\n readonly instanceFactory: InstanceFactory<T>,\n readonly type: ComponentType\n ) {}\n\n setInstantiationMode(mode: InstantiationMode): this {\n this.instantiationMode = mode;\n return this;\n }\n\n setMultipleInstances(multipleInstances: boolean): this {\n this.multipleInstances = multipleInstances;\n return this;\n }\n\n setServiceProps(props: Dictionary): this {\n this.serviceProps = props;\n return this;\n }\n\n setInstanceCreatedCallback(callback: onInstanceCreatedCallback<T>): this {\n this.onInstanceCreated = callback;\n return this;\n }\n}\n","/**\n * @license\n * Copyright 2019 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport const DEFAULT_ENTRY_NAME = '[DEFAULT]';\n","/**\n * @license\n * Copyright 2019 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Deferred } from '@firebase/util';\nimport { ComponentContainer } from './component_container';\nimport { DEFAULT_ENTRY_NAME } from './constants';\nimport {\n InitializeOptions,\n InstantiationMode,\n Name,\n NameServiceMapping,\n OnInitCallBack\n} from './types';\nimport { Component } from './component';\n\n/**\n * Provider for instance for service name T, e.g. 'auth', 'auth-internal'\n * NameServiceMapping[T] is an alias for the type of the instance\n */\nexport class Provider<T extends Name> {\n private component: Component<T> | null = null;\n private readonly instances: Map<string, NameServiceMapping[T]> = new Map();\n private readonly instancesDeferred: Map<\n string,\n Deferred<NameServiceMapping[T]>\n > = new Map();\n private readonly instancesOptions: Map<string, Record<string, unknown>> =\n new Map();\n private onInitCallbacks: Map<string, Set<OnInitCallBack<T>>> = new Map();\n\n constructor(\n private readonly name: T,\n private readonly container: ComponentContainer\n ) {}\n\n /**\n * @param identifier A provider can provide mulitple instances of a service\n * if this.component.multipleInstances is true.\n */\n get(identifier?: string): Promise<NameServiceMapping[T]> {\n // if multipleInstances is not supported, use the default name\n const normalizedIdentifier = this.normalizeInstanceIdentifier(identifier);\n\n if (!this.instancesDeferred.has(normalizedIdentifier)) {\n const deferred = new Deferred<NameServiceMapping[T]>();\n this.instancesDeferred.set(normalizedIdentifier, deferred);\n\n if (\n this.isInitialized(normalizedIdentifier) ||\n this.shouldAutoInitialize()\n ) {\n // initialize the service if it can be auto-initialized\n try {\n const instance = this.getOrInitializeService({\n instanceIdentifier: normalizedIdentifier\n });\n if (instance) {\n deferred.resolve(instance);\n }\n } catch (e) {\n // when the instance factory throws an exception during get(), it should not cause\n // a fatal error. We just return the unresolved promise in this case.\n }\n }\n }\n\n return this.instancesDeferred.get(normalizedIdentifier)!.promise;\n }\n\n /**\n *\n * @param options.identifier A provider can provide mulitple instances of a service\n * if this.component.multipleInstances is true.\n * @param options.optional If optional is false or not provided, the method throws an error when\n * the service is not immediately available.\n * If optional is true, the method returns null if the service is not immediately available.\n */\n getImmediate(options: {\n identifier?: string;\n optional: true;\n }): NameServiceMapping[T] | null;\n getImmediate(options?: {\n identifier?: string;\n optional?: false;\n }): NameServiceMapping[T];\n getImmediate(options?: {\n identifier?: string;\n optional?: boolean;\n }): NameServiceMapping[T] | null {\n // if multipleInstances is not supported, use the default name\n const normalizedIdentifier = this.normalizeInstanceIdentifier(\n options?.identifier\n );\n const optional = options?.optional ?? false;\n\n if (\n this.isInitialized(normalizedIdentifier) ||\n this.shouldAutoInitialize()\n ) {\n try {\n return this.getOrInitializeService({\n instanceIdentifier: normalizedIdentifier\n });\n } catch (e) {\n if (optional) {\n return null;\n } else {\n throw e;\n }\n }\n } else {\n // In case a component is not initialized and should/can not be auto-initialized at the moment, return null if the optional flag is set, or throw\n if (optional) {\n return null;\n } else {\n throw Error(`Service ${this.name} is not available`);\n }\n }\n }\n\n getComponent(): Component<T> | null {\n return this.component;\n }\n\n setComponent(component: Component<T>): void {\n if (component.name !== this.name) {\n throw Error(\n `Mismatching Component ${component.name} for Provider ${this.name}.`\n );\n }\n\n if (this.component) {\n throw Error(`Component for ${this.name} has already been provided`);\n }\n\n this.component = component;\n\n // return early without attempting to initialize the component if the component requires explicit initialization (calling `Provider.initialize()`)\n if (!this.shouldAutoInitialize()) {\n return;\n }\n\n // if the service is eager, initialize the default instance\n if (isComponentEager(component)) {\n try {\n this.getOrInitializeService({ instanceIdentifier: DEFAULT_ENTRY_NAME });\n } catch (e) {\n // when the instance factory for an eager Component throws an exception during the eager\n // initialization, it should not cause a fatal error.\n // TODO: Investigate if we need to make it configurable, because some component may want to cause\n // a fatal error in this case?\n }\n }\n\n // Create service instances for the pending promises and resolve them\n // NOTE: if this.multipleInstances is false, only the default instance will be created\n // and all promises with resolve with it regardless of the identifier.\n for (const [\n instanceIdentifier,\n instanceDeferred\n ] of this.instancesDeferred.entries()) {\n const normalizedIdentifier =\n this.normalizeInstanceIdentifier(instanceIdentifier);\n\n try {\n // `getOrInitializeService()` should always return a valid instance since a component is guaranteed. use ! to make typescript happy.\n const instance = this.getOrInitializeService({\n instanceIdentifier: normalizedIdentifier\n })!;\n instanceDeferred.resolve(instance);\n } catch (e) {\n // when the instance factory throws an exception, it should not cause\n // a fatal error. We just leave the promise unresolved.\n }\n }\n }\n\n clearInstance(identifier: string = DEFAULT_ENTRY_NAME): void {\n this.instancesDeferred.delete(identifier);\n this.instancesOptions.delete(identifier);\n this.instances.delete(identifier);\n }\n\n // app.delete() will call this method on every provider to delete the services\n // TODO: should we mark the provider as deleted?\n async delete(): Promise<void> {\n const services = Array.from(this.instances.values());\n\n await Promise.all([\n ...services\n .filter(service => 'INTERNAL' in service) // legacy services\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n .map(service => (service as any).INTERNAL!.delete()),\n ...services\n .filter(service => '_delete' in service) // modularized services\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n .map(service => (service as any)._delete())\n ]);\n }\n\n isComponentSet(): boolean {\n return this.component != null;\n }\n\n isInitialized(identifier: string = DEFAULT_ENTRY_NAME): boolean {\n return this.instances.has(identifier);\n }\n\n getOptions(identifier: string = DEFAULT_ENTRY_NAME): Record<string, unknown> {\n return this.instancesOptions.get(identifier) || {};\n }\n\n initialize(opts: InitializeOptions = {}): NameServiceMapping[T] {\n const { options = {} } = opts;\n const normalizedIdentifier = this.normalizeInstanceIdentifier(\n opts.instanceIdentifier\n );\n if (this.isInitialized(normalizedIdentifier)) {\n throw Error(\n `${this.name}(${normalizedIdentifier}) has already been initialized`\n );\n }\n\n if (!this.isComponentSet()) {\n throw Error(`Component ${this.name} has not been registered yet`);\n }\n\n const instance = this.getOrInitializeService({\n instanceIdentifier: normalizedIdentifier,\n options\n })!;\n\n // resolve any pending promise waiting for the service instance\n for (const [\n instanceIdentifier,\n instanceDeferred\n ] of this.instancesDeferred.entries()) {\n const normalizedDeferredIdentifier =\n this.normalizeInstanceIdentifier(instanceIdentifier);\n if (normalizedIdentifier === normalizedDeferredIdentifier) {\n instanceDeferred.resolve(instance);\n }\n }\n\n return instance;\n }\n\n /**\n *\n * @param callback - a function that will be invoked after the provider has been initialized by calling provider.initialize().\n * The function is invoked SYNCHRONOUSLY, so it should not execute any longrunning tasks in order to not block the program.\n *\n * @param identifier An optional instance identifier\n * @returns a function to unregister the callback\n */\n onInit(callback: OnInitCallBack<T>, identifier?: string): () => void {\n const normalizedIdentifier = this.normalizeInstanceIdentifier(identifier);\n const existingCallbacks =\n this.onInitCallbacks.get(normalizedIdentifier) ??\n new Set<OnInitCallBack<T>>();\n existingCallbacks.add(callback);\n this.onInitCallbacks.set(normalizedIdentifier, existingCallbacks);\n\n const existingInstance = this.instances.get(normalizedIdentifier);\n if (existingInstance) {\n callback(existingInstance, normalizedIdentifier);\n }\n\n return () => {\n existingCallbacks.delete(callback);\n };\n }\n\n /**\n * Invoke onInit callbacks synchronously\n * @param instance the service instance`\n */\n private invokeOnInitCallbacks(\n instance: NameServiceMapping[T],\n identifier: string\n ): void {\n const callbacks = this.onInitCallbacks.get(identifier);\n if (!callbacks) {\n return;\n }\n for (const callback of callbacks) {\n try {\n callback(instance, identifier);\n } catch {\n // ignore errors in the onInit callback\n }\n }\n }\n\n private getOrInitializeService({\n instanceIdentifier,\n options = {}\n }: {\n instanceIdentifier: string;\n options?: Record<string, unknown>;\n }): NameServiceMapping[T] | null {\n let instance = this.instances.get(instanceIdentifier);\n if (!instance && this.component) {\n instance = this.component.instanceFactory(this.container, {\n instanceIdentifier: normalizeIdentifierForFactory(instanceIdentifier),\n options\n });\n this.instances.set(instanceIdentifier, instance);\n this.instancesOptions.set(instanceIdentifier, options);\n\n /**\n * Invoke onInit listeners.\n * Note this.component.onInstanceCreated is different, which is used by the component creator,\n * while onInit listeners are registered by consumers of the provider.\n */\n this.invokeOnInitCallbacks(instance, instanceIdentifier);\n\n /**\n * Order is important\n * onInstanceCreated() should be called after this.instances.set(instanceIdentifier, instance); which\n * makes `isInitialized()` return true.\n */\n if (this.component.onInstanceCreated) {\n try {\n this.component.onInstanceCreated(\n this.container,\n instanceIdentifier,\n instance\n );\n } catch {\n // ignore errors in the onInstanceCreatedCallback\n }\n }\n }\n\n return instance || null;\n }\n\n private normalizeInstanceIdentifier(\n identifier: string = DEFAULT_ENTRY_NAME\n ): string {\n if (this.component) {\n return this.component.multipleInstances ? identifier : DEFAULT_ENTRY_NAME;\n } else {\n return identifier; // assume multiple instances are supported before the component is provided.\n }\n }\n\n private shouldAutoInitialize(): boolean {\n return (\n !!this.component &&\n this.component.instantiationMode !== InstantiationMode.EXPLICIT\n );\n }\n}\n\n// undefined should be passed to the service factory for the default instance\nfunction normalizeIdentifierForFactory(identifier: string): string | undefined {\n return identifier === DEFAULT_ENTRY_NAME ? undefined : identifier;\n}\n\nfunction isComponentEager<T extends Name>(component: Component<T>): boolean {\n return component.instantiationMode === InstantiationMode.EAGER;\n}\n","/**\n * @license\n * Copyright 2019 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Provider } from './provider';\nimport { Component } from './component';\nimport { Name } from './types';\n\n/**\n * ComponentContainer that provides Providers for service name T, e.g. `auth`, `auth-internal`\n */\nexport class ComponentContainer {\n private readonly providers = new Map<string, Provider<Name>>();\n\n constructor(private readonly name: string) {}\n\n /**\n *\n * @param component Component being added\n * @param overwrite When a component with the same name has already been registered,\n * if overwrite is true: overwrite the existing component with the new component and create a new\n * provider with the new component. It can be useful in tests where you want to use different mocks\n * for different tests.\n * if overwrite is false: throw an exception\n */\n addComponent<T extends Name>(component: Component<T>): void {\n const provider = this.getProvider(component.name);\n if (provider.isComponentSet()) {\n throw new Error(\n `Component ${component.name} has already been registered with ${this.name}`\n );\n }\n\n provider.setComponent(component);\n }\n\n addOrOverwriteComponent<T extends Name>(component: Component<T>): void {\n const provider = this.getProvider(component.name);\n if (provider.isComponentSet()) {\n // delete the existing provider from the container, so we can register the new component\n this.providers.delete(component.name);\n }\n\n this.addComponent(component);\n }\n\n /**\n * getProvider provides a type safe interface where it can only be called with a field name\n * present in NameServiceMapping interface.\n *\n * Firebase SDKs providing services should extend NameServiceMapping interface to register\n * themselves.\n */\n getProvider<T extends Name>(name: T): Provider<T> {\n if (this.providers.has(name)) {\n return this.providers.get(name) as unknown as Provider<T>;\n }\n\n // create a Provider for a service that hasn't registered with Firebase\n const provider = new Provider<T>(name, this);\n this.providers.set(name, provider as unknown as Provider<Name>);\n\n return provider as Provider<T>;\n }\n\n getProviders(): Array<Provider<Name>> {\n return Array.from(this.providers.values());\n }\n}\n","/**\n * @license\n * Copyright 2019 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/** The semver (www.semver.org) version of the SDK. */\nexport let SDK_VERSION = '';\n\n/**\n * SDK_VERSION should be set before any database instance is created\n * @internal\n */\nexport function setSDKVersion(version: string): void {\n SDK_VERSION = version;\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { jsonEval, stringify } from '@firebase/util';\n\n/**\n * Wraps a DOM Storage object and:\n * - automatically encode objects as JSON strings before storing them to allow us to store arbitrary types.\n * - prefixes names with \"firebase:\" to avoid collisions with app data.\n *\n * We automatically (see storage.js) create two such wrappers, one for sessionStorage,\n * and one for localStorage.\n *\n */\nexport class DOMStorageWrapper {\n // Use a prefix to avoid collisions with other stuff saved by the app.\n private prefix_ = 'firebase:';\n\n /**\n * @param domStorage_ - The underlying storage object (e.g. localStorage or sessionStorage)\n */\n constructor(private domStorage_: Storage) {}\n\n /**\n * @param key - The key to save the value under\n * @param value - The value being stored, or null to remove the key.\n */\n set(key: string, value: unknown | null) {\n if (value == null) {\n this.domStorage_.removeItem(this.prefixedName_(key));\n } else {\n this.domStorage_.setItem(this.prefixedName_(key), stringify(value));\n }\n }\n\n /**\n * @returns The value that was stored under this key, or null\n */\n get(key: string): unknown {\n const storedVal = this.domStorage_.getItem(this.prefixedName_(key));\n if (storedVal == null) {\n return null;\n } else {\n return jsonEval(storedVal);\n }\n }\n\n remove(key: string) {\n this.domStorage_.removeItem(this.prefixedName_(key));\n }\n\n isInMemoryStorage: boolean;\n\n prefixedName_(name: string): string {\n return this.prefix_ + name;\n }\n\n toString(): string {\n return this.domStorage_.toString();\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { contains } from '@firebase/util';\n\n/**\n * An in-memory storage implementation that matches the API of DOMStorageWrapper\n * (TODO: create interface for both to implement).\n */\nexport class MemoryStorage {\n private cache_: { [k: string]: unknown } = {};\n\n set(key: string, value: unknown | null) {\n if (value == null) {\n delete this.cache_[key];\n } else {\n this.cache_[key] = value;\n }\n }\n\n get(key: string): unknown {\n if (contains(this.cache_, key)) {\n return this.cache_[key];\n }\n return null;\n }\n\n remove(key: string) {\n delete this.cache_[key];\n }\n\n isInMemoryStorage = true;\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DOMStorageWrapper } from './DOMStorageWrapper';\nimport { MemoryStorage } from './MemoryStorage';\n\ndeclare const window: Window;\n\n/**\n * Helper to create a DOMStorageWrapper or else fall back to MemoryStorage.\n * TODO: Once MemoryStorage and DOMStorageWrapper have a shared interface this method annotation should change\n * to reflect this type\n *\n * @param domStorageName - Name of the underlying storage object\n * (e.g. 'localStorage' or 'sessionStorage').\n * @returns Turning off type information until a common interface is defined.\n */\nconst createStoragefor = function (\n domStorageName: string\n): DOMStorageWrapper | MemoryStorage {\n try {\n // NOTE: just accessing \"localStorage\" or \"window['localStorage']\" may throw a security exception,\n // so it must be inside the try/catch.\n if (\n typeof window !== 'undefined' &&\n typeof window[domStorageName] !== 'undefined'\n ) {\n // Need to test cache. Just because it's here doesn't mean it works\n const domStorage = window[domStorageName];\n domStorage.setItem('firebase:sentinel', 'cache');\n domStorage.removeItem('firebase:sentinel');\n return new DOMStorageWrapper(domStorage);\n }\n } catch (e) {}\n\n // Failed to create wrapper. Just return in-memory storage.\n // TODO: log?\n return new MemoryStorage();\n};\n\n/** A storage object that lasts across sessions */\nexport const PersistentStorage = createStoragefor('localStorage');\n\n/** A storage object that only lasts one session */\nexport const SessionStorage = createStoragefor('sessionStorage');\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert, contains } from '@firebase/util';\n\nimport { Indexable } from '../util/misc';\nimport { doubleToIEEE754String } from '../util/util';\n\nimport { Node } from './Node';\n\nlet MAX_NODE: Node;\n\nexport function setMaxNode(val: Node) {\n MAX_NODE = val;\n}\n\nexport const priorityHashText = function (priority: string | number): string {\n if (typeof priority === 'number') {\n return 'number:' + doubleToIEEE754String(priority);\n } else {\n return 'string:' + priority;\n }\n};\n\n/**\n * Validates that a priority snapshot Node is valid.\n */\nexport const validatePriorityNode = function (priorityNode: Node) {\n if (priorityNode.isLeafNode()) {\n const val = priorityNode.val();\n assert(\n typeof val === 'string' ||\n typeof val === 'number' ||\n (typeof val === 'object' && contains(val as Indexable, '.sv')),\n 'Priority must be a string or number.'\n );\n } else {\n assert(\n priorityNode === MAX_NODE || priorityNode.isEmpty(),\n 'priority of unexpected type.'\n );\n }\n // Don't call getPriority() on MAX_NODE to avoid hitting assertion.\n assert(\n priorityNode === MAX_NODE || priorityNode.getPriority().isEmpty(),\n \"Priority nodes can't have a priority of their own.\"\n );\n};\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { nameCompare, MAX_NAME } from '../../util/util';\nimport { LeafNode } from '../LeafNode';\nimport { NamedNode, Node } from '../Node';\n\nimport { Index } from './Index';\n\nlet nodeFromJSON: (a: unknown) => Node;\nlet MAX_NODE: Node;\n\nexport function setNodeFromJSON(val: (a: unknown) => Node) {\n nodeFromJSON = val;\n}\n\nexport function setMaxNode(val: Node) {\n MAX_NODE = val;\n}\n\nexport class PriorityIndex extends Index {\n compare(a: NamedNode, b: NamedNode): number {\n const aPriority = a.node.getPriority();\n const bPriority = b.node.getPriority();\n const indexCmp = aPriority.compareTo(bPriority);\n if (indexCmp === 0) {\n return nameCompare(a.name, b.name);\n } else {\n return indexCmp;\n }\n }\n isDefinedOn(node: Node): boolean {\n return !node.getPriority().isEmpty();\n }\n indexedValueChanged(oldNode: Node, newNode: Node): boolean {\n return !oldNode.getPriority().equals(newNode.getPriority());\n }\n minPost(): NamedNode {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return (NamedNode as any).MIN;\n }\n maxPost(): NamedNode {\n return new NamedNode(MAX_NAME, new LeafNode('[PRIORITY-POST]', MAX_NODE));\n }\n\n makePost(indexValue: unknown, name: string): NamedNode {\n const priorityNode = nodeFromJSON(indexValue);\n return new NamedNode(name, new LeafNode('[PRIORITY-POST]', priorityNode));\n }\n\n /**\n * @returns String representation for inclusion in a query spec\n */\n toString(): string {\n return '.priority';\n }\n}\n\nexport const PRIORITY_INDEX = new PriorityIndex();\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Path } from '../util/Path';\n\n/**\n *\n * @enum\n */\nexport enum OperationType {\n OVERWRITE,\n MERGE,\n ACK_USER_WRITE,\n LISTEN_COMPLETE\n}\n\n/**\n * @interface\n */\nexport interface Operation {\n source: OperationSource;\n\n type: OperationType;\n\n path: Path;\n\n operationForChild(childName: string): Operation | null;\n}\n\nexport interface OperationSource {\n fromUser: boolean;\n fromServer: boolean;\n queryId: string | null;\n tagged: boolean;\n}\n\nexport function newOperationSourceUser(): OperationSource {\n return {\n fromUser: true,\n fromServer: false,\n queryId: null,\n tagged: false\n };\n}\n\nexport function newOperationSourceServer(): OperationSource {\n return {\n fromUser: false,\n fromServer: true,\n queryId: null,\n tagged: false\n };\n}\n\nexport function newOperationSourceServerTaggedQuery(\n queryId: string\n): OperationSource {\n return {\n fromUser: false,\n fromServer: true,\n queryId,\n tagged: true\n };\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\nimport { ReferenceConstructor } from '../api/Reference';\n\nimport { Operation } from './operation/Operation';\nimport { ChildrenNode } from './snap/ChildrenNode';\nimport { Node } from './snap/Node';\nimport { Path } from './util/Path';\nimport { CacheNode } from './view/CacheNode';\nimport { Event } from './view/Event';\nimport { EventRegistration, QueryContext } from './view/EventRegistration';\nimport {\n View,\n viewAddEventRegistration,\n viewApplyOperation,\n viewGetCompleteServerCache,\n viewGetInitialEvents,\n viewIsEmpty,\n viewRemoveEventRegistration\n} from './view/View';\nimport { newViewCache } from './view/ViewCache';\nimport {\n WriteTreeRef,\n writeTreeRefCalcCompleteEventCache,\n writeTreeRefCalcCompleteEventChildren\n} from './WriteTree';\n\nlet referenceConstructor: ReferenceConstructor;\n\n/**\n * SyncPoint represents a single location in a SyncTree with 1 or more event registrations, meaning we need to\n * maintain 1 or more Views at this location to cache server data and raise appropriate events for server changes\n * and user writes (set, transaction, update).\n *\n * It's responsible for:\n * - Maintaining the set of 1 or more views necessary at this location (a SyncPoint with 0 views should be removed).\n * - Proxying user / server operations to the views as appropriate (i.e. applyServerOverwrite,\n * applyUserOverwrite, etc.)\n */\nexport class SyncPoint {\n /**\n * The Views being tracked at this location in the tree, stored as a map where the key is a\n * queryId and the value is the View for that query.\n *\n * NOTE: This list will be quite small (usually 1, but perhaps 2 or 3; any more is an odd use case).\n */\n readonly views: Map<string, View> = new Map();\n}\n\nexport function syncPointSetReferenceConstructor(\n val: ReferenceConstructor\n): void {\n assert(\n !referenceConstructor,\n '__referenceConstructor has already been defined'\n );\n referenceConstructor = val;\n}\n\nfunction syncPointGetReferenceConstructor(): ReferenceConstructor {\n assert(referenceConstructor, 'Reference.ts has not been loaded');\n return referenceConstructor;\n}\n\nexport function syncPointIsEmpty(syncPoint: SyncPoint): boolean {\n return syncPoint.views.size === 0;\n}\n\nexport function syncPointApplyOperation(\n syncPoint: SyncPoint,\n operation: Operation,\n writesCache: WriteTreeRef,\n optCompleteServerCache: Node | null\n): Event[] {\n const queryId = operation.source.queryId;\n if (queryId !== null) {\n const view = syncPoint.views.get(queryId);\n assert(view != null, 'SyncTree gave us an op for an invalid query.');\n return viewApplyOperation(\n view,\n operation,\n writesCache,\n optCompleteServerCache\n );\n } else {\n let events: Event[] = [];\n\n for (const view of syncPoint.views.values()) {\n events = events.concat(\n viewApplyOperation(view, operation, writesCache, optCompleteServerCache)\n );\n }\n\n return events;\n }\n}\n\n/**\n * Get a view for the specified query.\n *\n * @param query - The query to return a view for\n * @param writesCache\n * @param serverCache\n * @param serverCacheComplete\n * @returns Events to raise.\n */\nexport function syncPointGetView(\n syncPoint: SyncPoint,\n query: QueryContext,\n writesCache: WriteTreeRef,\n serverCache: Node | null,\n serverCacheComplete: boolean\n): View {\n const queryId = query._queryIdentifier;\n const view = syncPoint.views.get(queryId);\n if (!view) {\n // TODO: make writesCache take flag for complete server node\n let eventCache = writeTreeRefCalcCompleteEventCache(\n writesCache,\n serverCacheComplete ? serverCache : null\n );\n let eventCacheComplete = false;\n if (eventCache) {\n eventCacheComplete = true;\n } else if (serverCache instanceof ChildrenNode) {\n eventCache = writeTreeRefCalcCompleteEventChildren(\n writesCache,\n serverCache\n );\n eventCacheComplete = false;\n } else {\n eventCache = ChildrenNode.EMPTY_NODE;\n eventCacheComplete = false;\n }\n const viewCache = newViewCache(\n new CacheNode(eventCache, eventCacheComplete, false),\n new CacheNode(serverCache, serverCacheComplete, false)\n );\n return new View(query, viewCache);\n }\n return view;\n}\n\n/**\n * Add an event callback for the specified query.\n *\n * @param query\n * @param eventRegistration\n * @param writesCache\n * @param serverCache - Complete server cache, if we have it.\n * @param serverCacheComplete\n * @returns Events to raise.\n */\nexport function syncPointAddEventRegistration(\n syncPoint: SyncPoint,\n query: QueryContext,\n eventRegistration: EventRegistration,\n writesCache: WriteTreeRef,\n serverCache: Node | null,\n serverCacheComplete: boolean\n): Event[] {\n const view = syncPointGetView(\n syncPoint,\n query,\n writesCache,\n serverCache,\n serverCacheComplete\n );\n if (!syncPoint.views.has(query._queryIdentifier)) {\n syncPoint.views.set(query._queryIdentifier, view);\n }\n // This is guaranteed to exist now, we just created anything that was missing\n viewAddEventRegistration(view, eventRegistration);\n return viewGetInitialEvents(view, eventRegistration);\n}\n\n/**\n * Remove event callback(s). Return cancelEvents if a cancelError is specified.\n *\n * If query is the default query, we'll check all views for the specified eventRegistration.\n * If eventRegistration is null, we'll remove all callbacks for the specified view(s).\n *\n * @param eventRegistration - If null, remove all callbacks.\n * @param cancelError - If a cancelError is provided, appropriate cancel events will be returned.\n * @returns removed queries and any cancel events\n */\nexport function syncPointRemoveEventRegistration(\n syncPoint: SyncPoint,\n query: QueryContext,\n eventRegistration: EventRegistration | null,\n cancelError?: Error\n): { removed: QueryContext[]; events: Event[] } {\n const queryId = query._queryIdentifier;\n const removed: QueryContext[] = [];\n let cancelEvents: Event[] = [];\n const hadCompleteView = syncPointHasCompleteView(syncPoint);\n if (queryId === 'default') {\n // When you do ref.off(...), we search all views for the registration to remove.\n for (const [viewQueryId, view] of syncPoint.views.entries()) {\n cancelEvents = cancelEvents.concat(\n viewRemoveEventRegistration(view, eventRegistration, cancelError)\n );\n if (viewIsEmpty(view)) {\n syncPoint.views.delete(viewQueryId);\n\n // We'll deal with complete views later.\n if (!view.query._queryParams.loadsAllData()) {\n removed.push(view.query);\n }\n }\n }\n } else {\n // remove the callback from the specific view.\n const view = syncPoint.views.get(queryId);\n if (view) {\n cancelEvents = cancelEvents.concat(\n viewRemoveEventRegistration(view, eventRegistration, cancelError)\n );\n if (viewIsEmpty(view)) {\n syncPoint.views.delete(queryId);\n\n // We'll deal with complete views later.\n if (!view.query._queryParams.loadsAllData()) {\n removed.push(view.query);\n }\n }\n }\n }\n\n if (hadCompleteView && !syncPointHasCompleteView(syncPoint)) {\n // We removed our last complete view.\n removed.push(\n new (syncPointGetReferenceConstructor())(query._repo, query._path)\n );\n }\n\n return { removed, events: cancelEvents };\n}\n\nexport function syncPointGetQueryViews(syncPoint: SyncPoint): View[] {\n const result = [];\n for (const view of syncPoint.views.values()) {\n if (!view.query._queryParams.loadsAllData()) {\n result.push(view);\n }\n }\n return result;\n}\n\n/**\n * @param path - The path to the desired complete snapshot\n * @returns A complete cache, if it exists\n */\nexport function syncPointGetCompleteServerCache(\n syncPoint: SyncPoint,\n path: Path\n): Node | null {\n let serverCache: Node | null = null;\n for (const view of syncPoint.views.values()) {\n serverCache = serverCache || viewGetCompleteServerCache(view, path);\n }\n return serverCache;\n}\n\nexport function syncPointViewForQuery(\n syncPoint: SyncPoint,\n query: QueryContext\n): View | null {\n const params = query._queryParams;\n if (params.loadsAllData()) {\n return syncPointGetCompleteView(syncPoint);\n } else {\n const queryId = query._queryIdentifier;\n return syncPoint.views.get(queryId);\n }\n}\n\nexport function syncPointViewExistsForQuery(\n syncPoint: SyncPoint,\n query: QueryContext\n): boolean {\n return syncPointViewForQuery(syncPoint, query) != null;\n}\n\nexport function syncPointHasCompleteView(syncPoint: SyncPoint): boolean {\n return syncPointGetCompleteView(syncPoint) != null;\n}\n\nexport function syncPointGetCompleteView(syncPoint: SyncPoint): View | null {\n for (const view of syncPoint.views.values()) {\n if (view.query._queryParams.loadsAllData()) {\n return view;\n }\n }\n return null;\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\nimport { ReferenceConstructor } from '../api/Reference';\n\nimport { AckUserWrite } from './operation/AckUserWrite';\nimport { ListenComplete } from './operation/ListenComplete';\nimport { Merge } from './operation/Merge';\nimport {\n newOperationSourceServer,\n newOperationSourceServerTaggedQuery,\n newOperationSourceUser,\n Operation\n} from './operation/Operation';\nimport { Overwrite } from './operation/Overwrite';\nimport { ChildrenNode } from './snap/ChildrenNode';\nimport { Node } from './snap/Node';\nimport {\n SyncPoint,\n syncPointAddEventRegistration,\n syncPointApplyOperation,\n syncPointGetCompleteServerCache,\n syncPointGetCompleteView,\n syncPointGetQueryViews,\n syncPointGetView,\n syncPointHasCompleteView,\n syncPointIsEmpty,\n syncPointRemoveEventRegistration,\n syncPointViewExistsForQuery,\n syncPointViewForQuery\n} from './SyncPoint';\nimport { ImmutableTree } from './util/ImmutableTree';\nimport {\n newEmptyPath,\n newRelativePath,\n Path,\n pathGetFront,\n pathIsEmpty\n} from './util/Path';\nimport { each, errorForServerCode } from './util/util';\nimport { CacheNode } from './view/CacheNode';\nimport { Event } from './view/Event';\nimport { EventRegistration, QueryContext } from './view/EventRegistration';\nimport { View, viewGetCompleteNode, viewGetServerCache } from './view/View';\nimport {\n newWriteTree,\n WriteTree,\n writeTreeAddMerge,\n writeTreeAddOverwrite,\n writeTreeCalcCompleteEventCache,\n writeTreeChildWrites,\n writeTreeGetWrite,\n WriteTreeRef,\n writeTreeRefChild,\n writeTreeRemoveWrite\n} from './WriteTree';\n\nlet referenceConstructor: ReferenceConstructor;\n\nexport function syncTreeSetReferenceConstructor(\n val: ReferenceConstructor\n): void {\n assert(\n !referenceConstructor,\n '__referenceConstructor has already been defined'\n );\n referenceConstructor = val;\n}\n\nfunction syncTreeGetReferenceConstructor(): ReferenceConstructor {\n assert(referenceConstructor, 'Reference.ts has not been loaded');\n return referenceConstructor;\n}\n\nexport interface ListenProvider {\n startListening(\n query: QueryContext,\n tag: number | null,\n hashFn: () => string,\n onComplete: (a: string, b?: unknown) => Event[]\n ): Event[];\n\n stopListening(a: QueryContext, b: number | null): void;\n}\n\n/**\n * Static tracker for next query tag.\n */\nlet syncTreeNextQueryTag_ = 1;\n\nexport function resetSyncTreeTag() {\n syncTreeNextQueryTag_ = 1;\n}\n\n/**\n * SyncTree is the central class for managing event callback registration, data caching, views\n * (query processing), and event generation. There are typically two SyncTree instances for\n * each Repo, one for the normal Firebase data, and one for the .info data.\n *\n * It has a number of responsibilities, including:\n * - Tracking all user event callbacks (registered via addEventRegistration() and removeEventRegistration()).\n * - Applying and caching data changes for user set(), transaction(), and update() calls\n * (applyUserOverwrite(), applyUserMerge()).\n * - Applying and caching data changes for server data changes (applyServerOverwrite(),\n * applyServerMerge()).\n * - Generating user-facing events for server and user changes (all of the apply* methods\n * return the set of events that need to be raised as a result).\n * - Maintaining the appropriate set of server listens to ensure we are always subscribed\n * to the correct set of paths and queries to satisfy the current set of user event\n * callbacks (listens are started/stopped using the provided listenProvider).\n *\n * NOTE: Although SyncTree tracks event callbacks and calculates events to raise, the actual\n * events are returned to the caller rather than raised synchronously.\n *\n */\nexport class SyncTree {\n /**\n * Tree of SyncPoints. There's a SyncPoint at any location that has 1 or more views.\n */\n syncPointTree_: ImmutableTree<SyncPoint> = new ImmutableTree<SyncPoint>(null);\n\n /**\n * A tree of all pending user writes (user-initiated set()'s, transaction()'s, update()'s, etc.).\n */\n pendingWriteTree_: WriteTree = newWriteTree();\n\n readonly tagToQueryMap: Map<number, string> = new Map();\n readonly queryToTagMap: Map<string, number> = new Map();\n\n /**\n * @param listenProvider_ - Used by SyncTree to start / stop listening\n * to server data.\n */\n constructor(public listenProvider_: ListenProvider) {}\n}\n\n/**\n * Apply the data changes for a user-generated set() or transaction() call.\n *\n * @returns Events to raise.\n */\nexport function syncTreeApplyUserOverwrite(\n syncTree: SyncTree,\n path: Path,\n newData: Node,\n writeId: number,\n visible?: boolean\n): Event[] {\n // Record pending write.\n writeTreeAddOverwrite(\n syncTree.pendingWriteTree_,\n path,\n newData,\n writeId,\n visible\n );\n\n if (!visible) {\n return [];\n } else {\n return syncTreeApplyOperationToSyncPoints_(\n syncTree,\n new Overwrite(newOperationSourceUser(), path, newData)\n );\n }\n}\n\n/**\n * Apply the data from a user-generated update() call\n *\n * @returns Events to raise.\n */\nexport function syncTreeApplyUserMerge(\n syncTree: SyncTree,\n path: Path,\n changedChildren: { [k: string]: Node },\n writeId: number\n): Event[] {\n // Record pending merge.\n writeTreeAddMerge(syncTree.pendingWriteTree_, path, changedChildren, writeId);\n\n const changeTree = ImmutableTree.fromObject(changedChildren);\n\n return syncTreeApplyOperationToSyncPoints_(\n syncTree,\n new Merge(newOperationSourceUser(), path, changeTree)\n );\n}\n\n/**\n * Acknowledge a pending user write that was previously registered with applyUserOverwrite() or applyUserMerge().\n *\n * @param revert - True if the given write failed and needs to be reverted\n * @returns Events to raise.\n */\nexport function syncTreeAckUserWrite(\n syncTree: SyncTree,\n writeId: number,\n revert: boolean = false\n) {\n const write = writeTreeGetWrite(syncTree.pendingWriteTree_, writeId);\n const needToReevaluate = writeTreeRemoveWrite(\n syncTree.pendingWriteTree_,\n writeId\n );\n if (!needToReevaluate) {\n return [];\n } else {\n let affectedTree = new ImmutableTree<boolean>(null);\n if (write.snap != null) {\n // overwrite\n affectedTree = affectedTree.set(newEmptyPath(), true);\n } else {\n each(write.children, (pathString: string) => {\n affectedTree = affectedTree.set(new Path(pathString), true);\n });\n }\n return syncTreeApplyOperationToSyncPoints_(\n syncTree,\n new AckUserWrite(write.path, affectedTree, revert)\n );\n }\n}\n\n/**\n * Apply new server data for the specified path..\n *\n * @returns Events to raise.\n */\nexport function syncTreeApplyServerOverwrite(\n syncTree: SyncTree,\n path: Path,\n newData: Node\n): Event[] {\n return syncTreeApplyOperationToSyncPoints_(\n syncTree,\n new Overwrite(newOperationSourceServer(), path, newData)\n );\n}\n\n/**\n * Apply new server data to be merged in at the specified path.\n *\n * @returns Events to raise.\n */\nexport function syncTreeApplyServerMerge(\n syncTree: SyncTree,\n path: Path,\n changedChildren: { [k: string]: Node }\n): Event[] {\n const changeTree = ImmutableTree.fromObject(changedChildren);\n\n return syncTreeApplyOperationToSyncPoints_(\n syncTree,\n new Merge(newOperationSourceServer(), path, changeTree)\n );\n}\n\n/**\n * Apply a listen complete for a query\n *\n * @returns Events to raise.\n */\nexport function syncTreeApplyListenComplete(\n syncTree: SyncTree,\n path: Path\n): Event[] {\n return syncTreeApplyOperationToSyncPoints_(\n syncTree,\n new ListenComplete(newOperationSourceServer(), path)\n );\n}\n\n/**\n * Apply a listen complete for a tagged query\n *\n * @returns Events to raise.\n */\nexport function syncTreeApplyTaggedListenComplete(\n syncTree: SyncTree,\n path: Path,\n tag: number\n): Event[] {\n const queryKey = syncTreeQueryKeyForTag_(syncTree, tag);\n if (queryKey) {\n const r = syncTreeParseQueryKey_(queryKey);\n const queryPath = r.path,\n queryId = r.queryId;\n const relativePath = newRelativePath(queryPath, path);\n const op = new ListenComplete(\n newOperationSourceServerTaggedQuery(queryId),\n relativePath\n );\n return syncTreeApplyTaggedOperation_(syncTree, queryPath, op);\n } else {\n // We've already removed the query. No big deal, ignore the update\n return [];\n }\n}\n\n/**\n * Remove event callback(s).\n *\n * If query is the default query, we'll check all queries for the specified eventRegistration.\n * If eventRegistration is null, we'll remove all callbacks for the specified query/queries.\n *\n * @param eventRegistration - If null, all callbacks are removed.\n * @param cancelError - If a cancelError is provided, appropriate cancel events will be returned.\n * @param skipListenerDedup - When performing a `get()`, we don't add any new listeners, so no\n * deduping needs to take place. This flag allows toggling of that behavior\n * @returns Cancel events, if cancelError was provided.\n */\nexport function syncTreeRemoveEventRegistration(\n syncTree: SyncTree,\n query: QueryContext,\n eventRegistration: EventRegistration | null,\n cancelError?: Error,\n skipListenerDedup = false\n): Event[] {\n // Find the syncPoint first. Then deal with whether or not it has matching listeners\n const path = query._path;\n const maybeSyncPoint = syncTree.syncPointTree_.get(path);\n let cancelEvents: Event[] = [];\n // A removal on a default query affects all queries at that location. A removal on an indexed query, even one without\n // other query constraints, does *not* affect all queries at that location. So this check must be for 'default', and\n // not loadsAllData().\n if (\n maybeSyncPoint &&\n (query._queryIdentifier === 'default' ||\n syncPointViewExistsForQuery(maybeSyncPoint, query))\n ) {\n const removedAndEvents = syncPointRemoveEventRegistration(\n maybeSyncPoint,\n query,\n eventRegistration,\n cancelError\n );\n if (syncPointIsEmpty(maybeSyncPoint)) {\n syncTree.syncPointTree_ = syncTree.syncPointTree_.remove(path);\n }\n\n const removed = removedAndEvents.removed;\n cancelEvents = removedAndEvents.events;\n\n if (!skipListenerDedup) {\n /**\n * We may have just removed one of many listeners and can short-circuit this whole process\n * We may also not have removed a default listener, in which case all of the descendant listeners should already be\n * properly set up.\n */\n\n // Since indexed queries can shadow if they don't have other query constraints, check for loadsAllData(), instead of\n // queryId === 'default'\n const removingDefault =\n -1 !==\n removed.findIndex(query => {\n return query._queryParams.loadsAllData();\n });\n const covered = syncTree.syncPointTree_.findOnPath(\n path,\n (relativePath, parentSyncPoint) =>\n syncPointHasCompleteView(parentSyncPoint)\n );\n\n if (removingDefault && !covered) {\n const subtree = syncTree.syncPointTree_.subtree(path);\n // There are potentially child listeners. Determine what if any listens we need to send before executing the\n // removal\n if (!subtree.isEmpty()) {\n // We need to fold over our subtree and collect the listeners to send\n const newViews = syncTreeCollectDistinctViewsForSubTree_(subtree);\n\n // Ok, we've collected all the listens we need. Set them up.\n for (let i = 0; i < newViews.length; ++i) {\n const view = newViews[i],\n newQuery = view.query;\n const listener = syncTreeCreateListenerForView_(syncTree, view);\n syncTree.listenProvider_.startListening(\n syncTreeQueryForListening_(newQuery),\n syncTreeTagForQuery(syncTree, newQuery),\n listener.hashFn,\n listener.onComplete\n );\n }\n }\n // Otherwise there's nothing below us, so nothing we need to start listening on\n }\n // If we removed anything and we're not covered by a higher up listen, we need to stop listening on this query\n // The above block has us covered in terms of making sure we're set up on listens lower in the tree.\n // Also, note that if we have a cancelError, it's already been removed at the provider level.\n if (!covered && removed.length > 0 && !cancelError) {\n // If we removed a default, then we weren't listening on any of the other queries here. Just cancel the one\n // default. Otherwise, we need to iterate through and cancel each individual query\n if (removingDefault) {\n // We don't tag default listeners\n const defaultTag: number | null = null;\n syncTree.listenProvider_.stopListening(\n syncTreeQueryForListening_(query),\n defaultTag\n );\n } else {\n removed.forEach((queryToRemove: QueryContext) => {\n const tagToRemove = syncTree.queryToTagMap.get(\n syncTreeMakeQueryKey_(queryToRemove)\n );\n syncTree.listenProvider_.stopListening(\n syncTreeQueryForListening_(queryToRemove),\n tagToRemove\n );\n });\n }\n }\n }\n // Now, clear all of the tags we're tracking for the removed listens\n syncTreeRemoveTags_(syncTree, removed);\n } else {\n // No-op, this listener must've been already removed\n }\n return cancelEvents;\n}\n\n/**\n * Apply new server data for the specified tagged query.\n *\n * @returns Events to raise.\n */\nexport function syncTreeApplyTaggedQueryOverwrite(\n syncTree: SyncTree,\n path: Path,\n snap: Node,\n tag: number\n): Event[] {\n const queryKey = syncTreeQueryKeyForTag_(syncTree, tag);\n if (queryKey != null) {\n const r = syncTreeParseQueryKey_(queryKey);\n const queryPath = r.path,\n queryId = r.queryId;\n const relativePath = newRelativePath(queryPath, path);\n const op = new Overwrite(\n newOperationSourceServerTaggedQuery(queryId),\n relativePath,\n snap\n );\n return syncTreeApplyTaggedOperation_(syncTree, queryPath, op);\n } else {\n // Query must have been removed already\n return [];\n }\n}\n\n/**\n * Apply server data to be merged in for the specified tagged query.\n *\n * @returns Events to raise.\n */\nexport function syncTreeApplyTaggedQueryMerge(\n syncTree: SyncTree,\n path: Path,\n changedChildren: { [k: string]: Node },\n tag: number\n): Event[] {\n const queryKey = syncTreeQueryKeyForTag_(syncTree, tag);\n if (queryKey) {\n const r = syncTreeParseQueryKey_(queryKey);\n const queryPath = r.path,\n queryId = r.queryId;\n const relativePath = newRelativePath(queryPath, path);\n const changeTree = ImmutableTree.fromObject(changedChildren);\n const op = new Merge(\n newOperationSourceServerTaggedQuery(queryId),\n relativePath,\n changeTree\n );\n return syncTreeApplyTaggedOperation_(syncTree, queryPath, op);\n } else {\n // We've already removed the query. No big deal, ignore the update\n return [];\n }\n}\n\n/**\n * Add an event callback for the specified query.\n *\n * @returns Events to raise.\n */\nexport function syncTreeAddEventRegistration(\n syncTree: SyncTree,\n query: QueryContext,\n eventRegistration: EventRegistration,\n skipSetupListener = false\n): Event[] {\n const path = query._path;\n\n let serverCache: Node | null = null;\n let foundAncestorDefaultView = false;\n // Any covering writes will necessarily be at the root, so really all we need to find is the server cache.\n // Consider optimizing this once there's a better understanding of what actual behavior will be.\n syncTree.syncPointTree_.foreachOnPath(path, (pathToSyncPoint, sp) => {\n const relativePath = newRelativePath(pathToSyncPoint, path);\n serverCache =\n serverCache || syncPointGetCompleteServerCache(sp, relativePath);\n foundAncestorDefaultView =\n foundAncestorDefaultView || syncPointHasCompleteView(sp);\n });\n let syncPoint = syncTree.syncPointTree_.get(path);\n if (!syncPoint) {\n syncPoint = new SyncPoint();\n syncTree.syncPointTree_ = syncTree.syncPointTree_.set(path, syncPoint);\n } else {\n foundAncestorDefaultView =\n foundAncestorDefaultView || syncPointHasCompleteView(syncPoint);\n serverCache =\n serverCache || syncPointGetCompleteServerCache(syncPoint, newEmptyPath());\n }\n\n let serverCacheComplete;\n if (serverCache != null) {\n serverCacheComplete = true;\n } else {\n serverCacheComplete = false;\n serverCache = ChildrenNode.EMPTY_NODE;\n const subtree = syncTree.syncPointTree_.subtree(path);\n subtree.foreachChild((childName, childSyncPoint) => {\n const completeCache = syncPointGetCompleteServerCache(\n childSyncPoint,\n newEmptyPath()\n );\n if (completeCache) {\n serverCache = serverCache.updateImmediateChild(\n childName,\n completeCache\n );\n }\n });\n }\n\n const viewAlreadyExists = syncPointViewExistsForQuery(syncPoint, query);\n if (!viewAlreadyExists && !query._queryParams.loadsAllData()) {\n // We need to track a tag for this query\n const queryKey = syncTreeMakeQueryKey_(query);\n assert(\n !syncTree.queryToTagMap.has(queryKey),\n 'View does not exist, but we have a tag'\n );\n const tag = syncTreeGetNextQueryTag_();\n syncTree.queryToTagMap.set(queryKey, tag);\n syncTree.tagToQueryMap.set(tag, queryKey);\n }\n const writesCache = writeTreeChildWrites(syncTree.pendingWriteTree_, path);\n let events = syncPointAddEventRegistration(\n syncPoint,\n query,\n eventRegistration,\n writesCache,\n serverCache,\n serverCacheComplete\n );\n if (!viewAlreadyExists && !foundAncestorDefaultView && !skipSetupListener) {\n const view = syncPointViewForQuery(syncPoint, query);\n events = events.concat(syncTreeSetupListener_(syncTree, query, view));\n }\n return events;\n}\n\n/**\n * Returns a complete cache, if we have one, of the data at a particular path. If the location does not have a\n * listener above it, we will get a false \"null\". This shouldn't be a problem because transactions will always\n * have a listener above, and atomic operations would correctly show a jitter of <increment value> ->\n * <incremented total> as the write is applied locally and then acknowledged at the server.\n *\n * Note: this method will *include* hidden writes from transaction with applyLocally set to false.\n *\n * @param path - The path to the data we want\n * @param writeIdsToExclude - A specific set to be excluded\n */\nexport function syncTreeCalcCompleteEventCache(\n syncTree: SyncTree,\n path: Path,\n writeIdsToExclude?: number[]\n): Node {\n const includeHiddenSets = true;\n const writeTree = syncTree.pendingWriteTree_;\n const serverCache = syncTree.syncPointTree_.findOnPath(\n path,\n (pathSoFar, syncPoint) => {\n const relativePath = newRelativePath(pathSoFar, path);\n const serverCache = syncPointGetCompleteServerCache(\n syncPoint,\n relativePath\n );\n if (serverCache) {\n return serverCache;\n }\n }\n );\n return writeTreeCalcCompleteEventCache(\n writeTree,\n path,\n serverCache,\n writeIdsToExclude,\n includeHiddenSets\n );\n}\n\nexport function syncTreeGetServerValue(\n syncTree: SyncTree,\n query: QueryContext\n): Node | null {\n const path = query._path;\n let serverCache: Node | null = null;\n // Any covering writes will necessarily be at the root, so really all we need to find is the server cache.\n // Consider optimizing this once there's a better understanding of what actual behavior will be.\n syncTree.syncPointTree_.foreachOnPath(path, (pathToSyncPoint, sp) => {\n const relativePath = newRelativePath(pathToSyncPoint, path);\n serverCache =\n serverCache || syncPointGetCompleteServerCache(sp, relativePath);\n });\n let syncPoint = syncTree.syncPointTree_.get(path);\n if (!syncPoint) {\n syncPoint = new SyncPoint();\n syncTree.syncPointTree_ = syncTree.syncPointTree_.set(path, syncPoint);\n } else {\n serverCache =\n serverCache || syncPointGetCompleteServerCache(syncPoint, newEmptyPath());\n }\n const serverCacheComplete = serverCache != null;\n const serverCacheNode: CacheNode | null = serverCacheComplete\n ? new CacheNode(serverCache, true, false)\n : null;\n const writesCache: WriteTreeRef | null = writeTreeChildWrites(\n syncTree.pendingWriteTree_,\n query._path\n );\n const view: View = syncPointGetView(\n syncPoint,\n query,\n writesCache,\n serverCacheComplete ? serverCacheNode.getNode() : ChildrenNode.EMPTY_NODE,\n serverCacheComplete\n );\n return viewGetCompleteNode(view);\n}\n\n/**\n * A helper method that visits all descendant and ancestor SyncPoints, applying the operation.\n *\n * NOTES:\n * - Descendant SyncPoints will be visited first (since we raise events depth-first).\n *\n * - We call applyOperation() on each SyncPoint passing three things:\n * 1. A version of the Operation that has been made relative to the SyncPoint location.\n * 2. A WriteTreeRef of any writes we have cached at the SyncPoint location.\n * 3. A snapshot Node with cached server data, if we have it.\n *\n * - We concatenate all of the events returned by each SyncPoint and return the result.\n */\nfunction syncTreeApplyOperationToSyncPoints_(\n syncTree: SyncTree,\n operation: Operation\n): Event[] {\n return syncTreeApplyOperationHelper_(\n operation,\n syncTree.syncPointTree_,\n /*serverCache=*/ null,\n writeTreeChildWrites(syncTree.pendingWriteTree_, newEmptyPath())\n );\n}\n\n/**\n * Recursive helper for applyOperationToSyncPoints_\n */\nfunction syncTreeApplyOperationHelper_(\n operation: Operation,\n syncPointTree: ImmutableTree<SyncPoint>,\n serverCache: Node | null,\n writesCache: WriteTreeRef\n): Event[] {\n if (pathIsEmpty(operation.path)) {\n return syncTreeApplyOperationDescendantsHelper_(\n operation,\n syncPointTree,\n serverCache,\n writesCache\n );\n } else {\n const syncPoint = syncPointTree.get(newEmptyPath());\n\n // If we don't have cached server data, see if we can get it from this SyncPoint.\n if (serverCache == null && syncPoint != null) {\n serverCache = syncPointGetCompleteServerCache(syncPoint, newEmptyPath());\n }\n\n let events: Event[] = [];\n const childName = pathGetFront(operation.path);\n const childOperation = operation.operationForChild(childName);\n const childTree = syncPointTree.children.get(childName);\n if (childTree && childOperation) {\n const childServerCache = serverCache\n ? serverCache.getImmediateChild(childName)\n : null;\n const childWritesCache = writeTreeRefChild(writesCache, childName);\n events = events.concat(\n syncTreeApplyOperationHelper_(\n childOperation,\n childTree,\n childServerCache,\n childWritesCache\n )\n );\n }\n\n if (syncPoint) {\n events = events.concat(\n syncPointApplyOperation(syncPoint, operation, writesCache, serverCache)\n );\n }\n\n return events;\n }\n}\n\n/**\n * Recursive helper for applyOperationToSyncPoints_\n */\nfunction syncTreeApplyOperationDescendantsHelper_(\n operation: Operation,\n syncPointTree: ImmutableTree<SyncPoint>,\n serverCache: Node | null,\n writesCache: WriteTreeRef\n): Event[] {\n const syncPoint = syncPointTree.get(newEmptyPath());\n\n // If we don't have cached server data, see if we can get it from this SyncPoint.\n if (serverCache == null && syncPoint != null) {\n serverCache = syncPointGetCompleteServerCache(syncPoint, newEmptyPath());\n }\n\n let events: Event[] = [];\n syncPointTree.children.inorderTraversal((childName, childTree) => {\n const childServerCache = serverCache\n ? serverCache.getImmediateChild(childName)\n : null;\n const childWritesCache = writeTreeRefChild(writesCache, childName);\n const childOperation = operation.operationForChild(childName);\n if (childOperation) {\n events = events.concat(\n syncTreeApplyOperationDescendantsHelper_(\n childOperation,\n childTree,\n childServerCache,\n childWritesCache\n )\n );\n }\n });\n\n if (syncPoint) {\n events = events.concat(\n syncPointApplyOperation(syncPoint, operation, writesCache, serverCache)\n );\n }\n\n return events;\n}\n\nfunction syncTreeCreateListenerForView_(\n syncTree: SyncTree,\n view: View\n): { hashFn(): string; onComplete(a: string, b?: unknown): Event[] } {\n const query = view.query;\n const tag = syncTreeTagForQuery(syncTree, query);\n\n return {\n hashFn: () => {\n const cache = viewGetServerCache(view) || ChildrenNode.EMPTY_NODE;\n return cache.hash();\n },\n onComplete: (status: string): Event[] => {\n if (status === 'ok') {\n if (tag) {\n return syncTreeApplyTaggedListenComplete(syncTree, query._path, tag);\n } else {\n return syncTreeApplyListenComplete(syncTree, query._path);\n }\n } else {\n // If a listen failed, kill all of the listeners here, not just the one that triggered the error.\n // Note that this may need to be scoped to just this listener if we change permissions on filtered children\n const error = errorForServerCode(status, query);\n return syncTreeRemoveEventRegistration(\n syncTree,\n query,\n /*eventRegistration*/ null,\n error\n );\n }\n }\n };\n}\n\n/**\n * Return the tag associated with the given query.\n */\nexport function syncTreeTagForQuery(\n syncTree: SyncTree,\n query: QueryContext\n): number | null {\n const queryKey = syncTreeMakeQueryKey_(query);\n return syncTree.queryToTagMap.get(queryKey);\n}\n\n/**\n * Given a query, computes a \"queryKey\" suitable for use in our queryToTagMap_.\n */\nfunction syncTreeMakeQueryKey_(query: QueryContext): string {\n return query._path.toString() + '$' + query._queryIdentifier;\n}\n\n/**\n * Return the query associated with the given tag, if we have one\n */\nfunction syncTreeQueryKeyForTag_(\n syncTree: SyncTree,\n tag: number\n): string | null {\n return syncTree.tagToQueryMap.get(tag);\n}\n\n/**\n * Given a queryKey (created by makeQueryKey), parse it back into a path and queryId.\n */\nfunction syncTreeParseQueryKey_(queryKey: string): {\n queryId: string;\n path: Path;\n} {\n const splitIndex = queryKey.indexOf('$');\n assert(\n splitIndex !== -1 && splitIndex < queryKey.length - 1,\n 'Bad queryKey.'\n );\n return {\n queryId: queryKey.substr(splitIndex + 1),\n path: new Path(queryKey.substr(0, splitIndex))\n };\n}\n\n/**\n * A helper method to apply tagged operations\n */\nfunction syncTreeApplyTaggedOperation_(\n syncTree: SyncTree,\n queryPath: Path,\n operation: Operation\n): Event[] {\n const syncPoint = syncTree.syncPointTree_.get(queryPath);\n assert(syncPoint, \"Missing sync point for query tag that we're tracking\");\n const writesCache = writeTreeChildWrites(\n syncTree.pendingWriteTree_,\n queryPath\n );\n return syncPointApplyOperation(syncPoint, operation, writesCache, null);\n}\n\n/**\n * This collapses multiple unfiltered views into a single view, since we only need a single\n * listener for them.\n */\nfunction syncTreeCollectDistinctViewsForSubTree_(\n subtree: ImmutableTree<SyncPoint>\n): View[] {\n return subtree.fold<View[]>((relativePath, maybeChildSyncPoint, childMap) => {\n if (maybeChildSyncPoint && syncPointHasCompleteView(maybeChildSyncPoint)) {\n const completeView = syncPointGetCompleteView(maybeChildSyncPoint);\n return [completeView];\n } else {\n // No complete view here, flatten any deeper listens into an array\n let views: View[] = [];\n if (maybeChildSyncPoint) {\n views = syncPointGetQueryViews(maybeChildSyncPoint);\n }\n each(childMap, (_key: string, childViews: View[]) => {\n views = views.concat(childViews);\n });\n return views;\n }\n });\n}\n\n/**\n * Normalizes a query to a query we send the server for listening\n *\n * @returns The normalized query\n */\nfunction syncTreeQueryForListening_(query: QueryContext): QueryContext {\n if (query._queryParams.loadsAllData() && !query._queryParams.isDefault()) {\n // We treat queries that load all data as default queries\n // Cast is necessary because ref() technically returns Firebase which is actually fb.api.Firebase which inherits\n // from Query\n return new (syncTreeGetReferenceConstructor())(query._repo, query._path);\n } else {\n return query;\n }\n}\n\nfunction syncTreeRemoveTags_(syncTree: SyncTree, queries: QueryContext[]) {\n for (let j = 0; j < queries.length; ++j) {\n const removedQuery = queries[j];\n if (!removedQuery._queryParams.loadsAllData()) {\n // We should have a tag for this\n const removedQueryKey = syncTreeMakeQueryKey_(removedQuery);\n const removedQueryTag = syncTree.queryToTagMap.get(removedQueryKey);\n syncTree.queryToTagMap.delete(removedQueryKey);\n syncTree.tagToQueryMap.delete(removedQueryTag);\n }\n }\n}\n\n/**\n * Static accessor for query tags.\n */\nfunction syncTreeGetNextQueryTag_(): number {\n return syncTreeNextQueryTag_++;\n}\n\n/**\n * For a given new listen, manage the de-duplication of outstanding subscriptions.\n *\n * @returns This method can return events to support synchronous data sources\n */\nfunction syncTreeSetupListener_(\n syncTree: SyncTree,\n query: QueryContext,\n view: View\n): Event[] {\n const path = query._path;\n const tag = syncTreeTagForQuery(syncTree, query);\n const listener = syncTreeCreateListenerForView_(syncTree, view);\n\n const events = syncTree.listenProvider_.startListening(\n syncTreeQueryForListening_(query),\n tag,\n listener.hashFn,\n listener.onComplete\n );\n\n const subtree = syncTree.syncPointTree_.subtree(path);\n // The root of this subtree has our query. We're here because we definitely need to send a listen for that, but we\n // may need to shadow other listens as well.\n if (tag) {\n assert(\n !syncPointHasCompleteView(subtree.value),\n \"If we're adding a query, it shouldn't be shadowed\"\n );\n } else {\n // Shadow everything at or below this location, this is a default listener.\n const queriesToStop = subtree.fold<QueryContext[]>(\n (relativePath, maybeChildSyncPoint, childMap) => {\n if (\n !pathIsEmpty(relativePath) &&\n maybeChildSyncPoint &&\n syncPointHasCompleteView(maybeChildSyncPoint)\n ) {\n return [syncPointGetCompleteView(maybeChildSyncPoint).query];\n } else {\n // No default listener here, flatten any deeper queries into an array\n let queries: QueryContext[] = [];\n if (maybeChildSyncPoint) {\n queries = queries.concat(\n syncPointGetQueryViews(maybeChildSyncPoint).map(\n view => view.query\n )\n );\n }\n each(childMap, (_key: string, childQueries: QueryContext[]) => {\n queries = queries.concat(childQueries);\n });\n return queries;\n }\n }\n );\n for (let i = 0; i < queriesToStop.length; ++i) {\n const queryToStop = queriesToStop[i];\n syncTree.listenProvider_.stopListening(\n syncTreeQueryForListening_(queryToStop),\n syncTreeTagForQuery(syncTree, queryToStop)\n );\n }\n }\n return events;\n}\n","/**\n * @license\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport {\n _registerComponent,\n registerVersion,\n SDK_VERSION\n} from '@firebase/app';\nimport { Component, ComponentType } from '@firebase/component';\n\nimport { name, version } from '../package.json';\nimport { setSDKVersion } from '../src/core/version';\n\nimport { repoManagerDatabaseFromApp } from './api/Database';\n\nexport function registerDatabase(variant?: string): void {\n setSDKVersion(SDK_VERSION);\n _registerComponent(\n new Component(\n 'database',\n (container, { instanceIdentifier: url }) => {\n const app = container.getProvider('app').getImmediate()!;\n const authProvider = container.getProvider('auth-internal');\n const appCheckProvider = container.getProvider('app-check-internal');\n return repoManagerDatabaseFromApp(\n app,\n authProvider,\n appCheckProvider,\n url\n );\n },\n ComponentType.PUBLIC\n ).setMultipleInstances(true)\n );\n registerVersion(name, version, variant);\n // BUILD_TARGET will be replaced by values like esm5, esm2017, cjs5, etc during the compilation\n registerVersion(name, version, '__BUILD_TARGET__');\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Logger, LogLevel } from '@firebase/logger';\nimport {\n assert,\n base64,\n Sha1,\n stringToByteArray,\n stringify,\n isNodeSdk\n} from '@firebase/util';\n\nimport { SessionStorage } from '../storage/storage';\nimport { QueryContext } from '../view/EventRegistration';\n\ndeclare const window: Window;\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ndeclare const Windows: any;\n\nconst logClient = new Logger('@firebase/database');\n\n/**\n * Returns a locally-unique ID (generated by just incrementing up from 0 each time its called).\n */\nexport const LUIDGenerator: () => number = (function () {\n let id = 1;\n return function () {\n return id++;\n };\n})();\n\n/**\n * Sha1 hash of the input string\n * @param str - The string to hash\n * @returns {!string} The resulting hash\n */\nexport const sha1 = function (str: string): string {\n const utf8Bytes = stringToByteArray(str);\n const sha1 = new Sha1();\n sha1.update(utf8Bytes);\n const sha1Bytes = sha1.digest();\n return base64.encodeByteArray(sha1Bytes);\n};\n\nconst buildLogMessage_ = function (...varArgs: unknown[]): string {\n let message = '';\n for (let i = 0; i < varArgs.length; i++) {\n const arg = varArgs[i];\n if (\n Array.isArray(arg) ||\n (arg &&\n typeof arg === 'object' &&\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n typeof (arg as any).length === 'number')\n ) {\n message += buildLogMessage_.apply(null, arg);\n } else if (typeof arg === 'object') {\n message += stringify(arg);\n } else {\n message += arg;\n }\n message += ' ';\n }\n\n return message;\n};\n\n/**\n * Use this for all debug messages in Firebase.\n */\nexport let logger: ((a: string) => void) | null = null;\n\n/**\n * Flag to check for log availability on first log message\n */\nlet firstLog_ = true;\n\n/**\n * The implementation of Firebase.enableLogging (defined here to break dependencies)\n * @param logger_ - A flag to turn on logging, or a custom logger\n * @param persistent - Whether or not to persist logging settings across refreshes\n */\nexport const enableLogging = function (\n logger_?: boolean | ((a: string) => void) | null,\n persistent?: boolean\n) {\n assert(\n !persistent || logger_ === true || logger_ === false,\n \"Can't turn on custom loggers persistently.\"\n );\n if (logger_ === true) {\n logClient.logLevel = LogLevel.VERBOSE;\n logger = logClient.log.bind(logClient);\n if (persistent) {\n SessionStorage.set('logging_enabled', true);\n }\n } else if (typeof logger_ === 'function') {\n logger = logger_;\n } else {\n logger = null;\n SessionStorage.remove('logging_enabled');\n }\n};\n\nexport const log = function (...varArgs: unknown[]) {\n if (firstLog_ === true) {\n firstLog_ = false;\n if (logger === null && SessionStorage.get('logging_enabled') === true) {\n enableLogging(true);\n }\n }\n\n if (logger) {\n const message = buildLogMessage_.apply(null, varArgs);\n logger(message);\n }\n};\n\nexport const logWrapper = function (\n prefix: string\n): (...varArgs: unknown[]) => void {\n return function (...varArgs: unknown[]) {\n log(prefix, ...varArgs);\n };\n};\n\nexport const error = function (...varArgs: string[]) {\n const message = 'FIREBASE INTERNAL ERROR: ' + buildLogMessage_(...varArgs);\n logClient.error(message);\n};\n\nexport const fatal = function (...varArgs: string[]) {\n const message = `FIREBASE FATAL ERROR: ${buildLogMessage_(...varArgs)}`;\n logClient.error(message);\n throw new Error(message);\n};\n\nexport const warn = function (...varArgs: unknown[]) {\n const message = 'FIREBASE WARNING: ' + buildLogMessage_(...varArgs);\n logClient.warn(message);\n};\n\n/**\n * Logs a warning if the containing page uses https. Called when a call to new Firebase\n * does not use https.\n */\nexport const warnIfPageIsSecure = function () {\n // Be very careful accessing browser globals. Who knows what may or may not exist.\n if (\n typeof window !== 'undefined' &&\n window.location &&\n window.location.protocol &&\n window.location.protocol.indexOf('https:') !== -1\n ) {\n warn(\n 'Insecure Firebase access from a secure page. ' +\n 'Please use https in calls to new Firebase().'\n );\n }\n};\n\nexport const warnAboutUnsupportedMethod = function (methodName: string) {\n warn(\n methodName +\n ' is unsupported and will likely change soon. ' +\n 'Please do not use.'\n );\n};\n\n/**\n * Returns true if data is NaN, or +/- Infinity.\n */\nexport const isInvalidJSONNumber = function (data: unknown): boolean {\n return (\n typeof data === 'number' &&\n (data !== data || // NaN\n data === Number.POSITIVE_INFINITY ||\n data === Number.NEGATIVE_INFINITY)\n );\n};\n\nexport const executeWhenDOMReady = function (fn: () => void) {\n if (isNodeSdk() || document.readyState === 'complete') {\n fn();\n } else {\n // Modeled after jQuery. Try DOMContentLoaded and onreadystatechange (which\n // fire before onload), but fall back to onload.\n\n let called = false;\n const wrappedFn = function () {\n if (!document.body) {\n setTimeout(wrappedFn, Math.floor(10));\n return;\n }\n\n if (!called) {\n called = true;\n fn();\n }\n };\n\n if (document.addEventListener) {\n document.addEventListener('DOMContentLoaded', wrappedFn, false);\n // fallback to onload.\n window.addEventListener('load', wrappedFn, false);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n } else if ((document as any).attachEvent) {\n // IE.\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n (document as any).attachEvent('onreadystatechange', () => {\n if (document.readyState === 'complete') {\n wrappedFn();\n }\n });\n // fallback to onload.\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n (window as any).attachEvent('onload', wrappedFn);\n\n // jQuery has an extra hack for IE that we could employ (based on\n // http://javascript.nwbox.com/IEContentLoaded/) But it looks really old.\n // I'm hoping we don't need it.\n }\n }\n};\n\n/**\n * Minimum key name. Invalid for actual data, used as a marker to sort before any valid names\n */\nexport const MIN_NAME = '[MIN_NAME]';\n\n/**\n * Maximum key name. Invalid for actual data, used as a marker to sort above any valid names\n */\nexport const MAX_NAME = '[MAX_NAME]';\n\n/**\n * Compares valid Firebase key names, plus min and max name\n */\nexport const nameCompare = function (a: string, b: string): number {\n if (a === b) {\n return 0;\n } else if (a === MIN_NAME || b === MAX_NAME) {\n return -1;\n } else if (b === MIN_NAME || a === MAX_NAME) {\n return 1;\n } else {\n const aAsInt = tryParseInt(a),\n bAsInt = tryParseInt(b);\n\n if (aAsInt !== null) {\n if (bAsInt !== null) {\n return aAsInt - bAsInt === 0 ? a.length - b.length : aAsInt - bAsInt;\n } else {\n return -1;\n }\n } else if (bAsInt !== null) {\n return 1;\n } else {\n return a < b ? -1 : 1;\n }\n }\n};\n\n/**\n * @returns {!number} comparison result.\n */\nexport const stringCompare = function (a: string, b: string): number {\n if (a === b) {\n return 0;\n } else if (a < b) {\n return -1;\n } else {\n return 1;\n }\n};\n\nexport const requireKey = function (\n key: string,\n obj: { [k: string]: unknown }\n): unknown {\n if (obj && key in obj) {\n return obj[key];\n } else {\n throw new Error(\n 'Missing required key (' + key + ') in object: ' + stringify(obj)\n );\n }\n};\n\nexport const ObjectToUniqueKey = function (obj: unknown): string {\n if (typeof obj !== 'object' || obj === null) {\n return stringify(obj);\n }\n\n const keys = [];\n // eslint-disable-next-line guard-for-in\n for (const k in obj) {\n keys.push(k);\n }\n\n // Export as json, but with the keys sorted.\n keys.sort();\n let key = '{';\n for (let i = 0; i < keys.length; i++) {\n if (i !== 0) {\n key += ',';\n }\n key += stringify(keys[i]);\n key += ':';\n key += ObjectToUniqueKey(obj[keys[i]]);\n }\n\n key += '}';\n return key;\n};\n\n/**\n * Splits a string into a number of smaller segments of maximum size\n * @param str - The string\n * @param segsize - The maximum number of chars in the string.\n * @returns The string, split into appropriately-sized chunks\n */\nexport const splitStringBySize = function (\n str: string,\n segsize: number\n): string[] {\n const len = str.length;\n\n if (len <= segsize) {\n return [str];\n }\n\n const dataSegs = [];\n for (let c = 0; c < len; c += segsize) {\n if (c + segsize > len) {\n dataSegs.push(str.substring(c, len));\n } else {\n dataSegs.push(str.substring(c, c + segsize));\n }\n }\n return dataSegs;\n};\n\n/**\n * Apply a function to each (key, value) pair in an object or\n * apply a function to each (index, value) pair in an array\n * @param obj - The object or array to iterate over\n * @param fn - The function to apply\n */\nexport function each(obj: object, fn: (k: string, v: unknown) => void) {\n for (const key in obj) {\n if (obj.hasOwnProperty(key)) {\n fn(key, obj[key]);\n }\n }\n}\n\n/**\n * Like goog.bind, but doesn't bother to create a closure if opt_context is null/undefined.\n * @param callback - Callback function.\n * @param context - Optional context to bind to.\n *\n */\nexport const bindCallback = function (\n callback: (a: unknown) => void,\n context?: object | null\n): (a: unknown) => void {\n return context ? callback.bind(context) : callback;\n};\n\n/**\n * Borrowed from http://hg.secondlife.com/llsd/src/tip/js/typedarray.js (MIT License)\n * I made one modification at the end and removed the NaN / Infinity\n * handling (since it seemed broken [caused an overflow] and we don't need it). See MJL comments.\n * @param v - A double\n *\n */\nexport const doubleToIEEE754String = function (v: number): string {\n assert(!isInvalidJSONNumber(v), 'Invalid JSON number'); // MJL\n\n const ebits = 11,\n fbits = 52;\n const bias = (1 << (ebits - 1)) - 1;\n let s, e, f, ln, i;\n\n // Compute sign, exponent, fraction\n // Skip NaN / Infinity handling --MJL.\n if (v === 0) {\n e = 0;\n f = 0;\n s = 1 / v === -Infinity ? 1 : 0;\n } else {\n s = v < 0;\n v = Math.abs(v);\n\n if (v >= Math.pow(2, 1 - bias)) {\n // Normalized\n ln = Math.min(Math.floor(Math.log(v) / Math.LN2), bias);\n e = ln + bias;\n f = Math.round(v * Math.pow(2, fbits - ln) - Math.pow(2, fbits));\n } else {\n // Denormalized\n e = 0;\n f = Math.round(v / Math.pow(2, 1 - bias - fbits));\n }\n }\n\n // Pack sign, exponent, fraction\n const bits = [];\n for (i = fbits; i; i -= 1) {\n bits.push(f % 2 ? 1 : 0);\n f = Math.floor(f / 2);\n }\n for (i = ebits; i; i -= 1) {\n bits.push(e % 2 ? 1 : 0);\n e = Math.floor(e / 2);\n }\n bits.push(s ? 1 : 0);\n bits.reverse();\n const str = bits.join('');\n\n // Return the data as a hex string. --MJL\n let hexByteString = '';\n for (i = 0; i < 64; i += 8) {\n let hexByte = parseInt(str.substr(i, 8), 2).toString(16);\n if (hexByte.length === 1) {\n hexByte = '0' + hexByte;\n }\n hexByteString = hexByteString + hexByte;\n }\n return hexByteString.toLowerCase();\n};\n\n/**\n * Used to detect if we're in a Chrome content script (which executes in an\n * isolated environment where long-polling doesn't work).\n */\nexport const isChromeExtensionContentScript = function (): boolean {\n return !!(\n typeof window === 'object' &&\n window['chrome'] &&\n window['chrome']['extension'] &&\n !/^chrome/.test(window.location.href)\n );\n};\n\n/**\n * Used to detect if we're in a Windows 8 Store app.\n */\nexport const isWindowsStoreApp = function (): boolean {\n // Check for the presence of a couple WinRT globals\n return typeof Windows === 'object' && typeof Windows.UI === 'object';\n};\n\n/**\n * Converts a server error code to a Javascript Error\n */\nexport function errorForServerCode(code: string, query: QueryContext): Error {\n let reason = 'Unknown Error';\n if (code === 'too_big') {\n reason =\n 'The data requested exceeds the maximum size ' +\n 'that can be accessed with a single request.';\n } else if (code === 'permission_denied') {\n reason = \"Client doesn't have permission to access the desired data.\";\n } else if (code === 'unavailable') {\n reason = 'The service is unavailable';\n }\n\n const error = new Error(\n code + ' at ' + query._path.toString() + ': ' + reason\n );\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n (error as any).code = code.toUpperCase();\n return error;\n}\n\n/**\n * Used to test for integer-looking strings\n */\nexport const INTEGER_REGEXP_ = new RegExp('^-?(0*)\\\\d{1,10}$');\n\n/**\n * For use in keys, the minimum possible 32-bit integer.\n */\nexport const INTEGER_32_MIN = -2147483648;\n\n/**\n * For use in kyes, the maximum possible 32-bit integer.\n */\nexport const INTEGER_32_MAX = 2147483647;\n\n/**\n * If the string contains a 32-bit integer, return it. Else return null.\n */\nexport const tryParseInt = function (str: string): number | null {\n if (INTEGER_REGEXP_.test(str)) {\n const intVal = Number(str);\n if (intVal >= INTEGER_32_MIN && intVal <= INTEGER_32_MAX) {\n return intVal;\n }\n }\n return null;\n};\n\n/**\n * Helper to run some code but catch any exceptions and re-throw them later.\n * Useful for preventing user callbacks from breaking internal code.\n *\n * Re-throwing the exception from a setTimeout is a little evil, but it's very\n * convenient (we don't have to try to figure out when is a safe point to\n * re-throw it), and the behavior seems reasonable:\n *\n * * If you aren't pausing on exceptions, you get an error in the console with\n * the correct stack trace.\n * * If you're pausing on all exceptions, the debugger will pause on your\n * exception and then again when we rethrow it.\n * * If you're only pausing on uncaught exceptions, the debugger will only pause\n * on us re-throwing it.\n *\n * @param fn - The code to guard.\n */\nexport const exceptionGuard = function (fn: () => void) {\n try {\n fn();\n } catch (e) {\n // Re-throw exception when it's safe.\n setTimeout(() => {\n // It used to be that \"throw e\" would result in a good console error with\n // relevant context, but as of Chrome 39, you just get the firebase.js\n // file/line number where we re-throw it, which is useless. So we log\n // e.stack explicitly.\n const stack = e.stack || '';\n warn('Exception was thrown by user callback.', stack);\n throw e;\n }, Math.floor(0));\n }\n};\n\n/**\n * Helper function to safely call opt_callback with the specified arguments. It:\n * 1. Turns into a no-op if opt_callback is null or undefined.\n * 2. Wraps the call inside exceptionGuard to prevent exceptions from breaking our state.\n *\n * @param callback - Optional onComplete callback.\n * @param varArgs - Arbitrary args to be passed to opt_onComplete\n */\nexport const callUserCallback = function (\n // eslint-disable-next-line @typescript-eslint/ban-types\n callback?: Function | null,\n ...varArgs: unknown[]\n) {\n if (typeof callback === 'function') {\n exceptionGuard(() => {\n callback(...varArgs);\n });\n }\n};\n\n/**\n * @returns {boolean} true if we think we're currently being crawled.\n */\nexport const beingCrawled = function (): boolean {\n const userAgent =\n (typeof window === 'object' &&\n window['navigator'] &&\n window['navigator']['userAgent']) ||\n '';\n\n // For now we whitelist the most popular crawlers. We should refine this to be the set of crawlers we\n // believe to support JavaScript/AJAX rendering.\n // NOTE: Google Webmaster Tools doesn't really belong, but their \"This is how a visitor to your website\n // would have seen the page\" is flaky if we don't treat it as a crawler.\n return (\n userAgent.search(\n /googlebot|google webmaster tools|bingbot|yahoo! slurp|baiduspider|yandexbot|duckduckbot/i\n ) >= 0\n );\n};\n\n/**\n * Export a property of an object using a getter function.\n */\nexport const exportPropGetter = function (\n object: object,\n name: string,\n fnGet: () => unknown\n) {\n Object.defineProperty(object, name, { get: fnGet });\n};\n\n/**\n * Same as setTimeout() except on Node.JS it will /not/ prevent the process from exiting.\n *\n * It is removed with clearTimeout() as normal.\n *\n * @param fn - Function to run.\n * @param time - Milliseconds to wait before running.\n * @returns The setTimeout() return value.\n */\nexport const setTimeoutNonBlocking = function (\n fn: () => void,\n time: number\n): number | object {\n const timeout: number | object = setTimeout(fn, time);\n // Note: at the time of this comment, unrefTimer is under the unstable set of APIs. Run with --unstable to enable the API.\n if (\n typeof timeout === 'number' &&\n // @ts-ignore Is only defined in Deno environments.\n typeof Deno !== 'undefined' &&\n // @ts-ignore Deno and unrefTimer are only defined in Deno environments.\n Deno['unrefTimer']\n ) {\n // @ts-ignore Deno and unrefTimer are only defined in Deno environments.\n Deno.unrefTimer(timeout);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n } else if (typeof timeout === 'object' && (timeout as any)['unref']) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n (timeout as any)['unref']();\n }\n\n return timeout;\n};\n","/**\n * @license\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n AppCheckInternalComponentName,\n AppCheckTokenListener,\n AppCheckTokenResult,\n FirebaseAppCheckInternal\n} from '@firebase/app-check-interop-types';\nimport { Provider } from '@firebase/component';\n\nimport { warn } from './util/util';\n\n/**\n * Abstraction around AppCheck's token fetching capabilities.\n */\nexport class AppCheckTokenProvider {\n private appCheck?: FirebaseAppCheckInternal;\n constructor(\n private appName_: string,\n private appCheckProvider?: Provider<AppCheckInternalComponentName>\n ) {\n this.appCheck = appCheckProvider?.getImmediate({ optional: true });\n if (!this.appCheck) {\n appCheckProvider?.get().then(appCheck => (this.appCheck = appCheck));\n }\n }\n\n getToken(forceRefresh?: boolean): Promise<AppCheckTokenResult> {\n if (!this.appCheck) {\n return new Promise<AppCheckTokenResult>((resolve, reject) => {\n // Support delayed initialization of FirebaseAppCheck. This allows our\n // customers to initialize the RTDB SDK before initializing Firebase\n // AppCheck and ensures that all requests are authenticated if a token\n // becomes available before the timoeout below expires.\n setTimeout(() => {\n if (this.appCheck) {\n this.getToken(forceRefresh).then(resolve, reject);\n } else {\n resolve(null);\n }\n }, 0);\n });\n }\n return this.appCheck.getToken(forceRefresh);\n }\n\n addTokenChangeListener(listener: AppCheckTokenListener) {\n this.appCheckProvider\n ?.get()\n .then(appCheck => appCheck.addTokenListener(listener));\n }\n\n notifyForInvalidToken(): void {\n warn(\n `Provided AppCheck credentials for the app named \"${this.appName_}\" ` +\n 'are invalid. This usually indicates your app was not initialized correctly.'\n );\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { FirebaseAuthTokenData } from '@firebase/app-types/private';\nimport {\n FirebaseAuthInternal,\n FirebaseAuthInternalName\n} from '@firebase/auth-interop-types';\nimport { Provider } from '@firebase/component';\n\nimport { log, warn } from './util/util';\n\nexport interface AuthTokenProvider {\n getToken(forceRefresh: boolean): Promise<FirebaseAuthTokenData>;\n addTokenChangeListener(listener: (token: string | null) => void): void;\n removeTokenChangeListener(listener: (token: string | null) => void): void;\n notifyForInvalidToken(): void;\n}\n\n/**\n * Abstraction around FirebaseApp's token fetching capabilities.\n */\nexport class FirebaseAuthTokenProvider implements AuthTokenProvider {\n private auth_: FirebaseAuthInternal | null = null;\n\n constructor(\n private appName_: string,\n private firebaseOptions_: object,\n private authProvider_: Provider<FirebaseAuthInternalName>\n ) {\n this.auth_ = authProvider_.getImmediate({ optional: true });\n if (!this.auth_) {\n authProvider_.onInit(auth => (this.auth_ = auth));\n }\n }\n\n getToken(forceRefresh: boolean): Promise<FirebaseAuthTokenData> {\n if (!this.auth_) {\n return new Promise<FirebaseAuthTokenData>((resolve, reject) => {\n // Support delayed initialization of FirebaseAuth. This allows our\n // customers to initialize the RTDB SDK before initializing Firebase\n // Auth and ensures that all requests are authenticated if a token\n // becomes available before the timoeout below expires.\n setTimeout(() => {\n if (this.auth_) {\n this.getToken(forceRefresh).then(resolve, reject);\n } else {\n resolve(null);\n }\n }, 0);\n });\n }\n\n return this.auth_.getToken(forceRefresh).catch(error => {\n // TODO: Need to figure out all the cases this is raised and whether\n // this makes sense.\n if (error && error.code === 'auth/token-not-initialized') {\n log('Got auth/token-not-initialized error. Treating as null token.');\n return null;\n } else {\n return Promise.reject(error);\n }\n });\n }\n\n addTokenChangeListener(listener: (token: string | null) => void): void {\n // TODO: We might want to wrap the listener and call it with no args to\n // avoid a leaky abstraction, but that makes removing the listener harder.\n if (this.auth_) {\n this.auth_.addAuthTokenListener(listener);\n } else {\n this.authProvider_\n .get()\n .then(auth => auth.addAuthTokenListener(listener));\n }\n }\n\n removeTokenChangeListener(listener: (token: string | null) => void): void {\n this.authProvider_\n .get()\n .then(auth => auth.removeAuthTokenListener(listener));\n }\n\n notifyForInvalidToken(): void {\n let errorMessage =\n 'Provided authentication credentials for the app named \"' +\n this.appName_ +\n '\" are invalid. This usually indicates your app was not ' +\n 'initialized correctly. ';\n if ('credential' in this.firebaseOptions_) {\n errorMessage +=\n 'Make sure the \"credential\" property provided to initializeApp() ' +\n 'is authorized to access the specified \"databaseURL\" and is from the correct ' +\n 'project.';\n } else if ('serviceAccount' in this.firebaseOptions_) {\n errorMessage +=\n 'Make sure the \"serviceAccount\" property provided to initializeApp() ' +\n 'is authorized to access the specified \"databaseURL\" and is from the correct ' +\n 'project.';\n } else {\n errorMessage +=\n 'Make sure the \"apiKey\" and \"databaseURL\" properties provided to ' +\n 'initializeApp() match the values provided for your app at ' +\n 'https://console.firebase.google.com/.';\n }\n warn(errorMessage);\n }\n}\n\n/* AuthTokenProvider that supplies a constant token. Used by Admin SDK or mockUserToken with emulators. */\nexport class EmulatorTokenProvider implements AuthTokenProvider {\n /** A string that is treated as an admin access token by the RTDB emulator. Used by Admin SDK. */\n static OWNER = 'owner';\n\n constructor(private accessToken: string) {}\n\n getToken(forceRefresh: boolean): Promise<FirebaseAuthTokenData> {\n return Promise.resolve({\n accessToken: this.accessToken\n });\n }\n\n addTokenChangeListener(listener: (token: string | null) => void): void {\n // Invoke the listener immediately to match the behavior in Firebase Auth\n // (see packages/auth/src/auth.js#L1807)\n listener(this.accessToken);\n }\n\n removeTokenChangeListener(listener: (token: string | null) => void): void {}\n\n notifyForInvalidToken(): void {}\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport const PROTOCOL_VERSION = '5';\n\nexport const VERSION_PARAM = 'v';\n\nexport const TRANSPORT_SESSION_PARAM = 's';\n\nexport const REFERER_PARAM = 'r';\n\nexport const FORGE_REF = 'f';\n\n// Matches console.firebase.google.com, firebase-console-*.corp.google.com and\n// firebase.corp.google.com\nexport const FORGE_DOMAIN_RE =\n /(console\\.firebase|firebase-console-\\w+\\.corp|firebase\\.corp)\\.google\\.com/;\n\nexport const LAST_SESSION_PARAM = 'ls';\n\nexport const APPLICATION_ID_PARAM = 'p';\n\nexport const APP_CHECK_TOKEN_PARAM = 'ac';\n\nexport const WEBSOCKET = 'websocket';\n\nexport const LONG_POLLING = 'long_polling';\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\nimport { LONG_POLLING, WEBSOCKET } from '../realtime/Constants';\n\nimport { PersistentStorage } from './storage/storage';\nimport { each } from './util/util';\n\n/**\n * A class that holds metadata about a Repo object\n */\nexport class RepoInfo {\n private _host: string;\n private _domain: string;\n internalHost: string;\n\n /**\n * @param host - Hostname portion of the url for the repo\n * @param secure - Whether or not this repo is accessed over ssl\n * @param namespace - The namespace represented by the repo\n * @param webSocketOnly - Whether to prefer websockets over all other transports (used by Nest).\n * @param nodeAdmin - Whether this instance uses Admin SDK credentials\n * @param persistenceKey - Override the default session persistence storage key\n */\n constructor(\n host: string,\n public readonly secure: boolean,\n public readonly namespace: string,\n public readonly webSocketOnly: boolean,\n public readonly nodeAdmin: boolean = false,\n public readonly persistenceKey: string = '',\n public readonly includeNamespaceInQueryParams: boolean = false\n ) {\n this._host = host.toLowerCase();\n this._domain = this._host.substr(this._host.indexOf('.') + 1);\n this.internalHost =\n (PersistentStorage.get('host:' + host) as string) || this._host;\n }\n\n isCacheableHost(): boolean {\n return this.internalHost.substr(0, 2) === 's-';\n }\n\n isCustomHost() {\n return (\n this._domain !== 'firebaseio.com' &&\n this._domain !== 'firebaseio-demo.com'\n );\n }\n\n get host() {\n return this._host;\n }\n\n set host(newHost: string) {\n if (newHost !== this.internalHost) {\n this.internalHost = newHost;\n if (this.isCacheableHost()) {\n PersistentStorage.set('host:' + this._host, this.internalHost);\n }\n }\n }\n\n toString(): string {\n let str = this.toURLString();\n if (this.persistenceKey) {\n str += '<' + this.persistenceKey + '>';\n }\n return str;\n }\n\n toURLString(): string {\n const protocol = this.secure ? 'https://' : 'http://';\n const query = this.includeNamespaceInQueryParams\n ? `?ns=${this.namespace}`\n : '';\n return `${protocol}${this.host}/${query}`;\n }\n}\n\nfunction repoInfoNeedsQueryParam(repoInfo: RepoInfo): boolean {\n return (\n repoInfo.host !== repoInfo.internalHost ||\n repoInfo.isCustomHost() ||\n repoInfo.includeNamespaceInQueryParams\n );\n}\n\n/**\n * Returns the websocket URL for this repo\n * @param repoInfo - RepoInfo object\n * @param type - of connection\n * @param params - list\n * @returns The URL for this repo\n */\nexport function repoInfoConnectionURL(\n repoInfo: RepoInfo,\n type: string,\n params: { [k: string]: string }\n): string {\n assert(typeof type === 'string', 'typeof type must == string');\n assert(typeof params === 'object', 'typeof params must == object');\n\n let connURL: string;\n if (type === WEBSOCKET) {\n connURL =\n (repoInfo.secure ? 'wss://' : 'ws://') + repoInfo.internalHost + '/.ws?';\n } else if (type === LONG_POLLING) {\n connURL =\n (repoInfo.secure ? 'https://' : 'http://') +\n repoInfo.internalHost +\n '/.lp?';\n } else {\n throw new Error('Unknown connection type: ' + type);\n }\n if (repoInfoNeedsQueryParam(repoInfo)) {\n params['ns'] = repoInfo.namespace;\n }\n\n const pairs: string[] = [];\n\n each(params, (key: string, value: string) => {\n pairs.push(key + '=' + value);\n });\n\n return connURL + pairs.join('&');\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { deepCopy, contains } from '@firebase/util';\n\n/**\n * Tracks a collection of stats.\n */\nexport class StatsCollection {\n private counters_: { [k: string]: number } = {};\n\n incrementCounter(name: string, amount: number = 1) {\n if (!contains(this.counters_, name)) {\n this.counters_[name] = 0;\n }\n\n this.counters_[name] += amount;\n }\n\n get() {\n return deepCopy(this.counters_);\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RepoInfo } from '../RepoInfo';\n\nimport { StatsCollection } from './StatsCollection';\n\nconst collections: { [k: string]: StatsCollection } = {};\nconst reporters: { [k: string]: unknown } = {};\n\nexport function statsManagerGetCollection(repoInfo: RepoInfo): StatsCollection {\n const hashString = repoInfo.toString();\n\n if (!collections[hashString]) {\n collections[hashString] = new StatsCollection();\n }\n\n return collections[hashString];\n}\n\nexport function statsManagerGetOrCreateReporter<T>(\n repoInfo: RepoInfo,\n creatorFunction: () => T\n): T {\n const hashString = repoInfo.toString();\n\n if (!reporters[hashString]) {\n reporters[hashString] = creatorFunction();\n }\n\n return reporters[hashString] as T;\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { exceptionGuard } from '../../core/util/util';\n\n/**\n * This class ensures the packets from the server arrive in order\n * This class takes data from the server and ensures it gets passed into the callbacks in order.\n */\nexport class PacketReceiver {\n pendingResponses: unknown[] = [];\n currentResponseNum = 0;\n closeAfterResponse = -1;\n onClose: (() => void) | null = null;\n\n /**\n * @param onMessage_\n */\n constructor(private onMessage_: (a: {}) => void) {}\n\n closeAfter(responseNum: number, callback: () => void) {\n this.closeAfterResponse = responseNum;\n this.onClose = callback;\n if (this.closeAfterResponse < this.currentResponseNum) {\n this.onClose();\n this.onClose = null;\n }\n }\n\n /**\n * Each message from the server comes with a response number, and an array of data. The responseNumber\n * allows us to ensure that we process them in the right order, since we can't be guaranteed that all\n * browsers will respond in the same order as the requests we sent\n */\n handleResponse(requestNum: number, data: unknown[]) {\n this.pendingResponses[requestNum] = data;\n while (this.pendingResponses[this.currentResponseNum]) {\n const toProcess = this.pendingResponses[\n this.currentResponseNum\n ] as unknown[];\n delete this.pendingResponses[this.currentResponseNum];\n for (let i = 0; i < toProcess.length; ++i) {\n if (toProcess[i]) {\n exceptionGuard(() => {\n this.onMessage_(toProcess[i]);\n });\n }\n }\n if (this.currentResponseNum === this.closeAfterResponse) {\n if (this.onClose) {\n this.onClose();\n this.onClose = null;\n }\n break;\n }\n this.currentResponseNum++;\n }\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { base64Encode, isNodeSdk, stringify } from '@firebase/util';\n\nimport { RepoInfo, repoInfoConnectionURL } from '../core/RepoInfo';\nimport { StatsCollection } from '../core/stats/StatsCollection';\nimport { statsManagerGetCollection } from '../core/stats/StatsManager';\nimport {\n executeWhenDOMReady,\n isChromeExtensionContentScript,\n isWindowsStoreApp,\n log,\n logWrapper,\n LUIDGenerator,\n splitStringBySize\n} from '../core/util/util';\n\nimport {\n APP_CHECK_TOKEN_PARAM,\n APPLICATION_ID_PARAM,\n FORGE_DOMAIN_RE,\n FORGE_REF,\n LAST_SESSION_PARAM,\n LONG_POLLING,\n PROTOCOL_VERSION,\n REFERER_PARAM,\n TRANSPORT_SESSION_PARAM,\n VERSION_PARAM\n} from './Constants';\nimport { PacketReceiver } from './polling/PacketReceiver';\nimport { Transport } from './Transport';\n\n// URL query parameters associated with longpolling\nexport const FIREBASE_LONGPOLL_START_PARAM = 'start';\nexport const FIREBASE_LONGPOLL_CLOSE_COMMAND = 'close';\nexport const FIREBASE_LONGPOLL_COMMAND_CB_NAME = 'pLPCommand';\nexport const FIREBASE_LONGPOLL_DATA_CB_NAME = 'pRTLPCB';\nexport const FIREBASE_LONGPOLL_ID_PARAM = 'id';\nexport const FIREBASE_LONGPOLL_PW_PARAM = 'pw';\nexport const FIREBASE_LONGPOLL_SERIAL_PARAM = 'ser';\nexport const FIREBASE_LONGPOLL_CALLBACK_ID_PARAM = 'cb';\nexport const FIREBASE_LONGPOLL_SEGMENT_NUM_PARAM = 'seg';\nexport const FIREBASE_LONGPOLL_SEGMENTS_IN_PACKET = 'ts';\nexport const FIREBASE_LONGPOLL_DATA_PARAM = 'd';\nexport const FIREBASE_LONGPOLL_DISCONN_FRAME_PARAM = 'disconn';\nexport const FIREBASE_LONGPOLL_DISCONN_FRAME_REQUEST_PARAM = 'dframe';\n\n//Data size constants.\n//TODO: Perf: the maximum length actually differs from browser to browser.\n// We should check what browser we're on and set accordingly.\nconst MAX_URL_DATA_SIZE = 1870;\nconst SEG_HEADER_SIZE = 30; //ie: &seg=8299234&ts=982389123&d=\nconst MAX_PAYLOAD_SIZE = MAX_URL_DATA_SIZE - SEG_HEADER_SIZE;\n\n/**\n * Keepalive period\n * send a fresh request at minimum every 25 seconds. Opera has a maximum request\n * length of 30 seconds that we can't exceed.\n */\nconst KEEPALIVE_REQUEST_INTERVAL = 25000;\n\n/**\n * How long to wait before aborting a long-polling connection attempt.\n */\nconst LP_CONNECT_TIMEOUT = 30000;\n\n/**\n * This class manages a single long-polling connection.\n */\nexport class BrowserPollConnection implements Transport {\n bytesSent = 0;\n bytesReceived = 0;\n urlFn: (params: object) => string;\n scriptTagHolder: FirebaseIFrameScriptHolder;\n myDisconnFrame: HTMLIFrameElement;\n curSegmentNum: number;\n myPacketOrderer: PacketReceiver;\n id: string;\n password: string;\n private log_: (...a: unknown[]) => void;\n private stats_: StatsCollection;\n private everConnected_ = false;\n private isClosed_: boolean;\n private connectTimeoutTimer_: number | null;\n private onDisconnect_: ((a?: boolean) => void) | null;\n\n /**\n * @param connId An identifier for this connection, used for logging\n * @param repoInfo The info for the endpoint to send data to.\n * @param applicationId The Firebase App ID for this project.\n * @param appCheckToken The AppCheck token for this client.\n * @param authToken The AuthToken to use for this connection.\n * @param transportSessionId Optional transportSessionid if we are\n * reconnecting for an existing transport session\n * @param lastSessionId Optional lastSessionId if the PersistentConnection has\n * already created a connection previously\n */\n constructor(\n public connId: string,\n public repoInfo: RepoInfo,\n private applicationId?: string,\n private appCheckToken?: string,\n private authToken?: string,\n public transportSessionId?: string,\n public lastSessionId?: string\n ) {\n this.log_ = logWrapper(connId);\n this.stats_ = statsManagerGetCollection(repoInfo);\n this.urlFn = (params: { [k: string]: string }) => {\n // Always add the token if we have one.\n if (this.appCheckToken) {\n params[APP_CHECK_TOKEN_PARAM] = this.appCheckToken;\n }\n return repoInfoConnectionURL(repoInfo, LONG_POLLING, params);\n };\n }\n\n /**\n * @param onMessage - Callback when messages arrive\n * @param onDisconnect - Callback with connection lost.\n */\n open(onMessage: (msg: {}) => void, onDisconnect: (a?: boolean) => void) {\n this.curSegmentNum = 0;\n this.onDisconnect_ = onDisconnect;\n this.myPacketOrderer = new PacketReceiver(onMessage);\n this.isClosed_ = false;\n\n this.connectTimeoutTimer_ = setTimeout(() => {\n this.log_('Timed out trying to connect.');\n // Make sure we clear the host cache\n this.onClosed_();\n this.connectTimeoutTimer_ = null;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n }, Math.floor(LP_CONNECT_TIMEOUT)) as any;\n\n // Ensure we delay the creation of the iframe until the DOM is loaded.\n executeWhenDOMReady(() => {\n if (this.isClosed_) {\n return;\n }\n\n //Set up a callback that gets triggered once a connection is set up.\n this.scriptTagHolder = new FirebaseIFrameScriptHolder(\n (...args) => {\n const [command, arg1, arg2, arg3, arg4] = args;\n this.incrementIncomingBytes_(args);\n if (!this.scriptTagHolder) {\n return; // we closed the connection.\n }\n\n if (this.connectTimeoutTimer_) {\n clearTimeout(this.connectTimeoutTimer_);\n this.connectTimeoutTimer_ = null;\n }\n this.everConnected_ = true;\n if (command === FIREBASE_LONGPOLL_START_PARAM) {\n this.id = arg1 as string;\n this.password = arg2 as string;\n } else if (command === FIREBASE_LONGPOLL_CLOSE_COMMAND) {\n // Don't clear the host cache. We got a response from the server, so we know it's reachable\n if (arg1) {\n // We aren't expecting any more data (other than what the server's already in the process of sending us\n // through our already open polls), so don't send any more.\n this.scriptTagHolder.sendNewPolls = false;\n\n // arg1 in this case is the last response number sent by the server. We should try to receive\n // all of the responses up to this one before closing\n this.myPacketOrderer.closeAfter(arg1 as number, () => {\n this.onClosed_();\n });\n } else {\n this.onClosed_();\n }\n } else {\n throw new Error('Unrecognized command received: ' + command);\n }\n },\n (...args) => {\n const [pN, data] = args;\n this.incrementIncomingBytes_(args);\n this.myPacketOrderer.handleResponse(pN as number, data as unknown[]);\n },\n () => {\n this.onClosed_();\n },\n this.urlFn\n );\n\n //Send the initial request to connect. The serial number is simply to keep the browser from pulling previous results\n //from cache.\n const urlParams: { [k: string]: string | number } = {};\n urlParams[FIREBASE_LONGPOLL_START_PARAM] = 't';\n urlParams[FIREBASE_LONGPOLL_SERIAL_PARAM] = Math.floor(\n Math.random() * 100000000\n );\n if (this.scriptTagHolder.uniqueCallbackIdentifier) {\n urlParams[FIREBASE_LONGPOLL_CALLBACK_ID_PARAM] =\n this.scriptTagHolder.uniqueCallbackIdentifier;\n }\n urlParams[VERSION_PARAM] = PROTOCOL_VERSION;\n if (this.transportSessionId) {\n urlParams[TRANSPORT_SESSION_PARAM] = this.transportSessionId;\n }\n if (this.lastSessionId) {\n urlParams[LAST_SESSION_PARAM] = this.lastSessionId;\n }\n if (this.applicationId) {\n urlParams[APPLICATION_ID_PARAM] = this.applicationId;\n }\n if (this.appCheckToken) {\n urlParams[APP_CHECK_TOKEN_PARAM] = this.appCheckToken;\n }\n if (\n typeof location !== 'undefined' &&\n location.hostname &&\n FORGE_DOMAIN_RE.test(location.hostname)\n ) {\n urlParams[REFERER_PARAM] = FORGE_REF;\n }\n const connectURL = this.urlFn(urlParams);\n this.log_('Connecting via long-poll to ' + connectURL);\n this.scriptTagHolder.addTag(connectURL, () => {\n /* do nothing */\n });\n });\n }\n\n /**\n * Call this when a handshake has completed successfully and we want to consider the connection established\n */\n start() {\n this.scriptTagHolder.startLongPoll(this.id, this.password);\n this.addDisconnectPingFrame(this.id, this.password);\n }\n\n static forceAllow_: boolean;\n\n /**\n * Forces long polling to be considered as a potential transport\n */\n static forceAllow() {\n BrowserPollConnection.forceAllow_ = true;\n }\n\n static forceDisallow_: boolean;\n\n /**\n * Forces longpolling to not be considered as a potential transport\n */\n static forceDisallow() {\n BrowserPollConnection.forceDisallow_ = true;\n }\n\n // Static method, use string literal so it can be accessed in a generic way\n static isAvailable() {\n if (isNodeSdk()) {\n return false;\n } else if (BrowserPollConnection.forceAllow_) {\n return true;\n } else {\n // NOTE: In React-Native there's normally no 'document', but if you debug a React-Native app in\n // the Chrome debugger, 'document' is defined, but document.createElement is null (2015/06/08).\n return (\n !BrowserPollConnection.forceDisallow_ &&\n typeof document !== 'undefined' &&\n document.createElement != null &&\n !isChromeExtensionContentScript() &&\n !isWindowsStoreApp()\n );\n }\n }\n\n /**\n * No-op for polling\n */\n markConnectionHealthy() {}\n\n /**\n * Stops polling and cleans up the iframe\n */\n private shutdown_() {\n this.isClosed_ = true;\n\n if (this.scriptTagHolder) {\n this.scriptTagHolder.close();\n this.scriptTagHolder = null;\n }\n\n //remove the disconnect frame, which will trigger an XHR call to the server to tell it we're leaving.\n if (this.myDisconnFrame) {\n document.body.removeChild(this.myDisconnFrame);\n this.myDisconnFrame = null;\n }\n\n if (this.connectTimeoutTimer_) {\n clearTimeout(this.connectTimeoutTimer_);\n this.connectTimeoutTimer_ = null;\n }\n }\n\n /**\n * Triggered when this transport is closed\n */\n private onClosed_() {\n if (!this.isClosed_) {\n this.log_('Longpoll is closing itself');\n this.shutdown_();\n\n if (this.onDisconnect_) {\n this.onDisconnect_(this.everConnected_);\n this.onDisconnect_ = null;\n }\n }\n }\n\n /**\n * External-facing close handler. RealTime has requested we shut down. Kill our connection and tell the server\n * that we've left.\n */\n close() {\n if (!this.isClosed_) {\n this.log_('Longpoll is being closed.');\n this.shutdown_();\n }\n }\n\n /**\n * Send the JSON object down to the server. It will need to be stringified, base64 encoded, and then\n * broken into chunks (since URLs have a small maximum length).\n * @param data - The JSON data to transmit.\n */\n send(data: {}) {\n const dataStr = stringify(data);\n this.bytesSent += dataStr.length;\n this.stats_.incrementCounter('bytes_sent', dataStr.length);\n\n //first, lets get the base64-encoded data\n const base64data = base64Encode(dataStr);\n\n //We can only fit a certain amount in each URL, so we need to split this request\n //up into multiple pieces if it doesn't fit in one request.\n const dataSegs = splitStringBySize(base64data, MAX_PAYLOAD_SIZE);\n\n //Enqueue each segment for transmission. We assign each chunk a sequential ID and a total number\n //of segments so that we can reassemble the packet on the server.\n for (let i = 0; i < dataSegs.length; i++) {\n this.scriptTagHolder.enqueueSegment(\n this.curSegmentNum,\n dataSegs.length,\n dataSegs[i]\n );\n this.curSegmentNum++;\n }\n }\n\n /**\n * This is how we notify the server that we're leaving.\n * We aren't able to send requests with DHTML on a window close event, but we can\n * trigger XHR requests in some browsers (everything but Opera basically).\n */\n addDisconnectPingFrame(id: string, pw: string) {\n if (isNodeSdk()) {\n return;\n }\n this.myDisconnFrame = document.createElement('iframe');\n const urlParams: { [k: string]: string } = {};\n urlParams[FIREBASE_LONGPOLL_DISCONN_FRAME_REQUEST_PARAM] = 't';\n urlParams[FIREBASE_LONGPOLL_ID_PARAM] = id;\n urlParams[FIREBASE_LONGPOLL_PW_PARAM] = pw;\n this.myDisconnFrame.src = this.urlFn(urlParams);\n this.myDisconnFrame.style.display = 'none';\n\n document.body.appendChild(this.myDisconnFrame);\n }\n\n /**\n * Used to track the bytes received by this client\n */\n private incrementIncomingBytes_(args: unknown) {\n // TODO: This is an annoying perf hit just to track the number of incoming bytes. Maybe it should be opt-in.\n const bytesReceived = stringify(args).length;\n this.bytesReceived += bytesReceived;\n this.stats_.incrementCounter('bytes_received', bytesReceived);\n }\n}\n\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport interface IFrameElement extends HTMLIFrameElement {\n doc: Document;\n}\n\n/*********************************************************************************************\n * A wrapper around an iframe that is used as a long-polling script holder.\n *********************************************************************************************/\nexport class FirebaseIFrameScriptHolder {\n //We maintain a count of all of the outstanding requests, because if we have too many active at once it can cause\n //problems in some browsers.\n outstandingRequests = new Set<number>();\n\n //A queue of the pending segments waiting for transmission to the server.\n pendingSegs: Array<{ seg: number; ts: number; d: unknown }> = [];\n\n //A serial number. We use this for two things:\n // 1) A way to ensure the browser doesn't cache responses to polls\n // 2) A way to make the server aware when long-polls arrive in a different order than we started them. The\n // server needs to release both polls in this case or it will cause problems in Opera since Opera can only execute\n // JSONP code in the order it was added to the iframe.\n currentSerial = Math.floor(Math.random() * 100000000);\n\n // This gets set to false when we're \"closing down\" the connection (e.g. we're switching transports but there's still\n // incoming data from the server that we're waiting for).\n sendNewPolls = true;\n\n uniqueCallbackIdentifier: number;\n myIFrame: IFrameElement;\n alive: boolean;\n myID: string;\n myPW: string;\n commandCB: (command: string, ...args: unknown[]) => void;\n onMessageCB: (...args: unknown[]) => void;\n\n /**\n * @param commandCB - The callback to be called when control commands are recevied from the server.\n * @param onMessageCB - The callback to be triggered when responses arrive from the server.\n * @param onDisconnect - The callback to be triggered when this tag holder is closed\n * @param urlFn - A function that provides the URL of the endpoint to send data to.\n */\n constructor(\n commandCB: (command: string, ...args: unknown[]) => void,\n onMessageCB: (...args: unknown[]) => void,\n public onDisconnect: () => void,\n public urlFn: (a: object) => string\n ) {\n if (!isNodeSdk()) {\n //Each script holder registers a couple of uniquely named callbacks with the window. These are called from the\n //iframes where we put the long-polling script tags. We have two callbacks:\n // 1) Command Callback - Triggered for control issues, like starting a connection.\n // 2) Message Callback - Triggered when new data arrives.\n this.uniqueCallbackIdentifier = LUIDGenerator();\n window[\n FIREBASE_LONGPOLL_COMMAND_CB_NAME + this.uniqueCallbackIdentifier\n ] = commandCB;\n window[FIREBASE_LONGPOLL_DATA_CB_NAME + this.uniqueCallbackIdentifier] =\n onMessageCB;\n\n //Create an iframe for us to add script tags to.\n this.myIFrame = FirebaseIFrameScriptHolder.createIFrame_();\n\n // Set the iframe's contents.\n let script = '';\n // if we set a javascript url, it's IE and we need to set the document domain. The javascript url is sufficient\n // for ie9, but ie8 needs to do it again in the document itself.\n if (\n this.myIFrame.src &&\n this.myIFrame.src.substr(0, 'javascript:'.length) === 'javascript:'\n ) {\n const currentDomain = document.domain;\n script = '<script>document.domain=\"' + currentDomain + '\";</script>';\n }\n const iframeContents = '<html><body>' + script + '</body></html>';\n try {\n this.myIFrame.doc.open();\n this.myIFrame.doc.write(iframeContents);\n this.myIFrame.doc.close();\n } catch (e) {\n log('frame writing exception');\n if (e.stack) {\n log(e.stack);\n }\n log(e);\n }\n } else {\n this.commandCB = commandCB;\n this.onMessageCB = onMessageCB;\n }\n }\n\n /**\n * Each browser has its own funny way to handle iframes. Here we mush them all together into one object that I can\n * actually use.\n */\n private static createIFrame_(): IFrameElement {\n const iframe = document.createElement('iframe') as IFrameElement;\n iframe.style.display = 'none';\n\n // This is necessary in order to initialize the document inside the iframe\n if (document.body) {\n document.body.appendChild(iframe);\n try {\n // If document.domain has been modified in IE, this will throw an error, and we need to set the\n // domain of the iframe's document manually. We can do this via a javascript: url as the src attribute\n // Also note that we must do this *after* the iframe has been appended to the page. Otherwise it doesn't work.\n const a = iframe.contentWindow.document;\n if (!a) {\n // Apologies for the log-spam, I need to do something to keep closure from optimizing out the assignment above.\n log('No IE domain setting required');\n }\n } catch (e) {\n const domain = document.domain;\n iframe.src =\n \"javascript:void((function(){document.open();document.domain='\" +\n domain +\n \"';document.close();})())\";\n }\n } else {\n // LongPollConnection attempts to delay initialization until the document is ready, so hopefully this\n // never gets hit.\n throw 'Document body has not initialized. Wait to initialize Firebase until after the document is ready.';\n }\n\n // Get the document of the iframe in a browser-specific way.\n if (iframe.contentDocument) {\n iframe.doc = iframe.contentDocument; // Firefox, Opera, Safari\n } else if (iframe.contentWindow) {\n iframe.doc = iframe.contentWindow.document; // Internet Explorer\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n } else if ((iframe as any).document) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n iframe.doc = (iframe as any).document; //others?\n }\n\n return iframe;\n }\n\n /**\n * Cancel all outstanding queries and remove the frame.\n */\n close() {\n //Mark this iframe as dead, so no new requests are sent.\n this.alive = false;\n\n if (this.myIFrame) {\n //We have to actually remove all of the html inside this iframe before removing it from the\n //window, or IE will continue loading and executing the script tags we've already added, which\n //can lead to some errors being thrown. Setting textContent seems to be the safest way to do this.\n this.myIFrame.doc.body.textContent = '';\n setTimeout(() => {\n if (this.myIFrame !== null) {\n document.body.removeChild(this.myIFrame);\n this.myIFrame = null;\n }\n }, Math.floor(0));\n }\n\n // Protect from being called recursively.\n const onDisconnect = this.onDisconnect;\n if (onDisconnect) {\n this.onDisconnect = null;\n onDisconnect();\n }\n }\n\n /**\n * Actually start the long-polling session by adding the first script tag(s) to the iframe.\n * @param id - The ID of this connection\n * @param pw - The password for this connection\n */\n startLongPoll(id: string, pw: string) {\n this.myID = id;\n this.myPW = pw;\n this.alive = true;\n\n //send the initial request. If there are requests queued, make sure that we transmit as many as we are currently able to.\n while (this.newRequest_()) {}\n }\n\n /**\n * This is called any time someone might want a script tag to be added. It adds a script tag when there aren't\n * too many outstanding requests and we are still alive.\n *\n * If there are outstanding packet segments to send, it sends one. If there aren't, it sends a long-poll anyways if\n * needed.\n */\n private newRequest_() {\n // We keep one outstanding request open all the time to receive data, but if we need to send data\n // (pendingSegs.length > 0) then we create a new request to send the data. The server will automatically\n // close the old request.\n if (\n this.alive &&\n this.sendNewPolls &&\n this.outstandingRequests.size < (this.pendingSegs.length > 0 ? 2 : 1)\n ) {\n //construct our url\n this.currentSerial++;\n const urlParams: { [k: string]: string | number } = {};\n urlParams[FIREBASE_LONGPOLL_ID_PARAM] = this.myID;\n urlParams[FIREBASE_LONGPOLL_PW_PARAM] = this.myPW;\n urlParams[FIREBASE_LONGPOLL_SERIAL_PARAM] = this.currentSerial;\n let theURL = this.urlFn(urlParams);\n //Now add as much data as we can.\n let curDataString = '';\n let i = 0;\n\n while (this.pendingSegs.length > 0) {\n //first, lets see if the next segment will fit.\n const nextSeg = this.pendingSegs[0];\n if (\n (nextSeg.d as unknown[]).length +\n SEG_HEADER_SIZE +\n curDataString.length <=\n MAX_URL_DATA_SIZE\n ) {\n //great, the segment will fit. Lets append it.\n const theSeg = this.pendingSegs.shift();\n curDataString =\n curDataString +\n '&' +\n FIREBASE_LONGPOLL_SEGMENT_NUM_PARAM +\n i +\n '=' +\n theSeg.seg +\n '&' +\n FIREBASE_LONGPOLL_SEGMENTS_IN_PACKET +\n i +\n '=' +\n theSeg.ts +\n '&' +\n FIREBASE_LONGPOLL_DATA_PARAM +\n i +\n '=' +\n theSeg.d;\n i++;\n } else {\n break;\n }\n }\n\n theURL = theURL + curDataString;\n this.addLongPollTag_(theURL, this.currentSerial);\n\n return true;\n } else {\n return false;\n }\n }\n\n /**\n * Queue a packet for transmission to the server.\n * @param segnum - A sequential id for this packet segment used for reassembly\n * @param totalsegs - The total number of segments in this packet\n * @param data - The data for this segment.\n */\n enqueueSegment(segnum: number, totalsegs: number, data: unknown) {\n //add this to the queue of segments to send.\n this.pendingSegs.push({ seg: segnum, ts: totalsegs, d: data });\n\n //send the data immediately if there isn't already data being transmitted, unless\n //startLongPoll hasn't been called yet.\n if (this.alive) {\n this.newRequest_();\n }\n }\n\n /**\n * Add a script tag for a regular long-poll request.\n * @param url - The URL of the script tag.\n * @param serial - The serial number of the request.\n */\n private addLongPollTag_(url: string, serial: number) {\n //remember that we sent this request.\n this.outstandingRequests.add(serial);\n\n const doNewRequest = () => {\n this.outstandingRequests.delete(serial);\n this.newRequest_();\n };\n\n // If this request doesn't return on its own accord (by the server sending us some data), we'll\n // create a new one after the KEEPALIVE interval to make sure we always keep a fresh request open.\n const keepaliveTimeout = setTimeout(\n doNewRequest,\n Math.floor(KEEPALIVE_REQUEST_INTERVAL)\n );\n\n const readyStateCB = () => {\n // Request completed. Cancel the keepalive.\n clearTimeout(keepaliveTimeout);\n\n // Trigger a new request so we can continue receiving data.\n doNewRequest();\n };\n\n this.addTag(url, readyStateCB);\n }\n\n /**\n * Add an arbitrary script tag to the iframe.\n * @param url - The URL for the script tag source.\n * @param loadCB - A callback to be triggered once the script has loaded.\n */\n addTag(url: string, loadCB: () => void) {\n if (isNodeSdk()) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n (this as any).doNodeLongPoll(url, loadCB);\n } else {\n setTimeout(() => {\n try {\n // if we're already closed, don't add this poll\n if (!this.sendNewPolls) {\n return;\n }\n const newScript = this.myIFrame.doc.createElement('script');\n newScript.type = 'text/javascript';\n newScript.async = true;\n newScript.src = url;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n newScript.onload = (newScript as any).onreadystatechange =\n function () {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const rstate = (newScript as any).readyState;\n if (!rstate || rstate === 'loaded' || rstate === 'complete') {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n newScript.onload = (newScript as any).onreadystatechange = null;\n if (newScript.parentNode) {\n newScript.parentNode.removeChild(newScript);\n }\n loadCB();\n }\n };\n newScript.onerror = () => {\n log('Long-poll script failed to load: ' + url);\n this.sendNewPolls = false;\n this.close();\n };\n this.myIFrame.doc.body.appendChild(newScript);\n } catch (e) {\n // TODO: we should make this error visible somehow\n }\n }, Math.floor(1));\n }\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert, isNodeSdk, jsonEval, stringify } from '@firebase/util';\n\nimport { RepoInfo, repoInfoConnectionURL } from '../core/RepoInfo';\nimport { StatsCollection } from '../core/stats/StatsCollection';\nimport { statsManagerGetCollection } from '../core/stats/StatsManager';\nimport { PersistentStorage } from '../core/storage/storage';\nimport { logWrapper, splitStringBySize } from '../core/util/util';\nimport { SDK_VERSION } from '../core/version';\n\nimport {\n APPLICATION_ID_PARAM,\n APP_CHECK_TOKEN_PARAM,\n FORGE_DOMAIN_RE,\n FORGE_REF,\n LAST_SESSION_PARAM,\n PROTOCOL_VERSION,\n REFERER_PARAM,\n TRANSPORT_SESSION_PARAM,\n VERSION_PARAM,\n WEBSOCKET\n} from './Constants';\nimport { Transport } from './Transport';\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ndeclare const MozWebSocket: any;\n\nconst WEBSOCKET_MAX_FRAME_SIZE = 16384;\nconst WEBSOCKET_KEEPALIVE_INTERVAL = 45000;\n\nlet WebSocketImpl = null;\nif (typeof MozWebSocket !== 'undefined') {\n WebSocketImpl = MozWebSocket;\n} else if (typeof WebSocket !== 'undefined') {\n WebSocketImpl = WebSocket;\n}\n\nexport function setWebSocketImpl(impl) {\n WebSocketImpl = impl;\n}\n\n/**\n * Create a new websocket connection with the given callbacks.\n */\nexport class WebSocketConnection implements Transport {\n keepaliveTimer: number | null = null;\n frames: string[] | null = null;\n totalFrames = 0;\n bytesSent = 0;\n bytesReceived = 0;\n connURL: string;\n onDisconnect: (a?: boolean) => void;\n onMessage: (msg: {}) => void;\n mySock: WebSocket | null;\n private log_: (...a: unknown[]) => void;\n private stats_: StatsCollection;\n private everConnected_: boolean;\n private isClosed_: boolean;\n private nodeAdmin: boolean;\n\n /**\n * @param connId identifier for this transport\n * @param repoInfo The info for the websocket endpoint.\n * @param applicationId The Firebase App ID for this project.\n * @param appCheckToken The App Check Token for this client.\n * @param authToken The Auth Token for this client.\n * @param transportSessionId Optional transportSessionId if this is connecting\n * to an existing transport session\n * @param lastSessionId Optional lastSessionId if there was a previous\n * connection\n */\n constructor(\n public connId: string,\n repoInfo: RepoInfo,\n private applicationId?: string,\n private appCheckToken?: string,\n private authToken?: string,\n transportSessionId?: string,\n lastSessionId?: string\n ) {\n this.log_ = logWrapper(this.connId);\n this.stats_ = statsManagerGetCollection(repoInfo);\n this.connURL = WebSocketConnection.connectionURL_(\n repoInfo,\n transportSessionId,\n lastSessionId,\n appCheckToken,\n applicationId\n );\n this.nodeAdmin = repoInfo.nodeAdmin;\n }\n\n /**\n * @param repoInfo - The info for the websocket endpoint.\n * @param transportSessionId - Optional transportSessionId if this is connecting to an existing transport\n * session\n * @param lastSessionId - Optional lastSessionId if there was a previous connection\n * @returns connection url\n */\n private static connectionURL_(\n repoInfo: RepoInfo,\n transportSessionId?: string,\n lastSessionId?: string,\n appCheckToken?: string,\n applicationId?: string\n ): string {\n const urlParams: { [k: string]: string } = {};\n urlParams[VERSION_PARAM] = PROTOCOL_VERSION;\n\n if (\n !isNodeSdk() &&\n typeof location !== 'undefined' &&\n location.hostname &&\n FORGE_DOMAIN_RE.test(location.hostname)\n ) {\n urlParams[REFERER_PARAM] = FORGE_REF;\n }\n if (transportSessionId) {\n urlParams[TRANSPORT_SESSION_PARAM] = transportSessionId;\n }\n if (lastSessionId) {\n urlParams[LAST_SESSION_PARAM] = lastSessionId;\n }\n if (appCheckToken) {\n urlParams[APP_CHECK_TOKEN_PARAM] = appCheckToken;\n }\n if (applicationId) {\n urlParams[APPLICATION_ID_PARAM] = applicationId;\n }\n\n return repoInfoConnectionURL(repoInfo, WEBSOCKET, urlParams);\n }\n\n /**\n * @param onMessage - Callback when messages arrive\n * @param onDisconnect - Callback with connection lost.\n */\n open(onMessage: (msg: {}) => void, onDisconnect: (a?: boolean) => void) {\n this.onDisconnect = onDisconnect;\n this.onMessage = onMessage;\n\n this.log_('Websocket connecting to ' + this.connURL);\n\n this.everConnected_ = false;\n // Assume failure until proven otherwise.\n PersistentStorage.set('previous_websocket_failure', true);\n\n try {\n let options: { [k: string]: object };\n if (isNodeSdk()) {\n const device = this.nodeAdmin ? 'AdminNode' : 'Node';\n // UA Format: Firebase/<wire_protocol>/<sdk_version>/<platform>/<device>\n options = {\n headers: {\n 'User-Agent': `Firebase/${PROTOCOL_VERSION}/${SDK_VERSION}/${process.platform}/${device}`,\n 'X-Firebase-GMPID': this.applicationId || ''\n }\n };\n\n // If using Node with admin creds, AppCheck-related checks are unnecessary.\n // Note that we send the credentials here even if they aren't admin credentials, which is\n // not a problem.\n // Note that this header is just used to bypass appcheck, and the token should still be sent\n // through the websocket connection once it is established.\n if (this.authToken) {\n options.headers['Authorization'] = `Bearer ${this.authToken}`;\n }\n if (this.appCheckToken) {\n options.headers['X-Firebase-AppCheck'] = this.appCheckToken;\n }\n\n // Plumb appropriate http_proxy environment variable into faye-websocket if it exists.\n const env = process['env'];\n const proxy =\n this.connURL.indexOf('wss://') === 0\n ? env['HTTPS_PROXY'] || env['https_proxy']\n : env['HTTP_PROXY'] || env['http_proxy'];\n\n if (proxy) {\n options['proxy'] = { origin: proxy };\n }\n }\n this.mySock = new WebSocketImpl(this.connURL, [], options);\n } catch (e) {\n this.log_('Error instantiating WebSocket.');\n const error = e.message || e.data;\n if (error) {\n this.log_(error);\n }\n this.onClosed_();\n return;\n }\n\n this.mySock.onopen = () => {\n this.log_('Websocket connected.');\n this.everConnected_ = true;\n };\n\n this.mySock.onclose = () => {\n this.log_('Websocket connection was disconnected.');\n this.mySock = null;\n this.onClosed_();\n };\n\n this.mySock.onmessage = m => {\n this.handleIncomingFrame(m as {});\n };\n\n this.mySock.onerror = e => {\n this.log_('WebSocket error. Closing connection.');\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const error = (e as any).message || (e as any).data;\n if (error) {\n this.log_(error);\n }\n this.onClosed_();\n };\n }\n\n /**\n * No-op for websockets, we don't need to do anything once the connection is confirmed as open\n */\n start() {}\n\n static forceDisallow_: boolean;\n\n static forceDisallow() {\n WebSocketConnection.forceDisallow_ = true;\n }\n\n static isAvailable(): boolean {\n let isOldAndroid = false;\n if (typeof navigator !== 'undefined' && navigator.userAgent) {\n const oldAndroidRegex = /Android ([0-9]{0,}\\.[0-9]{0,})/;\n const oldAndroidMatch = navigator.userAgent.match(oldAndroidRegex);\n if (oldAndroidMatch && oldAndroidMatch.length > 1) {\n if (parseFloat(oldAndroidMatch[1]) < 4.4) {\n isOldAndroid = true;\n }\n }\n }\n\n return (\n !isOldAndroid &&\n WebSocketImpl !== null &&\n !WebSocketConnection.forceDisallow_\n );\n }\n\n /**\n * Number of response before we consider the connection \"healthy.\"\n */\n static responsesRequiredToBeHealthy = 2;\n\n /**\n * Time to wait for the connection te become healthy before giving up.\n */\n static healthyTimeout = 30000;\n\n /**\n * Returns true if we previously failed to connect with this transport.\n */\n static previouslyFailed(): boolean {\n // If our persistent storage is actually only in-memory storage,\n // we default to assuming that it previously failed to be safe.\n return (\n PersistentStorage.isInMemoryStorage ||\n PersistentStorage.get('previous_websocket_failure') === true\n );\n }\n\n markConnectionHealthy() {\n PersistentStorage.remove('previous_websocket_failure');\n }\n\n private appendFrame_(data: string) {\n this.frames.push(data);\n if (this.frames.length === this.totalFrames) {\n const fullMess = this.frames.join('');\n this.frames = null;\n const jsonMess = jsonEval(fullMess) as object;\n\n //handle the message\n this.onMessage(jsonMess);\n }\n }\n\n /**\n * @param frameCount - The number of frames we are expecting from the server\n */\n private handleNewFrameCount_(frameCount: number) {\n this.totalFrames = frameCount;\n this.frames = [];\n }\n\n /**\n * Attempts to parse a frame count out of some text. If it can't, assumes a value of 1\n * @returns Any remaining data to be process, or null if there is none\n */\n private extractFrameCount_(data: string): string | null {\n assert(this.frames === null, 'We already have a frame buffer');\n // TODO: The server is only supposed to send up to 9999 frames (i.e. length <= 4), but that isn't being enforced\n // currently. So allowing larger frame counts (length <= 6). See https://app.asana.com/0/search/8688598998380/8237608042508\n if (data.length <= 6) {\n const frameCount = Number(data);\n if (!isNaN(frameCount)) {\n this.handleNewFrameCount_(frameCount);\n return null;\n }\n }\n this.handleNewFrameCount_(1);\n return data;\n }\n\n /**\n * Process a websocket frame that has arrived from the server.\n * @param mess - The frame data\n */\n handleIncomingFrame(mess: { [k: string]: unknown }) {\n if (this.mySock === null) {\n return; // Chrome apparently delivers incoming packets even after we .close() the connection sometimes.\n }\n const data = mess['data'] as string;\n this.bytesReceived += data.length;\n this.stats_.incrementCounter('bytes_received', data.length);\n\n this.resetKeepAlive();\n\n if (this.frames !== null) {\n // we're buffering\n this.appendFrame_(data);\n } else {\n // try to parse out a frame count, otherwise, assume 1 and process it\n const remainingData = this.extractFrameCount_(data);\n if (remainingData !== null) {\n this.appendFrame_(remainingData);\n }\n }\n }\n\n /**\n * Send a message to the server\n * @param data - The JSON object to transmit\n */\n send(data: {}) {\n this.resetKeepAlive();\n\n const dataStr = stringify(data);\n this.bytesSent += dataStr.length;\n this.stats_.incrementCounter('bytes_sent', dataStr.length);\n\n //We can only fit a certain amount in each websocket frame, so we need to split this request\n //up into multiple pieces if it doesn't fit in one request.\n\n const dataSegs = splitStringBySize(dataStr, WEBSOCKET_MAX_FRAME_SIZE);\n\n //Send the length header\n if (dataSegs.length > 1) {\n this.sendString_(String(dataSegs.length));\n }\n\n //Send the actual data in segments.\n for (let i = 0; i < dataSegs.length; i++) {\n this.sendString_(dataSegs[i]);\n }\n }\n\n private shutdown_() {\n this.isClosed_ = true;\n if (this.keepaliveTimer) {\n clearInterval(this.keepaliveTimer);\n this.keepaliveTimer = null;\n }\n\n if (this.mySock) {\n this.mySock.close();\n this.mySock = null;\n }\n }\n\n private onClosed_() {\n if (!this.isClosed_) {\n this.log_('WebSocket is closing itself');\n this.shutdown_();\n\n // since this is an internal close, trigger the close listener\n if (this.onDisconnect) {\n this.onDisconnect(this.everConnected_);\n this.onDisconnect = null;\n }\n }\n }\n\n /**\n * External-facing close handler.\n * Close the websocket and kill the connection.\n */\n close() {\n if (!this.isClosed_) {\n this.log_('WebSocket is being closed');\n this.shutdown_();\n }\n }\n\n /**\n * Kill the current keepalive timer and start a new one, to ensure that it always fires N seconds after\n * the last activity.\n */\n resetKeepAlive() {\n clearInterval(this.keepaliveTimer);\n this.keepaliveTimer = setInterval(() => {\n //If there has been no websocket activity for a while, send a no-op\n if (this.mySock) {\n this.sendString_('0');\n }\n this.resetKeepAlive();\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n }, Math.floor(WEBSOCKET_KEEPALIVE_INTERVAL)) as any;\n }\n\n /**\n * Send a string over the websocket.\n *\n * @param str - String to send.\n */\n private sendString_(str: string) {\n // Firefox seems to sometimes throw exceptions (NS_ERROR_UNEXPECTED) from websocket .send()\n // calls for some unknown reason. We treat these as an error and disconnect.\n // See https://app.asana.com/0/58926111402292/68021340250410\n try {\n this.mySock.send(str);\n } catch (e) {\n this.log_(\n 'Exception thrown from WebSocket.send():',\n e.message || e.data,\n 'Closing connection.'\n );\n setTimeout(this.onClosed_.bind(this), 0);\n }\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RepoInfo } from '../core/RepoInfo';\nimport { warn } from '../core/util/util';\n\nimport { BrowserPollConnection } from './BrowserPollConnection';\nimport { TransportConstructor } from './Transport';\nimport { WebSocketConnection } from './WebSocketConnection';\n\n/**\n * Currently simplistic, this class manages what transport a Connection should use at various stages of its\n * lifecycle.\n *\n * It starts with longpolling in a browser, and httppolling on node. It then upgrades to websockets if\n * they are available.\n */\nexport class TransportManager {\n private transports_: TransportConstructor[];\n\n // Keeps track of whether the TransportManager has already chosen a transport to use\n static globalTransportInitialized_ = false;\n\n static get ALL_TRANSPORTS() {\n return [BrowserPollConnection, WebSocketConnection];\n }\n\n /**\n * Returns whether transport has been selected to ensure WebSocketConnection or BrowserPollConnection are not called after\n * TransportManager has already set up transports_\n */\n static get IS_TRANSPORT_INITIALIZED() {\n return this.globalTransportInitialized_;\n }\n\n /**\n * @param repoInfo - Metadata around the namespace we're connecting to\n */\n constructor(repoInfo: RepoInfo) {\n this.initTransports_(repoInfo);\n }\n\n private initTransports_(repoInfo: RepoInfo) {\n const isWebSocketsAvailable: boolean =\n WebSocketConnection && WebSocketConnection['isAvailable']();\n let isSkipPollConnection =\n isWebSocketsAvailable && !WebSocketConnection.previouslyFailed();\n\n if (repoInfo.webSocketOnly) {\n if (!isWebSocketsAvailable) {\n warn(\n \"wss:// URL used, but browser isn't known to support websockets. Trying anyway.\"\n );\n }\n\n isSkipPollConnection = true;\n }\n\n if (isSkipPollConnection) {\n this.transports_ = [WebSocketConnection];\n } else {\n const transports = (this.transports_ = [] as TransportConstructor[]);\n for (const transport of TransportManager.ALL_TRANSPORTS) {\n if (transport && transport['isAvailable']()) {\n transports.push(transport);\n }\n }\n TransportManager.globalTransportInitialized_ = true;\n }\n }\n\n /**\n * @returns The constructor for the initial transport to use\n */\n initialTransport(): TransportConstructor {\n if (this.transports_.length > 0) {\n return this.transports_[0];\n } else {\n throw new Error('No transports available');\n }\n }\n\n /**\n * @returns The constructor for the next transport, or null\n */\n upgradeTransport(): TransportConstructor | null {\n if (this.transports_.length > 1) {\n return this.transports_[1];\n } else {\n return null;\n }\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RepoInfo } from '../core/RepoInfo';\nimport { PersistentStorage } from '../core/storage/storage';\nimport { Indexable } from '../core/util/misc';\nimport {\n error,\n logWrapper,\n requireKey,\n setTimeoutNonBlocking,\n warn\n} from '../core/util/util';\n\nimport { PROTOCOL_VERSION } from './Constants';\nimport { Transport, TransportConstructor } from './Transport';\nimport { TransportManager } from './TransportManager';\n\n// Abort upgrade attempt if it takes longer than 60s.\nconst UPGRADE_TIMEOUT = 60000;\n\n// For some transports (WebSockets), we need to \"validate\" the transport by exchanging a few requests and responses.\n// If we haven't sent enough requests within 5s, we'll start sending noop ping requests.\nconst DELAY_BEFORE_SENDING_EXTRA_REQUESTS = 5000;\n\n// If the initial data sent triggers a lot of bandwidth (i.e. it's a large put or a listen for a large amount of data)\n// then we may not be able to exchange our ping/pong requests within the healthy timeout. So if we reach the timeout\n// but we've sent/received enough bytes, we don't cancel the connection.\nconst BYTES_SENT_HEALTHY_OVERRIDE = 10 * 1024;\nconst BYTES_RECEIVED_HEALTHY_OVERRIDE = 100 * 1024;\n\nconst enum RealtimeState {\n CONNECTING,\n CONNECTED,\n DISCONNECTED\n}\n\nconst MESSAGE_TYPE = 't';\nconst MESSAGE_DATA = 'd';\nconst CONTROL_SHUTDOWN = 's';\nconst CONTROL_RESET = 'r';\nconst CONTROL_ERROR = 'e';\nconst CONTROL_PONG = 'o';\nconst SWITCH_ACK = 'a';\nconst END_TRANSMISSION = 'n';\nconst PING = 'p';\n\nconst SERVER_HELLO = 'h';\n\n/**\n * Creates a new real-time connection to the server using whichever method works\n * best in the current browser.\n */\nexport class Connection {\n connectionCount = 0;\n pendingDataMessages: unknown[] = [];\n sessionId: string;\n\n private conn_: Transport;\n private healthyTimeout_: number;\n private isHealthy_: boolean;\n private log_: (...args: unknown[]) => void;\n private primaryResponsesRequired_: number;\n private rx_: Transport;\n private secondaryConn_: Transport;\n private secondaryResponsesRequired_: number;\n private state_ = RealtimeState.CONNECTING;\n private transportManager_: TransportManager;\n private tx_: Transport;\n\n /**\n * @param id - an id for this connection\n * @param repoInfo_ - the info for the endpoint to connect to\n * @param applicationId_ - the Firebase App ID for this project\n * @param appCheckToken_ - The App Check Token for this device.\n * @param authToken_ - The auth token for this session.\n * @param onMessage_ - the callback to be triggered when a server-push message arrives\n * @param onReady_ - the callback to be triggered when this connection is ready to send messages.\n * @param onDisconnect_ - the callback to be triggered when a connection was lost\n * @param onKill_ - the callback to be triggered when this connection has permanently shut down.\n * @param lastSessionId - last session id in persistent connection. is used to clean up old session in real-time server\n */\n constructor(\n public id: string,\n private repoInfo_: RepoInfo,\n private applicationId_: string | undefined,\n private appCheckToken_: string | undefined,\n private authToken_: string | undefined,\n private onMessage_: (a: {}) => void,\n private onReady_: (a: number, b: string) => void,\n private onDisconnect_: () => void,\n private onKill_: (a: string) => void,\n public lastSessionId?: string\n ) {\n this.log_ = logWrapper('c:' + this.id + ':');\n this.transportManager_ = new TransportManager(repoInfo_);\n this.log_('Connection created');\n this.start_();\n }\n\n /**\n * Starts a connection attempt\n */\n private start_(): void {\n const conn = this.transportManager_.initialTransport();\n this.conn_ = new conn(\n this.nextTransportId_(),\n this.repoInfo_,\n this.applicationId_,\n this.appCheckToken_,\n this.authToken_,\n null,\n this.lastSessionId\n );\n\n // For certain transports (WebSockets), we need to send and receive several messages back and forth before we\n // can consider the transport healthy.\n this.primaryResponsesRequired_ = conn['responsesRequiredToBeHealthy'] || 0;\n\n const onMessageReceived = this.connReceiver_(this.conn_);\n const onConnectionLost = this.disconnReceiver_(this.conn_);\n this.tx_ = this.conn_;\n this.rx_ = this.conn_;\n this.secondaryConn_ = null;\n this.isHealthy_ = false;\n\n /*\n * Firefox doesn't like when code from one iframe tries to create another iframe by way of the parent frame.\n * This can occur in the case of a redirect, i.e. we guessed wrong on what server to connect to and received a reset.\n * Somehow, setTimeout seems to make this ok. That doesn't make sense from a security perspective, since you should\n * still have the context of your originating frame.\n */\n setTimeout(() => {\n // this.conn_ gets set to null in some of the tests. Check to make sure it still exists before using it\n this.conn_ && this.conn_.open(onMessageReceived, onConnectionLost);\n }, Math.floor(0));\n\n const healthyTimeoutMS = conn['healthyTimeout'] || 0;\n if (healthyTimeoutMS > 0) {\n this.healthyTimeout_ = setTimeoutNonBlocking(() => {\n this.healthyTimeout_ = null;\n if (!this.isHealthy_) {\n if (\n this.conn_ &&\n this.conn_.bytesReceived > BYTES_RECEIVED_HEALTHY_OVERRIDE\n ) {\n this.log_(\n 'Connection exceeded healthy timeout but has received ' +\n this.conn_.bytesReceived +\n ' bytes. Marking connection healthy.'\n );\n this.isHealthy_ = true;\n this.conn_.markConnectionHealthy();\n } else if (\n this.conn_ &&\n this.conn_.bytesSent > BYTES_SENT_HEALTHY_OVERRIDE\n ) {\n this.log_(\n 'Connection exceeded healthy timeout but has sent ' +\n this.conn_.bytesSent +\n ' bytes. Leaving connection alive.'\n );\n // NOTE: We don't want to mark it healthy, since we have no guarantee that the bytes have made it to\n // the server.\n } else {\n this.log_('Closing unhealthy connection after timeout.');\n this.close();\n }\n }\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n }, Math.floor(healthyTimeoutMS)) as any;\n }\n }\n\n private nextTransportId_(): string {\n return 'c:' + this.id + ':' + this.connectionCount++;\n }\n\n private disconnReceiver_(conn) {\n return everConnected => {\n if (conn === this.conn_) {\n this.onConnectionLost_(everConnected);\n } else if (conn === this.secondaryConn_) {\n this.log_('Secondary connection lost.');\n this.onSecondaryConnectionLost_();\n } else {\n this.log_('closing an old connection');\n }\n };\n }\n\n private connReceiver_(conn: Transport) {\n return (message: Indexable) => {\n if (this.state_ !== RealtimeState.DISCONNECTED) {\n if (conn === this.rx_) {\n this.onPrimaryMessageReceived_(message);\n } else if (conn === this.secondaryConn_) {\n this.onSecondaryMessageReceived_(message);\n } else {\n this.log_('message on old connection');\n }\n }\n };\n }\n\n /**\n * @param dataMsg - An arbitrary data message to be sent to the server\n */\n sendRequest(dataMsg: object) {\n // wrap in a data message envelope and send it on\n const msg = { t: 'd', d: dataMsg };\n this.sendData_(msg);\n }\n\n tryCleanupConnection() {\n if (this.tx_ === this.secondaryConn_ && this.rx_ === this.secondaryConn_) {\n this.log_(\n 'cleaning up and promoting a connection: ' + this.secondaryConn_.connId\n );\n this.conn_ = this.secondaryConn_;\n this.secondaryConn_ = null;\n // the server will shutdown the old connection\n }\n }\n\n private onSecondaryControl_(controlData: { [k: string]: unknown }) {\n if (MESSAGE_TYPE in controlData) {\n const cmd = controlData[MESSAGE_TYPE] as string;\n if (cmd === SWITCH_ACK) {\n this.upgradeIfSecondaryHealthy_();\n } else if (cmd === CONTROL_RESET) {\n // Most likely the session wasn't valid. Abandon the switch attempt\n this.log_('Got a reset on secondary, closing it');\n this.secondaryConn_.close();\n // If we were already using this connection for something, than we need to fully close\n if (\n this.tx_ === this.secondaryConn_ ||\n this.rx_ === this.secondaryConn_\n ) {\n this.close();\n }\n } else if (cmd === CONTROL_PONG) {\n this.log_('got pong on secondary.');\n this.secondaryResponsesRequired_--;\n this.upgradeIfSecondaryHealthy_();\n }\n }\n }\n\n private onSecondaryMessageReceived_(parsedData: Indexable) {\n const layer: string = requireKey('t', parsedData) as string;\n const data: unknown = requireKey('d', parsedData);\n if (layer === 'c') {\n this.onSecondaryControl_(data as Indexable);\n } else if (layer === 'd') {\n // got a data message, but we're still second connection. Need to buffer it up\n this.pendingDataMessages.push(data);\n } else {\n throw new Error('Unknown protocol layer: ' + layer);\n }\n }\n\n private upgradeIfSecondaryHealthy_() {\n if (this.secondaryResponsesRequired_ <= 0) {\n this.log_('Secondary connection is healthy.');\n this.isHealthy_ = true;\n this.secondaryConn_.markConnectionHealthy();\n this.proceedWithUpgrade_();\n } else {\n // Send a ping to make sure the connection is healthy.\n this.log_('sending ping on secondary.');\n this.secondaryConn_.send({ t: 'c', d: { t: PING, d: {} } });\n }\n }\n\n private proceedWithUpgrade_() {\n // tell this connection to consider itself open\n this.secondaryConn_.start();\n // send ack\n this.log_('sending client ack on secondary');\n this.secondaryConn_.send({ t: 'c', d: { t: SWITCH_ACK, d: {} } });\n\n // send end packet on primary transport, switch to sending on this one\n // can receive on this one, buffer responses until end received on primary transport\n this.log_('Ending transmission on primary');\n this.conn_.send({ t: 'c', d: { t: END_TRANSMISSION, d: {} } });\n this.tx_ = this.secondaryConn_;\n\n this.tryCleanupConnection();\n }\n\n private onPrimaryMessageReceived_(parsedData: { [k: string]: unknown }) {\n // Must refer to parsedData properties in quotes, so closure doesn't touch them.\n const layer: string = requireKey('t', parsedData) as string;\n const data: unknown = requireKey('d', parsedData);\n if (layer === 'c') {\n this.onControl_(data as { [k: string]: unknown });\n } else if (layer === 'd') {\n this.onDataMessage_(data);\n }\n }\n\n private onDataMessage_(message: unknown) {\n this.onPrimaryResponse_();\n\n // We don't do anything with data messages, just kick them up a level\n this.onMessage_(message);\n }\n\n private onPrimaryResponse_() {\n if (!this.isHealthy_) {\n this.primaryResponsesRequired_--;\n if (this.primaryResponsesRequired_ <= 0) {\n this.log_('Primary connection is healthy.');\n this.isHealthy_ = true;\n this.conn_.markConnectionHealthy();\n }\n }\n }\n\n private onControl_(controlData: { [k: string]: unknown }) {\n const cmd: string = requireKey(MESSAGE_TYPE, controlData) as string;\n if (MESSAGE_DATA in controlData) {\n const payload = controlData[MESSAGE_DATA];\n if (cmd === SERVER_HELLO) {\n this.onHandshake_(\n payload as {\n ts: number;\n v: string;\n h: string;\n s: string;\n }\n );\n } else if (cmd === END_TRANSMISSION) {\n this.log_('recvd end transmission on primary');\n this.rx_ = this.secondaryConn_;\n for (let i = 0; i < this.pendingDataMessages.length; ++i) {\n this.onDataMessage_(this.pendingDataMessages[i]);\n }\n this.pendingDataMessages = [];\n this.tryCleanupConnection();\n } else if (cmd === CONTROL_SHUTDOWN) {\n // This was previously the 'onKill' callback passed to the lower-level connection\n // payload in this case is the reason for the shutdown. Generally a human-readable error\n this.onConnectionShutdown_(payload as string);\n } else if (cmd === CONTROL_RESET) {\n // payload in this case is the host we should contact\n this.onReset_(payload as string);\n } else if (cmd === CONTROL_ERROR) {\n error('Server Error: ' + payload);\n } else if (cmd === CONTROL_PONG) {\n this.log_('got pong on primary.');\n this.onPrimaryResponse_();\n this.sendPingOnPrimaryIfNecessary_();\n } else {\n error('Unknown control packet command: ' + cmd);\n }\n }\n }\n\n /**\n * @param handshake - The handshake data returned from the server\n */\n private onHandshake_(handshake: {\n ts: number;\n v: string;\n h: string;\n s: string;\n }): void {\n const timestamp = handshake.ts;\n const version = handshake.v;\n const host = handshake.h;\n this.sessionId = handshake.s;\n this.repoInfo_.host = host;\n // if we've already closed the connection, then don't bother trying to progress further\n if (this.state_ === RealtimeState.CONNECTING) {\n this.conn_.start();\n this.onConnectionEstablished_(this.conn_, timestamp);\n if (PROTOCOL_VERSION !== version) {\n warn('Protocol version mismatch detected');\n }\n // TODO: do we want to upgrade? when? maybe a delay?\n this.tryStartUpgrade_();\n }\n }\n\n private tryStartUpgrade_() {\n const conn = this.transportManager_.upgradeTransport();\n if (conn) {\n this.startUpgrade_(conn);\n }\n }\n\n private startUpgrade_(conn: TransportConstructor) {\n this.secondaryConn_ = new conn(\n this.nextTransportId_(),\n this.repoInfo_,\n this.applicationId_,\n this.appCheckToken_,\n this.authToken_,\n this.sessionId\n );\n // For certain transports (WebSockets), we need to send and receive several messages back and forth before we\n // can consider the transport healthy.\n this.secondaryResponsesRequired_ =\n conn['responsesRequiredToBeHealthy'] || 0;\n\n const onMessage = this.connReceiver_(this.secondaryConn_);\n const onDisconnect = this.disconnReceiver_(this.secondaryConn_);\n this.secondaryConn_.open(onMessage, onDisconnect);\n\n // If we haven't successfully upgraded after UPGRADE_TIMEOUT, give up and kill the secondary.\n setTimeoutNonBlocking(() => {\n if (this.secondaryConn_) {\n this.log_('Timed out trying to upgrade.');\n this.secondaryConn_.close();\n }\n }, Math.floor(UPGRADE_TIMEOUT));\n }\n\n private onReset_(host: string) {\n this.log_('Reset packet received. New host: ' + host);\n this.repoInfo_.host = host;\n // TODO: if we're already \"connected\", we need to trigger a disconnect at the next layer up.\n // We don't currently support resets after the connection has already been established\n if (this.state_ === RealtimeState.CONNECTED) {\n this.close();\n } else {\n // Close whatever connections we have open and start again.\n this.closeConnections_();\n this.start_();\n }\n }\n\n private onConnectionEstablished_(conn: Transport, timestamp: number) {\n this.log_('Realtime connection established.');\n this.conn_ = conn;\n this.state_ = RealtimeState.CONNECTED;\n\n if (this.onReady_) {\n this.onReady_(timestamp, this.sessionId);\n this.onReady_ = null;\n }\n\n // If after 5 seconds we haven't sent enough requests to the server to get the connection healthy,\n // send some pings.\n if (this.primaryResponsesRequired_ === 0) {\n this.log_('Primary connection is healthy.');\n this.isHealthy_ = true;\n } else {\n setTimeoutNonBlocking(() => {\n this.sendPingOnPrimaryIfNecessary_();\n }, Math.floor(DELAY_BEFORE_SENDING_EXTRA_REQUESTS));\n }\n }\n\n private sendPingOnPrimaryIfNecessary_() {\n // If the connection isn't considered healthy yet, we'll send a noop ping packet request.\n if (!this.isHealthy_ && this.state_ === RealtimeState.CONNECTED) {\n this.log_('sending ping on primary.');\n this.sendData_({ t: 'c', d: { t: PING, d: {} } });\n }\n }\n\n private onSecondaryConnectionLost_() {\n const conn = this.secondaryConn_;\n this.secondaryConn_ = null;\n if (this.tx_ === conn || this.rx_ === conn) {\n // we are relying on this connection already in some capacity. Therefore, a failure is real\n this.close();\n }\n }\n\n /**\n * @param everConnected - Whether or not the connection ever reached a server. Used to determine if\n * we should flush the host cache\n */\n private onConnectionLost_(everConnected: boolean) {\n this.conn_ = null;\n\n // NOTE: IF you're seeing a Firefox error for this line, I think it might be because it's getting\n // called on window close and RealtimeState.CONNECTING is no longer defined. Just a guess.\n if (!everConnected && this.state_ === RealtimeState.CONNECTING) {\n this.log_('Realtime connection failed.');\n // Since we failed to connect at all, clear any cached entry for this namespace in case the machine went away\n if (this.repoInfo_.isCacheableHost()) {\n PersistentStorage.remove('host:' + this.repoInfo_.host);\n // reset the internal host to what we would show the user, i.e. <ns>.firebaseio.com\n this.repoInfo_.internalHost = this.repoInfo_.host;\n }\n } else if (this.state_ === RealtimeState.CONNECTED) {\n this.log_('Realtime connection lost.');\n }\n\n this.close();\n }\n\n private onConnectionShutdown_(reason: string) {\n this.log_('Connection shutdown command received. Shutting down...');\n\n if (this.onKill_) {\n this.onKill_(reason);\n this.onKill_ = null;\n }\n\n // We intentionally don't want to fire onDisconnect (kill is a different case),\n // so clear the callback.\n this.onDisconnect_ = null;\n\n this.close();\n }\n\n private sendData_(data: object) {\n if (this.state_ !== RealtimeState.CONNECTED) {\n throw 'Connection is not connected';\n } else {\n this.tx_.send(data);\n }\n }\n\n /**\n * Cleans up this connection, calling the appropriate callbacks\n */\n close() {\n if (this.state_ !== RealtimeState.DISCONNECTED) {\n this.log_('Closing realtime connection.');\n this.state_ = RealtimeState.DISCONNECTED;\n\n this.closeConnections_();\n\n if (this.onDisconnect_) {\n this.onDisconnect_();\n this.onDisconnect_ = null;\n }\n }\n }\n\n private closeConnections_() {\n this.log_('Shutting down all connections');\n if (this.conn_) {\n this.conn_.close();\n this.conn_ = null;\n }\n\n if (this.secondaryConn_) {\n this.secondaryConn_.close();\n this.secondaryConn_ = null;\n }\n\n if (this.healthyTimeout_) {\n clearTimeout(this.healthyTimeout_);\n this.healthyTimeout_ = null;\n }\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { QueryContext } from './view/EventRegistration';\n\n/**\n * Interface defining the set of actions that can be performed against the Firebase server\n * (basically corresponds to our wire protocol).\n *\n * @interface\n */\nexport abstract class ServerActions {\n abstract listen(\n query: QueryContext,\n currentHashFn: () => string,\n tag: number | null,\n onComplete: (a: string, b: unknown) => void\n ): void;\n\n /**\n * Remove a listen.\n */\n abstract unlisten(query: QueryContext, tag: number | null): void;\n\n /**\n * Get the server value satisfying this query.\n */\n abstract get(query: QueryContext): Promise<string>;\n\n put(\n pathString: string,\n data: unknown,\n onComplete?: (a: string, b: string) => void,\n hash?: string\n ) {}\n\n merge(\n pathString: string,\n data: unknown,\n onComplete: (a: string, b: string | null) => void,\n hash?: string\n ) {}\n\n /**\n * Refreshes the auth token for the current connection.\n * @param token - The authentication token\n */\n refreshAuthToken(token: string) {}\n\n /**\n * Refreshes the app check token for the current connection.\n * @param token The app check token\n */\n refreshAppCheckToken(token: string) {}\n\n onDisconnectPut(\n pathString: string,\n data: unknown,\n onComplete?: (a: string, b: string) => void\n ) {}\n\n onDisconnectMerge(\n pathString: string,\n data: unknown,\n onComplete?: (a: string, b: string) => void\n ) {}\n\n onDisconnectCancel(\n pathString: string,\n onComplete?: (a: string, b: string) => void\n ) {}\n\n reportStats(stats: { [k: string]: unknown }) {}\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\n/**\n * Base class to be used if you want to emit events. Call the constructor with\n * the set of allowed event names.\n */\nexport abstract class EventEmitter {\n private listeners_: {\n [eventType: string]: Array<{\n callback(...args: unknown[]): void;\n context: unknown;\n }>;\n } = {};\n\n constructor(private allowedEvents_: string[]) {\n assert(\n Array.isArray(allowedEvents_) && allowedEvents_.length > 0,\n 'Requires a non-empty array'\n );\n }\n\n /**\n * To be overridden by derived classes in order to fire an initial event when\n * somebody subscribes for data.\n *\n * @returns {Array.<*>} Array of parameters to trigger initial event with.\n */\n abstract getInitialEvent(eventType: string): unknown[];\n\n /**\n * To be called by derived classes to trigger events.\n */\n protected trigger(eventType: string, ...varArgs: unknown[]) {\n if (Array.isArray(this.listeners_[eventType])) {\n // Clone the list, since callbacks could add/remove listeners.\n const listeners = [...this.listeners_[eventType]];\n\n for (let i = 0; i < listeners.length; i++) {\n listeners[i].callback.apply(listeners[i].context, varArgs);\n }\n }\n }\n\n on(eventType: string, callback: (a: unknown) => void, context: unknown) {\n this.validateEventType_(eventType);\n this.listeners_[eventType] = this.listeners_[eventType] || [];\n this.listeners_[eventType].push({ callback, context });\n\n const eventData = this.getInitialEvent(eventType);\n if (eventData) {\n callback.apply(context, eventData);\n }\n }\n\n off(eventType: string, callback: (a: unknown) => void, context: unknown) {\n this.validateEventType_(eventType);\n const listeners = this.listeners_[eventType] || [];\n for (let i = 0; i < listeners.length; i++) {\n if (\n listeners[i].callback === callback &&\n (!context || context === listeners[i].context)\n ) {\n listeners.splice(i, 1);\n return;\n }\n }\n }\n\n private validateEventType_(eventType: string) {\n assert(\n this.allowedEvents_.find(et => {\n return et === eventType;\n }),\n 'Unknown event: ' + eventType\n );\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert, isMobileCordova } from '@firebase/util';\n\nimport { EventEmitter } from './EventEmitter';\n\n/**\n * Monitors online state (as reported by window.online/offline events).\n *\n * The expectation is that this could have many false positives (thinks we are online\n * when we're not), but no false negatives. So we can safely use it to determine when\n * we definitely cannot reach the internet.\n */\nexport class OnlineMonitor extends EventEmitter {\n private online_ = true;\n\n static getInstance() {\n return new OnlineMonitor();\n }\n\n constructor() {\n super(['online']);\n\n // We've had repeated complaints that Cordova apps can get stuck \"offline\", e.g.\n // https://forum.ionicframework.com/t/firebase-connection-is-lost-and-never-come-back/43810\n // It would seem that the 'online' event does not always fire consistently. So we disable it\n // for Cordova.\n if (\n typeof window !== 'undefined' &&\n typeof window.addEventListener !== 'undefined' &&\n !isMobileCordova()\n ) {\n window.addEventListener(\n 'online',\n () => {\n if (!this.online_) {\n this.online_ = true;\n this.trigger('online', true);\n }\n },\n false\n );\n\n window.addEventListener(\n 'offline',\n () => {\n if (this.online_) {\n this.online_ = false;\n this.trigger('online', false);\n }\n },\n false\n );\n }\n }\n\n getInitialEvent(eventType: string): boolean[] {\n assert(eventType === 'online', 'Unknown event type: ' + eventType);\n return [this.online_];\n }\n\n currentlyOnline(): boolean {\n return this.online_;\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { stringLength } from '@firebase/util';\n\nimport { nameCompare } from './util';\n\n/** Maximum key depth. */\nconst MAX_PATH_DEPTH = 32;\n\n/** Maximum number of (UTF8) bytes in a Firebase path. */\nconst MAX_PATH_LENGTH_BYTES = 768;\n\n/**\n * An immutable object representing a parsed path. It's immutable so that you\n * can pass them around to other functions without worrying about them changing\n * it.\n */\n\nexport class Path {\n pieces_: string[];\n pieceNum_: number;\n\n /**\n * @param pathOrString - Path string to parse, or another path, or the raw\n * tokens array\n */\n constructor(pathOrString: string | string[], pieceNum?: number) {\n if (pieceNum === void 0) {\n this.pieces_ = (pathOrString as string).split('/');\n\n // Remove empty pieces.\n let copyTo = 0;\n for (let i = 0; i < this.pieces_.length; i++) {\n if (this.pieces_[i].length > 0) {\n this.pieces_[copyTo] = this.pieces_[i];\n copyTo++;\n }\n }\n this.pieces_.length = copyTo;\n\n this.pieceNum_ = 0;\n } else {\n this.pieces_ = pathOrString as string[];\n this.pieceNum_ = pieceNum;\n }\n }\n\n toString(): string {\n let pathString = '';\n for (let i = this.pieceNum_; i < this.pieces_.length; i++) {\n if (this.pieces_[i] !== '') {\n pathString += '/' + this.pieces_[i];\n }\n }\n\n return pathString || '/';\n }\n}\n\nexport function newEmptyPath(): Path {\n return new Path('');\n}\n\nexport function pathGetFront(path: Path): string | null {\n if (path.pieceNum_ >= path.pieces_.length) {\n return null;\n }\n\n return path.pieces_[path.pieceNum_];\n}\n\n/**\n * @returns The number of segments in this path\n */\nexport function pathGetLength(path: Path): number {\n return path.pieces_.length - path.pieceNum_;\n}\n\nexport function pathPopFront(path: Path): Path {\n let pieceNum = path.pieceNum_;\n if (pieceNum < path.pieces_.length) {\n pieceNum++;\n }\n return new Path(path.pieces_, pieceNum);\n}\n\nexport function pathGetBack(path: Path): string | null {\n if (path.pieceNum_ < path.pieces_.length) {\n return path.pieces_[path.pieces_.length - 1];\n }\n\n return null;\n}\n\nexport function pathToUrlEncodedString(path: Path): string {\n let pathString = '';\n for (let i = path.pieceNum_; i < path.pieces_.length; i++) {\n if (path.pieces_[i] !== '') {\n pathString += '/' + encodeURIComponent(String(path.pieces_[i]));\n }\n }\n\n return pathString || '/';\n}\n\n/**\n * Shallow copy of the parts of the path.\n *\n */\nexport function pathSlice(path: Path, begin: number = 0): string[] {\n return path.pieces_.slice(path.pieceNum_ + begin);\n}\n\nexport function pathParent(path: Path): Path | null {\n if (path.pieceNum_ >= path.pieces_.length) {\n return null;\n }\n\n const pieces = [];\n for (let i = path.pieceNum_; i < path.pieces_.length - 1; i++) {\n pieces.push(path.pieces_[i]);\n }\n\n return new Path(pieces, 0);\n}\n\nexport function pathChild(path: Path, childPathObj: string | Path): Path {\n const pieces = [];\n for (let i = path.pieceNum_; i < path.pieces_.length; i++) {\n pieces.push(path.pieces_[i]);\n }\n\n if (childPathObj instanceof Path) {\n for (let i = childPathObj.pieceNum_; i < childPathObj.pieces_.length; i++) {\n pieces.push(childPathObj.pieces_[i]);\n }\n } else {\n const childPieces = childPathObj.split('/');\n for (let i = 0; i < childPieces.length; i++) {\n if (childPieces[i].length > 0) {\n pieces.push(childPieces[i]);\n }\n }\n }\n\n return new Path(pieces, 0);\n}\n\n/**\n * @returns True if there are no segments in this path\n */\nexport function pathIsEmpty(path: Path): boolean {\n return path.pieceNum_ >= path.pieces_.length;\n}\n\n/**\n * @returns The path from outerPath to innerPath\n */\nexport function newRelativePath(outerPath: Path, innerPath: Path): Path {\n const outer = pathGetFront(outerPath),\n inner = pathGetFront(innerPath);\n if (outer === null) {\n return innerPath;\n } else if (outer === inner) {\n return newRelativePath(pathPopFront(outerPath), pathPopFront(innerPath));\n } else {\n throw new Error(\n 'INTERNAL ERROR: innerPath (' +\n innerPath +\n ') is not within ' +\n 'outerPath (' +\n outerPath +\n ')'\n );\n }\n}\n\n/**\n * @returns -1, 0, 1 if left is less, equal, or greater than the right.\n */\nexport function pathCompare(left: Path, right: Path): number {\n const leftKeys = pathSlice(left, 0);\n const rightKeys = pathSlice(right, 0);\n for (let i = 0; i < leftKeys.length && i < rightKeys.length; i++) {\n const cmp = nameCompare(leftKeys[i], rightKeys[i]);\n if (cmp !== 0) {\n return cmp;\n }\n }\n if (leftKeys.length === rightKeys.length) {\n return 0;\n }\n return leftKeys.length < rightKeys.length ? -1 : 1;\n}\n\n/**\n * @returns true if paths are the same.\n */\nexport function pathEquals(path: Path, other: Path): boolean {\n if (pathGetLength(path) !== pathGetLength(other)) {\n return false;\n }\n\n for (\n let i = path.pieceNum_, j = other.pieceNum_;\n i <= path.pieces_.length;\n i++, j++\n ) {\n if (path.pieces_[i] !== other.pieces_[j]) {\n return false;\n }\n }\n\n return true;\n}\n\n/**\n * @returns True if this path is a parent of (or the same as) other\n */\nexport function pathContains(path: Path, other: Path): boolean {\n let i = path.pieceNum_;\n let j = other.pieceNum_;\n if (pathGetLength(path) > pathGetLength(other)) {\n return false;\n }\n while (i < path.pieces_.length) {\n if (path.pieces_[i] !== other.pieces_[j]) {\n return false;\n }\n ++i;\n ++j;\n }\n return true;\n}\n\n/**\n * Dynamic (mutable) path used to count path lengths.\n *\n * This class is used to efficiently check paths for valid\n * length (in UTF8 bytes) and depth (used in path validation).\n *\n * Throws Error exception if path is ever invalid.\n *\n * The definition of a path always begins with '/'.\n */\nexport class ValidationPath {\n parts_: string[];\n /** Initialize to number of '/' chars needed in path. */\n byteLength_: number;\n\n /**\n * @param path - Initial Path.\n * @param errorPrefix_ - Prefix for any error messages.\n */\n constructor(path: Path, public errorPrefix_: string) {\n this.parts_ = pathSlice(path, 0);\n /** Initialize to number of '/' chars needed in path. */\n this.byteLength_ = Math.max(1, this.parts_.length);\n\n for (let i = 0; i < this.parts_.length; i++) {\n this.byteLength_ += stringLength(this.parts_[i]);\n }\n validationPathCheckValid(this);\n }\n}\n\nexport function validationPathPush(\n validationPath: ValidationPath,\n child: string\n): void {\n // Count the needed '/'\n if (validationPath.parts_.length > 0) {\n validationPath.byteLength_ += 1;\n }\n validationPath.parts_.push(child);\n validationPath.byteLength_ += stringLength(child);\n validationPathCheckValid(validationPath);\n}\n\nexport function validationPathPop(validationPath: ValidationPath): void {\n const last = validationPath.parts_.pop();\n validationPath.byteLength_ -= stringLength(last);\n // Un-count the previous '/'\n if (validationPath.parts_.length > 0) {\n validationPath.byteLength_ -= 1;\n }\n}\n\nfunction validationPathCheckValid(validationPath: ValidationPath): void {\n if (validationPath.byteLength_ > MAX_PATH_LENGTH_BYTES) {\n throw new Error(\n validationPath.errorPrefix_ +\n 'has a key path longer than ' +\n MAX_PATH_LENGTH_BYTES +\n ' bytes (' +\n validationPath.byteLength_ +\n ').'\n );\n }\n if (validationPath.parts_.length > MAX_PATH_DEPTH) {\n throw new Error(\n validationPath.errorPrefix_ +\n 'path specified exceeds the maximum depth that can be written (' +\n MAX_PATH_DEPTH +\n ') or object contains a cycle ' +\n validationPathToErrorString(validationPath)\n );\n }\n}\n\n/**\n * String for use in error messages - uses '.' notation for path.\n */\nexport function validationPathToErrorString(\n validationPath: ValidationPath\n): string {\n if (validationPath.parts_.length === 0) {\n return '';\n }\n return \"in property '\" + validationPath.parts_.join('.') + \"'\";\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\nimport { EventEmitter } from './EventEmitter';\n\ndeclare const document: Document;\n\nexport class VisibilityMonitor extends EventEmitter {\n private visible_: boolean;\n\n static getInstance() {\n return new VisibilityMonitor();\n }\n\n constructor() {\n super(['visible']);\n let hidden: string;\n let visibilityChange: string;\n if (\n typeof document !== 'undefined' &&\n typeof document.addEventListener !== 'undefined'\n ) {\n if (typeof document['hidden'] !== 'undefined') {\n // Opera 12.10 and Firefox 18 and later support\n visibilityChange = 'visibilitychange';\n hidden = 'hidden';\n } else if (typeof document['mozHidden'] !== 'undefined') {\n visibilityChange = 'mozvisibilitychange';\n hidden = 'mozHidden';\n } else if (typeof document['msHidden'] !== 'undefined') {\n visibilityChange = 'msvisibilitychange';\n hidden = 'msHidden';\n } else if (typeof document['webkitHidden'] !== 'undefined') {\n visibilityChange = 'webkitvisibilitychange';\n hidden = 'webkitHidden';\n }\n }\n\n // Initially, we always assume we are visible. This ensures that in browsers\n // without page visibility support or in cases where we are never visible\n // (e.g. chrome extension), we act as if we are visible, i.e. don't delay\n // reconnects\n this.visible_ = true;\n\n if (visibilityChange) {\n document.addEventListener(\n visibilityChange,\n () => {\n const visible = !document[hidden];\n if (visible !== this.visible_) {\n this.visible_ = visible;\n this.trigger('visible', visible);\n }\n },\n false\n );\n }\n }\n\n getInitialEvent(eventType: string): boolean[] {\n assert(eventType === 'visible', 'Unknown event type: ' + eventType);\n return [this.visible_];\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n assert,\n contains,\n Deferred,\n isEmpty,\n isMobileCordova,\n isNodeSdk,\n isReactNative,\n isValidFormat,\n safeGet,\n stringify,\n isAdmin\n} from '@firebase/util';\n\nimport { Connection } from '../realtime/Connection';\n\nimport { AppCheckTokenProvider } from './AppCheckTokenProvider';\nimport { AuthTokenProvider } from './AuthTokenProvider';\nimport { RepoInfo } from './RepoInfo';\nimport { ServerActions } from './ServerActions';\nimport { OnlineMonitor } from './util/OnlineMonitor';\nimport { Path } from './util/Path';\nimport { error, log, logWrapper, warn, ObjectToUniqueKey } from './util/util';\nimport { VisibilityMonitor } from './util/VisibilityMonitor';\nimport { SDK_VERSION } from './version';\nimport { QueryContext } from './view/EventRegistration';\n\nconst RECONNECT_MIN_DELAY = 1000;\nconst RECONNECT_MAX_DELAY_DEFAULT = 60 * 5 * 1000; // 5 minutes in milliseconds (Case: 1858)\nconst RECONNECT_MAX_DELAY_FOR_ADMINS = 30 * 1000; // 30 seconds for admin clients (likely to be a backend server)\nconst RECONNECT_DELAY_MULTIPLIER = 1.3;\nconst RECONNECT_DELAY_RESET_TIMEOUT = 30000; // Reset delay back to MIN_DELAY after being connected for 30sec.\nconst SERVER_KILL_INTERRUPT_REASON = 'server_kill';\n\n// If auth fails repeatedly, we'll assume something is wrong and log a warning / back off.\nconst INVALID_TOKEN_THRESHOLD = 3;\n\ninterface ListenSpec {\n onComplete(s: string, p?: unknown): void;\n\n hashFn(): string;\n\n query: QueryContext;\n tag: number | null;\n}\n\ninterface OnDisconnectRequest {\n pathString: string;\n action: string;\n data: unknown;\n onComplete?: (a: string, b: string) => void;\n}\n\ninterface OutstandingPut {\n action: string;\n request: object;\n queued?: boolean;\n onComplete: (a: string, b?: string) => void;\n}\n\ninterface OutstandingGet {\n request: object;\n onComplete: (response: { [k: string]: unknown }) => void;\n}\n\n/**\n * Firebase connection. Abstracts wire protocol and handles reconnecting.\n *\n * NOTE: All JSON objects sent to the realtime connection must have property names enclosed\n * in quotes to make sure the closure compiler does not minify them.\n */\nexport class PersistentConnection extends ServerActions {\n // Used for diagnostic logging.\n id = PersistentConnection.nextPersistentConnectionId_++;\n private log_ = logWrapper('p:' + this.id + ':');\n\n private interruptReasons_: { [reason: string]: boolean } = {};\n private readonly listens: Map<\n /* path */ string,\n Map</* queryId */ string, ListenSpec>\n > = new Map();\n private outstandingPuts_: OutstandingPut[] = [];\n private outstandingGets_: OutstandingGet[] = [];\n private outstandingPutCount_ = 0;\n private outstandingGetCount_ = 0;\n private onDisconnectRequestQueue_: OnDisconnectRequest[] = [];\n private connected_ = false;\n private reconnectDelay_ = RECONNECT_MIN_DELAY;\n private maxReconnectDelay_ = RECONNECT_MAX_DELAY_DEFAULT;\n private securityDebugCallback_: ((a: object) => void) | null = null;\n lastSessionId: string | null = null;\n\n private establishConnectionTimer_: number | null = null;\n\n private visible_: boolean = false;\n\n // Before we get connected, we keep a queue of pending messages to send.\n private requestCBHash_: { [k: number]: (a: unknown) => void } = {};\n private requestNumber_ = 0;\n\n private realtime_: {\n sendRequest(a: object): void;\n close(): void;\n } | null = null;\n\n private authToken_: string | null = null;\n private appCheckToken_: string | null = null;\n private forceTokenRefresh_ = false;\n private invalidAuthTokenCount_ = 0;\n private invalidAppCheckTokenCount_ = 0;\n\n private firstConnection_ = true;\n private lastConnectionAttemptTime_: number | null = null;\n private lastConnectionEstablishedTime_: number | null = null;\n\n private static nextPersistentConnectionId_ = 0;\n\n /**\n * Counter for number of connections created. Mainly used for tagging in the logs\n */\n private static nextConnectionId_ = 0;\n\n /**\n * @param repoInfo_ - Data about the namespace we are connecting to\n * @param applicationId_ - The Firebase App ID for this project\n * @param onDataUpdate_ - A callback for new data from the server\n */\n constructor(\n private repoInfo_: RepoInfo,\n private applicationId_: string,\n private onDataUpdate_: (\n a: string,\n b: unknown,\n c: boolean,\n d: number | null\n ) => void,\n private onConnectStatus_: (a: boolean) => void,\n private onServerInfoUpdate_: (a: unknown) => void,\n private authTokenProvider_: AuthTokenProvider,\n private appCheckTokenProvider_: AppCheckTokenProvider,\n private authOverride_?: object | null\n ) {\n super();\n\n if (authOverride_ && !isNodeSdk()) {\n throw new Error(\n 'Auth override specified in options, but not supported on non Node.js platforms'\n );\n }\n\n VisibilityMonitor.getInstance().on('visible', this.onVisible_, this);\n\n if (repoInfo_.host.indexOf('fblocal') === -1) {\n OnlineMonitor.getInstance().on('online', this.onOnline_, this);\n }\n }\n\n protected sendRequest(\n action: string,\n body: unknown,\n onResponse?: (a: unknown) => void\n ) {\n const curReqNum = ++this.requestNumber_;\n\n const msg = { r: curReqNum, a: action, b: body };\n this.log_(stringify(msg));\n assert(\n this.connected_,\n \"sendRequest call when we're not connected not allowed.\"\n );\n this.realtime_.sendRequest(msg);\n if (onResponse) {\n this.requestCBHash_[curReqNum] = onResponse;\n }\n }\n\n get(query: QueryContext): Promise<string> {\n this.initConnection_();\n\n const deferred = new Deferred<string>();\n const request = {\n p: query._path.toString(),\n q: query._queryObject\n };\n const outstandingGet = {\n action: 'g',\n request,\n onComplete: (message: { [k: string]: unknown }) => {\n const payload = message['d'] as string;\n if (message['s'] === 'ok') {\n deferred.resolve(payload);\n } else {\n deferred.reject(payload);\n }\n }\n };\n this.outstandingGets_.push(outstandingGet);\n this.outstandingGetCount_++;\n const index = this.outstandingGets_.length - 1;\n\n if (this.connected_) {\n this.sendGet_(index);\n }\n\n return deferred.promise;\n }\n\n listen(\n query: QueryContext,\n currentHashFn: () => string,\n tag: number | null,\n onComplete: (a: string, b: unknown) => void\n ) {\n this.initConnection_();\n\n const queryId = query._queryIdentifier;\n const pathString = query._path.toString();\n this.log_('Listen called for ' + pathString + ' ' + queryId);\n if (!this.listens.has(pathString)) {\n this.listens.set(pathString, new Map());\n }\n assert(\n query._queryParams.isDefault() || !query._queryParams.loadsAllData(),\n 'listen() called for non-default but complete query'\n );\n assert(\n !this.listens.get(pathString)!.has(queryId),\n `listen() called twice for same path/queryId.`\n );\n const listenSpec: ListenSpec = {\n onComplete,\n hashFn: currentHashFn,\n query,\n tag\n };\n this.listens.get(pathString)!.set(queryId, listenSpec);\n\n if (this.connected_) {\n this.sendListen_(listenSpec);\n }\n }\n\n private sendGet_(index: number) {\n const get = this.outstandingGets_[index];\n this.sendRequest('g', get.request, (message: { [k: string]: unknown }) => {\n delete this.outstandingGets_[index];\n this.outstandingGetCount_--;\n if (this.outstandingGetCount_ === 0) {\n this.outstandingGets_ = [];\n }\n if (get.onComplete) {\n get.onComplete(message);\n }\n });\n }\n\n private sendListen_(listenSpec: ListenSpec) {\n const query = listenSpec.query;\n const pathString = query._path.toString();\n const queryId = query._queryIdentifier;\n this.log_('Listen on ' + pathString + ' for ' + queryId);\n const req: { [k: string]: unknown } = { /*path*/ p: pathString };\n\n const action = 'q';\n\n // Only bother to send query if it's non-default.\n if (listenSpec.tag) {\n req['q'] = query._queryObject;\n req['t'] = listenSpec.tag;\n }\n\n req[/*hash*/ 'h'] = listenSpec.hashFn();\n\n this.sendRequest(action, req, (message: { [k: string]: unknown }) => {\n const payload: unknown = message[/*data*/ 'd'];\n const status = message[/*status*/ 's'] as string;\n\n // print warnings in any case...\n PersistentConnection.warnOnListenWarnings_(payload, query);\n\n const currentListenSpec =\n this.listens.get(pathString) &&\n this.listens.get(pathString)!.get(queryId);\n // only trigger actions if the listen hasn't been removed and readded\n if (currentListenSpec === listenSpec) {\n this.log_('listen response', message);\n\n if (status !== 'ok') {\n this.removeListen_(pathString, queryId);\n }\n\n if (listenSpec.onComplete) {\n listenSpec.onComplete(status, payload);\n }\n }\n });\n }\n\n private static warnOnListenWarnings_(payload: unknown, query: QueryContext) {\n if (payload && typeof payload === 'object' && contains(payload, 'w')) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const warnings = safeGet(payload as any, 'w');\n if (Array.isArray(warnings) && ~warnings.indexOf('no_index')) {\n const indexSpec =\n '\".indexOn\": \"' + query._queryParams.getIndex().toString() + '\"';\n const indexPath = query._path.toString();\n warn(\n `Using an unspecified index. Your data will be downloaded and ` +\n `filtered on the client. Consider adding ${indexSpec} at ` +\n `${indexPath} to your security rules for better performance.`\n );\n }\n }\n }\n\n refreshAuthToken(token: string) {\n this.authToken_ = token;\n this.log_('Auth token refreshed');\n if (this.authToken_) {\n this.tryAuth();\n } else {\n //If we're connected we want to let the server know to unauthenticate us. If we're not connected, simply delete\n //the credential so we dont become authenticated next time we connect.\n if (this.connected_) {\n this.sendRequest('unauth', {}, () => {});\n }\n }\n\n this.reduceReconnectDelayIfAdminCredential_(token);\n }\n\n private reduceReconnectDelayIfAdminCredential_(credential: string) {\n // NOTE: This isn't intended to be bulletproof (a malicious developer can always just modify the client).\n // Additionally, we don't bother resetting the max delay back to the default if auth fails / expires.\n const isFirebaseSecret = credential && credential.length === 40;\n if (isFirebaseSecret || isAdmin(credential)) {\n this.log_(\n 'Admin auth credential detected. Reducing max reconnect time.'\n );\n this.maxReconnectDelay_ = RECONNECT_MAX_DELAY_FOR_ADMINS;\n }\n }\n\n refreshAppCheckToken(token: string | null) {\n this.appCheckToken_ = token;\n this.log_('App check token refreshed');\n if (this.appCheckToken_) {\n this.tryAppCheck();\n } else {\n //If we're connected we want to let the server know to unauthenticate us.\n //If we're not connected, simply delete the credential so we dont become\n // authenticated next time we connect.\n if (this.connected_) {\n this.sendRequest('unappeck', {}, () => {});\n }\n }\n }\n\n /**\n * Attempts to authenticate with the given credentials. If the authentication attempt fails, it's triggered like\n * a auth revoked (the connection is closed).\n */\n tryAuth() {\n if (this.connected_ && this.authToken_) {\n const token = this.authToken_;\n const authMethod = isValidFormat(token) ? 'auth' : 'gauth';\n const requestData: { [k: string]: unknown } = { cred: token };\n if (this.authOverride_ === null) {\n requestData['noauth'] = true;\n } else if (typeof this.authOverride_ === 'object') {\n requestData['authvar'] = this.authOverride_;\n }\n this.sendRequest(\n authMethod,\n requestData,\n (res: { [k: string]: unknown }) => {\n const status = res[/*status*/ 's'] as string;\n const data = (res[/*data*/ 'd'] as string) || 'error';\n\n if (this.authToken_ === token) {\n if (status === 'ok') {\n this.invalidAuthTokenCount_ = 0;\n } else {\n // Triggers reconnect and force refresh for auth token\n this.onAuthRevoked_(status, data);\n }\n }\n }\n );\n }\n }\n\n /**\n * Attempts to authenticate with the given token. If the authentication\n * attempt fails, it's triggered like the token was revoked (the connection is\n * closed).\n */\n tryAppCheck() {\n if (this.connected_ && this.appCheckToken_) {\n this.sendRequest(\n 'appcheck',\n { 'token': this.appCheckToken_ },\n (res: { [k: string]: unknown }) => {\n const status = res[/*status*/ 's'] as string;\n const data = (res[/*data*/ 'd'] as string) || 'error';\n if (status === 'ok') {\n this.invalidAppCheckTokenCount_ = 0;\n } else {\n this.onAppCheckRevoked_(status, data);\n }\n }\n );\n }\n }\n\n /**\n * @inheritDoc\n */\n unlisten(query: QueryContext, tag: number | null) {\n const pathString = query._path.toString();\n const queryId = query._queryIdentifier;\n\n this.log_('Unlisten called for ' + pathString + ' ' + queryId);\n\n assert(\n query._queryParams.isDefault() || !query._queryParams.loadsAllData(),\n 'unlisten() called for non-default but complete query'\n );\n const listen = this.removeListen_(pathString, queryId);\n if (listen && this.connected_) {\n this.sendUnlisten_(pathString, queryId, query._queryObject, tag);\n }\n }\n\n private sendUnlisten_(\n pathString: string,\n queryId: string,\n queryObj: object,\n tag: number | null\n ) {\n this.log_('Unlisten on ' + pathString + ' for ' + queryId);\n\n const req: { [k: string]: unknown } = { /*path*/ p: pathString };\n const action = 'n';\n // Only bother sending queryId if it's non-default.\n if (tag) {\n req['q'] = queryObj;\n req['t'] = tag;\n }\n\n this.sendRequest(action, req);\n }\n\n onDisconnectPut(\n pathString: string,\n data: unknown,\n onComplete?: (a: string, b: string) => void\n ) {\n this.initConnection_();\n\n if (this.connected_) {\n this.sendOnDisconnect_('o', pathString, data, onComplete);\n } else {\n this.onDisconnectRequestQueue_.push({\n pathString,\n action: 'o',\n data,\n onComplete\n });\n }\n }\n\n onDisconnectMerge(\n pathString: string,\n data: unknown,\n onComplete?: (a: string, b: string) => void\n ) {\n this.initConnection_();\n\n if (this.connected_) {\n this.sendOnDisconnect_('om', pathString, data, onComplete);\n } else {\n this.onDisconnectRequestQueue_.push({\n pathString,\n action: 'om',\n data,\n onComplete\n });\n }\n }\n\n onDisconnectCancel(\n pathString: string,\n onComplete?: (a: string, b: string) => void\n ) {\n this.initConnection_();\n\n if (this.connected_) {\n this.sendOnDisconnect_('oc', pathString, null, onComplete);\n } else {\n this.onDisconnectRequestQueue_.push({\n pathString,\n action: 'oc',\n data: null,\n onComplete\n });\n }\n }\n\n private sendOnDisconnect_(\n action: string,\n pathString: string,\n data: unknown,\n onComplete: (a: string, b: string) => void\n ) {\n const request = { /*path*/ p: pathString, /*data*/ d: data };\n this.log_('onDisconnect ' + action, request);\n this.sendRequest(action, request, (response: { [k: string]: unknown }) => {\n if (onComplete) {\n setTimeout(() => {\n onComplete(\n response[/*status*/ 's'] as string,\n response[/* data */ 'd'] as string\n );\n }, Math.floor(0));\n }\n });\n }\n\n put(\n pathString: string,\n data: unknown,\n onComplete?: (a: string, b: string) => void,\n hash?: string\n ) {\n this.putInternal('p', pathString, data, onComplete, hash);\n }\n\n merge(\n pathString: string,\n data: unknown,\n onComplete: (a: string, b: string | null) => void,\n hash?: string\n ) {\n this.putInternal('m', pathString, data, onComplete, hash);\n }\n\n putInternal(\n action: string,\n pathString: string,\n data: unknown,\n onComplete: (a: string, b: string | null) => void,\n hash?: string\n ) {\n this.initConnection_();\n\n const request: { [k: string]: unknown } = {\n /*path*/ p: pathString,\n /*data*/ d: data\n };\n\n if (hash !== undefined) {\n request[/*hash*/ 'h'] = hash;\n }\n\n // TODO: Only keep track of the most recent put for a given path?\n this.outstandingPuts_.push({\n action,\n request,\n onComplete\n });\n\n this.outstandingPutCount_++;\n const index = this.outstandingPuts_.length - 1;\n\n if (this.connected_) {\n this.sendPut_(index);\n } else {\n this.log_('Buffering put: ' + pathString);\n }\n }\n\n private sendPut_(index: number) {\n const action = this.outstandingPuts_[index].action;\n const request = this.outstandingPuts_[index].request;\n const onComplete = this.outstandingPuts_[index].onComplete;\n this.outstandingPuts_[index].queued = this.connected_;\n\n this.sendRequest(action, request, (message: { [k: string]: unknown }) => {\n this.log_(action + ' response', message);\n\n delete this.outstandingPuts_[index];\n this.outstandingPutCount_--;\n\n // Clean up array occasionally.\n if (this.outstandingPutCount_ === 0) {\n this.outstandingPuts_ = [];\n }\n\n if (onComplete) {\n onComplete(\n message[/*status*/ 's'] as string,\n message[/* data */ 'd'] as string\n );\n }\n });\n }\n\n reportStats(stats: { [k: string]: unknown }) {\n // If we're not connected, we just drop the stats.\n if (this.connected_) {\n const request = { /*counters*/ c: stats };\n this.log_('reportStats', request);\n\n this.sendRequest(/*stats*/ 's', request, result => {\n const status = result[/*status*/ 's'];\n if (status !== 'ok') {\n const errorReason = result[/* data */ 'd'];\n this.log_('reportStats', 'Error sending stats: ' + errorReason);\n }\n });\n }\n }\n\n private onDataMessage_(message: { [k: string]: unknown }) {\n if ('r' in message) {\n // this is a response\n this.log_('from server: ' + stringify(message));\n const reqNum = message['r'] as string;\n const onResponse = this.requestCBHash_[reqNum];\n if (onResponse) {\n delete this.requestCBHash_[reqNum];\n onResponse(message[/*body*/ 'b']);\n }\n } else if ('error' in message) {\n throw 'A server-side error has occurred: ' + message['error'];\n } else if ('a' in message) {\n // a and b are action and body, respectively\n this.onDataPush_(message['a'] as string, message['b'] as {});\n }\n }\n\n private onDataPush_(action: string, body: { [k: string]: unknown }) {\n this.log_('handleServerMessage', action, body);\n if (action === 'd') {\n this.onDataUpdate_(\n body[/*path*/ 'p'] as string,\n body[/*data*/ 'd'],\n /*isMerge*/ false,\n body['t'] as number\n );\n } else if (action === 'm') {\n this.onDataUpdate_(\n body[/*path*/ 'p'] as string,\n body[/*data*/ 'd'],\n /*isMerge=*/ true,\n body['t'] as number\n );\n } else if (action === 'c') {\n this.onListenRevoked_(\n body[/*path*/ 'p'] as string,\n body[/*query*/ 'q'] as unknown[]\n );\n } else if (action === 'ac') {\n this.onAuthRevoked_(\n body[/*status code*/ 's'] as string,\n body[/* explanation */ 'd'] as string\n );\n } else if (action === 'apc') {\n this.onAppCheckRevoked_(\n body[/*status code*/ 's'] as string,\n body[/* explanation */ 'd'] as string\n );\n } else if (action === 'sd') {\n this.onSecurityDebugPacket_(body);\n } else {\n error(\n 'Unrecognized action received from server: ' +\n stringify(action) +\n '\\nAre you using the latest client?'\n );\n }\n }\n\n private onReady_(timestamp: number, sessionId: string) {\n this.log_('connection ready');\n this.connected_ = true;\n this.lastConnectionEstablishedTime_ = new Date().getTime();\n this.handleTimestamp_(timestamp);\n this.lastSessionId = sessionId;\n if (this.firstConnection_) {\n this.sendConnectStats_();\n }\n this.restoreState_();\n this.firstConnection_ = false;\n this.onConnectStatus_(true);\n }\n\n private scheduleConnect_(timeout: number) {\n assert(\n !this.realtime_,\n \"Scheduling a connect when we're already connected/ing?\"\n );\n\n if (this.establishConnectionTimer_) {\n clearTimeout(this.establishConnectionTimer_);\n }\n\n // NOTE: Even when timeout is 0, it's important to do a setTimeout to work around an infuriating \"Security Error\" in\n // Firefox when trying to write to our long-polling iframe in some scenarios (e.g. Forge or our unit tests).\n\n this.establishConnectionTimer_ = setTimeout(() => {\n this.establishConnectionTimer_ = null;\n this.establishConnection_();\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n }, Math.floor(timeout)) as any;\n }\n\n private initConnection_() {\n if (!this.realtime_ && this.firstConnection_) {\n this.scheduleConnect_(0);\n }\n }\n\n private onVisible_(visible: boolean) {\n // NOTE: Tabbing away and back to a window will defeat our reconnect backoff, but I think that's fine.\n if (\n visible &&\n !this.visible_ &&\n this.reconnectDelay_ === this.maxReconnectDelay_\n ) {\n this.log_('Window became visible. Reducing delay.');\n this.reconnectDelay_ = RECONNECT_MIN_DELAY;\n\n if (!this.realtime_) {\n this.scheduleConnect_(0);\n }\n }\n this.visible_ = visible;\n }\n\n private onOnline_(online: boolean) {\n if (online) {\n this.log_('Browser went online.');\n this.reconnectDelay_ = RECONNECT_MIN_DELAY;\n if (!this.realtime_) {\n this.scheduleConnect_(0);\n }\n } else {\n this.log_('Browser went offline. Killing connection.');\n if (this.realtime_) {\n this.realtime_.close();\n }\n }\n }\n\n private onRealtimeDisconnect_() {\n this.log_('data client disconnected');\n this.connected_ = false;\n this.realtime_ = null;\n\n // Since we don't know if our sent transactions succeeded or not, we need to cancel them.\n this.cancelSentTransactions_();\n\n // Clear out the pending requests.\n this.requestCBHash_ = {};\n\n if (this.shouldReconnect_()) {\n if (!this.visible_) {\n this.log_(\"Window isn't visible. Delaying reconnect.\");\n this.reconnectDelay_ = this.maxReconnectDelay_;\n this.lastConnectionAttemptTime_ = new Date().getTime();\n } else if (this.lastConnectionEstablishedTime_) {\n // If we've been connected long enough, reset reconnect delay to minimum.\n const timeSinceLastConnectSucceeded =\n new Date().getTime() - this.lastConnectionEstablishedTime_;\n if (timeSinceLastConnectSucceeded > RECONNECT_DELAY_RESET_TIMEOUT) {\n this.reconnectDelay_ = RECONNECT_MIN_DELAY;\n }\n this.lastConnectionEstablishedTime_ = null;\n }\n\n const timeSinceLastConnectAttempt =\n new Date().getTime() - this.lastConnectionAttemptTime_;\n let reconnectDelay = Math.max(\n 0,\n this.reconnectDelay_ - timeSinceLastConnectAttempt\n );\n reconnectDelay = Math.random() * reconnectDelay;\n\n this.log_('Trying to reconnect in ' + reconnectDelay + 'ms');\n this.scheduleConnect_(reconnectDelay);\n\n // Adjust reconnect delay for next time.\n this.reconnectDelay_ = Math.min(\n this.maxReconnectDelay_,\n this.reconnectDelay_ * RECONNECT_DELAY_MULTIPLIER\n );\n }\n this.onConnectStatus_(false);\n }\n\n private async establishConnection_() {\n if (this.shouldReconnect_()) {\n this.log_('Making a connection attempt');\n this.lastConnectionAttemptTime_ = new Date().getTime();\n this.lastConnectionEstablishedTime_ = null;\n const onDataMessage = this.onDataMessage_.bind(this);\n const onReady = this.onReady_.bind(this);\n const onDisconnect = this.onRealtimeDisconnect_.bind(this);\n const connId = this.id + ':' + PersistentConnection.nextConnectionId_++;\n const lastSessionId = this.lastSessionId;\n let canceled = false;\n let connection: Connection | null = null;\n const closeFn = function () {\n if (connection) {\n connection.close();\n } else {\n canceled = true;\n onDisconnect();\n }\n };\n const sendRequestFn = function (msg: object) {\n assert(\n connection,\n \"sendRequest call when we're not connected not allowed.\"\n );\n connection.sendRequest(msg);\n };\n\n this.realtime_ = {\n close: closeFn,\n sendRequest: sendRequestFn\n };\n\n const forceRefresh = this.forceTokenRefresh_;\n this.forceTokenRefresh_ = false;\n\n try {\n // First fetch auth and app check token, and establish connection after\n // fetching the token was successful\n const [authToken, appCheckToken] = await Promise.all([\n this.authTokenProvider_.getToken(forceRefresh),\n this.appCheckTokenProvider_.getToken(forceRefresh)\n ]);\n\n if (!canceled) {\n log('getToken() completed. Creating connection.');\n this.authToken_ = authToken && authToken.accessToken;\n this.appCheckToken_ = appCheckToken && appCheckToken.token;\n connection = new Connection(\n connId,\n this.repoInfo_,\n this.applicationId_,\n this.appCheckToken_,\n this.authToken_,\n onDataMessage,\n onReady,\n onDisconnect,\n /* onKill= */ reason => {\n warn(reason + ' (' + this.repoInfo_.toString() + ')');\n this.interrupt(SERVER_KILL_INTERRUPT_REASON);\n },\n lastSessionId\n );\n } else {\n log('getToken() completed but was canceled');\n }\n } catch (error) {\n this.log_('Failed to get token: ' + error);\n if (!canceled) {\n if (this.repoInfo_.nodeAdmin) {\n // This may be a critical error for the Admin Node.js SDK, so log a warning.\n // But getToken() may also just have temporarily failed, so we still want to\n // continue retrying.\n warn(error);\n }\n closeFn();\n }\n }\n }\n }\n\n interrupt(reason: string) {\n log('Interrupting connection for reason: ' + reason);\n this.interruptReasons_[reason] = true;\n if (this.realtime_) {\n this.realtime_.close();\n } else {\n if (this.establishConnectionTimer_) {\n clearTimeout(this.establishConnectionTimer_);\n this.establishConnectionTimer_ = null;\n }\n if (this.connected_) {\n this.onRealtimeDisconnect_();\n }\n }\n }\n\n resume(reason: string) {\n log('Resuming connection for reason: ' + reason);\n delete this.interruptReasons_[reason];\n if (isEmpty(this.interruptReasons_)) {\n this.reconnectDelay_ = RECONNECT_MIN_DELAY;\n if (!this.realtime_) {\n this.scheduleConnect_(0);\n }\n }\n }\n\n private handleTimestamp_(timestamp: number) {\n const delta = timestamp - new Date().getTime();\n this.onServerInfoUpdate_({ serverTimeOffset: delta });\n }\n\n private cancelSentTransactions_() {\n for (let i = 0; i < this.outstandingPuts_.length; i++) {\n const put = this.outstandingPuts_[i];\n if (put && /*hash*/ 'h' in put.request && put.queued) {\n if (put.onComplete) {\n put.onComplete('disconnect');\n }\n\n delete this.outstandingPuts_[i];\n this.outstandingPutCount_--;\n }\n }\n\n // Clean up array occasionally.\n if (this.outstandingPutCount_ === 0) {\n this.outstandingPuts_ = [];\n }\n }\n\n private onListenRevoked_(pathString: string, query?: unknown[]) {\n // Remove the listen and manufacture a \"permission_denied\" error for the failed listen.\n let queryId;\n if (!query) {\n queryId = 'default';\n } else {\n queryId = query.map(q => ObjectToUniqueKey(q)).join('$');\n }\n const listen = this.removeListen_(pathString, queryId);\n if (listen && listen.onComplete) {\n listen.onComplete('permission_denied');\n }\n }\n\n private removeListen_(pathString: string, queryId: string): ListenSpec {\n const normalizedPathString = new Path(pathString).toString(); // normalize path.\n let listen;\n if (this.listens.has(normalizedPathString)) {\n const map = this.listens.get(normalizedPathString)!;\n listen = map.get(queryId);\n map.delete(queryId);\n if (map.size === 0) {\n this.listens.delete(normalizedPathString);\n }\n } else {\n // all listens for this path has already been removed\n listen = undefined;\n }\n return listen;\n }\n\n private onAuthRevoked_(statusCode: string, explanation: string) {\n log('Auth token revoked: ' + statusCode + '/' + explanation);\n this.authToken_ = null;\n this.forceTokenRefresh_ = true;\n this.realtime_.close();\n if (statusCode === 'invalid_token' || statusCode === 'permission_denied') {\n // We'll wait a couple times before logging the warning / increasing the\n // retry period since oauth tokens will report as \"invalid\" if they're\n // just expired. Plus there may be transient issues that resolve themselves.\n this.invalidAuthTokenCount_++;\n if (this.invalidAuthTokenCount_ >= INVALID_TOKEN_THRESHOLD) {\n // Set a long reconnect delay because recovery is unlikely\n this.reconnectDelay_ = RECONNECT_MAX_DELAY_FOR_ADMINS;\n\n // Notify the auth token provider that the token is invalid, which will log\n // a warning\n this.authTokenProvider_.notifyForInvalidToken();\n }\n }\n }\n\n private onAppCheckRevoked_(statusCode: string, explanation: string) {\n log('App check token revoked: ' + statusCode + '/' + explanation);\n this.appCheckToken_ = null;\n this.forceTokenRefresh_ = true;\n // Note: We don't close the connection as the developer may not have\n // enforcement enabled. The backend closes connections with enforcements.\n if (statusCode === 'invalid_token' || statusCode === 'permission_denied') {\n // We'll wait a couple times before logging the warning / increasing the\n // retry period since oauth tokens will report as \"invalid\" if they're\n // just expired. Plus there may be transient issues that resolve themselves.\n this.invalidAppCheckTokenCount_++;\n if (this.invalidAppCheckTokenCount_ >= INVALID_TOKEN_THRESHOLD) {\n this.appCheckTokenProvider_.notifyForInvalidToken();\n }\n }\n }\n\n private onSecurityDebugPacket_(body: { [k: string]: unknown }) {\n if (this.securityDebugCallback_) {\n this.securityDebugCallback_(body);\n } else {\n if ('msg' in body) {\n console.log(\n 'FIREBASE: ' + (body['msg'] as string).replace('\\n', '\\nFIREBASE: ')\n );\n }\n }\n }\n\n private restoreState_() {\n //Re-authenticate ourselves if we have a credential stored.\n this.tryAuth();\n this.tryAppCheck();\n\n // Puts depend on having received the corresponding data update from the server before they complete, so we must\n // make sure to send listens before puts.\n for (const queries of this.listens.values()) {\n for (const listenSpec of queries.values()) {\n this.sendListen_(listenSpec);\n }\n }\n\n for (let i = 0; i < this.outstandingPuts_.length; i++) {\n if (this.outstandingPuts_[i]) {\n this.sendPut_(i);\n }\n }\n\n while (this.onDisconnectRequestQueue_.length) {\n const request = this.onDisconnectRequestQueue_.shift();\n this.sendOnDisconnect_(\n request.action,\n request.pathString,\n request.data,\n request.onComplete\n );\n }\n\n for (let i = 0; i < this.outstandingGets_.length; i++) {\n if (this.outstandingGets_[i]) {\n this.sendGet_(i);\n }\n }\n }\n\n /**\n * Sends client stats for first connection\n */\n private sendConnectStats_() {\n const stats: { [k: string]: number } = {};\n\n let clientName = 'js';\n if (isNodeSdk()) {\n if (this.repoInfo_.nodeAdmin) {\n clientName = 'admin_node';\n } else {\n clientName = 'node';\n }\n }\n\n stats['sdk.' + clientName + '.' + SDK_VERSION.replace(/\\./g, '-')] = 1;\n\n if (isMobileCordova()) {\n stats['framework.cordova'] = 1;\n } else if (isReactNative()) {\n stats['framework.reactnative'] = 1;\n }\n this.reportStats(stats);\n }\n\n private shouldReconnect_(): boolean {\n const online = OnlineMonitor.getInstance().currentlyOnline();\n return isEmpty(this.interruptReasons_) && online;\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Path } from '../util/Path';\n\nimport { Index } from './indexes/Index';\n\n/**\n * Node is an interface defining the common functionality for nodes in\n * a DataSnapshot.\n *\n * @interface\n */\nexport interface Node {\n /**\n * Whether this node is a leaf node.\n * @returns Whether this is a leaf node.\n */\n isLeafNode(): boolean;\n\n /**\n * Gets the priority of the node.\n * @returns The priority of the node.\n */\n getPriority(): Node;\n\n /**\n * Returns a duplicate node with the new priority.\n * @param newPriorityNode - New priority to set for the node.\n * @returns Node with new priority.\n */\n updatePriority(newPriorityNode: Node): Node;\n\n /**\n * Returns the specified immediate child, or null if it doesn't exist.\n * @param childName - The name of the child to retrieve.\n * @returns The retrieved child, or an empty node.\n */\n getImmediateChild(childName: string): Node;\n\n /**\n * Returns a child by path, or null if it doesn't exist.\n * @param path - The path of the child to retrieve.\n * @returns The retrieved child or an empty node.\n */\n getChild(path: Path): Node;\n\n /**\n * Returns the name of the child immediately prior to the specified childNode, or null.\n * @param childName - The name of the child to find the predecessor of.\n * @param childNode - The node to find the predecessor of.\n * @param index - The index to use to determine the predecessor\n * @returns The name of the predecessor child, or null if childNode is the first child.\n */\n getPredecessorChildName(\n childName: string,\n childNode: Node,\n index: Index\n ): string | null;\n\n /**\n * Returns a duplicate node, with the specified immediate child updated.\n * Any value in the node will be removed.\n * @param childName - The name of the child to update.\n * @param newChildNode - The new child node\n * @returns The updated node.\n */\n updateImmediateChild(childName: string, newChildNode: Node): Node;\n\n /**\n * Returns a duplicate node, with the specified child updated. Any value will\n * be removed.\n * @param path - The path of the child to update.\n * @param newChildNode - The new child node, which may be an empty node\n * @returns The updated node.\n */\n updateChild(path: Path, newChildNode: Node): Node;\n\n /**\n * True if the immediate child specified exists\n */\n hasChild(childName: string): boolean;\n\n /**\n * @returns True if this node has no value or children.\n */\n isEmpty(): boolean;\n\n /**\n * @returns The number of children of this node.\n */\n numChildren(): number;\n\n /**\n * Calls action for each child.\n * @param action - Action to be called for\n * each child. It's passed the child name and the child node.\n * @returns The first truthy value return by action, or the last falsey one\n */\n forEachChild(index: Index, action: (a: string, b: Node) => void): unknown;\n\n /**\n * @param exportFormat - True for export format (also wire protocol format).\n * @returns Value of this node as JSON.\n */\n val(exportFormat?: boolean): unknown;\n\n /**\n * @returns hash representing the node contents.\n */\n hash(): string;\n\n /**\n * @param other - Another node\n * @returns -1 for less than, 0 for equal, 1 for greater than other\n */\n compareTo(other: Node): number;\n\n /**\n * @returns Whether or not this snapshot equals other\n */\n equals(other: Node): boolean;\n\n /**\n * @returns This node, with the specified index now available\n */\n withIndex(indexDefinition: Index): Node;\n\n isIndexed(indexDefinition: Index): boolean;\n}\n\nexport class NamedNode {\n constructor(public name: string, public node: Node) {}\n\n static Wrap(name: string, node: Node) {\n return new NamedNode(name, node);\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Comparator } from '../../util/SortedMap';\nimport { MIN_NAME } from '../../util/util';\nimport { Node, NamedNode } from '../Node';\n\nexport abstract class Index {\n abstract compare(a: NamedNode, b: NamedNode): number;\n\n abstract isDefinedOn(node: Node): boolean;\n\n /**\n * @returns A standalone comparison function for\n * this index\n */\n getCompare(): Comparator<NamedNode> {\n return this.compare.bind(this);\n }\n\n /**\n * Given a before and after value for a node, determine if the indexed value has changed. Even if they are different,\n * it's possible that the changes are isolated to parts of the snapshot that are not indexed.\n *\n *\n * @returns True if the portion of the snapshot being indexed changed between oldNode and newNode\n */\n indexedValueChanged(oldNode: Node, newNode: Node): boolean {\n const oldWrapped = new NamedNode(MIN_NAME, oldNode);\n const newWrapped = new NamedNode(MIN_NAME, newNode);\n return this.compare(oldWrapped, newWrapped) !== 0;\n }\n\n /**\n * @returns a node wrapper that will sort equal to or less than\n * any other node wrapper, using this index\n */\n minPost(): NamedNode {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return (NamedNode as any).MIN;\n }\n\n /**\n * @returns a node wrapper that will sort greater than or equal to\n * any other node wrapper, using this index\n */\n abstract maxPost(): NamedNode;\n\n abstract makePost(indexValue: unknown, name: string): NamedNode;\n\n /**\n * @returns String representation for inclusion in a query spec\n */\n abstract toString(): string;\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert, assertionError } from '@firebase/util';\n\nimport { nameCompare, MAX_NAME } from '../../util/util';\nimport { ChildrenNode } from '../ChildrenNode';\nimport { Node, NamedNode } from '../Node';\n\nimport { Index } from './Index';\n\nlet __EMPTY_NODE: ChildrenNode;\n\nexport class KeyIndex extends Index {\n static get __EMPTY_NODE() {\n return __EMPTY_NODE;\n }\n\n static set __EMPTY_NODE(val) {\n __EMPTY_NODE = val;\n }\n compare(a: NamedNode, b: NamedNode): number {\n return nameCompare(a.name, b.name);\n }\n isDefinedOn(node: Node): boolean {\n // We could probably return true here (since every node has a key), but it's never called\n // so just leaving unimplemented for now.\n throw assertionError('KeyIndex.isDefinedOn not expected to be called.');\n }\n indexedValueChanged(oldNode: Node, newNode: Node): boolean {\n return false; // The key for a node never changes.\n }\n minPost() {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return (NamedNode as any).MIN;\n }\n maxPost(): NamedNode {\n // TODO: This should really be created once and cached in a static property, but\n // NamedNode isn't defined yet, so I can't use it in a static. Bleh.\n return new NamedNode(MAX_NAME, __EMPTY_NODE);\n }\n\n makePost(indexValue: string, name: string): NamedNode {\n assert(\n typeof indexValue === 'string',\n 'KeyIndex indexValue must always be a string.'\n );\n // We just use empty node, but it'll never be compared, since our comparator only looks at name.\n return new NamedNode(indexValue, __EMPTY_NODE);\n }\n\n /**\n * @returns String representation for inclusion in a query spec\n */\n toString(): string {\n return '.key';\n }\n}\n\nexport const KEY_INDEX = new KeyIndex();\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/**\n * @fileoverview Implementation of an immutable SortedMap using a Left-leaning\n * Red-Black Tree, adapted from the implementation in Mugs\n * (http://mads379.github.com/mugs/) by Mads Hartmann Jensen\n * (mads379\\@gmail.com).\n *\n * Original paper on Left-leaning Red-Black Trees:\n * http://www.cs.princeton.edu/~rs/talks/LLRB/LLRB.pdf\n *\n * Invariant 1: No red node has a red child\n * Invariant 2: Every leaf path has the same number of black nodes\n * Invariant 3: Only the left child can be red (left leaning)\n */\n\n// TODO: There are some improvements I'd like to make to improve memory / perf:\n// * Create two prototypes, LLRedNode and LLBlackNode, instead of storing a\n// color property in every node.\n// TODO: It would also be good (and possibly necessary) to create a base\n// interface for LLRBNode and LLRBEmptyNode.\n\nexport type Comparator<K> = (key1: K, key2: K) => number;\n\n/**\n * An iterator over an LLRBNode.\n */\nexport class SortedMapIterator<K, V, T> {\n private nodeStack_: Array<LLRBNode<K, V> | LLRBEmptyNode<K, V>> = [];\n\n /**\n * @param node - Node to iterate.\n * @param isReverse_ - Whether or not to iterate in reverse\n */\n constructor(\n node: LLRBNode<K, V> | LLRBEmptyNode<K, V>,\n startKey: K | null,\n comparator: Comparator<K>,\n private isReverse_: boolean,\n private resultGenerator_: ((k: K, v: V) => T) | null = null\n ) {\n let cmp = 1;\n while (!node.isEmpty()) {\n node = node as LLRBNode<K, V>;\n cmp = startKey ? comparator(node.key, startKey) : 1;\n // flip the comparison if we're going in reverse\n if (isReverse_) {\n cmp *= -1;\n }\n\n if (cmp < 0) {\n // This node is less than our start key. ignore it\n if (this.isReverse_) {\n node = node.left;\n } else {\n node = node.right;\n }\n } else if (cmp === 0) {\n // This node is exactly equal to our start key. Push it on the stack, but stop iterating;\n this.nodeStack_.push(node);\n break;\n } else {\n // This node is greater than our start key, add it to the stack and move to the next one\n this.nodeStack_.push(node);\n if (this.isReverse_) {\n node = node.right;\n } else {\n node = node.left;\n }\n }\n }\n }\n\n getNext(): T {\n if (this.nodeStack_.length === 0) {\n return null;\n }\n\n let node = this.nodeStack_.pop();\n let result: T;\n if (this.resultGenerator_) {\n result = this.resultGenerator_(node.key, node.value);\n } else {\n result = { key: node.key, value: node.value } as unknown as T;\n }\n\n if (this.isReverse_) {\n node = node.left;\n while (!node.isEmpty()) {\n this.nodeStack_.push(node);\n node = node.right;\n }\n } else {\n node = node.right;\n while (!node.isEmpty()) {\n this.nodeStack_.push(node);\n node = node.left;\n }\n }\n\n return result;\n }\n\n hasNext(): boolean {\n return this.nodeStack_.length > 0;\n }\n\n peek(): T {\n if (this.nodeStack_.length === 0) {\n return null;\n }\n\n const node = this.nodeStack_[this.nodeStack_.length - 1];\n if (this.resultGenerator_) {\n return this.resultGenerator_(node.key, node.value);\n } else {\n return { key: node.key, value: node.value } as unknown as T;\n }\n }\n}\n\n/**\n * Represents a node in a Left-leaning Red-Black tree.\n */\nexport class LLRBNode<K, V> {\n color: boolean;\n left: LLRBNode<K, V> | LLRBEmptyNode<K, V>;\n right: LLRBNode<K, V> | LLRBEmptyNode<K, V>;\n\n /**\n * @param key - Key associated with this node.\n * @param value - Value associated with this node.\n * @param color - Whether this node is red.\n * @param left - Left child.\n * @param right - Right child.\n */\n constructor(\n public key: K,\n public value: V,\n color: boolean | null,\n left?: LLRBNode<K, V> | LLRBEmptyNode<K, V> | null,\n right?: LLRBNode<K, V> | LLRBEmptyNode<K, V> | null\n ) {\n this.color = color != null ? color : LLRBNode.RED;\n this.left =\n left != null ? left : (SortedMap.EMPTY_NODE as LLRBEmptyNode<K, V>);\n this.right =\n right != null ? right : (SortedMap.EMPTY_NODE as LLRBEmptyNode<K, V>);\n }\n\n static RED = true;\n static BLACK = false;\n\n /**\n * Returns a copy of the current node, optionally replacing pieces of it.\n *\n * @param key - New key for the node, or null.\n * @param value - New value for the node, or null.\n * @param color - New color for the node, or null.\n * @param left - New left child for the node, or null.\n * @param right - New right child for the node, or null.\n * @returns The node copy.\n */\n copy(\n key: K | null,\n value: V | null,\n color: boolean | null,\n left: LLRBNode<K, V> | LLRBEmptyNode<K, V> | null,\n right: LLRBNode<K, V> | LLRBEmptyNode<K, V> | null\n ): LLRBNode<K, V> {\n return new LLRBNode(\n key != null ? key : this.key,\n value != null ? value : this.value,\n color != null ? color : this.color,\n left != null ? left : this.left,\n right != null ? right : this.right\n );\n }\n\n /**\n * @returns The total number of nodes in the tree.\n */\n count(): number {\n return this.left.count() + 1 + this.right.count();\n }\n\n /**\n * @returns True if the tree is empty.\n */\n isEmpty(): boolean {\n return false;\n }\n\n /**\n * Traverses the tree in key order and calls the specified action function\n * for each node.\n *\n * @param action - Callback function to be called for each\n * node. If it returns true, traversal is aborted.\n * @returns The first truthy value returned by action, or the last falsey\n * value returned by action\n */\n inorderTraversal(action: (k: K, v: V) => unknown): boolean {\n return (\n this.left.inorderTraversal(action) ||\n !!action(this.key, this.value) ||\n this.right.inorderTraversal(action)\n );\n }\n\n /**\n * Traverses the tree in reverse key order and calls the specified action function\n * for each node.\n *\n * @param action - Callback function to be called for each\n * node. If it returns true, traversal is aborted.\n * @returns True if traversal was aborted.\n */\n reverseTraversal(action: (k: K, v: V) => void): boolean {\n return (\n this.right.reverseTraversal(action) ||\n action(this.key, this.value) ||\n this.left.reverseTraversal(action)\n );\n }\n\n /**\n * @returns The minimum node in the tree.\n */\n private min_(): LLRBNode<K, V> {\n if (this.left.isEmpty()) {\n return this;\n } else {\n return (this.left as LLRBNode<K, V>).min_();\n }\n }\n\n /**\n * @returns The maximum key in the tree.\n */\n minKey(): K {\n return this.min_().key;\n }\n\n /**\n * @returns The maximum key in the tree.\n */\n maxKey(): K {\n if (this.right.isEmpty()) {\n return this.key;\n } else {\n return this.right.maxKey();\n }\n }\n\n /**\n * @param key - Key to insert.\n * @param value - Value to insert.\n * @param comparator - Comparator.\n * @returns New tree, with the key/value added.\n */\n insert(key: K, value: V, comparator: Comparator<K>): LLRBNode<K, V> {\n let n: LLRBNode<K, V> = this;\n const cmp = comparator(key, n.key);\n if (cmp < 0) {\n n = n.copy(null, null, null, n.left.insert(key, value, comparator), null);\n } else if (cmp === 0) {\n n = n.copy(null, value, null, null, null);\n } else {\n n = n.copy(\n null,\n null,\n null,\n null,\n n.right.insert(key, value, comparator)\n );\n }\n return n.fixUp_();\n }\n\n /**\n * @returns New tree, with the minimum key removed.\n */\n private removeMin_(): LLRBNode<K, V> | LLRBEmptyNode<K, V> {\n if (this.left.isEmpty()) {\n return SortedMap.EMPTY_NODE as LLRBEmptyNode<K, V>;\n }\n let n: LLRBNode<K, V> = this;\n if (!n.left.isRed_() && !n.left.left.isRed_()) {\n n = n.moveRedLeft_();\n }\n n = n.copy(null, null, null, (n.left as LLRBNode<K, V>).removeMin_(), null);\n return n.fixUp_();\n }\n\n /**\n * @param key - The key of the item to remove.\n * @param comparator - Comparator.\n * @returns New tree, with the specified item removed.\n */\n remove(\n key: K,\n comparator: Comparator<K>\n ): LLRBNode<K, V> | LLRBEmptyNode<K, V> {\n let n, smallest;\n n = this;\n if (comparator(key, n.key) < 0) {\n if (!n.left.isEmpty() && !n.left.isRed_() && !n.left.left.isRed_()) {\n n = n.moveRedLeft_();\n }\n n = n.copy(null, null, null, n.left.remove(key, comparator), null);\n } else {\n if (n.left.isRed_()) {\n n = n.rotateRight_();\n }\n if (!n.right.isEmpty() && !n.right.isRed_() && !n.right.left.isRed_()) {\n n = n.moveRedRight_();\n }\n if (comparator(key, n.key) === 0) {\n if (n.right.isEmpty()) {\n return SortedMap.EMPTY_NODE as LLRBEmptyNode<K, V>;\n } else {\n smallest = (n.right as LLRBNode<K, V>).min_();\n n = n.copy(\n smallest.key,\n smallest.value,\n null,\n null,\n (n.right as LLRBNode<K, V>).removeMin_()\n );\n }\n }\n n = n.copy(null, null, null, null, n.right.remove(key, comparator));\n }\n return n.fixUp_();\n }\n\n /**\n * @returns Whether this is a RED node.\n */\n isRed_(): boolean {\n return this.color;\n }\n\n /**\n * @returns New tree after performing any needed rotations.\n */\n private fixUp_(): LLRBNode<K, V> {\n let n: LLRBNode<K, V> = this;\n if (n.right.isRed_() && !n.left.isRed_()) {\n n = n.rotateLeft_();\n }\n if (n.left.isRed_() && n.left.left.isRed_()) {\n n = n.rotateRight_();\n }\n if (n.left.isRed_() && n.right.isRed_()) {\n n = n.colorFlip_();\n }\n return n;\n }\n\n /**\n * @returns New tree, after moveRedLeft.\n */\n private moveRedLeft_(): LLRBNode<K, V> {\n let n = this.colorFlip_();\n if (n.right.left.isRed_()) {\n n = n.copy(\n null,\n null,\n null,\n null,\n (n.right as LLRBNode<K, V>).rotateRight_()\n );\n n = n.rotateLeft_();\n n = n.colorFlip_();\n }\n return n;\n }\n\n /**\n * @returns New tree, after moveRedRight.\n */\n private moveRedRight_(): LLRBNode<K, V> {\n let n = this.colorFlip_();\n if (n.left.left.isRed_()) {\n n = n.rotateRight_();\n n = n.colorFlip_();\n }\n return n;\n }\n\n /**\n * @returns New tree, after rotateLeft.\n */\n private rotateLeft_(): LLRBNode<K, V> {\n const nl = this.copy(null, null, LLRBNode.RED, null, this.right.left);\n return this.right.copy(null, null, this.color, nl, null) as LLRBNode<K, V>;\n }\n\n /**\n * @returns New tree, after rotateRight.\n */\n private rotateRight_(): LLRBNode<K, V> {\n const nr = this.copy(null, null, LLRBNode.RED, this.left.right, null);\n return this.left.copy(null, null, this.color, null, nr) as LLRBNode<K, V>;\n }\n\n /**\n * @returns Newt ree, after colorFlip.\n */\n private colorFlip_(): LLRBNode<K, V> {\n const left = this.left.copy(null, null, !this.left.color, null, null);\n const right = this.right.copy(null, null, !this.right.color, null, null);\n return this.copy(null, null, !this.color, left, right);\n }\n\n /**\n * For testing.\n *\n * @returns True if all is well.\n */\n private checkMaxDepth_(): boolean {\n const blackDepth = this.check_();\n return Math.pow(2.0, blackDepth) <= this.count() + 1;\n }\n\n check_(): number {\n if (this.isRed_() && this.left.isRed_()) {\n throw new Error(\n 'Red node has red child(' + this.key + ',' + this.value + ')'\n );\n }\n if (this.right.isRed_()) {\n throw new Error(\n 'Right child of (' + this.key + ',' + this.value + ') is red'\n );\n }\n const blackDepth = this.left.check_();\n if (blackDepth !== this.right.check_()) {\n throw new Error('Black depths differ');\n } else {\n return blackDepth + (this.isRed_() ? 0 : 1);\n }\n }\n}\n\n/**\n * Represents an empty node (a leaf node in the Red-Black Tree).\n */\nexport class LLRBEmptyNode<K, V> {\n key: K;\n value: V;\n left: LLRBNode<K, V> | LLRBEmptyNode<K, V>;\n right: LLRBNode<K, V> | LLRBEmptyNode<K, V>;\n color: boolean;\n\n /**\n * Returns a copy of the current node.\n *\n * @returns The node copy.\n */\n copy(\n key: K | null,\n value: V | null,\n color: boolean | null,\n left: LLRBNode<K, V> | LLRBEmptyNode<K, V> | null,\n right: LLRBNode<K, V> | LLRBEmptyNode<K, V> | null\n ): LLRBEmptyNode<K, V> {\n return this;\n }\n\n /**\n * Returns a copy of the tree, with the specified key/value added.\n *\n * @param key - Key to be added.\n * @param value - Value to be added.\n * @param comparator - Comparator.\n * @returns New tree, with item added.\n */\n insert(key: K, value: V, comparator: Comparator<K>): LLRBNode<K, V> {\n return new LLRBNode(key, value, null);\n }\n\n /**\n * Returns a copy of the tree, with the specified key removed.\n *\n * @param key - The key to remove.\n * @param comparator - Comparator.\n * @returns New tree, with item removed.\n */\n remove(key: K, comparator: Comparator<K>): LLRBEmptyNode<K, V> {\n return this;\n }\n\n /**\n * @returns The total number of nodes in the tree.\n */\n count(): number {\n return 0;\n }\n\n /**\n * @returns True if the tree is empty.\n */\n isEmpty(): boolean {\n return true;\n }\n\n /**\n * Traverses the tree in key order and calls the specified action function\n * for each node.\n *\n * @param action - Callback function to be called for each\n * node. If it returns true, traversal is aborted.\n * @returns True if traversal was aborted.\n */\n inorderTraversal(action: (k: K, v: V) => unknown): boolean {\n return false;\n }\n\n /**\n * Traverses the tree in reverse key order and calls the specified action function\n * for each node.\n *\n * @param action - Callback function to be called for each\n * node. If it returns true, traversal is aborted.\n * @returns True if traversal was aborted.\n */\n reverseTraversal(action: (k: K, v: V) => void): boolean {\n return false;\n }\n\n minKey(): null {\n return null;\n }\n\n maxKey(): null {\n return null;\n }\n\n check_(): number {\n return 0;\n }\n\n /**\n * @returns Whether this node is red.\n */\n isRed_() {\n return false;\n }\n}\n\n/**\n * An immutable sorted map implementation, based on a Left-leaning Red-Black\n * tree.\n */\nexport class SortedMap<K, V> {\n /**\n * Always use the same empty node, to reduce memory.\n */\n static EMPTY_NODE = new LLRBEmptyNode();\n\n /**\n * @param comparator_ - Key comparator.\n * @param root_ - Optional root node for the map.\n */\n constructor(\n private comparator_: Comparator<K>,\n private root_:\n | LLRBNode<K, V>\n | LLRBEmptyNode<K, V> = SortedMap.EMPTY_NODE as LLRBEmptyNode<K, V>\n ) {}\n\n /**\n * Returns a copy of the map, with the specified key/value added or replaced.\n * (TODO: We should perhaps rename this method to 'put')\n *\n * @param key - Key to be added.\n * @param value - Value to be added.\n * @returns New map, with item added.\n */\n insert(key: K, value: V): SortedMap<K, V> {\n return new SortedMap(\n this.comparator_,\n this.root_\n .insert(key, value, this.comparator_)\n .copy(null, null, LLRBNode.BLACK, null, null)\n );\n }\n\n /**\n * Returns a copy of the map, with the specified key removed.\n *\n * @param key - The key to remove.\n * @returns New map, with item removed.\n */\n remove(key: K): SortedMap<K, V> {\n return new SortedMap(\n this.comparator_,\n this.root_\n .remove(key, this.comparator_)\n .copy(null, null, LLRBNode.BLACK, null, null)\n );\n }\n\n /**\n * Returns the value of the node with the given key, or null.\n *\n * @param key - The key to look up.\n * @returns The value of the node with the given key, or null if the\n * key doesn't exist.\n */\n get(key: K): V | null {\n let cmp;\n let node = this.root_;\n while (!node.isEmpty()) {\n cmp = this.comparator_(key, node.key);\n if (cmp === 0) {\n return node.value;\n } else if (cmp < 0) {\n node = node.left;\n } else if (cmp > 0) {\n node = node.right;\n }\n }\n return null;\n }\n\n /**\n * Returns the key of the item *before* the specified key, or null if key is the first item.\n * @param key - The key to find the predecessor of\n * @returns The predecessor key.\n */\n getPredecessorKey(key: K): K | null {\n let cmp,\n node = this.root_,\n rightParent = null;\n while (!node.isEmpty()) {\n cmp = this.comparator_(key, node.key);\n if (cmp === 0) {\n if (!node.left.isEmpty()) {\n node = node.left;\n while (!node.right.isEmpty()) {\n node = node.right;\n }\n return node.key;\n } else if (rightParent) {\n return rightParent.key;\n } else {\n return null; // first item.\n }\n } else if (cmp < 0) {\n node = node.left;\n } else if (cmp > 0) {\n rightParent = node;\n node = node.right;\n }\n }\n\n throw new Error(\n 'Attempted to find predecessor key for a nonexistent key. What gives?'\n );\n }\n\n /**\n * @returns True if the map is empty.\n */\n isEmpty(): boolean {\n return this.root_.isEmpty();\n }\n\n /**\n * @returns The total number of nodes in the map.\n */\n count(): number {\n return this.root_.count();\n }\n\n /**\n * @returns The minimum key in the map.\n */\n minKey(): K | null {\n return this.root_.minKey();\n }\n\n /**\n * @returns The maximum key in the map.\n */\n maxKey(): K | null {\n return this.root_.maxKey();\n }\n\n /**\n * Traverses the map in key order and calls the specified action function\n * for each key/value pair.\n *\n * @param action - Callback function to be called\n * for each key/value pair. If action returns true, traversal is aborted.\n * @returns The first truthy value returned by action, or the last falsey\n * value returned by action\n */\n inorderTraversal(action: (k: K, v: V) => unknown): boolean {\n return this.root_.inorderTraversal(action);\n }\n\n /**\n * Traverses the map in reverse key order and calls the specified action function\n * for each key/value pair.\n *\n * @param action - Callback function to be called\n * for each key/value pair. If action returns true, traversal is aborted.\n * @returns True if the traversal was aborted.\n */\n reverseTraversal(action: (k: K, v: V) => void): boolean {\n return this.root_.reverseTraversal(action);\n }\n\n /**\n * Returns an iterator over the SortedMap.\n * @returns The iterator.\n */\n getIterator<T>(\n resultGenerator?: (k: K, v: V) => T\n ): SortedMapIterator<K, V, T> {\n return new SortedMapIterator(\n this.root_,\n null,\n this.comparator_,\n false,\n resultGenerator\n );\n }\n\n getIteratorFrom<T>(\n key: K,\n resultGenerator?: (k: K, v: V) => T\n ): SortedMapIterator<K, V, T> {\n return new SortedMapIterator(\n this.root_,\n key,\n this.comparator_,\n false,\n resultGenerator\n );\n }\n\n getReverseIteratorFrom<T>(\n key: K,\n resultGenerator?: (k: K, v: V) => T\n ): SortedMapIterator<K, V, T> {\n return new SortedMapIterator(\n this.root_,\n key,\n this.comparator_,\n true,\n resultGenerator\n );\n }\n\n getReverseIterator<T>(\n resultGenerator?: (k: K, v: V) => T\n ): SortedMapIterator<K, V, T> {\n return new SortedMapIterator(\n this.root_,\n null,\n this.comparator_,\n true,\n resultGenerator\n );\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { nameCompare } from '../util/util';\n\nimport { NamedNode } from './Node';\n\nexport function NAME_ONLY_COMPARATOR(left: NamedNode, right: NamedNode) {\n return nameCompare(left.name, right.name);\n}\n\nexport function NAME_COMPARATOR(left: string, right: string) {\n return nameCompare(left, right);\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\nimport { Indexable } from '../util/misc';\nimport {\n Path,\n pathGetFront,\n pathGetLength,\n pathIsEmpty,\n pathPopFront\n} from '../util/Path';\nimport { doubleToIEEE754String, sha1 } from '../util/util';\n\nimport { ChildrenNodeConstructor } from './ChildrenNode';\nimport { Index } from './indexes/Index';\nimport { Node } from './Node';\nimport { priorityHashText, validatePriorityNode } from './snap';\n\nlet __childrenNodeConstructor: ChildrenNodeConstructor;\n\n/**\n * LeafNode is a class for storing leaf nodes in a DataSnapshot. It\n * implements Node and stores the value of the node (a string,\n * number, or boolean) accessible via getValue().\n */\nexport class LeafNode implements Node {\n static set __childrenNodeConstructor(val: ChildrenNodeConstructor) {\n __childrenNodeConstructor = val;\n }\n\n static get __childrenNodeConstructor() {\n return __childrenNodeConstructor;\n }\n\n /**\n * The sort order for comparing leaf nodes of different types. If two leaf nodes have\n * the same type, the comparison falls back to their value\n */\n static VALUE_TYPE_ORDER = ['object', 'boolean', 'number', 'string'];\n\n private lazyHash_: string | null = null;\n\n /**\n * @param value_ - The value to store in this leaf node. The object type is\n * possible in the event of a deferred value\n * @param priorityNode_ - The priority of this node.\n */\n constructor(\n private readonly value_: string | number | boolean | Indexable,\n private priorityNode_: Node = LeafNode.__childrenNodeConstructor.EMPTY_NODE\n ) {\n assert(\n this.value_ !== undefined && this.value_ !== null,\n \"LeafNode shouldn't be created with null/undefined value.\"\n );\n\n validatePriorityNode(this.priorityNode_);\n }\n\n /** @inheritDoc */\n isLeafNode(): boolean {\n return true;\n }\n\n /** @inheritDoc */\n getPriority(): Node {\n return this.priorityNode_;\n }\n\n /** @inheritDoc */\n updatePriority(newPriorityNode: Node): Node {\n return new LeafNode(this.value_, newPriorityNode);\n }\n\n /** @inheritDoc */\n getImmediateChild(childName: string): Node {\n // Hack to treat priority as a regular child\n if (childName === '.priority') {\n return this.priorityNode_;\n } else {\n return LeafNode.__childrenNodeConstructor.EMPTY_NODE;\n }\n }\n\n /** @inheritDoc */\n getChild(path: Path): Node {\n if (pathIsEmpty(path)) {\n return this;\n } else if (pathGetFront(path) === '.priority') {\n return this.priorityNode_;\n } else {\n return LeafNode.__childrenNodeConstructor.EMPTY_NODE;\n }\n }\n hasChild(): boolean {\n return false;\n }\n\n /** @inheritDoc */\n getPredecessorChildName(childName: string, childNode: Node): null {\n return null;\n }\n\n /** @inheritDoc */\n updateImmediateChild(childName: string, newChildNode: Node): Node {\n if (childName === '.priority') {\n return this.updatePriority(newChildNode);\n } else if (newChildNode.isEmpty() && childName !== '.priority') {\n return this;\n } else {\n return LeafNode.__childrenNodeConstructor.EMPTY_NODE.updateImmediateChild(\n childName,\n newChildNode\n ).updatePriority(this.priorityNode_);\n }\n }\n\n /** @inheritDoc */\n updateChild(path: Path, newChildNode: Node): Node {\n const front = pathGetFront(path);\n if (front === null) {\n return newChildNode;\n } else if (newChildNode.isEmpty() && front !== '.priority') {\n return this;\n } else {\n assert(\n front !== '.priority' || pathGetLength(path) === 1,\n '.priority must be the last token in a path'\n );\n\n return this.updateImmediateChild(\n front,\n LeafNode.__childrenNodeConstructor.EMPTY_NODE.updateChild(\n pathPopFront(path),\n newChildNode\n )\n );\n }\n }\n\n /** @inheritDoc */\n isEmpty(): boolean {\n return false;\n }\n\n /** @inheritDoc */\n numChildren(): number {\n return 0;\n }\n\n /** @inheritDoc */\n forEachChild(index: Index, action: (s: string, n: Node) => void): boolean {\n return false;\n }\n val(exportFormat?: boolean): {} {\n if (exportFormat && !this.getPriority().isEmpty()) {\n return {\n '.value': this.getValue(),\n '.priority': this.getPriority().val()\n };\n } else {\n return this.getValue();\n }\n }\n\n /** @inheritDoc */\n hash(): string {\n if (this.lazyHash_ === null) {\n let toHash = '';\n if (!this.priorityNode_.isEmpty()) {\n toHash +=\n 'priority:' +\n priorityHashText(this.priorityNode_.val() as number | string) +\n ':';\n }\n\n const type = typeof this.value_;\n toHash += type + ':';\n if (type === 'number') {\n toHash += doubleToIEEE754String(this.value_ as number);\n } else {\n toHash += this.value_;\n }\n this.lazyHash_ = sha1(toHash);\n }\n return this.lazyHash_;\n }\n\n /**\n * Returns the value of the leaf node.\n * @returns The value of the node.\n */\n getValue(): Indexable | string | number | boolean {\n return this.value_;\n }\n compareTo(other: Node): number {\n if (other === LeafNode.__childrenNodeConstructor.EMPTY_NODE) {\n return 1;\n } else if (other instanceof LeafNode.__childrenNodeConstructor) {\n return -1;\n } else {\n assert(other.isLeafNode(), 'Unknown node type');\n return this.compareToLeafNode_(other as LeafNode);\n }\n }\n\n /**\n * Comparison specifically for two leaf nodes\n */\n private compareToLeafNode_(otherLeaf: LeafNode): number {\n const otherLeafType = typeof otherLeaf.value_;\n const thisLeafType = typeof this.value_;\n const otherIndex = LeafNode.VALUE_TYPE_ORDER.indexOf(otherLeafType);\n const thisIndex = LeafNode.VALUE_TYPE_ORDER.indexOf(thisLeafType);\n assert(otherIndex >= 0, 'Unknown leaf type: ' + otherLeafType);\n assert(thisIndex >= 0, 'Unknown leaf type: ' + thisLeafType);\n if (otherIndex === thisIndex) {\n // Same type, compare values\n if (thisLeafType === 'object') {\n // Deferred value nodes are all equal, but we should also never get to this point...\n return 0;\n } else {\n // Note that this works because true > false, all others are number or string comparisons\n if (this.value_ < otherLeaf.value_) {\n return -1;\n } else if (this.value_ === otherLeaf.value_) {\n return 0;\n } else {\n return 1;\n }\n }\n } else {\n return thisIndex - otherIndex;\n }\n }\n withIndex(): Node {\n return this;\n }\n isIndexed(): boolean {\n return true;\n }\n equals(other: Node): boolean {\n if (other === this) {\n return true;\n } else if (other.isLeafNode()) {\n const otherLeaf = other as LeafNode;\n return (\n this.value_ === otherLeaf.value_ &&\n this.priorityNode_.equals(otherLeaf.priorityNode_)\n );\n } else {\n return false;\n }\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { LLRBNode, SortedMap } from '../util/SortedMap';\n\nimport { NamedNode } from './Node';\n\nconst LOG_2 = Math.log(2);\n\nclass Base12Num {\n count: number;\n private current_: number;\n private bits_: number;\n\n constructor(length: number) {\n const logBase2 = (num: number) =>\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n parseInt((Math.log(num) / LOG_2) as any, 10);\n const bitMask = (bits: number) => parseInt(Array(bits + 1).join('1'), 2);\n this.count = logBase2(length + 1);\n this.current_ = this.count - 1;\n const mask = bitMask(this.count);\n this.bits_ = (length + 1) & mask;\n }\n\n nextBitIsOne(): boolean {\n //noinspection JSBitwiseOperatorUsage\n const result = !(this.bits_ & (0x1 << this.current_));\n this.current_--;\n return result;\n }\n}\n\n/**\n * Takes a list of child nodes and constructs a SortedSet using the given comparison\n * function\n *\n * Uses the algorithm described in the paper linked here:\n * http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.46.1458\n *\n * @param childList - Unsorted list of children\n * @param cmp - The comparison method to be used\n * @param keyFn - An optional function to extract K from a node wrapper, if K's\n * type is not NamedNode\n * @param mapSortFn - An optional override for comparator used by the generated sorted map\n */\nexport const buildChildSet = function <K, V>(\n childList: NamedNode[],\n cmp: (a: NamedNode, b: NamedNode) => number,\n keyFn?: (a: NamedNode) => K,\n mapSortFn?: (a: K, b: K) => number\n): SortedMap<K, V> {\n childList.sort(cmp);\n\n const buildBalancedTree = function (\n low: number,\n high: number\n ): LLRBNode<K, V> | null {\n const length = high - low;\n let namedNode: NamedNode;\n let key: K;\n if (length === 0) {\n return null;\n } else if (length === 1) {\n namedNode = childList[low];\n key = keyFn ? keyFn(namedNode) : (namedNode as unknown as K);\n return new LLRBNode(\n key,\n namedNode.node as unknown as V,\n LLRBNode.BLACK,\n null,\n null\n );\n } else {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const middle = parseInt((length / 2) as any, 10) + low;\n const left = buildBalancedTree(low, middle);\n const right = buildBalancedTree(middle + 1, high);\n namedNode = childList[middle];\n key = keyFn ? keyFn(namedNode) : (namedNode as unknown as K);\n return new LLRBNode(\n key,\n namedNode.node as unknown as V,\n LLRBNode.BLACK,\n left,\n right\n );\n }\n };\n\n const buildFrom12Array = function (base12: Base12Num): LLRBNode<K, V> {\n let node: LLRBNode<K, V> = null;\n let root = null;\n let index = childList.length;\n\n const buildPennant = function (chunkSize: number, color: boolean) {\n const low = index - chunkSize;\n const high = index;\n index -= chunkSize;\n const childTree = buildBalancedTree(low + 1, high);\n const namedNode = childList[low];\n const key: K = keyFn ? keyFn(namedNode) : (namedNode as unknown as K);\n attachPennant(\n new LLRBNode(\n key,\n namedNode.node as unknown as V,\n color,\n null,\n childTree\n )\n );\n };\n\n const attachPennant = function (pennant: LLRBNode<K, V>) {\n if (node) {\n node.left = pennant;\n node = pennant;\n } else {\n root = pennant;\n node = pennant;\n }\n };\n\n for (let i = 0; i < base12.count; ++i) {\n const isOne = base12.nextBitIsOne();\n // The number of nodes taken in each slice is 2^(arr.length - (i + 1))\n const chunkSize = Math.pow(2, base12.count - (i + 1));\n if (isOne) {\n buildPennant(chunkSize, LLRBNode.BLACK);\n } else {\n // current == 2\n buildPennant(chunkSize, LLRBNode.BLACK);\n buildPennant(chunkSize, LLRBNode.RED);\n }\n }\n return root;\n };\n\n const base12 = new Base12Num(childList.length);\n const root = buildFrom12Array(base12);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return new SortedMap<K, V>(mapSortFn || (cmp as any), root);\n};\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert, contains, map, safeGet } from '@firebase/util';\n\nimport { SortedMap } from '../util/SortedMap';\n\nimport { buildChildSet } from './childSet';\nimport { Index } from './indexes/Index';\nimport { KEY_INDEX } from './indexes/KeyIndex';\nimport { PRIORITY_INDEX } from './indexes/PriorityIndex';\nimport { NamedNode, Node } from './Node';\n\nlet _defaultIndexMap: IndexMap;\n\nconst fallbackObject = {};\n\nexport class IndexMap {\n /**\n * The default IndexMap for nodes without a priority\n */\n static get Default(): IndexMap {\n assert(\n fallbackObject && PRIORITY_INDEX,\n 'ChildrenNode.ts has not been loaded'\n );\n _defaultIndexMap =\n _defaultIndexMap ||\n new IndexMap(\n { '.priority': fallbackObject },\n { '.priority': PRIORITY_INDEX }\n );\n return _defaultIndexMap;\n }\n\n constructor(\n private indexes_: {\n [k: string]: SortedMap<NamedNode, Node> | /*FallbackType*/ object;\n },\n private indexSet_: { [k: string]: Index }\n ) {}\n\n get(indexKey: string): SortedMap<NamedNode, Node> | null {\n const sortedMap = safeGet(this.indexes_, indexKey);\n if (!sortedMap) {\n throw new Error('No index defined for ' + indexKey);\n }\n\n if (sortedMap instanceof SortedMap) {\n return sortedMap;\n } else {\n // The index exists, but it falls back to just name comparison. Return null so that the calling code uses the\n // regular child map\n return null;\n }\n }\n\n hasIndex(indexDefinition: Index): boolean {\n return contains(this.indexSet_, indexDefinition.toString());\n }\n\n addIndex(\n indexDefinition: Index,\n existingChildren: SortedMap<string, Node>\n ): IndexMap {\n assert(\n indexDefinition !== KEY_INDEX,\n \"KeyIndex always exists and isn't meant to be added to the IndexMap.\"\n );\n const childList = [];\n let sawIndexedValue = false;\n const iter = existingChildren.getIterator(NamedNode.Wrap);\n let next = iter.getNext();\n while (next) {\n sawIndexedValue =\n sawIndexedValue || indexDefinition.isDefinedOn(next.node);\n childList.push(next);\n next = iter.getNext();\n }\n let newIndex;\n if (sawIndexedValue) {\n newIndex = buildChildSet(childList, indexDefinition.getCompare());\n } else {\n newIndex = fallbackObject;\n }\n const indexName = indexDefinition.toString();\n const newIndexSet = { ...this.indexSet_ };\n newIndexSet[indexName] = indexDefinition;\n const newIndexes = { ...this.indexes_ };\n newIndexes[indexName] = newIndex;\n return new IndexMap(newIndexes, newIndexSet);\n }\n\n /**\n * Ensure that this node is properly tracked in any indexes that we're maintaining\n */\n addToIndexes(\n namedNode: NamedNode,\n existingChildren: SortedMap<string, Node>\n ): IndexMap {\n const newIndexes = map(\n this.indexes_,\n (indexedChildren: SortedMap<NamedNode, Node>, indexName: string) => {\n const index = safeGet(this.indexSet_, indexName);\n assert(index, 'Missing index implementation for ' + indexName);\n if (indexedChildren === fallbackObject) {\n // Check to see if we need to index everything\n if (index.isDefinedOn(namedNode.node)) {\n // We need to build this index\n const childList = [];\n const iter = existingChildren.getIterator(NamedNode.Wrap);\n let next = iter.getNext();\n while (next) {\n if (next.name !== namedNode.name) {\n childList.push(next);\n }\n next = iter.getNext();\n }\n childList.push(namedNode);\n return buildChildSet(childList, index.getCompare());\n } else {\n // No change, this remains a fallback\n return fallbackObject;\n }\n } else {\n const existingSnap = existingChildren.get(namedNode.name);\n let newChildren = indexedChildren;\n if (existingSnap) {\n newChildren = newChildren.remove(\n new NamedNode(namedNode.name, existingSnap)\n );\n }\n return newChildren.insert(namedNode, namedNode.node);\n }\n }\n );\n return new IndexMap(newIndexes, this.indexSet_);\n }\n\n /**\n * Create a new IndexMap instance with the given value removed\n */\n removeFromIndexes(\n namedNode: NamedNode,\n existingChildren: SortedMap<string, Node>\n ): IndexMap {\n const newIndexes = map(\n this.indexes_,\n (indexedChildren: SortedMap<NamedNode, Node>) => {\n if (indexedChildren === fallbackObject) {\n // This is the fallback. Just return it, nothing to do in this case\n return indexedChildren;\n } else {\n const existingSnap = existingChildren.get(namedNode.name);\n if (existingSnap) {\n return indexedChildren.remove(\n new NamedNode(namedNode.name, existingSnap)\n );\n } else {\n // No record of this child\n return indexedChildren;\n }\n }\n }\n );\n return new IndexMap(newIndexes, this.indexSet_);\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\nimport { Path, pathGetFront, pathGetLength, pathPopFront } from '../util/Path';\nimport { SortedMap, SortedMapIterator } from '../util/SortedMap';\nimport { MAX_NAME, MIN_NAME, sha1 } from '../util/util';\n\nimport { NAME_COMPARATOR } from './comparators';\nimport { Index } from './indexes/Index';\nimport { KEY_INDEX, KeyIndex } from './indexes/KeyIndex';\nimport {\n PRIORITY_INDEX,\n setMaxNode as setPriorityMaxNode\n} from './indexes/PriorityIndex';\nimport { IndexMap } from './IndexMap';\nimport { LeafNode } from './LeafNode';\nimport { NamedNode, Node } from './Node';\nimport { priorityHashText, setMaxNode, validatePriorityNode } from './snap';\n\nexport interface ChildrenNodeConstructor {\n new (\n children_: SortedMap<string, Node>,\n priorityNode_: Node | null,\n indexMap_: IndexMap\n ): ChildrenNode;\n EMPTY_NODE: ChildrenNode;\n}\n\n// TODO: For memory savings, don't store priorityNode_ if it's empty.\n\nlet EMPTY_NODE: ChildrenNode;\n\n/**\n * ChildrenNode is a class for storing internal nodes in a DataSnapshot\n * (i.e. nodes with children). It implements Node and stores the\n * list of children in the children property, sorted by child name.\n */\nexport class ChildrenNode implements Node {\n private lazyHash_: string | null = null;\n\n static get EMPTY_NODE(): ChildrenNode {\n return (\n EMPTY_NODE ||\n (EMPTY_NODE = new ChildrenNode(\n new SortedMap<string, Node>(NAME_COMPARATOR),\n null,\n IndexMap.Default\n ))\n );\n }\n\n /**\n * @param children_ - List of children of this node..\n * @param priorityNode_ - The priority of this node (as a snapshot node).\n */\n constructor(\n private readonly children_: SortedMap<string, Node>,\n private readonly priorityNode_: Node | null,\n private indexMap_: IndexMap\n ) {\n /**\n * Note: The only reason we allow null priority is for EMPTY_NODE, since we can't use\n * EMPTY_NODE as the priority of EMPTY_NODE. We might want to consider making EMPTY_NODE its own\n * class instead of an empty ChildrenNode.\n */\n if (this.priorityNode_) {\n validatePriorityNode(this.priorityNode_);\n }\n\n if (this.children_.isEmpty()) {\n assert(\n !this.priorityNode_ || this.priorityNode_.isEmpty(),\n 'An empty node cannot have a priority'\n );\n }\n }\n\n /** @inheritDoc */\n isLeafNode(): boolean {\n return false;\n }\n\n /** @inheritDoc */\n getPriority(): Node {\n return this.priorityNode_ || EMPTY_NODE;\n }\n\n /** @inheritDoc */\n updatePriority(newPriorityNode: Node): Node {\n if (this.children_.isEmpty()) {\n // Don't allow priorities on empty nodes\n return this;\n } else {\n return new ChildrenNode(this.children_, newPriorityNode, this.indexMap_);\n }\n }\n\n /** @inheritDoc */\n getImmediateChild(childName: string): Node {\n // Hack to treat priority as a regular child\n if (childName === '.priority') {\n return this.getPriority();\n } else {\n const child = this.children_.get(childName);\n return child === null ? EMPTY_NODE : child;\n }\n }\n\n /** @inheritDoc */\n getChild(path: Path): Node {\n const front = pathGetFront(path);\n if (front === null) {\n return this;\n }\n\n return this.getImmediateChild(front).getChild(pathPopFront(path));\n }\n\n /** @inheritDoc */\n hasChild(childName: string): boolean {\n return this.children_.get(childName) !== null;\n }\n\n /** @inheritDoc */\n updateImmediateChild(childName: string, newChildNode: Node): Node {\n assert(newChildNode, 'We should always be passing snapshot nodes');\n if (childName === '.priority') {\n return this.updatePriority(newChildNode);\n } else {\n const namedNode = new NamedNode(childName, newChildNode);\n let newChildren, newIndexMap;\n if (newChildNode.isEmpty()) {\n newChildren = this.children_.remove(childName);\n newIndexMap = this.indexMap_.removeFromIndexes(\n namedNode,\n this.children_\n );\n } else {\n newChildren = this.children_.insert(childName, newChildNode);\n newIndexMap = this.indexMap_.addToIndexes(namedNode, this.children_);\n }\n\n const newPriority = newChildren.isEmpty()\n ? EMPTY_NODE\n : this.priorityNode_;\n return new ChildrenNode(newChildren, newPriority, newIndexMap);\n }\n }\n\n /** @inheritDoc */\n updateChild(path: Path, newChildNode: Node): Node {\n const front = pathGetFront(path);\n if (front === null) {\n return newChildNode;\n } else {\n assert(\n pathGetFront(path) !== '.priority' || pathGetLength(path) === 1,\n '.priority must be the last token in a path'\n );\n const newImmediateChild = this.getImmediateChild(front).updateChild(\n pathPopFront(path),\n newChildNode\n );\n return this.updateImmediateChild(front, newImmediateChild);\n }\n }\n\n /** @inheritDoc */\n isEmpty(): boolean {\n return this.children_.isEmpty();\n }\n\n /** @inheritDoc */\n numChildren(): number {\n return this.children_.count();\n }\n\n private static INTEGER_REGEXP_ = /^(0|[1-9]\\d*)$/;\n\n /** @inheritDoc */\n val(exportFormat?: boolean): object {\n if (this.isEmpty()) {\n return null;\n }\n\n const obj: { [k: string]: unknown } = {};\n let numKeys = 0,\n maxKey = 0,\n allIntegerKeys = true;\n this.forEachChild(PRIORITY_INDEX, (key: string, childNode: Node) => {\n obj[key] = childNode.val(exportFormat);\n\n numKeys++;\n if (allIntegerKeys && ChildrenNode.INTEGER_REGEXP_.test(key)) {\n maxKey = Math.max(maxKey, Number(key));\n } else {\n allIntegerKeys = false;\n }\n });\n\n if (!exportFormat && allIntegerKeys && maxKey < 2 * numKeys) {\n // convert to array.\n const array: unknown[] = [];\n // eslint-disable-next-line guard-for-in\n for (const key in obj) {\n array[key as unknown as number] = obj[key];\n }\n\n return array;\n } else {\n if (exportFormat && !this.getPriority().isEmpty()) {\n obj['.priority'] = this.getPriority().val();\n }\n return obj;\n }\n }\n\n /** @inheritDoc */\n hash(): string {\n if (this.lazyHash_ === null) {\n let toHash = '';\n if (!this.getPriority().isEmpty()) {\n toHash +=\n 'priority:' +\n priorityHashText(this.getPriority().val() as string | number) +\n ':';\n }\n\n this.forEachChild(PRIORITY_INDEX, (key, childNode) => {\n const childHash = childNode.hash();\n if (childHash !== '') {\n toHash += ':' + key + ':' + childHash;\n }\n });\n\n this.lazyHash_ = toHash === '' ? '' : sha1(toHash);\n }\n return this.lazyHash_;\n }\n\n /** @inheritDoc */\n getPredecessorChildName(\n childName: string,\n childNode: Node,\n index: Index\n ): string {\n const idx = this.resolveIndex_(index);\n if (idx) {\n const predecessor = idx.getPredecessorKey(\n new NamedNode(childName, childNode)\n );\n return predecessor ? predecessor.name : null;\n } else {\n return this.children_.getPredecessorKey(childName);\n }\n }\n\n getFirstChildName(indexDefinition: Index): string | null {\n const idx = this.resolveIndex_(indexDefinition);\n if (idx) {\n const minKey = idx.minKey();\n return minKey && minKey.name;\n } else {\n return this.children_.minKey();\n }\n }\n\n getFirstChild(indexDefinition: Index): NamedNode | null {\n const minKey = this.getFirstChildName(indexDefinition);\n if (minKey) {\n return new NamedNode(minKey, this.children_.get(minKey));\n } else {\n return null;\n }\n }\n\n /**\n * Given an index, return the key name of the largest value we have, according to that index\n */\n getLastChildName(indexDefinition: Index): string | null {\n const idx = this.resolveIndex_(indexDefinition);\n if (idx) {\n const maxKey = idx.maxKey();\n return maxKey && maxKey.name;\n } else {\n return this.children_.maxKey();\n }\n }\n\n getLastChild(indexDefinition: Index): NamedNode | null {\n const maxKey = this.getLastChildName(indexDefinition);\n if (maxKey) {\n return new NamedNode(maxKey, this.children_.get(maxKey));\n } else {\n return null;\n }\n }\n forEachChild(\n index: Index,\n action: (key: string, node: Node) => boolean | void\n ): boolean {\n const idx = this.resolveIndex_(index);\n if (idx) {\n return idx.inorderTraversal(wrappedNode => {\n return action(wrappedNode.name, wrappedNode.node);\n });\n } else {\n return this.children_.inorderTraversal(action);\n }\n }\n\n getIterator(\n indexDefinition: Index\n ): SortedMapIterator<string | NamedNode, Node, NamedNode> {\n return this.getIteratorFrom(indexDefinition.minPost(), indexDefinition);\n }\n\n getIteratorFrom(\n startPost: NamedNode,\n indexDefinition: Index\n ): SortedMapIterator<string | NamedNode, Node, NamedNode> {\n const idx = this.resolveIndex_(indexDefinition);\n if (idx) {\n return idx.getIteratorFrom(startPost, key => key);\n } else {\n const iterator = this.children_.getIteratorFrom(\n startPost.name,\n NamedNode.Wrap\n );\n let next = iterator.peek();\n while (next != null && indexDefinition.compare(next, startPost) < 0) {\n iterator.getNext();\n next = iterator.peek();\n }\n return iterator;\n }\n }\n\n getReverseIterator(\n indexDefinition: Index\n ): SortedMapIterator<string | NamedNode, Node, NamedNode> {\n return this.getReverseIteratorFrom(\n indexDefinition.maxPost(),\n indexDefinition\n );\n }\n\n getReverseIteratorFrom(\n endPost: NamedNode,\n indexDefinition: Index\n ): SortedMapIterator<string | NamedNode, Node, NamedNode> {\n const idx = this.resolveIndex_(indexDefinition);\n if (idx) {\n return idx.getReverseIteratorFrom(endPost, key => {\n return key;\n });\n } else {\n const iterator = this.children_.getReverseIteratorFrom(\n endPost.name,\n NamedNode.Wrap\n );\n let next = iterator.peek();\n while (next != null && indexDefinition.compare(next, endPost) > 0) {\n iterator.getNext();\n next = iterator.peek();\n }\n return iterator;\n }\n }\n compareTo(other: ChildrenNode): number {\n if (this.isEmpty()) {\n if (other.isEmpty()) {\n return 0;\n } else {\n return -1;\n }\n } else if (other.isLeafNode() || other.isEmpty()) {\n return 1;\n } else if (other === MAX_NODE) {\n return -1;\n } else {\n // Must be another node with children.\n return 0;\n }\n }\n withIndex(indexDefinition: Index): Node {\n if (\n indexDefinition === KEY_INDEX ||\n this.indexMap_.hasIndex(indexDefinition)\n ) {\n return this;\n } else {\n const newIndexMap = this.indexMap_.addIndex(\n indexDefinition,\n this.children_\n );\n return new ChildrenNode(this.children_, this.priorityNode_, newIndexMap);\n }\n }\n isIndexed(index: Index): boolean {\n return index === KEY_INDEX || this.indexMap_.hasIndex(index);\n }\n equals(other: Node): boolean {\n if (other === this) {\n return true;\n } else if (other.isLeafNode()) {\n return false;\n } else {\n const otherChildrenNode = other as ChildrenNode;\n if (!this.getPriority().equals(otherChildrenNode.getPriority())) {\n return false;\n } else if (\n this.children_.count() === otherChildrenNode.children_.count()\n ) {\n const thisIter = this.getIterator(PRIORITY_INDEX);\n const otherIter = otherChildrenNode.getIterator(PRIORITY_INDEX);\n let thisCurrent = thisIter.getNext();\n let otherCurrent = otherIter.getNext();\n while (thisCurrent && otherCurrent) {\n if (\n thisCurrent.name !== otherCurrent.name ||\n !thisCurrent.node.equals(otherCurrent.node)\n ) {\n return false;\n }\n thisCurrent = thisIter.getNext();\n otherCurrent = otherIter.getNext();\n }\n return thisCurrent === null && otherCurrent === null;\n } else {\n return false;\n }\n }\n }\n\n /**\n * Returns a SortedMap ordered by index, or null if the default (by-key) ordering can be used\n * instead.\n *\n */\n private resolveIndex_(\n indexDefinition: Index\n ): SortedMap<NamedNode, Node> | null {\n if (indexDefinition === KEY_INDEX) {\n return null;\n } else {\n return this.indexMap_.get(indexDefinition.toString());\n }\n }\n}\n\nexport class MaxNode extends ChildrenNode {\n constructor() {\n super(\n new SortedMap<string, Node>(NAME_COMPARATOR),\n ChildrenNode.EMPTY_NODE,\n IndexMap.Default\n );\n }\n\n compareTo(other: Node): number {\n if (other === this) {\n return 0;\n } else {\n return 1;\n }\n }\n\n equals(other: Node): boolean {\n // Not that we every compare it, but MAX_NODE is only ever equal to itself\n return other === this;\n }\n\n getPriority(): MaxNode {\n return this;\n }\n\n getImmediateChild(childName: string): ChildrenNode {\n return ChildrenNode.EMPTY_NODE;\n }\n\n isEmpty(): boolean {\n return false;\n }\n}\n\n/**\n * Marker that will sort higher than any other snapshot.\n */\nexport const MAX_NODE = new MaxNode();\n\n/**\n * Document NamedNode extensions\n */\ndeclare module './Node' {\n interface NamedNode {\n MIN: NamedNode;\n MAX: NamedNode;\n }\n}\n\nObject.defineProperties(NamedNode, {\n MIN: {\n value: new NamedNode(MIN_NAME, ChildrenNode.EMPTY_NODE)\n },\n MAX: {\n value: new NamedNode(MAX_NAME, MAX_NODE)\n }\n});\n\n/**\n * Reference Extensions\n */\nKeyIndex.__EMPTY_NODE = ChildrenNode.EMPTY_NODE;\nLeafNode.__childrenNodeConstructor = ChildrenNode;\nsetMaxNode(MAX_NODE);\nsetPriorityMaxNode(MAX_NODE);\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { contains, assert } from '@firebase/util';\n\nimport { Indexable } from '../util/misc';\nimport { SortedMap } from '../util/SortedMap';\nimport { each } from '../util/util';\n\nimport { ChildrenNode } from './ChildrenNode';\nimport { buildChildSet } from './childSet';\nimport { NAME_COMPARATOR, NAME_ONLY_COMPARATOR } from './comparators';\nimport { PRIORITY_INDEX, setNodeFromJSON } from './indexes/PriorityIndex';\nimport { IndexMap } from './IndexMap';\nimport { LeafNode } from './LeafNode';\nimport { NamedNode, Node } from './Node';\n\nconst USE_HINZE = true;\n\n/**\n * Constructs a snapshot node representing the passed JSON and returns it.\n * @param json - JSON to create a node for.\n * @param priority - Optional priority to use. This will be ignored if the\n * passed JSON contains a .priority property.\n */\nexport function nodeFromJSON(\n json: unknown | null,\n priority: unknown = null\n): Node {\n if (json === null) {\n return ChildrenNode.EMPTY_NODE;\n }\n\n if (typeof json === 'object' && '.priority' in json) {\n priority = json['.priority'];\n }\n\n assert(\n priority === null ||\n typeof priority === 'string' ||\n typeof priority === 'number' ||\n (typeof priority === 'object' && '.sv' in (priority as object)),\n 'Invalid priority type found: ' + typeof priority\n );\n\n if (typeof json === 'object' && '.value' in json && json['.value'] !== null) {\n json = json['.value'];\n }\n\n // Valid leaf nodes include non-objects or server-value wrapper objects\n if (typeof json !== 'object' || '.sv' in json) {\n const jsonLeaf = json as string | number | boolean | Indexable;\n return new LeafNode(jsonLeaf, nodeFromJSON(priority));\n }\n\n if (!(json instanceof Array) && USE_HINZE) {\n const children: NamedNode[] = [];\n let childrenHavePriority = false;\n const hinzeJsonObj = json;\n each(hinzeJsonObj, (key, child) => {\n if (key.substring(0, 1) !== '.') {\n // Ignore metadata nodes\n const childNode = nodeFromJSON(child);\n if (!childNode.isEmpty()) {\n childrenHavePriority =\n childrenHavePriority || !childNode.getPriority().isEmpty();\n children.push(new NamedNode(key, childNode));\n }\n }\n });\n\n if (children.length === 0) {\n return ChildrenNode.EMPTY_NODE;\n }\n\n const childSet = buildChildSet(\n children,\n NAME_ONLY_COMPARATOR,\n namedNode => namedNode.name,\n NAME_COMPARATOR\n ) as SortedMap<string, Node>;\n if (childrenHavePriority) {\n const sortedChildSet = buildChildSet(\n children,\n PRIORITY_INDEX.getCompare()\n );\n return new ChildrenNode(\n childSet,\n nodeFromJSON(priority),\n new IndexMap(\n { '.priority': sortedChildSet },\n { '.priority': PRIORITY_INDEX }\n )\n );\n } else {\n return new ChildrenNode(\n childSet,\n nodeFromJSON(priority),\n IndexMap.Default\n );\n }\n } else {\n let node: Node = ChildrenNode.EMPTY_NODE;\n each(json, (key: string, childData: unknown) => {\n if (contains(json as object, key)) {\n if (key.substring(0, 1) !== '.') {\n // ignore metadata nodes.\n const childNode = nodeFromJSON(childData);\n if (childNode.isLeafNode() || !childNode.isEmpty()) {\n node = node.updateImmediateChild(key, childNode);\n }\n }\n }\n });\n\n return node.updatePriority(nodeFromJSON(priority));\n }\n}\n\nsetNodeFromJSON(nodeFromJSON);\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\nimport { Path, pathGetFront, pathIsEmpty, pathSlice } from '../../util/Path';\nimport { MAX_NAME, nameCompare } from '../../util/util';\nimport { ChildrenNode, MAX_NODE } from '../ChildrenNode';\nimport { NamedNode, Node } from '../Node';\nimport { nodeFromJSON } from '../nodeFromJSON';\n\nimport { Index } from './Index';\n\nexport class PathIndex extends Index {\n constructor(private indexPath_: Path) {\n super();\n\n assert(\n !pathIsEmpty(indexPath_) && pathGetFront(indexPath_) !== '.priority',\n \"Can't create PathIndex with empty path or .priority key\"\n );\n }\n\n protected extractChild(snap: Node): Node {\n return snap.getChild(this.indexPath_);\n }\n isDefinedOn(node: Node): boolean {\n return !node.getChild(this.indexPath_).isEmpty();\n }\n compare(a: NamedNode, b: NamedNode): number {\n const aChild = this.extractChild(a.node);\n const bChild = this.extractChild(b.node);\n const indexCmp = aChild.compareTo(bChild);\n if (indexCmp === 0) {\n return nameCompare(a.name, b.name);\n } else {\n return indexCmp;\n }\n }\n makePost(indexValue: object, name: string): NamedNode {\n const valueNode = nodeFromJSON(indexValue);\n const node = ChildrenNode.EMPTY_NODE.updateChild(\n this.indexPath_,\n valueNode\n );\n return new NamedNode(name, node);\n }\n maxPost(): NamedNode {\n const node = ChildrenNode.EMPTY_NODE.updateChild(this.indexPath_, MAX_NODE);\n return new NamedNode(MAX_NAME, node);\n }\n toString(): string {\n return pathSlice(this.indexPath_, 0).join('/');\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { nameCompare } from '../../util/util';\nimport { NamedNode, Node } from '../Node';\nimport { nodeFromJSON } from '../nodeFromJSON';\n\nimport { Index } from './Index';\n\nexport class ValueIndex extends Index {\n compare(a: NamedNode, b: NamedNode): number {\n const indexCmp = a.node.compareTo(b.node);\n if (indexCmp === 0) {\n return nameCompare(a.name, b.name);\n } else {\n return indexCmp;\n }\n }\n isDefinedOn(node: Node): boolean {\n return true;\n }\n indexedValueChanged(oldNode: Node, newNode: Node): boolean {\n return !oldNode.equals(newNode);\n }\n minPost(): NamedNode {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return (NamedNode as any).MIN;\n }\n maxPost(): NamedNode {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return (NamedNode as any).MAX;\n }\n\n makePost(indexValue: object, name: string): NamedNode {\n const valueNode = nodeFromJSON(indexValue);\n return new NamedNode(name, valueNode);\n }\n\n /**\n * @returns String representation for inclusion in a query spec\n */\n toString(): string {\n return '.value';\n }\n}\n\nexport const VALUE_INDEX = new ValueIndex();\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Node } from '../snap/Node';\n\nexport const enum ChangeType {\n /** Event type for a child added */\n CHILD_ADDED = 'child_added',\n /** Event type for a child removed */\n CHILD_REMOVED = 'child_removed',\n /** Event type for a child changed */\n CHILD_CHANGED = 'child_changed',\n /** Event type for a child moved */\n CHILD_MOVED = 'child_moved',\n /** Event type for a value change */\n VALUE = 'value'\n}\n\nexport interface Change {\n /** @param type - The event type */\n type: ChangeType;\n /** @param snapshotNode - The data */\n snapshotNode: Node;\n /** @param childName - The name for this child, if it's a child even */\n childName?: string;\n /** @param oldSnap - Used for intermediate processing of child changed events */\n oldSnap?: Node;\n /** * @param prevName - The name for the previous child, if applicable */\n prevName?: string | null;\n}\n\nexport function changeValue(snapshotNode: Node): Change {\n return { type: ChangeType.VALUE, snapshotNode };\n}\n\nexport function changeChildAdded(\n childName: string,\n snapshotNode: Node\n): Change {\n return { type: ChangeType.CHILD_ADDED, snapshotNode, childName };\n}\n\nexport function changeChildRemoved(\n childName: string,\n snapshotNode: Node\n): Change {\n return { type: ChangeType.CHILD_REMOVED, snapshotNode, childName };\n}\n\nexport function changeChildChanged(\n childName: string,\n snapshotNode: Node,\n oldSnap: Node\n): Change {\n return {\n type: ChangeType.CHILD_CHANGED,\n snapshotNode,\n childName,\n oldSnap\n };\n}\n\nexport function changeChildMoved(\n childName: string,\n snapshotNode: Node\n): Change {\n return { type: ChangeType.CHILD_MOVED, snapshotNode, childName };\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\nimport { ChildrenNode } from '../../snap/ChildrenNode';\nimport { Index } from '../../snap/indexes/Index';\nimport { PRIORITY_INDEX } from '../../snap/indexes/PriorityIndex';\nimport { Node } from '../../snap/Node';\nimport { Path } from '../../util/Path';\nimport {\n changeChildAdded,\n changeChildChanged,\n changeChildRemoved\n} from '../Change';\nimport { ChildChangeAccumulator } from '../ChildChangeAccumulator';\nimport { CompleteChildSource } from '../CompleteChildSource';\n\nimport { NodeFilter } from './NodeFilter';\n\n/**\n * Doesn't really filter nodes but applies an index to the node and keeps track of any changes\n */\nexport class IndexedFilter implements NodeFilter {\n constructor(private readonly index_: Index) {}\n\n updateChild(\n snap: Node,\n key: string,\n newChild: Node,\n affectedPath: Path,\n source: CompleteChildSource,\n optChangeAccumulator: ChildChangeAccumulator | null\n ): Node {\n assert(\n snap.isIndexed(this.index_),\n 'A node must be indexed if only a child is updated'\n );\n const oldChild = snap.getImmediateChild(key);\n // Check if anything actually changed.\n if (\n oldChild.getChild(affectedPath).equals(newChild.getChild(affectedPath))\n ) {\n // There's an edge case where a child can enter or leave the view because affectedPath was set to null.\n // In this case, affectedPath will appear null in both the old and new snapshots. So we need\n // to avoid treating these cases as \"nothing changed.\"\n if (oldChild.isEmpty() === newChild.isEmpty()) {\n // Nothing changed.\n\n // This assert should be valid, but it's expensive (can dominate perf testing) so don't actually do it.\n //assert(oldChild.equals(newChild), 'Old and new snapshots should be equal.');\n return snap;\n }\n }\n\n if (optChangeAccumulator != null) {\n if (newChild.isEmpty()) {\n if (snap.hasChild(key)) {\n optChangeAccumulator.trackChildChange(\n changeChildRemoved(key, oldChild)\n );\n } else {\n assert(\n snap.isLeafNode(),\n 'A child remove without an old child only makes sense on a leaf node'\n );\n }\n } else if (oldChild.isEmpty()) {\n optChangeAccumulator.trackChildChange(changeChildAdded(key, newChild));\n } else {\n optChangeAccumulator.trackChildChange(\n changeChildChanged(key, newChild, oldChild)\n );\n }\n }\n if (snap.isLeafNode() && newChild.isEmpty()) {\n return snap;\n } else {\n // Make sure the node is indexed\n return snap.updateImmediateChild(key, newChild).withIndex(this.index_);\n }\n }\n updateFullNode(\n oldSnap: Node,\n newSnap: Node,\n optChangeAccumulator: ChildChangeAccumulator | null\n ): Node {\n if (optChangeAccumulator != null) {\n if (!oldSnap.isLeafNode()) {\n oldSnap.forEachChild(PRIORITY_INDEX, (key, childNode) => {\n if (!newSnap.hasChild(key)) {\n optChangeAccumulator.trackChildChange(\n changeChildRemoved(key, childNode)\n );\n }\n });\n }\n if (!newSnap.isLeafNode()) {\n newSnap.forEachChild(PRIORITY_INDEX, (key, childNode) => {\n if (oldSnap.hasChild(key)) {\n const oldChild = oldSnap.getImmediateChild(key);\n if (!oldChild.equals(childNode)) {\n optChangeAccumulator.trackChildChange(\n changeChildChanged(key, childNode, oldChild)\n );\n }\n } else {\n optChangeAccumulator.trackChildChange(\n changeChildAdded(key, childNode)\n );\n }\n });\n }\n }\n return newSnap.withIndex(this.index_);\n }\n updatePriority(oldSnap: Node, newPriority: Node): Node {\n if (oldSnap.isEmpty()) {\n return ChildrenNode.EMPTY_NODE;\n } else {\n return oldSnap.updatePriority(newPriority);\n }\n }\n filtersNodes(): boolean {\n return false;\n }\n getIndexedFilter(): IndexedFilter {\n return this;\n }\n getIndex(): Index {\n return this.index_;\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { NamedNode, Node } from '../../../core/snap/Node';\nimport { ChildrenNode } from '../../snap/ChildrenNode';\nimport { Index } from '../../snap/indexes/Index';\nimport { PRIORITY_INDEX } from '../../snap/indexes/PriorityIndex';\nimport { Path } from '../../util/Path';\nimport { ChildChangeAccumulator } from '../ChildChangeAccumulator';\nimport { CompleteChildSource } from '../CompleteChildSource';\nimport { QueryParams } from '../QueryParams';\n\nimport { IndexedFilter } from './IndexedFilter';\nimport { NodeFilter } from './NodeFilter';\n\n/**\n * Filters nodes by range and uses an IndexFilter to track any changes after filtering the node\n */\nexport class RangedFilter implements NodeFilter {\n private indexedFilter_: IndexedFilter;\n\n private index_: Index;\n\n private startPost_: NamedNode;\n\n private endPost_: NamedNode;\n\n private startIsInclusive_: boolean;\n\n private endIsInclusive_: boolean;\n\n constructor(params: QueryParams) {\n this.indexedFilter_ = new IndexedFilter(params.getIndex());\n this.index_ = params.getIndex();\n this.startPost_ = RangedFilter.getStartPost_(params);\n this.endPost_ = RangedFilter.getEndPost_(params);\n this.startIsInclusive_ = !params.startAfterSet_;\n this.endIsInclusive_ = !params.endBeforeSet_;\n }\n\n getStartPost(): NamedNode {\n return this.startPost_;\n }\n\n getEndPost(): NamedNode {\n return this.endPost_;\n }\n\n matches(node: NamedNode): boolean {\n const isWithinStart = this.startIsInclusive_\n ? this.index_.compare(this.getStartPost(), node) <= 0\n : this.index_.compare(this.getStartPost(), node) < 0;\n const isWithinEnd = this.endIsInclusive_\n ? this.index_.compare(node, this.getEndPost()) <= 0\n : this.index_.compare(node, this.getEndPost()) < 0;\n return isWithinStart && isWithinEnd;\n }\n updateChild(\n snap: Node,\n key: string,\n newChild: Node,\n affectedPath: Path,\n source: CompleteChildSource,\n optChangeAccumulator: ChildChangeAccumulator | null\n ): Node {\n if (!this.matches(new NamedNode(key, newChild))) {\n newChild = ChildrenNode.EMPTY_NODE;\n }\n return this.indexedFilter_.updateChild(\n snap,\n key,\n newChild,\n affectedPath,\n source,\n optChangeAccumulator\n );\n }\n updateFullNode(\n oldSnap: Node,\n newSnap: Node,\n optChangeAccumulator: ChildChangeAccumulator | null\n ): Node {\n if (newSnap.isLeafNode()) {\n // Make sure we have a children node with the correct index, not a leaf node;\n newSnap = ChildrenNode.EMPTY_NODE;\n }\n let filtered = newSnap.withIndex(this.index_);\n // Don't support priorities on queries\n filtered = filtered.updatePriority(ChildrenNode.EMPTY_NODE);\n const self = this;\n newSnap.forEachChild(PRIORITY_INDEX, (key, childNode) => {\n if (!self.matches(new NamedNode(key, childNode))) {\n filtered = filtered.updateImmediateChild(key, ChildrenNode.EMPTY_NODE);\n }\n });\n return this.indexedFilter_.updateFullNode(\n oldSnap,\n filtered,\n optChangeAccumulator\n );\n }\n updatePriority(oldSnap: Node, newPriority: Node): Node {\n // Don't support priorities on queries\n return oldSnap;\n }\n filtersNodes(): boolean {\n return true;\n }\n getIndexedFilter(): IndexedFilter {\n return this.indexedFilter_;\n }\n getIndex(): Index {\n return this.index_;\n }\n\n private static getStartPost_(params: QueryParams): NamedNode {\n if (params.hasStart()) {\n const startName = params.getIndexStartName();\n return params.getIndex().makePost(params.getIndexStartValue(), startName);\n } else {\n return params.getIndex().minPost();\n }\n }\n\n private static getEndPost_(params: QueryParams): NamedNode {\n if (params.hasEnd()) {\n const endName = params.getIndexEndName();\n return params.getIndex().makePost(params.getIndexEndValue(), endName);\n } else {\n return params.getIndex().maxPost();\n }\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\nimport { ChildrenNode } from '../../snap/ChildrenNode';\nimport { Index } from '../../snap/indexes/Index';\nimport { NamedNode, Node } from '../../snap/Node';\nimport { Path } from '../../util/Path';\nimport {\n changeChildAdded,\n changeChildChanged,\n changeChildRemoved\n} from '../Change';\nimport { ChildChangeAccumulator } from '../ChildChangeAccumulator';\nimport { CompleteChildSource } from '../CompleteChildSource';\nimport { QueryParams } from '../QueryParams';\n\nimport { IndexedFilter } from './IndexedFilter';\nimport { NodeFilter } from './NodeFilter';\nimport { RangedFilter } from './RangedFilter';\n\n/**\n * Applies a limit and a range to a node and uses RangedFilter to do the heavy lifting where possible\n */\nexport class LimitedFilter implements NodeFilter {\n private readonly rangedFilter_: RangedFilter;\n\n private readonly index_: Index;\n\n private readonly limit_: number;\n\n private readonly reverse_: boolean;\n\n private readonly startIsInclusive_: boolean;\n\n private readonly endIsInclusive_: boolean;\n\n constructor(params: QueryParams) {\n this.rangedFilter_ = new RangedFilter(params);\n this.index_ = params.getIndex();\n this.limit_ = params.getLimit();\n this.reverse_ = !params.isViewFromLeft();\n this.startIsInclusive_ = !params.startAfterSet_;\n this.endIsInclusive_ = !params.endBeforeSet_;\n }\n updateChild(\n snap: Node,\n key: string,\n newChild: Node,\n affectedPath: Path,\n source: CompleteChildSource,\n optChangeAccumulator: ChildChangeAccumulator | null\n ): Node {\n if (!this.rangedFilter_.matches(new NamedNode(key, newChild))) {\n newChild = ChildrenNode.EMPTY_NODE;\n }\n if (snap.getImmediateChild(key).equals(newChild)) {\n // No change\n return snap;\n } else if (snap.numChildren() < this.limit_) {\n return this.rangedFilter_\n .getIndexedFilter()\n .updateChild(\n snap,\n key,\n newChild,\n affectedPath,\n source,\n optChangeAccumulator\n );\n } else {\n return this.fullLimitUpdateChild_(\n snap,\n key,\n newChild,\n source,\n optChangeAccumulator\n );\n }\n }\n updateFullNode(\n oldSnap: Node,\n newSnap: Node,\n optChangeAccumulator: ChildChangeAccumulator | null\n ): Node {\n let filtered;\n if (newSnap.isLeafNode() || newSnap.isEmpty()) {\n // Make sure we have a children node with the correct index, not a leaf node;\n filtered = ChildrenNode.EMPTY_NODE.withIndex(this.index_);\n } else {\n if (\n this.limit_ * 2 < newSnap.numChildren() &&\n newSnap.isIndexed(this.index_)\n ) {\n // Easier to build up a snapshot, since what we're given has more than twice the elements we want\n filtered = ChildrenNode.EMPTY_NODE.withIndex(this.index_);\n // anchor to the startPost, endPost, or last element as appropriate\n let iterator;\n if (this.reverse_) {\n iterator = (newSnap as ChildrenNode).getReverseIteratorFrom(\n this.rangedFilter_.getEndPost(),\n this.index_\n );\n } else {\n iterator = (newSnap as ChildrenNode).getIteratorFrom(\n this.rangedFilter_.getStartPost(),\n this.index_\n );\n }\n let count = 0;\n while (iterator.hasNext() && count < this.limit_) {\n const next = iterator.getNext();\n if (!this.withinDirectionalStart(next)) {\n // if we have not reached the start, skip to the next element\n continue;\n } else if (!this.withinDirectionalEnd(next)) {\n // if we have reached the end, stop adding elements\n break;\n } else {\n filtered = filtered.updateImmediateChild(next.name, next.node);\n count++;\n }\n }\n } else {\n // The snap contains less than twice the limit. Faster to delete from the snap than build up a new one\n filtered = newSnap.withIndex(this.index_);\n // Don't support priorities on queries\n filtered = filtered.updatePriority(\n ChildrenNode.EMPTY_NODE\n ) as ChildrenNode;\n\n let iterator;\n if (this.reverse_) {\n iterator = filtered.getReverseIterator(this.index_);\n } else {\n iterator = filtered.getIterator(this.index_);\n }\n\n let count = 0;\n while (iterator.hasNext()) {\n const next = iterator.getNext();\n const inRange =\n count < this.limit_ &&\n this.withinDirectionalStart(next) &&\n this.withinDirectionalEnd(next);\n if (inRange) {\n count++;\n } else {\n filtered = filtered.updateImmediateChild(\n next.name,\n ChildrenNode.EMPTY_NODE\n );\n }\n }\n }\n }\n return this.rangedFilter_\n .getIndexedFilter()\n .updateFullNode(oldSnap, filtered, optChangeAccumulator);\n }\n updatePriority(oldSnap: Node, newPriority: Node): Node {\n // Don't support priorities on queries\n return oldSnap;\n }\n filtersNodes(): boolean {\n return true;\n }\n getIndexedFilter(): IndexedFilter {\n return this.rangedFilter_.getIndexedFilter();\n }\n getIndex(): Index {\n return this.index_;\n }\n\n private fullLimitUpdateChild_(\n snap: Node,\n childKey: string,\n childSnap: Node,\n source: CompleteChildSource,\n changeAccumulator: ChildChangeAccumulator | null\n ): Node {\n // TODO: rename all cache stuff etc to general snap terminology\n let cmp;\n if (this.reverse_) {\n const indexCmp = this.index_.getCompare();\n cmp = (a: NamedNode, b: NamedNode) => indexCmp(b, a);\n } else {\n cmp = this.index_.getCompare();\n }\n const oldEventCache = snap as ChildrenNode;\n assert(oldEventCache.numChildren() === this.limit_, '');\n const newChildNamedNode = new NamedNode(childKey, childSnap);\n const windowBoundary = this.reverse_\n ? oldEventCache.getFirstChild(this.index_)\n : (oldEventCache.getLastChild(this.index_) as NamedNode);\n const inRange = this.rangedFilter_.matches(newChildNamedNode);\n if (oldEventCache.hasChild(childKey)) {\n const oldChildSnap = oldEventCache.getImmediateChild(childKey);\n let nextChild = source.getChildAfterChild(\n this.index_,\n windowBoundary,\n this.reverse_\n );\n while (\n nextChild != null &&\n (nextChild.name === childKey || oldEventCache.hasChild(nextChild.name))\n ) {\n // There is a weird edge case where a node is updated as part of a merge in the write tree, but hasn't\n // been applied to the limited filter yet. Ignore this next child which will be updated later in\n // the limited filter...\n nextChild = source.getChildAfterChild(\n this.index_,\n nextChild,\n this.reverse_\n );\n }\n const compareNext =\n nextChild == null ? 1 : cmp(nextChild, newChildNamedNode);\n const remainsInWindow =\n inRange && !childSnap.isEmpty() && compareNext >= 0;\n if (remainsInWindow) {\n if (changeAccumulator != null) {\n changeAccumulator.trackChildChange(\n changeChildChanged(childKey, childSnap, oldChildSnap)\n );\n }\n return oldEventCache.updateImmediateChild(childKey, childSnap);\n } else {\n if (changeAccumulator != null) {\n changeAccumulator.trackChildChange(\n changeChildRemoved(childKey, oldChildSnap)\n );\n }\n const newEventCache = oldEventCache.updateImmediateChild(\n childKey,\n ChildrenNode.EMPTY_NODE\n );\n const nextChildInRange =\n nextChild != null && this.rangedFilter_.matches(nextChild);\n if (nextChildInRange) {\n if (changeAccumulator != null) {\n changeAccumulator.trackChildChange(\n changeChildAdded(nextChild.name, nextChild.node)\n );\n }\n return newEventCache.updateImmediateChild(\n nextChild.name,\n nextChild.node\n );\n } else {\n return newEventCache;\n }\n }\n } else if (childSnap.isEmpty()) {\n // we're deleting a node, but it was not in the window, so ignore it\n return snap;\n } else if (inRange) {\n if (cmp(windowBoundary, newChildNamedNode) >= 0) {\n if (changeAccumulator != null) {\n changeAccumulator.trackChildChange(\n changeChildRemoved(windowBoundary.name, windowBoundary.node)\n );\n changeAccumulator.trackChildChange(\n changeChildAdded(childKey, childSnap)\n );\n }\n return oldEventCache\n .updateImmediateChild(childKey, childSnap)\n .updateImmediateChild(windowBoundary.name, ChildrenNode.EMPTY_NODE);\n } else {\n return snap;\n }\n } else {\n return snap;\n }\n }\n\n private withinDirectionalStart = (node: NamedNode) =>\n this.reverse_ ? this.withinEndPost(node) : this.withinStartPost(node);\n\n private withinDirectionalEnd = (node: NamedNode) =>\n this.reverse_ ? this.withinStartPost(node) : this.withinEndPost(node);\n\n private withinStartPost = (node: NamedNode) => {\n const compareRes = this.index_.compare(\n this.rangedFilter_.getStartPost(),\n node\n );\n return this.startIsInclusive_ ? compareRes <= 0 : compareRes < 0;\n };\n\n private withinEndPost = (node: NamedNode) => {\n const compareRes = this.index_.compare(\n node,\n this.rangedFilter_.getEndPost()\n );\n return this.endIsInclusive_ ? compareRes <= 0 : compareRes < 0;\n };\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert, stringify } from '@firebase/util';\n\nimport { Index } from '../snap/indexes/Index';\nimport { KEY_INDEX } from '../snap/indexes/KeyIndex';\nimport { PathIndex } from '../snap/indexes/PathIndex';\nimport { PRIORITY_INDEX, PriorityIndex } from '../snap/indexes/PriorityIndex';\nimport { VALUE_INDEX } from '../snap/indexes/ValueIndex';\nimport { MAX_NAME, MIN_NAME } from '../util/util';\n\nimport { IndexedFilter } from './filter/IndexedFilter';\nimport { LimitedFilter } from './filter/LimitedFilter';\nimport { NodeFilter } from './filter/NodeFilter';\nimport { RangedFilter } from './filter/RangedFilter';\n\n/**\n * Wire Protocol Constants\n */\nconst enum WIRE_PROTOCOL_CONSTANTS {\n INDEX_START_VALUE = 'sp',\n INDEX_START_NAME = 'sn',\n INDEX_START_IS_INCLUSIVE = 'sin',\n INDEX_END_VALUE = 'ep',\n INDEX_END_NAME = 'en',\n INDEX_END_IS_INCLUSIVE = 'ein',\n LIMIT = 'l',\n VIEW_FROM = 'vf',\n VIEW_FROM_LEFT = 'l',\n VIEW_FROM_RIGHT = 'r',\n INDEX = 'i'\n}\n\n/**\n * REST Query Constants\n */\nconst enum REST_QUERY_CONSTANTS {\n ORDER_BY = 'orderBy',\n PRIORITY_INDEX = '$priority',\n VALUE_INDEX = '$value',\n KEY_INDEX = '$key',\n START_AFTER = 'startAfter',\n START_AT = 'startAt',\n END_AT = 'endAt',\n END_BEFORE = 'endBefore',\n LIMIT_TO_FIRST = 'limitToFirst',\n LIMIT_TO_LAST = 'limitToLast'\n}\n\n/**\n * This class is an immutable-from-the-public-api struct containing a set of query parameters defining a\n * range to be returned for a particular location. It is assumed that validation of parameters is done at the\n * user-facing API level, so it is not done here.\n *\n * @internal\n */\nexport class QueryParams {\n limitSet_ = false;\n startSet_ = false;\n startNameSet_ = false;\n startAfterSet_ = false; // can only be true if startSet_ is true\n endSet_ = false;\n endNameSet_ = false;\n endBeforeSet_ = false; // can only be true if endSet_ is true\n limit_ = 0;\n viewFrom_ = '';\n indexStartValue_: unknown | null = null;\n indexStartName_ = '';\n indexEndValue_: unknown | null = null;\n indexEndName_ = '';\n index_: PriorityIndex = PRIORITY_INDEX;\n\n hasStart(): boolean {\n return this.startSet_;\n }\n\n /**\n * @returns True if it would return from left.\n */\n isViewFromLeft(): boolean {\n if (this.viewFrom_ === '') {\n // limit(), rather than limitToFirst or limitToLast was called.\n // This means that only one of startSet_ and endSet_ is true. Use them\n // to calculate which side of the view to anchor to. If neither is set,\n // anchor to the end.\n return this.startSet_;\n } else {\n return this.viewFrom_ === WIRE_PROTOCOL_CONSTANTS.VIEW_FROM_LEFT;\n }\n }\n\n /**\n * Only valid to call if hasStart() returns true\n */\n getIndexStartValue(): unknown {\n assert(this.startSet_, 'Only valid if start has been set');\n return this.indexStartValue_;\n }\n\n /**\n * Only valid to call if hasStart() returns true.\n * Returns the starting key name for the range defined by these query parameters\n */\n getIndexStartName(): string {\n assert(this.startSet_, 'Only valid if start has been set');\n if (this.startNameSet_) {\n return this.indexStartName_;\n } else {\n return MIN_NAME;\n }\n }\n\n hasEnd(): boolean {\n return this.endSet_;\n }\n\n /**\n * Only valid to call if hasEnd() returns true.\n */\n getIndexEndValue(): unknown {\n assert(this.endSet_, 'Only valid if end has been set');\n return this.indexEndValue_;\n }\n\n /**\n * Only valid to call if hasEnd() returns true.\n * Returns the end key name for the range defined by these query parameters\n */\n getIndexEndName(): string {\n assert(this.endSet_, 'Only valid if end has been set');\n if (this.endNameSet_) {\n return this.indexEndName_;\n } else {\n return MAX_NAME;\n }\n }\n\n hasLimit(): boolean {\n return this.limitSet_;\n }\n\n /**\n * @returns True if a limit has been set and it has been explicitly anchored\n */\n hasAnchoredLimit(): boolean {\n return this.limitSet_ && this.viewFrom_ !== '';\n }\n\n /**\n * Only valid to call if hasLimit() returns true\n */\n getLimit(): number {\n assert(this.limitSet_, 'Only valid if limit has been set');\n return this.limit_;\n }\n\n getIndex(): Index {\n return this.index_;\n }\n\n loadsAllData(): boolean {\n return !(this.startSet_ || this.endSet_ || this.limitSet_);\n }\n\n isDefault(): boolean {\n return this.loadsAllData() && this.index_ === PRIORITY_INDEX;\n }\n\n copy(): QueryParams {\n const copy = new QueryParams();\n copy.limitSet_ = this.limitSet_;\n copy.limit_ = this.limit_;\n copy.startSet_ = this.startSet_;\n copy.startAfterSet_ = this.startAfterSet_;\n copy.indexStartValue_ = this.indexStartValue_;\n copy.startNameSet_ = this.startNameSet_;\n copy.indexStartName_ = this.indexStartName_;\n copy.endSet_ = this.endSet_;\n copy.endBeforeSet_ = this.endBeforeSet_;\n copy.indexEndValue_ = this.indexEndValue_;\n copy.endNameSet_ = this.endNameSet_;\n copy.indexEndName_ = this.indexEndName_;\n copy.index_ = this.index_;\n copy.viewFrom_ = this.viewFrom_;\n return copy;\n }\n}\n\nexport function queryParamsGetNodeFilter(queryParams: QueryParams): NodeFilter {\n if (queryParams.loadsAllData()) {\n return new IndexedFilter(queryParams.getIndex());\n } else if (queryParams.hasLimit()) {\n return new LimitedFilter(queryParams);\n } else {\n return new RangedFilter(queryParams);\n }\n}\n\nexport function queryParamsLimit(\n queryParams: QueryParams,\n newLimit: number\n): QueryParams {\n const newParams = queryParams.copy();\n newParams.limitSet_ = true;\n newParams.limit_ = newLimit;\n newParams.viewFrom_ = '';\n return newParams;\n}\n\nexport function queryParamsLimitToFirst(\n queryParams: QueryParams,\n newLimit: number\n): QueryParams {\n const newParams = queryParams.copy();\n newParams.limitSet_ = true;\n newParams.limit_ = newLimit;\n newParams.viewFrom_ = WIRE_PROTOCOL_CONSTANTS.VIEW_FROM_LEFT;\n return newParams;\n}\n\nexport function queryParamsLimitToLast(\n queryParams: QueryParams,\n newLimit: number\n): QueryParams {\n const newParams = queryParams.copy();\n newParams.limitSet_ = true;\n newParams.limit_ = newLimit;\n newParams.viewFrom_ = WIRE_PROTOCOL_CONSTANTS.VIEW_FROM_RIGHT;\n return newParams;\n}\n\nexport function queryParamsStartAt(\n queryParams: QueryParams,\n indexValue: unknown,\n key?: string | null\n): QueryParams {\n const newParams = queryParams.copy();\n newParams.startSet_ = true;\n if (indexValue === undefined) {\n indexValue = null;\n }\n newParams.indexStartValue_ = indexValue;\n if (key != null) {\n newParams.startNameSet_ = true;\n newParams.indexStartName_ = key;\n } else {\n newParams.startNameSet_ = false;\n newParams.indexStartName_ = '';\n }\n return newParams;\n}\n\nexport function queryParamsStartAfter(\n queryParams: QueryParams,\n indexValue: unknown,\n key?: string | null\n): QueryParams {\n let params: QueryParams;\n if (queryParams.index_ === KEY_INDEX || !!key) {\n params = queryParamsStartAt(queryParams, indexValue, key);\n } else {\n params = queryParamsStartAt(queryParams, indexValue, MAX_NAME);\n }\n params.startAfterSet_ = true;\n return params;\n}\n\nexport function queryParamsEndAt(\n queryParams: QueryParams,\n indexValue: unknown,\n key?: string | null\n): QueryParams {\n const newParams = queryParams.copy();\n newParams.endSet_ = true;\n if (indexValue === undefined) {\n indexValue = null;\n }\n newParams.indexEndValue_ = indexValue;\n if (key !== undefined) {\n newParams.endNameSet_ = true;\n newParams.indexEndName_ = key;\n } else {\n newParams.endNameSet_ = false;\n newParams.indexEndName_ = '';\n }\n return newParams;\n}\n\nexport function queryParamsEndBefore(\n queryParams: QueryParams,\n indexValue: unknown,\n key?: string | null\n): QueryParams {\n let params: QueryParams;\n if (queryParams.index_ === KEY_INDEX || !!key) {\n params = queryParamsEndAt(queryParams, indexValue, key);\n } else {\n params = queryParamsEndAt(queryParams, indexValue, MIN_NAME);\n }\n params.endBeforeSet_ = true;\n return params;\n}\n\nexport function queryParamsOrderBy(\n queryParams: QueryParams,\n index: Index\n): QueryParams {\n const newParams = queryParams.copy();\n newParams.index_ = index;\n return newParams;\n}\n\n/**\n * Returns a set of REST query string parameters representing this query.\n *\n * @returns query string parameters\n */\nexport function queryParamsToRestQueryStringParameters(\n queryParams: QueryParams\n): Record<string, string | number> {\n const qs: Record<string, string | number> = {};\n\n if (queryParams.isDefault()) {\n return qs;\n }\n\n let orderBy;\n if (queryParams.index_ === PRIORITY_INDEX) {\n orderBy = REST_QUERY_CONSTANTS.PRIORITY_INDEX;\n } else if (queryParams.index_ === VALUE_INDEX) {\n orderBy = REST_QUERY_CONSTANTS.VALUE_INDEX;\n } else if (queryParams.index_ === KEY_INDEX) {\n orderBy = REST_QUERY_CONSTANTS.KEY_INDEX;\n } else {\n assert(queryParams.index_ instanceof PathIndex, 'Unrecognized index type!');\n orderBy = queryParams.index_.toString();\n }\n qs[REST_QUERY_CONSTANTS.ORDER_BY] = stringify(orderBy);\n\n if (queryParams.startSet_) {\n const startParam = queryParams.startAfterSet_\n ? REST_QUERY_CONSTANTS.START_AFTER\n : REST_QUERY_CONSTANTS.START_AT;\n qs[startParam] = stringify(queryParams.indexStartValue_);\n if (queryParams.startNameSet_) {\n qs[startParam] += ',' + stringify(queryParams.indexStartName_);\n }\n }\n\n if (queryParams.endSet_) {\n const endParam = queryParams.endBeforeSet_\n ? REST_QUERY_CONSTANTS.END_BEFORE\n : REST_QUERY_CONSTANTS.END_AT;\n qs[endParam] = stringify(queryParams.indexEndValue_);\n if (queryParams.endNameSet_) {\n qs[endParam] += ',' + stringify(queryParams.indexEndName_);\n }\n }\n\n if (queryParams.limitSet_) {\n if (queryParams.isViewFromLeft()) {\n qs[REST_QUERY_CONSTANTS.LIMIT_TO_FIRST] = queryParams.limit_;\n } else {\n qs[REST_QUERY_CONSTANTS.LIMIT_TO_LAST] = queryParams.limit_;\n }\n }\n\n return qs;\n}\n\nexport function queryParamsGetQueryObject(\n queryParams: QueryParams\n): Record<string, unknown> {\n const obj: Record<string, unknown> = {};\n if (queryParams.startSet_) {\n obj[WIRE_PROTOCOL_CONSTANTS.INDEX_START_VALUE] =\n queryParams.indexStartValue_;\n if (queryParams.startNameSet_) {\n obj[WIRE_PROTOCOL_CONSTANTS.INDEX_START_NAME] =\n queryParams.indexStartName_;\n }\n obj[WIRE_PROTOCOL_CONSTANTS.INDEX_START_IS_INCLUSIVE] =\n !queryParams.startAfterSet_;\n }\n if (queryParams.endSet_) {\n obj[WIRE_PROTOCOL_CONSTANTS.INDEX_END_VALUE] = queryParams.indexEndValue_;\n if (queryParams.endNameSet_) {\n obj[WIRE_PROTOCOL_CONSTANTS.INDEX_END_NAME] = queryParams.indexEndName_;\n }\n obj[WIRE_PROTOCOL_CONSTANTS.INDEX_END_IS_INCLUSIVE] =\n !queryParams.endBeforeSet_;\n }\n if (queryParams.limitSet_) {\n obj[WIRE_PROTOCOL_CONSTANTS.LIMIT] = queryParams.limit_;\n let viewFrom = queryParams.viewFrom_;\n if (viewFrom === '') {\n if (queryParams.isViewFromLeft()) {\n viewFrom = WIRE_PROTOCOL_CONSTANTS.VIEW_FROM_LEFT;\n } else {\n viewFrom = WIRE_PROTOCOL_CONSTANTS.VIEW_FROM_RIGHT;\n }\n }\n obj[WIRE_PROTOCOL_CONSTANTS.VIEW_FROM] = viewFrom;\n }\n // For now, priority index is the default, so we only specify if it's some other index\n if (queryParams.index_ !== PRIORITY_INDEX) {\n obj[WIRE_PROTOCOL_CONSTANTS.INDEX] = queryParams.index_.toString();\n }\n return obj;\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n assert,\n jsonEval,\n safeGet,\n querystring,\n Deferred\n} from '@firebase/util';\n\nimport { AppCheckTokenProvider } from './AppCheckTokenProvider';\nimport { AuthTokenProvider } from './AuthTokenProvider';\nimport { RepoInfo } from './RepoInfo';\nimport { ServerActions } from './ServerActions';\nimport { logWrapper, warn } from './util/util';\nimport { QueryContext } from './view/EventRegistration';\nimport { queryParamsToRestQueryStringParameters } from './view/QueryParams';\n\n/**\n * An implementation of ServerActions that communicates with the server via REST requests.\n * This is mostly useful for compatibility with crawlers, where we don't want to spin up a full\n * persistent connection (using WebSockets or long-polling)\n */\nexport class ReadonlyRestClient extends ServerActions {\n reportStats(stats: { [k: string]: unknown }): void {\n throw new Error('Method not implemented.');\n }\n\n /** @private {function(...[*])} */\n private log_: (...args: unknown[]) => void = logWrapper('p:rest:');\n\n /**\n * We don't actually need to track listens, except to prevent us calling an onComplete for a listen\n * that's been removed. :-/\n */\n private listens_: { [k: string]: object } = {};\n\n static getListenId_(query: QueryContext, tag?: number | null): string {\n if (tag !== undefined) {\n return 'tag$' + tag;\n } else {\n assert(\n query._queryParams.isDefault(),\n \"should have a tag if it's not a default query.\"\n );\n return query._path.toString();\n }\n }\n\n /**\n * @param repoInfo_ - Data about the namespace we are connecting to\n * @param onDataUpdate_ - A callback for new data from the server\n */\n constructor(\n private repoInfo_: RepoInfo,\n private onDataUpdate_: (\n a: string,\n b: unknown,\n c: boolean,\n d: number | null\n ) => void,\n private authTokenProvider_: AuthTokenProvider,\n private appCheckTokenProvider_: AppCheckTokenProvider\n ) {\n super();\n }\n\n /** @inheritDoc */\n listen(\n query: QueryContext,\n currentHashFn: () => string,\n tag: number | null,\n onComplete: (a: string, b: unknown) => void\n ) {\n const pathString = query._path.toString();\n this.log_('Listen called for ' + pathString + ' ' + query._queryIdentifier);\n\n // Mark this listener so we can tell if it's removed.\n const listenId = ReadonlyRestClient.getListenId_(query, tag);\n const thisListen = {};\n this.listens_[listenId] = thisListen;\n\n const queryStringParameters = queryParamsToRestQueryStringParameters(\n query._queryParams\n );\n\n this.restRequest_(\n pathString + '.json',\n queryStringParameters,\n (error, result) => {\n let data = result;\n\n if (error === 404) {\n data = null;\n error = null;\n }\n\n if (error === null) {\n this.onDataUpdate_(pathString, data, /*isMerge=*/ false, tag);\n }\n\n if (safeGet(this.listens_, listenId) === thisListen) {\n let status;\n if (!error) {\n status = 'ok';\n } else if (error === 401) {\n status = 'permission_denied';\n } else {\n status = 'rest_error:' + error;\n }\n\n onComplete(status, null);\n }\n }\n );\n }\n\n /** @inheritDoc */\n unlisten(query: QueryContext, tag: number | null) {\n const listenId = ReadonlyRestClient.getListenId_(query, tag);\n delete this.listens_[listenId];\n }\n\n get(query: QueryContext): Promise<string> {\n const queryStringParameters = queryParamsToRestQueryStringParameters(\n query._queryParams\n );\n\n const pathString = query._path.toString();\n\n const deferred = new Deferred<string>();\n\n this.restRequest_(\n pathString + '.json',\n queryStringParameters,\n (error, result) => {\n let data = result;\n\n if (error === 404) {\n data = null;\n error = null;\n }\n\n if (error === null) {\n this.onDataUpdate_(\n pathString,\n data,\n /*isMerge=*/ false,\n /*tag=*/ null\n );\n deferred.resolve(data as string);\n } else {\n deferred.reject(new Error(data as string));\n }\n }\n );\n return deferred.promise;\n }\n\n /** @inheritDoc */\n refreshAuthToken(token: string) {\n // no-op since we just always call getToken.\n }\n\n /**\n * Performs a REST request to the given path, with the provided query string parameters,\n * and any auth credentials we have.\n */\n private restRequest_(\n pathString: string,\n queryStringParameters: { [k: string]: string | number } = {},\n callback: ((a: number | null, b?: unknown) => void) | null\n ) {\n queryStringParameters['format'] = 'export';\n\n return Promise.all([\n this.authTokenProvider_.getToken(/*forceRefresh=*/ false),\n this.appCheckTokenProvider_.getToken(/*forceRefresh=*/ false)\n ]).then(([authToken, appCheckToken]) => {\n if (authToken && authToken.accessToken) {\n queryStringParameters['auth'] = authToken.accessToken;\n }\n if (appCheckToken && appCheckToken.token) {\n queryStringParameters['ac'] = appCheckToken.token;\n }\n\n const url =\n (this.repoInfo_.secure ? 'https://' : 'http://') +\n this.repoInfo_.host +\n pathString +\n '?' +\n 'ns=' +\n this.repoInfo_.namespace +\n querystring(queryStringParameters);\n\n this.log_('Sending REST request for ' + url);\n const xhr = new XMLHttpRequest();\n xhr.onreadystatechange = () => {\n if (callback && xhr.readyState === 4) {\n this.log_(\n 'REST Response for ' + url + ' received. status:',\n xhr.status,\n 'response:',\n xhr.responseText\n );\n let res = null;\n if (xhr.status >= 200 && xhr.status < 300) {\n try {\n res = jsonEval(xhr.responseText);\n } catch (e) {\n warn(\n 'Failed to parse JSON response for ' +\n url +\n ': ' +\n xhr.responseText\n );\n }\n callback(null, res);\n } else {\n // 401 and 404 are expected.\n if (xhr.status !== 401 && xhr.status !== 404) {\n warn(\n 'Got unsuccessful REST response for ' +\n url +\n ' Status: ' +\n xhr.status\n );\n }\n callback(xhr.status);\n }\n callback = null;\n }\n };\n\n xhr.open('GET', url, /*asynchronous=*/ true);\n xhr.send();\n });\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/**\n * Returns a querystring-formatted string (e.g. &arg=val&arg2=val2) from a\n * params object (e.g. {arg: 'val', arg2: 'val2'})\n * Note: You must prepend it with ? when adding it to a URL.\n */\nexport function querystring(querystringParams: {\n [key: string]: string | number;\n}): string {\n const params = [];\n for (const [key, value] of Object.entries(querystringParams)) {\n if (Array.isArray(value)) {\n value.forEach(arrayVal => {\n params.push(\n encodeURIComponent(key) + '=' + encodeURIComponent(arrayVal)\n );\n });\n } else {\n params.push(encodeURIComponent(key) + '=' + encodeURIComponent(value));\n }\n }\n return params.length ? '&' + params.join('&') : '';\n}\n\n/**\n * Decodes a querystring (e.g. ?arg=val&arg2=val2) into a params object\n * (e.g. {arg: 'val', arg2: 'val2'})\n */\nexport function querystringDecode(querystring: string): Record<string, string> {\n const obj: Record<string, string> = {};\n const tokens = querystring.replace(/^\\?/, '').split('&');\n\n tokens.forEach(token => {\n if (token) {\n const [key, value] = token.split('=');\n obj[decodeURIComponent(key)] = decodeURIComponent(value);\n }\n });\n return obj;\n}\n\n/**\n * Extract the query string part of a URL, including the leading question mark (if present).\n */\nexport function extractQuerystring(url: string): string {\n const queryStart = url.indexOf('?');\n if (!queryStart) {\n return '';\n }\n const fragmentStart = url.indexOf('#', queryStart);\n return url.substring(\n queryStart,\n fragmentStart > 0 ? fragmentStart : undefined\n );\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ChildrenNode } from './snap/ChildrenNode';\nimport { Node } from './snap/Node';\nimport { Path } from './util/Path';\n\n/**\n * Mutable object which basically just stores a reference to the \"latest\" immutable snapshot.\n */\nexport class SnapshotHolder {\n private rootNode_: Node = ChildrenNode.EMPTY_NODE;\n\n getNode(path: Path): Node {\n return this.rootNode_.getChild(path);\n }\n\n updateSnapshot(path: Path, newSnapshotNode: Node) {\n this.rootNode_ = this.rootNode_.updateChild(path, newSnapshotNode);\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { PRIORITY_INDEX } from './snap/indexes/PriorityIndex';\nimport { Node } from './snap/Node';\nimport { Path, pathGetFront, pathIsEmpty, pathPopFront } from './util/Path';\n\n/**\n * Helper class to store a sparse set of snapshots.\n */\nexport interface SparseSnapshotTree {\n value: Node | null;\n readonly children: Map<string, SparseSnapshotTree>;\n}\n\nexport function newSparseSnapshotTree(): SparseSnapshotTree {\n return {\n value: null,\n children: new Map()\n };\n}\n\n/**\n * Gets the node stored at the given path if one exists.\n * Only seems to be used in tests.\n *\n * @param path - Path to look up snapshot for.\n * @returns The retrieved node, or null.\n */\nexport function sparseSnapshotTreeFind(\n sparseSnapshotTree: SparseSnapshotTree,\n path: Path\n): Node | null {\n if (sparseSnapshotTree.value != null) {\n return sparseSnapshotTree.value.getChild(path);\n } else if (!pathIsEmpty(path) && sparseSnapshotTree.children.size > 0) {\n const childKey = pathGetFront(path);\n path = pathPopFront(path);\n if (sparseSnapshotTree.children.has(childKey)) {\n const childTree = sparseSnapshotTree.children.get(childKey);\n return sparseSnapshotTreeFind(childTree, path);\n } else {\n return null;\n }\n } else {\n return null;\n }\n}\n\n/**\n * Stores the given node at the specified path. If there is already a node\n * at a shallower path, it merges the new data into that snapshot node.\n *\n * @param path - Path to look up snapshot for.\n * @param data - The new data, or null.\n */\nexport function sparseSnapshotTreeRemember(\n sparseSnapshotTree: SparseSnapshotTree,\n path: Path,\n data: Node\n): void {\n if (pathIsEmpty(path)) {\n sparseSnapshotTree.value = data;\n sparseSnapshotTree.children.clear();\n } else if (sparseSnapshotTree.value !== null) {\n sparseSnapshotTree.value = sparseSnapshotTree.value.updateChild(path, data);\n } else {\n const childKey = pathGetFront(path);\n if (!sparseSnapshotTree.children.has(childKey)) {\n sparseSnapshotTree.children.set(childKey, newSparseSnapshotTree());\n }\n\n const child = sparseSnapshotTree.children.get(childKey);\n path = pathPopFront(path);\n sparseSnapshotTreeRemember(child, path, data);\n }\n}\n\n/**\n * Purge the data at path from the cache.\n *\n * @param path - Path to look up snapshot for.\n * @returns True if this node should now be removed.\n */\nexport function sparseSnapshotTreeForget(\n sparseSnapshotTree: SparseSnapshotTree,\n path: Path\n): boolean {\n if (pathIsEmpty(path)) {\n sparseSnapshotTree.value = null;\n sparseSnapshotTree.children.clear();\n return true;\n } else {\n if (sparseSnapshotTree.value !== null) {\n if (sparseSnapshotTree.value.isLeafNode()) {\n // We're trying to forget a node that doesn't exist\n return false;\n } else {\n const value = sparseSnapshotTree.value;\n sparseSnapshotTree.value = null;\n\n value.forEachChild(PRIORITY_INDEX, (key, tree) => {\n sparseSnapshotTreeRemember(sparseSnapshotTree, new Path(key), tree);\n });\n\n return sparseSnapshotTreeForget(sparseSnapshotTree, path);\n }\n } else if (sparseSnapshotTree.children.size > 0) {\n const childKey = pathGetFront(path);\n path = pathPopFront(path);\n if (sparseSnapshotTree.children.has(childKey)) {\n const safeToRemove = sparseSnapshotTreeForget(\n sparseSnapshotTree.children.get(childKey),\n path\n );\n if (safeToRemove) {\n sparseSnapshotTree.children.delete(childKey);\n }\n }\n\n return sparseSnapshotTree.children.size === 0;\n } else {\n return true;\n }\n }\n}\n\n/**\n * Recursively iterates through all of the stored tree and calls the\n * callback on each one.\n *\n * @param prefixPath - Path to look up node for.\n * @param func - The function to invoke for each tree.\n */\nexport function sparseSnapshotTreeForEachTree(\n sparseSnapshotTree: SparseSnapshotTree,\n prefixPath: Path,\n func: (a: Path, b: Node) => unknown\n): void {\n if (sparseSnapshotTree.value !== null) {\n func(prefixPath, sparseSnapshotTree.value);\n } else {\n sparseSnapshotTreeForEachChild(sparseSnapshotTree, (key, tree) => {\n const path = new Path(prefixPath.toString() + '/' + key);\n sparseSnapshotTreeForEachTree(tree, path, func);\n });\n }\n}\n\n/**\n * Iterates through each immediate child and triggers the callback.\n * Only seems to be used in tests.\n *\n * @param func - The function to invoke for each child.\n */\nexport function sparseSnapshotTreeForEachChild(\n sparseSnapshotTree: SparseSnapshotTree,\n func: (a: string, b: SparseSnapshotTree) => void\n): void {\n sparseSnapshotTree.children.forEach((tree, key) => {\n func(key, tree);\n });\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { each } from '../util/util';\n\nimport { StatsCollection } from './StatsCollection';\n\n/**\n * Returns the delta from the previous call to get stats.\n *\n * @param collection_ - The collection to \"listen\" to.\n */\nexport class StatsListener {\n private last_: { [k: string]: number } | null = null;\n\n constructor(private collection_: StatsCollection) {}\n\n get(): { [k: string]: number } {\n const newStats = this.collection_.get();\n\n const delta = { ...newStats };\n if (this.last_) {\n each(this.last_, (stat: string, value: number) => {\n delta[stat] = delta[stat] - value;\n });\n }\n this.last_ = newStats;\n\n return delta;\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { contains } from '@firebase/util';\n\nimport { ServerActions } from '../ServerActions';\nimport { setTimeoutNonBlocking, each } from '../util/util';\n\nimport { StatsCollection } from './StatsCollection';\nimport { StatsListener } from './StatsListener';\n\n// Assuming some apps may have a short amount of time on page, and a bulk of firebase operations probably\n// happen on page load, we try to report our first set of stats pretty quickly, but we wait at least 10\n// seconds to try to ensure the Firebase connection is established / settled.\nconst FIRST_STATS_MIN_TIME = 10 * 1000;\nconst FIRST_STATS_MAX_TIME = 30 * 1000;\n\n// We'll continue to report stats on average every 5 minutes.\nconst REPORT_STATS_INTERVAL = 5 * 60 * 1000;\n\nexport class StatsReporter {\n private statsListener_: StatsListener;\n statsToReport_: { [k: string]: boolean } = {};\n\n constructor(collection: StatsCollection, private server_: ServerActions) {\n this.statsListener_ = new StatsListener(collection);\n\n const timeout =\n FIRST_STATS_MIN_TIME +\n (FIRST_STATS_MAX_TIME - FIRST_STATS_MIN_TIME) * Math.random();\n setTimeoutNonBlocking(this.reportStats_.bind(this), Math.floor(timeout));\n }\n\n private reportStats_() {\n const stats = this.statsListener_.get();\n const reportedStats: typeof stats = {};\n let haveStatsToReport = false;\n\n each(stats, (stat: string, value: number) => {\n if (value > 0 && contains(this.statsToReport_, stat)) {\n reportedStats[stat] = value;\n haveStatsToReport = true;\n }\n });\n\n if (haveStatsToReport) {\n this.server_.reportStats(reportedStats);\n }\n\n // queue our next run.\n setTimeoutNonBlocking(\n this.reportStats_.bind(this),\n Math.floor(Math.random() * 2 * REPORT_STATS_INTERVAL)\n );\n }\n}\n\nexport function statsReporterIncludeStat(\n reporter: StatsReporter,\n stat: string\n) {\n reporter.statsToReport_[stat] = true;\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\nimport { ImmutableTree } from '../util/ImmutableTree';\nimport {\n newEmptyPath,\n Path,\n pathGetFront,\n pathIsEmpty,\n pathPopFront\n} from '../util/Path';\n\nimport { newOperationSourceUser, Operation, OperationType } from './Operation';\n\nexport class AckUserWrite implements Operation {\n /** @inheritDoc */\n type = OperationType.ACK_USER_WRITE;\n\n /** @inheritDoc */\n source = newOperationSourceUser();\n\n /**\n * @param affectedTree - A tree containing true for each affected path. Affected paths can't overlap.\n */\n constructor(\n /** @inheritDoc */ public path: Path,\n /** @inheritDoc */ public affectedTree: ImmutableTree<boolean>,\n /** @inheritDoc */ public revert: boolean\n ) {}\n operationForChild(childName: string): AckUserWrite {\n if (!pathIsEmpty(this.path)) {\n assert(\n pathGetFront(this.path) === childName,\n 'operationForChild called for unrelated child.'\n );\n return new AckUserWrite(\n pathPopFront(this.path),\n this.affectedTree,\n this.revert\n );\n } else if (this.affectedTree.value != null) {\n assert(\n this.affectedTree.children.isEmpty(),\n 'affectedTree should not have overlapping affected paths.'\n );\n // All child locations are affected as well; just return same operation.\n return this;\n } else {\n const childTree = this.affectedTree.subtree(new Path(childName));\n return new AckUserWrite(newEmptyPath(), childTree, this.revert);\n }\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { newEmptyPath, Path, pathIsEmpty, pathPopFront } from '../util/Path';\n\nimport { Operation, OperationSource, OperationType } from './Operation';\n\nexport class ListenComplete implements Operation {\n /** @inheritDoc */\n type = OperationType.LISTEN_COMPLETE;\n\n constructor(public source: OperationSource, public path: Path) {}\n\n operationForChild(childName: string): ListenComplete {\n if (pathIsEmpty(this.path)) {\n return new ListenComplete(this.source, newEmptyPath());\n } else {\n return new ListenComplete(this.source, pathPopFront(this.path));\n }\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Node } from '../snap/Node';\nimport { newEmptyPath, Path, pathIsEmpty, pathPopFront } from '../util/Path';\n\nimport { Operation, OperationSource, OperationType } from './Operation';\n\nexport class Overwrite implements Operation {\n /** @inheritDoc */\n type = OperationType.OVERWRITE;\n\n constructor(\n public source: OperationSource,\n public path: Path,\n public snap: Node\n ) {}\n\n operationForChild(childName: string): Overwrite {\n if (pathIsEmpty(this.path)) {\n return new Overwrite(\n this.source,\n newEmptyPath(),\n this.snap.getImmediateChild(childName)\n );\n } else {\n return new Overwrite(this.source, pathPopFront(this.path), this.snap);\n }\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\nimport { Node } from '../snap/Node';\nimport { ImmutableTree } from '../util/ImmutableTree';\nimport {\n newEmptyPath,\n Path,\n pathGetFront,\n pathIsEmpty,\n pathPopFront\n} from '../util/Path';\n\nimport { Operation, OperationSource, OperationType } from './Operation';\nimport { Overwrite } from './Overwrite';\n\nexport class Merge implements Operation {\n /** @inheritDoc */\n type = OperationType.MERGE;\n\n constructor(\n /** @inheritDoc */ public source: OperationSource,\n /** @inheritDoc */ public path: Path,\n /** @inheritDoc */ public children: ImmutableTree<Node>\n ) {}\n operationForChild(childName: string): Operation {\n if (pathIsEmpty(this.path)) {\n const childTree = this.children.subtree(new Path(childName));\n if (childTree.isEmpty()) {\n // This child is unaffected\n return null;\n } else if (childTree.value) {\n // We have a snapshot for the child in question. This becomes an overwrite of the child.\n return new Overwrite(this.source, newEmptyPath(), childTree.value);\n } else {\n // This is a merge at a deeper level\n return new Merge(this.source, newEmptyPath(), childTree);\n }\n } else {\n assert(\n pathGetFront(this.path) === childName,\n \"Can't get a merge for a child not on the path of the operation\"\n );\n return new Merge(this.source, pathPopFront(this.path), this.children);\n }\n }\n toString(): string {\n return (\n 'Operation(' +\n this.path +\n ': ' +\n this.source.toString() +\n ' merge: ' +\n this.children.toString() +\n ')'\n );\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Node } from '../snap/Node';\nimport { Path, pathGetFront, pathIsEmpty } from '../util/Path';\n\n/**\n * A cache node only stores complete children. Additionally it holds a flag whether the node can be considered fully\n * initialized in the sense that we know at one point in time this represented a valid state of the world, e.g.\n * initialized with data from the server, or a complete overwrite by the client. The filtered flag also tracks\n * whether a node potentially had children removed due to a filter.\n */\nexport class CacheNode {\n constructor(\n private node_: Node,\n private fullyInitialized_: boolean,\n private filtered_: boolean\n ) {}\n\n /**\n * Returns whether this node was fully initialized with either server data or a complete overwrite by the client\n */\n isFullyInitialized(): boolean {\n return this.fullyInitialized_;\n }\n\n /**\n * Returns whether this node is potentially missing children due to a filter applied to the node\n */\n isFiltered(): boolean {\n return this.filtered_;\n }\n\n isCompleteForPath(path: Path): boolean {\n if (pathIsEmpty(path)) {\n return this.isFullyInitialized() && !this.filtered_;\n }\n\n const childKey = pathGetFront(path);\n return this.isCompleteForChild(childKey);\n }\n\n isCompleteForChild(key: string): boolean {\n return (\n (this.isFullyInitialized() && !this.filtered_) || this.node_.hasChild(key)\n );\n }\n\n getNode(): Node {\n return this.node_;\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assertionError } from '@firebase/util';\n\nimport { Index } from '../snap/indexes/Index';\nimport { NamedNode, Node } from '../snap/Node';\n\nimport { Change, ChangeType, changeChildMoved } from './Change';\nimport { Event } from './Event';\nimport { EventRegistration, QueryContext } from './EventRegistration';\n\n/**\n * An EventGenerator is used to convert \"raw\" changes (Change) as computed by the\n * CacheDiffer into actual events (Event) that can be raised. See generateEventsForChanges()\n * for details.\n *\n */\nexport class EventGenerator {\n index_: Index;\n\n constructor(public query_: QueryContext) {\n this.index_ = this.query_._queryParams.getIndex();\n }\n}\n\n/**\n * Given a set of raw changes (no moved events and prevName not specified yet), and a set of\n * EventRegistrations that should be notified of these changes, generate the actual events to be raised.\n *\n * Notes:\n * - child_moved events will be synthesized at this time for any child_changed events that affect\n * our index.\n * - prevName will be calculated based on the index ordering.\n */\nexport function eventGeneratorGenerateEventsForChanges(\n eventGenerator: EventGenerator,\n changes: Change[],\n eventCache: Node,\n eventRegistrations: EventRegistration[]\n): Event[] {\n const events: Event[] = [];\n const moves: Change[] = [];\n\n changes.forEach(change => {\n if (\n change.type === ChangeType.CHILD_CHANGED &&\n eventGenerator.index_.indexedValueChanged(\n change.oldSnap as Node,\n change.snapshotNode\n )\n ) {\n moves.push(changeChildMoved(change.childName, change.snapshotNode));\n }\n });\n\n eventGeneratorGenerateEventsForType(\n eventGenerator,\n events,\n ChangeType.CHILD_REMOVED,\n changes,\n eventRegistrations,\n eventCache\n );\n eventGeneratorGenerateEventsForType(\n eventGenerator,\n events,\n ChangeType.CHILD_ADDED,\n changes,\n eventRegistrations,\n eventCache\n );\n eventGeneratorGenerateEventsForType(\n eventGenerator,\n events,\n ChangeType.CHILD_MOVED,\n moves,\n eventRegistrations,\n eventCache\n );\n eventGeneratorGenerateEventsForType(\n eventGenerator,\n events,\n ChangeType.CHILD_CHANGED,\n changes,\n eventRegistrations,\n eventCache\n );\n eventGeneratorGenerateEventsForType(\n eventGenerator,\n events,\n ChangeType.VALUE,\n changes,\n eventRegistrations,\n eventCache\n );\n\n return events;\n}\n\n/**\n * Given changes of a single change type, generate the corresponding events.\n */\nfunction eventGeneratorGenerateEventsForType(\n eventGenerator: EventGenerator,\n events: Event[],\n eventType: string,\n changes: Change[],\n registrations: EventRegistration[],\n eventCache: Node\n) {\n const filteredChanges = changes.filter(change => change.type === eventType);\n\n filteredChanges.sort((a, b) =>\n eventGeneratorCompareChanges(eventGenerator, a, b)\n );\n filteredChanges.forEach(change => {\n const materializedChange = eventGeneratorMaterializeSingleChange(\n eventGenerator,\n change,\n eventCache\n );\n registrations.forEach(registration => {\n if (registration.respondsTo(change.type)) {\n events.push(\n registration.createEvent(materializedChange, eventGenerator.query_)\n );\n }\n });\n });\n}\n\nfunction eventGeneratorMaterializeSingleChange(\n eventGenerator: EventGenerator,\n change: Change,\n eventCache: Node\n): Change {\n if (change.type === 'value' || change.type === 'child_removed') {\n return change;\n } else {\n change.prevName = eventCache.getPredecessorChildName(\n change.childName,\n change.snapshotNode,\n eventGenerator.index_\n );\n return change;\n }\n}\n\nfunction eventGeneratorCompareChanges(\n eventGenerator: EventGenerator,\n a: Change,\n b: Change\n) {\n if (a.childName == null || b.childName == null) {\n throw assertionError('Should only compare child_ events.');\n }\n const aWrapped = new NamedNode(a.childName, a.snapshotNode);\n const bWrapped = new NamedNode(b.childName, b.snapshotNode);\n return eventGenerator.index_.compare(aWrapped, bWrapped);\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Node } from '../snap/Node';\n\nimport { CacheNode } from './CacheNode';\n\n/**\n * Stores the data we have cached for a view.\n *\n * serverSnap is the cached server data, eventSnap is the cached event data (server data plus any local writes).\n */\nexport interface ViewCache {\n readonly eventCache: CacheNode;\n readonly serverCache: CacheNode;\n}\n\nexport function newViewCache(\n eventCache: CacheNode,\n serverCache: CacheNode\n): ViewCache {\n return { eventCache, serverCache };\n}\n\nexport function viewCacheUpdateEventSnap(\n viewCache: ViewCache,\n eventSnap: Node,\n complete: boolean,\n filtered: boolean\n): ViewCache {\n return newViewCache(\n new CacheNode(eventSnap, complete, filtered),\n viewCache.serverCache\n );\n}\n\nexport function viewCacheUpdateServerSnap(\n viewCache: ViewCache,\n serverSnap: Node,\n complete: boolean,\n filtered: boolean\n): ViewCache {\n return newViewCache(\n viewCache.eventCache,\n new CacheNode(serverSnap, complete, filtered)\n );\n}\n\nexport function viewCacheGetCompleteEventSnap(\n viewCache: ViewCache\n): Node | null {\n return viewCache.eventCache.isFullyInitialized()\n ? viewCache.eventCache.getNode()\n : null;\n}\n\nexport function viewCacheGetCompleteServerSnap(\n viewCache: ViewCache\n): Node | null {\n return viewCache.serverCache.isFullyInitialized()\n ? viewCache.serverCache.getNode()\n : null;\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n newEmptyPath,\n Path,\n pathChild,\n pathGetFront,\n pathIsEmpty,\n pathPopFront\n} from './Path';\nimport { SortedMap } from './SortedMap';\nimport { each, stringCompare } from './util';\n\nlet emptyChildrenSingleton: SortedMap<string, ImmutableTree<null>>;\n\n/**\n * Singleton empty children collection.\n *\n */\nconst EmptyChildren = (): SortedMap<string, ImmutableTree<null>> => {\n if (!emptyChildrenSingleton) {\n emptyChildrenSingleton = new SortedMap<string, ImmutableTree<null>>(\n stringCompare\n );\n }\n return emptyChildrenSingleton;\n};\n\n/**\n * A tree with immutable elements.\n */\nexport class ImmutableTree<T> {\n static fromObject<T>(obj: { [k: string]: T }): ImmutableTree<T> {\n let tree: ImmutableTree<T> = new ImmutableTree<T>(null);\n each(obj, (childPath: string, childSnap: T) => {\n tree = tree.set(new Path(childPath), childSnap);\n });\n return tree;\n }\n\n constructor(\n public readonly value: T | null,\n public readonly children: SortedMap<\n string,\n ImmutableTree<T>\n > = EmptyChildren()\n ) {}\n\n /**\n * True if the value is empty and there are no children\n */\n isEmpty(): boolean {\n return this.value === null && this.children.isEmpty();\n }\n\n /**\n * Given a path and predicate, return the first node and the path to that node\n * where the predicate returns true.\n *\n * TODO Do a perf test -- If we're creating a bunch of `{path: value:}`\n * objects on the way back out, it may be better to pass down a pathSoFar obj.\n *\n * @param relativePath - The remainder of the path\n * @param predicate - The predicate to satisfy to return a node\n */\n findRootMostMatchingPathAndValue(\n relativePath: Path,\n predicate: (a: T) => boolean\n ): { path: Path; value: T } | null {\n if (this.value != null && predicate(this.value)) {\n return { path: newEmptyPath(), value: this.value };\n } else {\n if (pathIsEmpty(relativePath)) {\n return null;\n } else {\n const front = pathGetFront(relativePath);\n const child = this.children.get(front);\n if (child !== null) {\n const childExistingPathAndValue =\n child.findRootMostMatchingPathAndValue(\n pathPopFront(relativePath),\n predicate\n );\n if (childExistingPathAndValue != null) {\n const fullPath = pathChild(\n new Path(front),\n childExistingPathAndValue.path\n );\n return { path: fullPath, value: childExistingPathAndValue.value };\n } else {\n return null;\n }\n } else {\n return null;\n }\n }\n }\n }\n\n /**\n * Find, if it exists, the shortest subpath of the given path that points a defined\n * value in the tree\n */\n findRootMostValueAndPath(\n relativePath: Path\n ): { path: Path; value: T } | null {\n return this.findRootMostMatchingPathAndValue(relativePath, () => true);\n }\n\n /**\n * @returns The subtree at the given path\n */\n subtree(relativePath: Path): ImmutableTree<T> {\n if (pathIsEmpty(relativePath)) {\n return this;\n } else {\n const front = pathGetFront(relativePath);\n const childTree = this.children.get(front);\n if (childTree !== null) {\n return childTree.subtree(pathPopFront(relativePath));\n } else {\n return new ImmutableTree<T>(null);\n }\n }\n }\n\n /**\n * Sets a value at the specified path.\n *\n * @param relativePath - Path to set value at.\n * @param toSet - Value to set.\n * @returns Resulting tree.\n */\n set(relativePath: Path, toSet: T | null): ImmutableTree<T> {\n if (pathIsEmpty(relativePath)) {\n return new ImmutableTree(toSet, this.children);\n } else {\n const front = pathGetFront(relativePath);\n const child = this.children.get(front) || new ImmutableTree<T>(null);\n const newChild = child.set(pathPopFront(relativePath), toSet);\n const newChildren = this.children.insert(front, newChild);\n return new ImmutableTree(this.value, newChildren);\n }\n }\n\n /**\n * Removes the value at the specified path.\n *\n * @param relativePath - Path to value to remove.\n * @returns Resulting tree.\n */\n remove(relativePath: Path): ImmutableTree<T> {\n if (pathIsEmpty(relativePath)) {\n if (this.children.isEmpty()) {\n return new ImmutableTree<T>(null);\n } else {\n return new ImmutableTree(null, this.children);\n }\n } else {\n const front = pathGetFront(relativePath);\n const child = this.children.get(front);\n if (child) {\n const newChild = child.remove(pathPopFront(relativePath));\n let newChildren;\n if (newChild.isEmpty()) {\n newChildren = this.children.remove(front);\n } else {\n newChildren = this.children.insert(front, newChild);\n }\n if (this.value === null && newChildren.isEmpty()) {\n return new ImmutableTree<T>(null);\n } else {\n return new ImmutableTree(this.value, newChildren);\n }\n } else {\n return this;\n }\n }\n }\n\n /**\n * Gets a value from the tree.\n *\n * @param relativePath - Path to get value for.\n * @returns Value at path, or null.\n */\n get(relativePath: Path): T | null {\n if (pathIsEmpty(relativePath)) {\n return this.value;\n } else {\n const front = pathGetFront(relativePath);\n const child = this.children.get(front);\n if (child) {\n return child.get(pathPopFront(relativePath));\n } else {\n return null;\n }\n }\n }\n\n /**\n * Replace the subtree at the specified path with the given new tree.\n *\n * @param relativePath - Path to replace subtree for.\n * @param newTree - New tree.\n * @returns Resulting tree.\n */\n setTree(relativePath: Path, newTree: ImmutableTree<T>): ImmutableTree<T> {\n if (pathIsEmpty(relativePath)) {\n return newTree;\n } else {\n const front = pathGetFront(relativePath);\n const child = this.children.get(front) || new ImmutableTree<T>(null);\n const newChild = child.setTree(pathPopFront(relativePath), newTree);\n let newChildren;\n if (newChild.isEmpty()) {\n newChildren = this.children.remove(front);\n } else {\n newChildren = this.children.insert(front, newChild);\n }\n return new ImmutableTree(this.value, newChildren);\n }\n }\n\n /**\n * Performs a depth first fold on this tree. Transforms a tree into a single\n * value, given a function that operates on the path to a node, an optional\n * current value, and a map of child names to folded subtrees\n */\n fold<V>(fn: (path: Path, value: T, children: { [k: string]: V }) => V): V {\n return this.fold_(newEmptyPath(), fn);\n }\n\n /**\n * Recursive helper for public-facing fold() method\n */\n private fold_<V>(\n pathSoFar: Path,\n fn: (path: Path, value: T | null, children: { [k: string]: V }) => V\n ): V {\n const accum: { [k: string]: V } = {};\n this.children.inorderTraversal(\n (childKey: string, childTree: ImmutableTree<T>) => {\n accum[childKey] = childTree.fold_(pathChild(pathSoFar, childKey), fn);\n }\n );\n return fn(pathSoFar, this.value, accum);\n }\n\n /**\n * Find the first matching value on the given path. Return the result of applying f to it.\n */\n findOnPath<V>(path: Path, f: (path: Path, value: T) => V | null): V | null {\n return this.findOnPath_(path, newEmptyPath(), f);\n }\n\n private findOnPath_<V>(\n pathToFollow: Path,\n pathSoFar: Path,\n f: (path: Path, value: T) => V | null\n ): V | null {\n const result = this.value ? f(pathSoFar, this.value) : false;\n if (result) {\n return result;\n } else {\n if (pathIsEmpty(pathToFollow)) {\n return null;\n } else {\n const front = pathGetFront(pathToFollow)!;\n const nextChild = this.children.get(front);\n if (nextChild) {\n return nextChild.findOnPath_(\n pathPopFront(pathToFollow),\n pathChild(pathSoFar, front),\n f\n );\n } else {\n return null;\n }\n }\n }\n }\n\n foreachOnPath(\n path: Path,\n f: (path: Path, value: T) => void\n ): ImmutableTree<T> {\n return this.foreachOnPath_(path, newEmptyPath(), f);\n }\n\n private foreachOnPath_(\n pathToFollow: Path,\n currentRelativePath: Path,\n f: (path: Path, value: T) => void\n ): ImmutableTree<T> {\n if (pathIsEmpty(pathToFollow)) {\n return this;\n } else {\n if (this.value) {\n f(currentRelativePath, this.value);\n }\n const front = pathGetFront(pathToFollow);\n const nextChild = this.children.get(front);\n if (nextChild) {\n return nextChild.foreachOnPath_(\n pathPopFront(pathToFollow),\n pathChild(currentRelativePath, front),\n f\n );\n } else {\n return new ImmutableTree<T>(null);\n }\n }\n }\n\n /**\n * Calls the given function for each node in the tree that has a value.\n *\n * @param f - A function to be called with the path from the root of the tree to\n * a node, and the value at that node. Called in depth-first order.\n */\n foreach(f: (path: Path, value: T) => void) {\n this.foreach_(newEmptyPath(), f);\n }\n\n private foreach_(\n currentRelativePath: Path,\n f: (path: Path, value: T) => void\n ) {\n this.children.inorderTraversal((childName, childTree) => {\n childTree.foreach_(pathChild(currentRelativePath, childName), f);\n });\n if (this.value) {\n f(currentRelativePath, this.value);\n }\n }\n\n foreachChild(f: (name: string, value: T) => void) {\n this.children.inorderTraversal(\n (childName: string, childTree: ImmutableTree<T>) => {\n if (childTree.value) {\n f(childName, childTree.value);\n }\n }\n );\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\nimport { ChildrenNode } from './snap/ChildrenNode';\nimport { PRIORITY_INDEX } from './snap/indexes/PriorityIndex';\nimport { NamedNode, Node } from './snap/Node';\nimport { ImmutableTree } from './util/ImmutableTree';\nimport {\n newEmptyPath,\n newRelativePath,\n Path,\n pathChild,\n pathIsEmpty\n} from './util/Path';\nimport { each } from './util/util';\n\n/**\n * This class holds a collection of writes that can be applied to nodes in unison. It abstracts away the logic with\n * dealing with priority writes and multiple nested writes. At any given path there is only allowed to be one write\n * modifying that path. Any write to an existing path or shadowing an existing path will modify that existing write\n * to reflect the write added.\n */\nexport class CompoundWrite {\n constructor(public writeTree_: ImmutableTree<Node>) {}\n\n static empty(): CompoundWrite {\n return new CompoundWrite(new ImmutableTree(null));\n }\n}\n\nexport function compoundWriteAddWrite(\n compoundWrite: CompoundWrite,\n path: Path,\n node: Node\n): CompoundWrite {\n if (pathIsEmpty(path)) {\n return new CompoundWrite(new ImmutableTree(node));\n } else {\n const rootmost = compoundWrite.writeTree_.findRootMostValueAndPath(path);\n if (rootmost != null) {\n const rootMostPath = rootmost.path;\n let value = rootmost.value;\n const relativePath = newRelativePath(rootMostPath, path);\n value = value.updateChild(relativePath, node);\n return new CompoundWrite(\n compoundWrite.writeTree_.set(rootMostPath, value)\n );\n } else {\n const subtree = new ImmutableTree(node);\n const newWriteTree = compoundWrite.writeTree_.setTree(path, subtree);\n return new CompoundWrite(newWriteTree);\n }\n }\n}\n\nexport function compoundWriteAddWrites(\n compoundWrite: CompoundWrite,\n path: Path,\n updates: { [name: string]: Node }\n): CompoundWrite {\n let newWrite = compoundWrite;\n each(updates, (childKey: string, node: Node) => {\n newWrite = compoundWriteAddWrite(newWrite, pathChild(path, childKey), node);\n });\n return newWrite;\n}\n\n/**\n * Will remove a write at the given path and deeper paths. This will <em>not</em> modify a write at a higher\n * location, which must be removed by calling this method with that path.\n *\n * @param compoundWrite - The CompoundWrite to remove.\n * @param path - The path at which a write and all deeper writes should be removed\n * @returns The new CompoundWrite with the removed path\n */\nexport function compoundWriteRemoveWrite(\n compoundWrite: CompoundWrite,\n path: Path\n): CompoundWrite {\n if (pathIsEmpty(path)) {\n return CompoundWrite.empty();\n } else {\n const newWriteTree = compoundWrite.writeTree_.setTree(\n path,\n new ImmutableTree<Node>(null)\n );\n return new CompoundWrite(newWriteTree);\n }\n}\n\n/**\n * Returns whether this CompoundWrite will fully overwrite a node at a given location and can therefore be\n * considered \"complete\".\n *\n * @param compoundWrite - The CompoundWrite to check.\n * @param path - The path to check for\n * @returns Whether there is a complete write at that path\n */\nexport function compoundWriteHasCompleteWrite(\n compoundWrite: CompoundWrite,\n path: Path\n): boolean {\n return compoundWriteGetCompleteNode(compoundWrite, path) != null;\n}\n\n/**\n * Returns a node for a path if and only if the node is a \"complete\" overwrite at that path. This will not aggregate\n * writes from deeper paths, but will return child nodes from a more shallow path.\n *\n * @param compoundWrite - The CompoundWrite to get the node from.\n * @param path - The path to get a complete write\n * @returns The node if complete at that path, or null otherwise.\n */\nexport function compoundWriteGetCompleteNode(\n compoundWrite: CompoundWrite,\n path: Path\n): Node | null {\n const rootmost = compoundWrite.writeTree_.findRootMostValueAndPath(path);\n if (rootmost != null) {\n return compoundWrite.writeTree_\n .get(rootmost.path)\n .getChild(newRelativePath(rootmost.path, path));\n } else {\n return null;\n }\n}\n\n/**\n * Returns all children that are guaranteed to be a complete overwrite.\n *\n * @param compoundWrite - The CompoundWrite to get children from.\n * @returns A list of all complete children.\n */\nexport function compoundWriteGetCompleteChildren(\n compoundWrite: CompoundWrite\n): NamedNode[] {\n const children: NamedNode[] = [];\n const node = compoundWrite.writeTree_.value;\n if (node != null) {\n // If it's a leaf node, it has no children; so nothing to do.\n if (!node.isLeafNode()) {\n (node as ChildrenNode).forEachChild(\n PRIORITY_INDEX,\n (childName, childNode) => {\n children.push(new NamedNode(childName, childNode));\n }\n );\n }\n } else {\n compoundWrite.writeTree_.children.inorderTraversal(\n (childName, childTree) => {\n if (childTree.value != null) {\n children.push(new NamedNode(childName, childTree.value));\n }\n }\n );\n }\n return children;\n}\n\nexport function compoundWriteChildCompoundWrite(\n compoundWrite: CompoundWrite,\n path: Path\n): CompoundWrite {\n if (pathIsEmpty(path)) {\n return compoundWrite;\n } else {\n const shadowingNode = compoundWriteGetCompleteNode(compoundWrite, path);\n if (shadowingNode != null) {\n return new CompoundWrite(new ImmutableTree(shadowingNode));\n } else {\n return new CompoundWrite(compoundWrite.writeTree_.subtree(path));\n }\n }\n}\n\n/**\n * Returns true if this CompoundWrite is empty and therefore does not modify any nodes.\n * @returns Whether this CompoundWrite is empty\n */\nexport function compoundWriteIsEmpty(compoundWrite: CompoundWrite): boolean {\n return compoundWrite.writeTree_.isEmpty();\n}\n\n/**\n * Applies this CompoundWrite to a node. The node is returned with all writes from this CompoundWrite applied to the\n * node\n * @param node - The node to apply this CompoundWrite to\n * @returns The node with all writes applied\n */\nexport function compoundWriteApply(\n compoundWrite: CompoundWrite,\n node: Node\n): Node {\n return applySubtreeWrite(newEmptyPath(), compoundWrite.writeTree_, node);\n}\n\nfunction applySubtreeWrite(\n relativePath: Path,\n writeTree: ImmutableTree<Node>,\n node: Node\n): Node {\n if (writeTree.value != null) {\n // Since there a write is always a leaf, we're done here\n return node.updateChild(relativePath, writeTree.value);\n } else {\n let priorityWrite = null;\n writeTree.children.inorderTraversal((childKey, childTree) => {\n if (childKey === '.priority') {\n // Apply priorities at the end so we don't update priorities for either empty nodes or forget\n // to apply priorities to empty nodes that are later filled\n assert(\n childTree.value !== null,\n 'Priority writes must always be leaf nodes'\n );\n priorityWrite = childTree.value;\n } else {\n node = applySubtreeWrite(\n pathChild(relativePath, childKey),\n childTree,\n node\n );\n }\n });\n // If there was a priority write, we only apply it if the node is not empty\n if (!node.getChild(relativePath).isEmpty() && priorityWrite !== null) {\n node = node.updateChild(\n pathChild(relativePath, '.priority'),\n priorityWrite\n );\n }\n return node;\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert, assertionError, safeGet } from '@firebase/util';\n\nimport {\n CompoundWrite,\n compoundWriteAddWrite,\n compoundWriteAddWrites,\n compoundWriteApply,\n compoundWriteChildCompoundWrite,\n compoundWriteGetCompleteChildren,\n compoundWriteGetCompleteNode,\n compoundWriteHasCompleteWrite,\n compoundWriteIsEmpty,\n compoundWriteRemoveWrite\n} from './CompoundWrite';\nimport { ChildrenNode } from './snap/ChildrenNode';\nimport { Index } from './snap/indexes/Index';\nimport { PRIORITY_INDEX } from './snap/indexes/PriorityIndex';\nimport { NamedNode, Node } from './snap/Node';\nimport {\n newEmptyPath,\n newRelativePath,\n Path,\n pathChild,\n pathContains,\n pathGetFront,\n pathIsEmpty,\n pathPopFront\n} from './util/Path';\nimport { each } from './util/util';\nimport { CacheNode } from './view/CacheNode';\n\n/**\n * Defines a single user-initiated write operation. May be the result of a set(), transaction(), or update() call. In\n * the case of a set() or transaction, snap wil be non-null. In the case of an update(), children will be non-null.\n */\nexport interface WriteRecord {\n writeId: number;\n path: Path;\n snap?: Node | null;\n children?: { [k: string]: Node } | null;\n visible: boolean;\n}\n\n/**\n * Create a new WriteTreeRef for the given path. For use with a new sync point at the given path.\n *\n */\nexport function writeTreeChildWrites(\n writeTree: WriteTree,\n path: Path\n): WriteTreeRef {\n return newWriteTreeRef(path, writeTree);\n}\n\n/**\n * Record a new overwrite from user code.\n *\n * @param visible - This is set to false by some transactions. It should be excluded from event caches\n */\nexport function writeTreeAddOverwrite(\n writeTree: WriteTree,\n path: Path,\n snap: Node,\n writeId: number,\n visible?: boolean\n) {\n assert(\n writeId > writeTree.lastWriteId,\n 'Stacking an older write on top of newer ones'\n );\n if (visible === undefined) {\n visible = true;\n }\n writeTree.allWrites.push({\n path,\n snap,\n writeId,\n visible\n });\n\n if (visible) {\n writeTree.visibleWrites = compoundWriteAddWrite(\n writeTree.visibleWrites,\n path,\n snap\n );\n }\n writeTree.lastWriteId = writeId;\n}\n\n/**\n * Record a new merge from user code.\n */\nexport function writeTreeAddMerge(\n writeTree: WriteTree,\n path: Path,\n changedChildren: { [k: string]: Node },\n writeId: number\n) {\n assert(\n writeId > writeTree.lastWriteId,\n 'Stacking an older merge on top of newer ones'\n );\n writeTree.allWrites.push({\n path,\n children: changedChildren,\n writeId,\n visible: true\n });\n\n writeTree.visibleWrites = compoundWriteAddWrites(\n writeTree.visibleWrites,\n path,\n changedChildren\n );\n writeTree.lastWriteId = writeId;\n}\n\nexport function writeTreeGetWrite(\n writeTree: WriteTree,\n writeId: number\n): WriteRecord | null {\n for (let i = 0; i < writeTree.allWrites.length; i++) {\n const record = writeTree.allWrites[i];\n if (record.writeId === writeId) {\n return record;\n }\n }\n return null;\n}\n\n/**\n * Remove a write (either an overwrite or merge) that has been successfully acknowledge by the server. Recalculates\n * the tree if necessary. We return true if it may have been visible, meaning views need to reevaluate.\n *\n * @returns true if the write may have been visible (meaning we'll need to reevaluate / raise\n * events as a result).\n */\nexport function writeTreeRemoveWrite(\n writeTree: WriteTree,\n writeId: number\n): boolean {\n // Note: disabling this check. It could be a transaction that preempted another transaction, and thus was applied\n // out of order.\n //const validClear = revert || this.allWrites_.length === 0 || writeId <= this.allWrites_[0].writeId;\n //assert(validClear, \"Either we don't have this write, or it's the first one in the queue\");\n\n const idx = writeTree.allWrites.findIndex(s => {\n return s.writeId === writeId;\n });\n assert(idx >= 0, 'removeWrite called with nonexistent writeId.');\n const writeToRemove = writeTree.allWrites[idx];\n writeTree.allWrites.splice(idx, 1);\n\n let removedWriteWasVisible = writeToRemove.visible;\n let removedWriteOverlapsWithOtherWrites = false;\n\n let i = writeTree.allWrites.length - 1;\n\n while (removedWriteWasVisible && i >= 0) {\n const currentWrite = writeTree.allWrites[i];\n if (currentWrite.visible) {\n if (\n i >= idx &&\n writeTreeRecordContainsPath_(currentWrite, writeToRemove.path)\n ) {\n // The removed write was completely shadowed by a subsequent write.\n removedWriteWasVisible = false;\n } else if (pathContains(writeToRemove.path, currentWrite.path)) {\n // Either we're covering some writes or they're covering part of us (depending on which came first).\n removedWriteOverlapsWithOtherWrites = true;\n }\n }\n i--;\n }\n\n if (!removedWriteWasVisible) {\n return false;\n } else if (removedWriteOverlapsWithOtherWrites) {\n // There's some shadowing going on. Just rebuild the visible writes from scratch.\n writeTreeResetTree_(writeTree);\n return true;\n } else {\n // There's no shadowing. We can safely just remove the write(s) from visibleWrites.\n if (writeToRemove.snap) {\n writeTree.visibleWrites = compoundWriteRemoveWrite(\n writeTree.visibleWrites,\n writeToRemove.path\n );\n } else {\n const children = writeToRemove.children;\n each(children, (childName: string) => {\n writeTree.visibleWrites = compoundWriteRemoveWrite(\n writeTree.visibleWrites,\n pathChild(writeToRemove.path, childName)\n );\n });\n }\n return true;\n }\n}\n\nfunction writeTreeRecordContainsPath_(\n writeRecord: WriteRecord,\n path: Path\n): boolean {\n if (writeRecord.snap) {\n return pathContains(writeRecord.path, path);\n } else {\n for (const childName in writeRecord.children) {\n if (\n writeRecord.children.hasOwnProperty(childName) &&\n pathContains(pathChild(writeRecord.path, childName), path)\n ) {\n return true;\n }\n }\n return false;\n }\n}\n\n/**\n * Re-layer the writes and merges into a tree so we can efficiently calculate event snapshots\n */\nfunction writeTreeResetTree_(writeTree: WriteTree) {\n writeTree.visibleWrites = writeTreeLayerTree_(\n writeTree.allWrites,\n writeTreeDefaultFilter_,\n newEmptyPath()\n );\n if (writeTree.allWrites.length > 0) {\n writeTree.lastWriteId =\n writeTree.allWrites[writeTree.allWrites.length - 1].writeId;\n } else {\n writeTree.lastWriteId = -1;\n }\n}\n\n/**\n * The default filter used when constructing the tree. Keep everything that's visible.\n */\nfunction writeTreeDefaultFilter_(write: WriteRecord) {\n return write.visible;\n}\n\n/**\n * Static method. Given an array of WriteRecords, a filter for which ones to include, and a path, construct the tree of\n * event data at that path.\n */\nfunction writeTreeLayerTree_(\n writes: WriteRecord[],\n filter: (w: WriteRecord) => boolean,\n treeRoot: Path\n): CompoundWrite {\n let compoundWrite = CompoundWrite.empty();\n for (let i = 0; i < writes.length; ++i) {\n const write = writes[i];\n // Theory, a later set will either:\n // a) abort a relevant transaction, so no need to worry about excluding it from calculating that transaction\n // b) not be relevant to a transaction (separate branch), so again will not affect the data for that transaction\n if (filter(write)) {\n const writePath = write.path;\n let relativePath: Path;\n if (write.snap) {\n if (pathContains(treeRoot, writePath)) {\n relativePath = newRelativePath(treeRoot, writePath);\n compoundWrite = compoundWriteAddWrite(\n compoundWrite,\n relativePath,\n write.snap\n );\n } else if (pathContains(writePath, treeRoot)) {\n relativePath = newRelativePath(writePath, treeRoot);\n compoundWrite = compoundWriteAddWrite(\n compoundWrite,\n newEmptyPath(),\n write.snap.getChild(relativePath)\n );\n } else {\n // There is no overlap between root path and write path, ignore write\n }\n } else if (write.children) {\n if (pathContains(treeRoot, writePath)) {\n relativePath = newRelativePath(treeRoot, writePath);\n compoundWrite = compoundWriteAddWrites(\n compoundWrite,\n relativePath,\n write.children\n );\n } else if (pathContains(writePath, treeRoot)) {\n relativePath = newRelativePath(writePath, treeRoot);\n if (pathIsEmpty(relativePath)) {\n compoundWrite = compoundWriteAddWrites(\n compoundWrite,\n newEmptyPath(),\n write.children\n );\n } else {\n const child = safeGet(write.children, pathGetFront(relativePath));\n if (child) {\n // There exists a child in this node that matches the root path\n const deepNode = child.getChild(pathPopFront(relativePath));\n compoundWrite = compoundWriteAddWrite(\n compoundWrite,\n newEmptyPath(),\n deepNode\n );\n }\n }\n } else {\n // There is no overlap between root path and write path, ignore write\n }\n } else {\n throw assertionError('WriteRecord should have .snap or .children');\n }\n }\n }\n return compoundWrite;\n}\n\n/**\n * Return a complete snapshot for the given path if there's visible write data at that path, else null.\n * No server data is considered.\n *\n */\nexport function writeTreeGetCompleteWriteData(\n writeTree: WriteTree,\n path: Path\n): Node | null {\n return compoundWriteGetCompleteNode(writeTree.visibleWrites, path);\n}\n\n/**\n * Given optional, underlying server data, and an optional set of constraints (exclude some sets, include hidden\n * writes), attempt to calculate a complete snapshot for the given path\n *\n * @param writeIdsToExclude - An optional set to be excluded\n * @param includeHiddenWrites - Defaults to false, whether or not to layer on writes with visible set to false\n */\nexport function writeTreeCalcCompleteEventCache(\n writeTree: WriteTree,\n treePath: Path,\n completeServerCache: Node | null,\n writeIdsToExclude?: number[],\n includeHiddenWrites?: boolean\n): Node | null {\n if (!writeIdsToExclude && !includeHiddenWrites) {\n const shadowingNode = compoundWriteGetCompleteNode(\n writeTree.visibleWrites,\n treePath\n );\n if (shadowingNode != null) {\n return shadowingNode;\n } else {\n const subMerge = compoundWriteChildCompoundWrite(\n writeTree.visibleWrites,\n treePath\n );\n if (compoundWriteIsEmpty(subMerge)) {\n return completeServerCache;\n } else if (\n completeServerCache == null &&\n !compoundWriteHasCompleteWrite(subMerge, newEmptyPath())\n ) {\n // We wouldn't have a complete snapshot, since there's no underlying data and no complete shadow\n return null;\n } else {\n const layeredCache = completeServerCache || ChildrenNode.EMPTY_NODE;\n return compoundWriteApply(subMerge, layeredCache);\n }\n }\n } else {\n const merge = compoundWriteChildCompoundWrite(\n writeTree.visibleWrites,\n treePath\n );\n if (!includeHiddenWrites && compoundWriteIsEmpty(merge)) {\n return completeServerCache;\n } else {\n // If the server cache is null, and we don't have a complete cache, we need to return null\n if (\n !includeHiddenWrites &&\n completeServerCache == null &&\n !compoundWriteHasCompleteWrite(merge, newEmptyPath())\n ) {\n return null;\n } else {\n const filter = function (write: WriteRecord) {\n return (\n (write.visible || includeHiddenWrites) &&\n (!writeIdsToExclude ||\n !~writeIdsToExclude.indexOf(write.writeId)) &&\n (pathContains(write.path, treePath) ||\n pathContains(treePath, write.path))\n );\n };\n const mergeAtPath = writeTreeLayerTree_(\n writeTree.allWrites,\n filter,\n treePath\n );\n const layeredCache = completeServerCache || ChildrenNode.EMPTY_NODE;\n return compoundWriteApply(mergeAtPath, layeredCache);\n }\n }\n }\n}\n\n/**\n * With optional, underlying server data, attempt to return a children node of children that we have complete data for.\n * Used when creating new views, to pre-fill their complete event children snapshot.\n */\nexport function writeTreeCalcCompleteEventChildren(\n writeTree: WriteTree,\n treePath: Path,\n completeServerChildren: ChildrenNode | null\n) {\n let completeChildren = ChildrenNode.EMPTY_NODE as Node;\n const topLevelSet = compoundWriteGetCompleteNode(\n writeTree.visibleWrites,\n treePath\n );\n if (topLevelSet) {\n if (!topLevelSet.isLeafNode()) {\n // we're shadowing everything. Return the children.\n topLevelSet.forEachChild(PRIORITY_INDEX, (childName, childSnap) => {\n completeChildren = completeChildren.updateImmediateChild(\n childName,\n childSnap\n );\n });\n }\n return completeChildren;\n } else if (completeServerChildren) {\n // Layer any children we have on top of this\n // We know we don't have a top-level set, so just enumerate existing children\n const merge = compoundWriteChildCompoundWrite(\n writeTree.visibleWrites,\n treePath\n );\n completeServerChildren.forEachChild(\n PRIORITY_INDEX,\n (childName, childNode) => {\n const node = compoundWriteApply(\n compoundWriteChildCompoundWrite(merge, new Path(childName)),\n childNode\n );\n completeChildren = completeChildren.updateImmediateChild(\n childName,\n node\n );\n }\n );\n // Add any complete children we have from the set\n compoundWriteGetCompleteChildren(merge).forEach(namedNode => {\n completeChildren = completeChildren.updateImmediateChild(\n namedNode.name,\n namedNode.node\n );\n });\n return completeChildren;\n } else {\n // We don't have anything to layer on top of. Layer on any children we have\n // Note that we can return an empty snap if we have a defined delete\n const merge = compoundWriteChildCompoundWrite(\n writeTree.visibleWrites,\n treePath\n );\n compoundWriteGetCompleteChildren(merge).forEach(namedNode => {\n completeChildren = completeChildren.updateImmediateChild(\n namedNode.name,\n namedNode.node\n );\n });\n return completeChildren;\n }\n}\n\n/**\n * Given that the underlying server data has updated, determine what, if anything, needs to be\n * applied to the event cache.\n *\n * Possibilities:\n *\n * 1. No writes are shadowing. Events should be raised, the snap to be applied comes from the server data\n *\n * 2. Some write is completely shadowing. No events to be raised\n *\n * 3. Is partially shadowed. Events\n *\n * Either existingEventSnap or existingServerSnap must exist\n */\nexport function writeTreeCalcEventCacheAfterServerOverwrite(\n writeTree: WriteTree,\n treePath: Path,\n childPath: Path,\n existingEventSnap: Node | null,\n existingServerSnap: Node | null\n): Node | null {\n assert(\n existingEventSnap || existingServerSnap,\n 'Either existingEventSnap or existingServerSnap must exist'\n );\n const path = pathChild(treePath, childPath);\n if (compoundWriteHasCompleteWrite(writeTree.visibleWrites, path)) {\n // At this point we can probably guarantee that we're in case 2, meaning no events\n // May need to check visibility while doing the findRootMostValueAndPath call\n return null;\n } else {\n // No complete shadowing. We're either partially shadowing or not shadowing at all.\n const childMerge = compoundWriteChildCompoundWrite(\n writeTree.visibleWrites,\n path\n );\n if (compoundWriteIsEmpty(childMerge)) {\n // We're not shadowing at all. Case 1\n return existingServerSnap.getChild(childPath);\n } else {\n // This could be more efficient if the serverNode + updates doesn't change the eventSnap\n // However this is tricky to find out, since user updates don't necessary change the server\n // snap, e.g. priority updates on empty nodes, or deep deletes. Another special case is if the server\n // adds nodes, but doesn't change any existing writes. It is therefore not enough to\n // only check if the updates change the serverNode.\n // Maybe check if the merge tree contains these special cases and only do a full overwrite in that case?\n return compoundWriteApply(\n childMerge,\n existingServerSnap.getChild(childPath)\n );\n }\n }\n}\n\n/**\n * Returns a complete child for a given server snap after applying all user writes or null if there is no\n * complete child for this ChildKey.\n */\nexport function writeTreeCalcCompleteChild(\n writeTree: WriteTree,\n treePath: Path,\n childKey: string,\n existingServerSnap: CacheNode\n): Node | null {\n const path = pathChild(treePath, childKey);\n const shadowingNode = compoundWriteGetCompleteNode(\n writeTree.visibleWrites,\n path\n );\n if (shadowingNode != null) {\n return shadowingNode;\n } else {\n if (existingServerSnap.isCompleteForChild(childKey)) {\n const childMerge = compoundWriteChildCompoundWrite(\n writeTree.visibleWrites,\n path\n );\n return compoundWriteApply(\n childMerge,\n existingServerSnap.getNode().getImmediateChild(childKey)\n );\n } else {\n return null;\n }\n }\n}\n\n/**\n * Returns a node if there is a complete overwrite for this path. More specifically, if there is a write at\n * a higher path, this will return the child of that write relative to the write and this path.\n * Returns null if there is no write at this path.\n */\nexport function writeTreeShadowingWrite(\n writeTree: WriteTree,\n path: Path\n): Node | null {\n return compoundWriteGetCompleteNode(writeTree.visibleWrites, path);\n}\n\n/**\n * This method is used when processing child remove events on a query. If we can, we pull in children that were outside\n * the window, but may now be in the window.\n */\nexport function writeTreeCalcIndexedSlice(\n writeTree: WriteTree,\n treePath: Path,\n completeServerData: Node | null,\n startPost: NamedNode,\n count: number,\n reverse: boolean,\n index: Index\n): NamedNode[] {\n let toIterate: Node;\n const merge = compoundWriteChildCompoundWrite(\n writeTree.visibleWrites,\n treePath\n );\n const shadowingNode = compoundWriteGetCompleteNode(merge, newEmptyPath());\n if (shadowingNode != null) {\n toIterate = shadowingNode;\n } else if (completeServerData != null) {\n toIterate = compoundWriteApply(merge, completeServerData);\n } else {\n // no children to iterate on\n return [];\n }\n toIterate = toIterate.withIndex(index);\n if (!toIterate.isEmpty() && !toIterate.isLeafNode()) {\n const nodes = [];\n const cmp = index.getCompare();\n const iter = reverse\n ? (toIterate as ChildrenNode).getReverseIteratorFrom(startPost, index)\n : (toIterate as ChildrenNode).getIteratorFrom(startPost, index);\n let next = iter.getNext();\n while (next && nodes.length < count) {\n if (cmp(next, startPost) !== 0) {\n nodes.push(next);\n }\n next = iter.getNext();\n }\n return nodes;\n } else {\n return [];\n }\n}\n\nexport function newWriteTree(): WriteTree {\n return {\n visibleWrites: CompoundWrite.empty(),\n allWrites: [],\n lastWriteId: -1\n };\n}\n\n/**\n * WriteTree tracks all pending user-initiated writes and has methods to calculate the result of merging them\n * with underlying server data (to create \"event cache\" data). Pending writes are added with addOverwrite()\n * and addMerge(), and removed with removeWrite().\n */\nexport interface WriteTree {\n /**\n * A tree tracking the result of applying all visible writes. This does not include transactions with\n * applyLocally=false or writes that are completely shadowed by other writes.\n */\n visibleWrites: CompoundWrite;\n\n /**\n * A list of all pending writes, regardless of visibility and shadowed-ness. Used to calculate arbitrary\n * sets of the changed data, such as hidden writes (from transactions) or changes with certain writes excluded (also\n * used by transactions).\n */\n allWrites: WriteRecord[];\n\n lastWriteId: number;\n}\n\n/**\n * If possible, returns a complete event cache, using the underlying server data if possible. In addition, can be used\n * to get a cache that includes hidden writes, and excludes arbitrary writes. Note that customizing the returned node\n * can lead to a more expensive calculation.\n *\n * @param writeIdsToExclude - Optional writes to exclude.\n * @param includeHiddenWrites - Defaults to false, whether or not to layer on writes with visible set to false\n */\nexport function writeTreeRefCalcCompleteEventCache(\n writeTreeRef: WriteTreeRef,\n completeServerCache: Node | null,\n writeIdsToExclude?: number[],\n includeHiddenWrites?: boolean\n): Node | null {\n return writeTreeCalcCompleteEventCache(\n writeTreeRef.writeTree,\n writeTreeRef.treePath,\n completeServerCache,\n writeIdsToExclude,\n includeHiddenWrites\n );\n}\n\n/**\n * If possible, returns a children node containing all of the complete children we have data for. The returned data is a\n * mix of the given server data and write data.\n *\n */\nexport function writeTreeRefCalcCompleteEventChildren(\n writeTreeRef: WriteTreeRef,\n completeServerChildren: ChildrenNode | null\n): ChildrenNode {\n return writeTreeCalcCompleteEventChildren(\n writeTreeRef.writeTree,\n writeTreeRef.treePath,\n completeServerChildren\n ) as ChildrenNode;\n}\n\n/**\n * Given that either the underlying server data has updated or the outstanding writes have updated, determine what,\n * if anything, needs to be applied to the event cache.\n *\n * Possibilities:\n *\n * 1. No writes are shadowing. Events should be raised, the snap to be applied comes from the server data\n *\n * 2. Some write is completely shadowing. No events to be raised\n *\n * 3. Is partially shadowed. Events should be raised\n *\n * Either existingEventSnap or existingServerSnap must exist, this is validated via an assert\n *\n *\n */\nexport function writeTreeRefCalcEventCacheAfterServerOverwrite(\n writeTreeRef: WriteTreeRef,\n path: Path,\n existingEventSnap: Node | null,\n existingServerSnap: Node | null\n): Node | null {\n return writeTreeCalcEventCacheAfterServerOverwrite(\n writeTreeRef.writeTree,\n writeTreeRef.treePath,\n path,\n existingEventSnap,\n existingServerSnap\n );\n}\n\n/**\n * Returns a node if there is a complete overwrite for this path. More specifically, if there is a write at\n * a higher path, this will return the child of that write relative to the write and this path.\n * Returns null if there is no write at this path.\n *\n */\nexport function writeTreeRefShadowingWrite(\n writeTreeRef: WriteTreeRef,\n path: Path\n): Node | null {\n return writeTreeShadowingWrite(\n writeTreeRef.writeTree,\n pathChild(writeTreeRef.treePath, path)\n );\n}\n\n/**\n * This method is used when processing child remove events on a query. If we can, we pull in children that were outside\n * the window, but may now be in the window\n */\nexport function writeTreeRefCalcIndexedSlice(\n writeTreeRef: WriteTreeRef,\n completeServerData: Node | null,\n startPost: NamedNode,\n count: number,\n reverse: boolean,\n index: Index\n): NamedNode[] {\n return writeTreeCalcIndexedSlice(\n writeTreeRef.writeTree,\n writeTreeRef.treePath,\n completeServerData,\n startPost,\n count,\n reverse,\n index\n );\n}\n\n/**\n * Returns a complete child for a given server snap after applying all user writes or null if there is no\n * complete child for this ChildKey.\n */\nexport function writeTreeRefCalcCompleteChild(\n writeTreeRef: WriteTreeRef,\n childKey: string,\n existingServerCache: CacheNode\n): Node | null {\n return writeTreeCalcCompleteChild(\n writeTreeRef.writeTree,\n writeTreeRef.treePath,\n childKey,\n existingServerCache\n );\n}\n\n/**\n * Return a WriteTreeRef for a child.\n */\nexport function writeTreeRefChild(\n writeTreeRef: WriteTreeRef,\n childName: string\n): WriteTreeRef {\n return newWriteTreeRef(\n pathChild(writeTreeRef.treePath, childName),\n writeTreeRef.writeTree\n );\n}\n\nexport function newWriteTreeRef(\n path: Path,\n writeTree: WriteTree\n): WriteTreeRef {\n return {\n treePath: path,\n writeTree\n };\n}\n\n/**\n * A WriteTreeRef wraps a WriteTree and a path, for convenient access to a particular subtree. All of the methods\n * just proxy to the underlying WriteTree.\n *\n */\nexport interface WriteTreeRef {\n /**\n * The path to this particular write tree ref. Used for calling methods on writeTree_ while exposing a simpler\n * interface to callers.\n */\n readonly treePath: Path;\n\n /**\n * * A reference to the actual tree of write data. All methods are pass-through to the tree, but with the appropriate\n * path prefixed.\n *\n * This lets us make cheap references to points in the tree for sync points without having to copy and maintain all of\n * the data.\n */\n readonly writeTree: WriteTree;\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert, assertionError } from '@firebase/util';\n\nimport {\n Change,\n ChangeType,\n changeChildAdded,\n changeChildChanged,\n changeChildRemoved\n} from './Change';\n\nexport class ChildChangeAccumulator {\n private readonly changeMap: Map<string, Change> = new Map();\n\n trackChildChange(change: Change) {\n const type = change.type;\n const childKey = change.childName!;\n assert(\n type === ChangeType.CHILD_ADDED ||\n type === ChangeType.CHILD_CHANGED ||\n type === ChangeType.CHILD_REMOVED,\n 'Only child changes supported for tracking'\n );\n assert(\n childKey !== '.priority',\n 'Only non-priority child changes can be tracked.'\n );\n const oldChange = this.changeMap.get(childKey);\n if (oldChange) {\n const oldType = oldChange.type;\n if (\n type === ChangeType.CHILD_ADDED &&\n oldType === ChangeType.CHILD_REMOVED\n ) {\n this.changeMap.set(\n childKey,\n changeChildChanged(\n childKey,\n change.snapshotNode,\n oldChange.snapshotNode\n )\n );\n } else if (\n type === ChangeType.CHILD_REMOVED &&\n oldType === ChangeType.CHILD_ADDED\n ) {\n this.changeMap.delete(childKey);\n } else if (\n type === ChangeType.CHILD_REMOVED &&\n oldType === ChangeType.CHILD_CHANGED\n ) {\n this.changeMap.set(\n childKey,\n changeChildRemoved(childKey, oldChange.oldSnap)\n );\n } else if (\n type === ChangeType.CHILD_CHANGED &&\n oldType === ChangeType.CHILD_ADDED\n ) {\n this.changeMap.set(\n childKey,\n changeChildAdded(childKey, change.snapshotNode)\n );\n } else if (\n type === ChangeType.CHILD_CHANGED &&\n oldType === ChangeType.CHILD_CHANGED\n ) {\n this.changeMap.set(\n childKey,\n changeChildChanged(childKey, change.snapshotNode, oldChange.oldSnap)\n );\n } else {\n throw assertionError(\n 'Illegal combination of changes: ' +\n change +\n ' occurred after ' +\n oldChange\n );\n }\n } else {\n this.changeMap.set(childKey, change);\n }\n }\n\n getChanges(): Change[] {\n return Array.from(this.changeMap.values());\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Index } from '../snap/indexes/Index';\nimport { NamedNode, Node } from '../snap/Node';\nimport {\n WriteTreeRef,\n writeTreeRefCalcCompleteChild,\n writeTreeRefCalcIndexedSlice\n} from '../WriteTree';\n\nimport { CacheNode } from './CacheNode';\nimport { ViewCache, viewCacheGetCompleteServerSnap } from './ViewCache';\n\n/**\n * Since updates to filtered nodes might require nodes to be pulled in from \"outside\" the node, this interface\n * can help to get complete children that can be pulled in.\n * A class implementing this interface takes potentially multiple sources (e.g. user writes, server data from\n * other views etc.) to try it's best to get a complete child that might be useful in pulling into the view.\n *\n * @interface\n */\nexport interface CompleteChildSource {\n getCompleteChild(childKey: string): Node | null;\n\n getChildAfterChild(\n index: Index,\n child: NamedNode,\n reverse: boolean\n ): NamedNode | null;\n}\n\n/**\n * An implementation of CompleteChildSource that never returns any additional children\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport class NoCompleteChildSource_ implements CompleteChildSource {\n getCompleteChild(childKey?: string): Node | null {\n return null;\n }\n getChildAfterChild(\n index?: Index,\n child?: NamedNode,\n reverse?: boolean\n ): NamedNode | null {\n return null;\n }\n}\n\n/**\n * Singleton instance.\n */\nexport const NO_COMPLETE_CHILD_SOURCE = new NoCompleteChildSource_();\n\n/**\n * An implementation of CompleteChildSource that uses a WriteTree in addition to any other server data or\n * old event caches available to calculate complete children.\n */\nexport class WriteTreeCompleteChildSource implements CompleteChildSource {\n constructor(\n private writes_: WriteTreeRef,\n private viewCache_: ViewCache,\n private optCompleteServerCache_: Node | null = null\n ) {}\n getCompleteChild(childKey: string): Node | null {\n const node = this.viewCache_.eventCache;\n if (node.isCompleteForChild(childKey)) {\n return node.getNode().getImmediateChild(childKey);\n } else {\n const serverNode =\n this.optCompleteServerCache_ != null\n ? new CacheNode(this.optCompleteServerCache_, true, false)\n : this.viewCache_.serverCache;\n return writeTreeRefCalcCompleteChild(this.writes_, childKey, serverNode);\n }\n }\n getChildAfterChild(\n index: Index,\n child: NamedNode,\n reverse: boolean\n ): NamedNode | null {\n const completeServerData =\n this.optCompleteServerCache_ != null\n ? this.optCompleteServerCache_\n : viewCacheGetCompleteServerSnap(this.viewCache_);\n const nodes = writeTreeRefCalcIndexedSlice(\n this.writes_,\n completeServerData,\n child,\n 1,\n reverse,\n index\n );\n if (nodes.length === 0) {\n return null;\n } else {\n return nodes[0];\n }\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert, assertionError } from '@firebase/util';\n\nimport { AckUserWrite } from '../operation/AckUserWrite';\nimport { Merge } from '../operation/Merge';\nimport { Operation, OperationType } from '../operation/Operation';\nimport { Overwrite } from '../operation/Overwrite';\nimport { ChildrenNode } from '../snap/ChildrenNode';\nimport { KEY_INDEX } from '../snap/indexes/KeyIndex';\nimport { Node } from '../snap/Node';\nimport { ImmutableTree } from '../util/ImmutableTree';\nimport {\n newEmptyPath,\n Path,\n pathChild,\n pathGetBack,\n pathGetFront,\n pathGetLength,\n pathIsEmpty,\n pathParent,\n pathPopFront\n} from '../util/Path';\nimport {\n WriteTreeRef,\n writeTreeRefCalcCompleteChild,\n writeTreeRefCalcCompleteEventCache,\n writeTreeRefCalcCompleteEventChildren,\n writeTreeRefCalcEventCacheAfterServerOverwrite,\n writeTreeRefShadowingWrite\n} from '../WriteTree';\n\nimport { Change, changeValue } from './Change';\nimport { ChildChangeAccumulator } from './ChildChangeAccumulator';\nimport {\n CompleteChildSource,\n NO_COMPLETE_CHILD_SOURCE,\n WriteTreeCompleteChildSource\n} from './CompleteChildSource';\nimport { NodeFilter } from './filter/NodeFilter';\nimport {\n ViewCache,\n viewCacheGetCompleteEventSnap,\n viewCacheGetCompleteServerSnap,\n viewCacheUpdateEventSnap,\n viewCacheUpdateServerSnap\n} from './ViewCache';\n\nexport interface ProcessorResult {\n readonly viewCache: ViewCache;\n readonly changes: Change[];\n}\n\nexport interface ViewProcessor {\n readonly filter: NodeFilter;\n}\n\nexport function newViewProcessor(filter: NodeFilter): ViewProcessor {\n return { filter };\n}\n\nexport function viewProcessorAssertIndexed(\n viewProcessor: ViewProcessor,\n viewCache: ViewCache\n): void {\n assert(\n viewCache.eventCache.getNode().isIndexed(viewProcessor.filter.getIndex()),\n 'Event snap not indexed'\n );\n assert(\n viewCache.serverCache.getNode().isIndexed(viewProcessor.filter.getIndex()),\n 'Server snap not indexed'\n );\n}\n\nexport function viewProcessorApplyOperation(\n viewProcessor: ViewProcessor,\n oldViewCache: ViewCache,\n operation: Operation,\n writesCache: WriteTreeRef,\n completeCache: Node | null\n): ProcessorResult {\n const accumulator = new ChildChangeAccumulator();\n let newViewCache, filterServerNode;\n if (operation.type === OperationType.OVERWRITE) {\n const overwrite = operation as Overwrite;\n if (overwrite.source.fromUser) {\n newViewCache = viewProcessorApplyUserOverwrite(\n viewProcessor,\n oldViewCache,\n overwrite.path,\n overwrite.snap,\n writesCache,\n completeCache,\n accumulator\n );\n } else {\n assert(overwrite.source.fromServer, 'Unknown source.');\n // We filter the node if it's a tagged update or the node has been previously filtered and the\n // update is not at the root in which case it is ok (and necessary) to mark the node unfiltered\n // again\n filterServerNode =\n overwrite.source.tagged ||\n (oldViewCache.serverCache.isFiltered() && !pathIsEmpty(overwrite.path));\n newViewCache = viewProcessorApplyServerOverwrite(\n viewProcessor,\n oldViewCache,\n overwrite.path,\n overwrite.snap,\n writesCache,\n completeCache,\n filterServerNode,\n accumulator\n );\n }\n } else if (operation.type === OperationType.MERGE) {\n const merge = operation as Merge;\n if (merge.source.fromUser) {\n newViewCache = viewProcessorApplyUserMerge(\n viewProcessor,\n oldViewCache,\n merge.path,\n merge.children,\n writesCache,\n completeCache,\n accumulator\n );\n } else {\n assert(merge.source.fromServer, 'Unknown source.');\n // We filter the node if it's a tagged update or the node has been previously filtered\n filterServerNode =\n merge.source.tagged || oldViewCache.serverCache.isFiltered();\n newViewCache = viewProcessorApplyServerMerge(\n viewProcessor,\n oldViewCache,\n merge.path,\n merge.children,\n writesCache,\n completeCache,\n filterServerNode,\n accumulator\n );\n }\n } else if (operation.type === OperationType.ACK_USER_WRITE) {\n const ackUserWrite = operation as AckUserWrite;\n if (!ackUserWrite.revert) {\n newViewCache = viewProcessorAckUserWrite(\n viewProcessor,\n oldViewCache,\n ackUserWrite.path,\n ackUserWrite.affectedTree,\n writesCache,\n completeCache,\n accumulator\n );\n } else {\n newViewCache = viewProcessorRevertUserWrite(\n viewProcessor,\n oldViewCache,\n ackUserWrite.path,\n writesCache,\n completeCache,\n accumulator\n );\n }\n } else if (operation.type === OperationType.LISTEN_COMPLETE) {\n newViewCache = viewProcessorListenComplete(\n viewProcessor,\n oldViewCache,\n operation.path,\n writesCache,\n accumulator\n );\n } else {\n throw assertionError('Unknown operation type: ' + operation.type);\n }\n const changes = accumulator.getChanges();\n viewProcessorMaybeAddValueEvent(oldViewCache, newViewCache, changes);\n return { viewCache: newViewCache, changes };\n}\n\nfunction viewProcessorMaybeAddValueEvent(\n oldViewCache: ViewCache,\n newViewCache: ViewCache,\n accumulator: Change[]\n): void {\n const eventSnap = newViewCache.eventCache;\n if (eventSnap.isFullyInitialized()) {\n const isLeafOrEmpty =\n eventSnap.getNode().isLeafNode() || eventSnap.getNode().isEmpty();\n const oldCompleteSnap = viewCacheGetCompleteEventSnap(oldViewCache);\n if (\n accumulator.length > 0 ||\n !oldViewCache.eventCache.isFullyInitialized() ||\n (isLeafOrEmpty && !eventSnap.getNode().equals(oldCompleteSnap)) ||\n !eventSnap.getNode().getPriority().equals(oldCompleteSnap.getPriority())\n ) {\n accumulator.push(\n changeValue(viewCacheGetCompleteEventSnap(newViewCache))\n );\n }\n }\n}\n\nfunction viewProcessorGenerateEventCacheAfterServerEvent(\n viewProcessor: ViewProcessor,\n viewCache: ViewCache,\n changePath: Path,\n writesCache: WriteTreeRef,\n source: CompleteChildSource,\n accumulator: ChildChangeAccumulator\n): ViewCache {\n const oldEventSnap = viewCache.eventCache;\n if (writeTreeRefShadowingWrite(writesCache, changePath) != null) {\n // we have a shadowing write, ignore changes\n return viewCache;\n } else {\n let newEventCache, serverNode;\n if (pathIsEmpty(changePath)) {\n // TODO: figure out how this plays with \"sliding ack windows\"\n assert(\n viewCache.serverCache.isFullyInitialized(),\n 'If change path is empty, we must have complete server data'\n );\n if (viewCache.serverCache.isFiltered()) {\n // We need to special case this, because we need to only apply writes to complete children, or\n // we might end up raising events for incomplete children. If the server data is filtered deep\n // writes cannot be guaranteed to be complete\n const serverCache = viewCacheGetCompleteServerSnap(viewCache);\n const completeChildren =\n serverCache instanceof ChildrenNode\n ? serverCache\n : ChildrenNode.EMPTY_NODE;\n const completeEventChildren = writeTreeRefCalcCompleteEventChildren(\n writesCache,\n completeChildren\n );\n newEventCache = viewProcessor.filter.updateFullNode(\n viewCache.eventCache.getNode(),\n completeEventChildren,\n accumulator\n );\n } else {\n const completeNode = writeTreeRefCalcCompleteEventCache(\n writesCache,\n viewCacheGetCompleteServerSnap(viewCache)\n );\n newEventCache = viewProcessor.filter.updateFullNode(\n viewCache.eventCache.getNode(),\n completeNode,\n accumulator\n );\n }\n } else {\n const childKey = pathGetFront(changePath);\n if (childKey === '.priority') {\n assert(\n pathGetLength(changePath) === 1,\n \"Can't have a priority with additional path components\"\n );\n const oldEventNode = oldEventSnap.getNode();\n serverNode = viewCache.serverCache.getNode();\n // we might have overwrites for this priority\n const updatedPriority = writeTreeRefCalcEventCacheAfterServerOverwrite(\n writesCache,\n changePath,\n oldEventNode,\n serverNode\n );\n if (updatedPriority != null) {\n newEventCache = viewProcessor.filter.updatePriority(\n oldEventNode,\n updatedPriority\n );\n } else {\n // priority didn't change, keep old node\n newEventCache = oldEventSnap.getNode();\n }\n } else {\n const childChangePath = pathPopFront(changePath);\n // update child\n let newEventChild;\n if (oldEventSnap.isCompleteForChild(childKey)) {\n serverNode = viewCache.serverCache.getNode();\n const eventChildUpdate =\n writeTreeRefCalcEventCacheAfterServerOverwrite(\n writesCache,\n changePath,\n oldEventSnap.getNode(),\n serverNode\n );\n if (eventChildUpdate != null) {\n newEventChild = oldEventSnap\n .getNode()\n .getImmediateChild(childKey)\n .updateChild(childChangePath, eventChildUpdate);\n } else {\n // Nothing changed, just keep the old child\n newEventChild = oldEventSnap.getNode().getImmediateChild(childKey);\n }\n } else {\n newEventChild = writeTreeRefCalcCompleteChild(\n writesCache,\n childKey,\n viewCache.serverCache\n );\n }\n if (newEventChild != null) {\n newEventCache = viewProcessor.filter.updateChild(\n oldEventSnap.getNode(),\n childKey,\n newEventChild,\n childChangePath,\n source,\n accumulator\n );\n } else {\n // no complete child available or no change\n newEventCache = oldEventSnap.getNode();\n }\n }\n }\n return viewCacheUpdateEventSnap(\n viewCache,\n newEventCache,\n oldEventSnap.isFullyInitialized() || pathIsEmpty(changePath),\n viewProcessor.filter.filtersNodes()\n );\n }\n}\n\nfunction viewProcessorApplyServerOverwrite(\n viewProcessor: ViewProcessor,\n oldViewCache: ViewCache,\n changePath: Path,\n changedSnap: Node,\n writesCache: WriteTreeRef,\n completeCache: Node | null,\n filterServerNode: boolean,\n accumulator: ChildChangeAccumulator\n): ViewCache {\n const oldServerSnap = oldViewCache.serverCache;\n let newServerCache;\n const serverFilter = filterServerNode\n ? viewProcessor.filter\n : viewProcessor.filter.getIndexedFilter();\n if (pathIsEmpty(changePath)) {\n newServerCache = serverFilter.updateFullNode(\n oldServerSnap.getNode(),\n changedSnap,\n null\n );\n } else if (serverFilter.filtersNodes() && !oldServerSnap.isFiltered()) {\n // we want to filter the server node, but we didn't filter the server node yet, so simulate a full update\n const newServerNode = oldServerSnap\n .getNode()\n .updateChild(changePath, changedSnap);\n newServerCache = serverFilter.updateFullNode(\n oldServerSnap.getNode(),\n newServerNode,\n null\n );\n } else {\n const childKey = pathGetFront(changePath);\n if (\n !oldServerSnap.isCompleteForPath(changePath) &&\n pathGetLength(changePath) > 1\n ) {\n // We don't update incomplete nodes with updates intended for other listeners\n return oldViewCache;\n }\n const childChangePath = pathPopFront(changePath);\n const childNode = oldServerSnap.getNode().getImmediateChild(childKey);\n const newChildNode = childNode.updateChild(childChangePath, changedSnap);\n if (childKey === '.priority') {\n newServerCache = serverFilter.updatePriority(\n oldServerSnap.getNode(),\n newChildNode\n );\n } else {\n newServerCache = serverFilter.updateChild(\n oldServerSnap.getNode(),\n childKey,\n newChildNode,\n childChangePath,\n NO_COMPLETE_CHILD_SOURCE,\n null\n );\n }\n }\n const newViewCache = viewCacheUpdateServerSnap(\n oldViewCache,\n newServerCache,\n oldServerSnap.isFullyInitialized() || pathIsEmpty(changePath),\n serverFilter.filtersNodes()\n );\n const source = new WriteTreeCompleteChildSource(\n writesCache,\n newViewCache,\n completeCache\n );\n return viewProcessorGenerateEventCacheAfterServerEvent(\n viewProcessor,\n newViewCache,\n changePath,\n writesCache,\n source,\n accumulator\n );\n}\n\nfunction viewProcessorApplyUserOverwrite(\n viewProcessor: ViewProcessor,\n oldViewCache: ViewCache,\n changePath: Path,\n changedSnap: Node,\n writesCache: WriteTreeRef,\n completeCache: Node | null,\n accumulator: ChildChangeAccumulator\n): ViewCache {\n const oldEventSnap = oldViewCache.eventCache;\n let newViewCache, newEventCache;\n const source = new WriteTreeCompleteChildSource(\n writesCache,\n oldViewCache,\n completeCache\n );\n if (pathIsEmpty(changePath)) {\n newEventCache = viewProcessor.filter.updateFullNode(\n oldViewCache.eventCache.getNode(),\n changedSnap,\n accumulator\n );\n newViewCache = viewCacheUpdateEventSnap(\n oldViewCache,\n newEventCache,\n true,\n viewProcessor.filter.filtersNodes()\n );\n } else {\n const childKey = pathGetFront(changePath);\n if (childKey === '.priority') {\n newEventCache = viewProcessor.filter.updatePriority(\n oldViewCache.eventCache.getNode(),\n changedSnap\n );\n newViewCache = viewCacheUpdateEventSnap(\n oldViewCache,\n newEventCache,\n oldEventSnap.isFullyInitialized(),\n oldEventSnap.isFiltered()\n );\n } else {\n const childChangePath = pathPopFront(changePath);\n const oldChild = oldEventSnap.getNode().getImmediateChild(childKey);\n let newChild;\n if (pathIsEmpty(childChangePath)) {\n // Child overwrite, we can replace the child\n newChild = changedSnap;\n } else {\n const childNode = source.getCompleteChild(childKey);\n if (childNode != null) {\n if (\n pathGetBack(childChangePath) === '.priority' &&\n childNode.getChild(pathParent(childChangePath)).isEmpty()\n ) {\n // This is a priority update on an empty node. If this node exists on the server, the\n // server will send down the priority in the update, so ignore for now\n newChild = childNode;\n } else {\n newChild = childNode.updateChild(childChangePath, changedSnap);\n }\n } else {\n // There is no complete child node available\n newChild = ChildrenNode.EMPTY_NODE;\n }\n }\n if (!oldChild.equals(newChild)) {\n const newEventSnap = viewProcessor.filter.updateChild(\n oldEventSnap.getNode(),\n childKey,\n newChild,\n childChangePath,\n source,\n accumulator\n );\n newViewCache = viewCacheUpdateEventSnap(\n oldViewCache,\n newEventSnap,\n oldEventSnap.isFullyInitialized(),\n viewProcessor.filter.filtersNodes()\n );\n } else {\n newViewCache = oldViewCache;\n }\n }\n }\n return newViewCache;\n}\n\nfunction viewProcessorCacheHasChild(\n viewCache: ViewCache,\n childKey: string\n): boolean {\n return viewCache.eventCache.isCompleteForChild(childKey);\n}\n\nfunction viewProcessorApplyUserMerge(\n viewProcessor: ViewProcessor,\n viewCache: ViewCache,\n path: Path,\n changedChildren: ImmutableTree<Node>,\n writesCache: WriteTreeRef,\n serverCache: Node | null,\n accumulator: ChildChangeAccumulator\n): ViewCache {\n // HACK: In the case of a limit query, there may be some changes that bump things out of the\n // window leaving room for new items. It's important we process these changes first, so we\n // iterate the changes twice, first processing any that affect items currently in view.\n // TODO: I consider an item \"in view\" if cacheHasChild is true, which checks both the server\n // and event snap. I'm not sure if this will result in edge cases when a child is in one but\n // not the other.\n let curViewCache = viewCache;\n changedChildren.foreach((relativePath, childNode) => {\n const writePath = pathChild(path, relativePath);\n if (viewProcessorCacheHasChild(viewCache, pathGetFront(writePath))) {\n curViewCache = viewProcessorApplyUserOverwrite(\n viewProcessor,\n curViewCache,\n writePath,\n childNode,\n writesCache,\n serverCache,\n accumulator\n );\n }\n });\n\n changedChildren.foreach((relativePath, childNode) => {\n const writePath = pathChild(path, relativePath);\n if (!viewProcessorCacheHasChild(viewCache, pathGetFront(writePath))) {\n curViewCache = viewProcessorApplyUserOverwrite(\n viewProcessor,\n curViewCache,\n writePath,\n childNode,\n writesCache,\n serverCache,\n accumulator\n );\n }\n });\n\n return curViewCache;\n}\n\nfunction viewProcessorApplyMerge(\n viewProcessor: ViewProcessor,\n node: Node,\n merge: ImmutableTree<Node>\n): Node {\n merge.foreach((relativePath, childNode) => {\n node = node.updateChild(relativePath, childNode);\n });\n return node;\n}\n\nfunction viewProcessorApplyServerMerge(\n viewProcessor: ViewProcessor,\n viewCache: ViewCache,\n path: Path,\n changedChildren: ImmutableTree<Node>,\n writesCache: WriteTreeRef,\n serverCache: Node | null,\n filterServerNode: boolean,\n accumulator: ChildChangeAccumulator\n): ViewCache {\n // If we don't have a cache yet, this merge was intended for a previously listen in the same location. Ignore it and\n // wait for the complete data update coming soon.\n if (\n viewCache.serverCache.getNode().isEmpty() &&\n !viewCache.serverCache.isFullyInitialized()\n ) {\n return viewCache;\n }\n\n // HACK: In the case of a limit query, there may be some changes that bump things out of the\n // window leaving room for new items. It's important we process these changes first, so we\n // iterate the changes twice, first processing any that affect items currently in view.\n // TODO: I consider an item \"in view\" if cacheHasChild is true, which checks both the server\n // and event snap. I'm not sure if this will result in edge cases when a child is in one but\n // not the other.\n let curViewCache = viewCache;\n let viewMergeTree: ImmutableTree<Node>;\n if (pathIsEmpty(path)) {\n viewMergeTree = changedChildren;\n } else {\n viewMergeTree = new ImmutableTree<Node>(null).setTree(\n path,\n changedChildren\n );\n }\n const serverNode = viewCache.serverCache.getNode();\n viewMergeTree.children.inorderTraversal((childKey, childTree) => {\n if (serverNode.hasChild(childKey)) {\n const serverChild = viewCache.serverCache\n .getNode()\n .getImmediateChild(childKey);\n const newChild = viewProcessorApplyMerge(\n viewProcessor,\n serverChild,\n childTree\n );\n curViewCache = viewProcessorApplyServerOverwrite(\n viewProcessor,\n curViewCache,\n new Path(childKey),\n newChild,\n writesCache,\n serverCache,\n filterServerNode,\n accumulator\n );\n }\n });\n viewMergeTree.children.inorderTraversal((childKey, childMergeTree) => {\n const isUnknownDeepMerge =\n !viewCache.serverCache.isCompleteForChild(childKey) &&\n childMergeTree.value === null;\n if (!serverNode.hasChild(childKey) && !isUnknownDeepMerge) {\n const serverChild = viewCache.serverCache\n .getNode()\n .getImmediateChild(childKey);\n const newChild = viewProcessorApplyMerge(\n viewProcessor,\n serverChild,\n childMergeTree\n );\n curViewCache = viewProcessorApplyServerOverwrite(\n viewProcessor,\n curViewCache,\n new Path(childKey),\n newChild,\n writesCache,\n serverCache,\n filterServerNode,\n accumulator\n );\n }\n });\n\n return curViewCache;\n}\n\nfunction viewProcessorAckUserWrite(\n viewProcessor: ViewProcessor,\n viewCache: ViewCache,\n ackPath: Path,\n affectedTree: ImmutableTree<boolean>,\n writesCache: WriteTreeRef,\n completeCache: Node | null,\n accumulator: ChildChangeAccumulator\n): ViewCache {\n if (writeTreeRefShadowingWrite(writesCache, ackPath) != null) {\n return viewCache;\n }\n\n // Only filter server node if it is currently filtered\n const filterServerNode = viewCache.serverCache.isFiltered();\n\n // Essentially we'll just get our existing server cache for the affected paths and re-apply it as a server update\n // now that it won't be shadowed.\n const serverCache = viewCache.serverCache;\n if (affectedTree.value != null) {\n // This is an overwrite.\n if (\n (pathIsEmpty(ackPath) && serverCache.isFullyInitialized()) ||\n serverCache.isCompleteForPath(ackPath)\n ) {\n return viewProcessorApplyServerOverwrite(\n viewProcessor,\n viewCache,\n ackPath,\n serverCache.getNode().getChild(ackPath),\n writesCache,\n completeCache,\n filterServerNode,\n accumulator\n );\n } else if (pathIsEmpty(ackPath)) {\n // This is a goofy edge case where we are acking data at this location but don't have full data. We\n // should just re-apply whatever we have in our cache as a merge.\n let changedChildren = new ImmutableTree<Node>(null);\n serverCache.getNode().forEachChild(KEY_INDEX, (name, node) => {\n changedChildren = changedChildren.set(new Path(name), node);\n });\n return viewProcessorApplyServerMerge(\n viewProcessor,\n viewCache,\n ackPath,\n changedChildren,\n writesCache,\n completeCache,\n filterServerNode,\n accumulator\n );\n } else {\n return viewCache;\n }\n } else {\n // This is a merge.\n let changedChildren = new ImmutableTree<Node>(null);\n affectedTree.foreach((mergePath, value) => {\n const serverCachePath = pathChild(ackPath, mergePath);\n if (serverCache.isCompleteForPath(serverCachePath)) {\n changedChildren = changedChildren.set(\n mergePath,\n serverCache.getNode().getChild(serverCachePath)\n );\n }\n });\n return viewProcessorApplyServerMerge(\n viewProcessor,\n viewCache,\n ackPath,\n changedChildren,\n writesCache,\n completeCache,\n filterServerNode,\n accumulator\n );\n }\n}\n\nfunction viewProcessorListenComplete(\n viewProcessor: ViewProcessor,\n viewCache: ViewCache,\n path: Path,\n writesCache: WriteTreeRef,\n accumulator: ChildChangeAccumulator\n): ViewCache {\n const oldServerNode = viewCache.serverCache;\n const newViewCache = viewCacheUpdateServerSnap(\n viewCache,\n oldServerNode.getNode(),\n oldServerNode.isFullyInitialized() || pathIsEmpty(path),\n oldServerNode.isFiltered()\n );\n return viewProcessorGenerateEventCacheAfterServerEvent(\n viewProcessor,\n newViewCache,\n path,\n writesCache,\n NO_COMPLETE_CHILD_SOURCE,\n accumulator\n );\n}\n\nfunction viewProcessorRevertUserWrite(\n viewProcessor: ViewProcessor,\n viewCache: ViewCache,\n path: Path,\n writesCache: WriteTreeRef,\n completeServerCache: Node | null,\n accumulator: ChildChangeAccumulator\n): ViewCache {\n let complete;\n if (writeTreeRefShadowingWrite(writesCache, path) != null) {\n return viewCache;\n } else {\n const source = new WriteTreeCompleteChildSource(\n writesCache,\n viewCache,\n completeServerCache\n );\n const oldEventCache = viewCache.eventCache.getNode();\n let newEventCache;\n if (pathIsEmpty(path) || pathGetFront(path) === '.priority') {\n let newNode;\n if (viewCache.serverCache.isFullyInitialized()) {\n newNode = writeTreeRefCalcCompleteEventCache(\n writesCache,\n viewCacheGetCompleteServerSnap(viewCache)\n );\n } else {\n const serverChildren = viewCache.serverCache.getNode();\n assert(\n serverChildren instanceof ChildrenNode,\n 'serverChildren would be complete if leaf node'\n );\n newNode = writeTreeRefCalcCompleteEventChildren(\n writesCache,\n serverChildren as ChildrenNode\n );\n }\n newNode = newNode as Node;\n newEventCache = viewProcessor.filter.updateFullNode(\n oldEventCache,\n newNode,\n accumulator\n );\n } else {\n const childKey = pathGetFront(path);\n let newChild = writeTreeRefCalcCompleteChild(\n writesCache,\n childKey,\n viewCache.serverCache\n );\n if (\n newChild == null &&\n viewCache.serverCache.isCompleteForChild(childKey)\n ) {\n newChild = oldEventCache.getImmediateChild(childKey);\n }\n if (newChild != null) {\n newEventCache = viewProcessor.filter.updateChild(\n oldEventCache,\n childKey,\n newChild,\n pathPopFront(path),\n source,\n accumulator\n );\n } else if (viewCache.eventCache.getNode().hasChild(childKey)) {\n // No complete child available, delete the existing one, if any\n newEventCache = viewProcessor.filter.updateChild(\n oldEventCache,\n childKey,\n ChildrenNode.EMPTY_NODE,\n pathPopFront(path),\n source,\n accumulator\n );\n } else {\n newEventCache = oldEventCache;\n }\n if (\n newEventCache.isEmpty() &&\n viewCache.serverCache.isFullyInitialized()\n ) {\n // We might have reverted all child writes. Maybe the old event was a leaf node\n complete = writeTreeRefCalcCompleteEventCache(\n writesCache,\n viewCacheGetCompleteServerSnap(viewCache)\n );\n if (complete.isLeafNode()) {\n newEventCache = viewProcessor.filter.updateFullNode(\n newEventCache,\n complete,\n accumulator\n );\n }\n }\n }\n complete =\n viewCache.serverCache.isFullyInitialized() ||\n writeTreeRefShadowingWrite(writesCache, newEmptyPath()) != null;\n return viewCacheUpdateEventSnap(\n viewCache,\n newEventCache,\n complete,\n viewProcessor.filter.filtersNodes()\n );\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\nimport { Operation, OperationType } from '../operation/Operation';\nimport { ChildrenNode } from '../snap/ChildrenNode';\nimport { PRIORITY_INDEX } from '../snap/indexes/PriorityIndex';\nimport { Node } from '../snap/Node';\nimport { Path, pathGetFront, pathIsEmpty } from '../util/Path';\nimport { WriteTreeRef } from '../WriteTree';\n\nimport { CacheNode } from './CacheNode';\nimport { Change, changeChildAdded, changeValue } from './Change';\nimport { CancelEvent, Event } from './Event';\nimport {\n EventGenerator,\n eventGeneratorGenerateEventsForChanges\n} from './EventGenerator';\nimport { EventRegistration, QueryContext } from './EventRegistration';\nimport { IndexedFilter } from './filter/IndexedFilter';\nimport { queryParamsGetNodeFilter } from './QueryParams';\nimport {\n newViewCache,\n ViewCache,\n viewCacheGetCompleteEventSnap,\n viewCacheGetCompleteServerSnap\n} from './ViewCache';\nimport {\n newViewProcessor,\n ViewProcessor,\n viewProcessorApplyOperation,\n viewProcessorAssertIndexed\n} from './ViewProcessor';\n\n/**\n * A view represents a specific location and query that has 1 or more event registrations.\n *\n * It does several things:\n * - Maintains the list of event registrations for this location/query.\n * - Maintains a cache of the data visible for this location/query.\n * - Applies new operations (via applyOperation), updates the cache, and based on the event\n * registrations returns the set of events to be raised.\n */\nexport class View {\n processor_: ViewProcessor;\n viewCache_: ViewCache;\n eventRegistrations_: EventRegistration[] = [];\n eventGenerator_: EventGenerator;\n\n constructor(private query_: QueryContext, initialViewCache: ViewCache) {\n const params = this.query_._queryParams;\n\n const indexFilter = new IndexedFilter(params.getIndex());\n const filter = queryParamsGetNodeFilter(params);\n\n this.processor_ = newViewProcessor(filter);\n\n const initialServerCache = initialViewCache.serverCache;\n const initialEventCache = initialViewCache.eventCache;\n\n // Don't filter server node with other filter than index, wait for tagged listen\n const serverSnap = indexFilter.updateFullNode(\n ChildrenNode.EMPTY_NODE,\n initialServerCache.getNode(),\n null\n );\n const eventSnap = filter.updateFullNode(\n ChildrenNode.EMPTY_NODE,\n initialEventCache.getNode(),\n null\n );\n const newServerCache = new CacheNode(\n serverSnap,\n initialServerCache.isFullyInitialized(),\n indexFilter.filtersNodes()\n );\n const newEventCache = new CacheNode(\n eventSnap,\n initialEventCache.isFullyInitialized(),\n filter.filtersNodes()\n );\n\n this.viewCache_ = newViewCache(newEventCache, newServerCache);\n this.eventGenerator_ = new EventGenerator(this.query_);\n }\n\n get query(): QueryContext {\n return this.query_;\n }\n}\n\nexport function viewGetServerCache(view: View): Node | null {\n return view.viewCache_.serverCache.getNode();\n}\n\nexport function viewGetCompleteNode(view: View): Node | null {\n return viewCacheGetCompleteEventSnap(view.viewCache_);\n}\n\nexport function viewGetCompleteServerCache(\n view: View,\n path: Path\n): Node | null {\n const cache = viewCacheGetCompleteServerSnap(view.viewCache_);\n if (cache) {\n // If this isn't a \"loadsAllData\" view, then cache isn't actually a complete cache and\n // we need to see if it contains the child we're interested in.\n if (\n view.query._queryParams.loadsAllData() ||\n (!pathIsEmpty(path) &&\n !cache.getImmediateChild(pathGetFront(path)).isEmpty())\n ) {\n return cache.getChild(path);\n }\n }\n return null;\n}\n\nexport function viewIsEmpty(view: View): boolean {\n return view.eventRegistrations_.length === 0;\n}\n\nexport function viewAddEventRegistration(\n view: View,\n eventRegistration: EventRegistration\n) {\n view.eventRegistrations_.push(eventRegistration);\n}\n\n/**\n * @param eventRegistration - If null, remove all callbacks.\n * @param cancelError - If a cancelError is provided, appropriate cancel events will be returned.\n * @returns Cancel events, if cancelError was provided.\n */\nexport function viewRemoveEventRegistration(\n view: View,\n eventRegistration: EventRegistration | null,\n cancelError?: Error\n): Event[] {\n const cancelEvents: CancelEvent[] = [];\n if (cancelError) {\n assert(\n eventRegistration == null,\n 'A cancel should cancel all event registrations.'\n );\n const path = view.query._path;\n view.eventRegistrations_.forEach(registration => {\n const maybeEvent = registration.createCancelEvent(cancelError, path);\n if (maybeEvent) {\n cancelEvents.push(maybeEvent);\n }\n });\n }\n\n if (eventRegistration) {\n let remaining = [];\n for (let i = 0; i < view.eventRegistrations_.length; ++i) {\n const existing = view.eventRegistrations_[i];\n if (!existing.matches(eventRegistration)) {\n remaining.push(existing);\n } else if (eventRegistration.hasAnyCallback()) {\n // We're removing just this one\n remaining = remaining.concat(view.eventRegistrations_.slice(i + 1));\n break;\n }\n }\n view.eventRegistrations_ = remaining;\n } else {\n view.eventRegistrations_ = [];\n }\n return cancelEvents;\n}\n\n/**\n * Applies the given Operation, updates our cache, and returns the appropriate events.\n */\nexport function viewApplyOperation(\n view: View,\n operation: Operation,\n writesCache: WriteTreeRef,\n completeServerCache: Node | null\n): Event[] {\n if (\n operation.type === OperationType.MERGE &&\n operation.source.queryId !== null\n ) {\n assert(\n viewCacheGetCompleteServerSnap(view.viewCache_),\n 'We should always have a full cache before handling merges'\n );\n assert(\n viewCacheGetCompleteEventSnap(view.viewCache_),\n 'Missing event cache, even though we have a server cache'\n );\n }\n\n const oldViewCache = view.viewCache_;\n const result = viewProcessorApplyOperation(\n view.processor_,\n oldViewCache,\n operation,\n writesCache,\n completeServerCache\n );\n viewProcessorAssertIndexed(view.processor_, result.viewCache);\n\n assert(\n result.viewCache.serverCache.isFullyInitialized() ||\n !oldViewCache.serverCache.isFullyInitialized(),\n 'Once a server snap is complete, it should never go back'\n );\n\n view.viewCache_ = result.viewCache;\n\n return viewGenerateEventsForChanges_(\n view,\n result.changes,\n result.viewCache.eventCache.getNode(),\n null\n );\n}\n\nexport function viewGetInitialEvents(\n view: View,\n registration: EventRegistration\n): Event[] {\n const eventSnap = view.viewCache_.eventCache;\n const initialChanges: Change[] = [];\n if (!eventSnap.getNode().isLeafNode()) {\n const eventNode = eventSnap.getNode() as ChildrenNode;\n eventNode.forEachChild(PRIORITY_INDEX, (key, childNode) => {\n initialChanges.push(changeChildAdded(key, childNode));\n });\n }\n if (eventSnap.isFullyInitialized()) {\n initialChanges.push(changeValue(eventSnap.getNode()));\n }\n return viewGenerateEventsForChanges_(\n view,\n initialChanges,\n eventSnap.getNode(),\n registration\n );\n}\n\nfunction viewGenerateEventsForChanges_(\n view: View,\n changes: Change[],\n eventCache: Node,\n eventRegistration?: EventRegistration\n): Event[] {\n const registrations = eventRegistration\n ? [eventRegistration]\n : view.eventRegistrations_;\n return eventGeneratorGenerateEventsForChanges(\n view.eventGenerator_,\n changes,\n eventCache,\n registrations\n );\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\nimport { ChildrenNode } from '../snap/ChildrenNode';\nimport { PRIORITY_INDEX } from '../snap/indexes/PriorityIndex';\nimport { LeafNode } from '../snap/LeafNode';\nimport { Node } from '../snap/Node';\nimport { nodeFromJSON } from '../snap/nodeFromJSON';\nimport { SyncTree, syncTreeCalcCompleteEventCache } from '../SyncTree';\n\nimport { Indexable } from './misc';\nimport { Path, pathChild } from './Path';\n\n/* It's critical for performance that we do not calculate actual values from a SyncTree\n * unless and until the value is needed. Because we expose both a SyncTree and Node\n * version of deferred value resolution, we ned a wrapper class that will let us share\n * code.\n *\n * @see https://github.com/firebase/firebase-js-sdk/issues/2487\n */\ninterface ValueProvider {\n getImmediateChild(childName: string): ValueProvider;\n node(): Node;\n}\n\nclass ExistingValueProvider implements ValueProvider {\n constructor(readonly node_: Node) {}\n\n getImmediateChild(childName: string): ValueProvider {\n const child = this.node_.getImmediateChild(childName);\n return new ExistingValueProvider(child);\n }\n\n node(): Node {\n return this.node_;\n }\n}\n\nclass DeferredValueProvider implements ValueProvider {\n private syncTree_: SyncTree;\n private path_: Path;\n\n constructor(syncTree: SyncTree, path: Path) {\n this.syncTree_ = syncTree;\n this.path_ = path;\n }\n\n getImmediateChild(childName: string): ValueProvider {\n const childPath = pathChild(this.path_, childName);\n return new DeferredValueProvider(this.syncTree_, childPath);\n }\n\n node(): Node {\n return syncTreeCalcCompleteEventCache(this.syncTree_, this.path_);\n }\n}\n\n/**\n * Generate placeholders for deferred values.\n */\nexport const generateWithValues = function (\n values: {\n [k: string]: unknown;\n } | null\n): { [k: string]: unknown } {\n values = values || {};\n values['timestamp'] = values['timestamp'] || new Date().getTime();\n return values;\n};\n\n/**\n * Value to use when firing local events. When writing server values, fire\n * local events with an approximate value, otherwise return value as-is.\n */\nexport const resolveDeferredLeafValue = function (\n value: { [k: string]: unknown } | string | number | boolean,\n existingVal: ValueProvider,\n serverValues: { [k: string]: unknown }\n): string | number | boolean {\n if (!value || typeof value !== 'object') {\n return value as string | number | boolean;\n }\n assert('.sv' in value, 'Unexpected leaf node or priority contents');\n\n if (typeof value['.sv'] === 'string') {\n return resolveScalarDeferredValue(value['.sv'], existingVal, serverValues);\n } else if (typeof value['.sv'] === 'object') {\n return resolveComplexDeferredValue(value['.sv'], existingVal, serverValues);\n } else {\n assert(false, 'Unexpected server value: ' + JSON.stringify(value, null, 2));\n }\n};\n\nconst resolveScalarDeferredValue = function (\n op: string,\n existing: ValueProvider,\n serverValues: { [k: string]: unknown }\n): string | number | boolean {\n switch (op) {\n case 'timestamp':\n return serverValues['timestamp'] as string | number | boolean;\n default:\n assert(false, 'Unexpected server value: ' + op);\n }\n};\n\nconst resolveComplexDeferredValue = function (\n op: object,\n existing: ValueProvider,\n unused: { [k: string]: unknown }\n): string | number | boolean {\n if (!op.hasOwnProperty('increment')) {\n assert(false, 'Unexpected server value: ' + JSON.stringify(op, null, 2));\n }\n const delta = op['increment'];\n if (typeof delta !== 'number') {\n assert(false, 'Unexpected increment value: ' + delta);\n }\n\n const existingNode = existing.node();\n assert(\n existingNode !== null && typeof existingNode !== 'undefined',\n 'Expected ChildrenNode.EMPTY_NODE for nulls'\n );\n\n // Incrementing a non-number sets the value to the incremented amount\n if (!existingNode.isLeafNode()) {\n return delta;\n }\n\n const leaf = existingNode as LeafNode;\n const existingVal = leaf.getValue();\n if (typeof existingVal !== 'number') {\n return delta;\n }\n\n // No need to do over/underflow arithmetic here because JS only handles floats under the covers\n return existingVal + delta;\n};\n\n/**\n * Recursively replace all deferred values and priorities in the tree with the\n * specified generated replacement values.\n * @param path - path to which write is relative\n * @param node - new data written at path\n * @param syncTree - current data\n */\nexport const resolveDeferredValueTree = function (\n path: Path,\n node: Node,\n syncTree: SyncTree,\n serverValues: Indexable\n): Node {\n return resolveDeferredValue(\n node,\n new DeferredValueProvider(syncTree, path),\n serverValues\n );\n};\n\n/**\n * Recursively replace all deferred values and priorities in the node with the\n * specified generated replacement values. If there are no server values in the node,\n * it'll be returned as-is.\n */\nexport const resolveDeferredValueSnapshot = function (\n node: Node,\n existing: Node,\n serverValues: Indexable\n): Node {\n return resolveDeferredValue(\n node,\n new ExistingValueProvider(existing),\n serverValues\n );\n};\n\nfunction resolveDeferredValue(\n node: Node,\n existingVal: ValueProvider,\n serverValues: Indexable\n): Node {\n const rawPri = node.getPriority().val() as\n | Indexable\n | boolean\n | null\n | number\n | string;\n const priority = resolveDeferredLeafValue(\n rawPri,\n existingVal.getImmediateChild('.priority'),\n serverValues\n );\n let newNode: Node;\n\n if (node.isLeafNode()) {\n const leafNode = node as LeafNode;\n const value = resolveDeferredLeafValue(\n leafNode.getValue(),\n existingVal,\n serverValues\n );\n if (\n value !== leafNode.getValue() ||\n priority !== leafNode.getPriority().val()\n ) {\n return new LeafNode(value, nodeFromJSON(priority));\n } else {\n return node;\n }\n } else {\n const childrenNode = node as ChildrenNode;\n newNode = childrenNode;\n if (priority !== childrenNode.getPriority().val()) {\n newNode = newNode.updatePriority(new LeafNode(priority));\n }\n childrenNode.forEachChild(PRIORITY_INDEX, (childName, childNode) => {\n const newChildNode = resolveDeferredValue(\n childNode,\n existingVal.getImmediateChild(childName),\n serverValues\n );\n if (newChildNode !== childNode) {\n newNode = newNode.updateImmediateChild(childName, newChildNode);\n }\n });\n return newNode;\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { contains, safeGet } from '@firebase/util';\n\nimport { Path, pathGetFront, pathPopFront } from './Path';\nimport { each } from './util';\n\n/**\n * Node in a Tree.\n */\nexport interface TreeNode<T> {\n // TODO: Consider making accessors that create children and value lazily or\n // separate Internal / Leaf 'types'.\n children: Record<string, TreeNode<T>>;\n childCount: number;\n value?: T;\n}\n\n/**\n * A light-weight tree, traversable by path. Nodes can have both values and children.\n * Nodes are not enumerated (by forEachChild) unless they have a value or non-empty\n * children.\n */\nexport class Tree<T> {\n /**\n * @param name - Optional name of the node.\n * @param parent - Optional parent node.\n * @param node - Optional node to wrap.\n */\n constructor(\n readonly name: string = '',\n readonly parent: Tree<T> | null = null,\n public node: TreeNode<T> = { children: {}, childCount: 0 }\n ) {}\n}\n\n/**\n * Returns a sub-Tree for the given path.\n *\n * @param pathObj - Path to look up.\n * @returns Tree for path.\n */\nexport function treeSubTree<T>(tree: Tree<T>, pathObj: string | Path): Tree<T> {\n // TODO: Require pathObj to be Path?\n let path = pathObj instanceof Path ? pathObj : new Path(pathObj);\n let child = tree,\n next = pathGetFront(path);\n while (next !== null) {\n const childNode = safeGet(child.node.children, next) || {\n children: {},\n childCount: 0\n };\n child = new Tree<T>(next, child, childNode);\n path = pathPopFront(path);\n next = pathGetFront(path);\n }\n\n return child;\n}\n\n/**\n * Returns the data associated with this tree node.\n *\n * @returns The data or null if no data exists.\n */\nexport function treeGetValue<T>(tree: Tree<T>): T | undefined {\n return tree.node.value;\n}\n\n/**\n * Sets data to this tree node.\n *\n * @param value - Value to set.\n */\nexport function treeSetValue<T>(tree: Tree<T>, value: T | undefined): void {\n tree.node.value = value;\n treeUpdateParents(tree);\n}\n\n/**\n * @returns Whether the tree has any children.\n */\nexport function treeHasChildren<T>(tree: Tree<T>): boolean {\n return tree.node.childCount > 0;\n}\n\n/**\n * @returns Whethe rthe tree is empty (no value or children).\n */\nexport function treeIsEmpty<T>(tree: Tree<T>): boolean {\n return treeGetValue(tree) === undefined && !treeHasChildren(tree);\n}\n\n/**\n * Calls action for each child of this tree node.\n *\n * @param action - Action to be called for each child.\n */\nexport function treeForEachChild<T>(\n tree: Tree<T>,\n action: (tree: Tree<T>) => void\n): void {\n each(tree.node.children, (child: string, childTree: TreeNode<T>) => {\n action(new Tree<T>(child, tree, childTree));\n });\n}\n\n/**\n * Does a depth-first traversal of this node's descendants, calling action for each one.\n *\n * @param action - Action to be called for each child.\n * @param includeSelf - Whether to call action on this node as well. Defaults to\n * false.\n * @param childrenFirst - Whether to call action on children before calling it on\n * parent.\n */\nexport function treeForEachDescendant<T>(\n tree: Tree<T>,\n action: (tree: Tree<T>) => void,\n includeSelf?: boolean,\n childrenFirst?: boolean\n): void {\n if (includeSelf && !childrenFirst) {\n action(tree);\n }\n\n treeForEachChild(tree, child => {\n treeForEachDescendant(child, action, true, childrenFirst);\n });\n\n if (includeSelf && childrenFirst) {\n action(tree);\n }\n}\n\n/**\n * Calls action on each ancestor node.\n *\n * @param action - Action to be called on each parent; return\n * true to abort.\n * @param includeSelf - Whether to call action on this node as well.\n * @returns true if the action callback returned true.\n */\nexport function treeForEachAncestor<T>(\n tree: Tree<T>,\n action: (tree: Tree<T>) => unknown,\n includeSelf?: boolean\n): boolean {\n let node = includeSelf ? tree : tree.parent;\n while (node !== null) {\n if (action(node)) {\n return true;\n }\n node = node.parent;\n }\n return false;\n}\n\n/**\n * Does a depth-first traversal of this node's descendants. When a descendant with a value\n * is found, action is called on it and traversal does not continue inside the node.\n * Action is *not* called on this node.\n *\n * @param action - Action to be called for each child.\n */\nexport function treeForEachImmediateDescendantWithValue<T>(\n tree: Tree<T>,\n action: (tree: Tree<T>) => void\n): void {\n treeForEachChild(tree, child => {\n if (treeGetValue(child) !== undefined) {\n action(child);\n } else {\n treeForEachImmediateDescendantWithValue(child, action);\n }\n });\n}\n\n/**\n * @returns The path of this tree node, as a Path.\n */\nexport function treeGetPath<T>(tree: Tree<T>) {\n return new Path(\n tree.parent === null\n ? tree.name\n : treeGetPath(tree.parent) + '/' + tree.name\n );\n}\n\n/**\n * Adds or removes this child from its parent based on whether it's empty or not.\n */\nfunction treeUpdateParents<T>(tree: Tree<T>) {\n if (tree.parent !== null) {\n treeUpdateChild(tree.parent, tree.name, tree);\n }\n}\n\n/**\n * Adds or removes the passed child to this tree node, depending on whether it's empty.\n *\n * @param childName - The name of the child to update.\n * @param child - The child to update.\n */\nfunction treeUpdateChild<T>(tree: Tree<T>, childName: string, child: Tree<T>) {\n const childEmpty = treeIsEmpty(child);\n const childExists = contains(tree.node.children, childName);\n if (childEmpty && childExists) {\n delete tree.node.children[childName];\n tree.node.childCount--;\n treeUpdateParents(tree);\n } else if (!childEmpty && !childExists) {\n tree.node.children[childName] = child.node;\n tree.node.childCount++;\n treeUpdateParents(tree);\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n contains,\n errorPrefix as errorPrefixFxn,\n safeGet,\n stringLength\n} from '@firebase/util';\n\nimport { RepoInfo } from '../RepoInfo';\n\nimport {\n Path,\n pathChild,\n pathCompare,\n pathContains,\n pathGetBack,\n pathGetFront,\n pathSlice,\n ValidationPath,\n validationPathPop,\n validationPathPush,\n validationPathToErrorString\n} from './Path';\nimport { each, isInvalidJSONNumber } from './util';\n\n/**\n * True for invalid Firebase keys\n */\nexport const INVALID_KEY_REGEX_ = /[\\[\\].#$\\/\\u0000-\\u001F\\u007F]/;\n\n/**\n * True for invalid Firebase paths.\n * Allows '/' in paths.\n */\nexport const INVALID_PATH_REGEX_ = /[\\[\\].#$\\u0000-\\u001F\\u007F]/;\n\n/**\n * Maximum number of characters to allow in leaf value\n */\nexport const MAX_LEAF_SIZE_ = 10 * 1024 * 1024;\n\nexport const isValidKey = function (key: unknown): boolean {\n return (\n typeof key === 'string' && key.length !== 0 && !INVALID_KEY_REGEX_.test(key)\n );\n};\n\nexport const isValidPathString = function (pathString: string): boolean {\n return (\n typeof pathString === 'string' &&\n pathString.length !== 0 &&\n !INVALID_PATH_REGEX_.test(pathString)\n );\n};\n\nexport const isValidRootPathString = function (pathString: string): boolean {\n if (pathString) {\n // Allow '/.info/' at the beginning.\n pathString = pathString.replace(/^\\/*\\.info(\\/|$)/, '/');\n }\n\n return isValidPathString(pathString);\n};\n\nexport const isValidPriority = function (priority: unknown): boolean {\n return (\n priority === null ||\n typeof priority === 'string' ||\n (typeof priority === 'number' && !isInvalidJSONNumber(priority)) ||\n (priority &&\n typeof priority === 'object' &&\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n contains(priority as any, '.sv'))\n );\n};\n\n/**\n * Pre-validate a datum passed as an argument to Firebase function.\n */\nexport const validateFirebaseDataArg = function (\n fnName: string,\n value: unknown,\n path: Path,\n optional: boolean\n) {\n if (optional && value === undefined) {\n return;\n }\n\n validateFirebaseData(errorPrefixFxn(fnName, 'value'), value, path);\n};\n\n/**\n * Validate a data object client-side before sending to server.\n */\nexport const validateFirebaseData = function (\n errorPrefix: string,\n data: unknown,\n path_: Path | ValidationPath\n) {\n const path =\n path_ instanceof Path ? new ValidationPath(path_, errorPrefix) : path_;\n\n if (data === undefined) {\n throw new Error(\n errorPrefix + 'contains undefined ' + validationPathToErrorString(path)\n );\n }\n if (typeof data === 'function') {\n throw new Error(\n errorPrefix +\n 'contains a function ' +\n validationPathToErrorString(path) +\n ' with contents = ' +\n data.toString()\n );\n }\n if (isInvalidJSONNumber(data)) {\n throw new Error(\n errorPrefix +\n 'contains ' +\n data.toString() +\n ' ' +\n validationPathToErrorString(path)\n );\n }\n\n // Check max leaf size, but try to avoid the utf8 conversion if we can.\n if (\n typeof data === 'string' &&\n data.length > MAX_LEAF_SIZE_ / 3 &&\n stringLength(data) > MAX_LEAF_SIZE_\n ) {\n throw new Error(\n errorPrefix +\n 'contains a string greater than ' +\n MAX_LEAF_SIZE_ +\n ' utf8 bytes ' +\n validationPathToErrorString(path) +\n \" ('\" +\n data.substring(0, 50) +\n \"...')\"\n );\n }\n\n // TODO = Perf = Consider combining the recursive validation of keys into NodeFromJSON\n // to save extra walking of large objects.\n if (data && typeof data === 'object') {\n let hasDotValue = false;\n let hasActualChild = false;\n each(data, (key: string, value: unknown) => {\n if (key === '.value') {\n hasDotValue = true;\n } else if (key !== '.priority' && key !== '.sv') {\n hasActualChild = true;\n if (!isValidKey(key)) {\n throw new Error(\n errorPrefix +\n ' contains an invalid key (' +\n key +\n ') ' +\n validationPathToErrorString(path) +\n '. Keys must be non-empty strings ' +\n 'and can\\'t contain \".\", \"#\", \"$\", \"/\", \"[\", or \"]\"'\n );\n }\n }\n\n validationPathPush(path, key);\n validateFirebaseData(errorPrefix, value, path);\n validationPathPop(path);\n });\n\n if (hasDotValue && hasActualChild) {\n throw new Error(\n errorPrefix +\n ' contains \".value\" child ' +\n validationPathToErrorString(path) +\n ' in addition to actual children.'\n );\n }\n }\n};\n\n/**\n * Pre-validate paths passed in the firebase function.\n */\nexport const validateFirebaseMergePaths = function (\n errorPrefix: string,\n mergePaths: Path[]\n) {\n let i, curPath: Path;\n for (i = 0; i < mergePaths.length; i++) {\n curPath = mergePaths[i];\n const keys = pathSlice(curPath);\n for (let j = 0; j < keys.length; j++) {\n if (keys[j] === '.priority' && j === keys.length - 1) {\n // .priority is OK\n } else if (!isValidKey(keys[j])) {\n throw new Error(\n errorPrefix +\n 'contains an invalid key (' +\n keys[j] +\n ') in path ' +\n curPath.toString() +\n '. Keys must be non-empty strings ' +\n 'and can\\'t contain \".\", \"#\", \"$\", \"/\", \"[\", or \"]\"'\n );\n }\n }\n }\n\n // Check that update keys are not descendants of each other.\n // We rely on the property that sorting guarantees that ancestors come\n // right before descendants.\n mergePaths.sort(pathCompare);\n let prevPath: Path | null = null;\n for (i = 0; i < mergePaths.length; i++) {\n curPath = mergePaths[i];\n if (prevPath !== null && pathContains(prevPath, curPath)) {\n throw new Error(\n errorPrefix +\n 'contains a path ' +\n prevPath.toString() +\n ' that is ancestor of another path ' +\n curPath.toString()\n );\n }\n prevPath = curPath;\n }\n};\n\n/**\n * pre-validate an object passed as an argument to firebase function (\n * must be an object - e.g. for firebase.update()).\n */\nexport const validateFirebaseMergeDataArg = function (\n fnName: string,\n data: unknown,\n path: Path,\n optional: boolean\n) {\n if (optional && data === undefined) {\n return;\n }\n\n const errorPrefix = errorPrefixFxn(fnName, 'values');\n\n if (!(data && typeof data === 'object') || Array.isArray(data)) {\n throw new Error(\n errorPrefix + ' must be an object containing the children to replace.'\n );\n }\n\n const mergePaths: Path[] = [];\n each(data, (key: string, value: unknown) => {\n const curPath = new Path(key);\n validateFirebaseData(errorPrefix, value, pathChild(path, curPath));\n if (pathGetBack(curPath) === '.priority') {\n if (!isValidPriority(value)) {\n throw new Error(\n errorPrefix +\n \"contains an invalid value for '\" +\n curPath.toString() +\n \"', which must be a valid \" +\n 'Firebase priority (a string, finite number, server value, or null).'\n );\n }\n }\n mergePaths.push(curPath);\n });\n validateFirebaseMergePaths(errorPrefix, mergePaths);\n};\n\nexport const validatePriority = function (\n fnName: string,\n priority: unknown,\n optional: boolean\n) {\n if (optional && priority === undefined) {\n return;\n }\n if (isInvalidJSONNumber(priority)) {\n throw new Error(\n errorPrefixFxn(fnName, 'priority') +\n 'is ' +\n priority.toString() +\n ', but must be a valid Firebase priority (a string, finite number, ' +\n 'server value, or null).'\n );\n }\n // Special case to allow importing data with a .sv.\n if (!isValidPriority(priority)) {\n throw new Error(\n errorPrefixFxn(fnName, 'priority') +\n 'must be a valid Firebase priority ' +\n '(a string, finite number, server value, or null).'\n );\n }\n};\n\nexport const validateKey = function (\n fnName: string,\n argumentName: string,\n key: string,\n optional: boolean\n) {\n if (optional && key === undefined) {\n return;\n }\n if (!isValidKey(key)) {\n throw new Error(\n errorPrefixFxn(fnName, argumentName) +\n 'was an invalid key = \"' +\n key +\n '\". Firebase keys must be non-empty strings and ' +\n 'can\\'t contain \".\", \"#\", \"$\", \"/\", \"[\", or \"]\").'\n );\n }\n};\n\n/**\n * @internal\n */\nexport const validatePathString = function (\n fnName: string,\n argumentName: string,\n pathString: string,\n optional: boolean\n) {\n if (optional && pathString === undefined) {\n return;\n }\n\n if (!isValidPathString(pathString)) {\n throw new Error(\n errorPrefixFxn(fnName, argumentName) +\n 'was an invalid path = \"' +\n pathString +\n '\". Paths must be non-empty strings and ' +\n 'can\\'t contain \".\", \"#\", \"$\", \"[\", or \"]\"'\n );\n }\n};\n\nexport const validateRootPathString = function (\n fnName: string,\n argumentName: string,\n pathString: string,\n optional: boolean\n) {\n if (pathString) {\n // Allow '/.info/' at the beginning.\n pathString = pathString.replace(/^\\/*\\.info(\\/|$)/, '/');\n }\n\n validatePathString(fnName, argumentName, pathString, optional);\n};\n\n/**\n * @internal\n */\nexport const validateWritablePath = function (fnName: string, path: Path) {\n if (pathGetFront(path) === '.info') {\n throw new Error(fnName + \" failed = Can't modify data under /.info/\");\n }\n};\n\nexport const validateUrl = function (\n fnName: string,\n parsedUrl: { repoInfo: RepoInfo; path: Path }\n) {\n // TODO = Validate server better.\n const pathString = parsedUrl.path.toString();\n if (\n !(typeof parsedUrl.repoInfo.host === 'string') ||\n parsedUrl.repoInfo.host.length === 0 ||\n (!isValidKey(parsedUrl.repoInfo.namespace) &&\n parsedUrl.repoInfo.host.split(':')[0] !== 'localhost') ||\n (pathString.length !== 0 && !isValidRootPathString(pathString))\n ) {\n throw new Error(\n errorPrefixFxn(fnName, 'url') +\n 'must be a valid firebase URL and ' +\n 'the path can\\'t contain \".\", \"#\", \"$\", \"[\", or \"]\".'\n );\n }\n};\n\nexport const validateString = function (\n fnName: string,\n argumentName: string,\n string: unknown,\n optional: boolean\n) {\n if (optional && string === undefined) {\n return;\n }\n if (!(typeof string === 'string')) {\n throw new Error(\n errorPrefixFxn(fnName, argumentName) + 'must be a valid string.'\n );\n }\n};\n\nexport const validateObject = function (\n fnName: string,\n argumentName: string,\n obj: unknown,\n optional: boolean\n) {\n if (optional && obj === undefined) {\n return;\n }\n if (!(obj && typeof obj === 'object') || obj === null) {\n throw new Error(\n errorPrefixFxn(fnName, argumentName) + 'must be a valid object.'\n );\n }\n};\n\nexport const validateObjectContainsKey = function (\n fnName: string,\n argumentName: string,\n obj: unknown,\n key: string,\n optional: boolean,\n optType?: string\n) {\n const objectContainsKey =\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n obj && typeof obj === 'object' && contains(obj as any, key);\n\n if (!objectContainsKey) {\n if (optional) {\n return;\n } else {\n throw new Error(\n errorPrefixFxn(fnName, argumentName) +\n 'must contain the key \"' +\n key +\n '\"'\n );\n }\n }\n\n if (optType) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const val = safeGet(obj as any, key);\n if (\n (optType === 'number' && !(typeof val === 'number')) ||\n (optType === 'string' && !(typeof val === 'string')) ||\n (optType === 'boolean' && !(typeof val === 'boolean')) ||\n (optType === 'function' && !(typeof val === 'function')) ||\n (optType === 'object' && !(typeof val === 'object') && val)\n ) {\n if (optional) {\n throw new Error(\n errorPrefixFxn(fnName, argumentName) +\n 'contains invalid value for key \"' +\n key +\n '\" (must be of type \"' +\n optType +\n '\")'\n );\n } else {\n throw new Error(\n errorPrefixFxn(fnName, argumentName) +\n 'must contain the key \"' +\n key +\n '\" with type \"' +\n optType +\n '\"'\n );\n }\n }\n }\n};\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Path, pathContains, pathEquals } from '../util/Path';\nimport { exceptionGuard, log, logger } from '../util/util';\n\nimport { Event } from './Event';\n\n/**\n * The event queue serves a few purposes:\n * 1. It ensures we maintain event order in the face of event callbacks doing operations that result in more\n * events being queued.\n * 2. raiseQueuedEvents() handles being called reentrantly nicely. That is, if in the course of raising events,\n * raiseQueuedEvents() is called again, the \"inner\" call will pick up raising events where the \"outer\" call\n * left off, ensuring that the events are still raised synchronously and in order.\n * 3. You can use raiseEventsAtPath and raiseEventsForChangedPath to ensure only relevant previously-queued\n * events are raised synchronously.\n *\n * NOTE: This can all go away if/when we move to async events.\n *\n */\nexport class EventQueue {\n eventLists_: EventList[] = [];\n\n /**\n * Tracks recursion depth of raiseQueuedEvents_, for debugging purposes.\n */\n recursionDepth_ = 0;\n}\n\n/**\n * @param eventDataList - The new events to queue.\n */\nexport function eventQueueQueueEvents(\n eventQueue: EventQueue,\n eventDataList: Event[]\n) {\n // We group events by path, storing them in a single EventList, to make it easier to skip over them quickly.\n let currList: EventList | null = null;\n for (let i = 0; i < eventDataList.length; i++) {\n const data = eventDataList[i];\n const path = data.getPath();\n if (currList !== null && !pathEquals(path, currList.path)) {\n eventQueue.eventLists_.push(currList);\n currList = null;\n }\n\n if (currList === null) {\n currList = { events: [], path };\n }\n\n currList.events.push(data);\n }\n if (currList) {\n eventQueue.eventLists_.push(currList);\n }\n}\n\n/**\n * Queues the specified events and synchronously raises all events (including previously queued ones)\n * for the specified path.\n *\n * It is assumed that the new events are all for the specified path.\n *\n * @param path - The path to raise events for.\n * @param eventDataList - The new events to raise.\n */\nexport function eventQueueRaiseEventsAtPath(\n eventQueue: EventQueue,\n path: Path,\n eventDataList: Event[]\n) {\n eventQueueQueueEvents(eventQueue, eventDataList);\n eventQueueRaiseQueuedEventsMatchingPredicate(eventQueue, eventPath =>\n pathEquals(eventPath, path)\n );\n}\n\n/**\n * Queues the specified events and synchronously raises all events (including previously queued ones) for\n * locations related to the specified change path (i.e. all ancestors and descendants).\n *\n * It is assumed that the new events are all related (ancestor or descendant) to the specified path.\n *\n * @param changedPath - The path to raise events for.\n * @param eventDataList - The events to raise\n */\nexport function eventQueueRaiseEventsForChangedPath(\n eventQueue: EventQueue,\n changedPath: Path,\n eventDataList: Event[]\n) {\n eventQueueQueueEvents(eventQueue, eventDataList);\n eventQueueRaiseQueuedEventsMatchingPredicate(\n eventQueue,\n eventPath =>\n pathContains(eventPath, changedPath) ||\n pathContains(changedPath, eventPath)\n );\n}\n\nfunction eventQueueRaiseQueuedEventsMatchingPredicate(\n eventQueue: EventQueue,\n predicate: (path: Path) => boolean\n) {\n eventQueue.recursionDepth_++;\n\n let sentAll = true;\n for (let i = 0; i < eventQueue.eventLists_.length; i++) {\n const eventList = eventQueue.eventLists_[i];\n if (eventList) {\n const eventPath = eventList.path;\n if (predicate(eventPath)) {\n eventListRaise(eventQueue.eventLists_[i]);\n eventQueue.eventLists_[i] = null;\n } else {\n sentAll = false;\n }\n }\n }\n\n if (sentAll) {\n eventQueue.eventLists_ = [];\n }\n\n eventQueue.recursionDepth_--;\n}\n\ninterface EventList {\n events: Event[];\n path: Path;\n}\n\n/**\n * Iterates through the list and raises each event\n */\nfunction eventListRaise(eventList: EventList) {\n for (let i = 0; i < eventList.events.length; i++) {\n const eventData = eventList.events[i];\n if (eventData !== null) {\n eventList.events[i] = null;\n const eventFn = eventData.getEventRunner();\n if (logger) {\n log('event: ' + eventData.toString());\n }\n exceptionGuard(eventFn);\n }\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n assert,\n contains,\n isEmpty,\n map,\n safeGet,\n stringify\n} from '@firebase/util';\n\nimport { ValueEventRegistration } from '../api/Reference_impl';\n\nimport { AppCheckTokenProvider } from './AppCheckTokenProvider';\nimport { AuthTokenProvider } from './AuthTokenProvider';\nimport { PersistentConnection } from './PersistentConnection';\nimport { ReadonlyRestClient } from './ReadonlyRestClient';\nimport { RepoInfo } from './RepoInfo';\nimport { ServerActions } from './ServerActions';\nimport { ChildrenNode } from './snap/ChildrenNode';\nimport { Node } from './snap/Node';\nimport { nodeFromJSON } from './snap/nodeFromJSON';\nimport { SnapshotHolder } from './SnapshotHolder';\nimport {\n newSparseSnapshotTree,\n SparseSnapshotTree,\n sparseSnapshotTreeForEachTree,\n sparseSnapshotTreeForget,\n sparseSnapshotTreeRemember\n} from './SparseSnapshotTree';\nimport { StatsCollection } from './stats/StatsCollection';\nimport { StatsListener } from './stats/StatsListener';\nimport {\n statsManagerGetCollection,\n statsManagerGetOrCreateReporter\n} from './stats/StatsManager';\nimport { StatsReporter, statsReporterIncludeStat } from './stats/StatsReporter';\nimport {\n SyncTree,\n syncTreeAckUserWrite,\n syncTreeAddEventRegistration,\n syncTreeApplyServerMerge,\n syncTreeApplyServerOverwrite,\n syncTreeApplyTaggedQueryMerge,\n syncTreeApplyTaggedQueryOverwrite,\n syncTreeApplyUserMerge,\n syncTreeApplyUserOverwrite,\n syncTreeCalcCompleteEventCache,\n syncTreeGetServerValue,\n syncTreeRemoveEventRegistration,\n syncTreeTagForQuery\n} from './SyncTree';\nimport { Indexable } from './util/misc';\nimport {\n newEmptyPath,\n newRelativePath,\n Path,\n pathChild,\n pathGetFront,\n pathPopFront\n} from './util/Path';\nimport {\n generateWithValues,\n resolveDeferredValueSnapshot,\n resolveDeferredValueTree\n} from './util/ServerValues';\nimport {\n Tree,\n treeForEachAncestor,\n treeForEachChild,\n treeForEachDescendant,\n treeGetPath,\n treeGetValue,\n treeHasChildren,\n treeSetValue,\n treeSubTree\n} from './util/Tree';\nimport {\n beingCrawled,\n each,\n exceptionGuard,\n log,\n LUIDGenerator,\n warn\n} from './util/util';\nimport { isValidPriority, validateFirebaseData } from './util/validation';\nimport { Event } from './view/Event';\nimport {\n EventQueue,\n eventQueueQueueEvents,\n eventQueueRaiseEventsAtPath,\n eventQueueRaiseEventsForChangedPath\n} from './view/EventQueue';\nimport { EventRegistration, QueryContext } from './view/EventRegistration';\n\nconst INTERRUPT_REASON = 'repo_interrupt';\n\n/**\n * If a transaction does not succeed after 25 retries, we abort it. Among other\n * things this ensure that if there's ever a bug causing a mismatch between\n * client / server hashes for some data, we won't retry indefinitely.\n */\nconst MAX_TRANSACTION_RETRIES = 25;\n\nconst enum TransactionStatus {\n // We've run the transaction and updated transactionResultData_ with the result, but it isn't currently sent to the\n // server. A transaction will go from RUN -> SENT -> RUN if it comes back from the server as rejected due to\n // mismatched hash.\n RUN,\n\n // We've run the transaction and sent it to the server and it's currently outstanding (hasn't come back as accepted\n // or rejected yet).\n SENT,\n\n // Temporary state used to mark completed transactions (whether successful or aborted). The transaction will be\n // removed when we get a chance to prune completed ones.\n COMPLETED,\n\n // Used when an already-sent transaction needs to be aborted (e.g. due to a conflicting set() call that was made).\n // If it comes back as unsuccessful, we'll abort it.\n SENT_NEEDS_ABORT,\n\n // Temporary state used to mark transactions that need to be aborted.\n NEEDS_ABORT\n}\n\ninterface Transaction {\n path: Path;\n update: (a: unknown) => unknown;\n onComplete: (\n error: Error | null,\n committed: boolean,\n node: Node | null\n ) => void;\n status: TransactionStatus;\n order: number;\n applyLocally: boolean;\n retryCount: number;\n unwatcher: () => void;\n abortReason: string | null;\n currentWriteId: number;\n currentInputSnapshot: Node | null;\n currentOutputSnapshotRaw: Node | null;\n currentOutputSnapshotResolved: Node | null;\n}\n\n/**\n * A connection to a single data repository.\n */\nexport class Repo {\n /** Key for uniquely identifying this repo, used in RepoManager */\n readonly key: string;\n\n dataUpdateCount = 0;\n infoSyncTree_: SyncTree;\n serverSyncTree_: SyncTree;\n\n stats_: StatsCollection;\n statsListener_: StatsListener | null = null;\n eventQueue_ = new EventQueue();\n nextWriteId_ = 1;\n server_: ServerActions;\n statsReporter_: StatsReporter;\n infoData_: SnapshotHolder;\n interceptServerDataCallback_: ((a: string, b: unknown) => void) | null = null;\n\n /** A list of data pieces and paths to be set when this client disconnects. */\n onDisconnect_: SparseSnapshotTree = newSparseSnapshotTree();\n\n /** Stores queues of outstanding transactions for Firebase locations. */\n transactionQueueTree_ = new Tree<Transaction[]>();\n\n // TODO: This should be @private but it's used by test_access.js and internal.js\n persistentConnection_: PersistentConnection | null = null;\n\n constructor(\n public repoInfo_: RepoInfo,\n public forceRestClient_: boolean,\n public authTokenProvider_: AuthTokenProvider,\n public appCheckProvider_: AppCheckTokenProvider\n ) {\n // This key is intentionally not updated if RepoInfo is later changed or replaced\n this.key = this.repoInfo_.toURLString();\n }\n\n /**\n * @returns The URL corresponding to the root of this Firebase.\n */\n toString(): string {\n return (\n (this.repoInfo_.secure ? 'https://' : 'http://') + this.repoInfo_.host\n );\n }\n}\n\nexport function repoStart(\n repo: Repo,\n appId: string,\n authOverride?: object\n): void {\n repo.stats_ = statsManagerGetCollection(repo.repoInfo_);\n\n if (repo.forceRestClient_ || beingCrawled()) {\n repo.server_ = new ReadonlyRestClient(\n repo.repoInfo_,\n (\n pathString: string,\n data: unknown,\n isMerge: boolean,\n tag: number | null\n ) => {\n repoOnDataUpdate(repo, pathString, data, isMerge, tag);\n },\n repo.authTokenProvider_,\n repo.appCheckProvider_\n );\n\n // Minor hack: Fire onConnect immediately, since there's no actual connection.\n setTimeout(() => repoOnConnectStatus(repo, /* connectStatus= */ true), 0);\n } else {\n // Validate authOverride\n if (typeof authOverride !== 'undefined' && authOverride !== null) {\n if (typeof authOverride !== 'object') {\n throw new Error(\n 'Only objects are supported for option databaseAuthVariableOverride'\n );\n }\n try {\n stringify(authOverride);\n } catch (e) {\n throw new Error('Invalid authOverride provided: ' + e);\n }\n }\n\n repo.persistentConnection_ = new PersistentConnection(\n repo.repoInfo_,\n appId,\n (\n pathString: string,\n data: unknown,\n isMerge: boolean,\n tag: number | null\n ) => {\n repoOnDataUpdate(repo, pathString, data, isMerge, tag);\n },\n (connectStatus: boolean) => {\n repoOnConnectStatus(repo, connectStatus);\n },\n (updates: object) => {\n repoOnServerInfoUpdate(repo, updates);\n },\n repo.authTokenProvider_,\n repo.appCheckProvider_,\n authOverride\n );\n\n repo.server_ = repo.persistentConnection_;\n }\n\n repo.authTokenProvider_.addTokenChangeListener(token => {\n repo.server_.refreshAuthToken(token);\n });\n\n repo.appCheckProvider_.addTokenChangeListener(result => {\n repo.server_.refreshAppCheckToken(result.token);\n });\n\n // In the case of multiple Repos for the same repoInfo (i.e. there are multiple Firebase.Contexts being used),\n // we only want to create one StatsReporter. As such, we'll report stats over the first Repo created.\n repo.statsReporter_ = statsManagerGetOrCreateReporter(\n repo.repoInfo_,\n () => new StatsReporter(repo.stats_, repo.server_)\n );\n\n // Used for .info.\n repo.infoData_ = new SnapshotHolder();\n repo.infoSyncTree_ = new SyncTree({\n startListening: (query, tag, currentHashFn, onComplete) => {\n let infoEvents: Event[] = [];\n const node = repo.infoData_.getNode(query._path);\n // This is possibly a hack, but we have different semantics for .info endpoints. We don't raise null events\n // on initial data...\n if (!node.isEmpty()) {\n infoEvents = syncTreeApplyServerOverwrite(\n repo.infoSyncTree_,\n query._path,\n node\n );\n setTimeout(() => {\n onComplete('ok');\n }, 0);\n }\n return infoEvents;\n },\n stopListening: () => {}\n });\n repoUpdateInfo(repo, 'connected', false);\n\n repo.serverSyncTree_ = new SyncTree({\n startListening: (query, tag, currentHashFn, onComplete) => {\n repo.server_.listen(query, currentHashFn, tag, (status, data) => {\n const events = onComplete(status, data);\n eventQueueRaiseEventsForChangedPath(\n repo.eventQueue_,\n query._path,\n events\n );\n });\n // No synchronous events for network-backed sync trees\n return [];\n },\n stopListening: (query, tag) => {\n repo.server_.unlisten(query, tag);\n }\n });\n}\n\n/**\n * @returns The time in milliseconds, taking the server offset into account if we have one.\n */\nexport function repoServerTime(repo: Repo): number {\n const offsetNode = repo.infoData_.getNode(new Path('.info/serverTimeOffset'));\n const offset = (offsetNode.val() as number) || 0;\n return new Date().getTime() + offset;\n}\n\n/**\n * Generate ServerValues using some variables from the repo object.\n */\nexport function repoGenerateServerValues(repo: Repo): Indexable {\n return generateWithValues({\n timestamp: repoServerTime(repo)\n });\n}\n\n/**\n * Called by realtime when we get new messages from the server.\n */\nfunction repoOnDataUpdate(\n repo: Repo,\n pathString: string,\n data: unknown,\n isMerge: boolean,\n tag: number | null\n): void {\n // For testing.\n repo.dataUpdateCount++;\n const path = new Path(pathString);\n data = repo.interceptServerDataCallback_\n ? repo.interceptServerDataCallback_(pathString, data)\n : data;\n let events = [];\n if (tag) {\n if (isMerge) {\n const taggedChildren = map(\n data as { [k: string]: unknown },\n (raw: unknown) => nodeFromJSON(raw)\n );\n events = syncTreeApplyTaggedQueryMerge(\n repo.serverSyncTree_,\n path,\n taggedChildren,\n tag\n );\n } else {\n const taggedSnap = nodeFromJSON(data);\n events = syncTreeApplyTaggedQueryOverwrite(\n repo.serverSyncTree_,\n path,\n taggedSnap,\n tag\n );\n }\n } else if (isMerge) {\n const changedChildren = map(\n data as { [k: string]: unknown },\n (raw: unknown) => nodeFromJSON(raw)\n );\n events = syncTreeApplyServerMerge(\n repo.serverSyncTree_,\n path,\n changedChildren\n );\n } else {\n const snap = nodeFromJSON(data);\n events = syncTreeApplyServerOverwrite(repo.serverSyncTree_, path, snap);\n }\n let affectedPath = path;\n if (events.length > 0) {\n // Since we have a listener outstanding for each transaction, receiving any events\n // is a proxy for some change having occurred.\n affectedPath = repoRerunTransactions(repo, path);\n }\n eventQueueRaiseEventsForChangedPath(repo.eventQueue_, affectedPath, events);\n}\n\n// TODO: This should be @private but it's used by test_access.js and internal.js\nexport function repoInterceptServerData(\n repo: Repo,\n callback: ((a: string, b: unknown) => unknown) | null\n): void {\n repo.interceptServerDataCallback_ = callback;\n}\n\nfunction repoOnConnectStatus(repo: Repo, connectStatus: boolean): void {\n repoUpdateInfo(repo, 'connected', connectStatus);\n if (connectStatus === false) {\n repoRunOnDisconnectEvents(repo);\n }\n}\n\nfunction repoOnServerInfoUpdate(repo: Repo, updates: object): void {\n each(updates, (key: string, value: unknown) => {\n repoUpdateInfo(repo, key, value);\n });\n}\n\nfunction repoUpdateInfo(repo: Repo, pathString: string, value: unknown): void {\n const path = new Path('/.info/' + pathString);\n const newNode = nodeFromJSON(value);\n repo.infoData_.updateSnapshot(path, newNode);\n const events = syncTreeApplyServerOverwrite(\n repo.infoSyncTree_,\n path,\n newNode\n );\n eventQueueRaiseEventsForChangedPath(repo.eventQueue_, path, events);\n}\n\nfunction repoGetNextWriteId(repo: Repo): number {\n return repo.nextWriteId_++;\n}\n\n/**\n * The purpose of `getValue` is to return the latest known value\n * satisfying `query`.\n *\n * This method will first check for in-memory cached values\n * belonging to active listeners. If they are found, such values\n * are considered to be the most up-to-date.\n *\n * If the client is not connected, this method will wait until the\n * repo has established a connection and then request the value for `query`.\n * If the client is not able to retrieve the query result for another reason,\n * it reports an error.\n *\n * @param query - The query to surface a value for.\n */\nexport function repoGetValue(\n repo: Repo,\n query: QueryContext,\n eventRegistration: ValueEventRegistration\n): Promise<Node> {\n // Only active queries are cached. There is no persisted cache.\n const cached = syncTreeGetServerValue(repo.serverSyncTree_, query);\n if (cached != null) {\n return Promise.resolve(cached);\n }\n return repo.server_.get(query).then(\n payload => {\n const node = nodeFromJSON(payload).withIndex(\n query._queryParams.getIndex()\n );\n /**\n * Below we simulate the actions of an `onlyOnce` `onValue()` event where:\n * Add an event registration,\n * Update data at the path,\n * Raise any events,\n * Cleanup the SyncTree\n */\n syncTreeAddEventRegistration(\n repo.serverSyncTree_,\n query,\n eventRegistration,\n true\n );\n let events: Event[];\n if (query._queryParams.loadsAllData()) {\n events = syncTreeApplyServerOverwrite(\n repo.serverSyncTree_,\n query._path,\n node\n );\n } else {\n const tag = syncTreeTagForQuery(repo.serverSyncTree_, query);\n events = syncTreeApplyTaggedQueryOverwrite(\n repo.serverSyncTree_,\n query._path,\n node,\n tag\n );\n }\n /*\n * We need to raise events in the scenario where `get()` is called at a parent path, and\n * while the `get()` is pending, `onValue` is called at a child location. While get() is waiting\n * for the data, `onValue` will register a new event. Then, get() will come back, and update the syncTree\n * and its corresponding serverCache, including the child location where `onValue` is called. Then,\n * `onValue` will receive the event from the server, but look at the syncTree and see that the data received\n * from the server is already at the SyncPoint, and so the `onValue` callback will never get fired.\n * Calling `eventQueueRaiseEventsForChangedPath()` is the correct way to propagate the events and\n * ensure the corresponding child events will get fired.\n */\n eventQueueRaiseEventsForChangedPath(\n repo.eventQueue_,\n query._path,\n events\n );\n syncTreeRemoveEventRegistration(\n repo.serverSyncTree_,\n query,\n eventRegistration,\n null,\n true\n );\n return node;\n },\n err => {\n repoLog(repo, 'get for query ' + stringify(query) + ' failed: ' + err);\n return Promise.reject(new Error(err as string));\n }\n );\n}\n\nexport function repoSetWithPriority(\n repo: Repo,\n path: Path,\n newVal: unknown,\n newPriority: number | string | null,\n onComplete: ((status: Error | null, errorReason?: string) => void) | null\n): void {\n repoLog(repo, 'set', {\n path: path.toString(),\n value: newVal,\n priority: newPriority\n });\n\n // TODO: Optimize this behavior to either (a) store flag to skip resolving where possible and / or\n // (b) store unresolved paths on JSON parse\n const serverValues = repoGenerateServerValues(repo);\n const newNodeUnresolved = nodeFromJSON(newVal, newPriority);\n const existing = syncTreeCalcCompleteEventCache(repo.serverSyncTree_, path);\n const newNode = resolveDeferredValueSnapshot(\n newNodeUnresolved,\n existing,\n serverValues\n );\n\n const writeId = repoGetNextWriteId(repo);\n const events = syncTreeApplyUserOverwrite(\n repo.serverSyncTree_,\n path,\n newNode,\n writeId,\n true\n );\n eventQueueQueueEvents(repo.eventQueue_, events);\n repo.server_.put(\n path.toString(),\n newNodeUnresolved.val(/*export=*/ true),\n (status, errorReason) => {\n const success = status === 'ok';\n if (!success) {\n warn('set at ' + path + ' failed: ' + status);\n }\n\n const clearEvents = syncTreeAckUserWrite(\n repo.serverSyncTree_,\n writeId,\n !success\n );\n eventQueueRaiseEventsForChangedPath(repo.eventQueue_, path, clearEvents);\n repoCallOnCompleteCallback(repo, onComplete, status, errorReason);\n }\n );\n const affectedPath = repoAbortTransactions(repo, path);\n repoRerunTransactions(repo, affectedPath);\n // We queued the events above, so just flush the queue here\n eventQueueRaiseEventsForChangedPath(repo.eventQueue_, affectedPath, []);\n}\n\nexport function repoUpdate(\n repo: Repo,\n path: Path,\n childrenToMerge: { [k: string]: unknown },\n onComplete: ((status: Error | null, errorReason?: string) => void) | null\n): void {\n repoLog(repo, 'update', { path: path.toString(), value: childrenToMerge });\n\n // Start with our existing data and merge each child into it.\n let empty = true;\n const serverValues = repoGenerateServerValues(repo);\n const changedChildren: { [k: string]: Node } = {};\n each(childrenToMerge, (changedKey: string, changedValue: unknown) => {\n empty = false;\n changedChildren[changedKey] = resolveDeferredValueTree(\n pathChild(path, changedKey),\n nodeFromJSON(changedValue),\n repo.serverSyncTree_,\n serverValues\n );\n });\n\n if (!empty) {\n const writeId = repoGetNextWriteId(repo);\n const events = syncTreeApplyUserMerge(\n repo.serverSyncTree_,\n path,\n changedChildren,\n writeId\n );\n eventQueueQueueEvents(repo.eventQueue_, events);\n repo.server_.merge(\n path.toString(),\n childrenToMerge,\n (status, errorReason) => {\n const success = status === 'ok';\n if (!success) {\n warn('update at ' + path + ' failed: ' + status);\n }\n\n const clearEvents = syncTreeAckUserWrite(\n repo.serverSyncTree_,\n writeId,\n !success\n );\n const affectedPath =\n clearEvents.length > 0 ? repoRerunTransactions(repo, path) : path;\n eventQueueRaiseEventsForChangedPath(\n repo.eventQueue_,\n affectedPath,\n clearEvents\n );\n repoCallOnCompleteCallback(repo, onComplete, status, errorReason);\n }\n );\n\n each(childrenToMerge, (changedPath: string) => {\n const affectedPath = repoAbortTransactions(\n repo,\n pathChild(path, changedPath)\n );\n repoRerunTransactions(repo, affectedPath);\n });\n\n // We queued the events above, so just flush the queue here\n eventQueueRaiseEventsForChangedPath(repo.eventQueue_, path, []);\n } else {\n log(\"update() called with empty data. Don't do anything.\");\n repoCallOnCompleteCallback(repo, onComplete, 'ok', undefined);\n }\n}\n\n/**\n * Applies all of the changes stored up in the onDisconnect_ tree.\n */\nfunction repoRunOnDisconnectEvents(repo: Repo): void {\n repoLog(repo, 'onDisconnectEvents');\n\n const serverValues = repoGenerateServerValues(repo);\n const resolvedOnDisconnectTree = newSparseSnapshotTree();\n sparseSnapshotTreeForEachTree(\n repo.onDisconnect_,\n newEmptyPath(),\n (path, node) => {\n const resolved = resolveDeferredValueTree(\n path,\n node,\n repo.serverSyncTree_,\n serverValues\n );\n sparseSnapshotTreeRemember(resolvedOnDisconnectTree, path, resolved);\n }\n );\n let events: Event[] = [];\n\n sparseSnapshotTreeForEachTree(\n resolvedOnDisconnectTree,\n newEmptyPath(),\n (path, snap) => {\n events = events.concat(\n syncTreeApplyServerOverwrite(repo.serverSyncTree_, path, snap)\n );\n const affectedPath = repoAbortTransactions(repo, path);\n repoRerunTransactions(repo, affectedPath);\n }\n );\n\n repo.onDisconnect_ = newSparseSnapshotTree();\n eventQueueRaiseEventsForChangedPath(repo.eventQueue_, newEmptyPath(), events);\n}\n\nexport function repoOnDisconnectCancel(\n repo: Repo,\n path: Path,\n onComplete: ((status: Error | null, errorReason?: string) => void) | null\n): void {\n repo.server_.onDisconnectCancel(path.toString(), (status, errorReason) => {\n if (status === 'ok') {\n sparseSnapshotTreeForget(repo.onDisconnect_, path);\n }\n repoCallOnCompleteCallback(repo, onComplete, status, errorReason);\n });\n}\n\nexport function repoOnDisconnectSet(\n repo: Repo,\n path: Path,\n value: unknown,\n onComplete: ((status: Error | null, errorReason?: string) => void) | null\n): void {\n const newNode = nodeFromJSON(value);\n repo.server_.onDisconnectPut(\n path.toString(),\n newNode.val(/*export=*/ true),\n (status, errorReason) => {\n if (status === 'ok') {\n sparseSnapshotTreeRemember(repo.onDisconnect_, path, newNode);\n }\n repoCallOnCompleteCallback(repo, onComplete, status, errorReason);\n }\n );\n}\n\nexport function repoOnDisconnectSetWithPriority(\n repo: Repo,\n path: Path,\n value: unknown,\n priority: unknown,\n onComplete: ((status: Error | null, errorReason?: string) => void) | null\n): void {\n const newNode = nodeFromJSON(value, priority);\n repo.server_.onDisconnectPut(\n path.toString(),\n newNode.val(/*export=*/ true),\n (status, errorReason) => {\n if (status === 'ok') {\n sparseSnapshotTreeRemember(repo.onDisconnect_, path, newNode);\n }\n repoCallOnCompleteCallback(repo, onComplete, status, errorReason);\n }\n );\n}\n\nexport function repoOnDisconnectUpdate(\n repo: Repo,\n path: Path,\n childrenToMerge: { [k: string]: unknown },\n onComplete: ((status: Error | null, errorReason?: string) => void) | null\n): void {\n if (isEmpty(childrenToMerge)) {\n log(\"onDisconnect().update() called with empty data. Don't do anything.\");\n repoCallOnCompleteCallback(repo, onComplete, 'ok', undefined);\n return;\n }\n\n repo.server_.onDisconnectMerge(\n path.toString(),\n childrenToMerge,\n (status, errorReason) => {\n if (status === 'ok') {\n each(childrenToMerge, (childName: string, childNode: unknown) => {\n const newChildNode = nodeFromJSON(childNode);\n sparseSnapshotTreeRemember(\n repo.onDisconnect_,\n pathChild(path, childName),\n newChildNode\n );\n });\n }\n repoCallOnCompleteCallback(repo, onComplete, status, errorReason);\n }\n );\n}\n\nexport function repoAddEventCallbackForQuery(\n repo: Repo,\n query: QueryContext,\n eventRegistration: EventRegistration\n): void {\n let events;\n if (pathGetFront(query._path) === '.info') {\n events = syncTreeAddEventRegistration(\n repo.infoSyncTree_,\n query,\n eventRegistration\n );\n } else {\n events = syncTreeAddEventRegistration(\n repo.serverSyncTree_,\n query,\n eventRegistration\n );\n }\n eventQueueRaiseEventsAtPath(repo.eventQueue_, query._path, events);\n}\n\nexport function repoRemoveEventCallbackForQuery(\n repo: Repo,\n query: QueryContext,\n eventRegistration: EventRegistration\n): void {\n // These are guaranteed not to raise events, since we're not passing in a cancelError. However, we can future-proof\n // a little bit by handling the return values anyways.\n let events;\n if (pathGetFront(query._path) === '.info') {\n events = syncTreeRemoveEventRegistration(\n repo.infoSyncTree_,\n query,\n eventRegistration\n );\n } else {\n events = syncTreeRemoveEventRegistration(\n repo.serverSyncTree_,\n query,\n eventRegistration\n );\n }\n eventQueueRaiseEventsAtPath(repo.eventQueue_, query._path, events);\n}\n\nexport function repoInterrupt(repo: Repo): void {\n if (repo.persistentConnection_) {\n repo.persistentConnection_.interrupt(INTERRUPT_REASON);\n }\n}\n\nexport function repoResume(repo: Repo): void {\n if (repo.persistentConnection_) {\n repo.persistentConnection_.resume(INTERRUPT_REASON);\n }\n}\n\nexport function repoStats(repo: Repo, showDelta: boolean = false): void {\n if (typeof console === 'undefined') {\n return;\n }\n\n let stats: { [k: string]: unknown };\n if (showDelta) {\n if (!repo.statsListener_) {\n repo.statsListener_ = new StatsListener(repo.stats_);\n }\n stats = repo.statsListener_.get();\n } else {\n stats = repo.stats_.get();\n }\n\n const longestName = Object.keys(stats).reduce(\n (previousValue, currentValue) =>\n Math.max(currentValue.length, previousValue),\n 0\n );\n\n each(stats, (stat: string, value: unknown) => {\n let paddedStat = stat;\n // pad stat names to be the same length (plus 2 extra spaces).\n for (let i = stat.length; i < longestName + 2; i++) {\n paddedStat += ' ';\n }\n console.log(paddedStat + value);\n });\n}\n\nexport function repoStatsIncrementCounter(repo: Repo, metric: string): void {\n repo.stats_.incrementCounter(metric);\n statsReporterIncludeStat(repo.statsReporter_, metric);\n}\n\nfunction repoLog(repo: Repo, ...varArgs: unknown[]): void {\n let prefix = '';\n if (repo.persistentConnection_) {\n prefix = repo.persistentConnection_.id + ':';\n }\n log(prefix, ...varArgs);\n}\n\nexport function repoCallOnCompleteCallback(\n repo: Repo,\n callback: ((status: Error | null, errorReason?: string) => void) | null,\n status: string,\n errorReason?: string | null\n): void {\n if (callback) {\n exceptionGuard(() => {\n if (status === 'ok') {\n callback(null);\n } else {\n const code = (status || 'error').toUpperCase();\n let message = code;\n if (errorReason) {\n message += ': ' + errorReason;\n }\n\n const error = new Error(message);\n\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n (error as any).code = code;\n callback(error);\n }\n });\n }\n}\n\n/**\n * Creates a new transaction, adds it to the transactions we're tracking, and\n * sends it to the server if possible.\n *\n * @param path - Path at which to do transaction.\n * @param transactionUpdate - Update callback.\n * @param onComplete - Completion callback.\n * @param unwatcher - Function that will be called when the transaction no longer\n * need data updates for `path`.\n * @param applyLocally - Whether or not to make intermediate results visible\n */\nexport function repoStartTransaction(\n repo: Repo,\n path: Path,\n transactionUpdate: (a: unknown) => unknown,\n onComplete: ((error: Error, committed: boolean, node: Node) => void) | null,\n unwatcher: () => void,\n applyLocally: boolean\n): void {\n repoLog(repo, 'transaction on ' + path);\n\n // Initialize transaction.\n const transaction: Transaction = {\n path,\n update: transactionUpdate,\n onComplete,\n // One of TransactionStatus enums.\n status: null,\n // Used when combining transactions at different locations to figure out\n // which one goes first.\n order: LUIDGenerator(),\n // Whether to raise local events for this transaction.\n applyLocally,\n // Count of how many times we've retried the transaction.\n retryCount: 0,\n // Function to call to clean up our .on() listener.\n unwatcher,\n // Stores why a transaction was aborted.\n abortReason: null,\n currentWriteId: null,\n currentInputSnapshot: null,\n currentOutputSnapshotRaw: null,\n currentOutputSnapshotResolved: null\n };\n\n // Run transaction initially.\n const currentState = repoGetLatestState(repo, path, undefined);\n transaction.currentInputSnapshot = currentState;\n const newVal = transaction.update(currentState.val());\n if (newVal === undefined) {\n // Abort transaction.\n transaction.unwatcher();\n transaction.currentOutputSnapshotRaw = null;\n transaction.currentOutputSnapshotResolved = null;\n if (transaction.onComplete) {\n transaction.onComplete(null, false, transaction.currentInputSnapshot);\n }\n } else {\n validateFirebaseData(\n 'transaction failed: Data returned ',\n newVal,\n transaction.path\n );\n\n // Mark as run and add to our queue.\n transaction.status = TransactionStatus.RUN;\n const queueNode = treeSubTree(repo.transactionQueueTree_, path);\n const nodeQueue = treeGetValue(queueNode) || [];\n nodeQueue.push(transaction);\n\n treeSetValue(queueNode, nodeQueue);\n\n // Update visibleData and raise events\n // Note: We intentionally raise events after updating all of our\n // transaction state, since the user could start new transactions from the\n // event callbacks.\n let priorityForNode;\n if (\n typeof newVal === 'object' &&\n newVal !== null &&\n contains(newVal, '.priority')\n ) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n priorityForNode = safeGet(newVal as any, '.priority');\n assert(\n isValidPriority(priorityForNode),\n 'Invalid priority returned by transaction. ' +\n 'Priority must be a valid string, finite number, server value, or null.'\n );\n } else {\n const currentNode =\n syncTreeCalcCompleteEventCache(repo.serverSyncTree_, path) ||\n ChildrenNode.EMPTY_NODE;\n priorityForNode = currentNode.getPriority().val();\n }\n\n const serverValues = repoGenerateServerValues(repo);\n const newNodeUnresolved = nodeFromJSON(newVal, priorityForNode);\n const newNode = resolveDeferredValueSnapshot(\n newNodeUnresolved,\n currentState,\n serverValues\n );\n transaction.currentOutputSnapshotRaw = newNodeUnresolved;\n transaction.currentOutputSnapshotResolved = newNode;\n transaction.currentWriteId = repoGetNextWriteId(repo);\n\n const events = syncTreeApplyUserOverwrite(\n repo.serverSyncTree_,\n path,\n newNode,\n transaction.currentWriteId,\n transaction.applyLocally\n );\n eventQueueRaiseEventsForChangedPath(repo.eventQueue_, path, events);\n\n repoSendReadyTransactions(repo, repo.transactionQueueTree_);\n }\n}\n\n/**\n * @param excludeSets - A specific set to exclude\n */\nfunction repoGetLatestState(\n repo: Repo,\n path: Path,\n excludeSets?: number[]\n): Node {\n return (\n syncTreeCalcCompleteEventCache(repo.serverSyncTree_, path, excludeSets) ||\n ChildrenNode.EMPTY_NODE\n );\n}\n\n/**\n * Sends any already-run transactions that aren't waiting for outstanding\n * transactions to complete.\n *\n * Externally it's called with no arguments, but it calls itself recursively\n * with a particular transactionQueueTree node to recurse through the tree.\n *\n * @param node - transactionQueueTree node to start at.\n */\nfunction repoSendReadyTransactions(\n repo: Repo,\n node: Tree<Transaction[]> = repo.transactionQueueTree_\n): void {\n // Before recursing, make sure any completed transactions are removed.\n if (!node) {\n repoPruneCompletedTransactionsBelowNode(repo, node);\n }\n\n if (treeGetValue(node)) {\n const queue = repoBuildTransactionQueue(repo, node);\n assert(queue.length > 0, 'Sending zero length transaction queue');\n\n const allRun = queue.every(\n (transaction: Transaction) => transaction.status === TransactionStatus.RUN\n );\n\n // If they're all run (and not sent), we can send them. Else, we must wait.\n if (allRun) {\n repoSendTransactionQueue(repo, treeGetPath(node), queue);\n }\n } else if (treeHasChildren(node)) {\n treeForEachChild(node, childNode => {\n repoSendReadyTransactions(repo, childNode);\n });\n }\n}\n\n/**\n * Given a list of run transactions, send them to the server and then handle\n * the result (success or failure).\n *\n * @param path - The location of the queue.\n * @param queue - Queue of transactions under the specified location.\n */\nfunction repoSendTransactionQueue(\n repo: Repo,\n path: Path,\n queue: Transaction[]\n): void {\n // Mark transactions as sent and increment retry count!\n const setsToIgnore = queue.map(txn => {\n return txn.currentWriteId;\n });\n const latestState = repoGetLatestState(repo, path, setsToIgnore);\n let snapToSend = latestState;\n const latestHash = latestState.hash();\n for (let i = 0; i < queue.length; i++) {\n const txn = queue[i];\n assert(\n txn.status === TransactionStatus.RUN,\n 'tryToSendTransactionQueue_: items in queue should all be run.'\n );\n txn.status = TransactionStatus.SENT;\n txn.retryCount++;\n const relativePath = newRelativePath(path, txn.path);\n // If we've gotten to this point, the output snapshot must be defined.\n snapToSend = snapToSend.updateChild(\n relativePath /** @type {!Node} */,\n txn.currentOutputSnapshotRaw\n );\n }\n\n const dataToSend = snapToSend.val(true);\n const pathToSend = path;\n\n // Send the put.\n repo.server_.put(\n pathToSend.toString(),\n dataToSend,\n (status: string) => {\n repoLog(repo, 'transaction put response', {\n path: pathToSend.toString(),\n status\n });\n\n let events: Event[] = [];\n if (status === 'ok') {\n // Queue up the callbacks and fire them after cleaning up all of our\n // transaction state, since the callback could trigger more\n // transactions or sets.\n const callbacks = [];\n for (let i = 0; i < queue.length; i++) {\n queue[i].status = TransactionStatus.COMPLETED;\n events = events.concat(\n syncTreeAckUserWrite(repo.serverSyncTree_, queue[i].currentWriteId)\n );\n if (queue[i].onComplete) {\n // We never unset the output snapshot, and given that this\n // transaction is complete, it should be set\n callbacks.push(() =>\n queue[i].onComplete(\n null,\n true,\n queue[i].currentOutputSnapshotResolved\n )\n );\n }\n queue[i].unwatcher();\n }\n\n // Now remove the completed transactions.\n repoPruneCompletedTransactionsBelowNode(\n repo,\n treeSubTree(repo.transactionQueueTree_, path)\n );\n // There may be pending transactions that we can now send.\n repoSendReadyTransactions(repo, repo.transactionQueueTree_);\n\n eventQueueRaiseEventsForChangedPath(repo.eventQueue_, path, events);\n\n // Finally, trigger onComplete callbacks.\n for (let i = 0; i < callbacks.length; i++) {\n exceptionGuard(callbacks[i]);\n }\n } else {\n // transactions are no longer sent. Update their status appropriately.\n if (status === 'datastale') {\n for (let i = 0; i < queue.length; i++) {\n if (queue[i].status === TransactionStatus.SENT_NEEDS_ABORT) {\n queue[i].status = TransactionStatus.NEEDS_ABORT;\n } else {\n queue[i].status = TransactionStatus.RUN;\n }\n }\n } else {\n warn(\n 'transaction at ' + pathToSend.toString() + ' failed: ' + status\n );\n for (let i = 0; i < queue.length; i++) {\n queue[i].status = TransactionStatus.NEEDS_ABORT;\n queue[i].abortReason = status;\n }\n }\n\n repoRerunTransactions(repo, path);\n }\n },\n latestHash\n );\n}\n\n/**\n * Finds all transactions dependent on the data at changedPath and reruns them.\n *\n * Should be called any time cached data changes.\n *\n * Return the highest path that was affected by rerunning transactions. This\n * is the path at which events need to be raised for.\n *\n * @param changedPath - The path in mergedData that changed.\n * @returns The rootmost path that was affected by rerunning transactions.\n */\nfunction repoRerunTransactions(repo: Repo, changedPath: Path): Path {\n const rootMostTransactionNode = repoGetAncestorTransactionNode(\n repo,\n changedPath\n );\n const path = treeGetPath(rootMostTransactionNode);\n\n const queue = repoBuildTransactionQueue(repo, rootMostTransactionNode);\n repoRerunTransactionQueue(repo, queue, path);\n\n return path;\n}\n\n/**\n * Does all the work of rerunning transactions (as well as cleans up aborted\n * transactions and whatnot).\n *\n * @param queue - The queue of transactions to run.\n * @param path - The path the queue is for.\n */\nfunction repoRerunTransactionQueue(\n repo: Repo,\n queue: Transaction[],\n path: Path\n): void {\n if (queue.length === 0) {\n return; // Nothing to do!\n }\n\n // Queue up the callbacks and fire them after cleaning up all of our\n // transaction state, since the callback could trigger more transactions or\n // sets.\n const callbacks = [];\n let events: Event[] = [];\n // Ignore all of the sets we're going to re-run.\n const txnsToRerun = queue.filter(q => {\n return q.status === TransactionStatus.RUN;\n });\n const setsToIgnore = txnsToRerun.map(q => {\n return q.currentWriteId;\n });\n for (let i = 0; i < queue.length; i++) {\n const transaction = queue[i];\n const relativePath = newRelativePath(path, transaction.path);\n let abortTransaction = false,\n abortReason;\n assert(\n relativePath !== null,\n 'rerunTransactionsUnderNode_: relativePath should not be null.'\n );\n\n if (transaction.status === TransactionStatus.NEEDS_ABORT) {\n abortTransaction = true;\n abortReason = transaction.abortReason;\n events = events.concat(\n syncTreeAckUserWrite(\n repo.serverSyncTree_,\n transaction.currentWriteId,\n true\n )\n );\n } else if (transaction.status === TransactionStatus.RUN) {\n if (transaction.retryCount >= MAX_TRANSACTION_RETRIES) {\n abortTransaction = true;\n abortReason = 'maxretry';\n events = events.concat(\n syncTreeAckUserWrite(\n repo.serverSyncTree_,\n transaction.currentWriteId,\n true\n )\n );\n } else {\n // This code reruns a transaction\n const currentNode = repoGetLatestState(\n repo,\n transaction.path,\n setsToIgnore\n );\n transaction.currentInputSnapshot = currentNode;\n const newData = queue[i].update(currentNode.val());\n if (newData !== undefined) {\n validateFirebaseData(\n 'transaction failed: Data returned ',\n newData,\n transaction.path\n );\n let newDataNode = nodeFromJSON(newData);\n const hasExplicitPriority =\n typeof newData === 'object' &&\n newData != null &&\n contains(newData, '.priority');\n if (!hasExplicitPriority) {\n // Keep the old priority if there wasn't a priority explicitly specified.\n newDataNode = newDataNode.updatePriority(currentNode.getPriority());\n }\n\n const oldWriteId = transaction.currentWriteId;\n const serverValues = repoGenerateServerValues(repo);\n const newNodeResolved = resolveDeferredValueSnapshot(\n newDataNode,\n currentNode,\n serverValues\n );\n\n transaction.currentOutputSnapshotRaw = newDataNode;\n transaction.currentOutputSnapshotResolved = newNodeResolved;\n transaction.currentWriteId = repoGetNextWriteId(repo);\n // Mutates setsToIgnore in place\n setsToIgnore.splice(setsToIgnore.indexOf(oldWriteId), 1);\n events = events.concat(\n syncTreeApplyUserOverwrite(\n repo.serverSyncTree_,\n transaction.path,\n newNodeResolved,\n transaction.currentWriteId,\n transaction.applyLocally\n )\n );\n events = events.concat(\n syncTreeAckUserWrite(repo.serverSyncTree_, oldWriteId, true)\n );\n } else {\n abortTransaction = true;\n abortReason = 'nodata';\n events = events.concat(\n syncTreeAckUserWrite(\n repo.serverSyncTree_,\n transaction.currentWriteId,\n true\n )\n );\n }\n }\n }\n eventQueueRaiseEventsForChangedPath(repo.eventQueue_, path, events);\n events = [];\n if (abortTransaction) {\n // Abort.\n queue[i].status = TransactionStatus.COMPLETED;\n\n // Removing a listener can trigger pruning which can muck with\n // mergedData/visibleData (as it prunes data). So defer the unwatcher\n // until we're done.\n (function (unwatcher) {\n setTimeout(unwatcher, Math.floor(0));\n })(queue[i].unwatcher);\n\n if (queue[i].onComplete) {\n if (abortReason === 'nodata') {\n callbacks.push(() =>\n queue[i].onComplete(null, false, queue[i].currentInputSnapshot)\n );\n } else {\n callbacks.push(() =>\n queue[i].onComplete(new Error(abortReason), false, null)\n );\n }\n }\n }\n }\n\n // Clean up completed transactions.\n repoPruneCompletedTransactionsBelowNode(repo, repo.transactionQueueTree_);\n\n // Now fire callbacks, now that we're in a good, known state.\n for (let i = 0; i < callbacks.length; i++) {\n exceptionGuard(callbacks[i]);\n }\n\n // Try to send the transaction result to the server.\n repoSendReadyTransactions(repo, repo.transactionQueueTree_);\n}\n\n/**\n * Returns the rootmost ancestor node of the specified path that has a pending\n * transaction on it, or just returns the node for the given path if there are\n * no pending transactions on any ancestor.\n *\n * @param path - The location to start at.\n * @returns The rootmost node with a transaction.\n */\nfunction repoGetAncestorTransactionNode(\n repo: Repo,\n path: Path\n): Tree<Transaction[]> {\n let front;\n\n // Start at the root and walk deeper into the tree towards path until we\n // find a node with pending transactions.\n let transactionNode = repo.transactionQueueTree_;\n front = pathGetFront(path);\n while (front !== null && treeGetValue(transactionNode) === undefined) {\n transactionNode = treeSubTree(transactionNode, front);\n path = pathPopFront(path);\n front = pathGetFront(path);\n }\n\n return transactionNode;\n}\n\n/**\n * Builds the queue of all transactions at or below the specified\n * transactionNode.\n *\n * @param transactionNode\n * @returns The generated queue.\n */\nfunction repoBuildTransactionQueue(\n repo: Repo,\n transactionNode: Tree<Transaction[]>\n): Transaction[] {\n // Walk any child transaction queues and aggregate them into a single queue.\n const transactionQueue: Transaction[] = [];\n repoAggregateTransactionQueuesForNode(\n repo,\n transactionNode,\n transactionQueue\n );\n\n // Sort them by the order the transactions were created.\n transactionQueue.sort((a, b) => a.order - b.order);\n\n return transactionQueue;\n}\n\nfunction repoAggregateTransactionQueuesForNode(\n repo: Repo,\n node: Tree<Transaction[]>,\n queue: Transaction[]\n): void {\n const nodeQueue = treeGetValue(node);\n if (nodeQueue) {\n for (let i = 0; i < nodeQueue.length; i++) {\n queue.push(nodeQueue[i]);\n }\n }\n\n treeForEachChild(node, child => {\n repoAggregateTransactionQueuesForNode(repo, child, queue);\n });\n}\n\n/**\n * Remove COMPLETED transactions at or below this node in the transactionQueueTree_.\n */\nfunction repoPruneCompletedTransactionsBelowNode(\n repo: Repo,\n node: Tree<Transaction[]>\n): void {\n const queue = treeGetValue(node);\n if (queue) {\n let to = 0;\n for (let from = 0; from < queue.length; from++) {\n if (queue[from].status !== TransactionStatus.COMPLETED) {\n queue[to] = queue[from];\n to++;\n }\n }\n queue.length = to;\n treeSetValue(node, queue.length > 0 ? queue : undefined);\n }\n\n treeForEachChild(node, childNode => {\n repoPruneCompletedTransactionsBelowNode(repo, childNode);\n });\n}\n\n/**\n * Aborts all transactions on ancestors or descendants of the specified path.\n * Called when doing a set() or update() since we consider them incompatible\n * with transactions.\n *\n * @param path - Path for which we want to abort related transactions.\n */\nfunction repoAbortTransactions(repo: Repo, path: Path): Path {\n const affectedPath = treeGetPath(repoGetAncestorTransactionNode(repo, path));\n\n const transactionNode = treeSubTree(repo.transactionQueueTree_, path);\n\n treeForEachAncestor(transactionNode, (node: Tree<Transaction[]>) => {\n repoAbortTransactionsOnNode(repo, node);\n });\n\n repoAbortTransactionsOnNode(repo, transactionNode);\n\n treeForEachDescendant(transactionNode, (node: Tree<Transaction[]>) => {\n repoAbortTransactionsOnNode(repo, node);\n });\n\n return affectedPath;\n}\n\n/**\n * Abort transactions stored in this transaction queue node.\n *\n * @param node - Node to abort transactions for.\n */\nfunction repoAbortTransactionsOnNode(\n repo: Repo,\n node: Tree<Transaction[]>\n): void {\n const queue = treeGetValue(node);\n if (queue) {\n // Queue up the callbacks and fire them after cleaning up all of our\n // transaction state, since the callback could trigger more transactions\n // or sets.\n const callbacks = [];\n\n // Go through queue. Any already-sent transactions must be marked for\n // abort, while the unsent ones can be immediately aborted and removed.\n let events: Event[] = [];\n let lastSent = -1;\n for (let i = 0; i < queue.length; i++) {\n if (queue[i].status === TransactionStatus.SENT_NEEDS_ABORT) {\n // Already marked. No action needed.\n } else if (queue[i].status === TransactionStatus.SENT) {\n assert(\n lastSent === i - 1,\n 'All SENT items should be at beginning of queue.'\n );\n lastSent = i;\n // Mark transaction for abort when it comes back.\n queue[i].status = TransactionStatus.SENT_NEEDS_ABORT;\n queue[i].abortReason = 'set';\n } else {\n assert(\n queue[i].status === TransactionStatus.RUN,\n 'Unexpected transaction status in abort'\n );\n // We can abort it immediately.\n queue[i].unwatcher();\n events = events.concat(\n syncTreeAckUserWrite(\n repo.serverSyncTree_,\n queue[i].currentWriteId,\n true\n )\n );\n if (queue[i].onComplete) {\n callbacks.push(\n queue[i].onComplete.bind(null, new Error('set'), false, null)\n );\n }\n }\n }\n if (lastSent === -1) {\n // We're not waiting for any sent transactions. We can clear the queue.\n treeSetValue(node, undefined);\n } else {\n // Remove the transactions we aborted.\n queue.length = lastSent + 1;\n }\n\n // Now fire the callbacks.\n eventQueueRaiseEventsForChangedPath(\n repo.eventQueue_,\n treeGetPath(node),\n events\n );\n for (let i = 0; i < callbacks.length; i++) {\n exceptionGuard(callbacks[i]);\n }\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RepoInfo } from '../../RepoInfo';\nimport { Path } from '../Path';\nimport { warnIfPageIsSecure, warn, fatal } from '../util';\n\nfunction decodePath(pathString: string): string {\n let pathStringDecoded = '';\n const pieces = pathString.split('/');\n for (let i = 0; i < pieces.length; i++) {\n if (pieces[i].length > 0) {\n let piece = pieces[i];\n try {\n piece = decodeURIComponent(piece.replace(/\\+/g, ' '));\n } catch (e) {}\n pathStringDecoded += '/' + piece;\n }\n }\n return pathStringDecoded;\n}\n\n/**\n * @returns key value hash\n */\nfunction decodeQuery(queryString: string): { [key: string]: string } {\n const results = {};\n if (queryString.charAt(0) === '?') {\n queryString = queryString.substring(1);\n }\n for (const segment of queryString.split('&')) {\n if (segment.length === 0) {\n continue;\n }\n const kv = segment.split('=');\n if (kv.length === 2) {\n results[decodeURIComponent(kv[0])] = decodeURIComponent(kv[1]);\n } else {\n warn(`Invalid query segment '${segment}' in query '${queryString}'`);\n }\n }\n return results;\n}\n\nexport const parseRepoInfo = function (\n dataURL: string,\n nodeAdmin: boolean\n): { repoInfo: RepoInfo; path: Path } {\n const parsedUrl = parseDatabaseURL(dataURL),\n namespace = parsedUrl.namespace;\n\n if (parsedUrl.domain === 'firebase.com') {\n fatal(\n parsedUrl.host +\n ' is no longer supported. ' +\n 'Please use <YOUR FIREBASE>.firebaseio.com instead'\n );\n }\n\n // Catch common error of uninitialized namespace value.\n if (\n (!namespace || namespace === 'undefined') &&\n parsedUrl.domain !== 'localhost'\n ) {\n fatal(\n 'Cannot parse Firebase url. Please use https://<YOUR FIREBASE>.firebaseio.com'\n );\n }\n\n if (!parsedUrl.secure) {\n warnIfPageIsSecure();\n }\n\n const webSocketOnly = parsedUrl.scheme === 'ws' || parsedUrl.scheme === 'wss';\n\n return {\n repoInfo: new RepoInfo(\n parsedUrl.host,\n parsedUrl.secure,\n namespace,\n webSocketOnly,\n nodeAdmin,\n /*persistenceKey=*/ '',\n /*includeNamespaceInQueryParams=*/ namespace !== parsedUrl.subdomain\n ),\n path: new Path(parsedUrl.pathString)\n };\n};\n\nexport const parseDatabaseURL = function (dataURL: string): {\n host: string;\n port: number;\n domain: string;\n subdomain: string;\n secure: boolean;\n scheme: string;\n pathString: string;\n namespace: string;\n} {\n // Default to empty strings in the event of a malformed string.\n let host = '',\n domain = '',\n subdomain = '',\n pathString = '',\n namespace = '';\n\n // Always default to SSL, unless otherwise specified.\n let secure = true,\n scheme = 'https',\n port = 443;\n\n // Don't do any validation here. The caller is responsible for validating the result of parsing.\n if (typeof dataURL === 'string') {\n // Parse scheme.\n let colonInd = dataURL.indexOf('//');\n if (colonInd >= 0) {\n scheme = dataURL.substring(0, colonInd - 1);\n dataURL = dataURL.substring(colonInd + 2);\n }\n\n // Parse host, path, and query string.\n let slashInd = dataURL.indexOf('/');\n if (slashInd === -1) {\n slashInd = dataURL.length;\n }\n let questionMarkInd = dataURL.indexOf('?');\n if (questionMarkInd === -1) {\n questionMarkInd = dataURL.length;\n }\n host = dataURL.substring(0, Math.min(slashInd, questionMarkInd));\n if (slashInd < questionMarkInd) {\n // For pathString, questionMarkInd will always come after slashInd\n pathString = decodePath(dataURL.substring(slashInd, questionMarkInd));\n }\n const queryParams = decodeQuery(\n dataURL.substring(Math.min(dataURL.length, questionMarkInd))\n );\n\n // If we have a port, use scheme for determining if it's secure.\n colonInd = host.indexOf(':');\n if (colonInd >= 0) {\n secure = scheme === 'https' || scheme === 'wss';\n port = parseInt(host.substring(colonInd + 1), 10);\n } else {\n colonInd = host.length;\n }\n\n const hostWithoutPort = host.slice(0, colonInd);\n if (hostWithoutPort.toLowerCase() === 'localhost') {\n domain = 'localhost';\n } else if (hostWithoutPort.split('.').length <= 2) {\n domain = hostWithoutPort;\n } else {\n // Interpret the subdomain of a 3 or more component URL as the namespace name.\n const dotInd = host.indexOf('.');\n subdomain = host.substring(0, dotInd).toLowerCase();\n domain = host.substring(dotInd + 1);\n // Normalize namespaces to lowercase to share storage / connection.\n namespace = subdomain;\n }\n // Always treat the value of the `ns` as the namespace name if it is present.\n if ('ns' in queryParams) {\n namespace = queryParams['ns'];\n }\n }\n\n return {\n host,\n port,\n domain,\n subdomain,\n secure,\n scheme,\n pathString,\n namespace\n };\n};\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\nimport {\n tryParseInt,\n MAX_NAME,\n MIN_NAME,\n INTEGER_32_MIN,\n INTEGER_32_MAX\n} from '../util/util';\n\n// Modeled after base64 web-safe chars, but ordered by ASCII.\nconst PUSH_CHARS =\n '-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz';\n\nconst MIN_PUSH_CHAR = '-';\n\nconst MAX_PUSH_CHAR = 'z';\n\nconst MAX_KEY_LEN = 786;\n\n/**\n * Fancy ID generator that creates 20-character string identifiers with the\n * following properties:\n *\n * 1. They're based on timestamp so that they sort *after* any existing ids.\n * 2. They contain 72-bits of random data after the timestamp so that IDs won't\n * collide with other clients' IDs.\n * 3. They sort *lexicographically* (so the timestamp is converted to characters\n * that will sort properly).\n * 4. They're monotonically increasing. Even if you generate more than one in\n * the same timestamp, the latter ones will sort after the former ones. We do\n * this by using the previous random bits but \"incrementing\" them by 1 (only\n * in the case of a timestamp collision).\n */\nexport const nextPushId = (function () {\n // Timestamp of last push, used to prevent local collisions if you push twice\n // in one ms.\n let lastPushTime = 0;\n\n // We generate 72-bits of randomness which get turned into 12 characters and\n // appended to the timestamp to prevent collisions with other clients. We\n // store the last characters we generated because in the event of a collision,\n // we'll use those same characters except \"incremented\" by one.\n const lastRandChars: number[] = [];\n\n return function (now: number) {\n const duplicateTime = now === lastPushTime;\n lastPushTime = now;\n\n let i;\n const timeStampChars = new Array(8);\n for (i = 7; i >= 0; i--) {\n timeStampChars[i] = PUSH_CHARS.charAt(now % 64);\n // NOTE: Can't use << here because javascript will convert to int and lose\n // the upper bits.\n now = Math.floor(now / 64);\n }\n assert(now === 0, 'Cannot push at time == 0');\n\n let id = timeStampChars.join('');\n\n if (!duplicateTime) {\n for (i = 0; i < 12; i++) {\n lastRandChars[i] = Math.floor(Math.random() * 64);\n }\n } else {\n // If the timestamp hasn't changed since last push, use the same random\n // number, except incremented by 1.\n for (i = 11; i >= 0 && lastRandChars[i] === 63; i--) {\n lastRandChars[i] = 0;\n }\n lastRandChars[i]++;\n }\n for (i = 0; i < 12; i++) {\n id += PUSH_CHARS.charAt(lastRandChars[i]);\n }\n assert(id.length === 20, 'nextPushId: Length should be 20.');\n\n return id;\n };\n})();\n\nexport const successor = function (key: string) {\n if (key === '' + INTEGER_32_MAX) {\n // See https://firebase.google.com/docs/database/web/lists-of-data#data-order\n return MIN_PUSH_CHAR;\n }\n const keyAsInt: number = tryParseInt(key);\n if (keyAsInt != null) {\n return '' + (keyAsInt + 1);\n }\n const next = new Array(key.length);\n\n for (let i = 0; i < next.length; i++) {\n next[i] = key.charAt(i);\n }\n\n if (next.length < MAX_KEY_LEN) {\n next.push(MIN_PUSH_CHAR);\n return next.join('');\n }\n\n let i = next.length - 1;\n\n while (i >= 0 && next[i] === MAX_PUSH_CHAR) {\n i--;\n }\n\n // `successor` was called on the largest possible key, so return the\n // MAX_NAME, which sorts larger than all keys.\n if (i === -1) {\n return MAX_NAME;\n }\n\n const source = next[i];\n const sourcePlusOne = PUSH_CHARS.charAt(PUSH_CHARS.indexOf(source) + 1);\n next[i] = sourcePlusOne;\n\n return next.slice(0, i + 1).join('');\n};\n\n// `key` is assumed to be non-empty.\nexport const predecessor = function (key: string) {\n if (key === '' + INTEGER_32_MIN) {\n return MIN_NAME;\n }\n const keyAsInt: number = tryParseInt(key);\n if (keyAsInt != null) {\n return '' + (keyAsInt - 1);\n }\n const next = new Array(key.length);\n for (let i = 0; i < next.length; i++) {\n next[i] = key.charAt(i);\n }\n // If `key` ends in `MIN_PUSH_CHAR`, the largest key lexicographically\n // smaller than `key`, is `key[0:key.length - 1]`. The next key smaller\n // than that, `predecessor(predecessor(key))`, is\n //\n // `key[0:key.length - 2] + (key[key.length - 1] - 1) + \\\n // { MAX_PUSH_CHAR repeated MAX_KEY_LEN - (key.length - 1) times }\n //\n // analogous to increment/decrement for base-10 integers.\n //\n // This works because lexigographic comparison works character-by-character,\n // using length as a tie-breaker if one key is a prefix of the other.\n if (next[next.length - 1] === MIN_PUSH_CHAR) {\n if (next.length === 1) {\n // See https://firebase.google.com/docs/database/web/lists-of-data#orderbykey\n return '' + INTEGER_32_MAX;\n }\n delete next[next.length - 1];\n return next.join('');\n }\n // Replace the last character with it's immediate predecessor, and\n // fill the suffix of the key with MAX_PUSH_CHAR. This is the\n // lexicographically largest possible key smaller than `key`.\n next[next.length - 1] = PUSH_CHARS.charAt(\n PUSH_CHARS.indexOf(next[next.length - 1]) - 1\n );\n return next.join('') + MAX_PUSH_CHAR.repeat(MAX_KEY_LEN - next.length);\n};\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { stringify } from '@firebase/util';\n\nimport { DataSnapshot as ExpDataSnapshot } from '../../api/Reference_impl';\nimport { Path } from '../util/Path';\n\nimport { EventRegistration } from './EventRegistration';\n\n/**\n * Encapsulates the data needed to raise an event\n * @interface\n */\nexport interface Event {\n getPath(): Path;\n\n getEventType(): string;\n\n getEventRunner(): () => void;\n\n toString(): string;\n}\n\n/**\n * One of the following strings: \"value\", \"child_added\", \"child_changed\",\n * \"child_removed\", or \"child_moved.\"\n */\nexport type EventType =\n | 'value'\n | 'child_added'\n | 'child_changed'\n | 'child_moved'\n | 'child_removed';\n\n/**\n * Encapsulates the data needed to raise an event\n */\nexport class DataEvent implements Event {\n /**\n * @param eventType - One of: value, child_added, child_changed, child_moved, child_removed\n * @param eventRegistration - The function to call to with the event data. User provided\n * @param snapshot - The data backing the event\n * @param prevName - Optional, the name of the previous child for child_* events.\n */\n constructor(\n public eventType: EventType,\n public eventRegistration: EventRegistration,\n public snapshot: ExpDataSnapshot,\n public prevName?: string | null\n ) {}\n getPath(): Path {\n const ref = this.snapshot.ref;\n if (this.eventType === 'value') {\n return ref._path;\n } else {\n return ref.parent._path;\n }\n }\n getEventType(): string {\n return this.eventType;\n }\n getEventRunner(): () => void {\n return this.eventRegistration.getEventRunner(this);\n }\n toString(): string {\n return (\n this.getPath().toString() +\n ':' +\n this.eventType +\n ':' +\n stringify(this.snapshot.exportVal())\n );\n }\n}\n\nexport class CancelEvent implements Event {\n constructor(\n public eventRegistration: EventRegistration,\n public error: Error,\n public path: Path\n ) {}\n getPath(): Path {\n return this.path;\n }\n getEventType(): string {\n return 'cancel';\n }\n getEventRunner(): () => void {\n return this.eventRegistration.getEventRunner(this);\n }\n toString(): string {\n return this.path.toString() + ':cancel';\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert } from '@firebase/util';\n\nimport { DataSnapshot } from '../../api/Reference_impl';\nimport { Repo } from '../Repo';\nimport { Path } from '../util/Path';\n\nimport { Change } from './Change';\nimport { CancelEvent, Event } from './Event';\nimport { QueryParams } from './QueryParams';\n\n/**\n * A user callback. Callbacks issues from the Legacy SDK maintain references\n * to the original user-issued callbacks, which allows equality\n * comparison by reference even though this callbacks are wrapped before\n * they can be passed to the firebase@exp SDK.\n *\n * @internal\n */\nexport interface UserCallback {\n (dataSnapshot: DataSnapshot, previousChildName?: string | null): unknown;\n userCallback?: unknown;\n context?: object | null;\n}\n\n/**\n * A wrapper class that converts events from the database@exp SDK to the legacy\n * Database SDK. Events are not converted directly as event registration relies\n * on reference comparison of the original user callback (see `matches()`) and\n * relies on equality of the legacy SDK's `context` object.\n */\nexport class CallbackContext {\n constructor(\n private readonly snapshotCallback: UserCallback,\n private readonly cancelCallback?: (error: Error) => unknown\n ) {}\n\n onValue(\n expDataSnapshot: DataSnapshot,\n previousChildName?: string | null\n ): void {\n this.snapshotCallback.call(null, expDataSnapshot, previousChildName);\n }\n\n onCancel(error: Error): void {\n assert(\n this.hasCancelCallback,\n 'Raising a cancel event on a listener with no cancel callback'\n );\n return this.cancelCallback.call(null, error);\n }\n\n get hasCancelCallback(): boolean {\n return !!this.cancelCallback;\n }\n\n matches(other: CallbackContext): boolean {\n return (\n this.snapshotCallback === other.snapshotCallback ||\n (this.snapshotCallback.userCallback !== undefined &&\n this.snapshotCallback.userCallback ===\n other.snapshotCallback.userCallback &&\n this.snapshotCallback.context === other.snapshotCallback.context)\n );\n }\n}\n\nexport interface QueryContext {\n readonly _queryIdentifier: string;\n readonly _queryObject: object;\n readonly _repo: Repo;\n readonly _path: Path;\n readonly _queryParams: QueryParams;\n}\n\n/**\n * An EventRegistration is basically an event type ('value', 'child_added', etc.) and a callback\n * to be notified of that type of event.\n *\n * That said, it can also contain a cancel callback to be notified if the event is canceled. And\n * currently, this code is organized around the idea that you would register multiple child_ callbacks\n * together, as a single EventRegistration. Though currently we don't do that.\n */\nexport interface EventRegistration {\n /**\n * True if this container has a callback to trigger for this event type\n */\n respondsTo(eventType: string): boolean;\n\n createEvent(change: Change, query: QueryContext): Event;\n\n /**\n * Given event data, return a function to trigger the user's callback\n */\n getEventRunner(eventData: Event): () => void;\n\n createCancelEvent(error: Error, path: Path): CancelEvent | null;\n\n matches(other: EventRegistration): boolean;\n\n /**\n * False basically means this is a \"dummy\" callback container being used as a sentinel\n * to remove all callback containers of a particular type. (e.g. if the user does\n * ref.off('value') without specifying a specific callback).\n *\n * (TODO: Rework this, since it's hacky)\n *\n */\n hasAnyCallback(): boolean;\n}\n","/**\n * @license\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Deferred } from '@firebase/util';\n\nimport {\n Repo,\n repoOnDisconnectCancel,\n repoOnDisconnectSet,\n repoOnDisconnectSetWithPriority,\n repoOnDisconnectUpdate\n} from '../core/Repo';\nimport { Path } from '../core/util/Path';\nimport {\n validateFirebaseDataArg,\n validateFirebaseMergeDataArg,\n validatePriority,\n validateWritablePath\n} from '../core/util/validation';\n\n/**\n * The `onDisconnect` class allows you to write or clear data when your client\n * disconnects from the Database server. These updates occur whether your\n * client disconnects cleanly or not, so you can rely on them to clean up data\n * even if a connection is dropped or a client crashes.\n *\n * The `onDisconnect` class is most commonly used to manage presence in\n * applications where it is useful to detect how many clients are connected and\n * when other clients disconnect. See\n * {@link https://firebase.google.com/docs/database/web/offline-capabilities | Enabling Offline Capabilities in JavaScript}\n * for more information.\n *\n * To avoid problems when a connection is dropped before the requests can be\n * transferred to the Database server, these functions should be called before\n * writing any data.\n *\n * Note that `onDisconnect` operations are only triggered once. If you want an\n * operation to occur each time a disconnect occurs, you'll need to re-establish\n * the `onDisconnect` operations each time you reconnect.\n */\nexport class OnDisconnect {\n /** @hideconstructor */\n constructor(private _repo: Repo, private _path: Path) {}\n\n /**\n * Cancels all previously queued `onDisconnect()` set or update events for this\n * location and all children.\n *\n * If a write has been queued for this location via a `set()` or `update()` at a\n * parent location, the write at this location will be canceled, though writes\n * to sibling locations will still occur.\n *\n * @returns Resolves when synchronization to the server is complete.\n */\n cancel(): Promise<void> {\n const deferred = new Deferred<void>();\n repoOnDisconnectCancel(\n this._repo,\n this._path,\n deferred.wrapCallback(() => {})\n );\n return deferred.promise;\n }\n\n /**\n * Ensures the data at this location is deleted when the client is disconnected\n * (due to closing the browser, navigating to a new page, or network issues).\n *\n * @returns Resolves when synchronization to the server is complete.\n */\n remove(): Promise<void> {\n validateWritablePath('OnDisconnect.remove', this._path);\n const deferred = new Deferred<void>();\n repoOnDisconnectSet(\n this._repo,\n this._path,\n null,\n deferred.wrapCallback(() => {})\n );\n return deferred.promise;\n }\n\n /**\n * Ensures the data at this location is set to the specified value when the\n * client is disconnected (due to closing the browser, navigating to a new page,\n * or network issues).\n *\n * `set()` is especially useful for implementing \"presence\" systems, where a\n * value should be changed or cleared when a user disconnects so that they\n * appear \"offline\" to other users. See\n * {@link https://firebase.google.com/docs/database/web/offline-capabilities | Enabling Offline Capabilities in JavaScript}\n * for more information.\n *\n * Note that `onDisconnect` operations are only triggered once. If you want an\n * operation to occur each time a disconnect occurs, you'll need to re-establish\n * the `onDisconnect` operations each time.\n *\n * @param value - The value to be written to this location on disconnect (can\n * be an object, array, string, number, boolean, or null).\n * @returns Resolves when synchronization to the Database is complete.\n */\n set(value: unknown): Promise<void> {\n validateWritablePath('OnDisconnect.set', this._path);\n validateFirebaseDataArg('OnDisconnect.set', value, this._path, false);\n const deferred = new Deferred<void>();\n repoOnDisconnectSet(\n this._repo,\n this._path,\n value,\n deferred.wrapCallback(() => {})\n );\n return deferred.promise;\n }\n\n /**\n * Ensures the data at this location is set to the specified value and priority\n * when the client is disconnected (due to closing the browser, navigating to a\n * new page, or network issues).\n *\n * @param value - The value to be written to this location on disconnect (can\n * be an object, array, string, number, boolean, or null).\n * @param priority - The priority to be written (string, number, or null).\n * @returns Resolves when synchronization to the Database is complete.\n */\n setWithPriority(\n value: unknown,\n priority: number | string | null\n ): Promise<void> {\n validateWritablePath('OnDisconnect.setWithPriority', this._path);\n validateFirebaseDataArg(\n 'OnDisconnect.setWithPriority',\n value,\n this._path,\n false\n );\n validatePriority('OnDisconnect.setWithPriority', priority, false);\n\n const deferred = new Deferred<void>();\n repoOnDisconnectSetWithPriority(\n this._repo,\n this._path,\n value,\n priority,\n deferred.wrapCallback(() => {})\n );\n return deferred.promise;\n }\n\n /**\n * Writes multiple values at this location when the client is disconnected (due\n * to closing the browser, navigating to a new page, or network issues).\n *\n * The `values` argument contains multiple property-value pairs that will be\n * written to the Database together. Each child property can either be a simple\n * property (for example, \"name\") or a relative path (for example, \"name/first\")\n * from the current location to the data to update.\n *\n * As opposed to the `set()` method, `update()` can be use to selectively update\n * only the referenced properties at the current location (instead of replacing\n * all the child properties at the current location).\n *\n * @param values - Object containing multiple values.\n * @returns Resolves when synchronization to the Database is complete.\n */\n update(values: object): Promise<void> {\n validateWritablePath('OnDisconnect.update', this._path);\n validateFirebaseMergeDataArg(\n 'OnDisconnect.update',\n values,\n this._path,\n false\n );\n const deferred = new Deferred<void>();\n repoOnDisconnectUpdate(\n this._repo,\n this._path,\n values as Record<string, unknown>,\n deferred.wrapCallback(() => {})\n );\n return deferred.promise;\n }\n}\n","/**\n * @license\n * Copyright 2020 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { assert, getModularInstance, Deferred } from '@firebase/util';\n\nimport {\n Repo,\n repoAddEventCallbackForQuery,\n repoGetValue,\n repoRemoveEventCallbackForQuery,\n repoServerTime,\n repoSetWithPriority,\n repoUpdate\n} from '../core/Repo';\nimport { ChildrenNode } from '../core/snap/ChildrenNode';\nimport { Index } from '../core/snap/indexes/Index';\nimport { KEY_INDEX } from '../core/snap/indexes/KeyIndex';\nimport { PathIndex } from '../core/snap/indexes/PathIndex';\nimport { PRIORITY_INDEX } from '../core/snap/indexes/PriorityIndex';\nimport { VALUE_INDEX } from '../core/snap/indexes/ValueIndex';\nimport { Node } from '../core/snap/Node';\nimport { syncPointSetReferenceConstructor } from '../core/SyncPoint';\nimport { syncTreeSetReferenceConstructor } from '../core/SyncTree';\nimport { parseRepoInfo } from '../core/util/libs/parser';\nimport { nextPushId } from '../core/util/NextPushId';\nimport {\n Path,\n pathEquals,\n pathGetBack,\n pathGetFront,\n pathChild,\n pathParent,\n pathToUrlEncodedString,\n pathIsEmpty\n} from '../core/util/Path';\nimport {\n fatal,\n MAX_NAME,\n MIN_NAME,\n ObjectToUniqueKey\n} from '../core/util/util';\nimport {\n isValidPriority,\n validateFirebaseDataArg,\n validateFirebaseMergeDataArg,\n validateKey,\n validatePathString,\n validatePriority,\n validateRootPathString,\n validateUrl,\n validateWritablePath\n} from '../core/util/validation';\nimport { Change } from '../core/view/Change';\nimport { CancelEvent, DataEvent, EventType } from '../core/view/Event';\nimport {\n CallbackContext,\n EventRegistration,\n QueryContext,\n UserCallback\n} from '../core/view/EventRegistration';\nimport {\n QueryParams,\n queryParamsEndAt,\n queryParamsEndBefore,\n queryParamsGetQueryObject,\n queryParamsLimitToFirst,\n queryParamsLimitToLast,\n queryParamsOrderBy,\n queryParamsStartAfter,\n queryParamsStartAt\n} from '../core/view/QueryParams';\n\nimport { Database } from './Database';\nimport { OnDisconnect } from './OnDisconnect';\nimport {\n ListenOptions,\n Query as Query,\n DatabaseReference,\n Unsubscribe,\n ThenableReference\n} from './Reference';\n\n/**\n * @internal\n */\nexport class QueryImpl implements Query, QueryContext {\n /**\n * @hideconstructor\n */\n constructor(\n readonly _repo: Repo,\n readonly _path: Path,\n readonly _queryParams: QueryParams,\n readonly _orderByCalled: boolean\n ) {}\n\n get key(): string | null {\n if (pathIsEmpty(this._path)) {\n return null;\n } else {\n return pathGetBack(this._path);\n }\n }\n\n get ref(): DatabaseReference {\n return new ReferenceImpl(this._repo, this._path);\n }\n\n get _queryIdentifier(): string {\n const obj = queryParamsGetQueryObject(this._queryParams);\n const id = ObjectToUniqueKey(obj);\n return id === '{}' ? 'default' : id;\n }\n\n /**\n * An object representation of the query parameters used by this Query.\n */\n get _queryObject(): object {\n return queryParamsGetQueryObject(this._queryParams);\n }\n\n isEqual(other: QueryImpl | null): boolean {\n other = getModularInstance(other);\n if (!(other instanceof QueryImpl)) {\n return false;\n }\n\n const sameRepo = this._repo === other._repo;\n const samePath = pathEquals(this._path, other._path);\n const sameQueryIdentifier =\n this._queryIdentifier === other._queryIdentifier;\n\n return sameRepo && samePath && sameQueryIdentifier;\n }\n\n toJSON(): string {\n return this.toString();\n }\n\n toString(): string {\n return this._repo.toString() + pathToUrlEncodedString(this._path);\n }\n}\n\n/**\n * Validates that no other order by call has been made\n */\nfunction validateNoPreviousOrderByCall(query: QueryImpl, fnName: string) {\n if (query._orderByCalled === true) {\n throw new Error(fnName + \": You can't combine multiple orderBy calls.\");\n }\n}\n\n/**\n * Validates start/end values for queries.\n */\nfunction validateQueryEndpoints(params: QueryParams) {\n let startNode = null;\n let endNode = null;\n if (params.hasStart()) {\n startNode = params.getIndexStartValue();\n }\n if (params.hasEnd()) {\n endNode = params.getIndexEndValue();\n }\n\n if (params.getIndex() === KEY_INDEX) {\n const tooManyArgsError =\n 'Query: When ordering by key, you may only pass one argument to ' +\n 'startAt(), endAt(), or equalTo().';\n const wrongArgTypeError =\n 'Query: When ordering by key, the argument passed to startAt(), startAfter(), ' +\n 'endAt(), endBefore(), or equalTo() must be a string.';\n if (params.hasStart()) {\n const startName = params.getIndexStartName();\n if (startName !== MIN_NAME) {\n throw new Error(tooManyArgsError);\n } else if (typeof startNode !== 'string') {\n throw new Error(wrongArgTypeError);\n }\n }\n if (params.hasEnd()) {\n const endName = params.getIndexEndName();\n if (endName !== MAX_NAME) {\n throw new Error(tooManyArgsError);\n } else if (typeof endNode !== 'string') {\n throw new Error(wrongArgTypeError);\n }\n }\n } else if (params.getIndex() === PRIORITY_INDEX) {\n if (\n (startNode != null && !isValidPriority(startNode)) ||\n (endNode != null && !isValidPriority(endNode))\n ) {\n throw new Error(\n 'Query: When ordering by priority, the first argument passed to startAt(), ' +\n 'startAfter() endAt(), endBefore(), or equalTo() must be a valid priority value ' +\n '(null, a number, or a string).'\n );\n }\n } else {\n assert(\n params.getIndex() instanceof PathIndex ||\n params.getIndex() === VALUE_INDEX,\n 'unknown index type.'\n );\n if (\n (startNode != null && typeof startNode === 'object') ||\n (endNode != null && typeof endNode === 'object')\n ) {\n throw new Error(\n 'Query: First argument passed to startAt(), startAfter(), endAt(), endBefore(), or ' +\n 'equalTo() cannot be an object.'\n );\n }\n }\n}\n\n/**\n * Validates that limit* has been called with the correct combination of parameters\n */\nfunction validateLimit(params: QueryParams) {\n if (\n params.hasStart() &&\n params.hasEnd() &&\n params.hasLimit() &&\n !params.hasAnchoredLimit()\n ) {\n throw new Error(\n \"Query: Can't combine startAt(), startAfter(), endAt(), endBefore(), and limit(). Use \" +\n 'limitToFirst() or limitToLast() instead.'\n );\n }\n}\n/**\n * @internal\n */\nexport class ReferenceImpl extends QueryImpl implements DatabaseReference {\n /** @hideconstructor */\n constructor(repo: Repo, path: Path) {\n super(repo, path, new QueryParams(), false);\n }\n\n get parent(): ReferenceImpl | null {\n const parentPath = pathParent(this._path);\n return parentPath === null\n ? null\n : new ReferenceImpl(this._repo, parentPath);\n }\n\n get root(): ReferenceImpl {\n let ref: ReferenceImpl = this;\n while (ref.parent !== null) {\n ref = ref.parent;\n }\n return ref;\n }\n}\n\n/**\n * A `DataSnapshot` contains data from a Database location.\n *\n * Any time you read data from the Database, you receive the data as a\n * `DataSnapshot`. A `DataSnapshot` is passed to the event callbacks you attach\n * with `on()` or `once()`. You can extract the contents of the snapshot as a\n * JavaScript object by calling the `val()` method. Alternatively, you can\n * traverse into the snapshot by calling `child()` to return child snapshots\n * (which you could then call `val()` on).\n *\n * A `DataSnapshot` is an efficiently generated, immutable copy of the data at\n * a Database location. It cannot be modified and will never change (to modify\n * data, you always call the `set()` method on a `Reference` directly).\n */\nexport class DataSnapshot {\n /**\n * @param _node - A SnapshotNode to wrap.\n * @param ref - The location this snapshot came from.\n * @param _index - The iteration order for this snapshot\n * @hideconstructor\n */\n constructor(\n readonly _node: Node,\n /**\n * The location of this DataSnapshot.\n */\n readonly ref: DatabaseReference,\n readonly _index: Index\n ) {}\n\n /**\n * Gets the priority value of the data in this `DataSnapshot`.\n *\n * Applications need not use priority but can order collections by\n * ordinary properties (see\n * {@link https://firebase.google.com/docs/database/web/lists-of-data#sorting_and_filtering_data |Sorting and filtering data}\n * ).\n */\n get priority(): string | number | null {\n // typecast here because we never return deferred values or internal priorities (MAX_PRIORITY)\n return this._node.getPriority().val() as string | number | null;\n }\n\n /**\n * The key (last part of the path) of the location of this `DataSnapshot`.\n *\n * The last token in a Database location is considered its key. For example,\n * \"ada\" is the key for the /users/ada/ node. Accessing the key on any\n * `DataSnapshot` will return the key for the location that generated it.\n * However, accessing the key on the root URL of a Database will return\n * `null`.\n */\n get key(): string | null {\n return this.ref.key;\n }\n\n /** Returns the number of child properties of this `DataSnapshot`. */\n get size(): number {\n return this._node.numChildren();\n }\n\n /**\n * Gets another `DataSnapshot` for the location at the specified relative path.\n *\n * Passing a relative path to the `child()` method of a DataSnapshot returns\n * another `DataSnapshot` for the location at the specified relative path. The\n * relative path can either be a simple child name (for example, \"ada\") or a\n * deeper, slash-separated path (for example, \"ada/name/first\"). If the child\n * location has no data, an empty `DataSnapshot` (that is, a `DataSnapshot`\n * whose value is `null`) is returned.\n *\n * @param path - A relative path to the location of child data.\n */\n child(path: string): DataSnapshot {\n const childPath = new Path(path);\n const childRef = child(this.ref, path);\n return new DataSnapshot(\n this._node.getChild(childPath),\n childRef,\n PRIORITY_INDEX\n );\n }\n /**\n * Returns true if this `DataSnapshot` contains any data. It is slightly more\n * efficient than using `snapshot.val() !== null`.\n */\n exists(): boolean {\n return !this._node.isEmpty();\n }\n\n /**\n * Exports the entire contents of the DataSnapshot as a JavaScript object.\n *\n * The `exportVal()` method is similar to `val()`, except priority information\n * is included (if available), making it suitable for backing up your data.\n *\n * @returns The DataSnapshot's contents as a JavaScript value (Object,\n * Array, string, number, boolean, or `null`).\n */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n exportVal(): any {\n return this._node.val(true);\n }\n\n /**\n * Enumerates the top-level children in the `DataSnapshot`.\n *\n * Because of the way JavaScript objects work, the ordering of data in the\n * JavaScript object returned by `val()` is not guaranteed to match the\n * ordering on the server nor the ordering of `onChildAdded()` events. That is\n * where `forEach()` comes in handy. It guarantees the children of a\n * `DataSnapshot` will be iterated in their query order.\n *\n * If no explicit `orderBy*()` method is used, results are returned\n * ordered by key (unless priorities are used, in which case, results are\n * returned by priority).\n *\n * @param action - A function that will be called for each child DataSnapshot.\n * The callback can return true to cancel further enumeration.\n * @returns true if enumeration was canceled due to your callback returning\n * true.\n */\n forEach(action: (child: DataSnapshot) => boolean | void): boolean {\n if (this._node.isLeafNode()) {\n return false;\n }\n\n const childrenNode = this._node as ChildrenNode;\n // Sanitize the return value to a boolean. ChildrenNode.forEachChild has a weird return type...\n return !!childrenNode.forEachChild(this._index, (key, node) => {\n return action(\n new DataSnapshot(node, child(this.ref, key), PRIORITY_INDEX)\n );\n });\n }\n\n /**\n * Returns true if the specified child path has (non-null) data.\n *\n * @param path - A relative path to the location of a potential child.\n * @returns `true` if data exists at the specified child path; else\n * `false`.\n */\n hasChild(path: string): boolean {\n const childPath = new Path(path);\n return !this._node.getChild(childPath).isEmpty();\n }\n\n /**\n * Returns whether or not the `DataSnapshot` has any non-`null` child\n * properties.\n *\n * You can use `hasChildren()` to determine if a `DataSnapshot` has any\n * children. If it does, you can enumerate them using `forEach()`. If it\n * doesn't, then either this snapshot contains a primitive value (which can be\n * retrieved with `val()`) or it is empty (in which case, `val()` will return\n * `null`).\n *\n * @returns true if this snapshot has any children; else false.\n */\n hasChildren(): boolean {\n if (this._node.isLeafNode()) {\n return false;\n } else {\n return !this._node.isEmpty();\n }\n }\n\n /**\n * Returns a JSON-serializable representation of this object.\n */\n toJSON(): object | null {\n return this.exportVal();\n }\n\n /**\n * Extracts a JavaScript value from a `DataSnapshot`.\n *\n * Depending on the data in a `DataSnapshot`, the `val()` method may return a\n * scalar type (string, number, or boolean), an array, or an object. It may\n * also return null, indicating that the `DataSnapshot` is empty (contains no\n * data).\n *\n * @returns The DataSnapshot's contents as a JavaScript value (Object,\n * Array, string, number, boolean, or `null`).\n */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n val(): any {\n return this._node.val();\n }\n}\n\n/**\n *\n * Returns a `Reference` representing the location in the Database\n * corresponding to the provided path. If no path is provided, the `Reference`\n * will point to the root of the Database.\n *\n * @param db - The database instance to obtain a reference for.\n * @param path - Optional path representing the location the returned\n * `Reference` will point. If not provided, the returned `Reference` will\n * point to the root of the Database.\n * @returns If a path is provided, a `Reference`\n * pointing to the provided path. Otherwise, a `Reference` pointing to the\n * root of the Database.\n */\nexport function ref(db: Database, path?: string): DatabaseReference {\n db = getModularInstance(db);\n db._checkNotDeleted('ref');\n return path !== undefined ? child(db._root, path) : db._root;\n}\n\n/**\n * Returns a `Reference` representing the location in the Database\n * corresponding to the provided Firebase URL.\n *\n * An exception is thrown if the URL is not a valid Firebase Database URL or it\n * has a different domain than the current `Database` instance.\n *\n * Note that all query parameters (`orderBy`, `limitToLast`, etc.) are ignored\n * and are not applied to the returned `Reference`.\n *\n * @param db - The database instance to obtain a reference for.\n * @param url - The Firebase URL at which the returned `Reference` will\n * point.\n * @returns A `Reference` pointing to the provided\n * Firebase URL.\n */\nexport function refFromURL(db: Database, url: string): DatabaseReference {\n db = getModularInstance(db);\n db._checkNotDeleted('refFromURL');\n const parsedURL = parseRepoInfo(url, db._repo.repoInfo_.nodeAdmin);\n validateUrl('refFromURL', parsedURL);\n\n const repoInfo = parsedURL.repoInfo;\n if (\n !db._repo.repoInfo_.isCustomHost() &&\n repoInfo.host !== db._repo.repoInfo_.host\n ) {\n fatal(\n 'refFromURL' +\n ': Host name does not match the current database: ' +\n '(found ' +\n repoInfo.host +\n ' but expected ' +\n db._repo.repoInfo_.host +\n ')'\n );\n }\n\n return ref(db, parsedURL.path.toString());\n}\n/**\n * Gets a `Reference` for the location at the specified relative path.\n *\n * The relative path can either be a simple child name (for example, \"ada\") or\n * a deeper slash-separated path (for example, \"ada/name/first\").\n *\n * @param parent - The parent location.\n * @param path - A relative path from this location to the desired child\n * location.\n * @returns The specified child location.\n */\nexport function child(\n parent: DatabaseReference,\n path: string\n): DatabaseReference {\n parent = getModularInstance(parent);\n if (pathGetFront(parent._path) === null) {\n validateRootPathString('child', 'path', path, false);\n } else {\n validatePathString('child', 'path', path, false);\n }\n return new ReferenceImpl(parent._repo, pathChild(parent._path, path));\n}\n\n/**\n * Returns an `OnDisconnect` object - see\n * {@link https://firebase.google.com/docs/database/web/offline-capabilities | Enabling Offline Capabilities in JavaScript}\n * for more information on how to use it.\n *\n * @param ref - The reference to add OnDisconnect triggers for.\n */\nexport function onDisconnect(ref: DatabaseReference): OnDisconnect {\n ref = getModularInstance(ref) as ReferenceImpl;\n return new OnDisconnect(ref._repo, ref._path);\n}\n\nexport interface ThenableReferenceImpl\n extends ReferenceImpl,\n Pick<Promise<ReferenceImpl>, 'then' | 'catch'> {}\n\n/**\n * Generates a new child location using a unique key and returns its\n * `Reference`.\n *\n * This is the most common pattern for adding data to a collection of items.\n *\n * If you provide a value to `push()`, the value is written to the\n * generated location. If you don't pass a value, nothing is written to the\n * database and the child remains empty (but you can use the `Reference`\n * elsewhere).\n *\n * The unique keys generated by `push()` are ordered by the current time, so the\n * resulting list of items is chronologically sorted. The keys are also\n * designed to be unguessable (they contain 72 random bits of entropy).\n *\n * See {@link https://firebase.google.com/docs/database/web/lists-of-data#append_to_a_list_of_data | Append to a list of data}.\n * See {@link https://firebase.googleblog.com/2015/02/the-2120-ways-to-ensure-unique_68.html | The 2^120 Ways to Ensure Unique Identifiers}.\n *\n * @param parent - The parent location.\n * @param value - Optional value to be written at the generated location.\n * @returns Combined `Promise` and `Reference`; resolves when write is complete,\n * but can be used immediately as the `Reference` to the child location.\n */\nexport function push(\n parent: DatabaseReference,\n value?: unknown\n): ThenableReference {\n parent = getModularInstance(parent);\n validateWritablePath('push', parent._path);\n validateFirebaseDataArg('push', value, parent._path, true);\n const now = repoServerTime(parent._repo);\n const name = nextPushId(now);\n\n // push() returns a ThennableReference whose promise is fulfilled with a\n // regular Reference. We use child() to create handles to two different\n // references. The first is turned into a ThennableReference below by adding\n // then() and catch() methods and is used as the return value of push(). The\n // second remains a regular Reference and is used as the fulfilled value of\n // the first ThennableReference.\n const thennablePushRef: Partial<ThenableReferenceImpl> = child(\n parent,\n name\n ) as ReferenceImpl;\n const pushRef = child(parent, name) as ReferenceImpl;\n\n let promise: Promise<ReferenceImpl>;\n if (value != null) {\n promise = set(pushRef, value).then(() => pushRef);\n } else {\n promise = Promise.resolve(pushRef);\n }\n\n thennablePushRef.then = promise.then.bind(promise);\n thennablePushRef.catch = promise.then.bind(promise, undefined);\n return thennablePushRef as ThenableReferenceImpl;\n}\n\n/**\n * Removes the data at this Database location.\n *\n * Any data at child locations will also be deleted.\n *\n * The effect of the remove will be visible immediately and the corresponding\n * event 'value' will be triggered. Synchronization of the remove to the\n * Firebase servers will also be started, and the returned Promise will resolve\n * when complete. If provided, the onComplete callback will be called\n * asynchronously after synchronization has finished.\n *\n * @param ref - The location to remove.\n * @returns Resolves when remove on server is complete.\n */\nexport function remove(ref: DatabaseReference): Promise<void> {\n validateWritablePath('remove', ref._path);\n return set(ref, null);\n}\n\n/**\n * Writes data to this Database location.\n *\n * This will overwrite any data at this location and all child locations.\n *\n * The effect of the write will be visible immediately, and the corresponding\n * events (\"value\", \"child_added\", etc.) will be triggered. Synchronization of\n * the data to the Firebase servers will also be started, and the returned\n * Promise will resolve when complete. If provided, the `onComplete` callback\n * will be called asynchronously after synchronization has finished.\n *\n * Passing `null` for the new value is equivalent to calling `remove()`; namely,\n * all data at this location and all child locations will be deleted.\n *\n * `set()` will remove any priority stored at this location, so if priority is\n * meant to be preserved, you need to use `setWithPriority()` instead.\n *\n * Note that modifying data with `set()` will cancel any pending transactions\n * at that location, so extreme care should be taken if mixing `set()` and\n * `transaction()` to modify the same data.\n *\n * A single `set()` will generate a single \"value\" event at the location where\n * the `set()` was performed.\n *\n * @param ref - The location to write to.\n * @param value - The value to be written (string, number, boolean, object,\n * array, or null).\n * @returns Resolves when write to server is complete.\n */\nexport function set(ref: DatabaseReference, value: unknown): Promise<void> {\n ref = getModularInstance(ref);\n validateWritablePath('set', ref._path);\n validateFirebaseDataArg('set', value, ref._path, false);\n const deferred = new Deferred<void>();\n repoSetWithPriority(\n ref._repo,\n ref._path,\n value,\n /*priority=*/ null,\n deferred.wrapCallback(() => {})\n );\n return deferred.promise;\n}\n\n/**\n * Sets a priority for the data at this Database location.\n *\n * Applications need not use priority but can order collections by\n * ordinary properties (see\n * {@link https://firebase.google.com/docs/database/web/lists-of-data#sorting_and_filtering_data | Sorting and filtering data}\n * ).\n *\n * @param ref - The location to write to.\n * @param priority - The priority to be written (string, number, or null).\n * @returns Resolves when write to server is complete.\n */\nexport function setPriority(\n ref: DatabaseReference,\n priority: string | number | null\n): Promise<void> {\n ref = getModularInstance(ref);\n validateWritablePath('setPriority', ref._path);\n validatePriority('setPriority', priority, false);\n const deferred = new Deferred<void>();\n repoSetWithPriority(\n ref._repo,\n pathChild(ref._path, '.priority'),\n priority,\n null,\n deferred.wrapCallback(() => {})\n );\n return deferred.promise;\n}\n\n/**\n * Writes data the Database location. Like `set()` but also specifies the\n * priority for that data.\n *\n * Applications need not use priority but can order collections by\n * ordinary properties (see\n * {@link https://firebase.google.com/docs/database/web/lists-of-data#sorting_and_filtering_data | Sorting and filtering data}\n * ).\n *\n * @param ref - The location to write to.\n * @param value - The value to be written (string, number, boolean, object,\n * array, or null).\n * @param priority - The priority to be written (string, number, or null).\n * @returns Resolves when write to server is complete.\n */\nexport function setWithPriority(\n ref: DatabaseReference,\n value: unknown,\n priority: string | number | null\n): Promise<void> {\n validateWritablePath('setWithPriority', ref._path);\n validateFirebaseDataArg('setWithPriority', value, ref._path, false);\n validatePriority('setWithPriority', priority, false);\n if (ref.key === '.length' || ref.key === '.keys') {\n throw 'setWithPriority failed: ' + ref.key + ' is a read-only object.';\n }\n\n const deferred = new Deferred<void>();\n repoSetWithPriority(\n ref._repo,\n ref._path,\n value,\n priority,\n deferred.wrapCallback(() => {})\n );\n return deferred.promise;\n}\n\n/**\n * Writes multiple values to the Database at once.\n *\n * The `values` argument contains multiple property-value pairs that will be\n * written to the Database together. Each child property can either be a simple\n * property (for example, \"name\") or a relative path (for example,\n * \"name/first\") from the current location to the data to update.\n *\n * As opposed to the `set()` method, `update()` can be use to selectively update\n * only the referenced properties at the current location (instead of replacing\n * all the child properties at the current location).\n *\n * The effect of the write will be visible immediately, and the corresponding\n * events ('value', 'child_added', etc.) will be triggered. Synchronization of\n * the data to the Firebase servers will also be started, and the returned\n * Promise will resolve when complete. If provided, the `onComplete` callback\n * will be called asynchronously after synchronization has finished.\n *\n * A single `update()` will generate a single \"value\" event at the location\n * where the `update()` was performed, regardless of how many children were\n * modified.\n *\n * Note that modifying data with `update()` will cancel any pending\n * transactions at that location, so extreme care should be taken if mixing\n * `update()` and `transaction()` to modify the same data.\n *\n * Passing `null` to `update()` will remove the data at this location.\n *\n * See\n * {@link https://firebase.googleblog.com/2015/09/introducing-multi-location-updates-and_86.html | Introducing multi-location updates and more}.\n *\n * @param ref - The location to write to.\n * @param values - Object containing multiple values.\n * @returns Resolves when update on server is complete.\n */\nexport function update(ref: DatabaseReference, values: object): Promise<void> {\n validateFirebaseMergeDataArg('update', values, ref._path, false);\n const deferred = new Deferred<void>();\n repoUpdate(\n ref._repo,\n ref._path,\n values as Record<string, unknown>,\n deferred.wrapCallback(() => {})\n );\n return deferred.promise;\n}\n\n/**\n * Gets the most up-to-date result for this query.\n *\n * @param query - The query to run.\n * @returns A `Promise` which resolves to the resulting DataSnapshot if a value is\n * available, or rejects if the client is unable to return a value (e.g., if the\n * server is unreachable and there is nothing cached).\n */\nexport function get(query: Query): Promise<DataSnapshot> {\n query = getModularInstance(query) as QueryImpl;\n const callbackContext = new CallbackContext(() => {});\n const container = new ValueEventRegistration(callbackContext);\n return repoGetValue(query._repo, query, container).then(node => {\n return new DataSnapshot(\n node,\n new ReferenceImpl(query._repo, query._path),\n query._queryParams.getIndex()\n );\n });\n}\n/**\n * Represents registration for 'value' events.\n */\nexport class ValueEventRegistration implements EventRegistration {\n constructor(private callbackContext: CallbackContext) {}\n\n respondsTo(eventType: string): boolean {\n return eventType === 'value';\n }\n\n createEvent(change: Change, query: QueryContext): DataEvent {\n const index = query._queryParams.getIndex();\n return new DataEvent(\n 'value',\n this,\n new DataSnapshot(\n change.snapshotNode,\n new ReferenceImpl(query._repo, query._path),\n index\n )\n );\n }\n\n getEventRunner(eventData: CancelEvent | DataEvent): () => void {\n if (eventData.getEventType() === 'cancel') {\n return () =>\n this.callbackContext.onCancel((eventData as CancelEvent).error);\n } else {\n return () =>\n this.callbackContext.onValue((eventData as DataEvent).snapshot, null);\n }\n }\n\n createCancelEvent(error: Error, path: Path): CancelEvent | null {\n if (this.callbackContext.hasCancelCallback) {\n return new CancelEvent(this, error, path);\n } else {\n return null;\n }\n }\n\n matches(other: EventRegistration): boolean {\n if (!(other instanceof ValueEventRegistration)) {\n return false;\n } else if (!other.callbackContext || !this.callbackContext) {\n // If no callback specified, we consider it to match any callback.\n return true;\n } else {\n return other.callbackContext.matches(this.callbackContext);\n }\n }\n\n hasAnyCallback(): boolean {\n return this.callbackContext !== null;\n }\n}\n\n/**\n * Represents the registration of a child_x event.\n */\nexport class ChildEventRegistration implements EventRegistration {\n constructor(\n private eventType: string,\n private callbackContext: CallbackContext | null\n ) {}\n\n respondsTo(eventType: string): boolean {\n let eventToCheck =\n eventType === 'children_added' ? 'child_added' : eventType;\n eventToCheck =\n eventToCheck === 'children_removed' ? 'child_removed' : eventToCheck;\n return this.eventType === eventToCheck;\n }\n\n createCancelEvent(error: Error, path: Path): CancelEvent | null {\n if (this.callbackContext.hasCancelCallback) {\n return new CancelEvent(this, error, path);\n } else {\n return null;\n }\n }\n\n createEvent(change: Change, query: QueryContext): DataEvent {\n assert(change.childName != null, 'Child events should have a childName.');\n const childRef = child(\n new ReferenceImpl(query._repo, query._path),\n change.childName\n );\n const index = query._queryParams.getIndex();\n return new DataEvent(\n change.type as EventType,\n this,\n new DataSnapshot(change.snapshotNode, childRef, index),\n change.prevName\n );\n }\n\n getEventRunner(eventData: CancelEvent | DataEvent): () => void {\n if (eventData.getEventType() === 'cancel') {\n return () =>\n this.callbackContext.onCancel((eventData as CancelEvent).error);\n } else {\n return () =>\n this.callbackContext.onValue(\n (eventData as DataEvent).snapshot,\n (eventData as DataEvent).prevName\n );\n }\n }\n\n matches(other: EventRegistration): boolean {\n if (other instanceof ChildEventRegistration) {\n return (\n this.eventType === other.eventType &&\n (!this.callbackContext ||\n !other.callbackContext ||\n this.callbackContext.matches(other.callbackContext))\n );\n }\n\n return false;\n }\n\n hasAnyCallback(): boolean {\n return !!this.callbackContext;\n }\n}\n\nfunction addEventListener(\n query: Query,\n eventType: EventType,\n callback: UserCallback,\n cancelCallbackOrListenOptions?: ((error: Error) => unknown) | ListenOptions,\n options?: ListenOptions\n) {\n let cancelCallback: ((error: Error) => unknown) | undefined;\n if (typeof cancelCallbackOrListenOptions === 'object') {\n cancelCallback = undefined;\n options = cancelCallbackOrListenOptions;\n }\n if (typeof cancelCallbackOrListenOptions === 'function') {\n cancelCallback = cancelCallbackOrListenOptions;\n }\n\n if (options && options.onlyOnce) {\n const userCallback = callback;\n const onceCallback: UserCallback = (dataSnapshot, previousChildName) => {\n repoRemoveEventCallbackForQuery(query._repo, query, container);\n userCallback(dataSnapshot, previousChildName);\n };\n onceCallback.userCallback = callback.userCallback;\n onceCallback.context = callback.context;\n callback = onceCallback;\n }\n\n const callbackContext = new CallbackContext(\n callback,\n cancelCallback || undefined\n );\n const container =\n eventType === 'value'\n ? new ValueEventRegistration(callbackContext)\n : new ChildEventRegistration(eventType, callbackContext);\n repoAddEventCallbackForQuery(query._repo, query, container);\n return () => repoRemoveEventCallbackForQuery(query._repo, query, container);\n}\n\n/**\n * Listens for data changes at a particular location.\n *\n * This is the primary way to read data from a Database. Your callback\n * will be triggered for the initial data and again whenever the data changes.\n * Invoke the returned unsubscribe callback to stop receiving updates. See\n * {@link https://firebase.google.com/docs/database/web/retrieve-data | Retrieve Data on the Web}\n * for more details.\n *\n * An `onValue` event will trigger once with the initial data stored at this\n * location, and then trigger again each time the data changes. The\n * `DataSnapshot` passed to the callback will be for the location at which\n * `on()` was called. It won't trigger until the entire contents has been\n * synchronized. If the location has no data, it will be triggered with an empty\n * `DataSnapshot` (`val()` will return `null`).\n *\n * @param query - The query to run.\n * @param callback - A callback that fires when the specified event occurs. The\n * callback will be passed a DataSnapshot.\n * @param cancelCallback - An optional callback that will be notified if your\n * event subscription is ever canceled because your client does not have\n * permission to read this data (or it had permission but has now lost it).\n * This callback will be passed an `Error` object indicating why the failure\n * occurred.\n * @returns A function that can be invoked to remove the listener.\n */\nexport function onValue(\n query: Query,\n callback: (snapshot: DataSnapshot) => unknown,\n cancelCallback?: (error: Error) => unknown\n): Unsubscribe;\n\n/**\n * Listens for data changes at a particular location.\n *\n * This is the primary way to read data from a Database. Your callback\n * will be triggered for the initial data and again whenever the data changes.\n * Invoke the returned unsubscribe callback to stop receiving updates. See\n * {@link https://firebase.google.com/docs/database/web/retrieve-data | Retrieve Data on the Web}\n * for more details.\n *\n * An `onValue` event will trigger once with the initial data stored at this\n * location, and then trigger again each time the data changes. The\n * `DataSnapshot` passed to the callback will be for the location at which\n * `on()` was called. It won't trigger until the entire contents has been\n * synchronized. If the location has no data, it will be triggered with an empty\n * `DataSnapshot` (`val()` will return `null`).\n *\n * @param query - The query to run.\n * @param callback - A callback that fires when the specified event occurs. The\n * callback will be passed a DataSnapshot.\n * @param options - An object that can be used to configure `onlyOnce`, which\n * then removes the listener after its first invocation.\n * @returns A function that can be invoked to remove the listener.\n */\nexport function onValue(\n query: Query,\n callback: (snapshot: DataSnapshot) => unknown,\n options: ListenOptions\n): Unsubscribe;\n\n/**\n * Listens for data changes at a particular location.\n *\n * This is the primary way to read data from a Database. Your callback\n * will be triggered for the initial data and again whenever the data changes.\n * Invoke the returned unsubscribe callback to stop receiving updates. See\n * {@link https://firebase.google.com/docs/database/web/retrieve-data | Retrieve Data on the Web}\n * for more details.\n *\n * An `onValue` event will trigger once with the initial data stored at this\n * location, and then trigger again each time the data changes. The\n * `DataSnapshot` passed to the callback will be for the location at which\n * `on()` was called. It won't trigger until the entire contents has been\n * synchronized. If the location has no data, it will be triggered with an empty\n * `DataSnapshot` (`val()` will return `null`).\n *\n * @param query - The query to run.\n * @param callback - A callback that fires when the specified event occurs. The\n * callback will be passed a DataSnapshot.\n * @param cancelCallback - An optional callback that will be notified if your\n * event subscription is ever canceled because your client does not have\n * permission to read this data (or it had permission but has now lost it).\n * This callback will be passed an `Error` object indicating why the failure\n * occurred.\n * @param options - An object that can be used to configure `onlyOnce`, which\n * then removes the listener after its first invocation.\n * @returns A function that can be invoked to remove the listener.\n */\nexport function onValue(\n query: Query,\n callback: (snapshot: DataSnapshot) => unknown,\n cancelCallback: (error: Error) => unknown,\n options: ListenOptions\n): Unsubscribe;\n\nexport function onValue(\n query: Query,\n callback: (snapshot: DataSnapshot) => unknown,\n cancelCallbackOrListenOptions?: ((error: Error) => unknown) | ListenOptions,\n options?: ListenOptions\n): Unsubscribe {\n return addEventListener(\n query,\n 'value',\n callback,\n cancelCallbackOrListenOptions,\n options\n );\n}\n\n/**\n * Listens for data changes at a particular location.\n *\n * This is the primary way to read data from a Database. Your callback\n * will be triggered for the initial data and again whenever the data changes.\n * Invoke the returned unsubscribe callback to stop receiving updates. See\n * {@link https://firebase.google.com/docs/database/web/retrieve-data | Retrieve Data on the Web}\n * for more details.\n *\n * An `onChildAdded` event will be triggered once for each initial child at this\n * location, and it will be triggered again every time a new child is added. The\n * `DataSnapshot` passed into the callback will reflect the data for the\n * relevant child. For ordering purposes, it is passed a second argument which\n * is a string containing the key of the previous sibling child by sort order,\n * or `null` if it is the first child.\n *\n * @param query - The query to run.\n * @param callback - A callback that fires when the specified event occurs.\n * The callback will be passed a DataSnapshot and a string containing the key of\n * the previous child, by sort order, or `null` if it is the first child.\n * @param cancelCallback - An optional callback that will be notified if your\n * event subscription is ever canceled because your client does not have\n * permission to read this data (or it had permission but has now lost it).\n * This callback will be passed an `Error` object indicating why the failure\n * occurred.\n * @returns A function that can be invoked to remove the listener.\n */\nexport function onChildAdded(\n query: Query,\n callback: (\n snapshot: DataSnapshot,\n previousChildName?: string | null\n ) => unknown,\n cancelCallback?: (error: Error) => unknown\n): Unsubscribe;\n\n/**\n * Listens for data changes at a particular location.\n *\n * This is the primary way to read data from a Database. Your callback\n * will be triggered for the initial data and again whenever the data changes.\n * Invoke the returned unsubscribe callback to stop receiving updates. See\n * {@link https://firebase.google.com/docs/database/web/retrieve-data | Retrieve Data on the Web}\n * for more details.\n *\n * An `onChildAdded` event will be triggered once for each initial child at this\n * location, and it will be triggered again every time a new child is added. The\n * `DataSnapshot` passed into the callback will reflect the data for the\n * relevant child. For ordering purposes, it is passed a second argument which\n * is a string containing the key of the previous sibling child by sort order,\n * or `null` if it is the first child.\n *\n * @param query - The query to run.\n * @param callback - A callback that fires when the specified event occurs.\n * The callback will be passed a DataSnapshot and a string containing the key of\n * the previous child, by sort order, or `null` if it is the first child.\n * @param options - An object that can be used to configure `onlyOnce`, which\n * then removes the listener after its first invocation.\n * @returns A function that can be invoked to remove the listener.\n */\nexport function onChildAdded(\n query: Query,\n callback: (\n snapshot: DataSnapshot,\n previousChildName: string | null\n ) => unknown,\n options: ListenOptions\n): Unsubscribe;\n\n/**\n * Listens for data changes at a particular location.\n *\n * This is the primary way to read data from a Database. Your callback\n * will be triggered for the initial data and again whenever the data changes.\n * Invoke the returned unsubscribe callback to stop receiving updates. See\n * {@link https://firebase.google.com/docs/database/web/retrieve-data | Retrieve Data on the Web}\n * for more details.\n *\n * An `onChildAdded` event will be triggered once for each initial child at this\n * location, and it will be triggered again every time a new child is added. The\n * `DataSnapshot` passed into the callback will reflect the data for the\n * relevant child. For ordering purposes, it is passed a second argument which\n * is a string containing the key of the previous sibling child by sort order,\n * or `null` if it is the first child.\n *\n * @param query - The query to run.\n * @param callback - A callback that fires when the specified event occurs.\n * The callback will be passed a DataSnapshot and a string containing the key of\n * the previous child, by sort order, or `null` if it is the first child.\n * @param cancelCallback - An optional callback that will be notified if your\n * event subscription is ever canceled because your client does not have\n * permission to read this data (or it had permission but has now lost it).\n * This callback will be passed an `Error` object indicating why the failure\n * occurred.\n * @param options - An object that can be used to configure `onlyOnce`, which\n * then removes the listener after its first invocation.\n * @returns A function that can be invoked to remove the listener.\n */\nexport function onChildAdded(\n query: Query,\n callback: (\n snapshot: DataSnapshot,\n previousChildName: string | null\n ) => unknown,\n cancelCallback: (error: Error) => unknown,\n options: ListenOptions\n): Unsubscribe;\n\nexport function onChildAdded(\n query: Query,\n callback: (\n snapshot: DataSnapshot,\n previousChildName: string | null\n ) => unknown,\n cancelCallbackOrListenOptions?: ((error: Error) => unknown) | ListenOptions,\n options?: ListenOptions\n): Unsubscribe {\n return addEventListener(\n query,\n 'child_added',\n callback,\n cancelCallbackOrListenOptions,\n options\n );\n}\n\n/**\n * Listens for data changes at a particular location.\n *\n * This is the primary way to read data from a Database. Your callback\n * will be triggered for the initial data and again whenever the data changes.\n * Invoke the returned unsubscribe callback to stop receiving updates. See\n * {@link https://firebase.google.com/docs/database/web/retrieve-data | Retrieve Data on the Web}\n * for more details.\n *\n * An `onChildChanged` event will be triggered when the data stored in a child\n * (or any of its descendants) changes. Note that a single `child_changed` event\n * may represent multiple changes to the child. The `DataSnapshot` passed to the\n * callback will contain the new child contents. For ordering purposes, the\n * callback is also passed a second argument which is a string containing the\n * key of the previous sibling child by sort order, or `null` if it is the first\n * child.\n *\n * @param query - The query to run.\n * @param callback - A callback that fires when the specified event occurs.\n * The callback will be passed a DataSnapshot and a string containing the key of\n * the previous child, by sort order, or `null` if it is the first child.\n * @param cancelCallback - An optional callback that will be notified if your\n * event subscription is ever canceled because your client does not have\n * permission to read this data (or it had permission but has now lost it).\n * This callback will be passed an `Error` object indicating why the failure\n * occurred.\n * @returns A function that can be invoked to remove the listener.\n */\nexport function onChildChanged(\n query: Query,\n callback: (\n snapshot: DataSnapshot,\n previousChildName: string | null\n ) => unknown,\n cancelCallback?: (error: Error) => unknown\n): Unsubscribe;\n\n/**\n * Listens for data changes at a particular location.\n *\n * This is the primary way to read data from a Database. Your callback\n * will be triggered for the initial data and again whenever the data changes.\n * Invoke the returned unsubscribe callback to stop receiving updates. See\n * {@link https://firebase.google.com/docs/database/web/retrieve-data | Retrieve Data on the Web}\n * for more details.\n *\n * An `onChildChanged` event will be triggered when the data stored in a child\n * (or any of its descendants) changes. Note that a single `child_changed` event\n * may represent multiple changes to the child. The `DataSnapshot` passed to the\n * callback will contain the new child contents. For ordering purposes, the\n * callback is also passed a second argument which is a string containing the\n * key of the previous sibling child by sort order, or `null` if it is the first\n * child.\n *\n * @param query - The query to run.\n * @param callback - A callback that fires when the specified event occurs.\n * The callback will be passed a DataSnapshot and a string containing the key of\n * the previous child, by sort order, or `null` if it is the first child.\n * @param options - An object that can be used to configure `onlyOnce`, which\n * then removes the listener after its first invocation.\n * @returns A function that can be invoked to remove the listener.\n */\nexport function onChildChanged(\n query: Query,\n callback: (\n snapshot: DataSnapshot,\n previousChildName: string | null\n ) => unknown,\n options: ListenOptions\n): Unsubscribe;\n\n/**\n * Listens for data changes at a particular location.\n *\n * This is the primary way to read data from a Database. Your callback\n * will be triggered for the initial data and again whenever the data changes.\n * Invoke the returned unsubscribe callback to stop receiving updates. See\n * {@link https://firebase.google.com/docs/database/web/retrieve-data | Retrieve Data on the Web}\n * for more details.\n *\n * An `onChildChanged` event will be triggered when the data stored in a child\n * (or any of its descendants) changes. Note that a single `child_changed` event\n * may represent multiple changes to the child. The `DataSnapshot` passed to the\n * callback will contain the new child contents. For ordering purposes, the\n * callback is also passed a second argument which is a string containing the\n * key of the previous sibling child by sort order, or `null` if it is the first\n * child.\n *\n * @param query - The query to run.\n * @param callback - A callback that fires when the specified event occurs.\n * The callback will be passed a DataSnapshot and a string containing the key of\n * the previous child, by sort order, or `null` if it is the first child.\n * @param cancelCallback - An optional callback that will be notified if your\n * event subscription is ever canceled because your client does not have\n * permission to read this data (or it had permission but has now lost it).\n * This callback will be passed an `Error` object indicating why the failure\n * occurred.\n * @param options - An object that can be used to configure `onlyOnce`, which\n * then removes the listener after its first invocation.\n * @returns A function that can be invoked to remove the listener.\n */\nexport function onChildChanged(\n query: Query,\n callback: (\n snapshot: DataSnapshot,\n previousChildName: string | null\n ) => unknown,\n cancelCallback: (error: Error) => unknown,\n options: ListenOptions\n): Unsubscribe;\n\nexport function onChildChanged(\n query: Query,\n callback: (\n snapshot: DataSnapshot,\n previousChildName: string | null\n ) => unknown,\n cancelCallbackOrListenOptions?: ((error: Error) => unknown) | ListenOptions,\n options?: ListenOptions\n): Unsubscribe {\n return addEventListener(\n query,\n 'child_changed',\n callback,\n cancelCallbackOrListenOptions,\n options\n );\n}\n\n/**\n * Listens for data changes at a particular location.\n *\n * This is the primary way to read data from a Database. Your callback\n * will be triggered for the initial data and again whenever the data changes.\n * Invoke the returned unsubscribe callback to stop receiving updates. See\n * {@link https://firebase.google.com/docs/database/web/retrieve-data | Retrieve Data on the Web}\n * for more details.\n *\n * An `onChildMoved` event will be triggered when a child's sort order changes\n * such that its position relative to its siblings changes. The `DataSnapshot`\n * passed to the callback will be for the data of the child that has moved. It\n * is also passed a second argument which is a string containing the key of the\n * previous sibling child by sort order, or `null` if it is the first child.\n *\n * @param query - The query to run.\n * @param callback - A callback that fires when the specified event occurs.\n * The callback will be passed a DataSnapshot and a string containing the key of\n * the previous child, by sort order, or `null` if it is the first child.\n * @param cancelCallback - An optional callback that will be notified if your\n * event subscription is ever canceled because your client does not have\n * permission to read this data (or it had permission but has now lost it).\n * This callback will be passed an `Error` object indicating why the failure\n * occurred.\n * @returns A function that can be invoked to remove the listener.\n */\nexport function onChildMoved(\n query: Query,\n callback: (\n snapshot: DataSnapshot,\n previousChildName: string | null\n ) => unknown,\n cancelCallback?: (error: Error) => unknown\n): Unsubscribe;\n\n/**\n * Listens for data changes at a particular location.\n *\n * This is the primary way to read data from a Database. Your callback\n * will be triggered for the initial data and again whenever the data changes.\n * Invoke the returned unsubscribe callback to stop receiving updates. See\n * {@link https://firebase.google.com/docs/database/web/retrieve-data | Retrieve Data on the Web}\n * for more details.\n *\n * An `onChildMoved` event will be triggered when a child's sort order changes\n * such that its position relative to its siblings changes. The `DataSnapshot`\n * passed to the callback will be for the data of the child that has moved. It\n * is also passed a second argument which is a string containing the key of the\n * previous sibling child by sort order, or `null` if it is the first child.\n *\n * @param query - The query to run.\n * @param callback - A callback that fires when the specified event occurs.\n * The callback will be passed a DataSnapshot and a string containing the key of\n * the previous child, by sort order, or `null` if it is the first child.\n * @param options - An object that can be used to configure `onlyOnce`, which\n * then removes the listener after its first invocation.\n * @returns A function that can be invoked to remove the listener.\n */\nexport function onChildMoved(\n query: Query,\n callback: (\n snapshot: DataSnapshot,\n previousChildName: string | null\n ) => unknown,\n options: ListenOptions\n): Unsubscribe;\n\n/**\n * Listens for data changes at a particular location.\n *\n * This is the primary way to read data from a Database. Your callback\n * will be triggered for the initial data and again whenever the data changes.\n * Invoke the returned unsubscribe callback to stop receiving updates. See\n * {@link https://firebase.google.com/docs/database/web/retrieve-data | Retrieve Data on the Web}\n * for more details.\n *\n * An `onChildMoved` event will be triggered when a child's sort order changes\n * such that its position relative to its siblings changes. The `DataSnapshot`\n * passed to the callback will be for the data of the child that has moved. It\n * is also passed a second argument which is a string containing the key of the\n * previous sibling child by sort order, or `null` if it is the first child.\n *\n * @param query - The query to run.\n * @param callback - A callback that fires when the specified event occurs.\n * The callback will be passed a DataSnapshot and a string containing the key of\n * the previous child, by sort order, or `null` if it is the first child.\n * @param cancelCallback - An optional callback that will be notified if your\n * event subscription is ever canceled because your client does not have\n * permission to read this data (or it had permission but has now lost it).\n * This callback will be passed an `Error` object indicating why the failure\n * occurred.\n * @param options - An object that can be used to configure `onlyOnce`, which\n * then removes the listener after its first invocation.\n * @returns A function that can be invoked to remove the listener.\n */\nexport function onChildMoved(\n query: Query,\n callback: (\n snapshot: DataSnapshot,\n previousChildName: string | null\n ) => unknown,\n cancelCallback: (error: Error) => unknown,\n options: ListenOptions\n): Unsubscribe;\n\nexport function onChildMoved(\n query: Query,\n callback: (\n snapshot: DataSnapshot,\n previousChildName: string | null\n ) => unknown,\n cancelCallbackOrListenOptions?: ((error: Error) => unknown) | ListenOptions,\n options?: ListenOptions\n): Unsubscribe {\n return addEventListener(\n query,\n 'child_moved',\n callback,\n cancelCallbackOrListenOptions,\n options\n );\n}\n\n/**\n * Listens for data changes at a particular location.\n *\n * This is the primary way to read data from a Database. Your callback\n * will be triggered for the initial data and again whenever the data changes.\n * Invoke the returned unsubscribe callback to stop receiving updates. See\n * {@link https://firebase.google.com/docs/database/web/retrieve-data | Retrieve Data on the Web}\n * for more details.\n *\n * An `onChildRemoved` event will be triggered once every time a child is\n * removed. The `DataSnapshot` passed into the callback will be the old data for\n * the child that was removed. A child will get removed when either:\n *\n * - a client explicitly calls `remove()` on that child or one of its ancestors\n * - a client calls `set(null)` on that child or one of its ancestors\n * - that child has all of its children removed\n * - there is a query in effect which now filters out the child (because it's\n * sort order changed or the max limit was hit)\n *\n * @param query - The query to run.\n * @param callback - A callback that fires when the specified event occurs.\n * The callback will be passed a DataSnapshot and a string containing the key of\n * the previous child, by sort order, or `null` if it is the first child.\n * @param cancelCallback - An optional callback that will be notified if your\n * event subscription is ever canceled because your client does not have\n * permission to read this data (or it had permission but has now lost it).\n * This callback will be passed an `Error` object indicating why the failure\n * occurred.\n * @returns A function that can be invoked to remove the listener.\n */\nexport function onChildRemoved(\n query: Query,\n callback: (snapshot: DataSnapshot) => unknown,\n cancelCallback?: (error: Error) => unknown\n): Unsubscribe;\n\n/**\n * Listens for data changes at a particular location.\n *\n * This is the primary way to read data from a Database. Your callback\n * will be triggered for the initial data and again whenever the data changes.\n * Invoke the returned unsubscribe callback to stop receiving updates. See\n * {@link https://firebase.google.com/docs/database/web/retrieve-data | Retrieve Data on the Web}\n * for more details.\n *\n * An `onChildRemoved` event will be triggered once every time a child is\n * removed. The `DataSnapshot` passed into the callback will be the old data for\n * the child that was removed. A child will get removed when either:\n *\n * - a client explicitly calls `remove()` on that child or one of its ancestors\n * - a client calls `set(null)` on that child or one of its ancestors\n * - that child has all of its children removed\n * - there is a query in effect which now filters out the child (because it's\n * sort order changed or the max limit was hit)\n *\n * @param query - The query to run.\n * @param callback - A callback that fires when the specified event occurs.\n * The callback will be passed a DataSnapshot and a string containing the key of\n * the previous child, by sort order, or `null` if it is the first child.\n * @param options - An object that can be used to configure `onlyOnce`, which\n * then removes the listener after its first invocation.\n * @returns A function that can be invoked to remove the listener.\n */\nexport function onChildRemoved(\n query: Query,\n callback: (snapshot: DataSnapshot) => unknown,\n options: ListenOptions\n): Unsubscribe;\n\n/**\n * Listens for data changes at a particular location.\n *\n * This is the primary way to read data from a Database. Your callback\n * will be triggered for the initial data and again whenever the data changes.\n * Invoke the returned unsubscribe callback to stop receiving updates. See\n * {@link https://firebase.google.com/docs/database/web/retrieve-data | Retrieve Data on the Web}\n * for more details.\n *\n * An `onChildRemoved` event will be triggered once every time a child is\n * removed. The `DataSnapshot` passed into the callback will be the old data for\n * the child that was removed. A child will get removed when either:\n *\n * - a client explicitly calls `remove()` on that child or one of its ancestors\n * - a client calls `set(null)` on that child or one of its ancestors\n * - that child has all of its children removed\n * - there is a query in effect which now filters out the child (because it's\n * sort order changed or the max limit was hit)\n *\n * @param query - The query to run.\n * @param callback - A callback that fires when the specified event occurs.\n * The callback will be passed a DataSnapshot and a string containing the key of\n * the previous child, by sort order, or `null` if it is the first child.\n * @param cancelCallback - An optional callback that will be notified if your\n * event subscription is ever canceled because your client does not have\n * permission to read this data (or it had permission but has now lost it).\n * This callback will be passed an `Error` object indicating why the failure\n * occurred.\n * @param options - An object that can be used to configure `onlyOnce`, which\n * then removes the listener after its first invocation.\n * @returns A function that can be invoked to remove the listener.\n */\nexport function onChildRemoved(\n query: Query,\n callback: (snapshot: DataSnapshot) => unknown,\n cancelCallback: (error: Error) => unknown,\n options: ListenOptions\n): Unsubscribe;\n\nexport function onChildRemoved(\n query: Query,\n callback: (snapshot: DataSnapshot) => unknown,\n cancelCallbackOrListenOptions?: ((error: Error) => unknown) | ListenOptions,\n options?: ListenOptions\n): Unsubscribe {\n return addEventListener(\n query,\n 'child_removed',\n callback,\n cancelCallbackOrListenOptions,\n options\n );\n}\n\nexport { EventType };\n\n/**\n * Detaches a callback previously attached with the corresponding `on*()` (`onValue`, `onChildAdded`) listener.\n * Note: This is not the recommended way to remove a listener. Instead, please use the returned callback function from\n * the respective `on*` callbacks.\n *\n * Detach a callback previously attached with `on*()`. Calling `off()` on a parent listener\n * will not automatically remove listeners registered on child nodes, `off()`\n * must also be called on any child listeners to remove the callback.\n *\n * If a callback is not specified, all callbacks for the specified eventType\n * will be removed. Similarly, if no eventType is specified, all callbacks\n * for the `Reference` will be removed.\n *\n * Individual listeners can also be removed by invoking their unsubscribe\n * callbacks.\n *\n * @param query - The query that the listener was registered with.\n * @param eventType - One of the following strings: \"value\", \"child_added\",\n * \"child_changed\", \"child_removed\", or \"child_moved.\" If omitted, all callbacks\n * for the `Reference` will be removed.\n * @param callback - The callback function that was passed to `on()` or\n * `undefined` to remove all callbacks.\n */\nexport function off(\n query: Query,\n eventType?: EventType,\n callback?: (\n snapshot: DataSnapshot,\n previousChildName?: string | null\n ) => unknown\n): void {\n let container: EventRegistration | null = null;\n const expCallback = callback ? new CallbackContext(callback) : null;\n if (eventType === 'value') {\n container = new ValueEventRegistration(expCallback);\n } else if (eventType) {\n container = new ChildEventRegistration(eventType, expCallback);\n }\n repoRemoveEventCallbackForQuery(query._repo, query, container);\n}\n\n/** Describes the different query constraints available in this SDK. */\nexport type QueryConstraintType =\n | 'endAt'\n | 'endBefore'\n | 'startAt'\n | 'startAfter'\n | 'limitToFirst'\n | 'limitToLast'\n | 'orderByChild'\n | 'orderByKey'\n | 'orderByPriority'\n | 'orderByValue'\n | 'equalTo';\n\n/**\n * A `QueryConstraint` is used to narrow the set of documents returned by a\n * Database query. `QueryConstraint`s are created by invoking {@link endAt},\n * {@link endBefore}, {@link startAt}, {@link startAfter}, {@link\n * limitToFirst}, {@link limitToLast}, {@link orderByChild},\n * {@link orderByChild}, {@link orderByKey} , {@link orderByPriority} ,\n * {@link orderByValue} or {@link equalTo} and\n * can then be passed to {@link query} to create a new query instance that\n * also contains this `QueryConstraint`.\n */\nexport abstract class QueryConstraint {\n /** The type of this query constraints */\n abstract readonly type: QueryConstraintType;\n\n /**\n * Takes the provided `Query` and returns a copy of the `Query` with this\n * `QueryConstraint` applied.\n */\n abstract _apply<T>(query: QueryImpl): QueryImpl;\n}\n\nclass QueryEndAtConstraint extends QueryConstraint {\n readonly type: 'endAt';\n\n constructor(\n private readonly _value: number | string | boolean | null,\n private readonly _key?: string\n ) {\n super();\n }\n\n _apply<T>(query: QueryImpl): QueryImpl {\n validateFirebaseDataArg('endAt', this._value, query._path, true);\n const newParams = queryParamsEndAt(\n query._queryParams,\n this._value,\n this._key\n );\n validateLimit(newParams);\n validateQueryEndpoints(newParams);\n if (query._queryParams.hasEnd()) {\n throw new Error(\n 'endAt: Starting point was already set (by another call to endAt, ' +\n 'endBefore or equalTo).'\n );\n }\n return new QueryImpl(\n query._repo,\n query._path,\n newParams,\n query._orderByCalled\n );\n }\n}\n\n/**\n * Creates a `QueryConstraint` with the specified ending point.\n *\n * Using `startAt()`, `startAfter()`, `endBefore()`, `endAt()` and `equalTo()`\n * allows you to choose arbitrary starting and ending points for your queries.\n *\n * The ending point is inclusive, so children with exactly the specified value\n * will be included in the query. The optional key argument can be used to\n * further limit the range of the query. If it is specified, then children that\n * have exactly the specified value must also have a key name less than or equal\n * to the specified key.\n *\n * You can read more about `endAt()` in\n * {@link https://firebase.google.com/docs/database/web/lists-of-data#filtering_data | Filtering data}.\n *\n * @param value - The value to end at. The argument type depends on which\n * `orderBy*()` function was used in this query. Specify a value that matches\n * the `orderBy*()` type. When used in combination with `orderByKey()`, the\n * value must be a string.\n * @param key - The child key to end at, among the children with the previously\n * specified priority. This argument is only allowed if ordering by child,\n * value, or priority.\n */\nexport function endAt(\n value: number | string | boolean | null,\n key?: string\n): QueryConstraint {\n validateKey('endAt', 'key', key, true);\n return new QueryEndAtConstraint(value, key);\n}\n\nclass QueryEndBeforeConstraint extends QueryConstraint {\n readonly type: 'endBefore';\n\n constructor(\n private readonly _value: number | string | boolean | null,\n private readonly _key?: string\n ) {\n super();\n }\n\n _apply<T>(query: QueryImpl): QueryImpl {\n validateFirebaseDataArg('endBefore', this._value, query._path, false);\n const newParams = queryParamsEndBefore(\n query._queryParams,\n this._value,\n this._key\n );\n validateLimit(newParams);\n validateQueryEndpoints(newParams);\n if (query._queryParams.hasEnd()) {\n throw new Error(\n 'endBefore: Starting point was already set (by another call to endAt, ' +\n 'endBefore or equalTo).'\n );\n }\n return new QueryImpl(\n query._repo,\n query._path,\n newParams,\n query._orderByCalled\n );\n }\n}\n\n/**\n * Creates a `QueryConstraint` with the specified ending point (exclusive).\n *\n * Using `startAt()`, `startAfter()`, `endBefore()`, `endAt()` and `equalTo()`\n * allows you to choose arbitrary starting and ending points for your queries.\n *\n * The ending point is exclusive. If only a value is provided, children\n * with a value less than the specified value will be included in the query.\n * If a key is specified, then children must have a value less than or equal\n * to the specified value and a key name less than the specified key.\n *\n * @param value - The value to end before. The argument type depends on which\n * `orderBy*()` function was used in this query. Specify a value that matches\n * the `orderBy*()` type. When used in combination with `orderByKey()`, the\n * value must be a string.\n * @param key - The child key to end before, among the children with the\n * previously specified priority. This argument is only allowed if ordering by\n * child, value, or priority.\n */\nexport function endBefore(\n value: number | string | boolean | null,\n key?: string\n): QueryConstraint {\n validateKey('endBefore', 'key', key, true);\n return new QueryEndBeforeConstraint(value, key);\n}\n\nclass QueryStartAtConstraint extends QueryConstraint {\n readonly type: 'startAt';\n\n constructor(\n private readonly _value: number | string | boolean | null,\n private readonly _key?: string\n ) {\n super();\n }\n\n _apply<T>(query: QueryImpl): QueryImpl {\n validateFirebaseDataArg('startAt', this._value, query._path, true);\n const newParams = queryParamsStartAt(\n query._queryParams,\n this._value,\n this._key\n );\n validateLimit(newParams);\n validateQueryEndpoints(newParams);\n if (query._queryParams.hasStart()) {\n throw new Error(\n 'startAt: Starting point was already set (by another call to startAt, ' +\n 'startBefore or equalTo).'\n );\n }\n return new QueryImpl(\n query._repo,\n query._path,\n newParams,\n query._orderByCalled\n );\n }\n}\n\n/**\n * Creates a `QueryConstraint` with the specified starting point.\n *\n * Using `startAt()`, `startAfter()`, `endBefore()`, `endAt()` and `equalTo()`\n * allows you to choose arbitrary starting and ending points for your queries.\n *\n * The starting point is inclusive, so children with exactly the specified value\n * will be included in the query. The optional key argument can be used to\n * further limit the range of the query. If it is specified, then children that\n * have exactly the specified value must also have a key name greater than or\n * equal to the specified key.\n *\n * You can read more about `startAt()` in\n * {@link https://firebase.google.com/docs/database/web/lists-of-data#filtering_data | Filtering data}.\n *\n * @param value - The value to start at. The argument type depends on which\n * `orderBy*()` function was used in this query. Specify a value that matches\n * the `orderBy*()` type. When used in combination with `orderByKey()`, the\n * value must be a string.\n * @param key - The child key to start at. This argument is only allowed if\n * ordering by child, value, or priority.\n */\nexport function startAt(\n value: number | string | boolean | null = null,\n key?: string\n): QueryConstraint {\n validateKey('startAt', 'key', key, true);\n return new QueryStartAtConstraint(value, key);\n}\n\nclass QueryStartAfterConstraint extends QueryConstraint {\n readonly type: 'startAfter';\n\n constructor(\n private readonly _value: number | string | boolean | null,\n private readonly _key?: string\n ) {\n super();\n }\n\n _apply<T>(query: QueryImpl): QueryImpl {\n validateFirebaseDataArg('startAfter', this._value, query._path, false);\n const newParams = queryParamsStartAfter(\n query._queryParams,\n this._value,\n this._key\n );\n validateLimit(newParams);\n validateQueryEndpoints(newParams);\n if (query._queryParams.hasStart()) {\n throw new Error(\n 'startAfter: Starting point was already set (by another call to startAt, ' +\n 'startAfter, or equalTo).'\n );\n }\n return new QueryImpl(\n query._repo,\n query._path,\n newParams,\n query._orderByCalled\n );\n }\n}\n\n/**\n * Creates a `QueryConstraint` with the specified starting point (exclusive).\n *\n * Using `startAt()`, `startAfter()`, `endBefore()`, `endAt()` and `equalTo()`\n * allows you to choose arbitrary starting and ending points for your queries.\n *\n * The starting point is exclusive. If only a value is provided, children\n * with a value greater than the specified value will be included in the query.\n * If a key is specified, then children must have a value greater than or equal\n * to the specified value and a a key name greater than the specified key.\n *\n * @param value - The value to start after. The argument type depends on which\n * `orderBy*()` function was used in this query. Specify a value that matches\n * the `orderBy*()` type. When used in combination with `orderByKey()`, the\n * value must be a string.\n * @param key - The child key to start after. This argument is only allowed if\n * ordering by child, value, or priority.\n */\nexport function startAfter(\n value: number | string | boolean | null,\n key?: string\n): QueryConstraint {\n validateKey('startAfter', 'key', key, true);\n return new QueryStartAfterConstraint(value, key);\n}\n\nclass QueryLimitToFirstConstraint extends QueryConstraint {\n readonly type: 'limitToFirst';\n\n constructor(private readonly _limit: number) {\n super();\n }\n\n _apply<T>(query: QueryImpl): QueryImpl {\n if (query._queryParams.hasLimit()) {\n throw new Error(\n 'limitToFirst: Limit was already set (by another call to limitToFirst ' +\n 'or limitToLast).'\n );\n }\n return new QueryImpl(\n query._repo,\n query._path,\n queryParamsLimitToFirst(query._queryParams, this._limit),\n query._orderByCalled\n );\n }\n}\n\n/**\n * Creates a new `QueryConstraint` that if limited to the first specific number\n * of children.\n *\n * The `limitToFirst()` method is used to set a maximum number of children to be\n * synced for a given callback. If we set a limit of 100, we will initially only\n * receive up to 100 `child_added` events. If we have fewer than 100 messages\n * stored in our Database, a `child_added` event will fire for each message.\n * However, if we have over 100 messages, we will only receive a `child_added`\n * event for the first 100 ordered messages. As items change, we will receive\n * `child_removed` events for each item that drops out of the active list so\n * that the total number stays at 100.\n *\n * You can read more about `limitToFirst()` in\n * {@link https://firebase.google.com/docs/database/web/lists-of-data#filtering_data | Filtering data}.\n *\n * @param limit - The maximum number of nodes to include in this query.\n */\nexport function limitToFirst(limit: number): QueryConstraint {\n if (typeof limit !== 'number' || Math.floor(limit) !== limit || limit <= 0) {\n throw new Error('limitToFirst: First argument must be a positive integer.');\n }\n return new QueryLimitToFirstConstraint(limit);\n}\n\nclass QueryLimitToLastConstraint extends QueryConstraint {\n readonly type: 'limitToLast';\n\n constructor(private readonly _limit: number) {\n super();\n }\n\n _apply<T>(query: QueryImpl): QueryImpl {\n if (query._queryParams.hasLimit()) {\n throw new Error(\n 'limitToLast: Limit was already set (by another call to limitToFirst ' +\n 'or limitToLast).'\n );\n }\n return new QueryImpl(\n query._repo,\n query._path,\n queryParamsLimitToLast(query._queryParams, this._limit),\n query._orderByCalled\n );\n }\n}\n\n/**\n * Creates a new `QueryConstraint` that is limited to return only the last\n * specified number of children.\n *\n * The `limitToLast()` method is used to set a maximum number of children to be\n * synced for a given callback. If we set a limit of 100, we will initially only\n * receive up to 100 `child_added` events. If we have fewer than 100 messages\n * stored in our Database, a `child_added` event will fire for each message.\n * However, if we have over 100 messages, we will only receive a `child_added`\n * event for the last 100 ordered messages. As items change, we will receive\n * `child_removed` events for each item that drops out of the active list so\n * that the total number stays at 100.\n *\n * You can read more about `limitToLast()` in\n * {@link https://firebase.google.com/docs/database/web/lists-of-data#filtering_data | Filtering data}.\n *\n * @param limit - The maximum number of nodes to include in this query.\n */\nexport function limitToLast(limit: number): QueryConstraint {\n if (typeof limit !== 'number' || Math.floor(limit) !== limit || limit <= 0) {\n throw new Error('limitToLast: First argument must be a positive integer.');\n }\n\n return new QueryLimitToLastConstraint(limit);\n}\n\nclass QueryOrderByChildConstraint extends QueryConstraint {\n readonly type: 'orderByChild';\n\n constructor(private readonly _path: string) {\n super();\n }\n\n _apply<T>(query: QueryImpl): QueryImpl {\n validateNoPreviousOrderByCall(query, 'orderByChild');\n const parsedPath = new Path(this._path);\n if (pathIsEmpty(parsedPath)) {\n throw new Error(\n 'orderByChild: cannot pass in empty path. Use orderByValue() instead.'\n );\n }\n const index = new PathIndex(parsedPath);\n const newParams = queryParamsOrderBy(query._queryParams, index);\n validateQueryEndpoints(newParams);\n\n return new QueryImpl(\n query._repo,\n query._path,\n newParams,\n /*orderByCalled=*/ true\n );\n }\n}\n\n/**\n * Creates a new `QueryConstraint` that orders by the specified child key.\n *\n * Queries can only order by one key at a time. Calling `orderByChild()`\n * multiple times on the same query is an error.\n *\n * Firebase queries allow you to order your data by any child key on the fly.\n * However, if you know in advance what your indexes will be, you can define\n * them via the .indexOn rule in your Security Rules for better performance. See\n * the{@link https://firebase.google.com/docs/database/security/indexing-data}\n * rule for more information.\n *\n * You can read more about `orderByChild()` in\n * {@link https://firebase.google.com/docs/database/web/lists-of-data#sort_data | Sort data}.\n *\n * @param path - The path to order by.\n */\nexport function orderByChild(path: string): QueryConstraint {\n if (path === '$key') {\n throw new Error(\n 'orderByChild: \"$key\" is invalid. Use orderByKey() instead.'\n );\n } else if (path === '$priority') {\n throw new Error(\n 'orderByChild: \"$priority\" is invalid. Use orderByPriority() instead.'\n );\n } else if (path === '$value') {\n throw new Error(\n 'orderByChild: \"$value\" is invalid. Use orderByValue() instead.'\n );\n }\n validatePathString('orderByChild', 'path', path, false);\n return new QueryOrderByChildConstraint(path);\n}\n\nclass QueryOrderByKeyConstraint extends QueryConstraint {\n readonly type: 'orderByKey';\n\n _apply<T>(query: QueryImpl): QueryImpl {\n validateNoPreviousOrderByCall(query, 'orderByKey');\n const newParams = queryParamsOrderBy(query._queryParams, KEY_INDEX);\n validateQueryEndpoints(newParams);\n return new QueryImpl(\n query._repo,\n query._path,\n newParams,\n /*orderByCalled=*/ true\n );\n }\n}\n\n/**\n * Creates a new `QueryConstraint` that orders by the key.\n *\n * Sorts the results of a query by their (ascending) key values.\n *\n * You can read more about `orderByKey()` in\n * {@link https://firebase.google.com/docs/database/web/lists-of-data#sort_data | Sort data}.\n */\nexport function orderByKey(): QueryConstraint {\n return new QueryOrderByKeyConstraint();\n}\n\nclass QueryOrderByPriorityConstraint extends QueryConstraint {\n readonly type: 'orderByPriority';\n\n _apply<T>(query: QueryImpl): QueryImpl {\n validateNoPreviousOrderByCall(query, 'orderByPriority');\n const newParams = queryParamsOrderBy(query._queryParams, PRIORITY_INDEX);\n validateQueryEndpoints(newParams);\n return new QueryImpl(\n query._repo,\n query._path,\n newParams,\n /*orderByCalled=*/ true\n );\n }\n}\n\n/**\n * Creates a new `QueryConstraint` that orders by priority.\n *\n * Applications need not use priority but can order collections by\n * ordinary properties (see\n * {@link https://firebase.google.com/docs/database/web/lists-of-data#sort_data | Sort data}\n * for alternatives to priority.\n */\nexport function orderByPriority(): QueryConstraint {\n return new QueryOrderByPriorityConstraint();\n}\n\nclass QueryOrderByValueConstraint extends QueryConstraint {\n readonly type: 'orderByValue';\n\n _apply<T>(query: QueryImpl): QueryImpl {\n validateNoPreviousOrderByCall(query, 'orderByValue');\n const newParams = queryParamsOrderBy(query._queryParams, VALUE_INDEX);\n validateQueryEndpoints(newParams);\n return new QueryImpl(\n query._repo,\n query._path,\n newParams,\n /*orderByCalled=*/ true\n );\n }\n}\n\n/**\n * Creates a new `QueryConstraint` that orders by value.\n *\n * If the children of a query are all scalar values (string, number, or\n * boolean), you can order the results by their (ascending) values.\n *\n * You can read more about `orderByValue()` in\n * {@link https://firebase.google.com/docs/database/web/lists-of-data#sort_data | Sort data}.\n */\nexport function orderByValue(): QueryConstraint {\n return new QueryOrderByValueConstraint();\n}\n\nclass QueryEqualToValueConstraint extends QueryConstraint {\n readonly type: 'equalTo';\n\n constructor(\n private readonly _value: number | string | boolean | null,\n private readonly _key?: string\n ) {\n super();\n }\n\n _apply<T>(query: QueryImpl): QueryImpl {\n validateFirebaseDataArg('equalTo', this._value, query._path, false);\n if (query._queryParams.hasStart()) {\n throw new Error(\n 'equalTo: Starting point was already set (by another call to startAt/startAfter or ' +\n 'equalTo).'\n );\n }\n if (query._queryParams.hasEnd()) {\n throw new Error(\n 'equalTo: Ending point was already set (by another call to endAt/endBefore or ' +\n 'equalTo).'\n );\n }\n return new QueryEndAtConstraint(this._value, this._key)._apply(\n new QueryStartAtConstraint(this._value, this._key)._apply(query)\n );\n }\n}\n\n/**\n * Creates a `QueryConstraint` that includes children that match the specified\n * value.\n *\n * Using `startAt()`, `startAfter()`, `endBefore()`, `endAt()` and `equalTo()`\n * allows you to choose arbitrary starting and ending points for your queries.\n *\n * The optional key argument can be used to further limit the range of the\n * query. If it is specified, then children that have exactly the specified\n * value must also have exactly the specified key as their key name. This can be\n * used to filter result sets with many matches for the same value.\n *\n * You can read more about `equalTo()` in\n * {@link https://firebase.google.com/docs/database/web/lists-of-data#filtering_data | Filtering data}.\n *\n * @param value - The value to match for. The argument type depends on which\n * `orderBy*()` function was used in this query. Specify a value that matches\n * the `orderBy*()` type. When used in combination with `orderByKey()`, the\n * value must be a string.\n * @param key - The child key to start at, among the children with the\n * previously specified priority. This argument is only allowed if ordering by\n * child, value, or priority.\n */\nexport function equalTo(\n value: number | string | boolean | null,\n key?: string\n): QueryConstraint {\n validateKey('equalTo', 'key', key, true);\n return new QueryEqualToValueConstraint(value, key);\n}\n\n/**\n * Creates a new immutable instance of `Query` that is extended to also include\n * additional query constraints.\n *\n * @param query - The Query instance to use as a base for the new constraints.\n * @param queryConstraints - The list of `QueryConstraint`s to apply.\n * @throws if any of the provided query constraints cannot be combined with the\n * existing or new constraints.\n */\nexport function query(\n query: Query,\n ...queryConstraints: QueryConstraint[]\n): Query {\n let queryImpl = getModularInstance(query) as QueryImpl;\n for (const constraint of queryConstraints) {\n queryImpl = constraint._apply(queryImpl);\n }\n return queryImpl;\n}\n\n/**\n * Define reference constructor in various modules\n *\n * We are doing this here to avoid several circular\n * dependency issues\n */\nsyncPointSetReferenceConstructor(ReferenceImpl);\nsyncTreeSetReferenceConstructor(ReferenceImpl);\n","/**\n * @license\n * Copyright 2020 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport {\n _FirebaseService,\n _getProvider,\n FirebaseApp,\n getApp\n} from '@firebase/app';\nimport { AppCheckInternalComponentName } from '@firebase/app-check-interop-types';\nimport { FirebaseAuthInternalName } from '@firebase/auth-interop-types';\nimport { Provider } from '@firebase/component';\nimport {\n getModularInstance,\n createMockUserToken,\n EmulatorMockTokenOptions,\n getDefaultEmulatorHostnameAndPort\n} from '@firebase/util';\n\nimport { AppCheckTokenProvider } from '../core/AppCheckTokenProvider';\nimport {\n AuthTokenProvider,\n EmulatorTokenProvider,\n FirebaseAuthTokenProvider\n} from '../core/AuthTokenProvider';\nimport { Repo, repoInterrupt, repoResume, repoStart } from '../core/Repo';\nimport { RepoInfo } from '../core/RepoInfo';\nimport { parseRepoInfo } from '../core/util/libs/parser';\nimport { newEmptyPath, pathIsEmpty } from '../core/util/Path';\nimport {\n warn,\n fatal,\n log,\n enableLogging as enableLoggingImpl\n} from '../core/util/util';\nimport { validateUrl } from '../core/util/validation';\nimport { BrowserPollConnection } from '../realtime/BrowserPollConnection';\nimport { TransportManager } from '../realtime/TransportManager';\nimport { WebSocketConnection } from '../realtime/WebSocketConnection';\n\nimport { ReferenceImpl } from './Reference_impl';\n\nexport { EmulatorMockTokenOptions } from '@firebase/util';\n/**\n * This variable is also defined in the firebase Node.js Admin SDK. Before\n * modifying this definition, consult the definition in:\n *\n * https://github.com/firebase/firebase-admin-node\n *\n * and make sure the two are consistent.\n */\nconst FIREBASE_DATABASE_EMULATOR_HOST_VAR = 'FIREBASE_DATABASE_EMULATOR_HOST';\n\n/**\n * Creates and caches `Repo` instances.\n */\nconst repos: {\n [appName: string]: {\n [dbUrl: string]: Repo;\n };\n} = {};\n\n/**\n * If true, any new `Repo` will be created to use `ReadonlyRestClient` (for testing purposes).\n */\nlet useRestClient = false;\n\n/**\n * Update an existing `Repo` in place to point to a new host/port.\n */\nfunction repoManagerApplyEmulatorSettings(\n repo: Repo,\n host: string,\n port: number,\n tokenProvider?: AuthTokenProvider\n): void {\n repo.repoInfo_ = new RepoInfo(\n `${host}:${port}`,\n /* secure= */ false,\n repo.repoInfo_.namespace,\n repo.repoInfo_.webSocketOnly,\n repo.repoInfo_.nodeAdmin,\n repo.repoInfo_.persistenceKey,\n repo.repoInfo_.includeNamespaceInQueryParams\n );\n\n if (tokenProvider) {\n repo.authTokenProvider_ = tokenProvider;\n }\n}\n\n/**\n * This function should only ever be called to CREATE a new database instance.\n * @internal\n */\nexport function repoManagerDatabaseFromApp(\n app: FirebaseApp,\n authProvider: Provider<FirebaseAuthInternalName>,\n appCheckProvider?: Provider<AppCheckInternalComponentName>,\n url?: string,\n nodeAdmin?: boolean\n): Database {\n let dbUrl: string | undefined = url || app.options.databaseURL;\n if (dbUrl === undefined) {\n if (!app.options.projectId) {\n fatal(\n \"Can't determine Firebase Database URL. Be sure to include \" +\n ' a Project ID when calling firebase.initializeApp().'\n );\n }\n\n log('Using default host for project ', app.options.projectId);\n dbUrl = `${app.options.projectId}-default-rtdb.firebaseio.com`;\n }\n\n let parsedUrl = parseRepoInfo(dbUrl, nodeAdmin);\n let repoInfo = parsedUrl.repoInfo;\n\n let isEmulator: boolean;\n\n let dbEmulatorHost: string | undefined = undefined;\n if (typeof process !== 'undefined' && process.env) {\n dbEmulatorHost = process.env[FIREBASE_DATABASE_EMULATOR_HOST_VAR];\n }\n\n if (dbEmulatorHost) {\n isEmulator = true;\n dbUrl = `http://${dbEmulatorHost}?ns=${repoInfo.namespace}`;\n parsedUrl = parseRepoInfo(dbUrl, nodeAdmin);\n repoInfo = parsedUrl.repoInfo;\n } else {\n isEmulator = !parsedUrl.repoInfo.secure;\n }\n\n const authTokenProvider =\n nodeAdmin && isEmulator\n ? new EmulatorTokenProvider(EmulatorTokenProvider.OWNER)\n : new FirebaseAuthTokenProvider(app.name, app.options, authProvider);\n\n validateUrl('Invalid Firebase Database URL', parsedUrl);\n if (!pathIsEmpty(parsedUrl.path)) {\n fatal(\n 'Database URL must point to the root of a Firebase Database ' +\n '(not including a child path).'\n );\n }\n\n const repo = repoManagerCreateRepo(\n repoInfo,\n app,\n authTokenProvider,\n new AppCheckTokenProvider(app.name, appCheckProvider)\n );\n return new Database(repo, app);\n}\n\n/**\n * Remove the repo and make sure it is disconnected.\n *\n */\nfunction repoManagerDeleteRepo(repo: Repo, appName: string): void {\n const appRepos = repos[appName];\n // This should never happen...\n if (!appRepos || appRepos[repo.key] !== repo) {\n fatal(`Database ${appName}(${repo.repoInfo_}) has already been deleted.`);\n }\n repoInterrupt(repo);\n delete appRepos[repo.key];\n}\n\n/**\n * Ensures a repo doesn't already exist and then creates one using the\n * provided app.\n *\n * @param repoInfo - The metadata about the Repo\n * @returns The Repo object for the specified server / repoName.\n */\nfunction repoManagerCreateRepo(\n repoInfo: RepoInfo,\n app: FirebaseApp,\n authTokenProvider: AuthTokenProvider,\n appCheckProvider: AppCheckTokenProvider\n): Repo {\n let appRepos = repos[app.name];\n\n if (!appRepos) {\n appRepos = {};\n repos[app.name] = appRepos;\n }\n\n let repo = appRepos[repoInfo.toURLString()];\n if (repo) {\n fatal(\n 'Database initialized multiple times. Please make sure the format of the database URL matches with each database() call.'\n );\n }\n repo = new Repo(repoInfo, useRestClient, authTokenProvider, appCheckProvider);\n appRepos[repoInfo.toURLString()] = repo;\n\n return repo;\n}\n\n/**\n * Forces us to use ReadonlyRestClient instead of PersistentConnection for new Repos.\n */\nexport function repoManagerForceRestClient(forceRestClient: boolean): void {\n useRestClient = forceRestClient;\n}\n\n/**\n * Class representing a Firebase Realtime Database.\n */\nexport class Database implements _FirebaseService {\n /** Represents a `Database` instance. */\n readonly 'type' = 'database';\n\n /** Track if the instance has been used (root or repo accessed) */\n _instanceStarted: boolean = false;\n\n /** Backing state for root_ */\n private _rootInternal?: ReferenceImpl;\n\n /** @hideconstructor */\n constructor(\n public _repoInternal: Repo,\n /** The {@link @firebase/app#FirebaseApp} associated with this Realtime Database instance. */\n readonly app: FirebaseApp\n ) {}\n\n get _repo(): Repo {\n if (!this._instanceStarted) {\n repoStart(\n this._repoInternal,\n this.app.options.appId,\n this.app.options['databaseAuthVariableOverride']\n );\n this._instanceStarted = true;\n }\n return this._repoInternal;\n }\n\n get _root(): ReferenceImpl {\n if (!this._rootInternal) {\n this._rootInternal = new ReferenceImpl(this._repo, newEmptyPath());\n }\n return this._rootInternal;\n }\n\n _delete(): Promise<void> {\n if (this._rootInternal !== null) {\n repoManagerDeleteRepo(this._repo, this.app.name);\n this._repoInternal = null;\n this._rootInternal = null;\n }\n return Promise.resolve();\n }\n\n _checkNotDeleted(apiName: string) {\n if (this._rootInternal === null) {\n fatal('Cannot call ' + apiName + ' on a deleted database.');\n }\n }\n}\n\nfunction checkTransportInit() {\n if (TransportManager.IS_TRANSPORT_INITIALIZED) {\n warn(\n 'Transport has already been initialized. Please call this function before calling ref or setting up a listener'\n );\n }\n}\n\n/**\n * Force the use of websockets instead of longPolling.\n */\nexport function forceWebSockets() {\n checkTransportInit();\n BrowserPollConnection.forceDisallow();\n}\n\n/**\n * Force the use of longPolling instead of websockets. This will be ignored if websocket protocol is used in databaseURL.\n */\nexport function forceLongPolling() {\n checkTransportInit();\n WebSocketConnection.forceDisallow();\n BrowserPollConnection.forceAllow();\n}\n\n/**\n * Returns the instance of the Realtime Database SDK that is associated\n * with the provided {@link @firebase/app#FirebaseApp}. Initializes a new instance with\n * with default settings if no instance exists or if the existing instance uses\n * a custom database URL.\n *\n * @param app - The {@link @firebase/app#FirebaseApp} instance that the returned Realtime\n * Database instance is associated with.\n * @param url - The URL of the Realtime Database instance to connect to. If not\n * provided, the SDK connects to the default instance of the Firebase App.\n * @returns The `Database` instance of the provided app.\n */\nexport function getDatabase(\n app: FirebaseApp = getApp(),\n url?: string\n): Database {\n const db = _getProvider(app, 'database').getImmediate({\n identifier: url\n }) as Database;\n if (!db._instanceStarted) {\n const emulator = getDefaultEmulatorHostnameAndPort('database');\n if (emulator) {\n connectDatabaseEmulator(db, ...emulator);\n }\n }\n return db;\n}\n\n/**\n * Modify the provided instance to communicate with the Realtime Database\n * emulator.\n *\n * <p>Note: This method must be called before performing any other operation.\n *\n * @param db - The instance to modify.\n * @param host - The emulator host (ex: localhost)\n * @param port - The emulator port (ex: 8080)\n * @param options.mockUserToken - the mock auth token to use for unit testing Security Rules\n */\nexport function connectDatabaseEmulator(\n db: Database,\n host: string,\n port: number,\n options: {\n mockUserToken?: EmulatorMockTokenOptions | string;\n } = {}\n): void {\n db = getModularInstance(db);\n db._checkNotDeleted('useEmulator');\n if (db._instanceStarted) {\n fatal(\n 'Cannot call useEmulator() after instance has already been initialized.'\n );\n }\n\n const repo = db._repoInternal;\n let tokenProvider: EmulatorTokenProvider | undefined = undefined;\n if (repo.repoInfo_.nodeAdmin) {\n if (options.mockUserToken) {\n fatal(\n 'mockUserToken is not supported by the Admin SDK. For client access with mock users, please use the \"firebase\" package instead of \"firebase-admin\".'\n );\n }\n tokenProvider = new EmulatorTokenProvider(EmulatorTokenProvider.OWNER);\n } else if (options.mockUserToken) {\n const token =\n typeof options.mockUserToken === 'string'\n ? options.mockUserToken\n : createMockUserToken(options.mockUserToken, db.app.options.projectId);\n tokenProvider = new EmulatorTokenProvider(token);\n }\n\n // Modify the repo to apply emulator settings\n repoManagerApplyEmulatorSettings(repo, host, port, tokenProvider);\n}\n\n/**\n * Disconnects from the server (all Database operations will be completed\n * offline).\n *\n * The client automatically maintains a persistent connection to the Database\n * server, which will remain active indefinitely and reconnect when\n * disconnected. However, the `goOffline()` and `goOnline()` methods may be used\n * to control the client connection in cases where a persistent connection is\n * undesirable.\n *\n * While offline, the client will no longer receive data updates from the\n * Database. However, all Database operations performed locally will continue to\n * immediately fire events, allowing your application to continue behaving\n * normally. Additionally, each operation performed locally will automatically\n * be queued and retried upon reconnection to the Database server.\n *\n * To reconnect to the Database and begin receiving remote events, see\n * `goOnline()`.\n *\n * @param db - The instance to disconnect.\n */\nexport function goOffline(db: Database): void {\n db = getModularInstance(db);\n db._checkNotDeleted('goOffline');\n repoInterrupt(db._repo);\n}\n\n/**\n * Reconnects to the server and synchronizes the offline Database state\n * with the server state.\n *\n * This method should be used after disabling the active connection with\n * `goOffline()`. Once reconnected, the client will transmit the proper data\n * and fire the appropriate events so that your client \"catches up\"\n * automatically.\n *\n * @param db - The instance to reconnect.\n */\nexport function goOnline(db: Database): void {\n db = getModularInstance(db);\n db._checkNotDeleted('goOnline');\n repoResume(db._repo);\n}\n\n/**\n * Logs debugging information to the console.\n *\n * @param enabled - Enables logging if `true`, disables logging if `false`.\n * @param persistent - Remembers the logging state between page refreshes if\n * `true`.\n */\nexport function enableLogging(enabled: boolean, persistent?: boolean);\n\n/**\n * Logs debugging information to the console.\n *\n * @param logger - A custom logger function to control how things get logged.\n */\nexport function enableLogging(logger: (message: string) => unknown);\n\nexport function enableLogging(\n logger: boolean | ((message: string) => unknown),\n persistent?: boolean\n): void {\n enableLoggingImpl(logger, persistent);\n}\n","/**\n * @license\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { base64urlEncodeWithoutPadding } from './crypt';\n\n// Firebase Auth tokens contain snake_case claims following the JWT standard / convention.\n/* eslint-disable camelcase */\n\nexport type FirebaseSignInProvider =\n | 'custom'\n | 'email'\n | 'password'\n | 'phone'\n | 'anonymous'\n | 'google.com'\n | 'facebook.com'\n | 'github.com'\n | 'twitter.com'\n | 'microsoft.com'\n | 'apple.com';\n\ninterface FirebaseIdToken {\n // Always set to https://securetoken.google.com/PROJECT_ID\n iss: string;\n\n // Always set to PROJECT_ID\n aud: string;\n\n // The user's unique ID\n sub: string;\n\n // The token issue time, in seconds since epoch\n iat: number;\n\n // The token expiry time, normally 'iat' + 3600\n exp: number;\n\n // The user's unique ID. Must be equal to 'sub'\n user_id: string;\n\n // The time the user authenticated, normally 'iat'\n auth_time: number;\n\n // The sign in provider, only set when the provider is 'anonymous'\n provider_id?: 'anonymous';\n\n // The user's primary email\n email?: string;\n\n // The user's email verification status\n email_verified?: boolean;\n\n // The user's primary phone number\n phone_number?: string;\n\n // The user's display name\n name?: string;\n\n // The user's profile photo URL\n picture?: string;\n\n // Information on all identities linked to this user\n firebase: {\n // The primary sign-in provider\n sign_in_provider: FirebaseSignInProvider;\n\n // A map of providers to the user's list of unique identifiers from\n // each provider\n identities?: { [provider in FirebaseSignInProvider]?: string[] };\n };\n\n // Custom claims set by the developer\n [claim: string]: unknown;\n\n uid?: never; // Try to catch a common mistake of \"uid\" (should be \"sub\" instead).\n}\n\nexport type EmulatorMockTokenOptions = ({ user_id: string } | { sub: string }) &\n Partial<FirebaseIdToken>;\n\nexport function createMockUserToken(\n token: EmulatorMockTokenOptions,\n projectId?: string\n): string {\n if (token.uid) {\n throw new Error(\n 'The \"uid\" field is no longer supported by mockUserToken. Please use \"sub\" instead for Firebase Auth User ID.'\n );\n }\n // Unsecured JWTs use \"none\" as the algorithm.\n const header = {\n alg: 'none',\n type: 'JWT'\n };\n\n const project = projectId || 'demo-project';\n const iat = token.iat || 0;\n const sub = token.sub || token.user_id;\n if (!sub) {\n throw new Error(\"mockUserToken must contain 'sub' or 'user_id' field!\");\n }\n\n const payload: FirebaseIdToken = {\n // Set all required fields to decent defaults\n iss: `https://securetoken.google.com/${project}`,\n aud: project,\n iat,\n exp: iat + 3600,\n auth_time: iat,\n sub,\n user_id: sub,\n firebase: {\n sign_in_provider: 'custom',\n identities: {}\n },\n\n // Override with user options\n ...token\n };\n\n // Unsecured JWTs use the empty string as a signature.\n const signature = '';\n return [\n base64urlEncodeWithoutPadding(JSON.stringify(header)),\n base64urlEncodeWithoutPadding(JSON.stringify(payload)),\n signature\n ].join('.');\n}\n","/**\n * @license\n * Copyright 2020 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nconst SERVER_TIMESTAMP = {\n '.sv': 'timestamp'\n};\n\n/**\n * Returns a placeholder value for auto-populating the current timestamp (time\n * since the Unix epoch, in milliseconds) as determined by the Firebase\n * servers.\n */\nexport function serverTimestamp(): object {\n return SERVER_TIMESTAMP;\n}\n\n/**\n * Returns a placeholder value that can be used to atomically increment the\n * current database value by the provided delta.\n *\n * @param delta - the amount to modify the current value atomically.\n * @returns A placeholder value for modifying data atomically server-side.\n */\nexport function increment(delta: number): object {\n return {\n '.sv': {\n 'increment': delta\n }\n };\n}\n","/**\n * @license\n * Copyright 2020 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { getModularInstance, Deferred } from '@firebase/util';\n\nimport { repoStartTransaction } from '../core/Repo';\nimport { PRIORITY_INDEX } from '../core/snap/indexes/PriorityIndex';\nimport { Node } from '../core/snap/Node';\nimport { validateWritablePath } from '../core/util/validation';\n\nimport { DatabaseReference } from './Reference';\nimport { DataSnapshot, onValue, ReferenceImpl } from './Reference_impl';\n\n/** An options object to configure transactions. */\nexport interface TransactionOptions {\n /**\n * By default, events are raised each time the transaction update function\n * runs. So if it is run multiple times, you may see intermediate states. You\n * can set this to false to suppress these intermediate states and instead\n * wait until the transaction has completed before events are raised.\n */\n readonly applyLocally?: boolean;\n}\n\n/**\n * A type for the resolve value of {@link runTransaction}.\n */\nexport class TransactionResult {\n /** @hideconstructor */\n constructor(\n /** Whether the transaction was successfully committed. */\n readonly committed: boolean,\n /** The resulting data snapshot. */\n readonly snapshot: DataSnapshot\n ) {}\n\n /** Returns a JSON-serializable representation of this object. */\n toJSON(): object {\n return { committed: this.committed, snapshot: this.snapshot.toJSON() };\n }\n}\n\n/**\n * Atomically modifies the data at this location.\n *\n * Atomically modify the data at this location. Unlike a normal `set()`, which\n * just overwrites the data regardless of its previous value, `runTransaction()` is\n * used to modify the existing value to a new value, ensuring there are no\n * conflicts with other clients writing to the same location at the same time.\n *\n * To accomplish this, you pass `runTransaction()` an update function which is\n * used to transform the current value into a new value. If another client\n * writes to the location before your new value is successfully written, your\n * update function will be called again with the new current value, and the\n * write will be retried. This will happen repeatedly until your write succeeds\n * without conflict or you abort the transaction by not returning a value from\n * your update function.\n *\n * Note: Modifying data with `set()` will cancel any pending transactions at\n * that location, so extreme care should be taken if mixing `set()` and\n * `runTransaction()` to update the same data.\n *\n * Note: When using transactions with Security and Firebase Rules in place, be\n * aware that a client needs `.read` access in addition to `.write` access in\n * order to perform a transaction. This is because the client-side nature of\n * transactions requires the client to read the data in order to transactionally\n * update it.\n *\n * @param ref - The location to atomically modify.\n * @param transactionUpdate - A developer-supplied function which will be passed\n * the current data stored at this location (as a JavaScript object). The\n * function should return the new value it would like written (as a JavaScript\n * object). If `undefined` is returned (i.e. you return with no arguments) the\n * transaction will be aborted and the data at this location will not be\n * modified.\n * @param options - An options object to configure transactions.\n * @returns A `Promise` that can optionally be used instead of the `onComplete`\n * callback to handle success and failure.\n */\nexport function runTransaction(\n ref: DatabaseReference,\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n transactionUpdate: (currentData: any) => unknown,\n options?: TransactionOptions\n): Promise<TransactionResult> {\n ref = getModularInstance(ref);\n\n validateWritablePath('Reference.transaction', ref._path);\n\n if (ref.key === '.length' || ref.key === '.keys') {\n throw (\n 'Reference.transaction failed: ' + ref.key + ' is a read-only object.'\n );\n }\n\n const applyLocally = options?.applyLocally ?? true;\n const deferred = new Deferred<TransactionResult>();\n\n const promiseComplete = (\n error: Error | null,\n committed: boolean,\n node: Node | null\n ) => {\n let dataSnapshot: DataSnapshot | null = null;\n if (error) {\n deferred.reject(error);\n } else {\n dataSnapshot = new DataSnapshot(\n node,\n new ReferenceImpl(ref._repo, ref._path),\n PRIORITY_INDEX\n );\n deferred.resolve(new TransactionResult(committed, dataSnapshot));\n }\n };\n\n // Add a watch to make sure we get server updates.\n const unwatcher = onValue(ref, () => {});\n\n repoStartTransaction(\n ref._repo,\n ref._path,\n transactionUpdate,\n promiseComplete,\n unwatcher,\n applyLocally\n );\n\n return deferred.promise;\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { PersistentConnection } from '../core/PersistentConnection';\nimport { RepoInfo } from '../core/RepoInfo';\nimport { Connection } from '../realtime/Connection';\n\nimport { repoManagerForceRestClient } from './Database';\n\nexport const DataConnection = PersistentConnection;\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\n(PersistentConnection.prototype as any).simpleListen = function (\n pathString: string,\n onComplete: (a: unknown) => void\n) {\n this.sendRequest('q', { p: pathString }, onComplete);\n};\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\n(PersistentConnection.prototype as any).echo = function (\n data: unknown,\n onEcho: (a: unknown) => void\n) {\n this.sendRequest('echo', { d: data }, onEcho);\n};\n\n// RealTimeConnection properties that we use in tests.\nexport const RealTimeConnection = Connection;\n\n/**\n * @internal\n */\nexport const hijackHash = function (newHash: () => string) {\n const oldPut = PersistentConnection.prototype.put;\n PersistentConnection.prototype.put = function (\n pathString,\n data,\n onComplete,\n hash\n ) {\n if (hash !== undefined) {\n hash = newHash();\n }\n oldPut.call(this, pathString, data, onComplete, hash);\n };\n return function () {\n PersistentConnection.prototype.put = oldPut;\n };\n};\n\nexport const ConnectionTarget = RepoInfo;\n\n/**\n * Forces the RepoManager to create Repos that use ReadonlyRestClient instead of PersistentConnection.\n * @internal\n */\nexport const forceRestClient = function (forceRestClient: boolean) {\n repoManagerForceRestClient(forceRestClient);\n};\n","/**\n * @license\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Logger } from '@firebase/logger';\n\nconst logClient = new Logger('@firebase/database-compat');\n\nexport const warn = function (msg: string) {\n const message = 'FIREBASE WARNING: ' + msg;\n logClient.warn(message);\n};\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { OnDisconnect as ModularOnDisconnect } from '@firebase/database';\nimport { validateArgCount, validateCallback, Compat } from '@firebase/util';\n\nimport { warn } from '../util/util';\nexport class OnDisconnect implements Compat<ModularOnDisconnect> {\n constructor(readonly _delegate: ModularOnDisconnect) {}\n\n cancel(onComplete?: (a: Error | null) => void): Promise<void> {\n validateArgCount('OnDisconnect.cancel', 0, 1, arguments.length);\n validateCallback('OnDisconnect.cancel', 'onComplete', onComplete, true);\n const result = this._delegate.cancel();\n if (onComplete) {\n result.then(\n () => onComplete(null),\n error => onComplete(error)\n );\n }\n return result;\n }\n\n remove(onComplete?: (a: Error | null) => void): Promise<void> {\n validateArgCount('OnDisconnect.remove', 0, 1, arguments.length);\n validateCallback('OnDisconnect.remove', 'onComplete', onComplete, true);\n const result = this._delegate.remove();\n if (onComplete) {\n result.then(\n () => onComplete(null),\n error => onComplete(error)\n );\n }\n return result;\n }\n\n set(value: unknown, onComplete?: (a: Error | null) => void): Promise<void> {\n validateArgCount('OnDisconnect.set', 1, 2, arguments.length);\n validateCallback('OnDisconnect.set', 'onComplete', onComplete, true);\n const result = this._delegate.set(value);\n if (onComplete) {\n result.then(\n () => onComplete(null),\n error => onComplete(error)\n );\n }\n return result;\n }\n\n setWithPriority(\n value: unknown,\n priority: number | string | null,\n onComplete?: (a: Error | null) => void\n ): Promise<void> {\n validateArgCount('OnDisconnect.setWithPriority', 2, 3, arguments.length);\n validateCallback(\n 'OnDisconnect.setWithPriority',\n 'onComplete',\n onComplete,\n true\n );\n const result = this._delegate.setWithPriority(value, priority);\n if (onComplete) {\n result.then(\n () => onComplete(null),\n error => onComplete(error)\n );\n }\n return result;\n }\n\n update(\n objectToMerge: Record<string, unknown>,\n onComplete?: (a: Error | null) => void\n ): Promise<void> {\n validateArgCount('OnDisconnect.update', 1, 2, arguments.length);\n if (Array.isArray(objectToMerge)) {\n const newObjectToMerge: { [k: string]: unknown } = {};\n for (let i = 0; i < objectToMerge.length; ++i) {\n newObjectToMerge['' + i] = objectToMerge[i];\n }\n objectToMerge = newObjectToMerge;\n warn(\n 'Passing an Array to firebase.database.onDisconnect().update() is deprecated. Use set() if you want to overwrite the ' +\n 'existing data, or an Object with integer keys if you really do want to only update some of the children.'\n );\n }\n validateCallback('OnDisconnect.update', 'onComplete', onComplete, true);\n const result = this._delegate.update(objectToMerge);\n if (onComplete) {\n result.then(\n () => onComplete(null),\n error => onComplete(error)\n );\n }\n return result;\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { validateArgCount } from '@firebase/util';\n\nimport { DataSnapshot } from './Reference';\n\nexport class TransactionResult {\n /**\n * A type for the resolve value of Firebase.transaction.\n */\n constructor(public committed: boolean, public snapshot: DataSnapshot) {}\n\n // Do not create public documentation. This is intended to make JSON serialization work but is otherwise unnecessary\n // for end-users\n toJSON(): object {\n validateArgCount('TransactionResult.toJSON', 0, 1, arguments.length);\n return { committed: this.committed, snapshot: this.snapshot.toJSON() };\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n OnDisconnect as ModularOnDisconnect,\n off,\n onChildAdded,\n onChildChanged,\n onChildMoved,\n onChildRemoved,\n onValue,\n EventType,\n limitToFirst,\n query,\n limitToLast,\n orderByChild,\n orderByKey,\n orderByValue,\n orderByPriority,\n startAt,\n startAfter,\n endAt,\n endBefore,\n equalTo,\n get,\n set,\n update,\n setWithPriority,\n remove,\n setPriority,\n push,\n runTransaction,\n child,\n DataSnapshot as ModularDataSnapshot,\n Query as ExpQuery,\n DatabaseReference as ModularReference,\n _QueryImpl,\n _ReferenceImpl,\n _validatePathString,\n _validateWritablePath,\n _UserCallback,\n _QueryParams\n} from '@firebase/database';\nimport {\n Compat,\n Deferred,\n errorPrefix,\n validateArgCount,\n validateCallback,\n validateContextObject\n} from '@firebase/util';\n\nimport { warn } from '../util/util';\nimport { validateBoolean, validateEventType } from '../util/validation';\n\nimport { Database } from './Database';\nimport { OnDisconnect } from './onDisconnect';\nimport { TransactionResult } from './TransactionResult';\n\n/**\n * Class representing a firebase data snapshot. It wraps a SnapshotNode and\n * surfaces the public methods (val, forEach, etc.) we want to expose.\n */\nexport class DataSnapshot implements Compat<ModularDataSnapshot> {\n constructor(\n readonly _database: Database,\n readonly _delegate: ModularDataSnapshot\n ) {}\n\n /**\n * Retrieves the snapshot contents as JSON. Returns null if the snapshot is\n * empty.\n *\n * @returns JSON representation of the DataSnapshot contents, or null if empty.\n */\n val(): unknown {\n validateArgCount('DataSnapshot.val', 0, 0, arguments.length);\n return this._delegate.val();\n }\n\n /**\n * Returns the snapshot contents as JSON, including priorities of node. Suitable for exporting\n * the entire node contents.\n * @returns JSON representation of the DataSnapshot contents, or null if empty.\n */\n exportVal(): unknown {\n validateArgCount('DataSnapshot.exportVal', 0, 0, arguments.length);\n return this._delegate.exportVal();\n }\n\n // Do not create public documentation. This is intended to make JSON serialization work but is otherwise unnecessary\n // for end-users\n toJSON(): unknown {\n // Optional spacer argument is unnecessary because we're depending on recursion rather than stringifying the content\n validateArgCount('DataSnapshot.toJSON', 0, 1, arguments.length);\n return this._delegate.toJSON();\n }\n\n /**\n * Returns whether the snapshot contains a non-null value.\n *\n * @returns Whether the snapshot contains a non-null value, or is empty.\n */\n exists(): boolean {\n validateArgCount('DataSnapshot.exists', 0, 0, arguments.length);\n return this._delegate.exists();\n }\n\n /**\n * Returns a DataSnapshot of the specified child node's contents.\n *\n * @param path - Path to a child.\n * @returns DataSnapshot for child node.\n */\n child(path: string): DataSnapshot {\n validateArgCount('DataSnapshot.child', 0, 1, arguments.length);\n // Ensure the childPath is a string (can be a number)\n path = String(path);\n _validatePathString('DataSnapshot.child', 'path', path, false);\n return new DataSnapshot(this._database, this._delegate.child(path));\n }\n\n /**\n * Returns whether the snapshot contains a child at the specified path.\n *\n * @param path - Path to a child.\n * @returns Whether the child exists.\n */\n hasChild(path: string): boolean {\n validateArgCount('DataSnapshot.hasChild', 1, 1, arguments.length);\n _validatePathString('DataSnapshot.hasChild', 'path', path, false);\n return this._delegate.hasChild(path);\n }\n\n /**\n * Returns the priority of the object, or null if no priority was set.\n *\n * @returns The priority.\n */\n getPriority(): string | number | null {\n validateArgCount('DataSnapshot.getPriority', 0, 0, arguments.length);\n return this._delegate.priority;\n }\n\n /**\n * Iterates through child nodes and calls the specified action for each one.\n *\n * @param action - Callback function to be called\n * for each child.\n * @returns True if forEach was canceled by action returning true for\n * one of the child nodes.\n */\n forEach(action: (snapshot: DataSnapshot) => boolean | void): boolean {\n validateArgCount('DataSnapshot.forEach', 1, 1, arguments.length);\n validateCallback('DataSnapshot.forEach', 'action', action, false);\n return this._delegate.forEach(expDataSnapshot =>\n action(new DataSnapshot(this._database, expDataSnapshot))\n );\n }\n\n /**\n * Returns whether this DataSnapshot has children.\n * @returns True if the DataSnapshot contains 1 or more child nodes.\n */\n hasChildren(): boolean {\n validateArgCount('DataSnapshot.hasChildren', 0, 0, arguments.length);\n return this._delegate.hasChildren();\n }\n\n get key() {\n return this._delegate.key;\n }\n\n /**\n * Returns the number of children for this DataSnapshot.\n * @returns The number of children that this DataSnapshot contains.\n */\n numChildren(): number {\n validateArgCount('DataSnapshot.numChildren', 0, 0, arguments.length);\n return this._delegate.size;\n }\n\n /**\n * @returns The Firebase reference for the location this snapshot's data came\n * from.\n */\n getRef(): Reference {\n validateArgCount('DataSnapshot.ref', 0, 0, arguments.length);\n return new Reference(this._database, this._delegate.ref);\n }\n\n get ref(): Reference {\n return this.getRef();\n }\n}\n\nexport interface SnapshotCallback {\n (dataSnapshot: DataSnapshot, previousChildName?: string | null): unknown;\n}\n\n/**\n * A Query represents a filter to be applied to a firebase location. This object purely represents the\n * query expression (and exposes our public API to build the query). The actual query logic is in ViewBase.js.\n *\n * Since every Firebase reference is a query, Firebase inherits from this object.\n */\nexport class Query implements Compat<ExpQuery> {\n constructor(readonly database: Database, readonly _delegate: ExpQuery) {}\n\n on(\n eventType: string,\n callback: SnapshotCallback,\n cancelCallbackOrContext?: ((a: Error) => unknown) | object | null,\n context?: object | null\n ): SnapshotCallback {\n validateArgCount('Query.on', 2, 4, arguments.length);\n validateCallback('Query.on', 'callback', callback, false);\n\n const ret = Query.getCancelAndContextArgs_(\n 'Query.on',\n cancelCallbackOrContext,\n context\n );\n const valueCallback = (expSnapshot, previousChildName?) => {\n callback.call(\n ret.context,\n new DataSnapshot(this.database, expSnapshot),\n previousChildName\n );\n };\n valueCallback.userCallback = callback;\n valueCallback.context = ret.context;\n const cancelCallback = ret.cancel?.bind(ret.context);\n\n switch (eventType) {\n case 'value':\n onValue(this._delegate, valueCallback, cancelCallback);\n return callback;\n case 'child_added':\n onChildAdded(this._delegate, valueCallback, cancelCallback);\n return callback;\n case 'child_removed':\n onChildRemoved(this._delegate, valueCallback, cancelCallback);\n return callback;\n case 'child_changed':\n onChildChanged(this._delegate, valueCallback, cancelCallback);\n return callback;\n case 'child_moved':\n onChildMoved(this._delegate, valueCallback, cancelCallback);\n return callback;\n default:\n throw new Error(\n errorPrefix('Query.on', 'eventType') +\n 'must be a valid event type = \"value\", \"child_added\", \"child_removed\", ' +\n '\"child_changed\", or \"child_moved\".'\n );\n }\n }\n\n off(\n eventType?: string,\n callback?: SnapshotCallback,\n context?: object | null\n ): void {\n validateArgCount('Query.off', 0, 3, arguments.length);\n validateEventType('Query.off', eventType, true);\n validateCallback('Query.off', 'callback', callback, true);\n validateContextObject('Query.off', 'context', context, true);\n if (callback) {\n const valueCallback: _UserCallback = () => {};\n valueCallback.userCallback = callback;\n valueCallback.context = context;\n off(this._delegate, eventType as EventType, valueCallback);\n } else {\n off(this._delegate, eventType as EventType | undefined);\n }\n }\n\n /**\n * Get the server-value for this query, or return a cached value if not connected.\n */\n get(): Promise<DataSnapshot> {\n return get(this._delegate).then(expSnapshot => {\n return new DataSnapshot(this.database, expSnapshot);\n });\n }\n\n /**\n * Attaches a listener, waits for the first event, and then removes the listener\n */\n once(\n eventType: string,\n callback?: SnapshotCallback,\n failureCallbackOrContext?: ((a: Error) => void) | object | null,\n context?: object | null\n ): Promise<DataSnapshot> {\n validateArgCount('Query.once', 1, 4, arguments.length);\n validateCallback('Query.once', 'callback', callback, true);\n\n const ret = Query.getCancelAndContextArgs_(\n 'Query.once',\n failureCallbackOrContext,\n context\n );\n const deferred = new Deferred<DataSnapshot>();\n const valueCallback: _UserCallback = (expSnapshot, previousChildName?) => {\n const result = new DataSnapshot(this.database, expSnapshot);\n if (callback) {\n callback.call(ret.context, result, previousChildName);\n }\n deferred.resolve(result);\n };\n valueCallback.userCallback = callback;\n valueCallback.context = ret.context;\n const cancelCallback = (error: Error) => {\n if (ret.cancel) {\n ret.cancel.call(ret.context, error);\n }\n deferred.reject(error);\n };\n\n switch (eventType) {\n case 'value':\n onValue(this._delegate, valueCallback, cancelCallback, {\n onlyOnce: true\n });\n break;\n case 'child_added':\n onChildAdded(this._delegate, valueCallback, cancelCallback, {\n onlyOnce: true\n });\n break;\n case 'child_removed':\n onChildRemoved(this._delegate, valueCallback, cancelCallback, {\n onlyOnce: true\n });\n break;\n case 'child_changed':\n onChildChanged(this._delegate, valueCallback, cancelCallback, {\n onlyOnce: true\n });\n break;\n case 'child_moved':\n onChildMoved(this._delegate, valueCallback, cancelCallback, {\n onlyOnce: true\n });\n break;\n default:\n throw new Error(\n errorPrefix('Query.once', 'eventType') +\n 'must be a valid event type = \"value\", \"child_added\", \"child_removed\", ' +\n '\"child_changed\", or \"child_moved\".'\n );\n }\n\n return deferred.promise;\n }\n\n /**\n * Set a limit and anchor it to the start of the window.\n */\n limitToFirst(limit: number): Query {\n validateArgCount('Query.limitToFirst', 1, 1, arguments.length);\n return new Query(this.database, query(this._delegate, limitToFirst(limit)));\n }\n\n /**\n * Set a limit and anchor it to the end of the window.\n */\n limitToLast(limit: number): Query {\n validateArgCount('Query.limitToLast', 1, 1, arguments.length);\n return new Query(this.database, query(this._delegate, limitToLast(limit)));\n }\n\n /**\n * Given a child path, return a new query ordered by the specified grandchild path.\n */\n orderByChild(path: string): Query {\n validateArgCount('Query.orderByChild', 1, 1, arguments.length);\n return new Query(this.database, query(this._delegate, orderByChild(path)));\n }\n\n /**\n * Return a new query ordered by the KeyIndex\n */\n orderByKey(): Query {\n validateArgCount('Query.orderByKey', 0, 0, arguments.length);\n return new Query(this.database, query(this._delegate, orderByKey()));\n }\n\n /**\n * Return a new query ordered by the PriorityIndex\n */\n orderByPriority(): Query {\n validateArgCount('Query.orderByPriority', 0, 0, arguments.length);\n return new Query(this.database, query(this._delegate, orderByPriority()));\n }\n\n /**\n * Return a new query ordered by the ValueIndex\n */\n orderByValue(): Query {\n validateArgCount('Query.orderByValue', 0, 0, arguments.length);\n return new Query(this.database, query(this._delegate, orderByValue()));\n }\n\n startAt(\n value: number | string | boolean | null = null,\n name?: string | null\n ): Query {\n validateArgCount('Query.startAt', 0, 2, arguments.length);\n return new Query(\n this.database,\n query(this._delegate, startAt(value, name))\n );\n }\n\n startAfter(\n value: number | string | boolean | null = null,\n name?: string | null\n ): Query {\n validateArgCount('Query.startAfter', 0, 2, arguments.length);\n return new Query(\n this.database,\n query(this._delegate, startAfter(value, name))\n );\n }\n\n endAt(\n value: number | string | boolean | null = null,\n name?: string | null\n ): Query {\n validateArgCount('Query.endAt', 0, 2, arguments.length);\n return new Query(this.database, query(this._delegate, endAt(value, name)));\n }\n\n endBefore(\n value: number | string | boolean | null = null,\n name?: string | null\n ): Query {\n validateArgCount('Query.endBefore', 0, 2, arguments.length);\n return new Query(\n this.database,\n query(this._delegate, endBefore(value, name))\n );\n }\n\n /**\n * Load the selection of children with exactly the specified value, and, optionally,\n * the specified name.\n */\n equalTo(value: number | string | boolean | null, name?: string) {\n validateArgCount('Query.equalTo', 1, 2, arguments.length);\n return new Query(\n this.database,\n query(this._delegate, equalTo(value, name))\n );\n }\n\n /**\n * @returns URL for this location.\n */\n toString(): string {\n validateArgCount('Query.toString', 0, 0, arguments.length);\n return this._delegate.toString();\n }\n\n // Do not create public documentation. This is intended to make JSON serialization work but is otherwise unnecessary\n // for end-users.\n toJSON() {\n // An optional spacer argument is unnecessary for a string.\n validateArgCount('Query.toJSON', 0, 1, arguments.length);\n return this._delegate.toJSON();\n }\n\n /**\n * Return true if this query and the provided query are equivalent; otherwise, return false.\n */\n isEqual(other: Query): boolean {\n validateArgCount('Query.isEqual', 1, 1, arguments.length);\n if (!(other instanceof Query)) {\n const error =\n 'Query.isEqual failed: First argument must be an instance of firebase.database.Query.';\n throw new Error(error);\n }\n return this._delegate.isEqual(other._delegate);\n }\n\n /**\n * Helper used by .on and .once to extract the context and or cancel arguments.\n * @param fnName - The function name (on or once)\n *\n */\n private static getCancelAndContextArgs_(\n fnName: string,\n cancelOrContext?: ((a: Error) => void) | object | null,\n context?: object | null\n ): { cancel: ((a: Error) => void) | undefined; context: object | undefined } {\n const ret: {\n cancel: ((a: Error) => void) | null;\n context: object | null;\n } = { cancel: undefined, context: undefined };\n if (cancelOrContext && context) {\n ret.cancel = cancelOrContext as (a: Error) => void;\n validateCallback(fnName, 'cancel', ret.cancel, true);\n\n ret.context = context;\n validateContextObject(fnName, 'context', ret.context, true);\n } else if (cancelOrContext) {\n // we have either a cancel callback or a context.\n if (typeof cancelOrContext === 'object' && cancelOrContext !== null) {\n // it's a context!\n ret.context = cancelOrContext;\n } else if (typeof cancelOrContext === 'function') {\n ret.cancel = cancelOrContext as (a: Error) => void;\n } else {\n throw new Error(\n errorPrefix(fnName, 'cancelOrContext') +\n ' must either be a cancel callback or a context object.'\n );\n }\n }\n return ret;\n }\n\n get ref(): Reference {\n return new Reference(\n this.database,\n new _ReferenceImpl(this._delegate._repo, this._delegate._path)\n );\n }\n}\n\nexport class Reference extends Query implements Compat<ModularReference> {\n then: Promise<Reference>['then'];\n catch: Promise<Reference>['catch'];\n\n /**\n * Call options:\n * new Reference(Repo, Path) or\n * new Reference(url: string, string|RepoManager)\n *\n * Externally - this is the firebase.database.Reference type.\n */\n constructor(\n readonly database: Database,\n readonly _delegate: ModularReference\n ) {\n super(\n database,\n new _QueryImpl(\n _delegate._repo,\n _delegate._path,\n new _QueryParams(),\n false\n )\n );\n }\n\n /** @returns {?string} */\n getKey(): string | null {\n validateArgCount('Reference.key', 0, 0, arguments.length);\n return this._delegate.key;\n }\n\n child(pathString: string): Reference {\n validateArgCount('Reference.child', 1, 1, arguments.length);\n if (typeof pathString === 'number') {\n pathString = String(pathString);\n }\n return new Reference(this.database, child(this._delegate, pathString));\n }\n\n /** @returns {?Reference} */\n getParent(): Reference | null {\n validateArgCount('Reference.parent', 0, 0, arguments.length);\n const parent = this._delegate.parent;\n return parent ? new Reference(this.database, parent) : null;\n }\n\n /** @returns {!Reference} */\n getRoot(): Reference {\n validateArgCount('Reference.root', 0, 0, arguments.length);\n return new Reference(this.database, this._delegate.root);\n }\n\n set(\n newVal: unknown,\n onComplete?: (error: Error | null) => void\n ): Promise<void> {\n validateArgCount('Reference.set', 1, 2, arguments.length);\n validateCallback('Reference.set', 'onComplete', onComplete, true);\n const result = set(this._delegate, newVal);\n if (onComplete) {\n result.then(\n () => onComplete(null),\n error => onComplete(error)\n );\n }\n return result;\n }\n\n update(\n values: object,\n onComplete?: (a: Error | null) => void\n ): Promise<void> {\n validateArgCount('Reference.update', 1, 2, arguments.length);\n\n if (Array.isArray(values)) {\n const newObjectToMerge: { [k: string]: unknown } = {};\n for (let i = 0; i < values.length; ++i) {\n newObjectToMerge['' + i] = values[i];\n }\n values = newObjectToMerge;\n warn(\n 'Passing an Array to Firebase.update() is deprecated. ' +\n 'Use set() if you want to overwrite the existing data, or ' +\n 'an Object with integer keys if you really do want to ' +\n 'only update some of the children.'\n );\n }\n _validateWritablePath('Reference.update', this._delegate._path);\n validateCallback('Reference.update', 'onComplete', onComplete, true);\n\n const result = update(this._delegate, values);\n if (onComplete) {\n result.then(\n () => onComplete(null),\n error => onComplete(error)\n );\n }\n return result;\n }\n\n setWithPriority(\n newVal: unknown,\n newPriority: string | number | null,\n onComplete?: (a: Error | null) => void\n ): Promise<void> {\n validateArgCount('Reference.setWithPriority', 2, 3, arguments.length);\n validateCallback(\n 'Reference.setWithPriority',\n 'onComplete',\n onComplete,\n true\n );\n\n const result = setWithPriority(this._delegate, newVal, newPriority);\n if (onComplete) {\n result.then(\n () => onComplete(null),\n error => onComplete(error)\n );\n }\n return result;\n }\n\n remove(onComplete?: (a: Error | null) => void): Promise<void> {\n validateArgCount('Reference.remove', 0, 1, arguments.length);\n validateCallback('Reference.remove', 'onComplete', onComplete, true);\n\n const result = remove(this._delegate);\n if (onComplete) {\n result.then(\n () => onComplete(null),\n error => onComplete(error)\n );\n }\n return result;\n }\n\n transaction(\n transactionUpdate: (currentData: unknown) => unknown,\n onComplete?: (\n error: Error | null,\n committed: boolean,\n dataSnapshot: DataSnapshot | null\n ) => void,\n applyLocally?: boolean\n ): Promise<TransactionResult> {\n validateArgCount('Reference.transaction', 1, 3, arguments.length);\n validateCallback(\n 'Reference.transaction',\n 'transactionUpdate',\n transactionUpdate,\n false\n );\n validateCallback('Reference.transaction', 'onComplete', onComplete, true);\n validateBoolean(\n 'Reference.transaction',\n 'applyLocally',\n applyLocally,\n true\n );\n\n const result = runTransaction(this._delegate, transactionUpdate, {\n applyLocally\n }).then(\n transactionResult =>\n new TransactionResult(\n transactionResult.committed,\n new DataSnapshot(this.database, transactionResult.snapshot)\n )\n );\n if (onComplete) {\n result.then(\n transactionResult =>\n onComplete(\n null,\n transactionResult.committed,\n transactionResult.snapshot\n ),\n error => onComplete(error, false, null)\n );\n }\n return result;\n }\n\n setPriority(\n priority: string | number | null,\n onComplete?: (a: Error | null) => void\n ): Promise<void> {\n validateArgCount('Reference.setPriority', 1, 2, arguments.length);\n validateCallback('Reference.setPriority', 'onComplete', onComplete, true);\n\n const result = setPriority(this._delegate, priority);\n if (onComplete) {\n result.then(\n () => onComplete(null),\n error => onComplete(error)\n );\n }\n return result;\n }\n\n push(value?: unknown, onComplete?: (a: Error | null) => void): Reference {\n validateArgCount('Reference.push', 0, 2, arguments.length);\n validateCallback('Reference.push', 'onComplete', onComplete, true);\n\n const expPromise = push(this._delegate, value);\n const promise = expPromise.then(\n expRef => new Reference(this.database, expRef)\n );\n\n if (onComplete) {\n promise.then(\n () => onComplete(null),\n error => onComplete(error)\n );\n }\n\n const result = new Reference(this.database, expPromise);\n result.then = promise.then.bind(promise);\n result.catch = promise.catch.bind(promise, undefined);\n return result;\n }\n\n onDisconnect(): OnDisconnect {\n _validateWritablePath('Reference.onDisconnect', this._delegate._path);\n return new OnDisconnect(\n new ModularOnDisconnect(this._delegate._repo, this._delegate._path)\n );\n }\n\n get key(): string | null {\n return this.getKey();\n }\n\n get parent(): Reference | null {\n return this.getParent();\n }\n\n get root(): Reference {\n return this.getRoot();\n }\n}\n","/**\n * @license\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { errorPrefix as errorPrefixFxn } from '@firebase/util';\n\nexport const validateBoolean = function (\n fnName: string,\n argumentName: string,\n bool: unknown,\n optional: boolean\n) {\n if (optional && bool === undefined) {\n return;\n }\n if (typeof bool !== 'boolean') {\n throw new Error(\n errorPrefixFxn(fnName, argumentName) + 'must be a boolean.'\n );\n }\n};\n\nexport const validateEventType = function (\n fnName: string,\n eventType: string,\n optional: boolean\n) {\n if (optional && eventType === undefined) {\n return;\n }\n\n switch (eventType) {\n case 'value':\n case 'child_added':\n case 'child_removed':\n case 'child_changed':\n case 'child_moved':\n break;\n default:\n throw new Error(\n errorPrefixFxn(fnName, 'eventType') +\n 'must be a valid event type = \"value\", \"child_added\", \"child_removed\", ' +\n '\"child_changed\", or \"child_moved\".'\n );\n }\n};\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n// eslint-disable-next-line import/no-extraneous-dependencies\n\nimport { FirebaseApp } from '@firebase/app-types';\nimport { FirebaseService } from '@firebase/app-types/private';\nimport {\n forceLongPolling,\n forceWebSockets,\n goOnline,\n connectDatabaseEmulator,\n goOffline,\n ref,\n refFromURL,\n increment,\n serverTimestamp,\n Database as ModularDatabase\n} from '@firebase/database';\nimport {\n validateArgCount,\n Compat,\n EmulatorMockTokenOptions\n} from '@firebase/util';\n\nimport { Reference } from './Reference';\n\n/**\n * Class representing a firebase database.\n */\nexport class Database implements FirebaseService, Compat<ModularDatabase> {\n static readonly ServerValue = {\n TIMESTAMP: serverTimestamp(),\n increment: (delta: number) => increment(delta)\n };\n\n /**\n * The constructor should not be called by users of our public API.\n */\n constructor(readonly _delegate: ModularDatabase, readonly app: FirebaseApp) {}\n\n INTERNAL = {\n delete: () => this._delegate._delete(),\n forceWebSockets,\n forceLongPolling\n };\n\n /**\n * Modify this instance to communicate with the Realtime Database emulator.\n *\n * <p>Note: This method must be called before performing any other operation.\n *\n * @param host - the emulator host (ex: localhost)\n * @param port - the emulator port (ex: 8080)\n * @param options.mockUserToken - the mock auth token to use for unit testing Security Rules\n */\n useEmulator(\n host: string,\n port: number,\n options: {\n mockUserToken?: EmulatorMockTokenOptions;\n } = {}\n ): void {\n connectDatabaseEmulator(this._delegate, host, port, options);\n }\n\n /**\n * Returns a reference to the root or to the path specified in the provided\n * argument.\n *\n * @param path - The relative string path or an existing Reference to a database\n * location.\n * @throws If a Reference is provided, throws if it does not belong to the\n * same project.\n * @returns Firebase reference.\n */\n ref(path?: string): Reference;\n ref(path?: Reference): Reference;\n ref(path?: string | Reference): Reference {\n validateArgCount('database.ref', 0, 1, arguments.length);\n if (path instanceof Reference) {\n const childRef = refFromURL(this._delegate, path.toString());\n return new Reference(this, childRef);\n } else {\n const childRef = ref(this._delegate, path);\n return new Reference(this, childRef);\n }\n }\n\n /**\n * Returns a reference to the root or the path specified in url.\n * We throw a exception if the url is not in the same domain as the\n * current repo.\n * @returns Firebase reference.\n */\n refFromURL(url: string): Reference {\n const apiName = 'database.refFromURL';\n validateArgCount(apiName, 1, 1, arguments.length);\n const childRef = refFromURL(this._delegate, url);\n return new Reference(this, childRef);\n }\n\n // Make individual repo go offline.\n goOffline(): void {\n validateArgCount('database.goOffline', 0, 0, arguments.length);\n return goOffline(this._delegate);\n }\n\n goOnline(): void {\n validateArgCount('database.goOnline', 0, 0, arguments.length);\n return goOnline(this._delegate);\n }\n}\n","/**\n * @license\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport firebase, { FirebaseNamespace } from '@firebase/app-compat';\nimport { _FirebaseNamespace } from '@firebase/app-types/private';\nimport { Component, ComponentType } from '@firebase/component';\nimport { enableLogging } from '@firebase/database';\nimport * as types from '@firebase/database-types';\n\nimport { name, version } from '../package.json';\nimport { Database } from '../src/api/Database';\nimport * as INTERNAL from '../src/api/internal';\nimport { DataSnapshot, Query, Reference } from '../src/api/Reference';\n\nconst ServerValue = Database.ServerValue;\n\nexport function registerDatabase(instance: FirebaseNamespace) {\n // Register the Database Service with the 'firebase' namespace.\n (instance as unknown as _FirebaseNamespace).INTERNAL.registerComponent(\n new Component(\n 'database-compat',\n (container, { instanceIdentifier: url }) => {\n /* Dependencies */\n // getImmediate for FirebaseApp will always succeed\n const app = container.getProvider('app-compat').getImmediate();\n const databaseExp = container\n .getProvider('database')\n .getImmediate({ identifier: url });\n return new Database(databaseExp, app);\n },\n ComponentType.PUBLIC\n )\n .setServiceProps(\n // firebase.database namespace properties\n {\n Reference,\n Query,\n Database,\n DataSnapshot,\n enableLogging,\n INTERNAL,\n ServerValue\n }\n )\n .setMultipleInstances(true)\n );\n\n instance.registerVersion(name, version);\n}\n\nregisterDatabase(firebase);\n\ndeclare module '@firebase/app-compat' {\n interface FirebaseNamespace {\n database?: {\n (app?: FirebaseApp): types.FirebaseDatabase;\n enableLogging: typeof types.enableLogging;\n ServerValue: types.ServerValue;\n Database: typeof types.FirebaseDatabase;\n };\n }\n interface FirebaseApp {\n database?(databaseURL?: string): types.FirebaseDatabase;\n }\n}\n","/**\n * @license\n * Copyright 2017 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { FirebaseApp } from '@firebase/app-types';\nimport {\n FirebaseAuthInternal,\n FirebaseAuthInternalName\n} from '@firebase/auth-interop-types';\nimport {\n Component,\n ComponentContainer,\n ComponentType,\n Provider\n} from '@firebase/component';\nimport {\n _repoManagerDatabaseFromApp,\n _setSDKVersion\n} from '@firebase/database';\nimport * as types from '@firebase/database-types';\n\nimport { Database } from './Database';\n\n/**\n * Used by console to create a database based on the app,\n * passed database URL and a custom auth implementation.\n *\n * @param app - A valid FirebaseApp-like object\n * @param url - A valid Firebase databaseURL\n * @param version - custom version e.g. firebase-admin version\n * @param customAuthImpl - custom auth implementation\n */\nexport function initStandalone<T>({\n app,\n url,\n version,\n customAuthImpl,\n namespace,\n nodeAdmin = false\n}: {\n app: FirebaseApp;\n url: string;\n version: string;\n customAuthImpl: FirebaseAuthInternal;\n namespace: T;\n nodeAdmin?: boolean;\n}): {\n instance: types.Database;\n namespace: T;\n} {\n _setSDKVersion(version);\n\n /**\n * ComponentContainer('database-standalone') is just a placeholder that doesn't perform\n * any actual function.\n */\n const authProvider = new Provider<FirebaseAuthInternalName>(\n 'auth-internal',\n new ComponentContainer('database-standalone')\n );\n authProvider.setComponent(\n new Component('auth-internal', () => customAuthImpl, ComponentType.PRIVATE)\n );\n\n return {\n instance: new Database(\n _repoManagerDatabaseFromApp(\n app,\n authProvider,\n /* appCheckProvider= */ undefined,\n url,\n nodeAdmin\n ),\n app\n ) as types.Database,\n namespace\n };\n}\n"],"names":["LogLevel","stringToByteArray","str","out","p","i","length","c","charCodeAt","base64Encode","utf8Bytes","base64","encodeByteArray","CONSTANTS","NODE_CLIENT","NODE_ADMIN","SDK_VERSION","assert","assertion","message","assertionError","Error","byteToCharMap_","charToByteMap_","byteToCharMapWebSafe_","charToByteMapWebSafe_","ENCODED_VALS_BASE","ENCODED_VALS","this","ENCODED_VALS_WEBSAFE","HAS_NATIVE_SUPPORT","atob","input","webSafe","Array","isArray","init_","byteToCharMap","output","byte1","haveByte2","byte2","haveByte3","byte3","outByte3","outByte4","push","join","encodeString","btoa","decodeString","bytes","pos","c2","c3","c1","String","fromCharCode","u","byteArrayToString","decodeStringToByteArray","charToByteMap","charAt","byte4","base64urlEncodeWithoutPadding","replace","base64Decode","e","console","error","deepCopy","value","deepExtend","target","source","Object","constructor","Date","dateValue","getTime","undefined","prop","hasOwnProperty","isValidKey","key","Deferred","reject","resolve","promise","Promise","wrapCallback","callback","catch","isMobileCordova","window","test","navigator","isNodeSdk","jsonEval","JSON","parse","stringify","data","decode","token","header","claims","signature","parts","split","contains","obj","prototype","call","safeGet","isEmpty","map","fn","contextObj","res","Sha1","chain_","buf_","W_","pad_","inbuf_","total_","blockSize","reset","compress_","buf","offset","W","t","a","b","d","f","k","update","lengthMinusBlock","n","inbuf","digest","totalBits","j","validateArgCount","fnName","minCount","maxCount","argCount","argError","errorPrefix","argName","validateCallback","argumentName","optional","validateContextObject","context","stringLength","getModularInstance","service","_delegate","Component","name","instanceFactory","type","multipleInstances","serviceProps","instantiationMode","onInstanceCreated","setInstantiationMode","mode","setMultipleInstances","setServiceProps","props","setInstanceCreatedCallback","DEFAULT_ENTRY_NAME","Provider","container","component","instances","Map","instancesDeferred","instancesOptions","onInitCallbacks","get","identifier","normalizedIdentifier","normalizeInstanceIdentifier","has","deferred","set","isInitialized","shouldAutoInitialize","instance","getOrInitializeService","instanceIdentifier","getImmediate","options","_a","getComponent","setComponent","instanceDeferred","entries","clearInstance","delete","services","from","values","all","filter","INTERNAL","_delete","isComponentSet","getOptions","initialize","opts","onInit","existingCallbacks","Set","add","existingInstance","invokeOnInitCallbacks","callbacks","ComponentContainer","providers","addComponent","provider","getProvider","addOrOverwriteComponent","getProviders","levelStringToEnum","debug","DEBUG","verbose","VERBOSE","info","INFO","warn","WARN","ERROR","silent","SILENT","defaultLogLevel","ConsoleMethod","defaultLogHandler","logType","args","logLevel","now","toISOString","method","Logger","_logLevel","_logHandler","_userLogHandler","val","TypeError","setLogLevel","logHandler","userLogHandler","log","setSDKVersion","version","DOMStorageWrapper","domStorage_","prefix_","removeItem","prefixedName_","setItem","storedVal","getItem","remove","toString","MemoryStorage","cache_","isInMemoryStorage","createStoragefor","domStorageName","domStorage","OperationType","variant","sha1","high","low","sha1Bytes","PersistentStorage","SessionStorage","logClient","LUIDGenerator","id","buildLogMessage_","varArgs","arg","apply","logger","firstLog_","logWrapper","prefix","stringCompare","requireKey","ObjectToUniqueKey","keys","sort","splitStringBySize","segsize","len","dataSegs","substring","enableLogging","logger_","persistent","bind","fatal","warnIfPageIsSecure","location","protocol","indexOf","isInvalidJSONNumber","Number","POSITIVE_INFINITY","NEGATIVE_INFINITY","MIN_NAME","MAX_NAME","nameCompare","aAsInt","tryParseInt","bAsInt","each","doubleToIEEE754String","v","s","ln","Infinity","Math","abs","pow","min","floor","LN2","round","bits","reverse","hexByteString","hexByte","parseInt","substr","toLowerCase","INTEGER_REGEXP_","intVal","INTEGER_32_MIN","INTEGER_32_MAX","setTimeoutNonBlocking","time","timeout","setTimeout","Deno","unrefTimer","RegExp","exceptionGuard","stack","AppCheckTokenProvider","appName_","appCheckProvider","appCheck","then","getToken","forceRefresh","addTokenChangeListener","listener","addTokenListener","notifyForInvalidToken","FirebaseAuthTokenProvider","firebaseOptions_","authProvider_","auth_","auth","code","addAuthTokenListener","removeTokenChangeListener","removeAuthTokenListener","errorMessage","EmulatorTokenProvider","accessToken","OWNER","FORGE_DOMAIN_RE","WEBSOCKET","LONG_POLLING","RepoInfo","host","secure","namespace","webSocketOnly","nodeAdmin","persistenceKey","includeNamespaceInQueryParams","_host","_domain","internalHost","isCacheableHost","isCustomHost","newHost","toURLString","query","repoInfoConnectionURL","repoInfo","params","connURL","pairs","StatsCollection","counters_","incrementCounter","amount","collections","reporters","statsManagerGetCollection","hashString","PacketReceiver","onMessage_","pendingResponses","currentResponseNum","closeAfterResponse","onClose","closeAfter","responseNum","handleResponse","requestNum","toProcess","BrowserPollConnection","connId","applicationId","appCheckToken","authToken","transportSessionId","lastSessionId","bytesSent","bytesReceived","everConnected_","log_","stats_","urlFn","open","onMessage","onDisconnect","curSegmentNum","onDisconnect_","myPacketOrderer","isClosed_","connectTimeoutTimer_","onClosed_","document","readyState","called","wrappedFn","body","addEventListener","attachEvent","executeWhenDOMReady","scriptTagHolder","FirebaseIFrameScriptHolder","command","arg1","arg2","incrementIncomingBytes_","clearTimeout","password","sendNewPolls","pN","urlParams","start","random","uniqueCallbackIdentifier","hostname","connectURL","addTag","startLongPoll","addDisconnectPingFrame","forceAllow","forceAllow_","forceDisallow","forceDisallow_","isAvailable","createElement","href","Windows","UI","markConnectionHealthy","shutdown_","close","myDisconnFrame","removeChild","send","dataStr","base64data","MAX_URL_DATA_SIZE","enqueueSegment","pw","dframe","src","style","display","appendChild","commandCB","onMessageCB","outstandingRequests","pendingSegs","currentSerial","myIFrame","createIFrame_","script","currentDomain","domain","iframeContents","doc","write","iframe","contentWindow","contentDocument","alive","textContent","myID","myPW","newRequest_","size","theURL","curDataString","theSeg","shift","seg","ts","addLongPollTag_","segnum","totalsegs","url","serial","doNewRequest","keepaliveTimeout","loadCB","newScript","async","onload","onreadystatechange","rstate","parentNode","onerror","WebSocketImpl","MozWebSocket","WebSocket","WebSocketConnection","keepaliveTimer","frames","totalFrames","connectionURL_","mySock","onopen","onclose","onmessage","m","handleIncomingFrame","isOldAndroid","oldAndroidMatch","userAgent","match","parseFloat","previouslyFailed","appendFrame_","jsonMess","fullMess","handleNewFrameCount_","frameCount","extractFrameCount_","isNaN","mess","remainingData","resetKeepAlive","sendString_","clearInterval","setInterval","responsesRequiredToBeHealthy","healthyTimeout","TransportManager","initTransports_","ALL_TRANSPORTS","IS_TRANSPORT_INITIALIZED","globalTransportInitialized_","isWebSocketsAvailable","isSkipPollConnection","transports_","transports","transport","initialTransport","upgradeTransport","Connection","repoInfo_","applicationId_","appCheckToken_","authToken_","onReady_","onKill_","connectionCount","pendingDataMessages","state_","transportManager_","start_","conn","conn_","nextTransportId_","primaryResponsesRequired_","onMessageReceived","connReceiver_","onConnectionLost","disconnReceiver_","tx_","rx_","secondaryConn_","isHealthy_","healthyTimeoutMS","healthyTimeout_","everConnected","onConnectionLost_","onSecondaryConnectionLost_","onPrimaryMessageReceived_","onSecondaryMessageReceived_","sendRequest","dataMsg","sendData_","tryCleanupConnection","onSecondaryControl_","controlData","cmd","upgradeIfSecondaryHealthy_","secondaryResponsesRequired_","parsedData","layer","proceedWithUpgrade_","onControl_","onDataMessage_","onPrimaryResponse_","payload","onHandshake_","onConnectionShutdown_","onReset_","sendPingOnPrimaryIfNecessary_","handshake","timestamp","h","sessionId","onConnectionEstablished_","tryStartUpgrade_","startUpgrade_","closeConnections_","reason","ServerActions","put","pathString","onComplete","hash","merge","refreshAuthToken","refreshAppCheckToken","onDisconnectPut","onDisconnectMerge","onDisconnectCancel","reportStats","stats","EventEmitter","allowedEvents_","listeners_","trigger","eventType","listeners","on","validateEventType_","eventData","getInitialEvent","off","splice","find","et","OnlineMonitor","super","online_","getInstance","currentlyOnline","Path","pathOrString","pieceNum","pieces_","copyTo","pieceNum_","newEmptyPath","pathGetFront","path","pathGetLength","pathPopFront","pathGetBack","pathSlice","begin","slice","pathParent","pieces","pathChild","childPathObj","childPieces","pathIsEmpty","newRelativePath","outerPath","innerPath","outer","inner","pathCompare","left","right","leftKeys","rightKeys","cmp","pathEquals","other","pathContains","ValidationPath","errorPrefix_","parts_","byteLength_","max","validationPathCheckValid","validationPath","validationPathToErrorString","VisibilityMonitor","hidden","visibilityChange","visible_","visible","PersistentConnection","onDataUpdate_","onConnectStatus_","onServerInfoUpdate_","authTokenProvider_","appCheckTokenProvider_","authOverride_","nextPersistentConnectionId_","interruptReasons_","listens","outstandingPuts_","outstandingGets_","outstandingPutCount_","outstandingGetCount_","onDisconnectRequestQueue_","connected_","reconnectDelay_","maxReconnectDelay_","securityDebugCallback_","establishConnectionTimer_","requestCBHash_","requestNumber_","realtime_","forceTokenRefresh_","invalidAuthTokenCount_","invalidAppCheckTokenCount_","firstConnection_","lastConnectionAttemptTime_","lastConnectionEstablishedTime_","onVisible_","onOnline_","action","onResponse","curReqNum","msg","r","initConnection_","request","_path","q","_queryObject","index","sendGet_","listen","currentHashFn","tag","queryId","_queryIdentifier","_queryParams","isDefault","loadsAllData","listenSpec","hashFn","sendListen_","req","status","warnOnListenWarnings_","removeListen_","warnings","indexSpec","indexPath","getIndex","tryAuth","reduceReconnectDelayIfAdminCredential_","credential","tryAppCheck","authMethod","decoded","isValidFormat","requestData","cred","onAuthRevoked_","onAppCheckRevoked_","unlisten","sendUnlisten_","queryObj","sendOnDisconnect_","response","putInternal","sendPut_","queued","result","errorReason","reqNum","onDataPush_","onListenRevoked_","onSecurityDebugPacket_","handleTimestamp_","sendConnectStats_","restoreState_","scheduleConnect_","establishConnection_","online","onRealtimeDisconnect_","reconnectDelay","cancelSentTransactions_","shouldReconnect_","timeSinceLastConnectAttempt","onDataMessage","onReady","nextConnectionId_","canceled","connection","closeFn","interrupt","resume","delta","serverTimeOffset","normalizedPathString","statusCode","explanation","queries","NamedNode","node","Wrap","Index","getCompare","compare","indexedValueChanged","oldNode","newNode","oldWrapped","newWrapped","minPost","MIN","__EMPTY_NODE","KeyIndex","isDefinedOn","maxPost","makePost","indexValue","KEY_INDEX","SortedMapIterator","startKey","comparator","isReverse_","resultGenerator_","nodeStack_","getNext","pop","hasNext","peek","LLRBNode","color","RED","SortedMap","EMPTY_NODE","copy","count","inorderTraversal","reverseTraversal","min_","minKey","maxKey","insert","fixUp_","removeMin_","isRed_","moveRedLeft_","smallest","rotateRight_","moveRedRight_","rotateLeft_","colorFlip_","nl","nr","checkMaxDepth_","blackDepth","check_","BLACK","comparator_","root_","getPredecessorKey","rightParent","getIterator","resultGenerator","getIteratorFrom","getReverseIteratorFrom","getReverseIterator","NAME_ONLY_COMPARATOR","NAME_COMPARATOR","MAX_NODE","priorityHashText","priority","validatePriorityNode","priorityNode","isLeafNode","getPriority","__childrenNodeConstructor","LeafNode","value_","priorityNode_","lazyHash_","updatePriority","newPriorityNode","getImmediateChild","childName","getChild","hasChild","getPredecessorChildName","childNode","updateImmediateChild","newChildNode","updateChild","front","numChildren","forEachChild","exportFormat",".value","getValue",".priority","toHash","compareTo","compareToLeafNode_","otherLeaf","otherLeafType","thisLeafType","otherIndex","VALUE_TYPE_ORDER","thisIndex","withIndex","isIndexed","equals","nodeFromJSON","PRIORITY_INDEX","aPriority","bPriority","indexCmp","LOG_2","Base12Num","num","current_","mask","bits_","nextBitIsOne","buildChildSet","childList","keyFn","mapSortFn","buildBalancedTree","namedNode","middle","root","base12","buildPennant","chunkSize","childTree","pennant","attachPennant","isOne","buildFrom12Array","_defaultIndexMap","fallbackObject","IndexMap","indexes_","indexSet_","Default","indexKey","sortedMap","hasIndex","indexDefinition","addIndex","existingChildren","sawIndexedValue","iter","next","newIndex","indexName","newIndexSet","assign","newIndexes","addToIndexes","indexedChildren","existingSnap","newChildren","removeFromIndexes","ChildrenNode","children_","indexMap_","child","newIndexMap","newPriority","newImmediateChild","numKeys","allIntegerKeys","array","childHash","idx","resolveIndex_","predecessor","getFirstChildName","getFirstChild","getLastChildName","getLastChild","wrappedNode","startPost","iterator","endPost","otherChildrenNode","thisIter","otherIter","thisCurrent","otherCurrent","MaxNode","defineProperties","MAX","USE_HINZE","json","jsonLeaf","childData","children","childrenHavePriority","childSet","sortedChildSet","PathIndex","indexPath_","extractChild","snap","aChild","bChild","valueNode","VALUE_INDEX","changeValue","snapshotNode","changeChildAdded","changeChildRemoved","changeChildChanged","oldSnap","IndexedFilter","index_","newChild","affectedPath","optChangeAccumulator","oldChild","trackChildChange","updateFullNode","newSnap","filtersNodes","getIndexedFilter","RangedFilter","indexedFilter_","startPost_","getStartPost_","endPost_","getEndPost_","startIsInclusive_","startAfterSet_","endIsInclusive_","endBeforeSet_","getStartPost","getEndPost","matches","isWithinStart","isWithinEnd","filtered","self","hasStart","startName","getIndexStartName","getIndexStartValue","hasEnd","endName","getIndexEndName","getIndexEndValue","LimitedFilter","withinDirectionalStart","reverse_","withinEndPost","withinStartPost","withinDirectionalEnd","compareRes","rangedFilter_","limit_","getLimit","isViewFromLeft","fullLimitUpdateChild_","childKey","childSnap","changeAccumulator","oldEventCache","newChildNamedNode","windowBoundary","inRange","oldChildSnap","nextChild","getChildAfterChild","compareNext","newEventCache","QueryParams","limitSet_","startSet_","startNameSet_","endSet_","endNameSet_","viewFrom_","indexStartValue_","indexStartName_","indexEndValue_","indexEndName_","hasLimit","hasAnchoredLimit","queryParamsStartAt","queryParams","newParams","queryParamsEndAt","queryParamsOrderBy","queryParamsToRestQueryStringParameters","qs","orderBy","endParam","startParam","queryParamsGetQueryObject","viewFrom","ReadonlyRestClient","listens_","getListenId_","listenId","thisListen","queryStringParameters","restRequest_","querystringParams","forEach","arrayVal","encodeURIComponent","querystring","xhr","XMLHttpRequest","responseText","SnapshotHolder","rootNode_","getNode","updateSnapshot","newSnapshotNode","newSparseSnapshotTree","sparseSnapshotTreeRemember","sparseSnapshotTree","clear","sparseSnapshotTreeForEachTree","prefixPath","func","tree","StatsListener","collection_","last_","newStats","stat","StatsReporter","collection","server_","statsToReport_","statsListener_","reportStats_","reportedStats","haveStatsToReport","newOperationSourceUser","fromUser","fromServer","tagged","newOperationSourceServer","newOperationSourceServerTaggedQuery","AckUserWrite","affectedTree","revert","ACK_USER_WRITE","operationForChild","subtree","ListenComplete","LISTEN_COMPLETE","Overwrite","OVERWRITE","Merge","MERGE","CacheNode","node_","fullyInitialized_","filtered_","isFullyInitialized","isFiltered","isCompleteForPath","isCompleteForChild","EventGenerator","query_","eventGeneratorGenerateEventsForChanges","eventGenerator","changes","eventCache","eventRegistrations","events","moves","change","eventGeneratorGenerateEventsForType","registrations","filteredChanges","aWrapped","bWrapped","eventGeneratorCompareChanges","materializedChange","prevName","registration","respondsTo","createEvent","newViewCache","serverCache","viewCacheUpdateEventSnap","viewCache","eventSnap","complete","viewCacheUpdateServerSnap","serverSnap","viewCacheGetCompleteEventSnap","viewCacheGetCompleteServerSnap","emptyChildrenSingleton","ImmutableTree","fromObject","childPath","findRootMostMatchingPathAndValue","relativePath","predicate","childExistingPathAndValue","findRootMostValueAndPath","toSet","setTree","newTree","fold","fold_","pathSoFar","accum","findOnPath","findOnPath_","pathToFollow","foreachOnPath","foreachOnPath_","currentRelativePath","foreach","foreach_","foreachChild","CompoundWrite","writeTree_","empty","compoundWriteAddWrite","compoundWrite","rootmost","rootMostPath","newWriteTree","compoundWriteAddWrites","updates","newWrite","compoundWriteRemoveWrite","compoundWriteHasCompleteWrite","compoundWriteGetCompleteNode","compoundWriteGetCompleteChildren","compoundWriteChildCompoundWrite","shadowingNode","compoundWriteIsEmpty","compoundWriteApply","applySubtreeWrite","writeTree","priorityWrite","writeTreeChildWrites","newWriteTreeRef","writeTreeRemoveWrite","writeId","allWrites","findIndex","writeToRemove","removedWriteWasVisible","removedWriteOverlapsWithOtherWrites","currentWrite","writeRecord","writeTreeRecordContainsPath_","visibleWrites","writeTreeLayerTree_","writeTreeDefaultFilter_","lastWriteId","writes","treeRoot","writePath","deepNode","writeTreeCalcCompleteEventCache","treePath","completeServerCache","writeIdsToExclude","includeHiddenWrites","subMerge","writeTreeRefCalcCompleteEventCache","writeTreeRef","writeTreeRefCalcCompleteEventChildren","completeServerChildren","completeChildren","topLevelSet","writeTreeCalcCompleteEventChildren","writeTreeRefCalcEventCacheAfterServerOverwrite","existingEventSnap","existingServerSnap","childMerge","writeTreeCalcEventCacheAfterServerOverwrite","writeTreeRefShadowingWrite","writeTreeRefCalcIndexedSlice","completeServerData","toIterate","nodes","writeTreeCalcIndexedSlice","writeTreeRefCalcCompleteChild","existingServerCache","writeTreeRefChild","ChildChangeAccumulator","changeMap","oldChange","oldType","getChanges","NO_COMPLETE_CHILD_SOURCE","getCompleteChild","WriteTreeCompleteChildSource","writes_","viewCache_","optCompleteServerCache_","serverNode","viewProcessorApplyOperation","viewProcessor","oldViewCache","operation","writesCache","completeCache","accumulator","filterServerNode","overwrite","viewProcessorApplyUserOverwrite","viewProcessorApplyServerOverwrite","changedChildren","curViewCache","viewProcessorCacheHasChild","viewProcessorApplyUserMerge","viewProcessorApplyServerMerge","ackUserWrite","serverChildren","viewProcessorRevertUserWrite","ackPath","mergePath","serverCachePath","viewProcessorAckUserWrite","oldServerNode","viewProcessorGenerateEventCacheAfterServerEvent","viewProcessorListenComplete","isLeafOrEmpty","oldCompleteSnap","viewProcessorMaybeAddValueEvent","changePath","oldEventSnap","completeEventChildren","completeNode","oldEventNode","updatedPriority","childChangePath","newEventChild","eventChildUpdate","changedSnap","oldServerSnap","newServerCache","serverFilter","newServerNode","viewProcessorApplyMerge","viewMergeTree","childMergeTree","isUnknownDeepMerge","View","initialViewCache","eventRegistrations_","indexFilter","processor_","initialServerCache","initialEventCache","eventGenerator_","viewIsEmpty","view","viewRemoveEventRegistration","eventRegistration","cancelError","cancelEvents","maybeEvent","createCancelEvent","remaining","existing","hasAnyCallback","concat","viewApplyOperation","viewGenerateEventsForChanges_","referenceConstructor","SyncPoint","views","syncPointApplyOperation","syncPoint","optCompleteServerCache","syncPointGetView","serverCacheComplete","eventCacheComplete","syncPointAddEventRegistration","initialChanges","eventNode","viewGetInitialEvents","syncPointRemoveEventRegistration","removed","hadCompleteView","syncPointHasCompleteView","viewQueryId","_repo","syncPointGetQueryViews","syncPointGetCompleteServerCache","cache","viewGetCompleteServerCache","syncPointViewForQuery","syncPointGetCompleteView","syncPointViewExistsForQuery","syncTreeNextQueryTag_","SyncTree","listenProvider_","syncPointTree_","pendingWriteTree_","tagToQueryMap","queryToTagMap","syncTreeApplyUserOverwrite","syncTree","newData","syncTreeApplyOperationToSyncPoints_","syncTreeApplyUserMerge","changeTree","syncTreeAckUserWrite","record","writeTreeGetWrite","syncTreeApplyServerOverwrite","syncTreeRemoveEventRegistration","skipListenerDedup","maybeSyncPoint","removedAndEvents","removingDefault","covered","parentSyncPoint","newViews","maybeChildSyncPoint","childMap","_key","childViews","newQuery","syncTreeCreateListenerForView_","startListening","syncTreeQueryForListening_","syncTreeTagForQuery","stopListening","tagToRemove","syncTreeMakeQueryKey_","queryToRemove","removedQuery","removedQueryKey","removedQueryTag","syncTreeRemoveTags_","syncTreeApplyTaggedQueryOverwrite","queryKey","syncTreeQueryKeyForTag_","syncTreeParseQueryKey_","queryPath","syncTreeApplyTaggedOperation_","syncTreeAddEventRegistration","skipSetupListener","foundAncestorDefaultView","pathToSyncPoint","sp","childSyncPoint","viewAlreadyExists","queriesToStop","childQueries","queryToStop","syncTreeSetupListener_","syncTreeCalcCompleteEventCache","syncTreeGetServerValue","serverCacheNode","syncTreeApplyOperationHelper_","syncPointTree","syncTreeApplyOperationDescendantsHelper_","childOperation","childServerCache","childWritesCache","syncTreeApplyTaggedListenComplete","toUpperCase","errorForServerCode","splitIndex","ExistingValueProvider","DeferredValueProvider","syncTree_","path_","generateWithValues","resolveDeferredLeafValue","existingVal","serverValues","resolveScalarDeferredValue","resolveComplexDeferredValue","op","unused","existingNode","leaf","resolveDeferredValueTree","resolveDeferredValue","resolveDeferredValueSnapshot","rawPri","leafNode","childrenNode","Tree","parent","childCount","treeSubTree","pathObj","treeGetValue","treeSetValue","treeUpdateParents","treeHasChildren","treeForEachChild","treeGetPath","childEmpty","childExists","treeIsEmpty","validateFirebaseDataArg","validateFirebaseData","errorPrefixFxn","validateFirebaseMergeDataArg","mergePaths","curPath","isValidPriority","prevPath","validateFirebaseMergePaths","validatePriority","validateKey","validateRootPathString","validatePathString","validateWritablePath","INVALID_KEY_REGEX_","INVALID_PATH_REGEX_","MAX_LEAF_SIZE_","isValidPathString","isValidRootPathString","hasDotValue","hasActualChild","last","validateUrl","parsedUrl","EventQueue","eventLists_","recursionDepth_","eventQueueQueueEvents","eventQueue","eventDataList","currList","getPath","eventQueueRaiseEventsAtPath","eventQueueRaiseQueuedEventsMatchingPredicate","eventPath","eventQueueRaiseEventsForChangedPath","changedPath","sentAll","eventList","eventFn","getEventRunner","eventListRaise","INTERRUPT_REASON","MAX_TRANSACTION_RETRIES","Repo","forceRestClient_","appCheckProvider_","dataUpdateCount","eventQueue_","nextWriteId_","interceptServerDataCallback_","transactionQueueTree_","persistentConnection_","repoStart","repo","appId","authOverride","search","beingCrawled","isMerge","repoOnDataUpdate","repoOnConnectStatus","connectStatus","repoUpdateInfo","statsReporter_","creatorFunction","infoData_","infoSyncTree_","infoEvents","serverSyncTree_","repoServerTime","offsetNode","repoGenerateServerValues","taggedSnap","taggedChildren","raw","syncTreeApplyTaggedQueryMerge","repoRerunTransactions","repoLog","resolvedOnDisconnectTree","resolved","repoAbortTransactions","repoRunOnDisconnectEvents","repoGetNextWriteId","repoSetWithPriority","newVal","newNodeUnresolved","success","clearEvents","repoCallOnCompleteCallback","repoOnDisconnectCancel","sparseSnapshotTreeForget","repoOnDisconnectSet","repoRemoveEventCallbackForQuery","repoInterrupt","repoGetLatestState","excludeSets","repoSendReadyTransactions","repoPruneCompletedTransactionsBelowNode","queue","repoBuildTransactionQueue","every","transaction","setsToIgnore","txn","currentWriteId","latestState","snapToSend","latestHash","retryCount","currentOutputSnapshotRaw","dataToSend","pathToSend","currentOutputSnapshotResolved","unwatcher","abortReason","repoSendTransactionQueue","rootMostTransactionNode","repoGetAncestorTransactionNode","txnsToRerun","abortTransaction","currentNode","currentInputSnapshot","newDataNode","oldWriteId","newNodeResolved","applyLocally","repoRerunTransactionQueue","transactionNode","transactionQueue","repoAggregateTransactionQueuesForNode","nodeQueue","order","to","includeSelf","treeForEachAncestor","repoAbortTransactionsOnNode","treeForEachDescendant","childrenFirst","lastSent","parseRepoInfo","dataURL","parseDatabaseURL","scheme","subdomain","port","colonInd","slashInd","questionMarkInd","pathStringDecoded","piece","decodeURIComponent","decodePath","dotInd","queryString","results","segment","kv","decodeQuery","hostWithoutPort","PUSH_CHARS","nextPushId","lastPushTime","lastRandChars","duplicateTime","timeStampChars","DataEvent","snapshot","ref","getEventType","exportVal","CancelEvent","CallbackContext","snapshotCallback","cancelCallback","onValue","expDataSnapshot","previousChildName","onCancel","hasCancelCallback","userCallback","OnDisconnect","cancel","setWithPriority","repoOnDisconnectSetWithPriority","childrenToMerge","repoOnDisconnectUpdate","QueryImpl","_orderByCalled","ReferenceImpl","isEqual","sameRepo","samePath","sameQueryIdentifier","toJSON","pathToUrlEncodedString","validateNoPreviousOrderByCall","validateQueryEndpoints","startNode","endNode","tooManyArgsError","wrongArgTypeError","validateLimit","parentPath","DataSnapshot","_node","_index","childRef","exists","hasChildren","db","_checkNotDeleted","_root","refFromURL","parsedURL","changedKey","changedValue","repoUpdate","callbackContext","ValueEventRegistration","cached","err","ChildEventRegistration","eventToCheck","cancelCallbackOrListenOptions","onlyOnce","onceCallback","dataSnapshot","repoAddEventCallbackForQuery","onChildAdded","onChildChanged","onChildMoved","onChildRemoved","expCallback","QueryConstraint","QueryEndAtConstraint","_value","_apply","QueryEndBeforeConstraint","queryParamsEndBefore","QueryStartAtConstraint","QueryStartAfterConstraint","queryParamsStartAfter","QueryLimitToFirstConstraint","_limit","newLimit","queryParamsLimitToFirst","QueryLimitToLastConstraint","queryParamsLimitToLast","QueryOrderByChildConstraint","parsedPath","QueryOrderByKeyConstraint","QueryOrderByPriorityConstraint","QueryOrderByValueConstraint","QueryEqualToValueConstraint","queryConstraints","queryImpl","constraint","FIREBASE_DATABASE_EMULATOR_HOST_VAR","repos","useRestClient","repoManagerDatabaseFromApp","app","authProvider","dbUrl","databaseURL","projectId","isEmulator","dbEmulatorHost","process","env","authTokenProvider","appRepos","repoManagerCreateRepo","Database","_repoInternal","_instanceStarted","_rootInternal","appName","repoManagerDeleteRepo","apiName","checkTransportInit","forceWebSockets","forceLongPolling","connectDatabaseEmulator","tokenProvider","mockUserToken","uid","project","iat","sub","user_id","iss","aud","exp","auth_time","firebase","sign_in_provider","identities","alg","createMockUserToken","goOnline","enableLoggingImpl","SERVER_TIMESTAMP",".sv","TransactionResult","committed","runTransaction","transactionUpdate","currentState","queueNode","priorityForNode","repoStartTransaction","simpleListen","echo","onEcho","_registerComponent","registerVersion","arguments","objectToMerge","newObjectToMerge","_database","_validatePathString","getRef","Reference","Query","database","cancelCallbackOrContext","ret","getCancelAndContextArgs_","valueCallback","expSnapshot","validateEventType","once","failureCallbackOrContext","limitToFirst","limit","limitToLast","orderByChild","orderByKey","orderByPriority","orderByValue","startAt","startAfter","endAt","endBefore","equalTo","cancelOrContext","_ReferenceImpl","_QueryImpl","_QueryParams","getKey","getParent","getRoot","_validateWritablePath","bool","validateBoolean","transactionResult","setPriority","expPromise","thennablePushRef","pushRef","expRef","ModularOnDisconnect","useEmulator","goOffline","ServerValue","TIMESTAMP","increment","customAuthImpl","_setSDKVersion","_repoManagerDatabaseFromApp","registerComponent","databaseExp"],"mappings":"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"}