| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /*
- * 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>
- #include <vector>
- #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/model/field_mask.h"
- #include "Firestore/core/src/firebase/firestore/model/field_transform.h"
- #include "Firestore/core/src/firebase/firestore/model/precondition.h"
- @class FSTObjectValue;
- @class FSTFieldValue;
- @class FSTMutation;
- NS_ASSUME_NONNULL_BEGIN
- /** The result of parsing document data (e.g. for a setData call). */
- @interface FSTParsedSetData : NSObject
- - (instancetype)init NS_UNAVAILABLE;
- - (instancetype)initWithData:(FSTObjectValue *)data
- fieldTransforms:
- (std::vector<firebase::firestore::model::FieldTransform>)fieldTransforms
- NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithData:(FSTObjectValue *)data
- fieldMask:(firebase::firestore::model::FieldMask)fieldMask
- fieldTransforms:
- (std::vector<firebase::firestore::model::FieldTransform>)fieldTransforms
- NS_DESIGNATED_INITIALIZER;
- - (const std::vector<firebase::firestore::model::FieldTransform> &)fieldTransforms;
- @property(nonatomic, strong, readonly) FSTObjectValue *data;
- @property(nonatomic, assign, readonly) BOOL isPatch;
- /**
- * Converts the parsed document data into 1 or 2 mutations (depending on whether there are any
- * field transforms) using the specified document key and precondition.
- */
- - (NSArray<FSTMutation *> *)mutationsWithKey:(const firebase::firestore::model::DocumentKey &)key
- precondition:
- (const firebase::firestore::model::Precondition &)precondition;
- @end
- /** The result of parsing "update" data (i.e. for an updateData call). */
- @interface FSTParsedUpdateData : NSObject
- - (instancetype)init NS_UNAVAILABLE;
- - (instancetype)initWithData:(FSTObjectValue *)data
- fieldMask:(firebase::firestore::model::FieldMask)fieldMask
- fieldTransforms:
- (std::vector<firebase::firestore::model::FieldTransform>)fieldTransforms
- NS_DESIGNATED_INITIALIZER;
- - (const firebase::firestore::model::FieldMask &)fieldMask;
- - (const std::vector<firebase::firestore::model::FieldTransform> &)fieldTransforms;
- @property(nonatomic, strong, readonly) FSTObjectValue *data;
- /**
- * Converts the parsed update data into 1 or 2 mutations (depending on whether there are any
- * field transforms) using the specified document key and precondition.
- */
- - (NSArray<FSTMutation *> *)mutationsWithKey:(const firebase::firestore::model::DocumentKey &)key
- precondition:
- (const firebase::firestore::model::Precondition &)precondition;
- @end
- /**
- * An internal representation of FIRDocumentReference, representing a key in a specific database.
- * This is necessary because keys assume a database from context (usually the current one).
- * FSTDocumentKeyReference binds a key to a specific databaseID.
- *
- * TODO(b/64160088): Make DocumentKey aware of the specific databaseID it is tied to.
- */
- @interface FSTDocumentKeyReference : NSObject
- - (instancetype)init NS_UNAVAILABLE;
- - (instancetype)initWithKey:(firebase::firestore::model::DocumentKey)key
- databaseID:(const firebase::firestore::model::DatabaseId *)databaseID
- NS_DESIGNATED_INITIALIZER;
- - (const firebase::firestore::model::DocumentKey &)key;
- // Does not own the DatabaseId instance.
- @property(nonatomic, assign, readonly) const firebase::firestore::model::DatabaseId *databaseID;
- @end
- /**
- * An interface that allows arbitrary pre-converting of user data.
- *
- * Returns the converted value (can return back the input to act as a no-op).
- */
- typedef id _Nullable (^FSTPreConverterBlock)(id _Nullable);
- /**
- * Helper for parsing raw user input (provided via the API) into internal model classes.
- */
- @interface FSTUserDataConverter : NSObject
- - (instancetype)init NS_UNAVAILABLE;
- - (instancetype)initWithDatabaseID:(const firebase::firestore::model::DatabaseId *)databaseID
- preConverter:(FSTPreConverterBlock)preConverter NS_DESIGNATED_INITIALIZER;
- /** Parse document data from a non-merge setData call.*/
- - (FSTParsedSetData *)parsedSetData:(id)input;
- /** Parse document data from a setData call with `merge:YES`. */
- - (FSTParsedSetData *)parsedMergeData:(id)input fieldMask:(nullable NSArray<id> *)fieldMask;
- /** Parse update data from an updateData call. */
- - (FSTParsedUpdateData *)parsedUpdateData:(id)input;
- /** Parse a "query value" (e.g. value in a where filter or a value in a cursor bound). */
- - (FSTFieldValue *)parsedQueryValue:(id)input;
- @end
- NS_ASSUME_NONNULL_END
|