RLMConstants.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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. // Swift 5 considers NS_ENUM to be "open", meaning there could be values present
  21. // other than the defined cases (which allows adding more cases later without
  22. // it being a breaking change), while older versions consider it "closed".
  23. #ifdef NS_CLOSED_ENUM
  24. #define RLM_CLOSED_ENUM NS_CLOSED_ENUM
  25. #else
  26. #define RLM_CLOSED_ENUM NS_ENUM
  27. #endif
  28. #if __has_attribute(ns_error_domain) && (!defined(__cplusplus) || !__cplusplus || __cplusplus >= 201103L)
  29. #define RLM_ERROR_ENUM(type, name, domain) \
  30. _Pragma("clang diagnostic push") \
  31. _Pragma("clang diagnostic ignored \"-Wignored-attributes\"") \
  32. NS_ENUM(type, __attribute__((ns_error_domain(domain))) name) \
  33. _Pragma("clang diagnostic pop")
  34. #else
  35. #define RLM_ERROR_ENUM(type, name, domain) NS_ENUM(type, name)
  36. #endif
  37. #define REALM_HIDDEN __attribute__((visibility("hidden")))
  38. #pragma mark - Enums
  39. /**
  40. `RLMPropertyType` is an enumeration describing all property types supported in Realm models.
  41. For more information, see [Realm Models](https://realm.io/docs/objc/latest/#models).
  42. */
  43. typedef RLM_CLOSED_ENUM(int32_t, RLMPropertyType) {
  44. #pragma mark - Primitive types
  45. /** Integers: `NSInteger`, `int`, `long`, `Int` (Swift) */
  46. RLMPropertyTypeInt = 0,
  47. /** Booleans: `BOOL`, `bool`, `Bool` (Swift) */
  48. RLMPropertyTypeBool = 1,
  49. /** Floating-point numbers: `float`, `Float` (Swift) */
  50. RLMPropertyTypeFloat = 5,
  51. /** Double-precision floating-point numbers: `double`, `Double` (Swift) */
  52. RLMPropertyTypeDouble = 6,
  53. /** NSUUID, UUID */
  54. RLMPropertyTypeUUID = 12,
  55. #pragma mark - Object types
  56. /** Strings: `NSString`, `String` (Swift) */
  57. RLMPropertyTypeString = 2,
  58. /** Binary data: `NSData` */
  59. RLMPropertyTypeData = 3,
  60. /** Any type: `id<RLMValue>`, `AnyRealmValue` (Swift) */
  61. RLMPropertyTypeAny = 9,
  62. /** Dates: `NSDate` */
  63. RLMPropertyTypeDate = 4,
  64. #pragma mark - Linked object types
  65. /** Realm model objects. See [Realm Models](https://realm.io/docs/objc/latest/#models) for more information. */
  66. RLMPropertyTypeObject = 7,
  67. /** Realm linking objects. See [Realm Models](https://realm.io/docs/objc/latest/#models) for more information. */
  68. RLMPropertyTypeLinkingObjects = 8,
  69. RLMPropertyTypeObjectId = 10,
  70. RLMPropertyTypeDecimal128 = 11
  71. };
  72. /** An error domain identifying Realm-specific errors. */
  73. extern NSString * const RLMErrorDomain;
  74. /** An error domain identifying non-specific system errors. */
  75. extern NSString * const RLMUnknownSystemErrorDomain;
  76. /**
  77. `RLMError` is an enumeration representing all recoverable errors. It is associated with the
  78. Realm error domain specified in `RLMErrorDomain`.
  79. */
  80. typedef RLM_ERROR_ENUM(NSInteger, RLMError, RLMErrorDomain) {
  81. /** Denotes a general error that occurred when trying to open a Realm. */
  82. RLMErrorFail = 1,
  83. /** Denotes a file I/O error that occurred when trying to open a Realm. */
  84. RLMErrorFileAccess = 2,
  85. /**
  86. Denotes a file permission error that ocurred when trying to open a Realm.
  87. This error can occur if the user does not have permission to open or create
  88. the specified file in the specified access mode when opening a Realm.
  89. */
  90. RLMErrorFilePermissionDenied = 3,
  91. /** Denotes an error where a file was to be written to disk, but another file with the same name already exists. */
  92. RLMErrorFileExists = 4,
  93. /**
  94. Denotes an error that occurs if a file could not be found.
  95. This error may occur if a Realm file could not be found on disk when trying to open a
  96. Realm as read-only, or if the directory part of the specified path was not found when
  97. trying to write a copy.
  98. */
  99. RLMErrorFileNotFound = 5,
  100. /**
  101. Denotes an error that occurs if a file format upgrade is required to open the file,
  102. but upgrades were explicitly disabled.
  103. */
  104. RLMErrorFileFormatUpgradeRequired = 6,
  105. /**
  106. Denotes an error that occurs if the database file is currently open in another
  107. process which cannot share with the current process due to an
  108. architecture mismatch.
  109. This error may occur if trying to share a Realm file between an i386 (32-bit) iOS
  110. Simulator and the Realm Browser application. In this case, please use the 64-bit
  111. version of the iOS Simulator.
  112. */
  113. RLMErrorIncompatibleLockFile = 8,
  114. /** Denotes an error that occurs when there is insufficient available address space. */
  115. RLMErrorAddressSpaceExhausted = 9,
  116. /** Denotes an error that occurs if there is a schema version mismatch, so that a migration is required. */
  117. RLMErrorSchemaMismatch = 10,
  118. // Error code 11 is obsolete
  119. // RLMErrorIncompatibleSyncedFile = 11,
  120. /**
  121. Denotates an error where an operation was requested which cannot be performed on an open file.
  122. */
  123. RLMErrorAlreadyOpen = 12,
  124. /// Denotates an error where an input value was invalid.
  125. RLMErrorInvalidInput = 13,
  126. };
  127. #pragma mark - Constants
  128. #pragma mark - Notification Constants
  129. /**
  130. A notification indicating that changes were made to a Realm.
  131. */
  132. typedef NSString * RLMNotification NS_EXTENSIBLE_STRING_ENUM;
  133. /**
  134. This notification is posted when a write transaction has been committed to a Realm on a different thread for
  135. the same file.
  136. It is not posted if `autorefresh` is enabled, or if the Realm is refreshed before the notification has a chance
  137. to run.
  138. Realms with autorefresh disabled should normally install a handler for this notification which calls
  139. `-[RLMRealm refresh]` after doing some work. Refreshing the Realm is optional, but not refreshing the Realm may lead to
  140. large Realm files. This is because an extra copy of the data must be kept for the stale Realm.
  141. */
  142. extern RLMNotification const RLMRealmRefreshRequiredNotification NS_SWIFT_NAME(RefreshRequired);
  143. /**
  144. This notification is posted by a Realm when a write transaction has been
  145. committed to a Realm on a different thread for the same file.
  146. It is not posted if `-[RLMRealm autorefresh]` is enabled, or if the Realm is
  147. refreshed before the notification has a chance to run.
  148. Realms with autorefresh disabled should normally install a handler for this
  149. notification which calls `-[RLMRealm refresh]` after doing some work. Refreshing
  150. the Realm is optional, but not refreshing the Realm may lead to large Realm
  151. files. This is because Realm must keep an extra copy of the data for the stale
  152. Realm.
  153. */
  154. extern RLMNotification const RLMRealmDidChangeNotification NS_SWIFT_NAME(DidChange);
  155. #pragma mark - Error keys
  156. /** Key to identify the associated backup Realm configuration in an error's `userInfo` dictionary */
  157. extern NSString * const RLMBackupRealmConfigurationErrorKey;
  158. #pragma mark - Other Constants
  159. /** The schema version used for uninitialized Realms */
  160. extern const uint64_t RLMNotVersioned;
  161. /** The corresponding value is the name of an exception thrown by Realm. */
  162. extern NSString * const RLMExceptionName;
  163. /** The corresponding value is a Realm file version. */
  164. extern NSString * const RLMRealmVersionKey;
  165. /** The corresponding key is the version of the underlying database engine. */
  166. extern NSString * const RLMRealmCoreVersionKey;
  167. /** The corresponding key is the Realm invalidated property name. */
  168. extern NSString * const RLMInvalidatedKey;
  169. NS_ASSUME_NONNULL_END