RLMResults.h 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539
  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. NS_ASSUME_NONNULL_BEGIN
  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. If an error occurs the block will be called with `nil` for the results
  164. parameter and a non-`nil` error. Currently the only errors that can occur are
  165. when opening the Realm on the background worker thread.
  166. At the time when the block is called, the `RLMResults` object will be fully
  167. evaluated and up-to-date, and as long as you do not perform a write transaction
  168. on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will
  169. never perform blocking work.
  170. Notifications are delivered via the standard run loop, and so can't be
  171. delivered while the run loop is blocked by other activity. When
  172. notifications can't be delivered instantly, multiple notifications may be
  173. coalesced into a single notification. This can include the notification
  174. with the initial results. For example, the following code performs a write
  175. transaction immediately after adding the notification block, so there is no
  176. opportunity for the initial notification to be delivered first. As a
  177. result, the initial notification will reflect the state of the Realm after
  178. the write transaction.
  179. RLMResults<Dog *> *results = [Dog allObjects];
  180. NSLog(@"dogs.count: %zu", dogs.count); // => 0
  181. self.token = [results addNotificationBlock:^(RLMResults *dogs,
  182. RLMCollectionChange *changes,
  183. NSError *error) {
  184. // Only fired once for the example
  185. NSLog(@"dogs.count: %zu", dogs.count); // => 1
  186. }];
  187. [realm transactionWithBlock:^{
  188. Dog *dog = [[Dog alloc] init];
  189. dog.name = @"Rex";
  190. [realm addObject:dog];
  191. }];
  192. // end of run loop execution context
  193. You must retain the returned token for as long as you want updates to continue
  194. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  195. @warning This method cannot be called during a write transaction, or when the
  196. containing Realm is read-only.
  197. @param block The block to be called whenever a change occurs.
  198. @return A token which must be held for as long as you want updates to be delivered.
  199. */
  200. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults<RLMObjectType> *_Nullable results,
  201. RLMCollectionChange *_Nullable change,
  202. NSError *_Nullable error))block
  203. __attribute__((warn_unused_result));
  204. /**
  205. Registers a block to be called each time the results collection changes.
  206. The block will be asynchronously called with the initial results collection,
  207. and then called again after each write transaction which changes either any
  208. of the objects in the results, or which objects are in the results.
  209. The `change` parameter will be `nil` the first time the block is called.
  210. For each call after that, it will contain information about
  211. which rows in the results collection were added, removed or modified. If a
  212. write transaction did not modify any objects in the results collection,
  213. the block is not called at all. See the `RLMCollectionChange` documentation for
  214. information on how the changes are reported and an example of updating a
  215. `UITableView`.
  216. If an error occurs the block will be called with `nil` for the results
  217. parameter and a non-`nil` error. Currently the only errors that can occur are
  218. when opening the Realm on the background worker thread.
  219. At the time when the block is called, the `RLMResults` object will be fully
  220. evaluated and up-to-date, and as long as you do not perform a write transaction
  221. on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will
  222. never perform blocking work.
  223. Notifications are delivered on the given queue. If the queue is blocked and
  224. notifications can't be delivered instantly, multiple notifications may be
  225. coalesced into a single notification.
  226. You must retain the returned token for as long as you want updates to continue
  227. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  228. @warning This method cannot be called when the containing Realm is read-only or frozen.
  229. @warning The queue must be a serial queue.
  230. @param block The block to be called whenever a change occurs.
  231. @param queue The serial queue to deliver notifications to.
  232. @return A token which must be held for as long as you want updates to be delivered.
  233. */
  234. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults<RLMObjectType> *_Nullable results,
  235. RLMCollectionChange *_Nullable change,
  236. NSError *_Nullable error))block
  237. queue:(nullable dispatch_queue_t)queue
  238. __attribute__((warn_unused_result));
  239. /**
  240. Registers a block to be called each time the results collection changes.
  241. The block will be asynchronously called with the initial results collection,
  242. and then called again after each write transaction which changes either any
  243. of the objects in the results, or which objects are in the results.
  244. The `change` parameter will be `nil` the first time the block is called.
  245. For each call after that, it will contain information about
  246. which rows in the results collection were added, removed or modified. If a
  247. write transaction did not modify any objects in the results collection,
  248. the block is not called at all. See the `RLMCollectionChange` documentation for
  249. information on how the changes are reported and an example of updating a
  250. `UITableView`.
  251. If an error occurs the block will be called with `nil` for the results
  252. parameter and a non-`nil` error. Currently the only errors that can occur are
  253. when opening the Realm on the background worker thread.
  254. At the time when the block is called, the `RLMResults` object will be fully
  255. evaluated and up-to-date, and as long as you do not perform a write transaction
  256. on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will
  257. never perform blocking work.
  258. Notifications are delivered on the given queue. If the queue is blocked and
  259. notifications can't be delivered instantly, multiple notifications may be
  260. coalesced into a single notification.
  261. You must retain the returned token for as long as you want updates to continue
  262. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  263. @warning This method cannot be called when the containing Realm is read-only or frozen.
  264. @warning The queue must be a serial queue.
  265. @param block The block to be called whenever a change occurs.
  266. @param queue The serial queue to deliver notifications to.
  267. @param keyPaths The block will be called for changes occuring on these keypaths. If no
  268. key paths are given, notifications are delivered for every property key path.
  269. @return A token which must be held for as long as you want updates to be delivered.
  270. */
  271. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults<RLMObjectType> *_Nullable results,
  272. RLMCollectionChange *_Nullable change,
  273. NSError *_Nullable error))block
  274. keyPaths:(nullable NSArray<NSString *> *)keyPaths
  275. queue:(nullable dispatch_queue_t)queue
  276. __attribute__((warn_unused_result));
  277. /**
  278. Registers a block to be called each time the results collection changes.
  279. The block will be asynchronously called with the initial results collection,
  280. and then called again after each write transaction which changes either any
  281. of the objects in the results, or which objects are in the results.
  282. The `change` parameter will be `nil` the first time the block is called.
  283. For each call after that, it will contain information about
  284. which rows in the results collection were added, removed or modified. If a
  285. write transaction did not modify any objects in the results collection,
  286. the block is not called at all. See the `RLMCollectionChange` documentation for
  287. information on how the changes are reported and an example of updating a
  288. `UITableView`.
  289. If an error occurs the block will be called with `nil` for the results
  290. parameter and a non-`nil` error. Currently the only errors that can occur are
  291. when opening the Realm on the background worker thread.
  292. At the time when the block is called, the `RLMResults` object will be fully
  293. evaluated and up-to-date, and as long as you do not perform a write transaction
  294. on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will
  295. never perform blocking work.
  296. Notifications are delivered via the standard run loop, and so can't be
  297. delivered while the run loop is blocked by other activity. When
  298. notifications can't be delivered instantly, multiple notifications may be
  299. coalesced into a single notification. This can include the notification
  300. with the initial results. For example, the following code performs a write
  301. transaction immediately after adding the notification block, so there is no
  302. opportunity for the initial notification to be delivered first. As a
  303. result, the initial notification will reflect the state of the Realm after
  304. the write transaction.
  305. You must retain the returned token for as long as you want updates to continue
  306. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  307. @warning This method cannot be called when the containing Realm is read-only or frozen.
  308. @warning The queue must be a serial queue.
  309. @param block The block to be called whenever a change occurs.
  310. @param keyPaths The block will be called for changes occuring on these keypaths. If no
  311. key paths are given, notifications are delivered for every property key path.
  312. @return A token which must be held for as long as you want updates to be delivered.
  313. */
  314. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults<RLMObjectType> *_Nullable results,
  315. RLMCollectionChange *_Nullable change,
  316. NSError *_Nullable error))block
  317. keyPaths:(nullable NSArray<NSString *> *)keyPaths
  318. __attribute__((warn_unused_result));
  319. #pragma mark - Aggregating Property Values
  320. /**
  321. Returns the minimum (lowest) value of the given property among all the objects
  322. represented by the results collection.
  323. NSNumber *min = [results minOfProperty:@"age"];
  324. @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties.
  325. @param property The property whose minimum value is desired. Only properties of types `int`, `float`, `double`, and
  326. `NSDate` are supported.
  327. @return The minimum value of the property, or `nil` if the Results are empty.
  328. */
  329. - (nullable id)minOfProperty:(NSString *)property;
  330. /**
  331. Returns the maximum (highest) value of the given property among all the objects represented by the results collection.
  332. NSNumber *max = [results maxOfProperty:@"age"];
  333. @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties.
  334. @param property The property whose maximum value is desired. Only properties of
  335. types `int`, `float`, `double`, and `NSDate` are supported.
  336. @return The maximum value of the property, or `nil` if the Results are empty.
  337. */
  338. - (nullable id)maxOfProperty:(NSString *)property;
  339. /**
  340. Returns the sum of the values of a given property over all the objects represented by the results collection.
  341. NSNumber *sum = [results sumOfProperty:@"age"];
  342. @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties.
  343. @param property The property whose values should be summed. Only properties of
  344. types `int`, `float`, and `double` are supported.
  345. @return The sum of the given property.
  346. */
  347. - (NSNumber *)sumOfProperty:(NSString *)property;
  348. /**
  349. Returns the average value of a given property over the objects represented by the results collection.
  350. NSNumber *average = [results averageOfProperty:@"age"];
  351. @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties.
  352. @param property The property whose average value should be calculated. Only
  353. properties of types `int`, `float`, and `double` are supported.
  354. @return The average value of the given property, or `nil` if the Results are empty.
  355. */
  356. - (nullable NSNumber *)averageOfProperty:(NSString *)property;
  357. /// :nodoc:
  358. - (RLMObjectType)objectAtIndexedSubscript:(NSUInteger)index;
  359. #pragma mark - Freeze
  360. /**
  361. Indicates if the result are frozen.
  362. Frozen Results are immutable and can be accessed from any thread.The objects
  363. read from a frozen Results will also be frozen.
  364. */
  365. @property (nonatomic, readonly, getter=isFrozen) BOOL frozen;
  366. /**
  367. Returns a frozen (immutable) snapshot of these results.
  368. The frozen copy is an immutable collection which contains the same data as
  369. this collection currently contains, but will not update when writes are made
  370. to the containing Realm. Unlike live Results, frozen Results can be accessed
  371. from any thread.
  372. @warning This method cannot be called during a write transaction, or when the
  373. containing Realm is read-only.
  374. @warning Holding onto a frozen collection for an extended period while
  375. performing write transaction on the Realm may result in the Realm
  376. file growing to large sizes. See
  377. `RLMRealmConfiguration.maximumNumberOfActiveVersions` for more
  378. information.
  379. */
  380. - (instancetype)freeze;
  381. /**
  382. Returns a live version of this frozen collection.
  383. This method resolves a reference to a live copy of the same frozen collection.
  384. If called on a live collection, will return itself.
  385. */
  386. - (instancetype)thaw;
  387. #pragma mark - Unavailable Methods
  388. /**
  389. `-[RLMResults init]` is not available because `RLMResults` cannot be created directly.
  390. `RLMResults` can be obtained by querying a Realm.
  391. */
  392. - (instancetype)init __attribute__((unavailable("RLMResults cannot be created directly")));
  393. /**
  394. `+[RLMResults new]` is not available because `RLMResults` cannot be created directly.
  395. `RLMResults` can be obtained by querying a Realm.
  396. */
  397. + (instancetype)new __attribute__((unavailable("RLMResults cannot be created directly")));
  398. @end
  399. /**
  400. `RLMLinkingObjects` is an auto-updating container type. It represents a collection of objects that link to its
  401. parent object.
  402. For more information, please see the "Inverse Relationships" section in the
  403. [documentation](https://realm.io/docs/objc/latest/#relationships).
  404. */
  405. @interface RLMLinkingObjects<RLMObjectType: RLMObject *> : RLMResults
  406. @end
  407. NS_ASSUME_NONNULL_END