RLMCollection.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612
  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/RLMConstants.h>
  19. #import <Realm/RLMThreadSafeReference.h>
  20. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  21. @protocol RLMValue;
  22. @class RLMRealm, RLMResults, RLMSortDescriptor, RLMNotificationToken, RLMCollectionChange, RLMSectionedResults;
  23. typedef RLM_CLOSED_ENUM(int32_t, RLMPropertyType);
  24. /// A callback which is invoked on each element in the Results collection which returns the section key.
  25. typedef id<RLMValue> _Nullable(^RLMSectionedResultsKeyBlock)(id);
  26. /**
  27. A homogenous collection of Realm-managed objects. Examples of conforming types
  28. include `RLMArray`, `RLMSet`, `RLMResults`, and `RLMLinkingObjects`.
  29. */
  30. @protocol RLMCollection <NSFastEnumeration, RLMThreadConfined>
  31. #pragma mark - Properties
  32. /**
  33. The number of objects in the collection.
  34. */
  35. @property (nonatomic, readonly) NSUInteger count;
  36. /**
  37. The type of the objects in the collection.
  38. */
  39. @property (nonatomic, readonly) RLMPropertyType type;
  40. /**
  41. Indicates whether the objects in the collection can be `nil`.
  42. */
  43. @property (nonatomic, readonly, getter = isOptional) BOOL optional;
  44. /**
  45. The class name of the objects contained in the collection.
  46. Will be `nil` if `type` is not RLMPropertyTypeObject.
  47. */
  48. @property (nonatomic, readonly, copy, nullable) NSString *objectClassName;
  49. /**
  50. The Realm which manages this collection, if any.
  51. */
  52. @property (nonatomic, readonly, nullable) RLMRealm *realm;
  53. /**
  54. Indicates if the collection is no longer valid.
  55. The collection becomes invalid if `invalidate` is called on the managing
  56. Realm. Unmanaged collections are never invalidated.
  57. */
  58. @property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated;
  59. #pragma mark - Accessing Objects from a Collection
  60. /**
  61. Returns the object at the index specified.
  62. @param index The index to look up.
  63. @return An object of the type contained in the collection.
  64. */
  65. - (id)objectAtIndex:(NSUInteger)index;
  66. @optional
  67. /**
  68. Returns an array containing the objects in the collection at the indexes
  69. specified by a given index set. `nil` will be returned if the index set
  70. contains an index out of the collections bounds.
  71. @param indexes The indexes in the collection to retrieve objects from.
  72. @return The objects at the specified indexes.
  73. */
  74. - (nullable NSArray *)objectsAtIndexes:(NSIndexSet *)indexes;
  75. /**
  76. Returns the first object in the collection.
  77. RLMSet is not ordered, and so for sets this will return an arbitrary object in
  78. the set. It is not guaraneed to be a different object from what `lastObject`
  79. gives even if the set has multiple objects in it.
  80. Returns `nil` if called on an empty collection.
  81. @return An object of the type contained in the collection.
  82. */
  83. - (nullable id)firstObject;
  84. /**
  85. Returns the last object in the collection.
  86. RLMSet is not ordered, and so for sets this will return an arbitrary object in
  87. the set. It is not guaraneed to be a different object from what `firstObject`
  88. gives even if the set has multiple objects in it.
  89. Returns `nil` if called on an empty collection.
  90. @return An object of the type contained in the collection.
  91. */
  92. - (nullable id)lastObject;
  93. /// :nodoc:
  94. - (id)objectAtIndexedSubscript:(NSUInteger)index;
  95. /**
  96. Returns the index of an object in the collection.
  97. Returns `NSNotFound` if the object is not found in the collection.
  98. @param object An object (of the same type as returned from the `objectClassName` selector).
  99. */
  100. - (NSUInteger)indexOfObject:(id)object;
  101. /**
  102. Returns the index of the first object in the collection matching the predicate.
  103. @param predicateFormat A predicate format string, optionally followed by a variable number of arguments.
  104. @return The index of the object, or `NSNotFound` if the object is not found in the collection.
  105. */
  106. - (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...;
  107. /// :nodoc:
  108. - (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args;
  109. /**
  110. Returns the index of the first object in the collection matching the predicate.
  111. @param predicate The predicate with which to filter the objects.
  112. @return The index of the object, or `NSNotFound` if the object is not found in the collection.
  113. */
  114. - (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate;
  115. @required
  116. #pragma mark - Querying a Collection
  117. /**
  118. Returns all objects matching the given predicate in the collection.
  119. This is only supported for managed collections.
  120. @param predicateFormat A predicate format string, optionally followed by a variable number of arguments.
  121. @return An `RLMResults` containing objects that match the given predicate.
  122. */
  123. - (RLMResults *)objectsWhere:(NSString *)predicateFormat, ...;
  124. /// :nodoc:
  125. - (RLMResults *)objectsWhere:(NSString *)predicateFormat args:(va_list)args;
  126. /**
  127. Returns all objects matching the given predicate in the collection.
  128. This is only supported for managed collections.
  129. @param predicate The predicate with which to filter the objects.
  130. @return An `RLMResults` containing objects that match the given predicate.
  131. */
  132. - (RLMResults *)objectsWithPredicate:(NSPredicate *)predicate;
  133. /**
  134. Returns a sorted `RLMResults` from the collection.
  135. This is only supported for managed collections.
  136. @param keyPath The keyPath to sort by.
  137. @param ascending The direction to sort in.
  138. @return An `RLMResults` sorted by the specified key path.
  139. */
  140. - (RLMResults *)sortedResultsUsingKeyPath:(NSString *)keyPath ascending:(BOOL)ascending;
  141. /**
  142. Returns a sorted `RLMResults` from the collection.
  143. This is only supported for managed collections.
  144. @param properties An array of `RLMSortDescriptor`s to sort by.
  145. @return An `RLMResults` sorted by the specified properties.
  146. */
  147. - (RLMResults *)sortedResultsUsingDescriptors:(NSArray<RLMSortDescriptor *> *)properties;
  148. /**
  149. Returns a distinct `RLMResults` from the collection.
  150. This is only supported for managed collections.
  151. @param keyPaths The key paths used produce distinct results
  152. @return An `RLMResults` made distinct based on the specified key paths
  153. */
  154. - (RLMResults *)distinctResultsUsingKeyPaths:(NSArray<NSString *> *)keyPaths;
  155. /**
  156. Returns an `NSArray` containing the results of invoking `valueForKey:` using
  157. `key` on each of the collection's objects.
  158. @param key The name of the property.
  159. @return An `NSArray` containing results.
  160. */
  161. - (nullable id)valueForKey:(NSString *)key;
  162. /**
  163. Returns the value for the derived property identified by a given key path.
  164. @param keyPath A key path of the form relationship.property (with one or more relationships).
  165. @return The value for the derived property identified by keyPath.
  166. */
  167. - (nullable id)valueForKeyPath:(NSString *)keyPath;
  168. /**
  169. Invokes `setValue:forKey:` on each of the collection's objects using the specified `value` and `key`.
  170. @warning This method may only be called during a write transaction.
  171. @param value The object value.
  172. @param key The name of the property.
  173. */
  174. - (void)setValue:(nullable id)value forKey:(NSString *)key;
  175. #pragma mark - Notifications
  176. /**
  177. Registers a block to be called each time the collection changes.
  178. The block will be asynchronously called with the initial collection,
  179. and then called again after each write transaction which changes either any
  180. of the objects in the collection, or which objects are in the collection.
  181. The `change` parameter will be `nil` the first time the block is called.
  182. For each call after that, it will contain information about
  183. which rows in the collection were added, removed or modified. If a
  184. write transaction did not modify any objects in the results collection,
  185. the block is not called at all. See the `RLMCollectionChange` documentation for
  186. information on how the changes are reported and an example of updating a
  187. `UITableView`.
  188. The error parameter is present only for backwards compatibility and will always
  189. be `nil`.
  190. At the time when the block is called, the collection object will be fully
  191. evaluated and up-to-date, and as long as you do not perform a write transaction
  192. on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will
  193. never perform blocking work.
  194. Notifications are delivered via the standard run loop, and so can't be
  195. delivered while the run loop is blocked by other activity. When
  196. notifications can't be delivered instantly, multiple notifications may be
  197. coalesced into a single notification. This can include the notification
  198. with the initial results. For example, the following code performs a write
  199. transaction immediately after adding the notification block, so there is no
  200. opportunity for the initial notification to be delivered first. As a
  201. result, the initial notification will reflect the state of the Realm after
  202. the write transaction.
  203. RLMResults<Dog *> *results = [Dog allObjects];
  204. NSLog(@"dogs.count: %zu", dogs.count); // => 0
  205. self.token = [results addNotificationBlock:^(RLMResults *dogs,
  206. RLMCollectionChange *changes,
  207. NSError *error) {
  208. // Only fired once for the example
  209. NSLog(@"dogs.count: %zu", dogs.count); // => 1
  210. }];
  211. [realm transactionWithBlock:^{
  212. Dog *dog = [[Dog alloc] init];
  213. dog.name = @"Rex";
  214. [realm addObject:dog];
  215. }];
  216. // end of run loop execution context
  217. You must retain the returned token for as long as you want updates to continue
  218. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  219. @warning This method cannot be called during a write transaction, or when the
  220. containing Realm is read-only or frozen.
  221. @param block The block to be called whenever a change occurs.
  222. @return A token which must be held for as long as you want updates to be delivered.
  223. */
  224. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults *_Nullable results,
  225. RLMCollectionChange *_Nullable change,
  226. NSError *_Nullable error))block
  227. __attribute__((warn_unused_result));
  228. /**
  229. Registers a block to be called each time the collection changes.
  230. The block will be asynchronously called with the initial collection,
  231. and then called again after each write transaction which changes either any
  232. of the objects in the collection, or which objects are in the collection.
  233. The `change` parameter will be `nil` the first time the block is called.
  234. For each call after that, it will contain information about
  235. which rows in the collection were added, removed or modified. If a
  236. write transaction did not modify any objects in the results collection,
  237. the block is not called at all. See the `RLMCollectionChange` documentation for
  238. information on how the changes are reported and an example of updating a
  239. `UITableView`.
  240. The error parameter is present only for backwards compatibility and will always
  241. be `nil`.
  242. At the time when the block is called, the collection object will be fully
  243. evaluated and up-to-date, and as long as you do not perform a write transaction
  244. on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will
  245. never perform blocking work.
  246. Notifications are delivered on the given queue. If the queue is blocked and
  247. notifications can't be delivered instantly, multiple notifications may be
  248. coalesced into a single notification.
  249. You must retain the returned token for as long as you want updates to continue
  250. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  251. @warning This method cannot be called when the containing Realm is read-only or frozen.
  252. @warning The queue must be a serial queue.
  253. @param block The block to be called whenever a change occurs.
  254. @param queue The serial queue to deliver notifications to.
  255. @return A token which must be held for as long as you want updates to be delivered.
  256. */
  257. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults *_Nullable results,
  258. RLMCollectionChange *_Nullable change,
  259. NSError *_Nullable error))block
  260. queue:(nullable dispatch_queue_t)queue
  261. __attribute__((warn_unused_result));
  262. /**
  263. Registers a block to be called each time the collection changes.
  264. The block will be asynchronously called with the initial collection,
  265. and then called again after each write transaction which changes either any
  266. of the objects in the collection, or which objects are in the collection.
  267. The `change` parameter will be `nil` the first time the block is called.
  268. For each call after that, it will contain information about
  269. which rows in the collection were added, removed or modified. If a
  270. write transaction did not modify any objects in the results collection,
  271. the block is not called at all. See the `RLMCollectionChange` documentation for
  272. information on how the changes are reported and an example of updating a
  273. `UITableView`.
  274. The error parameter is present only for backwards compatibility and will always
  275. be `nil`.
  276. At the time when the block is called, the collection object will be fully
  277. evaluated and up-to-date, and as long as you do not perform a write transaction
  278. on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will
  279. never perform blocking work.
  280. Notifications are delivered on the given queue. If the queue is blocked and
  281. notifications can't be delivered instantly, multiple notifications may be
  282. coalesced into a single notification.
  283. You must retain the returned token for as long as you want updates to continue
  284. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  285. @warning This method cannot be called when the containing Realm is read-only or frozen.
  286. @warning The queue must be a serial queue.
  287. @param block The block to be called whenever a change occurs.
  288. @param queue The serial queue to deliver notifications to.
  289. @param keyPaths The block will be called for changes occurring on these keypaths. If no
  290. key paths are given, notifications are delivered for every property key path.
  291. @return A token which must be held for as long as you want updates to be delivered.
  292. */
  293. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults *_Nullable results,
  294. RLMCollectionChange *_Nullable change,
  295. NSError *_Nullable error))block
  296. keyPaths:(nullable NSArray<NSString *> *)keyPaths
  297. queue:(nullable dispatch_queue_t)queue
  298. __attribute__((warn_unused_result));
  299. #pragma mark - Sectioned Results
  300. /**
  301. Sorts and sections this collection from a given property key path, returning the result
  302. as an instance of `RLMSectionedResults`.
  303. @param keyPath The property key path to sort on.
  304. @param ascending The direction to sort in.
  305. @param keyBlock A callback which is invoked on each element in the Results collection.
  306. This callback is to return the section key for the element in the collection.
  307. @return An instance of RLMSectionedResults.
  308. */
  309. - (RLMSectionedResults *)sectionedResultsSortedUsingKeyPath:(NSString *)keyPath
  310. ascending:(BOOL)ascending
  311. keyBlock:(RLMSectionedResultsKeyBlock)keyBlock;
  312. /**
  313. Sorts and sections this collection from a given array of sort descriptors, returning the result
  314. as an instance of `RLMSectionedResults`.
  315. @param sortDescriptors An array of `RLMSortDescriptor`s to sort by.
  316. @param keyBlock A callback which is invoked on each element in the Results collection.
  317. This callback is to return the section key for the element in the collection.
  318. @note The primary sort descriptor must be responsible for determining the section key.
  319. @return An instance of RLMSectionedResults.
  320. */
  321. - (RLMSectionedResults *)sectionedResultsUsingSortDescriptors:(NSArray<RLMSortDescriptor *> *)sortDescriptors
  322. keyBlock:(RLMSectionedResultsKeyBlock)keyBlock;
  323. #pragma mark - Aggregating Property Values
  324. /**
  325. Returns the minimum (lowest) value of the given property among all the objects
  326. in the collection.
  327. NSNumber *min = [results minOfProperty:@"age"];
  328. @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties.
  329. @param property The property whose minimum value is desired. Only properties of
  330. types `int`, `float`, `double`, and `NSDate` are supported.
  331. @return The minimum value of the property, or `nil` if the Results are empty.
  332. */
  333. - (nullable id)minOfProperty:(NSString *)property;
  334. /**
  335. Returns the maximum (highest) value of the given property among all the objects
  336. in the collection.
  337. NSNumber *max = [results maxOfProperty:@"age"];
  338. @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties.
  339. @param property The property whose maximum value is desired. Only properties of
  340. types `int`, `float`, `double`, and `NSDate` are supported.
  341. @return The maximum value of the property, or `nil` if the Results are empty.
  342. */
  343. - (nullable id)maxOfProperty:(NSString *)property;
  344. /**
  345. Returns the sum of the values of a given property over all the objects in the collection.
  346. NSNumber *sum = [results sumOfProperty:@"age"];
  347. @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties.
  348. @param property The property whose values should be summed. Only properties of
  349. types `int`, `float`, and `double` are supported.
  350. @return The sum of the given property.
  351. */
  352. - (NSNumber *)sumOfProperty:(NSString *)property;
  353. /**
  354. Returns the average value of a given property over the objects in the collection.
  355. NSNumber *average = [results averageOfProperty:@"age"];
  356. @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties.
  357. @param property The property whose average value should be calculated. Only
  358. properties of types `int`, `float`, and `double` are supported.
  359. @return The average value of the given property, or `nil` if the Results are empty.
  360. */
  361. - (nullable NSNumber *)averageOfProperty:(NSString *)property;
  362. #pragma mark - Freeze
  363. /**
  364. Indicates if the collection is frozen.
  365. Frozen collections are immutable and can be accessed from any thread. The
  366. objects read from a frozen collection will also be frozen.
  367. */
  368. @property (nonatomic, readonly, getter=isFrozen) BOOL frozen;
  369. /**
  370. Returns a frozen (immutable) snapshot of this collection.
  371. The frozen copy is an immutable collection which contains the same data as
  372. this collection currently contains, but will not update when writes are made
  373. to the containing Realm. Unlike live collections, frozen collections can be
  374. accessed from any thread.
  375. @warning This method cannot be called during a write transaction, or when the containing Realm is read-only.
  376. @warning Holding onto a frozen collection for an extended period while
  377. performing write transaction on the Realm may result in the Realm
  378. file growing to large sizes. See
  379. `RLMRealmConfiguration.maximumNumberOfActiveVersions`
  380. for more information.
  381. */
  382. - (instancetype)freeze;
  383. /**
  384. Returns a live version of this frozen collection.
  385. This method resolves a reference to a live copy of the same frozen collection.
  386. If called on a live collection, will return itself.
  387. */
  388. - (instancetype)thaw;
  389. @end
  390. /**
  391. An `RLMSortDescriptor` stores a property name and a sort order for use with
  392. `sortedResultsUsingDescriptors:`. It is similar to `NSSortDescriptor`, but supports
  393. only the subset of functionality which can be efficiently run by Realm's query
  394. engine.
  395. `RLMSortDescriptor` instances are immutable.
  396. */
  397. @interface RLMSortDescriptor : NSObject
  398. #pragma mark - Properties
  399. /**
  400. The key path which the sort descriptor orders results by.
  401. */
  402. @property (nonatomic, readonly) NSString *keyPath;
  403. /**
  404. Whether the descriptor sorts in ascending or descending order.
  405. */
  406. @property (nonatomic, readonly) BOOL ascending;
  407. #pragma mark - Methods
  408. /**
  409. Returns a new sort descriptor for the given key path and sort direction.
  410. */
  411. + (instancetype)sortDescriptorWithKeyPath:(NSString *)keyPath ascending:(BOOL)ascending;
  412. /**
  413. Returns a copy of the receiver with the sort direction reversed.
  414. */
  415. - (instancetype)reversedSortDescriptor;
  416. @end
  417. /**
  418. A `RLMCollectionChange` object encapsulates information about changes to collections
  419. that are reported by Realm notifications.
  420. `RLMCollectionChange` is passed to the notification blocks registered with
  421. `-addNotificationBlock` on `RLMArray` and `RLMResults`, and reports what rows in the
  422. collection changed since the last time the notification block was called.
  423. The change information is available in two formats: a simple array of row
  424. indices in the collection for each type of change, and an array of index paths
  425. in a requested section suitable for passing directly to `UITableView`'s batch
  426. update methods. A complete example of updating a `UITableView` named `tv`:
  427. [tv beginUpdates];
  428. [tv deleteRowsAtIndexPaths:[changes deletionsInSection:0] withRowAnimation:UITableViewRowAnimationAutomatic];
  429. [tv insertRowsAtIndexPaths:[changes insertionsInSection:0] withRowAnimation:UITableViewRowAnimationAutomatic];
  430. [tv reloadRowsAtIndexPaths:[changes modificationsInSection:0] withRowAnimation:UITableViewRowAnimationAutomatic];
  431. [tv endUpdates];
  432. All of the arrays in an `RLMCollectionChange` are always sorted in ascending order.
  433. */
  434. @interface RLMCollectionChange : NSObject
  435. /// The indices of objects in the previous version of the collection which have
  436. /// been removed from this one.
  437. @property (nonatomic, readonly) NSArray<NSNumber *> *deletions;
  438. /// The indices in the new version of the collection which were newly inserted.
  439. @property (nonatomic, readonly) NSArray<NSNumber *> *insertions;
  440. /**
  441. The indices in the new version of the collection which were modified.
  442. For `RLMResults`, this means that one or more of the properties of the object at
  443. that index were modified (or an object linked to by that object was
  444. modified).
  445. For `RLMArray`, the array itself being modified to contain a
  446. different object at that index will also be reported as a modification.
  447. */
  448. @property (nonatomic, readonly) NSArray<NSNumber *> *modifications;
  449. /// Returns the index paths of the deletion indices in the given section.
  450. - (NSArray<NSIndexPath *> *)deletionsInSection:(NSUInteger)section;
  451. /// Returns the index paths of the insertion indices in the given section.
  452. - (NSArray<NSIndexPath *> *)insertionsInSection:(NSUInteger)section;
  453. /// Returns the index paths of the modification indices in the given section.
  454. - (NSArray<NSIndexPath *> *)modificationsInSection:(NSUInteger)section;
  455. @end
  456. RLM_HEADER_AUDIT_END(nullability, sendability)