@firebase/firestore 3.4.4-canary.0482aa5b7 → 3.4.4-canary.3e9f3e253

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (134) hide show
  1. package/dist/firestore/src/api/credentials.d.ts +1 -0
  2. package/dist/firestore/src/local/document_overlay_cache.d.ts +72 -0
  3. package/dist/firestore/src/local/indexeddb_document_overlay_cache.d.ts +45 -0
  4. package/dist/firestore/src/local/indexeddb_index_manager.d.ts +10 -2
  5. package/dist/firestore/src/local/indexeddb_persistence.d.ts +6 -4
  6. package/dist/firestore/src/local/indexeddb_remote_document_cache.d.ts +2 -8
  7. package/dist/firestore/src/local/indexeddb_schema.d.ts +81 -9
  8. package/dist/firestore/src/local/local_documents_view.d.ts +0 -1
  9. package/dist/firestore/src/local/local_serializer.d.ts +18 -2
  10. package/dist/firestore/src/local/memory_document_overlay_cache.d.ts +37 -0
  11. package/dist/firestore/src/local/memory_persistence.d.ts +6 -2
  12. package/dist/firestore/src/local/memory_remote_document_cache.d.ts +1 -3
  13. package/dist/firestore/src/local/persistence.d.ts +8 -2
  14. package/dist/firestore/src/local/remote_document_cache.d.ts +7 -9
  15. package/dist/firestore/src/local/simple_db.d.ts +1 -0
  16. package/dist/firestore/src/model/document_key.d.ts +4 -0
  17. package/dist/firestore/src/model/field_index.d.ts +2 -2
  18. package/dist/firestore/src/model/overlay.d.ts +32 -0
  19. package/dist/firestore/src/model/target_index_matcher.d.ts +70 -0
  20. package/dist/firestore/test/unit/local/counting_query_engine.d.ts +3 -3
  21. package/dist/firestore/test/unit/local/document_overlay_cache.test.d.ts +1 -0
  22. package/dist/firestore/test/unit/local/persistence_test_helpers.d.ts +1 -0
  23. package/dist/firestore/test/unit/local/test_document_overlay_cache.d.ts +38 -0
  24. package/dist/firestore/test/unit/local/test_index_manager.d.ts +11 -0
  25. package/dist/firestore/test/unit/local/test_remote_document_cache.d.ts +4 -2
  26. package/dist/firestore/test/unit/local/test_remote_document_change_buffer.d.ts +1 -1
  27. package/dist/firestore/test/unit/model/target_index_matcher.test.d.ts +17 -0
  28. package/dist/index.esm2017.js +3497 -3134
  29. package/dist/index.esm2017.js.map +1 -1
  30. package/dist/index.esm5.js +3448 -3123
  31. package/dist/index.esm5.js.map +1 -1
  32. package/dist/index.node.cjs.js +639 -154
  33. package/dist/index.node.cjs.js.map +1 -1
  34. package/dist/index.node.mjs +639 -154
  35. package/dist/index.node.mjs.map +1 -1
  36. package/dist/index.rn.js +3586 -3227
  37. package/dist/index.rn.js.map +1 -1
  38. package/dist/internal.d.ts +83 -12
  39. package/dist/lite/firestore/src/api/credentials.d.ts +1 -0
  40. package/dist/lite/firestore/src/local/document_overlay_cache.d.ts +72 -0
  41. package/dist/lite/firestore/src/local/indexeddb_document_overlay_cache.d.ts +45 -0
  42. package/dist/lite/firestore/src/local/indexeddb_index_manager.d.ts +10 -2
  43. package/dist/lite/firestore/src/local/indexeddb_persistence.d.ts +6 -4
  44. package/dist/lite/firestore/src/local/indexeddb_remote_document_cache.d.ts +2 -8
  45. package/dist/lite/firestore/src/local/indexeddb_schema.d.ts +81 -9
  46. package/dist/lite/firestore/src/local/local_documents_view.d.ts +0 -1
  47. package/dist/lite/firestore/src/local/local_serializer.d.ts +18 -2
  48. package/dist/lite/firestore/src/local/memory_document_overlay_cache.d.ts +37 -0
  49. package/dist/lite/firestore/src/local/memory_persistence.d.ts +6 -2
  50. package/dist/lite/firestore/src/local/memory_remote_document_cache.d.ts +1 -3
  51. package/dist/lite/firestore/src/local/persistence.d.ts +8 -2
  52. package/dist/lite/firestore/src/local/remote_document_cache.d.ts +7 -9
  53. package/dist/lite/firestore/src/local/simple_db.d.ts +1 -0
  54. package/dist/lite/firestore/src/model/document_key.d.ts +4 -0
  55. package/dist/lite/firestore/src/model/field_index.d.ts +2 -2
  56. package/dist/lite/firestore/src/model/overlay.d.ts +32 -0
  57. package/dist/lite/firestore/src/model/target_index_matcher.d.ts +70 -0
  58. package/dist/lite/firestore/test/unit/local/counting_query_engine.d.ts +3 -3
  59. package/dist/lite/firestore/test/unit/local/document_overlay_cache.test.d.ts +1 -0
  60. package/dist/lite/firestore/test/unit/local/persistence_test_helpers.d.ts +1 -0
  61. package/dist/lite/firestore/test/unit/local/test_document_overlay_cache.d.ts +38 -0
  62. package/dist/lite/firestore/test/unit/local/test_index_manager.d.ts +11 -0
  63. package/dist/lite/firestore/test/unit/local/test_remote_document_cache.d.ts +4 -2
  64. package/dist/lite/firestore/test/unit/local/test_remote_document_change_buffer.d.ts +1 -1
  65. package/dist/lite/firestore/test/unit/model/target_index_matcher.test.d.ts +17 -0
  66. package/dist/lite/index.browser.esm2017.js +1118 -1112
  67. package/dist/lite/index.browser.esm2017.js.map +1 -1
  68. package/dist/lite/index.browser.esm5.js +53 -47
  69. package/dist/lite/index.browser.esm5.js.map +1 -1
  70. package/dist/lite/index.node.cjs.js +10 -2
  71. package/dist/lite/index.node.cjs.js.map +1 -1
  72. package/dist/lite/index.node.mjs +10 -2
  73. package/dist/lite/index.node.mjs.map +1 -1
  74. package/dist/lite/index.rn.esm2017.js +1134 -1128
  75. package/dist/lite/index.rn.esm2017.js.map +1 -1
  76. package/dist/lite/internal.d.ts +4 -0
  77. package/dist/lite/packages/firestore/dist/lite/index.browser.esm2017.d.ts +112 -112
  78. package/dist/lite/packages/firestore/src/api/credentials.d.ts +1 -0
  79. package/dist/lite/packages/firestore/src/local/document_overlay_cache.d.ts +72 -0
  80. package/dist/lite/packages/firestore/src/local/indexeddb_document_overlay_cache.d.ts +45 -0
  81. package/dist/lite/packages/firestore/src/local/indexeddb_index_manager.d.ts +10 -2
  82. package/dist/lite/packages/firestore/src/local/indexeddb_persistence.d.ts +6 -4
  83. package/dist/lite/packages/firestore/src/local/indexeddb_remote_document_cache.d.ts +2 -8
  84. package/dist/lite/packages/firestore/src/local/indexeddb_schema.d.ts +81 -9
  85. package/dist/lite/packages/firestore/src/local/local_documents_view.d.ts +0 -1
  86. package/dist/lite/packages/firestore/src/local/local_serializer.d.ts +18 -2
  87. package/dist/lite/packages/firestore/src/local/memory_document_overlay_cache.d.ts +37 -0
  88. package/dist/lite/packages/firestore/src/local/memory_persistence.d.ts +6 -2
  89. package/dist/lite/packages/firestore/src/local/memory_remote_document_cache.d.ts +1 -3
  90. package/dist/lite/packages/firestore/src/local/persistence.d.ts +8 -2
  91. package/dist/lite/packages/firestore/src/local/remote_document_cache.d.ts +7 -9
  92. package/dist/lite/packages/firestore/src/local/simple_db.d.ts +1 -0
  93. package/dist/lite/packages/firestore/src/model/document_key.d.ts +4 -0
  94. package/dist/lite/packages/firestore/src/model/field_index.d.ts +2 -2
  95. package/dist/lite/packages/firestore/src/model/overlay.d.ts +32 -0
  96. package/dist/lite/packages/firestore/src/model/target_index_matcher.d.ts +70 -0
  97. package/dist/lite/packages/firestore/test/unit/local/counting_query_engine.d.ts +3 -3
  98. package/dist/lite/packages/firestore/test/unit/local/document_overlay_cache.test.d.ts +1 -0
  99. package/dist/lite/packages/firestore/test/unit/local/persistence_test_helpers.d.ts +1 -0
  100. package/dist/lite/packages/firestore/test/unit/local/test_document_overlay_cache.d.ts +38 -0
  101. package/dist/lite/packages/firestore/test/unit/local/test_index_manager.d.ts +11 -0
  102. package/dist/lite/packages/firestore/test/unit/local/test_remote_document_cache.d.ts +4 -2
  103. package/dist/lite/packages/firestore/test/unit/local/test_remote_document_change_buffer.d.ts +1 -1
  104. package/dist/lite/packages/firestore/test/unit/model/target_index_matcher.test.d.ts +17 -0
  105. package/dist/packages/firestore/dist/index.esm2017.d.ts +181 -179
  106. package/dist/packages/firestore/src/api/credentials.d.ts +1 -0
  107. package/dist/packages/firestore/src/local/document_overlay_cache.d.ts +72 -0
  108. package/dist/packages/firestore/src/local/indexeddb_document_overlay_cache.d.ts +45 -0
  109. package/dist/packages/firestore/src/local/indexeddb_index_manager.d.ts +10 -2
  110. package/dist/packages/firestore/src/local/indexeddb_persistence.d.ts +6 -4
  111. package/dist/packages/firestore/src/local/indexeddb_remote_document_cache.d.ts +2 -8
  112. package/dist/packages/firestore/src/local/indexeddb_schema.d.ts +81 -9
  113. package/dist/packages/firestore/src/local/local_documents_view.d.ts +0 -1
  114. package/dist/packages/firestore/src/local/local_serializer.d.ts +18 -2
  115. package/dist/packages/firestore/src/local/memory_document_overlay_cache.d.ts +37 -0
  116. package/dist/packages/firestore/src/local/memory_persistence.d.ts +6 -2
  117. package/dist/packages/firestore/src/local/memory_remote_document_cache.d.ts +1 -3
  118. package/dist/packages/firestore/src/local/persistence.d.ts +8 -2
  119. package/dist/packages/firestore/src/local/remote_document_cache.d.ts +7 -9
  120. package/dist/packages/firestore/src/local/simple_db.d.ts +1 -0
  121. package/dist/packages/firestore/src/model/document_key.d.ts +4 -0
  122. package/dist/packages/firestore/src/model/field_index.d.ts +2 -2
  123. package/dist/packages/firestore/src/model/overlay.d.ts +32 -0
  124. package/dist/packages/firestore/src/model/target_index_matcher.d.ts +70 -0
  125. package/dist/packages/firestore/test/unit/local/counting_query_engine.d.ts +3 -3
  126. package/dist/packages/firestore/test/unit/local/document_overlay_cache.test.d.ts +1 -0
  127. package/dist/packages/firestore/test/unit/local/persistence_test_helpers.d.ts +1 -0
  128. package/dist/packages/firestore/test/unit/local/test_document_overlay_cache.d.ts +38 -0
  129. package/dist/packages/firestore/test/unit/local/test_index_manager.d.ts +11 -0
  130. package/dist/packages/firestore/test/unit/local/test_remote_document_cache.d.ts +4 -2
  131. package/dist/packages/firestore/test/unit/local/test_remote_document_change_buffer.d.ts +1 -1
  132. package/dist/packages/firestore/test/unit/model/target_index_matcher.test.d.ts +17 -0
  133. package/dist/private.d.ts +79 -12
  134. package/package.json +9 -9
