RLMSwiftObject.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2023 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. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  20. /**
  21. `Object` is a class used to define Realm model objects.
  22. In Realm you define your model classes by subclassing `Object` and adding properties to be managed.
  23. You then instantiate and use your custom subclasses instead of using the `Object` class directly.
  24. ```swift
  25. class Dog: Object {
  26. @objc dynamic var name: String = ""
  27. @objc dynamic var adopted: Bool = false
  28. let siblings = List<Dog>()
  29. }
  30. ```
  31. ### Supported property types
  32. - `String`, `NSString`
  33. - `Int`
  34. - `Int8`, `Int16`, `Int32`, `Int64`
  35. - `Float`
  36. - `Double`
  37. - `Bool`
  38. - `Date`, `NSDate`
  39. - `Data`, `NSData`
  40. - `Decimal128`
  41. - `ObjectId`
  42. - `@objc enum` which has been delcared as conforming to `RealmEnum`.
  43. - `RealmOptional<Value>` for optional numeric properties
  44. - `Object` subclasses, to model many-to-one relationships
  45. - `EmbeddedObject` subclasses, to model owning one-to-one relationships
  46. - `List<Element>`, to model many-to-many relationships
  47. `String`, `NSString`, `Date`, `NSDate`, `Data`, `NSData`, `Decimal128`, and `ObjectId` properties
  48. can be declared as optional. `Object` and `EmbeddedObject` subclasses *must* be declared as optional.
  49. `Int`, `Int8`, `Int16`, `Int32`, `Int64`, `Float`, `Double`, `Bool`, enum, and `List` properties cannot.
  50. To store an optional number, use `RealmOptional<Int>`, `RealmOptional<Float>`, `RealmOptional<Double>`, or
  51. `RealmOptional<Bool>` instead, which wraps an optional numeric value. Lists cannot be optional at all.
  52. All property types except for `List` and `RealmOptional` *must* be declared as `@objc dynamic var`. `List` and
  53. `RealmOptional` properties must be declared as non-dynamic `let` properties. Swift `lazy` properties are not allowed.
  54. Note that none of the restrictions listed above apply to properties that are configured to be ignored by Realm.
  55. ### Querying
  56. You can retrieve all objects of a given type from a Realm by calling the `objects(_:)` instance method.
  57. ### Relationships
  58. See our [Objective-C guide](https://docs.mongodb.com/realm/sdk/swift/fundamentals/relationships/) for more details.
  59. */
  60. @interface RealmSwiftObject : RLMObjectBase
  61. @end
  62. /**
  63. `EmbeddedObject` is a base class used to define embedded Realm model objects.
  64. Embedded objects work similarly to normal objects, but are owned by a single
  65. parent Object (which itself may be embedded). Unlike normal top-level objects,
  66. embedded objects cannot be directly created in or added to a Realm. Instead,
  67. they can only be created as part of a parent object, or by assigning an
  68. unmanaged object to a parent object's property. Embedded objects are
  69. automatically deleted when the parent object is deleted or when the parent is
  70. modified to no longer point at the embedded object, either by reassigning an
  71. Object property or by removing the embedded object from the List containing it.
  72. Embedded objects can only ever have a single parent object which links to
  73. them, and attempting to link to an existing managed embedded object will throw
  74. an exception.
  75. The property types supported on `EmbeddedObject` are the same as for `Object`,
  76. except for that embedded objects cannot link to top-level objects, so `Object`
  77. and `List<Object>` properties are not supported (`EmbeddedObject` and
  78. `List<EmbeddedObject>` *are*).
  79. Embedded objects cannot have primary keys or indexed properties.
  80. ```swift
  81. class Owner: Object {
  82. @objc dynamic var name: String = ""
  83. let dogs = List<Dog>()
  84. }
  85. class Dog: EmbeddedObject {
  86. @objc dynamic var name: String = ""
  87. @objc dynamic var adopted: Bool = false
  88. let owner = LinkingObjects(fromType: Owner.self, property: "dogs")
  89. }
  90. ```
  91. */
  92. @interface RealmSwiftEmbeddedObject : RLMObjectBase
  93. @end
  94. /**
  95. `AsymmetricObject` is a base class used to define asymmetric Realm objects.
  96. Asymmetric objects can only be created using the `create(_ object:)`
  97. function, and cannot be added, removed or queried.
  98. When created, asymmetric objects will be synced unidirectionally to the MongoDB
  99. database and cannot be accessed locally.
  100. Incoming links from any asymmetric table are not allowed, meaning embedding
  101. an asymmetric object within an `Object` will throw an error.
  102. The property types supported on `AsymmetricObject` are the same as for `Object`,
  103. except for that asymmetric objects can only link to embedded objects, so `Object`
  104. and `List<Object>` properties are not supported (`EmbeddedObject` and
  105. `List<EmbeddedObject>` *are*).
  106. ```swift
  107. class Person: AsymmetricObject {
  108. @Persisted(primaryKey: true) var _id: ObjectId = ObjectId.generate()
  109. @Persisted var name: String
  110. @Persisted var age: Int
  111. }
  112. ```
  113. */
  114. @interface RealmSwiftAsymmetricObject : RLMObjectBase
  115. @end
  116. RLM_HEADER_AUDIT_END(nullability, sendability)