RLMObjectBase.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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. NS_ASSUME_NONNULL_BEGIN
  20. @class RLMRealm;
  21. @class RLMSchema;
  22. @class RLMObjectSchema;
  23. /// :nodoc:
  24. @interface RLMObjectBase : NSObject
  25. @property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated;
  26. - (instancetype)init NS_DESIGNATED_INITIALIZER;
  27. + (NSString *)className;
  28. // Returns whether the class is included in the default set of classes managed by a Realm.
  29. + (BOOL)shouldIncludeInDefaultSchema;
  30. + (nullable NSString *)_realmObjectName;
  31. + (nullable NSDictionary<NSString *, NSString *> *)_realmColumnNames;
  32. @end
  33. /**
  34. `Object` is a class used to define Realm model objects.
  35. In Realm you define your model classes by subclassing `Object` and adding properties to be managed.
  36. You then instantiate and use your custom subclasses instead of using the `Object` class directly.
  37. ```swift
  38. class Dog: Object {
  39. @objc dynamic var name: String = ""
  40. @objc dynamic var adopted: Bool = false
  41. let siblings = List<Dog>()
  42. }
  43. ```
  44. ### Supported property types
  45. - `String`, `NSString`
  46. - `Int`
  47. - `Int8`, `Int16`, `Int32`, `Int64`
  48. - `Float`
  49. - `Double`
  50. - `Bool`
  51. - `Date`, `NSDate`
  52. - `Data`, `NSData`
  53. - `Decimal128`
  54. - `ObjectId`
  55. - `@objc enum` which has been delcared as conforming to `RealmEnum`.
  56. - `RealmOptional<Value>` for optional numeric properties
  57. - `Object` subclasses, to model many-to-one relationships
  58. - `EmbeddedObject` subclasses, to model owning one-to-one relationships
  59. - `List<Element>`, to model many-to-many relationships
  60. `String`, `NSString`, `Date`, `NSDate`, `Data`, `NSData`, `Decimal128`, and `ObjectId` properties
  61. can be declared as optional. `Object` and `EmbeddedObject` subclasses *must* be declared as optional.
  62. `Int`, `Int8`, `Int16`, `Int32`, `Int64`, `Float`, `Double`, `Bool`, enum, and `List` properties cannot.
  63. To store an optional number, use `RealmOptional<Int>`, `RealmOptional<Float>`, `RealmOptional<Double>`, or
  64. `RealmOptional<Bool>` instead, which wraps an optional numeric value. Lists cannot be optional at all.
  65. All property types except for `List` and `RealmOptional` *must* be declared as `@objc dynamic var`. `List` and
  66. `RealmOptional` properties must be declared as non-dynamic `let` properties. Swift `lazy` properties are not allowed.
  67. Note that none of the restrictions listed above apply to properties that are configured to be ignored by Realm.
  68. ### Querying
  69. You can retrieve all objects of a given type from a Realm by calling the `objects(_:)` instance method.
  70. ### Relationships
  71. See our [Cocoa guide](http://realm.io/docs/cocoa) for more details.
  72. */
  73. @interface RealmSwiftObject : RLMObjectBase
  74. @end
  75. /**
  76. `EmbeddedObject` is a base class used to define embedded Realm model objects.
  77. Embedded objects work similarly to normal objects, but are owned by a single
  78. parent Object (which itself may be embedded). Unlike normal top-level objects,
  79. embedded objects cannot be directly created in or added to a Realm. Instead,
  80. they can only be created as part of a parent object, or by assigning an
  81. unmanaged object to a parent object's property. Embedded objects are
  82. automatically deleted when the parent object is deleted or when the parent is
  83. modified to no longer point at the embedded object, either by reassigning an
  84. Object property or by removing the embedded object from the List containing it.
  85. Embedded objects can only ever have a single parent object which links to
  86. them, and attempting to link to an existing managed embedded object will throw
  87. an exception.
  88. The property types supported on `EmbeddedObject` are the same as for `Object`,
  89. except for that embedded objects cannot link to top-level objects, so `Object`
  90. and `List<Object>` properties are not supported (`EmbeddedObject` and
  91. `List<EmbeddedObject>` *are*).
  92. Embedded objects cannot have primary keys or indexed properties.
  93. ```swift
  94. class Owner: Object {
  95. @objc dynamic var name: String = ""
  96. let dogs = List<Dog>()
  97. }
  98. class Dog: EmbeddedObject {
  99. @objc dynamic var name: String = ""
  100. @objc dynamic var adopted: Bool = false
  101. let owner = LinkingObjects(fromType: Owner.self, property: "dogs")
  102. }
  103. ```
  104. */
  105. @interface RealmSwiftEmbeddedObject : RLMObjectBase
  106. @end
  107. NS_ASSUME_NONNULL_END