RLMEmbeddedObject.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2020 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 <Foundation/Foundation.h>
  19. #import <Realm/RLMObjectBase.h>
  20. #import <Realm/RLMThreadSafeReference.h>
  21. NS_ASSUME_NONNULL_BEGIN
  22. @class RLMObjectSchema, RLMPropertyDescriptor, RLMRealm, RLMNotificationToken, RLMPropertyChange;
  23. typedef void (^RLMObjectChangeBlock)(BOOL deleted,
  24. NSArray<RLMPropertyChange *> *_Nullable changes,
  25. NSError *_Nullable error);
  26. /**
  27. `RLMEmbeddedObject` is a base class used to define Realm model objects.
  28. Embedded objects work similarly to normal objects, but are owned by a single
  29. parent Object (which itself may be embedded). Unlike normal top-level objects,
  30. embedded objects cannot be directly created in or added to a Realm. Instead,
  31. they can only be created as part of a parent object, or by assigning an
  32. unmanaged object to a parent object's property. Embedded objects are
  33. automatically deleted when the parent object is deleted or when the parent is
  34. modified to no longer point at the embedded object, either by reassigning an
  35. RLMObject property or by removing the embedded object from the array containing
  36. it.
  37. Embedded objects can only ever have a single parent object which links to them,
  38. and attempting to link to an existing managed embedded object will throw an
  39. exception.
  40. The property types supported on `RLMEmbeddedObject` are the same as for
  41. `RLMObject`, except for that embedded objects cannot link to top-level objects,
  42. so `RLMObject` and `RLMArray<RLMObject>` properties are not supported
  43. (`RLMEmbeddedObject` and `RLMArray<RLMEmbeddedObject>` *are*).
  44. Embedded objects cannot have primary keys or indexed properties.
  45. */
  46. @interface RLMEmbeddedObject : RLMObjectBase <RLMThreadConfined>
  47. #pragma mark - Creating & Initializing Objects
  48. /**
  49. Creates an unmanaged instance of a Realm object.
  50. Unmanaged embedded objects can be added to a Realm by assigning them to an
  51. object property of a managed Realm object or by adding them to a managed
  52. RLMArray.
  53. */
  54. - (instancetype)init NS_DESIGNATED_INITIALIZER;
  55. /**
  56. Creates an unmanaged instance of a Realm object.
  57. Pass in an `NSArray` or `NSDictionary` instance to set the values of the object's properties.
  58. Unmanaged embedded objects can be added to a Realm by assigning them to an
  59. object property of a managed Realm object or by adding them to a managed
  60. RLMArray.
  61. */
  62. - (instancetype)initWithValue:(id)value;
  63. /**
  64. Returns the class name for a Realm object subclass.
  65. @warning Do not override. Realm relies on this method returning the exact class
  66. name.
  67. @return The class name for the model class.
  68. */
  69. + (NSString *)className;
  70. #pragma mark - Properties
  71. /**
  72. The Realm which manages the object, or `nil` if the object is unmanaged.
  73. */
  74. @property (nonatomic, readonly, nullable) RLMRealm *realm;
  75. /**
  76. The object schema which lists the managed properties for the object.
  77. */
  78. @property (nonatomic, readonly) RLMObjectSchema *objectSchema;
  79. /**
  80. Indicates if the object can no longer be accessed because it is now invalid.
  81. An object can no longer be accessed if the object has been deleted from the Realm that manages it, or
  82. if `invalidate` is called on that Realm.
  83. */
  84. @property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated;
  85. /**
  86. Indicates if this object is frozen.
  87. @see `-[RLMEmbeddedObject freeze]`
  88. */
  89. @property (nonatomic, readonly, getter = isFrozen) BOOL frozen;
  90. #pragma mark - Customizing your Objects
  91. /**
  92. Override this method to specify the default values to be used for each property.
  93. @return A dictionary mapping property names to their default values.
  94. */
  95. + (nullable NSDictionary *)defaultPropertyValues;
  96. /**
  97. Override this method to specify the names of properties to ignore. These properties will not be managed by the Realm
  98. that manages the object.
  99. @return An array of property names to ignore.
  100. */
  101. + (nullable NSArray<NSString *> *)ignoredProperties;
  102. /**
  103. Override this method to specify the names of properties that are non-optional (i.e. cannot be assigned a `nil` value).
  104. By default, all properties of a type whose values can be set to `nil` are
  105. considered optional properties. To require that an object in a Realm always
  106. store a non-`nil` value for a property, add the name of the property to the
  107. array returned from this method.
  108. Properties of `RLMEmbeddedObject` type cannot be non-optional. Array and
  109. `NSNumber` properties can be non-optional, but there is no reason to do so:
  110. arrays do not support storing nil, and if you want a non-optional number you
  111. should instead use the primitive type.
  112. @return An array of property names that are required.
  113. */
  114. + (NSArray<NSString *> *)requiredProperties;
  115. /**
  116. Override this method to provide information related to properties containing linking objects.
  117. Each property of type `RLMLinkingObjects` must have a key in the dictionary returned by this method consisting
  118. of the property name. The corresponding value must be an instance of `RLMPropertyDescriptor` that describes the class
  119. and property that the property is linked to.
  120. return @{ @"owners": [RLMPropertyDescriptor descriptorWithClass:Owner.class propertyName:@"dogs"] };
  121. @return A dictionary mapping property names to `RLMPropertyDescriptor` instances.
  122. */
  123. + (NSDictionary<NSString *, RLMPropertyDescriptor *> *)linkingObjectsProperties;
  124. #pragma mark - Notifications
  125. /**
  126. Registers a block to be called each time the object changes.
  127. The block will be asynchronously called after each write transaction which
  128. deletes the object or modifies any of the managed properties of the object,
  129. including self-assignments that set a property to its existing value.
  130. For write transactions performed on different threads or in differen
  131. processes, the block will be called when the managing Realm is
  132. (auto)refreshed to a version including the changes, while for local write
  133. transactions it will be called at some point in the future after the write
  134. transaction is committed.
  135. Notifications are delivered via the standard run loop, and so can't be
  136. delivered while the run loop is blocked by other activity. When notifications
  137. can't be delivered instantly, multiple notifications may be coalesced into a
  138. single notification.
  139. Unlike with `RLMArray` and `RLMResults`, there is no "initial" callback made
  140. after you add a new notification block.
  141. Only objects which are managed by a Realm can be observed in this way. You
  142. must retain the returned token for as long as you want updates to be sent to
  143. the block. To stop receiving updates, call `-invalidate` on the token.
  144. It is safe to capture a strong reference to the observed object within the
  145. callback block. There is no retain cycle due to that the callback is retained
  146. by the returned token and not by the object itself.
  147. @warning This method cannot be called during a write transaction, when the
  148. containing Realm is read-only, or on an unmanaged object.
  149. @param block The block to be called whenever a change occurs.
  150. @return A token which must be held for as long as you want updates to be delivered.
  151. */
  152. - (RLMNotificationToken *)addNotificationBlock:(RLMObjectChangeBlock)block;
  153. /**
  154. Registers a block to be called each time the object changes.
  155. The block will be asynchronously called after each write transaction which
  156. deletes the object or modifies any of the managed properties of the object,
  157. including self-assignments that set a property to its existing value.
  158. For write transactions performed on different threads or in different
  159. processes, the block will be called when the managing Realm is
  160. (auto)refreshed to a version including the changes, while for local write
  161. transactions it will be called at some point in the future after the write
  162. transaction is committed.
  163. Notifications are delivered on the given queue. If the queue is blocked and
  164. notifications can't be delivered instantly, multiple notifications may be
  165. coalesced into a single notification.
  166. Unlike with `RLMArray` and `RLMResults`, there is no "initial" callback made
  167. after you add a new notification block.
  168. Only objects which are managed by a Realm can be observed in this way. You
  169. must retain the returned token for as long as you want updates to be sent to
  170. the block. To stop receiving updates, call `-invalidate` on the token.
  171. It is safe to capture a strong reference to the observed object within the
  172. callback block. There is no retain cycle due to that the callback is retained
  173. by the returned token and not by the object itself.
  174. @warning This method cannot be called during a write transaction, when the
  175. containing Realm is read-only, or on an unmanaged object.
  176. @warning The queue must be a serial queue.
  177. @param block The block to be called whenever a change occurs.
  178. @param queue The serial queue to deliver notifications to.
  179. @return A token which must be held for as long as you want updates to be delivered.
  180. */
  181. - (RLMNotificationToken *)addNotificationBlock:(RLMObjectChangeBlock)block queue:(dispatch_queue_t)queue;
  182. /**
  183. Registers a block to be called each time the object changes.
  184. The block will be asynchronously called after each write transaction which
  185. deletes the object or modifies any of the managed properties of the object,
  186. including self-assignments that set a property to its existing value.
  187. For write transactions performed on different threads or in different
  188. processes, the block will be called when the managing Realm is
  189. (auto)refreshed to a version including the changes, while for local write
  190. transactions it will be called at some point in the future after the write
  191. transaction is committed.
  192. Notifications are delivered on the given queue. If the queue is blocked and
  193. notifications can't be delivered instantly, multiple notifications may be
  194. coalesced into a single notification.
  195. Unlike with `RLMArray` and `RLMResults`, there is no "initial" callback made
  196. after you add a new notification block.
  197. Only objects which are managed by a Realm can be observed in this way. You
  198. must retain the returned token for as long as you want updates to be sent to
  199. the block. To stop receiving updates, call `-invalidate` on the token.
  200. It is safe to capture a strong reference to the observed object within the
  201. callback block. There is no retain cycle due to that the callback is retained
  202. by the returned token and not by the object itself.
  203. @warning This method cannot be called during a write transaction, when the
  204. containing Realm is read-only, or on an unmanaged object.
  205. @warning The queue must be a serial queue.
  206. @param block The block to be called whenever a change occurs.
  207. @param keyPaths The block will be called for changes occuring on these keypaths. If no
  208. key paths are given, notifications are delivered for every property key path.
  209. @param queue The serial queue to deliver notifications to.
  210. @return A token which must be held for as long as you want updates to be delivered.
  211. */
  212. - (RLMNotificationToken *)addNotificationBlock:(RLMObjectChangeBlock)block keyPaths:(NSArray<NSString *> *)keyPaths queue:(dispatch_queue_t)queue;
  213. /**
  214. Registers a block to be called each time the object changes.
  215. The block will be asynchronously called after each write transaction which
  216. deletes the object or modifies any of the managed properties of the object,
  217. including self-assignments that set a property to its existing value.
  218. For write transactions performed on different threads or in different
  219. processes, the block will be called when the managing Realm is
  220. (auto)refreshed to a version including the changes, while for local write
  221. transactions it will be called at some point in the future after the write
  222. transaction is committed.
  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. Unlike with `RLMArray` and `RLMResults`, there is no "initial" callback made
  227. after you add a new notification block.
  228. Only objects which are managed by a Realm can be observed in this way. You
  229. must retain the returned token for as long as you want updates to be sent to
  230. the block. To stop receiving updates, call `-invalidate` on the token.
  231. It is safe to capture a strong reference to the observed object within the
  232. callback block. There is no retain cycle due to that the callback is retained
  233. by the returned token and not by the object itself.
  234. @warning This method cannot be called during a write transaction, when the
  235. containing Realm is read-only, or on an unmanaged object.
  236. @warning The queue must be a serial queue.
  237. @param block The block to be called whenever a change occurs.
  238. @param keyPaths The block will be called for changes occuring on these keypaths. If no
  239. key paths are given, notifications are delivered for every property key path.
  240. @return A token which must be held for as long as you want updates to be delivered.
  241. */
  242. - (RLMNotificationToken *)addNotificationBlock:(RLMObjectChangeBlock)block keyPaths:(NSArray<NSString *> *)keyPaths;
  243. #pragma mark - Other Instance Methods
  244. /**
  245. Returns YES if another Realm object instance points to the same object as the
  246. receiver in the Realm managing the receiver.
  247. For frozen objects and object types with a primary key, `isEqual:` is
  248. overridden to use the same logic as this method (along with a corresponding
  249. implementation for `hash`). Non-frozen objects without primary keys use
  250. pointer identity for `isEqual:` and `hash`.
  251. @param object The object to compare the receiver to.
  252. @return Whether the object represents the same object as the receiver.
  253. */
  254. - (BOOL)isEqualToObject:(RLMEmbeddedObject *)object;
  255. /**
  256. Returns a frozen (immutable) snapshot of this object.
  257. The frozen copy is an immutable object which contains the same data as this
  258. object currently contains, but will not update when writes are made to the
  259. containing Realm. Unlike live objects, frozen objects can be accessed from any
  260. thread.
  261. - warning: Holding onto a frozen object for an extended period while performing write
  262. transaction on the Realm may result in the Realm file growing to large sizes. See
  263. `Realm.Configuration.maximumNumberOfActiveVersions` for more information.
  264. - warning: This method can only be called on a managed object.
  265. */
  266. - (instancetype)freeze NS_RETURNS_RETAINED;
  267. /**
  268. Returns a live (mutable) reference of this object.
  269. This method creates a managed accessor to a live copy of the same frozen object.
  270. Will return self if called on an already live object.
  271. */
  272. - (instancetype)thaw;
  273. #pragma mark - Dynamic Accessors
  274. /// :nodoc:
  275. - (nullable id)objectForKeyedSubscript:(NSString *)key;
  276. /// :nodoc:
  277. - (void)setObject:(nullable id)obj forKeyedSubscript:(NSString *)key;
  278. @end
  279. NS_ASSUME_NONNULL_END