RLMProperty.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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/RLMConstants.h>
  19. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  20. /// :nodoc:
  21. @protocol RLMInt @end
  22. /// :nodoc:
  23. @protocol RLMBool @end
  24. /// :nodoc:
  25. @protocol RLMDouble @end
  26. /// :nodoc:
  27. @protocol RLMFloat @end
  28. /// :nodoc:
  29. @protocol RLMString @end
  30. /// :nodoc:
  31. @protocol RLMDate @end
  32. /// :nodoc:
  33. @protocol RLMData @end
  34. /// :nodoc:
  35. @protocol RLMDecimal128 @end
  36. /// :nodoc:
  37. @protocol RLMObjectId @end
  38. /// :nodoc:
  39. @protocol RLMUUID @end
  40. /// :nodoc:
  41. @interface NSNumber ()<RLMInt, RLMBool, RLMDouble, RLMFloat>
  42. @end
  43. /**
  44. `RLMProperty` instances represent properties managed by a Realm in the context
  45. of an object schema. Such properties may be persisted to a Realm file or
  46. computed from other data from the Realm.
  47. When using Realm, `RLMProperty` instances allow performing migrations and
  48. introspecting the database's schema.
  49. These property instances map to columns in the core database.
  50. */
  51. RLM_SWIFT_SENDABLE RLM_FINAL // not actually immutable, but the public API kinda is
  52. @interface RLMProperty : NSObject
  53. #pragma mark - Properties
  54. /**
  55. The name of the property.
  56. */
  57. @property (nonatomic, readonly) NSString *name;
  58. /**
  59. The type of the property.
  60. @see `RLMPropertyType`
  61. */
  62. @property (nonatomic, readonly) RLMPropertyType type;
  63. /**
  64. Indicates whether this property is indexed.
  65. @see `RLMObject`
  66. */
  67. @property (nonatomic, readonly) BOOL indexed;
  68. /**
  69. For `RLMObject` and `RLMCollection` properties, the name of the class of object stored in the property.
  70. */
  71. @property (nonatomic, readonly, copy, nullable) NSString *objectClassName;
  72. /**
  73. For linking objects properties, the property name of the property the linking objects property is linked to.
  74. */
  75. @property (nonatomic, readonly, copy, nullable) NSString *linkOriginPropertyName;
  76. /**
  77. Indicates whether this property is optional.
  78. */
  79. @property (nonatomic, readonly) BOOL optional;
  80. /**
  81. Indicates whether this property is an array.
  82. */
  83. @property (nonatomic, readonly) BOOL array;
  84. /**
  85. Indicates whether this property is a set.
  86. */
  87. @property (nonatomic, readonly) BOOL set;
  88. /**
  89. Indicates whether this property is a dictionary.
  90. */
  91. @property (nonatomic, readonly) BOOL dictionary;
  92. /**
  93. Indicates whether this property is an array or set.
  94. */
  95. @property (nonatomic, readonly) BOOL collection;
  96. #pragma mark - Methods
  97. /**
  98. Returns whether a given property object is equal to the receiver.
  99. */
  100. - (BOOL)isEqualToProperty:(RLMProperty *)property;
  101. @end
  102. /**
  103. An `RLMPropertyDescriptor` instance represents a specific property on a given class.
  104. */
  105. @interface RLMPropertyDescriptor : NSObject
  106. /**
  107. Creates and returns a property descriptor.
  108. @param objectClass The class of this property descriptor.
  109. @param propertyName The name of this property descriptor.
  110. */
  111. + (instancetype)descriptorWithClass:(Class)objectClass propertyName:(NSString *)propertyName;
  112. /// The class of the property.
  113. @property (nonatomic, readonly) Class objectClass;
  114. /// The name of the property.
  115. @property (nonatomic, readonly) NSString *propertyName;
  116. @end
  117. RLM_HEADER_AUDIT_END(nullability, sendability)