RLMObjectStore.h 3.1 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 <Foundation/Foundation.h>
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. @class RLMRealm, RLMSchema, RLMObjectBase, RLMResults, RLMProperty;
  23. typedef NS_ENUM(NSUInteger, RLMUpdatePolicy) {
  24. RLMUpdatePolicyError = 1,
  25. RLMUpdatePolicyUpdateChanged = 3,
  26. RLMUpdatePolicyUpdateAll = 2,
  27. };
  28. NS_ASSUME_NONNULL_BEGIN
  29. void RLMVerifyHasPrimaryKey(Class cls);
  30. void RLMVerifyInWriteTransaction(RLMRealm *const realm);
  31. //
  32. // Accessor Creation
  33. //
  34. // create or get cached accessors for the given schema
  35. void RLMRealmCreateAccessors(RLMSchema *schema);
  36. //
  37. // Adding, Removing, Getting Objects
  38. //
  39. // add an object to the given realm
  40. void RLMAddObjectToRealm(RLMObjectBase *object, RLMRealm *realm, RLMUpdatePolicy);
  41. // delete an object from its realm
  42. void RLMDeleteObjectFromRealm(RLMObjectBase *object, RLMRealm *realm);
  43. // deletes all objects from a realm
  44. void RLMDeleteAllObjectsFromRealm(RLMRealm *realm);
  45. // get objects of a given class
  46. RLMResults *RLMGetObjects(RLMRealm *realm, NSString *objectClassName, NSPredicate * _Nullable predicate)
  47. NS_RETURNS_RETAINED;
  48. // get an object with the given primary key
  49. id _Nullable RLMGetObject(RLMRealm *realm, NSString *objectClassName, id _Nullable key) NS_RETURNS_RETAINED;
  50. // create object from array or dictionary
  51. RLMObjectBase *RLMCreateObjectInRealmWithValue(RLMRealm *realm, NSString *className,
  52. id _Nullable value, RLMUpdatePolicy updatePolicy)
  53. NS_RETURNS_RETAINED;
  54. //
  55. // Accessor Creation
  56. //
  57. // Perform the per-property accessor initialization for a managed RealmSwiftObject
  58. // promotingExisting should be true if the object was previously used as an
  59. // unmanaged object, and false if it is a newly created object.
  60. void RLMInitializeSwiftAccessor(RLMObjectBase *object, bool promotingExisting);
  61. #ifdef __cplusplus
  62. }
  63. namespace realm {
  64. class Table;
  65. class Obj;
  66. struct ObjLink;
  67. }
  68. class RLMClassInfo;
  69. // get an object with a given table & object key
  70. RLMObjectBase *RLMObjectFromObjLink(RLMRealm *realm,
  71. realm::ObjLink&& objLink,
  72. bool parentIsSwiftObject) NS_RETURNS_RETAINED;
  73. // Create accessors
  74. RLMObjectBase *RLMCreateObjectAccessor(RLMClassInfo& info, int64_t key) NS_RETURNS_RETAINED;
  75. RLMObjectBase *RLMCreateObjectAccessor(RLMClassInfo& info, realm::Obj&& obj) NS_RETURNS_RETAINED;
  76. #endif
  77. NS_ASSUME_NONNULL_END