| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- /*
- * 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 FSTDocument;
- @class FSTDocumentKey;
- @class FSTFieldPath;
- @class FSTFieldValue;
- @class FSTResourcePath;
- NS_ASSUME_NONNULL_BEGIN
- /**
- * FSTRelationFilterOperator is a value relation operator that can be used to filter documents.
- * It is similar to NSPredicateOperatorType, but only has operators supported by Firestore.
- */
- typedef NS_ENUM(NSInteger, FSTRelationFilterOperator) {
- FSTRelationFilterOperatorLessThan = 0,
- FSTRelationFilterOperatorLessThanOrEqual,
- FSTRelationFilterOperatorEqual,
- FSTRelationFilterOperatorGreaterThanOrEqual,
- FSTRelationFilterOperatorGreaterThan,
- };
- /** Interface used for all query filters. */
- @protocol FSTFilter <NSObject>
- /** Returns the field the Filter operates over. */
- - (FSTFieldPath *)field;
- /** Returns true if a document matches the filter. */
- - (BOOL)matchesDocument:(FSTDocument *)document;
- /** A unique ID identifying the filter; used when serializing queries. */
- - (NSString *)canonicalID;
- @end
- /**
- * FSTRelationFilter is a document filter constraint on a query with a single relation operator.
- * It is similar to NSComparisonPredicate, except customized for Firestore semantics.
- */
- @interface FSTRelationFilter : NSObject <FSTFilter>
- /**
- * Creates a new constraint for filtering documents.
- *
- * @param field A path to a field in the document to filter on. The LHS of the expression.
- * @param filterOperator The binary operator to apply.
- * @param value A constant value to compare @a field to. The RHS of the expression.
- * @return A new instance of FSTRelationFilter.
- */
- + (instancetype)filterWithField:(FSTFieldPath *)field
- filterOperator:(FSTRelationFilterOperator)filterOperator
- value:(FSTFieldValue *)value;
- - (instancetype)init NS_UNAVAILABLE;
- /** Returns YES if the receiver is not an equality relation. */
- - (BOOL)isInequality;
- /** The left hand side of the relation. A path into a document field. */
- @property(nonatomic, strong, readonly) FSTFieldPath *field;
- /** The type of equality/inequality operator to use in the relation. */
- @property(nonatomic, assign, readonly) FSTRelationFilterOperator filterOperator;
- /** The right hand side of the relation. A constant value to compare to. */
- @property(nonatomic, strong, readonly) FSTFieldValue *value;
- @end
- /** Filter that matches NULL values. */
- @interface FSTNullFilter : NSObject <FSTFilter>
- - (instancetype)init NS_UNAVAILABLE;
- - (instancetype)initWithField:(FSTFieldPath *)field NS_DESIGNATED_INITIALIZER;
- @end
- /** Filter that matches NAN values. */
- @interface FSTNanFilter : NSObject <FSTFilter>
- - (instancetype)init NS_UNAVAILABLE;
- - (instancetype)initWithField:(FSTFieldPath *)field NS_DESIGNATED_INITIALIZER;
- @end
- /** FSTSortOrder is a field and direction to order query results by. */
- @interface FSTSortOrder : NSObject <NSCopying>
- /** Creates a new sort order with the given field and direction. */
- + (instancetype)sortOrderWithFieldPath:(FSTFieldPath *)fieldPath ascending:(BOOL)ascending;
- - (instancetype)init NS_UNAVAILABLE;
- /** Compares two documents based on the field and direction of this sort order. */
- - (NSComparisonResult)compareDocument:(FSTDocument *)document1 toDocument:(FSTDocument *)document2;
- /** The direction of the sort. */
- @property(nonatomic, assign, readonly, getter=isAscending) BOOL ascending;
- /** The field to sort by. */
- @property(nonatomic, strong, readonly) FSTFieldPath *field;
- @end
- /**
- * FSTBound represents a bound of a query.
- *
- * The bound is specified with the given components representing a position and whether it's just
- * before or just after the position (relative to whatever the query order is).
- *
- * The position represents a logical index position for a query. It's a prefix of values for
- * the (potentially implicit) order by clauses of a query.
- *
- * FSTBound provides a function to determine whether a document comes before or after a bound.
- * This is influenced by whether the position is just before or just after the provided values.
- */
- @interface FSTBound : NSObject <NSCopying>
- /**
- * Creates a new bound.
- *
- * @param position The position relative to the sort order.
- * @param isBefore Whether this bound is just before or just after the position.
- */
- + (instancetype)boundWithPosition:(NSArray<FSTFieldValue *> *)position isBefore:(BOOL)isBefore;
- /** Whether this bound is just before or just after the provided position */
- @property(nonatomic, assign, readonly, getter=isBefore) BOOL before;
- /** The index position of this bound represented as an array of field values. */
- @property(nonatomic, strong, readonly) NSArray<FSTFieldValue *> *position;
- /** Returns YES if a document comes before a bound using the provided sort order. */
- - (BOOL)sortsBeforeDocument:(FSTDocument *)document
- usingSortOrder:(NSArray<FSTSortOrder *> *)sortOrder;
- @end
- /** FSTQuery represents the internal structure of a Firestore query. */
- @interface FSTQuery : NSObject <NSCopying>
- - (id)init NS_UNAVAILABLE;
- /**
- * Initializes a query with all of its components directly.
- */
- - (instancetype)initWithPath:(FSTResourcePath *)path
- filterBy:(NSArray<id<FSTFilter>> *)filters
- orderBy:(NSArray<FSTSortOrder *> *)sortOrders
- limit:(NSInteger)limit
- startAt:(nullable FSTBound *)startAtBound
- endAt:(nullable FSTBound *)endAtBound NS_DESIGNATED_INITIALIZER;
- /**
- * Creates and returns a new FSTQuery.
- *
- * @param path The path to the collection to be queried over.
- * @return A new instance of FSTQuery.
- */
- + (instancetype)queryWithPath:(FSTResourcePath *)path;
- /**
- * Returns the list of ordering constraints that were explicitly requested on the query by the
- * user.
- *
- * Note that the actual query performed might add additional sort orders to match the behavior
- * of the backend.
- */
- - (NSArray<FSTSortOrder *> *)explicitSortOrders;
- /**
- * Returns the full list of ordering constraints on the query.
- *
- * This might include additional sort orders added implicitly to match the backend behavior.
- */
- - (NSArray<FSTSortOrder *> *)sortOrders;
- /**
- * Creates a new FSTQuery with an additional filter.
- *
- * @param filter The predicate to filter by.
- * @return the new FSTQuery.
- */
- - (instancetype)queryByAddingFilter:(id<FSTFilter>)filter;
- /**
- * Creates a new FSTQuery with an additional ordering constraint.
- *
- * @param sortOrder The key and direction to order by.
- * @return the new FSTQuery.
- */
- - (instancetype)queryByAddingSortOrder:(FSTSortOrder *)sortOrder;
- /**
- * Returns a new FSTQuery with the given limit on how many results can be returned.
- *
- * @param limit The maximum number of results to return. If @a limit <= 0, behavior is unspecified.
- * If @a limit == NSNotFound, then no limit is applied.
- */
- - (instancetype)queryBySettingLimit:(NSInteger)limit;
- /**
- * Creates a new FSTQuery starting at the provided bound.
- *
- * @param bound The bound to start this query at.
- * @return the new FSTQuery.
- */
- - (instancetype)queryByAddingStartAt:(FSTBound *)bound;
- /**
- * Creates a new FSTQuery ending at the provided bound.
- *
- * @param bound The bound to end this query at.
- * @return the new FSTQuery.
- */
- - (instancetype)queryByAddingEndAt:(FSTBound *)bound;
- /** Returns YES if the receiver is query for a specific document. */
- - (BOOL)isDocumentQuery;
- /** Returns YES if the @a document matches the constraints of the receiver. */
- - (BOOL)matchesDocument:(FSTDocument *)document;
- /** Returns a comparator that will sort documents according to the receiver's sort order. */
- - (NSComparator)comparator;
- /** Returns the field of the first filter on the receiver that's an inequality, or nil if none. */
- - (FSTFieldPath *_Nullable)inequalityFilterField;
- /** Returns the first field in an order-by constraint, or nil if none. */
- - (FSTFieldPath *_Nullable)firstSortOrderField;
- /** The base path of the query. */
- @property(nonatomic, strong, readonly) FSTResourcePath *path;
- /** The filters on the documents returned by the query. */
- @property(nonatomic, strong, readonly) NSArray<id<FSTFilter>> *filters;
- /** The maximum number of results to return, or NSNotFound if no limit. */
- @property(nonatomic, assign, readonly) NSInteger limit;
- /**
- * A canonical string identifying the query. Two different instances of equivalent queries will
- * return the same canonicalID.
- */
- @property(nonatomic, strong, readonly) NSString *canonicalID;
- /** An optional bound to start the query at. */
- @property(nonatomic, nullable, strong, readonly) FSTBound *startAt;
- /** An optional bound to end the query at. */
- @property(nonatomic, nullable, strong, readonly) FSTBound *endAt;
- @end
- NS_ASSUME_NONNULL_END
|