@firebase/firestore 3.4.4-canary.f5ac47fb1 → 3.4.5
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.
- package/CHANGELOG.md +12 -0
- package/dist/firestore/src/api/credentials.d.ts +1 -0
- package/dist/firestore/src/index/index_byte_encoder.d.ts +18 -1
- package/dist/firestore/src/index/index_entry.d.ts +26 -0
- package/dist/firestore/src/local/document_overlay_cache.d.ts +72 -0
- package/dist/firestore/src/local/indexeddb_document_overlay_cache.d.ts +45 -0
- package/dist/firestore/src/local/indexeddb_index_manager.d.ts +29 -2
- package/dist/firestore/src/local/indexeddb_persistence.d.ts +6 -4
- package/dist/firestore/src/local/indexeddb_remote_document_cache.d.ts +2 -8
- package/dist/firestore/src/local/indexeddb_schema.d.ts +83 -9
- package/dist/firestore/src/local/local_documents_view.d.ts +0 -1
- package/dist/firestore/src/local/local_serializer.d.ts +18 -2
- package/dist/firestore/src/local/memory_document_overlay_cache.d.ts +37 -0
- package/dist/firestore/src/local/memory_persistence.d.ts +6 -2
- package/dist/firestore/src/local/memory_remote_document_cache.d.ts +1 -3
- package/dist/firestore/src/local/persistence.d.ts +8 -2
- package/dist/firestore/src/local/remote_document_cache.d.ts +7 -9
- package/dist/firestore/src/model/document_key.d.ts +5 -0
- package/dist/firestore/src/model/field_index.d.ts +2 -2
- package/dist/firestore/src/model/overlay.d.ts +32 -0
- package/dist/firestore/src/model/target_index_matcher.d.ts +70 -0
- package/dist/firestore/src/platform/node/grpc_connection.d.ts +2 -2
- package/dist/firestore/src/platform/node/load_protos.d.ts +2 -2
- package/dist/firestore/src/util/sorted_set.d.ts +18 -0
- package/dist/firestore/test/unit/local/counting_query_engine.d.ts +3 -3
- package/dist/firestore/test/unit/local/document_overlay_cache.test.d.ts +1 -0
- package/dist/firestore/test/unit/local/persistence_test_helpers.d.ts +1 -0
- package/dist/firestore/test/unit/local/test_document_overlay_cache.d.ts +38 -0
- package/dist/firestore/test/unit/local/test_index_manager.d.ts +11 -0
- package/dist/firestore/test/unit/local/test_remote_document_cache.d.ts +4 -2
- package/dist/firestore/test/unit/local/test_remote_document_change_buffer.d.ts +1 -1
- package/dist/firestore/test/unit/model/target_index_matcher.test.d.ts +17 -0
- package/dist/index.esm2017.js +4367 -3517
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +4226 -3437
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +1519 -242
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.node.mjs +1501 -245
- package/dist/index.node.mjs.map +1 -1
- package/dist/index.rn.js +4355 -3509
- package/dist/index.rn.js.map +1 -1
- package/dist/internal.d.ts +84 -12
- package/dist/lite/firestore/src/api/credentials.d.ts +1 -0
- package/dist/lite/firestore/src/index/index_byte_encoder.d.ts +18 -1
- package/dist/lite/firestore/src/index/index_entry.d.ts +26 -0
- package/dist/lite/firestore/src/local/document_overlay_cache.d.ts +72 -0
- package/dist/lite/firestore/src/local/indexeddb_document_overlay_cache.d.ts +45 -0
- package/dist/lite/firestore/src/local/indexeddb_index_manager.d.ts +29 -2
- package/dist/lite/firestore/src/local/indexeddb_persistence.d.ts +6 -4
- package/dist/lite/firestore/src/local/indexeddb_remote_document_cache.d.ts +2 -8
- package/dist/lite/firestore/src/local/indexeddb_schema.d.ts +83 -9
- package/dist/lite/firestore/src/local/local_documents_view.d.ts +0 -1
- package/dist/lite/firestore/src/local/local_serializer.d.ts +18 -2
- package/dist/lite/firestore/src/local/memory_document_overlay_cache.d.ts +37 -0
- package/dist/lite/firestore/src/local/memory_persistence.d.ts +6 -2
- package/dist/lite/firestore/src/local/memory_remote_document_cache.d.ts +1 -3
- package/dist/lite/firestore/src/local/persistence.d.ts +8 -2
- package/dist/lite/firestore/src/local/remote_document_cache.d.ts +7 -9
- package/dist/lite/firestore/src/model/document_key.d.ts +5 -0
- package/dist/lite/firestore/src/model/field_index.d.ts +2 -2
- package/dist/lite/firestore/src/model/overlay.d.ts +32 -0
- package/dist/lite/firestore/src/model/target_index_matcher.d.ts +70 -0
- package/dist/lite/firestore/src/platform/node/grpc_connection.d.ts +2 -2
- package/dist/lite/firestore/src/platform/node/load_protos.d.ts +2 -2
- package/dist/lite/firestore/src/util/sorted_set.d.ts +18 -0
- package/dist/lite/firestore/test/unit/local/counting_query_engine.d.ts +3 -3
- package/dist/lite/firestore/test/unit/local/document_overlay_cache.test.d.ts +1 -0
- package/dist/lite/firestore/test/unit/local/persistence_test_helpers.d.ts +1 -0
- package/dist/lite/firestore/test/unit/local/test_document_overlay_cache.d.ts +38 -0
- package/dist/lite/firestore/test/unit/local/test_index_manager.d.ts +11 -0
- package/dist/lite/firestore/test/unit/local/test_remote_document_cache.d.ts +4 -2
- package/dist/lite/firestore/test/unit/local/test_remote_document_change_buffer.d.ts +1 -1
- package/dist/lite/firestore/test/unit/model/target_index_matcher.test.d.ts +17 -0
- package/dist/lite/index.browser.esm2017.js +1121 -1112
- package/dist/lite/index.browser.esm2017.js.map +1 -1
- package/dist/lite/index.browser.esm5.js +60 -48
- package/dist/lite/index.browser.esm5.js.map +1 -1
- package/dist/lite/index.node.cjs.js +13 -2
- package/dist/lite/index.node.cjs.js.map +1 -1
- package/dist/lite/index.node.mjs +13 -2
- package/dist/lite/index.node.mjs.map +1 -1
- package/dist/lite/index.rn.esm2017.js +46 -37
- package/dist/lite/index.rn.esm2017.js.map +1 -1
- package/dist/lite/internal.d.ts +5 -0
- package/dist/lite/packages/firestore/dist/lite/index.browser.esm2017.d.ts +112 -112
- package/dist/lite/packages/firestore/src/api/credentials.d.ts +1 -0
- package/dist/lite/packages/firestore/src/index/index_byte_encoder.d.ts +18 -1
- package/dist/lite/packages/firestore/src/index/index_entry.d.ts +26 -0
- package/dist/lite/packages/firestore/src/local/document_overlay_cache.d.ts +72 -0
- package/dist/lite/packages/firestore/src/local/indexeddb_document_overlay_cache.d.ts +45 -0
- package/dist/lite/packages/firestore/src/local/indexeddb_index_manager.d.ts +29 -2
- package/dist/lite/packages/firestore/src/local/indexeddb_persistence.d.ts +6 -4
- package/dist/lite/packages/firestore/src/local/indexeddb_remote_document_cache.d.ts +2 -8
- package/dist/lite/packages/firestore/src/local/indexeddb_schema.d.ts +83 -9
- package/dist/lite/packages/firestore/src/local/local_documents_view.d.ts +0 -1
- package/dist/lite/packages/firestore/src/local/local_serializer.d.ts +18 -2
- package/dist/lite/packages/firestore/src/local/memory_document_overlay_cache.d.ts +37 -0
- package/dist/lite/packages/firestore/src/local/memory_persistence.d.ts +6 -2
- package/dist/lite/packages/firestore/src/local/memory_remote_document_cache.d.ts +1 -3
- package/dist/lite/packages/firestore/src/local/persistence.d.ts +8 -2
- package/dist/lite/packages/firestore/src/local/remote_document_cache.d.ts +7 -9
- package/dist/lite/packages/firestore/src/model/document_key.d.ts +5 -0
- package/dist/lite/packages/firestore/src/model/field_index.d.ts +2 -2
- package/dist/lite/packages/firestore/src/model/overlay.d.ts +32 -0
- package/dist/lite/packages/firestore/src/model/target_index_matcher.d.ts +70 -0
- package/dist/lite/packages/firestore/src/platform/node/grpc_connection.d.ts +2 -2
- package/dist/lite/packages/firestore/src/platform/node/load_protos.d.ts +2 -2
- package/dist/lite/packages/firestore/src/util/sorted_set.d.ts +18 -0
- package/dist/lite/packages/firestore/test/unit/local/counting_query_engine.d.ts +3 -3
- package/dist/lite/packages/firestore/test/unit/local/document_overlay_cache.test.d.ts +1 -0
- package/dist/lite/packages/firestore/test/unit/local/persistence_test_helpers.d.ts +1 -0
- package/dist/lite/packages/firestore/test/unit/local/test_document_overlay_cache.d.ts +38 -0
- package/dist/lite/packages/firestore/test/unit/local/test_index_manager.d.ts +11 -0
- package/dist/lite/packages/firestore/test/unit/local/test_remote_document_cache.d.ts +4 -2
- package/dist/lite/packages/firestore/test/unit/local/test_remote_document_change_buffer.d.ts +1 -1
- package/dist/lite/packages/firestore/test/unit/model/target_index_matcher.test.d.ts +17 -0
- package/dist/packages/firestore/dist/index.esm2017.d.ts +187 -184
- package/dist/packages/firestore/src/api/credentials.d.ts +1 -0
- package/dist/packages/firestore/src/index/index_byte_encoder.d.ts +18 -1
- package/dist/packages/firestore/src/index/index_entry.d.ts +26 -0
- package/dist/packages/firestore/src/local/document_overlay_cache.d.ts +72 -0
- package/dist/packages/firestore/src/local/indexeddb_document_overlay_cache.d.ts +45 -0
- package/dist/packages/firestore/src/local/indexeddb_index_manager.d.ts +29 -2
- package/dist/packages/firestore/src/local/indexeddb_persistence.d.ts +6 -4
- package/dist/packages/firestore/src/local/indexeddb_remote_document_cache.d.ts +2 -8
- package/dist/packages/firestore/src/local/indexeddb_schema.d.ts +83 -9
- package/dist/packages/firestore/src/local/local_documents_view.d.ts +0 -1
- package/dist/packages/firestore/src/local/local_serializer.d.ts +18 -2
- package/dist/packages/firestore/src/local/memory_document_overlay_cache.d.ts +37 -0
- package/dist/packages/firestore/src/local/memory_persistence.d.ts +6 -2
- package/dist/packages/firestore/src/local/memory_remote_document_cache.d.ts +1 -3
- package/dist/packages/firestore/src/local/persistence.d.ts +8 -2
- package/dist/packages/firestore/src/local/remote_document_cache.d.ts +7 -9
- package/dist/packages/firestore/src/model/document_key.d.ts +5 -0
- package/dist/packages/firestore/src/model/field_index.d.ts +2 -2
- package/dist/packages/firestore/src/model/overlay.d.ts +32 -0
- package/dist/packages/firestore/src/model/target_index_matcher.d.ts +70 -0
- package/dist/packages/firestore/src/platform/node/grpc_connection.d.ts +2 -2
- package/dist/packages/firestore/src/platform/node/load_protos.d.ts +2 -2
- package/dist/packages/firestore/src/util/sorted_set.d.ts +18 -0
- package/dist/packages/firestore/test/unit/local/counting_query_engine.d.ts +3 -3
- package/dist/packages/firestore/test/unit/local/document_overlay_cache.test.d.ts +1 -0
- package/dist/packages/firestore/test/unit/local/persistence_test_helpers.d.ts +1 -0
- package/dist/packages/firestore/test/unit/local/test_document_overlay_cache.d.ts +38 -0
- package/dist/packages/firestore/test/unit/local/test_index_manager.d.ts +11 -0
- package/dist/packages/firestore/test/unit/local/test_remote_document_cache.d.ts +4 -2
- package/dist/packages/firestore/test/unit/local/test_remote_document_change_buffer.d.ts +1 -1
- package/dist/packages/firestore/test/unit/model/target_index_matcher.test.d.ts +17 -0
- package/dist/private.d.ts +79 -12
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @firebase/firestore
|
|
2
2
|
|
|
3
|
+
## 3.4.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`bb8f37c3e`](https://github.com/firebase/firebase-js-sdk/commit/bb8f37c3e83e73876d14fa751cb04ae5e1367394) [#5993](https://github.com/firebase/firebase-js-sdk/pull/5993) - Fixed a bug that caused Firestore streams to get restarted with the same App Check token.
|
|
8
|
+
|
|
9
|
+
* [`f5ac47fb1`](https://github.com/firebase/firebase-js-sdk/commit/f5ac47fb1a44f7b985fcae1d934e1ffb6ba41d67) [#5982](https://github.com/firebase/firebase-js-sdk/pull/5982) - On browsers that support IndexedDB V3, we now invoke `transaction.commit()` to speed up data processing.
|
|
10
|
+
|
|
11
|
+
- [`c1b9cf120`](https://github.com/firebase/firebase-js-sdk/commit/c1b9cf1201807fc177a89c9613c06130524563e4) [#5985](https://github.com/firebase/firebase-js-sdk/pull/5985) - Some database operations now use `IndexedDB.getAll()` on browsers where support is availbe.
|
|
12
|
+
|
|
13
|
+
* [`e9619685b`](https://github.com/firebase/firebase-js-sdk/commit/e9619685b9153f7d6f8767e09e2e1eacc337df76) [#5980](https://github.com/firebase/firebase-js-sdk/pull/5980) - Queries are now send to the backend before the SDK starts local processing, which reduces overall Query latency.
|
|
14
|
+
|
|
3
15
|
## 3.4.4
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -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>;
|
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2021 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 { IndexKind } from '../model/field_index';
|
|
1
18
|
import { DirectionalIndexByteEncoder } from './directional_index_byte_encoder';
|
|
2
19
|
/**
|
|
3
20
|
* Implements `DirectionalIndexByteEncoder` using `OrderedCodeWriter` for the
|
|
@@ -8,7 +25,7 @@ export declare class IndexByteEncoder {
|
|
|
8
25
|
private ascending;
|
|
9
26
|
private descending;
|
|
10
27
|
seed(encodedBytes: Uint8Array): void;
|
|
11
|
-
forKind(kind:
|
|
28
|
+
forKind(kind: IndexKind): DirectionalIndexByteEncoder;
|
|
12
29
|
encodedBytes(): Uint8Array;
|
|
13
30
|
reset(): void;
|
|
14
31
|
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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 { DocumentKey } from '../model/document_key';
|
|
18
|
+
/** Represents an index entry saved by the SDK in persisted storage. */
|
|
19
|
+
export declare class IndexEntry {
|
|
20
|
+
readonly indexId: number;
|
|
21
|
+
readonly documentKey: DocumentKey;
|
|
22
|
+
readonly arrayValue: Uint8Array;
|
|
23
|
+
readonly directionalValue: Uint8Array;
|
|
24
|
+
constructor(indexId: number, documentKey: DocumentKey, arrayValue: Uint8Array, directionalValue: Uint8Array);
|
|
25
|
+
}
|
|
26
|
+
export declare function indexEntryComparator(left: IndexEntry, right: IndexEntry): number;
|
|
@@ -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
|
|
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
|
*
|
|
@@ -46,8 +53,28 @@ export declare class IndexedDbIndexManager implements IndexManager {
|
|
|
46
53
|
deleteFieldIndex(transaction: PersistenceTransaction, index: FieldIndex): PersistencePromise<void>;
|
|
47
54
|
getDocumentsMatchingTarget(transaction: PersistenceTransaction, fieldIndex: FieldIndex, target: Target): PersistencePromise<DocumentKeySet>;
|
|
48
55
|
getFieldIndex(transaction: PersistenceTransaction, target: Target): PersistencePromise<FieldIndex | null>;
|
|
56
|
+
/**
|
|
57
|
+
* Returns the byte encoded form of the directional values in the field index.
|
|
58
|
+
* Returns `null` if the document does not have all fields specified in the
|
|
59
|
+
* index.
|
|
60
|
+
*/
|
|
61
|
+
private encodeDirectionalElements;
|
|
62
|
+
/** Encodes a single value to the ascending index format. */
|
|
63
|
+
private encodeSingleElement;
|
|
49
64
|
getFieldIndexes(transaction: PersistenceTransaction, collectionGroup?: string): PersistencePromise<FieldIndex[]>;
|
|
50
65
|
getNextCollectionGroupToUpdate(transaction: PersistenceTransaction): PersistencePromise<string | null>;
|
|
51
66
|
updateCollectionGroup(transaction: PersistenceTransaction, collectionGroup: string, offset: IndexOffset): PersistencePromise<void>;
|
|
52
67
|
updateIndexEntries(transaction: PersistenceTransaction, documents: DocumentMap): PersistencePromise<void>;
|
|
68
|
+
private addIndexEntry;
|
|
69
|
+
private deleteIndexEntry;
|
|
70
|
+
private getExistingIndexEntries;
|
|
71
|
+
/** Creates the index entries for the given document. */
|
|
72
|
+
private computeIndexEntries;
|
|
73
|
+
/**
|
|
74
|
+
* Updates the index entries for the provided document by deleting entries
|
|
75
|
+
* that are no longer referenced in `newEntries` and adding all newly added
|
|
76
|
+
* entries.
|
|
77
|
+
*/
|
|
78
|
+
private updateEntries;
|
|
79
|
+
private getNextSequenceNumber;
|
|
53
80
|
}
|
|
@@ -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
|
-
|
|
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 =
|
|
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
|
|
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
|
-
/**
|
|
813
|
-
|
|
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: [
|
|
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
|
-
/**
|
|
823
|
-
|
|
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: [
|
|
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
|
|
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. */
|
|
@@ -907,6 +934,8 @@ export declare class DbIndexEntries {
|
|
|
907
934
|
/** Name of the IndexedDb object store. */
|
|
908
935
|
static store: string;
|
|
909
936
|
static keyPath: string[];
|
|
937
|
+
static documentKeyIndex: string;
|
|
938
|
+
static documentKeyIndexPath: string[];
|
|
910
939
|
constructor(
|
|
911
940
|
/** The index id for this entry. */
|
|
912
941
|
indexId: number,
|
|
@@ -919,6 +948,48 @@ export declare class DbIndexEntries {
|
|
|
919
948
|
/** The document key this entry points to. */
|
|
920
949
|
documentKey: EncodedResourcePath);
|
|
921
950
|
}
|
|
951
|
+
export declare type DbDocumentOverlayKey = [
|
|
952
|
+
string,
|
|
953
|
+
string,
|
|
954
|
+
string
|
|
955
|
+
];
|
|
956
|
+
/**
|
|
957
|
+
* An object representing a document overlay.
|
|
958
|
+
*/
|
|
959
|
+
export declare class DbDocumentOverlay {
|
|
960
|
+
/** The user ID to whom this overlay belongs. */
|
|
961
|
+
userId: string;
|
|
962
|
+
/** The path to the collection that contains the document. */
|
|
963
|
+
collectionPath: string;
|
|
964
|
+
/** The ID (key) of the document within the collection. */
|
|
965
|
+
documentId: string;
|
|
966
|
+
/** The collection group to which the document belongs. */
|
|
967
|
+
collectionGroup: string;
|
|
968
|
+
/** The largest batch ID that's been applied for this overlay. */
|
|
969
|
+
largestBatchId: number;
|
|
970
|
+
/** The overlay mutation. */
|
|
971
|
+
overlayMutation: ProtoWrite;
|
|
972
|
+
/** Name of the IndexedDb object store. */
|
|
973
|
+
static store: string;
|
|
974
|
+
static keyPath: string[];
|
|
975
|
+
static collectionPathOverlayIndex: string;
|
|
976
|
+
static collectionPathOverlayIndexPath: string[];
|
|
977
|
+
static collectionGroupOverlayIndex: string;
|
|
978
|
+
static collectionGroupOverlayIndexPath: string[];
|
|
979
|
+
constructor(
|
|
980
|
+
/** The user ID to whom this overlay belongs. */
|
|
981
|
+
userId: string,
|
|
982
|
+
/** The path to the collection that contains the document. */
|
|
983
|
+
collectionPath: string,
|
|
984
|
+
/** The ID (key) of the document within the collection. */
|
|
985
|
+
documentId: string,
|
|
986
|
+
/** The collection group to which the document belongs. */
|
|
987
|
+
collectionGroup: string,
|
|
988
|
+
/** The largest batch ID that's been applied for this overlay. */
|
|
989
|
+
largestBatchId: number,
|
|
990
|
+
/** The overlay mutation. */
|
|
991
|
+
overlayMutation: ProtoWrite);
|
|
992
|
+
}
|
|
922
993
|
export declare const V1_STORES: string[];
|
|
923
994
|
export declare const V3_STORES: string[];
|
|
924
995
|
export declare const V4_STORES: string[];
|
|
@@ -926,9 +997,12 @@ export declare const V6_STORES: string[];
|
|
|
926
997
|
export declare const V8_STORES: string[];
|
|
927
998
|
export declare const V11_STORES: string[];
|
|
928
999
|
export declare const V12_STORES: string[];
|
|
1000
|
+
export declare const V13_STORES: string[];
|
|
929
1001
|
/**
|
|
930
1002
|
* The list of all default IndexedDB stores used throughout the SDK. This is
|
|
931
1003
|
* used when creating transactions so that access across all stores is done
|
|
932
1004
|
* atomically.
|
|
933
1005
|
*/
|
|
934
1006
|
export declare const ALL_STORES: string[];
|
|
1007
|
+
/** Returns the object stores for the provided schema. */
|
|
1008
|
+
export declare function getObjectStores(schemaVersion: number): string[];
|
|
@@ -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 {
|
|
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
|
-
|
|
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(
|
|
33
|
+
export declare function newMemoryRemoteDocumentCache(sizer: DocumentSizer): MemoryRemoteDocumentCache;
|