RLMError.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2022 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. @protocol RLMValue;
  20. #pragma mark - Error Domains
  21. /** Error code is a value from the RLMError enum. */
  22. extern NSString *const RLMErrorDomain;
  23. /** An error domain identifying non-specific system errors. */
  24. extern NSString *const RLMUnknownSystemErrorDomain;
  25. /**
  26. The error domain string for all SDK errors related to errors reported
  27. by the synchronization manager error handler, as well as general sync
  28. errors that don't fall into any of the other categories.
  29. */
  30. extern NSString *const RLMSyncErrorDomain;
  31. /**
  32. The error domain string for all SDK errors related to the authentication
  33. endpoint.
  34. */
  35. extern NSString *const RLMSyncAuthErrorDomain;
  36. /**
  37. The error domain string for all SDK errors related to the Atlas App Services
  38. endpoint.
  39. */
  40. extern NSString *const RLMAppErrorDomain;
  41. #pragma mark - RLMError
  42. /// A user info key containing the error code. This is provided for backwards
  43. /// compatibility only and should not be used.
  44. extern NSString *const RLMErrorCodeKey __attribute((deprecated("use -[NSError code]")));
  45. /// A user info key containing the name of the error code. This is for
  46. /// debugging purposes only and should not be relied on.
  47. extern NSString *const RLMErrorCodeNameKey;
  48. /// A user info key present in sync errors which originate from the server,
  49. /// containing the URL of the server-side logs associated with the error.
  50. extern NSString * const RLMServerLogURLKey;
  51. /// A user info key containing a HTTP status code. Some ``RLMAppError`` codes
  52. /// include this, most notably ``RLMAppErrorHttpRequestFailed``.
  53. extern NSString * const RLMHTTPStatusCodeKey;
  54. /// A user info key containing a `RLMCompensatingWriteInfo` which includes
  55. /// further details about what was reverted by the server.
  56. extern NSString *const RLMCompensatingWriteInfoKey;
  57. /**
  58. `RLMError` is an enumeration representing all recoverable errors. It is
  59. associated with the Realm error domain specified in `RLMErrorDomain`.
  60. */
  61. typedef RLM_ERROR_ENUM(NSInteger, RLMError, RLMErrorDomain) {
  62. /** Denotes a general error that occurred when trying to open a Realm. */
  63. RLMErrorFail = 1,
  64. /** Denotes a file I/O error that occurred when trying to open a Realm. */
  65. RLMErrorFileAccess = 2,
  66. /**
  67. Denotes a file permission error that occurred when trying to open a Realm.
  68. This error can occur if the user does not have permission to open or create
  69. the specified file in the specified access mode when opening a Realm.
  70. */
  71. RLMErrorFilePermissionDenied = 3,
  72. /**
  73. Denotes an error where a file was to be written to disk, but another
  74. file with the same name already exists.
  75. */
  76. RLMErrorFileExists = 4,
  77. /**
  78. Denotes an error that occurs if a file could not be found.
  79. This error may occur if a Realm file could not be found on disk when
  80. trying to open a Realm as read-only, or if the directory part of the
  81. specified path was not found when trying to write a copy.
  82. */
  83. RLMErrorFileNotFound = 5,
  84. /**
  85. Denotes an error that occurs if a file format upgrade is required to open
  86. the file, but upgrades were explicitly disabled or the file is being open
  87. in read-only mode.
  88. */
  89. RLMErrorFileFormatUpgradeRequired = 6,
  90. /**
  91. Denotes an error that occurs if the database file is currently open in
  92. another process which cannot share with the current process due to an
  93. architecture mismatch.
  94. This error may occur if trying to share a Realm file between an i386
  95. (32-bit) iOS Simulator and the Realm Studio application. In this case,
  96. please use the 64-bit version of the iOS Simulator.
  97. */
  98. RLMErrorIncompatibleLockFile = 8,
  99. /**
  100. Denotes an error that occurs when there is insufficient available address
  101. space to mmap the Realm file.
  102. */
  103. RLMErrorAddressSpaceExhausted = 9,
  104. /**
  105. Denotes an error that occurs if there is a schema version mismatch and a
  106. migration is required.
  107. */
  108. RLMErrorSchemaMismatch = 10,
  109. /**
  110. Denotes an error where an operation was requested which cannot be
  111. performed on an open file.
  112. */
  113. RLMErrorAlreadyOpen = 12,
  114. /// Denotes an error where an input value was invalid.
  115. RLMErrorInvalidInput = 13,
  116. /// Denotes an error where a write failed due to insufficient disk space.
  117. RLMErrorOutOfDiskSpace = 14,
  118. /**
  119. Denotes an error where a Realm file could not be opened because another
  120. process has opened the same file in a way incompatible with inter-process
  121. sharing. For example, this can result from opening the backing file for an
  122. in-memory Realm in non-in-memory mode.
  123. */
  124. RLMErrorIncompatibleSession = 15,
  125. /**
  126. Denotes an error that occurs if the file is a valid Realm file, but has a
  127. file format version which is not supported by this version of Realm. This
  128. typically means that the file was written by a newer version of Realm, but
  129. may also mean that it is from a pre-1.0 version of Realm (or for
  130. synchronized files, pre-10.0).
  131. */
  132. RLMErrorUnsupportedFileFormatVersion = 16,
  133. /**
  134. Denotes an error that occurs if a synchronized Realm is opened in more
  135. than one process at once.
  136. */
  137. RLMErrorMultipleSyncAgents = 17,
  138. /// A subscription was rejected by the server.
  139. RLMErrorSubscriptionFailed = 18,
  140. /// A file operation failed in a way which does not have a more specific error code.
  141. RLMErrorFileOperationFailed = 19,
  142. /**
  143. Denotes an error that occurs if the file being opened is not a valid Realm
  144. file. Some of the possible causes of this are:
  145. 1. The file at the given URL simply isn't a Realm file at all.
  146. 2. The wrong encryption key was given.
  147. 3. The Realm file is encrypted and no encryption key was given.
  148. 4. The Realm file isn't encrypted but an encryption key was given.
  149. 5. The file on disk has become corrupted.
  150. */
  151. RLMErrorInvalidDatabase = 20,
  152. /**
  153. Denotes an error that occurs if a Realm is opened in the wrong history
  154. mode. Typically this means that either a local Realm is being opened as a
  155. synchronized Realm or vice versa.
  156. */
  157. RLMErrorIncompatibleHistories = 21,
  158. /**
  159. Denotes an error that occurs if objects were written to a flexible sync
  160. Realm without any active subscriptions for that object type. All objects
  161. created in flexible sync Realms must match at least one active
  162. subscription or the server will reject the write.
  163. */
  164. RLMErrorNoSubscriptionForWrite = 22,
  165. };
  166. #pragma mark - RLMSyncError
  167. /// A user info key for use with `RLMSyncErrorClientResetError`.
  168. extern NSString *const kRLMSyncPathOfRealmBackupCopyKey;
  169. /// A user info key for use with certain error types.
  170. extern NSString *const kRLMSyncErrorActionTokenKey;
  171. /**
  172. An error related to a problem that might be reported by the synchronization manager
  173. error handler, or a callback on a sync-related API that performs asynchronous work.
  174. */
  175. typedef RLM_ERROR_ENUM(NSInteger, RLMSyncError, RLMSyncErrorDomain) {
  176. /// An error that indicates a problem with the session (a specific Realm opened for sync).
  177. RLMSyncErrorClientSessionError = 4,
  178. /// An error that indicates a problem with a specific user.
  179. RLMSyncErrorClientUserError = 5,
  180. /**
  181. An error that indicates an internal, unrecoverable problem
  182. with the underlying synchronization engine.
  183. */
  184. RLMSyncErrorClientInternalError = 6,
  185. /**
  186. An error that indicates the Realm needs to be reset.
  187. A synced Realm may need to be reset because Atlas App Services encountered an
  188. error and had to be restored from a backup. If the backup copy of the remote Realm
  189. is of an earlier version than the local copy of the Realm, the server will ask the
  190. client to reset the Realm.
  191. The reset process is as follows: the local copy of the Realm is copied into a recovery
  192. directory for safekeeping, and then deleted from the original location. The next time
  193. the Realm for that partition value is opened, the Realm will automatically be re-downloaded from
  194. Atlas App Services, and can be used as normal.
  195. Data written to the Realm after the local copy of the Realm diverged from the backup
  196. remote copy will be present in the local recovery copy of the Realm file. The
  197. re-downloaded Realm will initially contain only the data present at the time the Realm
  198. was backed up on the server.
  199. The client reset process can be initiated in one of two ways.
  200. The `userInfo` dictionary contains an opaque token object under the key
  201. `kRLMSyncErrorActionTokenKey`. This token can be passed into
  202. `+[RLMSyncSession immediatelyHandleError:]` in order to immediately perform the client
  203. reset process. This should only be done after your app closes and invalidates every
  204. instance of the offending Realm on all threads (note that autorelease pools may make this
  205. difficult to guarantee).
  206. If `+[RLMSyncSession immediatelyHandleError:]` is not called, the client reset process
  207. will be automatically carried out the next time the app is launched and the
  208. `RLMSyncManager` is accessed.
  209. The value for the `kRLMSyncPathOfRealmBackupCopyKey` key in the `userInfo` dictionary
  210. describes the path of the recovered copy of the Realm. This copy will not actually be
  211. created until the client reset process is initiated.
  212. @see `-[NSError rlmSync_errorActionToken]`, `-[NSError rlmSync_clientResetBackedUpRealmPath]`
  213. */
  214. RLMSyncErrorClientResetError = 7,
  215. /**
  216. An error that indicates an authentication error occurred.
  217. The `kRLMSyncUnderlyingErrorKey` key in the user info dictionary will contain the
  218. underlying error, which is guaranteed to be under the `RLMSyncAuthErrorDomain`
  219. error domain.
  220. */
  221. RLMSyncErrorUnderlyingAuthError = 8,
  222. /**
  223. An error that indicates the user does not have permission to perform an operation
  224. upon a synced Realm. For example, a user may receive this error if they attempt to
  225. open a Realm they do not have at least read access to, or write to a Realm they only
  226. have read access to.
  227. This error may also occur if a user incorrectly opens a Realm they have read-only
  228. permissions to without using the `asyncOpen()` APIs.
  229. A Realm that suffers a permission denied error is, by default, flagged so that its
  230. local copy will be deleted the next time the application starts.
  231. The `userInfo` dictionary contains an opaque token object under the key
  232. `kRLMSyncErrorActionTokenKey`. This token can be passed into
  233. `+[RLMSyncSession immediatelyHandleError:]` in order to immediately delete the local
  234. copy. This should only be done after your app closes and invalidates every instance
  235. of the offending Realm on all threads (note that autorelease pools may make this
  236. difficult to guarantee).
  237. @warning It is strongly recommended that, if a Realm has encountered a permission denied
  238. error, its files be deleted before attempting to re-open it.
  239. @see `-[NSError rlmSync_errorActionToken]`
  240. */
  241. RLMSyncErrorPermissionDeniedError = 9,
  242. /**
  243. An error that indicates that the server has rejected the requested flexible sync subscriptions.
  244. */
  245. RLMSyncErrorInvalidFlexibleSyncSubscriptions = 10,
  246. /**
  247. An error that indicates that the server has reverted a write made by this
  248. client. This can happen due to not having write permission, or because an
  249. object was created in a flexible sync Realm which does not match any
  250. active subscriptions.
  251. This error is informational and does not require any explicit handling.
  252. */
  253. RLMSyncErrorWriteRejected = 11,
  254. };
  255. #pragma mark - RLMSyncAuthError
  256. /// An error which is related to authentication to Atlas App Services.
  257. typedef RLM_ERROR_ENUM(NSInteger, RLMSyncAuthError, RLMSyncAuthErrorDomain) {
  258. /// An error that indicates that the response received from the authentication server was malformed.
  259. RLMSyncAuthErrorBadResponse = 1,
  260. /// An error that indicates that the supplied Realm path was invalid, or could not be resolved by the authentication
  261. /// server.
  262. RLMSyncAuthErrorBadRemoteRealmPath = 2,
  263. /// An error that indicates that the response received from the authentication server was an HTTP error code. The
  264. /// `userInfo` dictionary contains the actual error code value.
  265. RLMSyncAuthErrorHTTPStatusCodeError = 3,
  266. /// An error that indicates a problem with the session (a specific Realm opened for sync).
  267. RLMSyncAuthErrorClientSessionError = 4,
  268. /// An error that indicates that the provided credentials are ill-formed.
  269. RLMSyncAuthErrorInvalidParameters = 601,
  270. /// An error that indicates that no Realm path was included in the URL.
  271. RLMSyncAuthErrorMissingPath = 602,
  272. /// An error that indicates that the provided credentials are invalid.
  273. RLMSyncAuthErrorInvalidCredential = 611,
  274. /// An error that indicates that the user with provided credentials does not exist.
  275. RLMSyncAuthErrorUserDoesNotExist = 612,
  276. /// An error that indicates that the user cannot be registered as it exists already.
  277. RLMSyncAuthErrorUserAlreadyExists = 613,
  278. /// An error that indicates the path is invalid or the user doesn't have access to that Realm.
  279. RLMSyncAuthErrorAccessDeniedOrInvalidPath = 614,
  280. /// An error that indicates the refresh token was invalid.
  281. RLMSyncAuthErrorInvalidAccessToken = 615,
  282. /// An error that indicates the file at the given path can't be shared.
  283. RLMSyncAuthErrorFileCannotBeShared = 703,
  284. };
  285. #pragma mark - RLMSyncAppError
  286. /// An error which occurred when making a request to Atlas App Services.
  287. typedef RLM_ERROR_ENUM(NSInteger, RLMAppError, RLMAppErrorDomain) {
  288. /// An unknown error has occured
  289. RLMAppErrorUnknown = -1,
  290. /// A HTTP request completed with an error status code. The failing status
  291. /// code can be found in the ``RLMHTTPStatusCodeKey`` key of the userInfo
  292. /// dictionary.
  293. RLMAppErrorHttpRequestFailed = 1,
  294. /// A user's session is in an invalid state. Logging out and back in may rectify this.
  295. RLMAppErrorInvalidSession,
  296. /// A request sent to the server was malformed in some way.
  297. RLMAppErrorBadRequest,
  298. /// A request was made using a nonexistent user.
  299. RLMAppErrorUserNotFound,
  300. /// A request was made against an App using a User which does not belong to that App.
  301. RLMAppErrorUserAppDomainMismatch,
  302. /// The auth provider has limited the domain names which can be used for email addresses, and the given one is not allowed.
  303. RLMAppErrorDomainNotAllowed,
  304. /// The request body size exceeded a server-configured limit.
  305. RLMAppErrorReadSizeLimitExceeded,
  306. /// A request had an invalid parameter.
  307. RLMAppErrorInvalidParameter,
  308. /// A request was missing a required parameter.
  309. RLMAppErrorMissingParameter,
  310. /// Executing the requested server function failed with an error.
  311. RLMAppErrorFunctionExecutionError,
  312. /// The server encountered an internal error.
  313. RLMAppErrorInternalServerError,
  314. /// Authentication failed due to the request auth provider not existing.
  315. RLMAppErrorAuthProviderNotFound,
  316. /// The requested value does not exist.
  317. RLMAppErrorValueNotFound,
  318. /// The value being created already exists.
  319. RLMAppErrorValueAlreadyExists,
  320. /// A value with the same name as the value being created already exists.
  321. RLMAppErrorValueDuplicateName,
  322. /// The called server function does not exist.
  323. RLMAppErrorFunctionNotFound,
  324. /// The called server function has a syntax error.
  325. RLMAppErrorFunctionSyntaxError,
  326. /// The called server function is invalid in some way.
  327. RLMAppErrorFunctionInvalid,
  328. /// Registering an API key with the auth provider failed due to it already existing.
  329. RLMAppErrorAPIKeyAlreadyExists,
  330. /// The operation failed due to exceeding the server-configured time limit.
  331. RLMAppErrorExecutionTimeLimitExceeded,
  332. /// The body of the called function does not define a callable thing.
  333. RLMAppErrorNotCallable,
  334. /// Email confirmation failed for a user because the user has already confirmed their email.
  335. RLMAppErrorUserAlreadyConfirmed,
  336. /// The user cannot be used because it has been disabled.
  337. RLMAppErrorUserDisabled,
  338. /// An auth error occurred which does not have a more specific error code.
  339. RLMAppErrorAuthError,
  340. /// Account registration failed due to the user name already being taken.
  341. RLMAppErrorAccountNameInUse,
  342. /// A login request failed due to an invalid password.
  343. RLMAppErrorInvalidPassword,
  344. /// Operation failed due to server-side maintenance.
  345. RLMAppErrorMaintenanceInProgress,
  346. /// Operation failed due to an error reported by MongoDB.
  347. RLMAppErrorMongoDBError,
  348. };
  349. /// Extended information about a write which was rejected by the server.
  350. ///
  351. /// The server will sometimes reject writes made by the client for reasons such
  352. /// as permissions, additional server-side validation failing, or because the
  353. /// object didn't match any flexible sync subscriptions. When this happens, a
  354. /// ``RLMSyncErrorWriteRejected`` error is reported which contains an array of
  355. /// `RLMCompensatingWriteInfo` objects in the ``RLMCompensatingWriteInfoKey``
  356. /// userInfo key with information about what writes were rejected and why.
  357. ///
  358. /// This information is intended for debugging and logging purposes only. The
  359. /// `reason` strings are generated by the server and are not guaranteed to be
  360. /// stable, so attempting to programmatically do anything with them will break
  361. /// without warning.
  362. @interface RLMCompensatingWriteInfo : NSObject
  363. /// The class name of the object being written to.
  364. @property (nonatomic, readonly) NSString *objectType;
  365. /// The primary key of the object being written to.
  366. @property (nonatomic, readonly) id<RLMValue> primaryKey NS_REFINED_FOR_SWIFT;
  367. /// A human-readable string describing why the write was rejected.
  368. @property (nonatomic, readonly) NSString *reason;
  369. @end