RealmProperty.swift 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2021 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
  19. import Realm
  20. /**
  21. A `RealmProperty` instance represents an polymorphic value for supported types.
  22. To change the underlying value stored by a `RealmProperty` instance, mutate the instance's `value` property.
  23. - Note:
  24. An `RealmProperty` should not be declared as `@objc dynamic` on a Realm Object. Use `let` instead.
  25. */
  26. public final class RealmProperty<Value: RealmPropertyType>: RLMSwiftValueStorage where Value: _RealmSchemaDiscoverable {
  27. /**
  28. Used for getting / setting the underlying value.
  29. - Usage:
  30. ```
  31. class MyObject: Object {
  32. let myAnyValue = RealmProperty<AnyRealmValue>()
  33. }
  34. // Setting
  35. myObject.myAnyValue.value = .string("hello")
  36. // Getting
  37. if case let .string(s) = myObject.myAnyValue.value {
  38. print(s) // Prints 'Hello'
  39. }
  40. ```
  41. */
  42. public var value: Value {
  43. get {
  44. dynamicBridgeCast(fromObjectiveC: RLMGetSwiftValueStorage(self) ?? NSNull())
  45. }
  46. set {
  47. RLMSetSwiftValueStorage(self, dynamicBridgeCast(fromSwift: newValue))
  48. }
  49. }
  50. /// :nodoc:
  51. @objc public override var description: String {
  52. String(describing: value)
  53. }
  54. }
  55. extension RealmProperty: Equatable where Value: Equatable {
  56. public static func == (lhs: RealmProperty<Value>, rhs: RealmProperty<Value>) -> Bool {
  57. return lhs.value == rhs.value
  58. }
  59. }
  60. extension RealmProperty: Codable where Value: Codable, Value: _RealmSchemaDiscoverable {
  61. public convenience init(from decoder: Decoder) throws {
  62. self.init()
  63. self.value = try decoder.decodeOptional(Value.self)
  64. }
  65. public func encode(to encoder: Encoder) throws {
  66. try self.value.encode(to: encoder)
  67. }
  68. }
  69. /// A protocol describing types that can parameterize a `RealmPropertyType`.
  70. public protocol RealmPropertyType { }
  71. extension AnyRealmValue: RealmPropertyType { }
  72. extension Optional: RealmPropertyType where Wrapped: RealmOptionalType { }
  73. extension Optional {
  74. /// :nodoc:
  75. public static func _nilValue() -> Self {
  76. return .none
  77. }
  78. }