RLMObject_Private.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  20. @class RLMProperty, RLMArray, RLMSchema;
  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. // This enables to override the propertiesMapping in Swift, it is not to be used in Objective-C API.
  34. + (NSDictionary<NSString *, NSString *> *)propertiesMapping;
  35. @end
  36. @interface RLMDynamicObject : RLMObject
  37. @end
  38. // Calls valueForKey: and re-raises NSUndefinedKeyExceptions
  39. FOUNDATION_EXTERN id _Nullable RLMValidatedValueForProperty(id object, NSString *key, NSString *className);
  40. // Compare two RLObjectBases
  41. FOUNDATION_EXTERN BOOL RLMObjectBaseAreEqual(RLMObjectBase * _Nullable o1, RLMObjectBase * _Nullable o2);
  42. typedef void (^RLMObjectNotificationCallback)(RLMObjectBase *_Nullable object,
  43. NSArray<NSString *> *_Nullable propertyNames,
  44. NSArray *_Nullable oldValues,
  45. NSArray *_Nullable newValues,
  46. NSError *_Nullable error);
  47. FOUNDATION_EXTERN RLMNotificationToken *RLMObjectBaseAddNotificationBlock(RLMObjectBase *obj,
  48. NSArray<NSString *> *_Nullable keyPaths,
  49. dispatch_queue_t _Nullable queue,
  50. RLMObjectNotificationCallback block);
  51. RLMNotificationToken *RLMObjectAddNotificationBlock(RLMObjectBase *obj,
  52. RLMObjectChangeBlock block,
  53. NSArray<NSString *> *_Nullable keyPaths,
  54. dispatch_queue_t _Nullable queue);
  55. // Returns whether the class is a descendent of RLMObjectBase
  56. FOUNDATION_EXTERN BOOL RLMIsObjectOrSubclass(Class klass);
  57. // Returns whether the class is an indirect descendant of RLMObjectBase
  58. FOUNDATION_EXTERN BOOL RLMIsObjectSubclass(Class klass);
  59. FOUNDATION_EXTERN const NSUInteger RLMDescriptionMaxDepth;
  60. FOUNDATION_EXTERN id RLMObjectFreeze(RLMObjectBase *obj) NS_RETURNS_RETAINED;
  61. FOUNDATION_EXTERN id RLMObjectThaw(RLMObjectBase *obj);
  62. // Gets an object identifier suitable for use with Combine. This value may
  63. // change when an unmanaged object is added to the Realm.
  64. FOUNDATION_EXTERN uint64_t RLMObjectBaseGetCombineId(RLMObjectBase *);
  65. // An accessor object which is used to interact with Swift properties from obj-c
  66. @interface RLMManagedPropertyAccessor : NSObject
  67. // Perform any initialization required for KVO on a *unmanaged* object
  68. + (void)observe:(RLMProperty *)property on:(RLMObjectBase *)parent;
  69. // Initialize the given property on a *managed* object which previous was unmanaged
  70. + (void)promote:(RLMProperty *)property on:(RLMObjectBase *)parent;
  71. // Initialize the given property on a newly created *managed* object
  72. + (void)initialize:(RLMProperty *)property on:(RLMObjectBase *)parent;
  73. // Read the value of the property, on either kind of object
  74. + (id)get:(RLMProperty *)property on:(RLMObjectBase *)parent;
  75. // Set the property to the given value, on either kind of object
  76. + (void)set:(RLMProperty *)property on:(RLMObjectBase *)parent to:(id)value;
  77. @end
  78. RLM_HEADER_AUDIT_END(nullability, sendability)