@@ -176,6 +176,7 @@ export declare class FirebaseAppCheckTokenProvider implements CredentialsProvide
176
176
  private tokenListener;
177
177
  private forceRefresh;
178
178
  private appCheck;
179
+ private latestAppCheckToken;
179
180
  constructor(appCheckProvider: Provider<AppCheckInternalComponentName>);
180
181
  start(asyncQueue: AsyncQueue, changeListener: CredentialChangeListener<string>): void;
181
182
  getToken(): Promise<Token | null>;
@@ -0,0 +1,72 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2022 Google LLC
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ import { DocumentKeySet } from '../model/collections';
18
+ import { DocumentKey } from '../model/document_key';
19
+ import { Mutation } from '../model/mutation';
20
+ import { Overlay } from '../model/overlay';
21
+ import { ResourcePath } from '../model/path';
22
+ import { PersistencePromise } from './persistence_promise';
23
+ import { PersistenceTransaction } from './persistence_transaction';
24
+ /**
25
+ * Provides methods to read and write document overlays.
26
+ *
27
+ * An overlay is a saved mutation, that gives a local view of a document when
28
+ * applied to the remote version of the document.
29
+ *
30
+ * Each overlay stores the largest batch ID that is included in the overlay,
31
+ * which allows us to remove the overlay once all batches leading up to it have
32
+ * been acknowledged.
33
+ */
34
+ export interface DocumentOverlayCache {
35
+ /**
36
+ * Gets the saved overlay mutation for the given document key.
37
+ * Returns null if there is no overlay for that key.
38
+ */
39
+ getOverlay(transaction: PersistenceTransaction, key: DocumentKey): PersistencePromise<Overlay | null>;
40
+ /**
41
+ * Saves the given document mutation map to persistence as overlays.
42
+ * All overlays will have their largest batch id set to `largestBatchId`.
43
+ */
44
+ saveOverlays(transaction: PersistenceTransaction, largestBatchId: number, overlays: Map<DocumentKey, Mutation>): PersistencePromise<void>;
45
+ /** Removes overlays for the given document keys and batch ID. */
46
+ removeOverlaysForBatchId(transaction: PersistenceTransaction, documentKeys: DocumentKeySet, batchId: number): PersistencePromise<void>;
47
+ /**
48
+ * Returns all saved overlays for the given collection.
49
+ *
50
+ * @param transaction - The persistence transaction to use for this operation.
51
+ * @param collection - The collection path to get the overlays for.
52
+ * @param sinceBatchId - The minimum batch ID to filter by (exclusive).
53
+ * Only overlays that contain a change past `sinceBatchId` are returned.
54
+ * @returns Mapping of each document key in the collection to its overlay.
55
+ */
56
+ getOverlaysForCollection(transaction: PersistenceTransaction, collection: ResourcePath, sinceBatchId: number): PersistencePromise<Map<DocumentKey, Overlay>>;
57
+ /**
58
+ * Returns `count` overlays with a batch ID higher than `sinceBatchId` for the
59
+ * provided collection group, processed by ascending batch ID. The method
60
+ * always returns all overlays for a batch even if the last batch contains
61
+ * more documents than the remaining limit.
62
+ *
63
+ * @param transaction - The persistence transaction used for this operation.
64
+ * @param collectionGroup - The collection group to get the overlays for.
65
+ * @param sinceBatchId - The minimum batch ID to filter by (exclusive).
66
+ * Only overlays that contain a change past `sinceBatchId` are returned.
67
+ * @param count - The number of overlays to return. Can be exceeded if the last
68
+ * batch contains more entries.
69
+ * @return Mapping of each document key in the collection group to its overlay.
70
+ */
71
+ getOverlaysForCollectionGroup(transaction: PersistenceTransaction, collectionGroup: string, sinceBatchId: number, count: number): PersistencePromise<Map<DocumentKey, Overlay>>;
72
+ }
@@ -0,0 +1,45 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2022 Google LLC
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ import { User } from '../auth/user';
18
+ import { DocumentKeySet } from '../model/collections';
19
+ import { DocumentKey } from '../model/document_key';
20
+ import { Mutation } from '../model/mutation';
21
+ import { Overlay } from '../model/overlay';
22
+ import { ResourcePath } from '../model/path';
23
+ import { DocumentOverlayCache } from './document_overlay_cache';
24
+ import { LocalSerializer } from './local_serializer';
25
+ import { PersistencePromise } from './persistence_promise';
26
+ import { PersistenceTransaction } from './persistence_transaction';
27
+ /**
28
+ * Implementation of DocumentOverlayCache using IndexedDb.
29
+ */
30
+ export declare class IndexedDbDocumentOverlayCache implements DocumentOverlayCache {
31
+ private readonly serializer;
32
+ private readonly userId;
33
+ /**
34
+ * @param serializer - The document serializer.
35
+ * @param userId - The userId for which we are accessing overlays.
36
+ */
37
+ constructor(serializer: LocalSerializer, userId: string);
38
+ static forUser(serializer: LocalSerializer, user: User): IndexedDbDocumentOverlayCache;
39
+ getOverlay(transaction: PersistenceTransaction, key: DocumentKey): PersistencePromise<Overlay | null>;
40
+ saveOverlays(transaction: PersistenceTransaction, largestBatchId: number, overlays: Map<DocumentKey, Mutation>): PersistencePromise<void>;
41
+ removeOverlaysForBatchId(transaction: PersistenceTransaction, documentKeys: DocumentKeySet, batchId: number): PersistencePromise<void>;
42
+ getOverlaysForCollection(transaction: PersistenceTransaction, collection: ResourcePath, sinceBatchId: number): PersistencePromise<Map<DocumentKey, Overlay>>;
43
+ getOverlaysForCollectionGroup(transaction: PersistenceTransaction, collectionGroup: string, sinceBatchId: number, count: number): PersistencePromise<Map<DocumentKey, Overlay>>;
44
+ private saveOverlay;
45
+ }
@@ -14,6 +14,7 @@
14
14
  * See the License for the specific language governing permissions and
