RLMObject_Private.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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/RLMObjectBase_Dynamic.h>
  19. NS_ASSUME_NONNULL_BEGIN
  20. @class RLMProperty, RLMArray;
  21. typedef NS_ENUM(int32_t, RLMPropertyType);
  22. FOUNDATION_EXTERN void RLMInitializeWithValue(RLMObjectBase *, id, RLMSchema *);
  23. // RLMObject accessor and read/write realm
  24. @interface RLMObjectBase () {
  25. @public
  26. RLMRealm *_realm;
  27. __unsafe_unretained RLMObjectSchema *_objectSchema;
  28. }
  29. // shared schema for this class
  30. + (nullable RLMObjectSchema *)sharedSchema;
  31. + (nullable NSArray<RLMProperty *> *)_getProperties;
  32. + (bool)_realmIgnoreClass;
  33. @end
  34. @interface RLMDynamicObject : RLMObject
  35. @end
  36. // Calls valueForKey: and re-raises NSUndefinedKeyExceptions
  37. FOUNDATION_EXTERN id _Nullable RLMValidatedValueForProperty(id object, NSString *key, NSString *className);
  38. // Compare two RLObjectBases
  39. FOUNDATION_EXTERN BOOL RLMObjectBaseAreEqual(RLMObjectBase * _Nullable o1, RLMObjectBase * _Nullable o2);
  40. typedef void (^RLMObjectNotificationCallback)(RLMObjectBase *_Nullable object,
  41. NSArray<NSString *> *_Nullable propertyNames,
  42. NSArray *_Nullable oldValues,
  43. NSArray *_Nullable newValues,
  44. NSError *_Nullable error);
  45. FOUNDATION_EXTERN RLMNotificationToken *RLMObjectBaseAddNotificationBlock(RLMObjectBase *obj,
  46. NSArray<NSString *> *_Nullable key_paths,
  47. dispatch_queue_t _Nullable queue,
  48. RLMObjectNotificationCallback block);
  49. RLMNotificationToken *RLMObjectAddNotificationBlock(RLMObjectBase *obj,
  50. RLMObjectChangeBlock block,
  51. NSArray<NSString *> *_Nullable key_paths,
  52. dispatch_queue_t _Nullable queue);
  53. // Returns whether the class is a descendent of RLMObjectBase
  54. FOUNDATION_EXTERN BOOL RLMIsObjectOrSubclass(Class klass);
  55. // Returns whether the class is an indirect descendant of RLMObjectBase
  56. FOUNDATION_EXTERN BOOL RLMIsObjectSubclass(Class klass);
  57. FOUNDATION_EXTERN const NSUInteger RLMDescriptionMaxDepth;
  58. FOUNDATION_EXTERN id RLMObjectFreeze(RLMObjectBase *obj) NS_RETURNS_RETAINED;
  59. FOUNDATION_EXTERN id RLMObjectThaw(RLMObjectBase *obj);
  60. // Gets an object identifier suitable for use with Combine. This value may
  61. // change when an unmanaged object is added to the Realm.
  62. FOUNDATION_EXTERN uint64_t RLMObjectBaseGetCombineId(RLMObjectBase *);
  63. // An accessor object which is used to interact with Swift properties from obj-c
  64. @interface RLMManagedPropertyAccessor : NSObject
  65. // Perform any initialization required for KVO on a *unmanaged* object
  66. + (void)observe:(RLMProperty *)property on:(RLMObjectBase *)parent;
  67. // Initialize the given property on a *managed* object which previous was unmanaged
  68. + (void)promote:(RLMProperty *)property on:(RLMObjectBase *)parent;
  69. // Initialize the given property on a newly created *managed* object
  70. + (void)initialize:(RLMProperty *)property on:(RLMObjectBase *)parent;
  71. // Read the value of the property, on either kind of object
  72. + (id)get:(RLMProperty *)property on:(RLMObjectBase *)parent;
  73. // Set the property to the given value, on either kind of object
  74. + (void)set:(RLMProperty *)property on:(RLMObjectBase *)parent to:(id)value;
  75. @end
  76. NS_ASSUME_NONNULL_END