| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- /*
- * 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/Model/FSTDocument.h"
- #include <utility>
- #import "Firestore/Source/Util/FSTClasses.h"
- #include "Firestore/core/src/firebase/firestore/model/document.h"
- #include "Firestore/core/src/firebase/firestore/model/document_key.h"
- #include "Firestore/core/src/firebase/firestore/model/field_path.h"
- #include "Firestore/core/src/firebase/firestore/model/field_value.h"
- #include "Firestore/core/src/firebase/firestore/util/comparison.h"
- #include "Firestore/core/src/firebase/firestore/util/delayed_constructor.h"
- #include "Firestore/core/src/firebase/firestore/util/hard_assert.h"
- #include "Firestore/core/src/firebase/firestore/util/hashing.h"
- #include "Firestore/core/src/firebase/firestore/util/string_apple.h"
- #include "absl/types/optional.h"
- namespace util = firebase::firestore::util;
- using firebase::firestore::model::Document;
- using firebase::firestore::model::DocumentKey;
- using firebase::firestore::model::DocumentState;
- using firebase::firestore::model::FieldPath;
- using firebase::firestore::model::FieldValue;
- using firebase::firestore::model::ObjectValue;
- using firebase::firestore::model::SnapshotVersion;
- NS_ASSUME_NONNULL_BEGIN
- @interface FSTMaybeDocument ()
- - (instancetype)initWithKey:(DocumentKey)key
- version:(SnapshotVersion)version NS_DESIGNATED_INITIALIZER;
- @end
- @implementation FSTMaybeDocument {
- DocumentKey _key;
- SnapshotVersion _version;
- }
- - (instancetype)initWithKey:(DocumentKey)key version:(SnapshotVersion)version {
- self = [super init];
- if (self) {
- _key = std::move(key);
- _version = std::move(version);
- }
- return self;
- }
- - (bool)hasPendingWrites {
- @throw FSTAbstractMethodException(); // NOLINT
- }
- - (id)copyWithZone:(NSZone *_Nullable)zone {
- // All document types are immutable
- return self;
- }
- - (const DocumentKey &)key {
- return _key;
- }
- - (const SnapshotVersion &)version {
- return _version;
- }
- @end
- @implementation FSTDocument {
- DocumentState _documentState;
- util::DelayedConstructor<ObjectValue> _data;
- }
- + (instancetype)documentWithData:(ObjectValue)data
- key:(DocumentKey)key
- version:(SnapshotVersion)version
- state:(DocumentState)state {
- return [[FSTDocument alloc] initWithData:std::move(data)
- key:std::move(key)
- version:std::move(version)
- state:state];
- }
- + (instancetype)documentWithData:(ObjectValue)data
- key:(DocumentKey)key
- version:(SnapshotVersion)version
- state:(DocumentState)state
- proto:(GCFSDocument *)proto {
- return [[FSTDocument alloc] initWithData:std::move(data)
- key:std::move(key)
- version:std::move(version)
- state:state
- proto:proto];
- }
- - (instancetype)initWithData:(ObjectValue)data
- key:(DocumentKey)key
- version:(SnapshotVersion)version
- state:(DocumentState)state {
- self = [super initWithKey:std::move(key) version:std::move(version)];
- if (self) {
- _data.Init(std::move(data));
- _documentState = state;
- _proto = nil;
- }
- return self;
- }
- - (instancetype)initWithData:(ObjectValue)data
- key:(DocumentKey)key
- version:(SnapshotVersion)version
- state:(DocumentState)state
- proto:(GCFSDocument *)proto {
- self = [super initWithKey:std::move(key) version:std::move(version)];
- if (self) {
- _data.Init(std::move(data));
- _documentState = state;
- _proto = proto;
- }
- return self;
- }
- - (bool)hasLocalMutations {
- return _documentState == DocumentState::kLocalMutations;
- }
- - (bool)hasCommittedMutations {
- return _documentState == DocumentState::kCommittedMutations;
- }
- - (bool)hasPendingWrites {
- return self.hasLocalMutations || self.hasCommittedMutations;
- }
- - (const ObjectValue &)data {
- return *_data;
- }
- - (BOOL)isEqual:(id)other {
- if (other == self) {
- return YES;
- }
- if (![other isKindOfClass:[FSTDocument class]]) {
- return NO;
- }
- FSTDocument *otherDoc = other;
- return self.key == otherDoc.key && self.version == otherDoc.version &&
- _documentState == otherDoc->_documentState && self.data == otherDoc.data;
- }
- - (NSUInteger)hash {
- return util::Hash(self.key, self.version, self.data, static_cast<unsigned long>(_documentState));
- }
- - (NSString *)description {
- return [NSString stringWithFormat:@"<FSTDocument: key:%s version:%s documentState:%ld data:%s>",
- self.key.ToString().c_str(),
- self.version.timestamp().ToString().c_str(),
- (long)_documentState, self.data.ToString().c_str()];
- }
- - (absl::optional<FieldValue>)fieldForPath:(const FieldPath &)path {
- return _data->Get(path);
- }
- @end
- @implementation FSTDeletedDocument {
- bool _hasCommittedMutations;
- }
- + (instancetype)documentWithKey:(DocumentKey)key
- version:(SnapshotVersion)version
- hasCommittedMutations:(bool)committedMutations {
- FSTDeletedDocument *deletedDocument = [[FSTDeletedDocument alloc] initWithKey:std::move(key)
- version:std::move(version)];
- if (deletedDocument) {
- deletedDocument->_hasCommittedMutations = committedMutations;
- }
- return deletedDocument;
- }
- - (bool)hasCommittedMutations {
- return _hasCommittedMutations;
- }
- - (bool)hasPendingWrites {
- return self.hasCommittedMutations;
- }
- - (BOOL)isEqual:(id)other {
- if (other == self) {
- return YES;
- }
- if (![other isKindOfClass:[FSTDeletedDocument class]]) {
- return NO;
- }
- FSTDeletedDocument *otherDoc = other;
- return self.key == otherDoc.key && self.version == otherDoc.version &&
- _hasCommittedMutations == otherDoc->_hasCommittedMutations;
- }
- - (NSUInteger)hash {
- NSUInteger result = self.key.Hash();
- result = result * 31 + self.version.Hash();
- result = result * 31 + (_hasCommittedMutations ? 1 : 0);
- return result;
- }
- - (NSString *)description {
- return [NSString
- stringWithFormat:@"<FSTDeletedDocument: key:%s version:%s committedMutations:%d>",
- self.key.ToString().c_str(), self.version.timestamp().ToString().c_str(),
- _hasCommittedMutations];
- }
- @end
- @implementation FSTUnknownDocument
- + (instancetype)documentWithKey:(DocumentKey)key version:(SnapshotVersion)version {
- return [[FSTUnknownDocument alloc] initWithKey:std::move(key) version:std::move(version)];
- }
- - (bool)hasPendingWrites {
- return true;
- }
- - (BOOL)isEqual:(id)other {
- if (other == self) {
- return YES;
- }
- if (![other isKindOfClass:[FSTUnknownDocument class]]) {
- return NO;
- }
- FSTDocument *otherDoc = other;
- return self.key == otherDoc.key && self.version == otherDoc.version;
- }
- - (NSUInteger)hash {
- NSUInteger result = self.key.Hash();
- result = result * 31 + self.version.Hash();
- return result;
- }
- - (NSString *)description {
- return [NSString stringWithFormat:@"<FSTUnknownDocument: key:%s version:%s>",
- self.key.ToString().c_str(),
- self.version.timestamp().ToString().c_str()];
- }
- @end
- NS_ASSUME_NONNULL_END
|