RLMResults.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2014 Realm Inc.
  4. //
  5. // Licensed under the Apache License, Version 2.0 (the "License");
  6. // you may not use this file except in compliance with the License.
  7. // You may obtain a copy of the License at
  8. //
  9. // http://www.apache.org/licenses/LICENSE-2.0
  10. //
  11. // Unless required by applicable law or agreed to in writing, software
  12. // distributed under the License is distributed on an "AS IS" BASIS,
  13. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. // See the License for the specific language governing permissions and
  15. // limitations under the License.
  16. //
  17. ////////////////////////////////////////////////////////////////////////////
  18. #import <Realm/RLMCollection.h>
  19. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  20. @class RLMObject;
  21. /**
  22. `RLMResults` is an auto-updating container type in Realm returned from object
  23. queries. It represents the results of the query in the form of a collection of objects.
  24. `RLMResults` can be queried using the same predicates as `RLMObject` and `RLMArray`,
  25. and you can chain queries to further filter results.
  26. `RLMResults` always reflect the current state of the Realm on the current thread,
  27. including during write transactions on the current thread. The one exception to
  28. this is when using `for...in` fast enumeration, which will always enumerate
  29. over the objects which matched the query when the enumeration is begun, even if
  30. some of them are deleted or modified to be excluded by the filter during the
  31. enumeration.
  32. `RLMResults` are lazily evaluated the first time they are accessed; they only
  33. run queries when the result of the query is requested. This means that
  34. chaining several temporary `RLMResults` to sort and filter your data does not
  35. perform any extra work processing the intermediate state.
  36. Once the results have been evaluated or a notification block has been added,
  37. the results are eagerly kept up-to-date, with the work done to keep them
  38. up-to-date done on a background thread whenever possible.
  39. `RLMResults` cannot be directly instantiated.
  40. */
  41. @interface RLMResults<RLMObjectType> : NSObject<RLMCollection, NSFastEnumeration>
  42. #pragma mark - Properties
  43. /**
  44. The number of objects in the results collection.
  45. */
  46. @property (nonatomic, readonly, assign) NSUInteger count;
  47. /**
  48. The type of the objects in the results collection.
  49. */
  50. @property (nonatomic, readonly, assign) RLMPropertyType type;
  51. /**
  52. Indicates whether the objects in the collection can be `nil`.
  53. */
  54. @property (nonatomic, readwrite, getter = isOptional) BOOL optional;
  55. /**
  56. The class name of the objects contained in the results collection.
  57. Will be `nil` if `type` is not RLMPropertyTypeObject.
  58. */
  59. @property (nonatomic, readonly, copy, nullable) NSString *objectClassName;
  60. /**
  61. The Realm which manages this results collection.
  62. */
  63. @property (nonatomic, readonly) RLMRealm *realm;
  64. /**
  65. Indicates if the results collection is no longer valid.
  66. The results collection becomes invalid if `invalidate` is called on the containing `realm`.
  67. An invalidated results collection can be accessed, but will always be empty.
  68. */
  69. @property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated;
  70. #pragma mark - Accessing Objects from an RLMResults
  71. /**
  72. Returns the object at the index specified.
  73. @param index The index to look up.
  74. @return An object of the type contained in the results collection.
  75. */
  76. - (RLMObjectType)objectAtIndex:(NSUInteger)index;
  77. /**
  78. Returns an array containing the objects in the results at the indexes specified by a given index set.
  79. `nil` will be returned if the index set contains an index out of the arrays bounds.
  80. @param indexes The indexes in the results to retrieve objects from.
  81. @return The objects at the specified indexes.
  82. */
  83. - (nullable NSArray<RLMObjectType> *)objectsAtIndexes:(NSIndexSet *)indexes;
  84. /**
  85. Returns the first object in the results collection.
  86. Returns `nil` if called on an empty results collection.
  87. @return An object of the type contained in the results collection.
  88. */
  89. - (nullable RLMObjectType)firstObject;
  90. /**
  91. Returns the last object in the results collection.
  92. Returns `nil` if called on an empty results collection.
  93. @return An object of the type contained in the results collection.
  94. */
  95. - (nullable RLMObjectType)lastObject;
  96. #pragma mark - Querying Results
  97. /**
  98. Returns the index of an object in the results collection.
  99. Returns `NSNotFound` if the object is not found in the results collection.
  100. @param object An object (of the same type as returned from the `objectClassName` selector).
  101. */
  102. - (NSUInteger)indexOfObject:(RLMObjectType)object;
  103. /**
  104. Returns the index of the first object in the results collection matching the predicate.
  105. @param predicateFormat A predicate format string, optionally followed by a variable number of arguments.
  106. @return The index of the object, or `NSNotFound` if the object is not found in the results collection.
  107. */
  108. - (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...;
  109. /// :nodoc:
  110. - (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args;
  111. /**
  112. Returns the index of the first object in the results collection matching the predicate.
  113. @param predicate The predicate with which to filter the objects.
  114. @return The index of the object, or `NSNotFound` if the object is not found in the results collection.
  115. */
  116. - (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate;
  117. /**
  118. Returns all the objects matching the given predicate in the results collection.
  119. @param predicateFormat A predicate format string, optionally followed by a variable number of arguments.
  120. @return An `RLMResults` of objects that match the given predicate.
  121. */
  122. - (RLMResults<RLMObjectType> *)objectsWhere:(NSString *)predicateFormat, ...;
  123. /// :nodoc:
  124. - (RLMResults<RLMObjectType> *)objectsWhere:(NSString *)predicateFormat args:(va_list)args;
  125. /**
  126. Returns all the objects matching the given predicate in the results collection.
  127. @param predicate The predicate with which to filter the objects.
  128. @return An `RLMResults` of objects that match the given predicate.
  129. */
  130. - (RLMResults<RLMObjectType> *)objectsWithPredicate:(NSPredicate *)predicate;
  131. /**
  132. Returns a sorted `RLMResults` from an existing results collection.
  133. @param keyPath The key path to sort by.
  134. @param ascending The direction to sort in.
  135. @return An `RLMResults` sorted by the specified key path.
  136. */
  137. - (RLMResults<RLMObjectType> *)sortedResultsUsingKeyPath:(NSString *)keyPath ascending:(BOOL)ascending;
  138. /**
  139. Returns a sorted `RLMResults` from an existing results collection.
  140. @param properties An array of `RLMSortDescriptor`s to sort by.
  141. @return An `RLMResults` sorted by the specified properties.
  142. */
  143. - (RLMResults<RLMObjectType> *)sortedResultsUsingDescriptors:(NSArray<RLMSortDescriptor *> *)properties;
  144. /**
  145. Returns a distinct `RLMResults` from an existing results collection.
  146. @param keyPaths The key paths used produce distinct results
  147. @return An `RLMResults` made distinct based on the specified key paths
  148. */
  149. - (RLMResults<RLMObjectType> *)distinctResultsUsingKeyPaths:(NSArray<NSString *> *)keyPaths;
  150. #pragma mark - Notifications
  151. /**
  152. Registers a block to be called each time the results collection changes.
  153. The block will be asynchronously called with the initial results collection,
  154. and then called again after each write transaction which changes either any
  155. of the objects in the results, or which objects are in the results.
  156. The `change` parameter will be `nil` the first time the block is called.
  157. For each call after that, it will contain information about
  158. which rows in the results collection were added, removed or modified. If a
  159. write transaction did not modify any objects in the results collection,
  160. the block is not called at all. See the `RLMCollectionChange` documentation for
  161. information on how the changes are reported and an example of updating a
  162. `UITableView`.
  163. The error parameter is present only for backwards compatibility and will always
  164. be `nil`.
  165. At the time when the block is called, the `RLMResults` object will be fully
  166. evaluated and up-to-date, and as long as you do not perform a write transaction
  167. on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will
  168. never perform blocking work.
  169. Notifications are delivered via the standard run loop, and so can't be
  170. delivered while the run loop is blocked by other activity. When
  171. notifications can't be delivered instantly, multiple notifications may be
  172. coalesced into a single notification. This can include the notification
  173. with the initial results. For example, the following code performs a write
  174. transaction immediately after adding the notification block, so there is no
  175. opportunity for the initial notification to be delivered first. As a
  176. result, the initial notification will reflect the state of the Realm after
  177. the write transaction.
  178. RLMResults<Dog *> *results = [Dog allObjects];
  179. NSLog(@"dogs.count: %zu", dogs.count); // => 0
  180. self.token = [results addNotificationBlock:^(RLMResults *dogs,
  181. RLMCollectionChange *changes,
  182. NSError *error) {
  183. // Only fired once for the example
  184. NSLog(@"dogs.count: %zu", dogs.count); // => 1
  185. }];
  186. [realm transactionWithBlock:^{
  187. Dog *dog = [[Dog alloc] init];
  188. dog.name = @"Rex";
  189. [realm addObject:dog];
  190. }];
  191. // end of run loop execution context
  192. You must retain the returned token for as long as you want updates to continue
  193. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  194. @warning This method cannot be called during a write transaction, or when the
  195. containing Realm is read-only.
  196. @param block The block to be called whenever a change occurs.
  197. @return A token which must be held for as long as you want updates to be delivered.
  198. */
  199. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults<RLMObjectType> *_Nullable results,
  200. RLMCollectionChange *_Nullable change,
  201. NSError *_Nullable error))block
  202. __attribute__((warn_unused_result));
  203. /**
  204. Registers a block to be called each time the results collection changes.
  205. The block will be asynchronously called with the initial results collection,
  206. and then called again after each write transaction which changes either any
  207. of the objects in the results, or which objects are in the results.
  208. The `change` parameter will be `nil` the first time the block is called.
  209. For each call after that, it will contain information about
  210. which rows in the results collection were added, removed or modified. If a
  211. write transaction did not modify any objects in the results collection,
  212. the block is not called at all. See the `RLMCollectionChange` documentation for
  213. information on how the changes are reported and an example of updating a
  214. `UITableView`.
  215. The error parameter is present only for backwards compatibility and will always
  216. be `nil`.
  217. At the time when the block is called, the `RLMResults` object will be fully
  218. evaluated and up-to-date, and as long as you do not perform a write transaction
  219. on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will
  220. never perform blocking work.
  221. Notifications are delivered on the given queue. If the queue is blocked and
  222. notifications can't be delivered instantly, multiple notifications may be
  223. coalesced into a single notification.
  224. You must retain the returned token for as long as you want updates to continue
  225. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  226. @warning This method cannot be called when the containing Realm is read-only or frozen.
  227. @warning The queue must be a serial queue.
  228. @param block The block to be called whenever a change occurs.
  229. @param queue The serial queue to deliver notifications to.
  230. @return A token which must be held for as long as you want updates to be delivered.
  231. */
  232. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults<RLMObjectType> *_Nullable results,
  233. RLMCollectionChange *_Nullable change,
  234. NSError *_Nullable error))block
  235. queue:(nullable dispatch_queue_t)queue
  236. __attribute__((warn_unused_result));
  237. /**
  238. Registers a block to be called each time the results collection changes.
  239. The block will be asynchronously called with the initial results collection,
  240. and then called again after each write transaction which changes either any
  241. of the objects in the results, or which objects are in the results.
  242. The `change` parameter will be `nil` the first time the block is called.
  243. For each call after that, it will contain information about
  244. which rows in the results collection were added, removed or modified. If a
  245. write transaction did not modify any objects in the results collection,
  246. the block is not called at all. See the `RLMCollectionChange` documentation for
  247. information on how the changes are reported and an example of updating a
  248. `UITableView`.
  249. The error parameter is present only for backwards compatibility and will always
  250. be `nil`.
  251. At the time when the block is called, the `RLMResults` object will be fully
  252. evaluated and up-to-date, and as long as you do not perform a write transaction
  253. on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will
  254. never perform blocking work.
  255. Notifications are delivered on the given queue. If the queue is blocked and
  256. notifications can't be delivered instantly, multiple notifications may be
  257. coalesced into a single notification.
  258. You must retain the returned token for as long as you want updates to continue
  259. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  260. @warning This method cannot be called when the containing Realm is read-only or frozen.
  261. @warning The queue must be a serial queue.
  262. @param block The block to be called whenever a change occurs.
  263. @param queue The serial queue to deliver notifications to.
  264. @param keyPaths The block will be called for changes occurring on these keypaths. If no
  265. key paths are given, notifications are delivered for every property key path.
  266. @return A token which must be held for as long as you want updates to be delivered.
  267. */
  268. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults<RLMObjectType> *_Nullable results,
  269. RLMCollectionChange *_Nullable change,
  270. NSError *_Nullable error))block
  271. keyPaths:(nullable NSArray<NSString *> *)keyPaths
  272. queue:(nullable dispatch_queue_t)queue
  273. __attribute__((warn_unused_result));
  274. /**
  275. Registers a block to be called each time the results collection changes.
  276. The block will be asynchronously called with the initial results collection,
  277. and then called again after each write transaction which changes either any
  278. of the objects in the results, or which objects are in the results.
  279. The `change` parameter will be `nil` the first time the block is called.
  280. For each call after that, it will contain information about
  281. which rows in the results collection were added, removed or modified. If a
  282. write transaction did not modify any objects in the results collection,
  283. the block is not called at all. See the `RLMCollectionChange` documentation for
  284. information on how the changes are reported and an example of updating a
  285. `UITableView`.
  286. The error parameter is present only for backwards compatibility and will always
  287. be `nil`.
  288. At the time when the block is called, the `RLMResults` object will be fully
  289. evaluated and up-to-date, and as long as you do not perform a write transaction
  290. on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will
  291. never perform blocking work.
  292. Notifications are delivered via the standard run loop, and so can't be
  293. delivered while the run loop is blocked by other activity. When
  294. notifications can't be delivered instantly, multiple notifications may be
  295. coalesced into a single notification. This can include the notification
  296. with the initial results. For example, the following code performs a write
  297. transaction immediately after adding the notification block, so there is no
  298. opportunity for the initial notification to be delivered first. As a
  299. result, the initial notification will reflect the state of the Realm after
  300. the write transaction.
  301. You must retain the returned token for as long as you want updates to continue
  302. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  303. @warning This method cannot be called when the containing Realm is read-only or frozen.
  304. @warning The queue must be a serial queue.
  305. @param block The block to be called whenever a change occurs.
  306. @param keyPaths The block will be called for changes occurring on these keypaths. If no
  307. key paths are given, notifications are delivered for every property key path.
  308. @return A token which must be held for as long as you want updates to be delivered.
  309. */
  310. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults<RLMObjectType> *_Nullable results,
  311. RLMCollectionChange *_Nullable change,
  312. NSError *_Nullable error))block
  313. keyPaths:(nullable NSArray<NSString *> *)keyPaths
  314. __attribute__((warn_unused_result));
  315. #pragma mark - Aggregating Property Values
  316. /**
  317. Returns the minimum (lowest) value of the given property among all the objects
  318. represented by the results collection.
  319. NSNumber *min = [results minOfProperty:@"age"];
  320. @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties.
  321. @param property The property whose minimum value is desired. Only properties of types `int`, `float`, `double`, and
  322. `NSDate` are supported.
  323. @return The minimum value of the property, or `nil` if the Results are empty.
  324. */
  325. - (nullable id)minOfProperty:(NSString *)property;
  326. /**
  327. Returns the maximum (highest) value of the given property among all the objects represented by the results collection.
  328. NSNumber *max = [results maxOfProperty:@"age"];
  329. @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties.
  330. @param property The property whose maximum value is desired. Only properties of
  331. types `int`, `float`, `double`, and `NSDate` are supported.
  332. @return The maximum value of the property, or `nil` if the Results are empty.
  333. */
  334. - (nullable id)maxOfProperty:(NSString *)property;
  335. /**
  336. Returns the sum of the values of a given property over all the objects represented by the results collection.
  337. NSNumber *sum = [results sumOfProperty:@"age"];
  338. @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties.
  339. @param property The property whose values should be summed. Only properties of
  340. types `int`, `float`, and `double` are supported.
  341. @return The sum of the given property.
  342. */
  343. - (NSNumber *)sumOfProperty:(NSString *)property;
  344. /**
  345. Returns the average value of a given property over the objects represented by the results collection.
  346. NSNumber *average = [results averageOfProperty:@"age"];
  347. @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties.
  348. @param property The property whose average value should be calculated. Only
  349. properties of types `int`, `float`, and `double` are supported.
  350. @return The average value of the given property, or `nil` if the Results are empty.
  351. */
  352. - (nullable NSNumber *)averageOfProperty:(NSString *)property;
  353. /// :nodoc:
  354. - (RLMObjectType)objectAtIndexedSubscript:(NSUInteger)index;
  355. #pragma mark - Sectioned Results
  356. /**
  357. Sorts and sections this collection from a given property key path, returning the result
  358. as an instance of `RLMSectionedResults`.
  359. @param keyPath The property key path to sort on.
  360. @param ascending The direction to sort in.
  361. @param keyBlock A callback which is invoked on each element in the Results collection.
  362. This callback is to return the section key for the element in the collection.
  363. @return An instance of RLMSectionedResults.
  364. */
  365. - (RLMSectionedResults *)sectionedResultsSortedUsingKeyPath:(NSString *)keyPath
  366. ascending:(BOOL)ascending
  367. keyBlock:(RLMSectionedResultsKeyBlock)keyBlock;
  368. /**
  369. Sorts and sections this collection from a given array of sort descriptors, returning the result
  370. as an instance of `RLMSectionedResults`.
  371. @param sortDescriptors An array of `RLMSortDescriptor`s to sort by.
  372. @param keyBlock A callback which is invoked on each element in the Results collection.
  373. This callback is to return the section key for the element in the collection.
  374. @note The primary sort descriptor must be responsible for determining the section key.
  375. @return An instance of RLMSectionedResults.
  376. */
  377. - (RLMSectionedResults *)sectionedResultsUsingSortDescriptors:(NSArray<RLMSortDescriptor *> *)sortDescriptors
  378. keyBlock:(RLMSectionedResultsKeyBlock)keyBlock;
  379. #pragma mark - Freeze
  380. /**
  381. Indicates if the result are frozen.
  382. Frozen Results are immutable and can be accessed from any thread.The objects
  383. read from a frozen Results will also be frozen.
  384. */
  385. @property (nonatomic, readonly, getter=isFrozen) BOOL frozen;
  386. /**
  387. Returns a frozen (immutable) snapshot of these results.
  388. The frozen copy is an immutable collection which contains the same data as
  389. this collection currently contains, but will not update when writes are made
  390. to the containing Realm. Unlike live Results, frozen Results can be accessed
  391. from any thread.
  392. @warning This method cannot be called during a write transaction, or when the
  393. containing Realm is read-only.
  394. @warning Holding onto a frozen collection for an extended period while
  395. performing write transaction on the Realm may result in the Realm
  396. file growing to large sizes. See
  397. `RLMRealmConfiguration.maximumNumberOfActiveVersions` for more
  398. information.
  399. */
  400. - (instancetype)freeze;
  401. /**
  402. Returns a live version of this frozen collection.
  403. This method resolves a reference to a live copy of the same frozen collection.
  404. If called on a live collection, will return itself.
  405. */
  406. - (instancetype)thaw;
  407. #pragma mark - Unavailable Methods
  408. /**
  409. `-[RLMResults init]` is not available because `RLMResults` cannot be created directly.
  410. `RLMResults` can be obtained by querying a Realm.
  411. */
  412. - (instancetype)init __attribute__((unavailable("RLMResults cannot be created directly")));
  413. /**
  414. `+[RLMResults new]` is not available because `RLMResults` cannot be created directly.
  415. `RLMResults` can be obtained by querying a Realm.
  416. */
  417. + (instancetype)new __attribute__((unavailable("RLMResults cannot be created directly")));
  418. @end
  419. /**
  420. `RLMLinkingObjects` is an auto-updating container type. It represents a collection of objects that link to its
  421. parent object.
  422. For more information, please see the "Inverse Relationships" section in the
  423. [documentation](https://www.mongodb.com/docs/realm/sdk/swift/fundamentals/relationships/#relationships).
  424. */
  425. @interface RLMLinkingObjects<RLMObjectType: RLMObject *> : RLMResults
  426. @end
  427. RLM_HEADER_AUDIT_END(nullability, sendability)