RLMConstants.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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 NS_HEADER_AUDIT_BEGIN
  20. #define RLM_HEADER_AUDIT_BEGIN NS_HEADER_AUDIT_BEGIN
  21. #define RLM_HEADER_AUDIT_END NS_HEADER_AUDIT_END
  22. #else
  23. #define RLM_HEADER_AUDIT_BEGIN(...) NS_ASSUME_NONNULL_BEGIN
  24. #define RLM_HEADER_AUDIT_END(...) NS_ASSUME_NONNULL_END
  25. #endif
  26. #ifdef NS_SWIFT_SENDABLE
  27. #define RLM_SWIFT_SENDABLE NS_SWIFT_SENDABLE
  28. #else
  29. #define RLM_SWIFT_SENDABLE
  30. #endif
  31. #define RLM_FINAL __attribute__((objc_subclassing_restricted))
  32. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  33. // Swift 5 considers NS_ENUM to be "open", meaning there could be values present
  34. // other than the defined cases (which allows adding more cases later without
  35. // it being a breaking change), while older versions consider it "closed".
  36. #ifdef NS_CLOSED_ENUM
  37. #define RLM_CLOSED_ENUM NS_CLOSED_ENUM
  38. #else
  39. #define RLM_CLOSED_ENUM NS_ENUM
  40. #endif
  41. #if __has_attribute(ns_error_domain) && (!defined(__cplusplus) || !__cplusplus || __cplusplus >= 201103L)
  42. #define RLM_ERROR_ENUM(type, name, domain) \
  43. _Pragma("clang diagnostic push") \
  44. _Pragma("clang diagnostic ignored \"-Wignored-attributes\"") \
  45. NS_ENUM(type, __attribute__((ns_error_domain(domain))) name) \
  46. _Pragma("clang diagnostic pop")
  47. #else
  48. #define RLM_ERROR_ENUM(type, name, domain) NS_ENUM(type, name)
  49. #endif
  50. #define REALM_HIDDEN __attribute__((visibility("hidden")))
  51. #pragma mark - Enums
  52. /**
  53. `RLMPropertyType` is an enumeration describing all property types supported in Realm models.
  54. For more information, see [Realm Models](https://www.mongodb.com/docs/realm/sdk/swift/fundamentals/object-models-and-schemas/).
  55. */
  56. typedef RLM_CLOSED_ENUM(int32_t, RLMPropertyType) {
  57. #pragma mark - Primitive types
  58. /** Integers: `NSInteger`, `int`, `long`, `Int` (Swift) */
  59. RLMPropertyTypeInt = 0,
  60. /** Booleans: `BOOL`, `bool`, `Bool` (Swift) */
  61. RLMPropertyTypeBool = 1,
  62. /** Floating-point numbers: `float`, `Float` (Swift) */
  63. RLMPropertyTypeFloat = 5,
  64. /** Double-precision floating-point numbers: `double`, `Double` (Swift) */
  65. RLMPropertyTypeDouble = 6,
  66. /** NSUUID, UUID */
  67. RLMPropertyTypeUUID = 12,
  68. #pragma mark - Object types
  69. /** Strings: `NSString`, `String` (Swift) */
  70. RLMPropertyTypeString = 2,
  71. /** Binary data: `NSData` */
  72. RLMPropertyTypeData = 3,
  73. /** Any type: `id<RLMValue>`, `AnyRealmValue` (Swift) */
  74. RLMPropertyTypeAny = 9,
  75. /** Dates: `NSDate` */
  76. RLMPropertyTypeDate = 4,
  77. #pragma mark - Linked object types
  78. /** Realm model objects. See [Realm Models](https://www.mongodb.com/docs/realm/sdk/swift/fundamentals/object-models-and-schemas/) for more information. */
  79. RLMPropertyTypeObject = 7,
  80. /** Realm linking objects. See [Realm Models](https://www.mongodb.com/docs/realm/sdk/swift/fundamentals/relationships/#inverse-relationship) for more information. */
  81. RLMPropertyTypeLinkingObjects = 8,
  82. RLMPropertyTypeObjectId = 10,
  83. RLMPropertyTypeDecimal128 = 11
  84. };
  85. #pragma mark - Notification Constants
  86. /**
  87. A notification indicating that changes were made to a Realm.
  88. */
  89. typedef NSString * RLMNotification NS_EXTENSIBLE_STRING_ENUM;
  90. /**
  91. This notification is posted when a write transaction has been committed to a Realm on a different thread for
  92. the same file.
  93. It is not posted if `autorefresh` is enabled, or if the Realm is refreshed before the notification has a chance
  94. to run.
  95. Realms with autorefresh disabled should normally install a handler for this notification which calls
  96. `-[RLMRealm refresh]` after doing some work. Refreshing the Realm is optional, but not refreshing the Realm may lead to
  97. large Realm files. This is because an extra copy of the data must be kept for the stale Realm.
  98. */
  99. extern RLMNotification const RLMRealmRefreshRequiredNotification NS_SWIFT_NAME(RefreshRequired);
  100. /**
  101. This notification is posted by a Realm when a write transaction has been
  102. committed to a Realm on a different thread for the same file.
  103. It is not posted if `-[RLMRealm autorefresh]` is enabled, or if the Realm is
  104. refreshed before the notification has a chance to run.
  105. Realms with autorefresh disabled should normally install a handler for this
  106. notification which calls `-[RLMRealm refresh]` after doing some work. Refreshing
  107. the Realm is optional, but not refreshing the Realm may lead to large Realm
  108. files. This is because Realm must keep an extra copy of the data for the stale
  109. Realm.
  110. */
  111. extern RLMNotification const RLMRealmDidChangeNotification NS_SWIFT_NAME(DidChange);
  112. #pragma mark - Error keys
  113. /** Key to identify the associated backup Realm configuration in an error's `userInfo` dictionary */
  114. extern NSString * const RLMBackupRealmConfigurationErrorKey;
  115. #pragma mark - Other Constants
  116. /** The schema version used for uninitialized Realms */
  117. extern const uint64_t RLMNotVersioned;
  118. /** The corresponding value is the name of an exception thrown by Realm. */
  119. extern NSString * const RLMExceptionName;
  120. /** The corresponding value is a Realm file version. */
  121. extern NSString * const RLMRealmVersionKey;
  122. /** The corresponding key is the version of the underlying database engine. */
  123. extern NSString * const RLMRealmCoreVersionKey;
  124. /** The corresponding key is the Realm invalidated property name. */
  125. extern NSString * const RLMInvalidatedKey;
  126. RLM_HEADER_AUDIT_END(nullability, sendability)