RLMEmbeddedObject.h 15 KB

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