15
15
  * limitations under the License.
16
16
  */
17
+ import { User } from '../auth/user';
17
18
  import { Target } from '../core/target';
18
19
  import { DocumentKeySet, DocumentMap } from '../model/collections';
19
20
  import { FieldIndex, IndexOffset } from '../model/field_index';
@@ -23,16 +24,22 @@ import { PersistencePromise } from './persistence_promise';
23
24
  import { PersistenceTransaction } from './persistence_transaction';
24
25
  /**
25
26
  * A persisted implementation of IndexManager.
27
+ *
28
+ * PORTING NOTE: Unlike iOS and Android, the Web SDK does not memoize index
29
+ * data as it supports multi-tab access.
26
30
  */
27
31
  export declare class IndexedDbIndexManager implements IndexManager {
32
+ private user;
28
33
  /**
29
34
  * An in-memory copy of the index entries we've already written since the SDK
30
35
  * launched. Used to avoid re-writing the same entry repeatedly.
31
36
  *
32
- * This is *NOT* a complete cache of what's in persistence and so can never be used to
33
- * satisfy reads.
37
+ * This is *NOT* a complete cache of what's in persistence and so can never be
38
+ * used to satisfy reads.
34
39
  */
35
40
  private collectionParentsCache;
41
+ private uid;
42
+ constructor(user: User);
36
43
  /**
37
44
  * Adds a new entry to the collection parent index.
38
45
  *
@@ -50,4 +57,5 @@ export declare class IndexedDbIndexManager implements IndexManager {
50
57
  getNextCollectionGroupToUpdate(transaction: PersistenceTransaction): PersistencePromise<string | null>;
51
58
  updateCollectionGroup(transaction: PersistenceTransaction, collectionGroup: string, offset: IndexOffset): PersistencePromise<void>;
52
59
  updateIndexEntries(transaction: PersistenceTransaction, documents: DocumentMap): PersistencePromise<void>;
60
+ private getNextSequenceNumber;
53
61
  }
@@ -21,6 +21,7 @@ import { JsonProtoSerializer } from '../remote/serializer';
21
21
  import { AsyncQueue } from '../util/async_queue';
22
22
  import { DocumentLike, WindowLike } from '../util/types';
23
23
  import { BundleCache } from './bundle_cache';
24
+ import { DocumentOverlayCache } from './document_overlay_cache';
24
25
  import { IndexManager } from './index_manager';
25
26
  import { IndexedDbLruDelegateImpl } from './indexeddb_lru_delegate_impl';
26
27
  import { IndexedDbMutationQueue } from './indexeddb_mutation_queue';
@@ -99,6 +100,7 @@ export declare class IndexedDbPersistence implements Persistence {
99
100
  * no longer be able to access IndexedDB.
100
101
  */
101
102
  private readonly forceOwningTab;
103
+ private readonly schemaVersion;
102
104
  private simpleDb;
103
105
  private listenSequence;
104
106
  private _started;
@@ -118,7 +120,6 @@ export declare class IndexedDbPersistence implements Persistence {
118
120
  /** A listener to notify on primary state changes. */
119
121
  private primaryStateListener;
120
122
  private readonly targetCache;
121
- private readonly indexManager;
122
123
  private readonly remoteDocumentCache;
123
124
  private readonly bundleCache;
124
125
  private readonly webStorage;
@@ -133,7 +134,7 @@ export declare class IndexedDbPersistence implements Persistence {
133
134
  * If set to true, forcefully obtains database access. Existing tabs will
134
135
  * no longer be able to access IndexedDB.
135
136
  */
136
- forceOwningTab: boolean);
137
+ forceOwningTab: boolean, schemaVersion?: number);
137
138
  /**
138
139
  * Attempt to start IndexedDb persistence.
139
140
  *
@@ -207,10 +208,11 @@ export declare class IndexedDbPersistence implements Persistence {
207
208
  */
208
209
  getActiveClients(): Promise<ClientId[]>;
209
210
  get started(): boolean;
210
- getMutationQueue(user: User): IndexedDbMutationQueue;
211
+ getMutationQueue(user: User, indexManager: IndexManager): IndexedDbMutationQueue;
211
212
  getTargetCache(): IndexedDbTargetCache;
212
213
  getRemoteDocumentCache(): IndexedDbRemoteDocumentCache;
213
- getIndexManager(): IndexManager;
214
+ getIndexManager(user: User): IndexManager;
215
+ getDocumentOverlayCache(user: User): DocumentOverlayCache;
214
216
  getBundleCache(): BundleCache;
215
217
  runTransaction<T>(action: string, mode: PersistenceTransactionMode, transactionOperation: (transaction: PersistenceTransaction) => PersistencePromise<T>): Promise<T>;
216
218
  /**
@@ -17,7 +17,6 @@
17
17
  import { SnapshotVersion } from '../core/snapshot_version';
18
18
  import { MutableDocumentMap } from '../model/collections';
19
19
  import { MutableDocument } from '../model/document';
20
- import { IndexManager } from './index_manager';
21
20
  import { LocalSerializer } from './local_serializer';
22
21
  import { PersistencePromise } from './persistence_promise';
23
22
  import { PersistenceTransaction } from './persistence_transaction';
@@ -28,13 +27,8 @@ export interface DocumentSizeEntry {
28
27
  }
29
28
  export interface IndexedDbRemoteDocumentCache extends RemoteDocumentCache {
30
29
  }
31
- /**
32
- * Creates a new IndexedDbRemoteDocumentCache.
33
- *
34
- * @param serializer - The document serializer.
35
- * @param indexManager - The query indexes that need to be maintained.
36
- */
37
- export declare function newIndexedDbRemoteDocumentCache(serializer: LocalSerializer, indexManager: IndexManager): IndexedDbRemoteDocumentCache;
30
+ /** Creates a new IndexedDbRemoteDocumentCache. */
31
+ export declare function newIndexedDbRemoteDocumentCache(serializer: LocalSerializer): IndexedDbRemoteDocumentCache;
38
32
  /**
39
33
  * Returns the set of documents that have changed since the specified read
40
34
  * time.
@@ -20,7 +20,7 @@ import { ResourcePath } from '../model/path';
20
20
  import { BundledQuery } from '../protos/firestore_bundle_proto';
21
21
  import { Document as ProtoDocument, DocumentsTarget as ProtoDocumentsTarget, QueryTarget as ProtoQueryTarget, Write as ProtoWrite } from '../protos/firestore_proto_api';
22
22
  import { EncodedResourcePath } from './encoded_resource_path';
23
- export declare const INDEXING_SCHEMA_VERSION = 12;
23
+ export declare const INDEXING_SCHEMA_VERSION = 13;
24
24
  /**
25
25
  * Schema Version for the Web client:
26
26
  * 1. Initial version including Mutation Queue, Query Cache, and Remote
@@ -39,7 +39,8 @@ export declare const INDEXING_SCHEMA_VERSION = 12;
39
39
  * an auto-incrementing ID. This is required for Index-Free queries.
40
40
  * 10. Rewrite the canonical IDs to the explicit Protobuf-based format.
41
41
  * 11. Add bundles and named_queries for bundle support.
42
- * 12. Add indexing support.
42
+ * 12. Add document overlays.
43
+ * 13. Add indexing support.
43
44
  */
44
45
  export declare const SCHEMA_VERSION: number;
45
46
  /**
@@ -809,22 +810,38 @@ export declare class DbNamedQuery {
809
810
  export declare type DbIndexConfigurationKey = number;
810
811
  /** An object representing the global configuration for a field index. */
811
812
  export declare class DbIndexConfiguration {
812
- /** The index id for this entry. */
813
- indexId: number;
813
+ /**
814
+ * The index id for this entry. Undefined for indexes that are not yet
815
+ * persisted.
816
+ */
817
+ indexId: number | undefined;
814
818
  /** The collection group this index belongs to. */
815
819
  collectionGroup: string;
816
820
  /** The fields to index for this index. */
817
- fields: [[name: string, kind: IndexKind]];
821
+ fields: Array<[name: string, kind: IndexKind]>;
818
822
  /** Name of the IndexedDb object store. */
819
823
  static store: string;
820
824
  static keyPath: string;
825
+ /**
826
+ * An index that provides access to the index configurations by collection
827
+ * group.
828
+ *
829
+ * PORTING NOTE: iOS and Android maintain this index in-memory, but this is
830
+ * not possible here as the Web client supports concurrent access to
831
+ * persistence via multi-tab.
832
+ */
833
+ static collectionGroupIndex: string;
834
+ static collectionGroupIndexPath: string;
821
835
  constructor(
822
- /** The index id for this entry. */
823
- indexId: number,
836
+ /**
837
+ * The index id for this entry. Undefined for indexes that are not yet
838
+ * persisted.
839
+ */
840
+ indexId: number | undefined,
824
841
  /** The collection group this index belongs to. */
825
842
  collectionGroup: string,
826
843
  /** The fields to index for this index. */
827
- fields: [[name: string, kind: IndexKind]]);
844
+ fields: Array<[name: string, kind: IndexKind]>);
828
845
  }
