RLMDictionary.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2021 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, RLMResults<RLMObjectType>, RLMDictionaryChange;
  21. /**
  22. `RLMDictionary` is a container type in Realm representing a dynamic collection of key-value pairs.
  23. Unlike `NSDictionary`, `RLMDictionary`s hold a single key and value type.
  24. This is referred to in these docs as the “type” and “keyType” of the dictionary.
  25. When declaring an `RLMDictionary` property, the object type and keyType must be marked as conforming to a
  26. protocol by the same name as the objects it should contain.
  27. RLM_COLLECTION_TYPE(ObjectType)
  28. ...
  29. @property RLMDictionary<NSString *, ObjectType *><RLMString, ObjectType> *objectTypeDictionary;
  30. `RLMDictionary`s can be queried with the same predicates as `RLMObject` and `RLMResult`s.
  31. `RLMDictionary`s cannot be created directly. `RLMDictionary` properties on `RLMObject`s are
  32. lazily created when accessed, or can be obtained by querying a Realm.
  33. ### Key-Value Observing
  34. `RLMDictionary` supports dictionary key-value observing on `RLMDictionary` properties on `RLMObject`
  35. subclasses, and the `invalidated` property on `RLMDictionary` instances themselves is
  36. key-value observing compliant when the `RLMDictionary` is attached to a managed
  37. `RLMObject` (`RLMDictionary`s on unmanaged `RLMObject`s will never become invalidated).
  38. */
  39. @interface RLMDictionary<RLMKeyType, RLMObjectType>: NSObject<RLMCollection>
  40. #pragma mark - Properties
  41. /**
  42. The number of entries in the dictionary.
  43. */
  44. @property (nonatomic, readonly, assign) NSUInteger count;
  45. /**
  46. The type of the objects in the dictionary.
  47. */
  48. @property (nonatomic, readonly, assign) RLMPropertyType type;
  49. /**
  50. The type of the key used in this dictionary.
  51. */
  52. @property (nonatomic, readonly, assign) RLMPropertyType keyType;
  53. /**
  54. Indicates whether the objects in the collection can be `nil`.
  55. */
  56. @property (nonatomic, readonly, getter = isOptional) BOOL optional;
  57. /**
  58. The class name of the objects contained in the dictionary.
  59. Will be `nil` if `type` is not RLMPropertyTypeObject.
  60. */
  61. @property (nonatomic, readonly, copy, nullable) NSString *objectClassName;
  62. /**
  63. The Realm which manages the dictionary. Returns `nil` for unmanaged dictionary.
  64. */
  65. @property (nonatomic, readonly, nullable) RLMRealm *realm;
  66. /**
  67. Indicates if the dictionary can no longer be accessed.
  68. */
  69. @property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated;
  70. /**
  71. Indicates if the dictionary is frozen.
  72. Frozen dictionaries are immutable and can be accessed from any thread. Frozen dictionaries
  73. are created by calling `-freeze` on a managed live dictionary. Unmanaged dictionaries are
  74. never frozen.
  75. */
  76. @property (nonatomic, readonly, getter = isFrozen) BOOL frozen;
  77. #pragma mark - Accessing Objects from a Dictionary
  78. /**
  79. Returns the value associated with a given key.
  80. @param key The name of the property.
  81. @discussion If key does not start with “@”, invokes object(forKey:). If key does start
  82. with “@”, strips the “@” and invokes [super valueForKey:] with the rest of the key.
  83. @return A value associated with a given key or `nil`.
  84. */
  85. - (nullable id)valueForKey:(nonnull RLMKeyType)key;
  86. /**
  87. Returns an array containing the dictionary’s keys.
  88. @note The order of the elements in the array is not defined.
  89. */
  90. @property(readonly, copy) NSArray<RLMKeyType> *allKeys;
  91. /**
  92. Returns an array containing the dictionary’s values.
  93. @note The order of the elements in the array is not defined.
  94. */
  95. @property(readonly, copy) NSArray<RLMObjectType> *allValues;
  96. /**
  97. Returns the value associated with a given key.
  98. @note `nil` will be returned if no value is associated with a given key. NSNull will be returned
  99. where null is associated with the key.
  100. @param key The key for which to return the corresponding value.
  101. @return The value associated with key.
  102. */
  103. - (nullable RLMObjectType)objectForKey:(nonnull RLMKeyType)key;
  104. /**
  105. Returns the value associated with a given key.
  106. @note `nil` will be returned if no value is associated with a given key. NSNull will be returned
  107. where null is associated with the key.
  108. @param key The key for which to return the corresponding value.
  109. @return The value associated with key.
  110. */
  111. - (nullable RLMObjectType)objectForKeyedSubscript:(RLMKeyType)key;
  112. /**
  113. Applies a given block object to the each key-value pair of the dictionary.
  114. @param block A block object to operate on entries in the dictionary.
  115. @note If the block sets *stop to YES, the enumeration stops.
  116. */
  117. - (void)enumerateKeysAndObjectsUsingBlock:(void (^)(RLMKeyType key, RLMObjectType obj, BOOL *stop))block;
  118. #pragma mark - Adding, Removing, and Replacing Objects in a Dictionary
  119. /**
  120. Replace the contents of a dictionary with the contents of another dictionary - NSDictionary or RLMDictionary.
  121. This will remove all elements in this dictionary and then apply each element from the given dictionary.
  122. @warning This method may only be called during a write transaction.
  123. @warning If otherDictionary is self this will result in an empty dictionary.
  124. */
  125. - (void)setDictionary:(id)otherDictionary;
  126. /**
  127. Removes all contents in the dictionary.
  128. @warning This method may only be called during a write transaction.
  129. */
  130. - (void)removeAllObjects;
  131. /**
  132. Removes from the dictionary entries specified by elements in a given array. If a given key does not
  133. exist, no mutation will happen for that key.
  134. @warning This method may only be called during a write transaction.
  135. */
  136. - (void)removeObjectsForKeys:(NSArray<RLMKeyType> *)keyArray;
  137. /**
  138. Removes a given key and its associated value from the dictionary. If the key does not exist the dictionary
  139. will not be modified.
  140. @warning This method may only be called during a write transaction.
  141. */
  142. - (void)removeObjectForKey:(RLMKeyType)key;
  143. /**
  144. Adds a given key-value pair to the dictionary if the key is not present, or updates the value for the given key
  145. if the key already present.
  146. @warning This method may only be called during a write transaction.
  147. */
  148. - (void)setObject:(nullable RLMObjectType)obj forKeyedSubscript:(RLMKeyType)key;
  149. /**
  150. Adds a given key-value pair to the dictionary if the key is not present, or updates the value for the given key
  151. if the key already present.
  152. @warning This method may only be called during a write transaction.
  153. */
  154. - (void)setObject:(nullable RLMObjectType)anObject forKey:(RLMKeyType)aKey;
  155. /**
  156. Adds to the receiving dictionary the entries from another dictionary.
  157. @note If the receiving dictionary contains the same key(s) as the otherDictionary, then
  158. the receiving dictionary will update each key-value pair for the matching key.
  159. @warning This method may only be called during a write transaction.
  160. @param otherDictionary An enumerable object such as `NSDictionary` or `RLMDictionary` which contains objects of the
  161. same type as the receiving dictionary.
  162. */
  163. - (void)addEntriesFromDictionary:(id <NSFastEnumeration>)otherDictionary;
  164. #pragma mark - Querying a Dictionary
  165. /**
  166. Returns all the values matching the given predicate in the dictionary.
  167. @note The keys in the dictionary are ignored when quering values, and they will not be returned in the `RLMResults`.
  168. @param predicateFormat A predicate format string, optionally followed by a variable number of arguments.
  169. @return An `RLMResults` of objects that match the given predicate.
  170. */
  171. - (RLMResults<RLMObjectType> *)objectsWhere:(NSString *)predicateFormat, ...;
  172. /// :nodoc:
  173. - (RLMResults<RLMObjectType> *)objectsWhere:(NSString *)predicateFormat args:(va_list)args;
  174. /**
  175. Returns all the values matching the given predicate in the dictionary.
  176. @note The keys in the dictionary are ignored when quering values, and they will not be returned in the `RLMResults`.
  177. @param predicate The predicate with which to filter the objects.
  178. @return An `RLMResults` of objects that match the given predicate
  179. */
  180. - (RLMResults<RLMObjectType> *)objectsWithPredicate:(NSPredicate *)predicate;
  181. /**
  182. Returns a sorted RLMResults of all values in the dictionary.
  183. @note The keys in the dictionary are ignored when sorting values, and they will not be returned in the `RLMResults`.
  184. @param keyPath The key path to sort by.
  185. @param ascending The direction to sort in.
  186. @return An `RLMResults` sorted by the specified key path.
  187. */- (RLMResults<RLMObjectType> *)sortedResultsUsingKeyPath:(NSString *)keyPath ascending:(BOOL)ascending;
  188. /**
  189. Returns a sorted RLMResults of all values in the dictionary.
  190. @note The keys in the dictionary are ignored when sorting values, and they will not be returned in the `RLMResults`.
  191. @param properties An array of `RLMSortDescriptor`s to sort by.
  192. @return An `RLMResults` sorted by the specified properties.
  193. */
  194. - (RLMResults<RLMObjectType> *)sortedResultsUsingDescriptors:(NSArray<RLMSortDescriptor *> *)properties;
  195. /**
  196. Returns a distinct `RLMResults` from all values in the dictionary.
  197. @note The keys in the dictionary are ignored, and they will not be returned in the `RLMResults`.
  198. @param keyPaths The key paths to distinct on.
  199. @return An `RLMResults` with the distinct values of the keypath(s).
  200. */
  201. - (RLMResults<RLMObjectType> *)distinctResultsUsingKeyPaths:(NSArray<NSString *> *)keyPaths;
  202. #pragma mark - Aggregating Property Values
  203. /**
  204. Returns the minimum (lowest) value of the given property among all the values in the dictionary.
  205. NSNumber *min = [object.dictionaryProperty minOfProperty:@"age"];
  206. @param property The property whose minimum value is desired. Only properties of
  207. types `int`, `float`, `double`, `NSDate`, `RLMValue` and `RLMDecimal128` are supported.
  208. @return The minimum value of the property, or `nil` if the dictionary is empty.
  209. */
  210. - (nullable id)minOfProperty:(NSString *)property;
  211. /**
  212. Returns the maximum (highest) value of the given property among all the objects in the dictionary.
  213. NSNumber *max = [object.dictionaryProperty maxOfProperty:@"age"];
  214. @param property The property whose minimum value is desired. Only properties of
  215. types `int`, `float`, `double`, `NSDate`, `RLMValue` and `RLMDecimal128` are supported.
  216. @return The maximum value of the property, or `nil` if the dictionary is empty.
  217. */
  218. - (nullable id)maxOfProperty:(NSString *)property;
  219. /**
  220. Returns the sum of distinct values of a given property over all the objects in the dictionary.
  221. NSNumber *sum = [object.dictionaryProperty sumOfProperty:@"age"];
  222. @param property The property whose minimum value is desired. Only properties of
  223. types `int`, `float`, `double`, `RLMValue` and `RLMDecimal128` are supported.
  224. @return The sum of the given property.
  225. */
  226. - (NSNumber *)sumOfProperty:(NSString *)property;
  227. /**
  228. Returns the average value of a given property over the objects in the dictionary.
  229. NSNumber *average = [object.dictionaryProperty averageOfProperty:@"age"];
  230. @param property The property whose minimum value is desired. Only properties of
  231. types `int`, `float`, `double`, `NSDate`, `RLMValue` and `RLMDecimal128` are supported.
  232. @return The average value of the given property, or `nil` if the dictionary is empty.
  233. */
  234. - (nullable NSNumber *)averageOfProperty:(NSString *)property;
  235. #pragma mark - Notifications
  236. /**
  237. Registers a block to be called each time the dictionary changes.
  238. The block will be asynchronously called with the initial dictionary, and then
  239. called again after each write transaction which changes any of the keys or values
  240. within the dictionary.
  241. The `changes` parameter will be `nil` the first time the block is called.
  242. For each call after that, it will contain information about
  243. which keys in the dictionary were added, modified or deleted. If a write transaction
  244. did not modify any keys or values in the dictionary, the block is not called at all.
  245. If an error occurs the block will be called with `nil` for the results
  246. parameter and a non-`nil` error. Currently the only errors that can occur are
  247. when opening the Realm on the background worker thread.
  248. Notifications are delivered via the standard run loop, and so can't be
  249. delivered while the run loop is blocked by other activity. When
  250. notifications can't be delivered instantly, multiple notifications may be
  251. coalesced into a single notification. This can include the notification
  252. with the initial results. For example, the following code performs a write
  253. transaction immediately after adding the notification block, so there is no
  254. opportunity for the initial notification to be delivered first. As a
  255. result, the initial notification will reflect the state of the Realm after
  256. the write transaction.
  257. Person *person = [[Person allObjectsInRealm:realm] firstObject];
  258. NSLog(@"person.dogs.count: %zu", person.dogs.count); // => 0
  259. self.token = [person.dogs addNotificationBlock(RLMDictionary<NSString *, Dog *><RLMString, Dog> *dogs,
  260. RLMDictionaryChange *changes,
  261. NSError *error) {
  262. // Only fired once for the example
  263. NSLog(@"dogs.count: %zu", dogs.count); // => 1
  264. }];
  265. [realm transactionWithBlock:^{
  266. Dog *dog = [[Dog alloc] init];
  267. dog.name = @"Rex";
  268. person.dogs[@"frenchBulldog"] = dog;
  269. }];
  270. // end of run loop execution context
  271. You must retain the returned token for as long as you want updates to continue
  272. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  273. @warning This method cannot be called during a write transaction, or when the
  274. containing Realm is read-only.
  275. @warning This method may only be called on a non-frozen managed dictionary.
  276. @param block The block to be called each time the dictionary changes.
  277. @return A token which must be held for as long as you want updates to be delivered.
  278. */
  279. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMDictionary<RLMKeyType, RLMObjectType> *_Nullable dictionary,
  280. RLMDictionaryChange *_Nullable changes,
  281. NSError *_Nullable error))block
  282. __attribute__((warn_unused_result));
  283. /**
  284. Registers a block to be called each time the dictionary changes.
  285. The block will be asynchronously called with the initial dictionary, and then
  286. called again after each write transaction which changes any of the key-value in
  287. the dictionary or which objects are in the results.
  288. The `changes` parameter will be `nil` the first time the block is called.
  289. For each call after that, it will contain information about
  290. which keys in the dictionary were added or modified. If a write transaction
  291. did not modify any objects in the dictionary, the block is not called at all.
  292. If an error occurs the block will be called with `nil` for the results
  293. parameter and a non-`nil` error. Currently the only errors that can occur are
  294. when opening the Realm on the background worker thread.
  295. Notifications are delivered on the given queue. If the queue is blocked and
  296. notifications can't be delivered instantly, multiple notifications may be
  297. coalesced into a single notification.
  298. You must retain the returned token for as long as you want updates to continue
  299. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  300. @warning This method cannot be called when the containing Realm is read-only or frozen.
  301. @warning The queue must be a serial queue.
  302. @param block The block to be called whenever a change occurs.
  303. @param queue The serial queue to deliver notifications to.
  304. @return A token which must be held for as long as you want updates to be delivered.
  305. */
  306. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMDictionary<RLMKeyType, RLMObjectType> *_Nullable dictionary,
  307. RLMDictionaryChange *_Nullable changes,
  308. NSError *_Nullable error))block
  309. queue:(nullable dispatch_queue_t)queue
  310. __attribute__((warn_unused_result));
  311. /**
  312. Registers a block to be called each time the dictionary changes.
  313. The block will be asynchronously called with the initial dictionary, and then
  314. called again after each write transaction which changes any of the key-value in
  315. the dictionary or which objects are in the results.
  316. The `changes` parameter will be `nil` the first time the block is called.
  317. For each call after that, it will contain information about
  318. which keys in the dictionary were added or modified. If a write transaction
  319. did not modify any objects in the dictionary, the block is not called at all.
  320. If an error occurs the block will be called with `nil` for the results
  321. parameter and a non-`nil` error. Currently the only errors that can occur are
  322. when opening the Realm on the background worker thread.
  323. Notifications are delivered on the given queue. If the queue is blocked and
  324. notifications can't be delivered instantly, multiple notifications may be
  325. coalesced into a single notification.
  326. You must retain the returned token for as long as you want updates to continue
  327. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  328. @warning This method cannot be called when the containing Realm is read-only or frozen.
  329. @warning The queue must be a serial queue.
  330. @param block The block to be called whenever a change occurs.
  331. @param keyPaths The block will be called for changes occuring on these keypaths. If no
  332. key paths are given, notifications are delivered for every property key path.
  333. @return A token which must be held for as long as you want updates to be delivered.
  334. */
  335. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMDictionary<RLMKeyType, RLMObjectType> *_Nullable dictionary,
  336. RLMDictionaryChange *_Nullable changes,
  337. NSError *_Nullable error))block
  338. keyPaths:(nullable NSArray<NSString *> *)keyPaths
  339. queue:(nullable dispatch_queue_t)queue
  340. __attribute__((warn_unused_result));
  341. /**
  342. Registers a block to be called each time the dictionary changes.
  343. The block will be asynchronously called with the initial dictionary, and then
  344. called again after each write transaction which changes any of the key-value in
  345. the dictionary or which objects are in the results.
  346. The `changes` parameter will be `nil` the first time the block is called.
  347. For each call after that, it will contain information about
  348. which keys in the dictionary were added or modified. If a write transaction
  349. did not modify any objects in the dictionary, the block is not called at all.
  350. If an error occurs the block will be called with `nil` for the results
  351. parameter and a non-`nil` error. Currently the only errors that can occur are
  352. when opening the Realm on the background worker thread.
  353. You must retain the returned token for as long as you want updates to continue
  354. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  355. @warning This method cannot be called when the containing Realm is read-only or frozen.
  356. @warning The queue must be a serial queue.
  357. @param block The block to be called whenever a change occurs.
  358. @param keyPaths The block will be called for changes occuring on these keypaths. If no
  359. key paths are given, notifications are delivered for every property key path.
  360. @return A token which must be held for as long as you want updates to be delivered.
  361. */
  362. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMDictionary<RLMKeyType, RLMObjectType> *_Nullable dictionary,
  363. RLMDictionaryChange *_Nullable changes,
  364. NSError *_Nullable error))block
  365. keyPaths:(nullable NSArray<NSString *> *)keyPaths
  366. __attribute__((warn_unused_result));
  367. #pragma mark - Freeze
  368. /**
  369. Returns a frozen (immutable) snapshot of a dictionary.
  370. The frozen copy is an immutable dictionary which contains the same data as this
  371. dictionary currently contains, but will not update when writes are made to the
  372. containing Realm. Unlike live dictionaries, frozen dictionaries can be accessed from any
  373. thread.
  374. @warning This method cannot be called during a write transaction, or when the
  375. containing Realm is read-only.
  376. @warning This method may only be called on a managed dictionary.
  377. @warning Holding onto a frozen dictionary for an extended period while performing
  378. write transaction on the Realm may result in the Realm file growing
  379. to large sizes. See `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. #pragma mark - Unavailable Methods
  390. /**
  391. `-[RLMDictionary init]` is not available because `RLMDictionary`s cannot be created directly.
  392. `RLMDictionary` properties on `RLMObject`s are lazily created when accessed.
  393. */
  394. - (instancetype)init __attribute__((unavailable("RLMDictionary cannot be created directly")));
  395. /**
  396. `+[RLMDictionary new]` is not available because `RLMDictionary`s cannot be created directly.
  397. `RLMDictionary` properties on `RLMObject`s are lazily created when accessed.
  398. */
  399. + (instancetype)new __attribute__((unavailable("RLMDictionary cannot be created directly")));
  400. @end
  401. /**
  402. A `RLMDictionaryChange` object encapsulates information about changes to dictionaries
  403. that are reported by Realm notifications.
  404. `RLMDictionaryChange` is passed to the notification blocks registered with
  405. `-addNotificationBlock` on `RLMDictionary`, and reports what keys in the
  406. dictionary changed since the last time the notification block was called.
  407. */
  408. @interface RLMDictionaryChange : NSObject
  409. /// The keys in the new version of the dictionary which were newly inserted.
  410. @property (nonatomic, readonly) NSArray<id> *insertions;
  411. /// The keys in the new version of the dictionary which were modified.
  412. @property (nonatomic, readonly) NSArray<id> *modifications;
  413. /// The keys which were deleted from the old version.
  414. @property (nonatomic, readonly) NSArray<id> *deletions;
  415. @end
  416. NS_ASSUME_NONNULL_END