| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- /*
- * Copyright 2017 Google
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #import "Firestore/Source/Core/FSTViewSnapshot.h"
- #include <string>
- #include <utility>
- #import "Firestore/Source/Core/FSTQuery.h"
- #import "Firestore/Source/Model/FSTDocument.h"
- #import "Firestore/Source/Model/FSTDocumentSet.h"
- #include "Firestore/core/src/firebase/firestore/immutable/sorted_map.h"
- #include "Firestore/core/src/firebase/firestore/model/document_key.h"
- #include "Firestore/core/src/firebase/firestore/util/hard_assert.h"
- #include "Firestore/core/src/firebase/firestore/util/string_apple.h"
- #include "Firestore/core/src/firebase/firestore/util/string_format.h"
- #include "absl/strings/str_join.h"
- using firebase::firestore::immutable::SortedMap;
- using firebase::firestore::model::DocumentKey;
- using firebase::firestore::util::WrapNSString;
- using firebase::firestore::util::StringFormat;
- NS_ASSUME_NONNULL_BEGIN
- #pragma mark - FSTDocumentViewChange
- @interface FSTDocumentViewChange ()
- + (instancetype)changeWithDocument:(FSTDocument *)document type:(FSTDocumentViewChangeType)type;
- - (instancetype)initWithDocument:(FSTDocument *)document
- type:(FSTDocumentViewChangeType)type NS_DESIGNATED_INITIALIZER;
- @end
- @implementation FSTDocumentViewChange
- + (instancetype)changeWithDocument:(FSTDocument *)document type:(FSTDocumentViewChangeType)type {
- return [[FSTDocumentViewChange alloc] initWithDocument:document type:type];
- }
- - (instancetype)initWithDocument:(FSTDocument *)document type:(FSTDocumentViewChangeType)type {
- self = [super init];
- if (self) {
- _document = document;
- _type = type;
- }
- return self;
- }
- - (BOOL)isEqual:(id)other {
- if (self == other) {
- return YES;
- }
- if (![other isKindOfClass:[FSTDocumentViewChange class]]) {
- return NO;
- }
- FSTDocumentViewChange *otherChange = (FSTDocumentViewChange *)other;
- return [self.document isEqual:otherChange.document] && self.type == otherChange.type;
- }
- - (NSString *)description {
- return [NSString
- stringWithFormat:@"<FSTDocumentViewChange type:%ld doc:%@>", (long)self.type, self.document];
- }
- @end
- #pragma mark - FSTDocumentViewChangeSet
- @implementation FSTDocumentViewChangeSet {
- /** The set of all changes tracked so far, with redundant changes merged. */
- SortedMap<DocumentKey, FSTDocumentViewChange *> _changeMap;
- }
- + (instancetype)changeSet {
- return [[FSTDocumentViewChangeSet alloc] init];
- }
- - (NSString *)description {
- std::string result = absl::StrJoin(
- _changeMap, ",",
- [](std::string *out, const std::pair<DocumentKey, FSTDocumentViewChange *> &kv) {
- out->append(StringFormat("%s: %s", kv.first, kv.second));
- });
- return WrapNSString(std::string{"{"} + result + "}");
- }
- - (void)addChange:(FSTDocumentViewChange *)change {
- const DocumentKey &key = change.document.key;
- auto oldChangeIter = _changeMap.find(key);
- if (oldChangeIter == _changeMap.end()) {
- _changeMap = _changeMap.insert(key, change);
- return;
- }
- FSTDocumentViewChange *oldChange = oldChangeIter->second;
- // Merge the new change with the existing change.
- if (change.type != FSTDocumentViewChangeTypeAdded &&
- oldChange.type == FSTDocumentViewChangeTypeMetadata) {
- _changeMap = _changeMap.insert(key, change);
- } else if (change.type == FSTDocumentViewChangeTypeMetadata &&
- oldChange.type != FSTDocumentViewChangeTypeRemoved) {
- FSTDocumentViewChange *newChange = [FSTDocumentViewChange changeWithDocument:change.document
- type:oldChange.type];
- _changeMap = _changeMap.insert(key, newChange);
- } else if (change.type == FSTDocumentViewChangeTypeModified &&
- oldChange.type == FSTDocumentViewChangeTypeModified) {
- FSTDocumentViewChange *newChange =
- [FSTDocumentViewChange changeWithDocument:change.document
- type:FSTDocumentViewChangeTypeModified];
- _changeMap = _changeMap.insert(key, newChange);
- } else if (change.type == FSTDocumentViewChangeTypeModified &&
- oldChange.type == FSTDocumentViewChangeTypeAdded) {
- FSTDocumentViewChange *newChange =
- [FSTDocumentViewChange changeWithDocument:change.document
- type:FSTDocumentViewChangeTypeAdded];
- _changeMap = _changeMap.insert(key, newChange);
- } else if (change.type == FSTDocumentViewChangeTypeRemoved &&
- oldChange.type == FSTDocumentViewChangeTypeAdded) {
- _changeMap = _changeMap.erase(key);
- } else if (change.type == FSTDocumentViewChangeTypeRemoved &&
- oldChange.type == FSTDocumentViewChangeTypeModified) {
- FSTDocumentViewChange *newChange =
- [FSTDocumentViewChange changeWithDocument:oldChange.document
- type:FSTDocumentViewChangeTypeRemoved];
- _changeMap = _changeMap.insert(key, newChange);
- } else if (change.type == FSTDocumentViewChangeTypeAdded &&
- oldChange.type == FSTDocumentViewChangeTypeRemoved) {
- FSTDocumentViewChange *newChange =
- [FSTDocumentViewChange changeWithDocument:change.document
- type:FSTDocumentViewChangeTypeModified];
- _changeMap = _changeMap.insert(key, newChange);
- } else {
- // This includes these cases, which don't make sense:
- // Added -> Added
- // Removed -> Removed
- // Modified -> Added
- // Removed -> Modified
- // Metadata -> Added
- // Removed -> Metadata
- HARD_FAIL("Unsupported combination of changes: %s after %s", change.type, oldChange.type);
- }
- }
- - (NSArray<FSTDocumentViewChange *> *)changes {
- NSMutableArray<FSTDocumentViewChange *> *changes = [NSMutableArray array];
- for (const auto &kv : _changeMap) {
- FSTDocumentViewChange *change = kv.second;
- [changes addObject:change];
- }
- return changes;
- }
- @end
- #pragma mark - FSTViewSnapshot
- @implementation FSTViewSnapshot
- - (instancetype)initWithQuery:(FSTQuery *)query
- documents:(FSTDocumentSet *)documents
- oldDocuments:(FSTDocumentSet *)oldDocuments
- documentChanges:(NSArray<FSTDocumentViewChange *> *)documentChanges
- fromCache:(BOOL)fromCache
- mutatedKeys:(DocumentKeySet)mutatedKeys
- syncStateChanged:(BOOL)syncStateChanged
- excludesMetadataChanges:(BOOL)excludesMetadataChanges {
- self = [super init];
- if (self) {
- _query = query;
- _documents = documents;
- _oldDocuments = oldDocuments;
- _documentChanges = documentChanges;
- _fromCache = fromCache;
- _mutatedKeys = mutatedKeys;
- _syncStateChanged = syncStateChanged;
- _excludesMetadataChanges = excludesMetadataChanges;
- }
- return self;
- }
- + (instancetype)snapshotForInitialDocuments:(FSTDocumentSet *)documents
- query:(FSTQuery *)query
- mutatedKeys:(DocumentKeySet)mutatedKeys
- fromCache:(BOOL)fromCache
- excludesMetadataChanges:(BOOL)excludesMetadataChanges {
- NSMutableArray<FSTDocumentViewChange *> *viewChanges = [NSMutableArray array];
- for (FSTDocument *doc in documents.documentEnumerator) {
- [viewChanges
- addObject:[FSTDocumentViewChange changeWithDocument:doc
- type:FSTDocumentViewChangeTypeAdded]];
- }
- return [[FSTViewSnapshot alloc]
- initWithQuery:query
- documents:documents
- oldDocuments:[FSTDocumentSet documentSetWithComparator:query.comparator]
- documentChanges:viewChanges
- fromCache:fromCache
- mutatedKeys:mutatedKeys
- syncStateChanged:YES
- excludesMetadataChanges:excludesMetadataChanges];
- }
- - (BOOL)hasPendingWrites {
- return _mutatedKeys.size() != 0;
- }
- - (NSString *)description {
- return [NSString
- stringWithFormat:@"<FSTViewSnapshot query:%@ documents:%@ oldDocument:%@ changes:%@ "
- "fromCache:%@ mutatedKeys:%zu syncStateChanged:%@ "
- "excludesMetadataChanges%@>",
- self.query, self.documents, self.oldDocuments, self.documentChanges,
- (self.fromCache ? @"YES" : @"NO"),
- static_cast<size_t>(self.mutatedKeys.size()),
- (self.syncStateChanged ? @"YES" : @"NO"),
- (self.excludesMetadataChanges ? @"YES" : @"NO")];
- }
- - (BOOL)isEqual:(id)object {
- if (self == object) {
- return YES;
- } else if (![object isKindOfClass:[FSTViewSnapshot class]]) {
- return NO;
- }
- FSTViewSnapshot *other = object;
- return [self.query isEqual:other.query] && [self.documents isEqual:other.documents] &&
- [self.oldDocuments isEqual:other.oldDocuments] &&
- [self.documentChanges isEqualToArray:other.documentChanges] &&
- self.fromCache == other.fromCache && self.mutatedKeys == other.mutatedKeys &&
- self.syncStateChanged == other.syncStateChanged &&
- self.excludesMetadataChanges == other.excludesMetadataChanges;
- }
- - (NSUInteger)hash {
- // Note: We are omitting `mutatedKeys` from the hash, since we don't have a straightforward
- // way to compute its hash value. Since `FSTViewSnapshot` is currently not stored in an
- // NSDictionary, this has no side effects.
- NSUInteger result = [self.query hash];
- result = 31 * result + [self.documents hash];
- result = 31 * result + [self.oldDocuments hash];
- result = 31 * result + [self.documentChanges hash];
- result = 31 * result + (self.fromCache ? 1231 : 1237);
- result = 31 * result + (self.syncStateChanged ? 1231 : 1237);
- result = 31 * result + (self.excludesMetadataChanges ? 1231 : 1237);
- return result;
- }
- @end
- NS_ASSUME_NONNULL_END
|