aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Source/Public/FIRDocumentSnapshot.h
blob: e8e73c93e63b4d8061535bad5d06e2df13221fe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*
 * 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 <Foundation/Foundation.h>

@class FIRDocumentReference;
@class FIRSnapshotMetadata;

NS_ASSUME_NONNULL_BEGIN

/**
 * Controls the return value for server timestamps that have not yet been set to
 * their final value.
 */
typedef NS_ENUM(NSInteger, FIRServerTimestampBehavior) {
  /**
   * Return a local estimates for `FieldValue.serverTimestamp()`
   * fields that have not yet been set to their final value. This estimate will
   * likely differ from the final value and may cause these pending values to
   * change once the server result becomes available.
   */
  FIRServerTimestampBehaviorEstimate,

  /**
   * Return the previous value for `FieldValue.serverTimestamp()` fields that
   * have not yet been set to their final value.
   */
  FIRServerTimestampBehaviorPrevious,

  /**
   * Return `NSNull` for `FieldValue.serverTimestamp()` fields that have not yet
   * been set to their final value.
   */
  FIRServerTimestampBehaviorNone
};

/**
 * Options that configure how data is retrieved from a `DocumentSnapshot`
 * (e.g. the desired behavior for server timestamps that have not yet been set
 * to their final value).
 */
NS_SWIFT_NAME(SnapshotOptions)
@interface FIRSnapshotOptions : NSObject

/**   */
- (instancetype)init __attribute__((unavailable("FIRSnapshotOptions cannot be created directly.")));

/**
 * If set, controls the return value for `FieldValue.serverTimestamp()`
 * fields that have not yet been set to their final value.
 *
 * If omitted, `NSNull` will be returned by default.
 *
 * @return The created `FIRSnapshotOptions` object.
 */
+ (instancetype)serverTimestampBehavior:(FIRServerTimestampBehavior)serverTimestampBehavior;

@end

/**
 * A `FIRDocumentSnapshot` contains data read from a document in your Firestore database. The data
 * can be extracted with the `data` property or by using subscript syntax to access a specific
 * field.
 */
NS_SWIFT_NAME(DocumentSnapshot)
@interface FIRDocumentSnapshot : NSObject

/**   */
- (instancetype)init
    __attribute__((unavailable("FIRDocumentSnapshot cannot be created directly.")));

/** True if the document exists. */
@property(nonatomic, assign, readonly) BOOL exists;

/** A `FIRDocumentReference` to the document location. */
@property(nonatomic, strong, readonly) FIRDocumentReference *reference;

/** The ID of the document for which this `FIRDocumentSnapshot` contains data. */
@property(nonatomic, copy, readonly) NSString *documentID;

/** Metadata about this snapshot concerning its source and if it has local modifications. */
@property(nonatomic, strong, readonly) FIRSnapshotMetadata *metadata;

/**
 * Retrieves all fields in the document as an `NSDictionary`.
 *
 * Server-provided timestamps that have not yet been set to their final value
 * will be returned as `NSNull`. You can use `dataWithOptions()` to configure this
 * behavior.
 *
 * @return An `NSDictionary` containing all fields in the document.
 */
- (NSDictionary<NSString *, id> *)data;

/**
 * Retrieves all fields in the document as a `Dictionary`.
 *
 * @param options `SnapshotOptions` to configure how data is returned from the
 *     snapshot (e.g. the desired behavior for server timestamps that have not
 *     yet been set to their final value).
 * @return A `Dictionary` containing all fields in the document.
 */
- (NSDictionary<NSString *, id> *)dataWithOptions:(FIRSnapshotOptions *)options;

/**
 * Retrieves a specific field from the document.
 *
 * The timestamps that have not yet been set to their final value
 * will be returned as `NSNull`. The can use `get(_:options:)` to
 * configure this behavior.
 *
 * @param field The field to retrieve.
 * @return The value contained in the field or `nil` if the field doesn't exist.
 */
- (nullable id)valueForField:(id)field NS_SWIFT_NAME(get(_:));

/**
 * Retrieves a specific field from the document.
 *
 * The timestamps that have not yet been set to their final value
 * will be returned as `NSNull`. The can use `get(_:options:)` to
 * configure this behavior.
 *
 * @param field The field to retrieve.
 * @param options `SnapshotOptions` to configure how data is returned from the
 *     snapshot (e.g. the desired behavior for server timestamps that have not
 *     yet been set to their final value).
 * @return The value contained in the field or `nil` if the field doesn't exist.
 */
// clang-format off
- (nullable id)valueForField:(id)field
                     options:(FIRSnapshotOptions *)options
               NS_SWIFT_NAME(get(_:options:));
// clang-format on

/**
 * Retrieves a specific field from the document.
 *
 * @param key The field to retrieve.
 *
 * @return The value contained in the field or `nil` if the field doesn't exist.
 */
- (nullable id)objectForKeyedSubscript:(id)key;

@end

NS_ASSUME_NONNULL_END