| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- /*
- * 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 "FIRDocumentSnapshot.h"
- #include <utility>
- #import "FIRFirestoreSettings.h"
- #import "Firestore/Source/API/FIRDocumentReference+Internal.h"
- #import "Firestore/Source/API/FIRFieldPath+Internal.h"
- #import "Firestore/Source/API/FIRFirestore+Internal.h"
- #import "Firestore/Source/API/FIRSnapshotMetadata+Internal.h"
- #import "Firestore/Source/Model/FSTDocument.h"
- #import "Firestore/Source/Model/FSTFieldValue.h"
- #import "Firestore/Source/Util/FSTUsageValidation.h"
- #include "Firestore/core/src/firebase/firestore/model/database_id.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"
- namespace util = firebase::firestore::util;
- using firebase::firestore::model::DatabaseId;
- using firebase::firestore::model::DocumentKey;
- NS_ASSUME_NONNULL_BEGIN
- /** Converts a public FIRServerTimestampBehavior into its internal equivalent. */
- static FSTServerTimestampBehavior InternalServerTimestampBehavor(
- FIRServerTimestampBehavior behavior) {
- switch (behavior) {
- case FIRServerTimestampBehaviorNone:
- return FSTServerTimestampBehaviorNone;
- case FIRServerTimestampBehaviorEstimate:
- return FSTServerTimestampBehaviorEstimate;
- case FIRServerTimestampBehaviorPrevious:
- return FSTServerTimestampBehaviorPrevious;
- default:
- HARD_FAIL("Unexpected server timestamp option: %s", behavior);
- }
- }
- @interface FIRDocumentSnapshot ()
- - (instancetype)initWithFirestore:(FIRFirestore *)firestore
- documentKey:(DocumentKey)documentKey
- document:(nullable FSTDocument *)document
- fromCache:(BOOL)fromCache
- hasPendingWrites:(BOOL)pendingWrites NS_DESIGNATED_INITIALIZER;
- - (const DocumentKey &)internalKey;
- @property(nonatomic, strong, readonly) FIRFirestore *firestore;
- @property(nonatomic, strong, readonly, nullable) FSTDocument *internalDocument;
- @property(nonatomic, assign, readonly) BOOL fromCache;
- @property(nonatomic, assign, readonly) BOOL pendingWrites;
- @end
- @implementation FIRDocumentSnapshot (Internal)
- + (instancetype)snapshotWithFirestore:(FIRFirestore *)firestore
- documentKey:(DocumentKey)documentKey
- document:(nullable FSTDocument *)document
- fromCache:(BOOL)fromCache
- hasPendingWrites:(BOOL)pendingWrites {
- return [[[self class] alloc] initWithFirestore:firestore
- documentKey:std::move(documentKey)
- document:document
- fromCache:fromCache
- hasPendingWrites:pendingWrites];
- }
- @end
- @implementation FIRDocumentSnapshot {
- FIRSnapshotMetadata *_cachedMetadata;
- DocumentKey _internalKey;
- }
- @dynamic metadata;
- - (instancetype)initWithFirestore:(FIRFirestore *)firestore
- documentKey:(DocumentKey)documentKey
- document:(nullable FSTDocument *)document
- fromCache:(BOOL)fromCache
- hasPendingWrites:(BOOL)pendingWrites {
- if (self = [super init]) {
- _firestore = firestore;
- _internalKey = std::move(documentKey);
- _internalDocument = document;
- _fromCache = fromCache;
- _pendingWrites = pendingWrites;
- }
- return self;
- }
- - (const DocumentKey &)internalKey {
- return _internalKey;
- }
- // NSObject Methods
- - (BOOL)isEqual:(nullable id)other {
- if (other == self) return YES;
- // self class could be FIRDocumentSnapshot or subtype. So we compare with base type explicitly.
- if (![other isKindOfClass:[FIRDocumentSnapshot class]]) return NO;
- return [self isEqualToSnapshot:other];
- }
- - (BOOL)isEqualToSnapshot:(nullable FIRDocumentSnapshot *)snapshot {
- if (self == snapshot) return YES;
- if (snapshot == nil) return NO;
- return [self.firestore isEqual:snapshot.firestore] && self.internalKey == snapshot.internalKey &&
- (self.internalDocument == snapshot.internalDocument ||
- [self.internalDocument isEqual:snapshot.internalDocument]) &&
- self.pendingWrites == snapshot.pendingWrites && self.fromCache == snapshot.fromCache;
- }
- - (NSUInteger)hash {
- NSUInteger hash = [self.firestore hash];
- hash = hash * 31u + self.internalKey.Hash();
- hash = hash * 31u + [self.internalDocument hash];
- hash = hash * 31u + (_pendingWrites ? 1 : 0);
- hash = hash * 31u + (self.fromCache ? 1 : 0);
- return hash;
- }
- @dynamic exists;
- - (BOOL)exists {
- return _internalDocument != nil;
- }
- - (FIRDocumentReference *)reference {
- return [FIRDocumentReference referenceWithKey:self.internalKey firestore:self.firestore];
- }
- - (NSString *)documentID {
- return util::WrapNSString(self.internalKey.path().last_segment());
- }
- - (FIRSnapshotMetadata *)metadata {
- if (!_cachedMetadata) {
- _cachedMetadata = [FIRSnapshotMetadata snapshotMetadataWithPendingWrites:_pendingWrites
- fromCache:self.fromCache];
- }
- return _cachedMetadata;
- }
- - (nullable NSDictionary<NSString *, id> *)data {
- return [self dataWithServerTimestampBehavior:FIRServerTimestampBehaviorNone];
- }
- - (nullable NSDictionary<NSString *, id> *)dataWithServerTimestampBehavior:
- (FIRServerTimestampBehavior)serverTimestampBehavior {
- FSTFieldValueOptions *options = [self optionsForServerTimestampBehavior:serverTimestampBehavior];
- return self.internalDocument == nil
- ? nil
- : [self convertedObject:[self.internalDocument data] options:options];
- }
- - (nullable id)valueForField:(id)field {
- return [self valueForField:field serverTimestampBehavior:FIRServerTimestampBehaviorNone];
- }
- - (nullable id)valueForField:(id)field
- serverTimestampBehavior:(FIRServerTimestampBehavior)serverTimestampBehavior {
- FIRFieldPath *fieldPath;
- if ([field isKindOfClass:[NSString class]]) {
- fieldPath = [FIRFieldPath pathWithDotSeparatedString:field];
- } else if ([field isKindOfClass:[FIRFieldPath class]]) {
- fieldPath = field;
- } else {
- FSTThrowInvalidArgument(@"Subscript key must be an NSString or FIRFieldPath.");
- }
- FSTFieldValue *fieldValue = [[self.internalDocument data] valueForPath:fieldPath.internalValue];
- FSTFieldValueOptions *options = [self optionsForServerTimestampBehavior:serverTimestampBehavior];
- return fieldValue == nil ? nil : [self convertedValue:fieldValue options:options];
- }
- - (FSTFieldValueOptions *)optionsForServerTimestampBehavior:
- (FIRServerTimestampBehavior)serverTimestampBehavior {
- FSTServerTimestampBehavior internalBehavior =
- InternalServerTimestampBehavor(serverTimestampBehavior);
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wdeprecated-declarations"
- return [[FSTFieldValueOptions alloc]
- initWithServerTimestampBehavior:internalBehavior
- timestampsInSnapshotsEnabled:self.firestore.settings.timestampsInSnapshotsEnabled];
- #pragma clang diagnostic pop
- }
- - (nullable id)objectForKeyedSubscript:(id)key {
- return [self valueForField:key];
- }
- - (id)convertedValue:(FSTFieldValue *)value options:(FSTFieldValueOptions *)options {
- if ([value isKindOfClass:[FSTObjectValue class]]) {
- return [self convertedObject:(FSTObjectValue *)value options:options];
- } else if ([value isKindOfClass:[FSTArrayValue class]]) {
- return [self convertedArray:(FSTArrayValue *)value options:options];
- } else if ([value isKindOfClass:[FSTReferenceValue class]]) {
- FSTReferenceValue *ref = (FSTReferenceValue *)value;
- const DatabaseId *refDatabase = ref.databaseID;
- const DatabaseId *database = self.firestore.databaseID;
- if (*refDatabase != *database) {
- // TODO(b/32073923): Log this as a proper warning.
- NSLog(@"WARNING: Document %@ contains a document reference within a different database "
- "(%s/%s) which is not supported. It will be treated as a reference within the "
- "current database (%s/%s) instead.",
- self.reference.path, refDatabase->project_id().c_str(),
- refDatabase->database_id().c_str(), database->project_id().c_str(),
- database->database_id().c_str());
- }
- DocumentKey key = [[ref valueWithOptions:options] key];
- return [FIRDocumentReference referenceWithKey:key firestore:self.firestore];
- } else {
- return [value valueWithOptions:options];
- }
- }
- - (NSDictionary<NSString *, id> *)convertedObject:(FSTObjectValue *)objectValue
- options:(FSTFieldValueOptions *)options {
- NSMutableDictionary *result = [NSMutableDictionary dictionary];
- [objectValue.internalValue
- enumerateKeysAndObjectsUsingBlock:^(NSString *key, FSTFieldValue *value, BOOL *stop) {
- result[key] = [self convertedValue:value options:options];
- }];
- return result;
- }
- - (NSArray<id> *)convertedArray:(FSTArrayValue *)arrayValue
- options:(FSTFieldValueOptions *)options {
- NSArray<FSTFieldValue *> *internalValue = arrayValue.internalValue;
- NSMutableArray *result = [NSMutableArray arrayWithCapacity:internalValue.count];
- [internalValue enumerateObjectsUsingBlock:^(id value, NSUInteger idx, BOOL *stop) {
- [result addObject:[self convertedValue:value options:options]];
- }];
- return result;
- }
- @end
- @interface FIRQueryDocumentSnapshot ()
- - (instancetype)initWithFirestore:(FIRFirestore *)firestore
- documentKey:(DocumentKey)documentKey
- document:(FSTDocument *)document
- fromCache:(BOOL)fromCache
- hasPendingWrites:(BOOL)pendingWrites NS_DESIGNATED_INITIALIZER;
- @end
- @implementation FIRQueryDocumentSnapshot
- - (instancetype)initWithFirestore:(FIRFirestore *)firestore
- documentKey:(DocumentKey)documentKey
- document:(FSTDocument *)document
- fromCache:(BOOL)fromCache
- hasPendingWrites:(BOOL)pendingWrites {
- self = [super initWithFirestore:firestore
- documentKey:std::move(documentKey)
- document:document
- fromCache:fromCache
- hasPendingWrites:pendingWrites];
- return self;
- }
- - (NSDictionary<NSString *, id> *)data {
- NSDictionary<NSString *, id> *data = [super data];
- HARD_ASSERT(data, "Document in a QueryDocumentSnapshot should exist");
- return data;
- }
- - (NSDictionary<NSString *, id> *)dataWithServerTimestampBehavior:
- (FIRServerTimestampBehavior)serverTimestampBehavior {
- NSDictionary<NSString *, id> *data =
- [super dataWithServerTimestampBehavior:serverTimestampBehavior];
- HARD_ASSERT(data, "Document in a QueryDocumentSnapshot should exist");
- return data;
- }
- @end
- NS_ASSUME_NONNULL_END
|