829
846
  /** The key for each index state consisting of the index id and its user id. */
830
847
  export declare type DbIndexStateKey = [number, string];
@@ -860,6 +877,16 @@ export declare class DbIndexState {
860
877
  /** Name of the IndexedDb object store. */
861
878
  static store: string;
862
879
  static keyPath: string[];
880
+ /**
881
+ * An index that provides access to documents in a collection sorted by last
882
+ * update time. Used by the backfiller.
883
+ *
884
+ * PORTING NOTE: iOS and Android maintain this index in-memory, but this is
885
+ * not possible here as the Web client supports concurrent access to
886
+ * persistence via multi-tab.
887
+ */
888
+ static sequenceNumberIndex: string;
889
+ static sequenceNumberIndexPath: string[];
863
890
  constructor(
864
891
  /** The index id for this entry. */
865
892
  indexId: number,
@@ -893,7 +920,7 @@ export declare class DbIndexState {
893
920
  */
894
921
  export declare type DbIndexEntryKey = [number, string, Uint8Array, Uint8Array, string];
895
922
  /** An object that stores the encoded entries for all documents and fields. */
896
- export declare class DbIndexEntries {
923
+ export declare class DbIndexEntry {
897
924
  /** The index id for this entry. */
898
925
  indexId: number;
899
926
  /** The user id for this entry. */
@@ -919,6 +946,48 @@ export declare class DbIndexEntries {
919
946
  /** The document key this entry points to. */
920
947
  documentKey: EncodedResourcePath);
921
948
  }
949
+ export declare type DbDocumentOverlayKey = [
950
+ string,
951
+ string,
952
+ string
953
+ ];
954
+ /**
955
+ * An object representing a document overlay.
956
+ */
957
+ export declare class DbDocumentOverlay {
958
+ /** The user ID to whom this overlay belongs. */
959
+ userId: string;
960
+ /** The path to the collection that contains the document. */
961
+ collectionPath: string;
962
+ /** The ID (key) of the document within the collection. */
963
+ documentId: string;
964
+ /** The collection group to which the document belongs. */
965
+ collectionGroup: string;
966
+ /** The largest batch ID that's been applied for this overlay. */
967
+ largestBatchId: number;
968
+ /** The overlay mutation. */
969
+ overlayMutation: ProtoWrite;
970
+ /** Name of the IndexedDb object store. */
971
+ static store: string;
972
+ static keyPath: string[];
973
+ static collectionPathOverlayIndex: string;
974
+ static collectionPathOverlayIndexPath: string[];
975
+ static collectionGroupOverlayIndex: string;
976
+ static collectionGroupOverlayIndexPath: string[];
977
+ constructor(
978
+ /** The user ID to whom this overlay belongs. */
979
+ userId: string,
980
+ /** The path to the collection that contains the document. */
981
+ collectionPath: string,
982
+ /** The ID (key) of the document within the collection. */
983
+ documentId: string,
984
+ /** The collection group to which the document belongs. */
985
+ collectionGroup: string,
986
+ /** The largest batch ID that's been applied for this overlay. */
987
+ largestBatchId: number,
988
+ /** The overlay mutation. */
989
+ overlayMutation: ProtoWrite);
990
+ }
922
991
  export declare const V1_STORES: string[];
923
992
  export declare const V3_STORES: string[];
924
993
  export declare const V4_STORES: string[];
@@ -926,9 +995,12 @@ export declare const V6_STORES: string[];
926
995
  export declare const V8_STORES: string[];
927
996
  export declare const V11_STORES: string[];
928
997
  export declare const V12_STORES: string[];
998
+ export declare const V13_STORES: string[];
929
999
  /**
930
1000
  * The list of all default IndexedDB stores used throughout the SDK. This is
931
1001
  * used when creating transactions so that access across all stores is done
932
1002
  * atomically.
933
1003
  */
934
1004
  export declare const ALL_STORES: string[];
1005
+ /** Returns the object stores for the provided schema. */
1006
+ export declare function getObjectStores(schemaVersion: number): string[];
@@ -69,5 +69,4 @@ export declare class LocalDocumentsView {
69
69
  private getDocumentsMatchingDocumentQuery;
70
70
  private getDocumentsMatchingCollectionGroupQuery;
71
71
  private getDocumentsMatchingCollectionQuery;
72
- private addMissingBaseDocuments;
73
72
  }
@@ -14,14 +14,18 @@
14
14
  * See the License for the specific language governing permissions and
15
15
  * limitations under the License.
16
16
  */
17
+ import { User } from '../auth/user';
17
18
  import { BundleMetadata, NamedQuery } from '../core/bundle';
18
19
  import { Query } from '../core/query';
19
20
  import { SnapshotVersion } from '../core/snapshot_version';
20
21
  import { MutableDocument } from '../model/document';
22
+ import { DocumentKey } from '../model/document_key';
23
+ import { FieldIndex, IndexOffset } from '../model/field_index';
21
24
  import { MutationBatch } from '../model/mutation_batch';
22
- import { BundleMetadata as ProtoBundleMetadata, NamedQuery as ProtoNamedQuery, BundledQuery as ProtoBundledQuery } from '../protos/firestore_bundle_proto';
25
+ import { Overlay } from '../model/overlay';
26
+ import { BundledQuery as ProtoBundledQuery, BundleMetadata as ProtoBundleMetadata, NamedQuery as ProtoNamedQuery } from '../protos/firestore_bundle_proto';
23
27
  import { JsonProtoSerializer } from '../remote/serializer';
24
- import { DbBundle, DbMutationBatch, DbNamedQuery, DbRemoteDocument, DbTarget, DbTimestampKey } from './indexeddb_schema';
28
+ import { DbBundle, DbDocumentOverlay, DbDocumentOverlayKey, DbIndexConfiguration, DbIndexState, DbMutationBatch, DbNamedQuery, DbRemoteDocument, DbTarget, DbTimestampKey } from './indexeddb_schema';
25
29
  import { TargetData } from './target_data';
26
30
  /** Serializer for values stored in the LocalStore. */
27
31
  export declare class LocalSerializer {
@@ -61,3 +65,15 @@ export declare function fromBundledQuery(bundledQuery: ProtoBundledQuery): Query
61
65
  export declare function fromProtoNamedQuery(namedQuery: ProtoNamedQuery): NamedQuery;
62
66
  /** Decodes a BundleMetadata proto into a BundleMetadata object. */
63
67
  export declare function fromBundleMetadata(metadata: ProtoBundleMetadata): BundleMetadata;
68
+ /** Encodes a DbDocumentOverlay object to an Overlay model object. */
69
+ export declare function fromDbDocumentOverlay(localSerializer: LocalSerializer, dbDocumentOverlay: DbDocumentOverlay): Overlay;
70
+ /** Decodes an Overlay model object into a DbDocumentOverlay object. */
71
+ export declare function toDbDocumentOverlay(localSerializer: LocalSerializer, userId: string, overlay: Overlay): DbDocumentOverlay;
72
+ /**
73
+ * Returns the DbDocumentOverlayKey corresponding to the given user and
74
+ * document key.
75
+ */
76
+ export declare function toDbDocumentOverlayKey(userId: string, docKey: DocumentKey): DbDocumentOverlayKey;
77
+ export declare function toDbIndexConfiguration(index: FieldIndex): DbIndexConfiguration;
78
+ export declare function fromDbIndexConfiguration(index: DbIndexConfiguration, state: DbIndexState | null): FieldIndex;
79
+ export declare function toDbIndexState(indexId: number, user: User, sequenceNumber: number, offset: IndexOffset): DbIndexState;
@@ -0,0 +1,37 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2022 Google LLC
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ import { DocumentKeySet } from '../model/collections';
18
+ import { DocumentKey } from '../model/document_key';
19
+ import { Mutation } from '../model/mutation';
20
+ import { Overlay } from '../model/overlay';
21
+ import { ResourcePath } from '../model/path';
22
+ import { DocumentOverlayCache } from './document_overlay_cache';
23
+ import { PersistencePromise } from './persistence_promise';
24
+ import { PersistenceTransaction } from './persistence_transaction';
25
+ /**
26
+ * An in-memory implementation of DocumentOverlayCache.
27
+ */
28
+ export declare class MemoryDocumentOverlayCache implements DocumentOverlayCache {
29
+ private overlays;
30
+ private overlayByBatchId;
31
+ getOverlay(transaction: PersistenceTransaction, key: DocumentKey): PersistencePromise<Overlay | null>;
32
+ saveOverlays(transaction: PersistenceTransaction, largestBatchId: number, overlays: Map<DocumentKey, Mutation>): PersistencePromise<void>;
33
+ removeOverlaysForBatchId(transaction: PersistenceTransaction, documentKeys: DocumentKeySet, batchId: number): PersistencePromise<void>;
34
+ getOverlaysForCollection(transaction: PersistenceTransaction, collection: ResourcePath, sinceBatchId: number): PersistencePromise<Map<DocumentKey, Overlay>>;
35
+ getOverlaysForCollectionGroup(transaction: PersistenceTransaction, collectionGroup: string, sinceBatchId: number, count: number): PersistencePromise<Map<DocumentKey, Overlay>>;
36
+ private saveOverlay;
37
+ }
@@ -19,6 +19,8 @@ import { ListenSequenceNumber, TargetId } from '../core/types';
19
19
  import { Document } from '../model/document';
20
20
  import { DocumentKey } from '../model/document_key';
21
21
  import { JsonProtoSerializer } from '../remote/serializer';
22
+ import { DocumentOverlayCache } from './document_overlay_cache';
23
+ import { IndexManager } from './index_manager';
22
24
  import { ActiveTargets, LruDelegate, LruGarbageCollector, LruParams } from './lru_garbage_collector';
23
25
  import { MemoryBundleCache } from './memory_bundle_cache';
24
26
  import { MemoryIndexManager } from './memory_index_manager';
@@ -43,6 +45,7 @@ export declare class MemoryPersistence implements Persistence {
43
45
  */
44
46
  private readonly indexManager;
45
47
  private mutationQueues;
48
+ private overlays;
46
49
  private readonly remoteDocumentCache;
47
50
  private readonly targetCache;
48
51
  private readonly bundleCache;
@@ -62,8 +65,9 @@ export declare class MemoryPersistence implements Persistence {
62
65
  get started(): boolean;
63
66
  setDatabaseDeletedListener(): void;
64
67
  setNetworkEnabled(): void;
65
- getIndexManager(): MemoryIndexManager;
66
- getMutationQueue(user: User): MutationQueue;
68
+ getIndexManager(user: User): MemoryIndexManager;
69
+ getDocumentOverlayCache(user: User): DocumentOverlayCache;
70
+ getMutationQueue(user: User, indexManager: IndexManager): MutationQueue;
67
71
  getTargetCache(): MemoryTargetCache;
68
72
  getRemoteDocumentCache(): MemoryRemoteDocumentCache;
69
73
  getBundleCache(): MemoryBundleCache;
@@ -16,7 +16,6 @@
16
16
  */
17
17
  import { Document } from '../model/document';
18
18
  import { DocumentKey } from '../model/document_key';
19
- import { IndexManager } from './index_manager';
20
19
  import { PersistencePromise } from './persistence_promise';
21
20
  import { PersistenceTransaction } from './persistence_transaction';
22
21
  import { RemoteDocumentCache } from './remote_document_cache';
@@ -27,9 +26,8 @@ export interface MemoryRemoteDocumentCache extends RemoteDocumentCache {
27
26
  /**
28
27
  * Creates a new memory-only RemoteDocumentCache.
29
28
  *
30
- * @param indexManager - A class that manages collection group indices.
31
29
  * @param sizer - Used to assess the size of a document. For eager GC, this is
32
30
  * expected to just return 0 to avoid unnecessarily doing the work of
33
31
  * calculating the size.
34
32
  */
35
- export declare function newMemoryRemoteDocumentCache(indexManager: IndexManager, sizer: DocumentSizer): MemoryRemoteDocumentCache;
33
+ export declare function newMemoryRemoteDocumentCache(sizer: DocumentSizer): MemoryRemoteDocumentCache;
@@ -18,6 +18,7 @@ import { User } from '../auth/user';
18
18
  import { TargetId } from '../core/types';
19
19
  import { DocumentKey } from '../model/document_key';
20
20
  import { BundleCache } from './bundle_cache';
21
+ import { DocumentOverlayCache } from './document_overlay_cache';
21
22
  import { IndexManager } from './index_manager';
22
23
  import { LocalStore } from './local_store';
23
24
  import { MutationQueue } from './mutation_queue';
@@ -140,7 +141,7 @@ export interface Persistence {
140
141
  * extent possible (e.g. in the case of uid switching from
141
142
  * sally=&gt;jack=&gt;sally, sally's mutation queue will be preserved).
142
143
  */
143
- getMutationQueue(user: User): MutationQueue;
144
+ getMutationQueue(user: User, indexManager: IndexManager): MutationQueue;
144
145
  /**
145
146
  * Returns a TargetCache representing the persisted cache of targets.
146
147
  *
@@ -173,7 +174,12 @@ export interface Persistence {
173
174
  * this is called. In particular, the memory-backed implementation does this
174
175
  * to emulate the persisted implementation to the extent possible.
175
176
  */
176
- getIndexManager(): IndexManager;
177
+ getIndexManager(user: User): IndexManager;
178
+ /**
179
+ * Returns a DocumentOverlayCache representing the documents that are mutated
180
+ * locally.
181
+ */
182
+ getDocumentOverlayCache(user: User): DocumentOverlayCache;
177
183
  /**
178
184
  * Performs an operation inside a persistence transaction. Any reads or writes
179
185
  * against persistence must be performed within a transaction. Writes will be
@@ -14,11 +14,12 @@
14
14
  * See the License for the specific language governing permissions and
15
15
  * limitations under the License.
16
16
  */
17
- import { Query } from '../core/query';
18
17
  import { SnapshotVersion } from '../core/snapshot_version';
19
18
  import { DocumentKeySet, MutableDocumentMap } from '../model/collections';
20
19
  import { MutableDocument } from '../model/document';
21
20
  import { DocumentKey } from '../model/document_key';
21
+ import { ResourcePath } from '../model/path';
22
+ import { IndexManager } from './index_manager';
22
23
  import { PersistencePromise } from './persistence_promise';
23
24
  import { PersistenceTransaction } from './persistence_transaction';
24
25
  import { RemoteDocumentChangeBuffer } from './remote_document_change_buffer';
@@ -30,6 +31,8 @@ import { RemoteDocumentChangeBuffer } from './remote_document_change_buffer';
30
31
  * documents that are known to not exist.
31
32
  */
32
33
  export interface RemoteDocumentCache {
34
+ /** Sets the index manager to use for managing the collectionGroup index. */
35
+ setIndexManager(indexManager: IndexManager): void;
33
36
  /**
34
37
  * Looks up an entry in the cache.
35
38
  *
@@ -47,19 +50,14 @@ export interface RemoteDocumentCache {
47
50
  */
48
51
  getEntries(transaction: PersistenceTransaction, documentKeys: DocumentKeySet): PersistencePromise<MutableDocumentMap>;
49
52
  /**
50
- * Executes a query against the cached Document entries.
53
+ * Returns the documents from the provided collection.
51
54
  *
52
- * Implementations may return extra documents if convenient. The results
53
- * should be re-filtered by the consumer before presenting them to the user.
54
- *
55
- * Cached NoDocument entries have no bearing on query results.
56
- *
57
- * @param query - The query to match documents against.
55
+ * @param collection - The collection to read.
58
56
  * @param sinceReadTime - If not set to SnapshotVersion.min(), return only
59
57
  * documents that have been read since this snapshot version (exclusive).
60
58
  * @returns The set of matching documents.
61
59
  */
62
- getDocumentsMatchingQuery(transaction: PersistenceTransaction, query: Query, sinceReadTime: SnapshotVersion): PersistencePromise<MutableDocumentMap>;
60
+ getAll(transaction: PersistenceTransaction, collection: ResourcePath, sinceReadTime: SnapshotVersion): PersistencePromise<MutableDocumentMap>;
63
61
  /**
64
62
  * Provides access to add or update the contents of the cache. The buffer
65
63
  * handles proper size accounting for the change.
@@ -36,6 +36,7 @@ export declare class SimpleDbTransaction {
36
36
  constructor(action: string, transaction: IDBTransaction);
37
37
  get completionPromise(): Promise<void>;
38
38
  abort(error?: Error): void;
39
+ maybeCommit(): void;
39
40
  /**
40
41
  * Returns a SimpleDbStore<KeyType, ValueType> for the specified store. All
41
42
  * operations performed on the SimpleDbStore happen within the context of this
@@ -26,6 +26,10 @@ export declare class DocumentKey {
26
26
  static empty(): DocumentKey;
27
27
  /** Returns true if the document is in the specified collectionId. */
28
28
  hasCollectionId(collectionId: string): boolean;
29
+ /** Returns the collection group (i.e. the name of the parent collection) for this key. */
30
+ getCollectionGroup(): string;
31
+ /** Returns the fully qualified path to the parent collection. */
32
+ getCollectionPath(): ResourcePath;
29
33
  isEqual(other: DocumentKey | null): boolean;
30
34
  toString(): string;
31
35
  static comparator(k1: DocumentKey, k2: DocumentKey): number;
@@ -43,7 +43,7 @@ export declare class FieldIndex {
43
43
  /** The collection ID this index applies to. */
44
44
  readonly collectionGroup: string;
45
45
  /** The field segments for this index. */
46
- readonly segments: IndexSegment[];
46
+ readonly fields: IndexSegment[];
47
47
  /** Shows how up-to-date the index is for the current user. */
48
48
  readonly indexState: IndexState;
49
49
  /** An ID for an index that has not yet been added to persistence. */
@@ -57,7 +57,7 @@ export declare class FieldIndex {
57
57
  /** The collection ID this index applies to. */
58
58
  collectionGroup: string,
59
59
  /** The field segments for this index. */
60
- segments: IndexSegment[],
60
+ fields: IndexSegment[],
61
61
  /** Shows how up-to-date the index is for the current user. */
62
62
  indexState: IndexState);
63
63
  }