RLMRealm.h 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960
  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. @class RLMRealmConfiguration, RLMRealm, RLMObject, RLMSchema, RLMMigration, RLMNotificationToken, RLMThreadSafeReference, RLMAsyncOpenTask, RLMSyncSubscriptionSet;
  20. /**
  21. A callback block for opening Realms asynchronously.
  22. Returns the Realm if the open was successful, or an error otherwise.
  23. */
  24. typedef void(^RLMAsyncOpenRealmCallback)(RLMRealm * _Nullable realm, NSError * _Nullable error);
  25. /// The Id of the asynchronous transaction.
  26. typedef unsigned RLMAsyncTransactionId;
  27. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  28. /**
  29. An `RLMRealm` instance (also referred to as "a Realm") represents a Realm
  30. database.
  31. Realms can either be stored on disk (see `+[RLMRealm realmWithURL:]`) or in
  32. memory (see `RLMRealmConfiguration`).
  33. `RLMRealm` instances are cached internally, and constructing equivalent `RLMRealm`
  34. objects (for example, by using the same path or identifier) multiple times on a single thread
  35. within a single iteration of the run loop will normally return the same
  36. `RLMRealm` object.
  37. If you specifically want to ensure an `RLMRealm` instance is
  38. destroyed (for example, if you wish to open a Realm, check some property, and
  39. then possibly delete the Realm file and re-open it), place the code which uses
  40. the Realm within an `@autoreleasepool {}` and ensure you have no other
  41. strong references to it.
  42. @warning Non-frozen `RLMRealm` instances are thread-confined and cannot be
  43. shared across threads or dispatch queues. Trying to do so will cause an
  44. exception to be thrown. You must call this method on each thread you want to
  45. interact with the Realm on. For dispatch queues, this means that you must call
  46. it in each block which is dispatched, as a queue is not guaranteed to run all
  47. of its blocks on the same thread.
  48. */
  49. @interface RLMRealm : NSObject
  50. #pragma mark - Creating & Initializing a Realm
  51. /**
  52. Obtains an instance of the default Realm.
  53. The default Realm is used by the `RLMObject` class methods
  54. which do not take an `RLMRealm` parameter, but is otherwise not special. The
  55. default Realm is persisted as *default.realm* under the *Documents* directory of
  56. your Application on iOS, in your application's *Application Support*
  57. directory on macOS, and in the *Cache* directory on tvOS.
  58. The default Realm is created using the default `RLMRealmConfiguration`, which
  59. can be changed via `+[RLMRealmConfiguration setDefaultConfiguration:]`.
  60. @return The default `RLMRealm` instance for the current thread.
  61. */
  62. + (instancetype)defaultRealm;
  63. /**
  64. Obtains an instance of the default Realm bound to the given queue.
  65. Rather than being confined to the thread they are opened on, queue-bound
  66. RLMRealms are confined to the given queue. They can be accessed from any
  67. thread as long as it is from within a block dispatch to the queue, and
  68. notifications will be delivered to the queue instead of a thread's run loop.
  69. Realms can only be confined to a serial queue. Queue-confined RLMRealm
  70. instances can be obtained when not on that queue, but attempting to do
  71. anything with that instance without first dispatching to the queue will throw
  72. an incorrect thread exception.
  73. The default Realm is created using the default `RLMRealmConfiguration`, which
  74. can be changed via `+[RLMRealmConfiguration setDefaultConfiguration:]`.
  75. @param queue A serial dispatch queue to confine the Realm to.
  76. @return The default `RLMRealm` instance for the given queue.
  77. */
  78. + (instancetype)defaultRealmForQueue:(dispatch_queue_t)queue;
  79. /**
  80. Obtains an `RLMRealm` instance with the given configuration.
  81. @param configuration A configuration object to use when creating the Realm.
  82. @param error If an error occurs, upon return contains an `NSError` object
  83. that describes the problem. If you are not interested in
  84. possible errors, pass in `NULL`.
  85. @return An `RLMRealm` instance.
  86. */
  87. + (nullable instancetype)realmWithConfiguration:(RLMRealmConfiguration *)configuration error:(NSError **)error;
  88. /**
  89. Obtains an `RLMRealm` instance with the given configuration bound to the given queue.
  90. Rather than being confined to the thread they are opened on, queue-bound
  91. RLMRealms are confined to the given queue. They can be accessed from any
  92. thread as long as it is from within a block dispatch to the queue, and
  93. notifications will be delivered to the queue instead of a thread's run loop.
  94. Realms can only be confined to a serial queue. Queue-confined RLMRealm
  95. instances can be obtained when not on that queue, but attempting to do
  96. anything with that instance without first dispatching to the queue will throw
  97. an incorrect thread exception.
  98. @param configuration A configuration object to use when creating the Realm.
  99. @param queue A serial dispatch queue to confine the Realm to.
  100. @param error If an error occurs, upon return contains an `NSError` object
  101. that describes the problem. If you are not interested in
  102. possible errors, pass in `NULL`.
  103. @return An `RLMRealm` instance.
  104. */
  105. + (nullable instancetype)realmWithConfiguration:(RLMRealmConfiguration *)configuration
  106. queue:(nullable dispatch_queue_t)queue
  107. error:(NSError **)error;
  108. /**
  109. Obtains an `RLMRealm` instance persisted at a specified file URL.
  110. @param fileURL The local URL of the file the Realm should be saved at.
  111. @return An `RLMRealm` instance.
  112. */
  113. + (instancetype)realmWithURL:(NSURL *)fileURL;
  114. /**
  115. Asynchronously open a Realm and deliver it to a block on the given queue.
  116. Opening a Realm asynchronously will perform all work needed to get the Realm to
  117. a usable state (such as running potentially time-consuming migrations) on a
  118. background thread before dispatching to the given queue. In addition,
  119. synchronized Realms wait for all remote content available at the time the
  120. operation began to be downloaded and available locally.
  121. The Realm passed to the callback function is confined to the callback queue as
  122. if `-[RLMRealm realmWithConfiguration:queue:error]` was used.
  123. @param configuration A configuration object to use when opening the Realm.
  124. @param callbackQueue The serial dispatch queue on which the callback should be run.
  125. @param callback A callback block. If the Realm was successfully opened,
  126. it will be passed in as an argument.
  127. Otherwise, an `NSError` describing what went wrong will be
  128. passed to the block instead.
  129. */
  130. + (RLMAsyncOpenTask *)asyncOpenWithConfiguration:(RLMRealmConfiguration *)configuration
  131. callbackQueue:(dispatch_queue_t)callbackQueue
  132. callback:(RLMAsyncOpenRealmCallback)callback;
  133. /**
  134. The `RLMSchema` used by the Realm.
  135. */
  136. @property (nonatomic, readonly) RLMSchema *schema;
  137. /**
  138. Indicates if the Realm is currently engaged in a write transaction.
  139. @warning Do not simply check this property and then start a write transaction whenever an object needs to be
  140. created, updated, or removed. Doing so might cause a large number of write transactions to be created,
  141. degrading performance. Instead, always prefer performing multiple updates during a single transaction.
  142. */
  143. @property (nonatomic, readonly) BOOL inWriteTransaction;
  144. /**
  145. The `RLMRealmConfiguration` object that was used to create this `RLMRealm` instance.
  146. */
  147. @property (nonatomic, readonly) RLMRealmConfiguration *configuration;
  148. /**
  149. Indicates if this Realm contains any objects.
  150. */
  151. @property (nonatomic, readonly) BOOL isEmpty;
  152. /**
  153. Indicates if this Realm is frozen.
  154. @see `-[RLMRealm freeze]`
  155. */
  156. @property (nonatomic, readonly, getter=isFrozen) BOOL frozen;
  157. /**
  158. Returns a frozen (immutable) snapshot of this Realm.
  159. A frozen Realm is an immutable snapshot view of a particular version of a
  160. Realm's data. Unlike normal RLMRealm instances, it does not live-update to
  161. reflect writes made to the Realm, and can be accessed from any thread. Writing
  162. to a frozen Realm is not allowed, and attempting to begin a write transaction
  163. will throw an exception.
  164. All objects and collections read from a frozen Realm will also be frozen.
  165. */
  166. - (RLMRealm *)freeze NS_RETURNS_RETAINED;
  167. /**
  168. Returns a live reference of this Realm.
  169. All objects and collections read from the returned Realm will no longer be frozen.
  170. This method will return `self` if it is not already frozen.
  171. */
  172. - (RLMRealm *)thaw;
  173. #pragma mark - File Management
  174. /**
  175. Writes a compacted and optionally encrypted copy of the Realm to the given local URL.
  176. The destination file cannot already exist.
  177. Note that if this method is called from within a write transaction, the
  178. *current* data is written, not the data from the point when the previous write
  179. transaction was committed.
  180. @param fileURL Local URL to save the Realm to.
  181. @param key Optional 64-byte encryption key to encrypt the new file with.
  182. @param error If an error occurs, upon return contains an `NSError` object
  183. that describes the problem. If you are not interested in
  184. possible errors, pass in `NULL`.
  185. @return `YES` if the Realm was successfully written to disk, `NO` if an error occurred.
  186. */
  187. - (BOOL)writeCopyToURL:(NSURL *)fileURL encryptionKey:(nullable NSData *)key error:(NSError **)error;
  188. /**
  189. Writes a copy of the Realm to a given location specified by a given configuration.
  190. If the configuration supplied is derived from a `RLMUser` then this Realm will be copied with
  191. sync functionality enabled.
  192. The destination file cannot already exist.
  193. @param configuration A Realm Configuration.
  194. @param error If an error occurs, upon return contains an `NSError` object
  195. that describes the problem. If you are not interested in
  196. possible errors, pass in `NULL`.
  197. @return `YES` if the Realm was successfully written to disk, `NO` if an error occurred.
  198. */
  199. - (BOOL)writeCopyForConfiguration:(RLMRealmConfiguration *)configuration error:(NSError **)error;
  200. /**
  201. Checks if the Realm file for the given configuration exists locally on disk.
  202. For non-synchronized, non-in-memory Realms, this is equivalent to
  203. `-[NSFileManager.defaultManager fileExistsAtPath:config.path]`. For
  204. synchronized Realms, it takes care of computing the actual path on disk based
  205. on the server, virtual path, and user as is done when opening the Realm.
  206. @param config A Realm configuration to check the existence of.
  207. @return YES if the Realm file for the given configuration exists on disk, NO otherwise.
  208. */
  209. + (BOOL)fileExistsForConfiguration:(RLMRealmConfiguration *)config;
  210. /**
  211. Deletes the local Realm file and associated temporary files for the given configuration.
  212. This deletes the ".realm", ".note" and ".management" files which would be
  213. created by opening the Realm with the given configuration. It does not delete
  214. the ".lock" file (which contains no persisted data and is recreated from
  215. scratch every time the Realm file is opened).
  216. The Realm must not be currently open on any thread or in another process. If
  217. it is, this will return NO and report the error RLMErrorAlreadyOpen. Attempting to open
  218. the Realm on another thread while the deletion is happening will block (and
  219. then create a new Realm and open that afterwards).
  220. If the Realm already does not exist this will return `NO` and report the error NSFileNoSuchFileError;
  221. @param config A Realm configuration identifying the Realm to be deleted.
  222. @return YES if any files were deleted, NO otherwise.
  223. */
  224. + (BOOL)deleteFilesForConfiguration:(RLMRealmConfiguration *)config error:(NSError **)error
  225. __attribute__((swift_error(nonnull_error)));
  226. #pragma mark - Notifications
  227. /**
  228. The type of a block to run whenever the data within the Realm is modified.
  229. @see `-[RLMRealm addNotificationBlock:]`
  230. */
  231. typedef void (^RLMNotificationBlock)(RLMNotification notification, RLMRealm *realm);
  232. #pragma mark - Receiving Notification when a Realm Changes
  233. /**
  234. Adds a notification handler for changes in this Realm, and returns a notification token.
  235. Notification handlers are called after each write transaction is committed,
  236. either on the current thread or other threads.
  237. Handler blocks are called on the same thread that they were added on, and may
  238. only be added on threads which are currently within a run loop. Unless you are
  239. specifically creating and running a run loop on a background thread, this will
  240. normally only be the main thread.
  241. The block has the following definition:
  242. typedef void(^RLMNotificationBlock)(RLMNotification notification, RLMRealm *realm);
  243. It receives the following parameters:
  244. - `NSString` \***notification**: The name of the incoming notification. See
  245. `RLMRealmNotification` for information on what
  246. notifications are sent.
  247. - `RLMRealm` \***realm**: The Realm for which this notification occurred.
  248. @param block A block which is called to process Realm notifications.
  249. @return A token object which must be retained as long as you wish to continue
  250. receiving change notifications.
  251. */
  252. - (RLMNotificationToken *)addNotificationBlock:(RLMNotificationBlock)block __attribute__((warn_unused_result));
  253. #pragma mark - Writing to a Realm
  254. /**
  255. Begins a write transaction on the Realm.
  256. Only one write transaction can be open at a time for each Realm file. Write
  257. transactions cannot be nested, and trying to begin a write transaction on a
  258. Realm which is already in a write transaction will throw an exception. Calls to
  259. `beginWriteTransaction` from `RLMRealm` instances for the same Realm file in
  260. other threads or other processes will block until the current write transaction
  261. completes or is cancelled.
  262. Before beginning the write transaction, `beginWriteTransaction` updates the
  263. `RLMRealm` instance to the latest Realm version, as if `refresh` had been
  264. called, and generates notifications if applicable. This has no effect if the
  265. Realm was already up to date.
  266. It is rarely a good idea to have write transactions span multiple cycles of
  267. the run loop, but if you do wish to do so you will need to ensure that the
  268. Realm participating in the write transaction is kept alive until the write
  269. transaction is committed.
  270. */
  271. - (void)beginWriteTransaction;
  272. /**
  273. Commits all write operations in the current write transaction, and ends the
  274. transaction.
  275. After saving the changes, all notification blocks registered on this specific
  276. `RLMRealm` instance are invoked synchronously. Notification blocks registered
  277. on other threads or on collections are invoked asynchronously. If you do not
  278. want to receive a specific notification for this write tranaction, see
  279. `commitWriteTransactionWithoutNotifying:error:`.
  280. This method can fail if there is insufficient disk space available to save the
  281. writes made, or due to unexpected i/o errors. This version of the method throws
  282. an exception when errors occur. Use the version with a `NSError` out parameter
  283. instead if you wish to handle errors.
  284. @warning This method may only be called during a write transaction.
  285. */
  286. - (void)commitWriteTransaction NS_SWIFT_UNAVAILABLE("");
  287. /**
  288. Commits all write operations in the current write transaction, and ends the
  289. transaction.
  290. After saving the changes, all notification blocks registered on this specific
  291. `RLMRealm` instance are invoked synchronously. Notification blocks registered
  292. on other threads or on collections are invoked asynchronously. If you do not
  293. want to receive a specific notification for this write tranaction, see
  294. `commitWriteTransactionWithoutNotifying:error:`.
  295. This method can fail if there is insufficient disk space available to save the
  296. writes made, or due to unexpected i/o errors.
  297. @warning This method may only be called during a write transaction.
  298. @param error If an error occurs, upon return contains an `NSError` object
  299. that describes the problem. If you are not interested in
  300. possible errors, pass in `NULL`.
  301. @return Whether the transaction succeeded.
  302. */
  303. - (BOOL)commitWriteTransaction:(NSError **)error;
  304. /**
  305. Commits all write operations in the current write transaction, without
  306. notifying specific notification blocks of the changes.
  307. After saving the changes, all notification blocks registered on this specific
  308. `RLMRealm` instance are invoked synchronously. Notification blocks registered
  309. on other threads or on collections are scheduled to be invoked asynchronously.
  310. You can skip notifiying specific notification blocks about the changes made
  311. in this write transaction by passing in their associated notification tokens.
  312. This is primarily useful when the write transaction is saving changes already
  313. made in the UI and you do not want to have the notification block attempt to
  314. re-apply the same changes.
  315. The tokens passed to this method must be for notifications for this specific
  316. `RLMRealm` instance. Notifications for different threads cannot be skipped
  317. using this method.
  318. This method can fail if there is insufficient disk space available to save the
  319. writes made, or due to unexpected i/o errors.
  320. @warning This method may only be called during a write transaction.
  321. @param tokens An array of notification tokens which were returned from adding
  322. callbacks which you do not want to be notified for the changes
  323. made in this write transaction.
  324. @param error If an error occurs, upon return contains an `NSError` object
  325. that describes the problem. If you are not interested in
  326. possible errors, pass in `NULL`.
  327. @return Whether the transaction succeeded.
  328. */
  329. - (BOOL)commitWriteTransactionWithoutNotifying:(NSArray<RLMNotificationToken *> *)tokens error:(NSError **)error;
  330. /**
  331. Reverts all writes made during the current write transaction and ends the transaction.
  332. This rolls back all objects in the Realm to the state they were in at the
  333. beginning of the write transaction, and then ends the transaction.
  334. This restores the data for deleted objects, but does not revive invalidated
  335. object instances. Any `RLMObject`s which were added to the Realm will be
  336. invalidated rather than becoming unmanaged.
  337. Given the following code:
  338. ObjectType *oldObject = [[ObjectType objectsWhere:@"..."] firstObject];
  339. ObjectType *newObject = [[ObjectType alloc] init];
  340. [realm beginWriteTransaction];
  341. [realm addObject:newObject];
  342. [realm deleteObject:oldObject];
  343. [realm cancelWriteTransaction];
  344. Both `oldObject` and `newObject` will return `YES` for `isInvalidated`,
  345. but re-running the query which provided `oldObject` will once again return
  346. the valid object.
  347. KVO observers on any objects which were modified during the transaction will
  348. be notified about the change back to their initial values, but no other
  349. notifications are produced by a cancelled write transaction.
  350. @warning This method may only be called during a write transaction.
  351. */
  352. - (void)cancelWriteTransaction;
  353. /**
  354. Performs actions contained within the given block inside a write transaction.
  355. @see `[RLMRealm transactionWithoutNotifying:block:error:]`
  356. */
  357. - (void)transactionWithBlock:(__attribute__((noescape)) void(^)(void))block NS_SWIFT_UNAVAILABLE("");
  358. /**
  359. Performs actions contained within the given block inside a write transaction.
  360. @see `[RLMRealm transactionWithoutNotifying:block:error:]`
  361. */
  362. - (BOOL)transactionWithBlock:(__attribute__((noescape)) void(^)(void))block error:(NSError **)error;
  363. /**
  364. Performs actions contained within the given block inside a write transaction.
  365. @see `[RLMRealm transactionWithoutNotifying:block:error:]`
  366. */
  367. - (void)transactionWithoutNotifying:(NSArray<RLMNotificationToken *> *)tokens block:(__attribute__((noescape)) void(^)(void))block;
  368. /**
  369. Performs actions contained within the given block inside a write transaction.
  370. Write transactions cannot be nested, and trying to execute a write transaction
  371. on a Realm which is already participating in a write transaction will throw an
  372. exception. Calls to `transactionWithBlock:` from `RLMRealm` instances in other
  373. threads will block until the current write transaction completes.
  374. Before beginning the write transaction, `transactionWithBlock:` updates the
  375. `RLMRealm` instance to the latest Realm version, as if `refresh` had been called, and
  376. generates notifications if applicable. This has no effect if the Realm
  377. was already up to date.
  378. You can skip notifiying specific notification blocks about the changes made
  379. in this write transaction by passing in their associated notification tokens.
  380. This is primarily useful when the write transaction is saving changes already
  381. made in the UI and you do not want to have the notification block attempt to
  382. re-apply the same changes.
  383. The tokens passed to this method must be for notifications for this specific
  384. `RLMRealm` instance. Notifications for different threads cannot be skipped
  385. using this method.
  386. @param tokens An array of notification tokens which were returned from adding
  387. callbacks which you do not want to be notified for the changes
  388. made in this write transaction.
  389. @param block The block containing actions to perform.
  390. @param error If an error occurs, upon return contains an `NSError` object
  391. that describes the problem. If you are not interested in
  392. possible errors, pass in `NULL`.
  393. @return Whether the transaction succeeded.
  394. */
  395. - (BOOL)transactionWithoutNotifying:(NSArray<RLMNotificationToken *> *)tokens block:(__attribute__((noescape)) void(^)(void))block error:(NSError **)error;
  396. /**
  397. Indicates if the Realm is currently performing async write operations.
  398. This becomes YES following a call to `beginAsyncWriteTransaction`,
  399. `commitAsyncWriteTransaction`, or `asyncTransactionWithBlock:`, and remains so
  400. until all scheduled async write work has completed.
  401. @warning If this is `YES`, closing or invalidating the Realm will block until scheduled work has completed.
  402. */
  403. @property (nonatomic, readonly) BOOL isPerformingAsynchronousWriteOperations;
  404. /**
  405. Begins an asynchronous write transaction.
  406. This function asynchronously begins a write transaction on a background
  407. thread, and then invokes the block on the original thread or queue once the
  408. transaction has begun. Unlike `beginWriteTransaction`, this does not block the
  409. calling thread if another thread is current inside a write transaction, and
  410. will always return immediately.
  411. Multiple calls to this function (or the other functions which perform
  412. asynchronous write transactions) will queue the blocks to be called in the
  413. same order as they were queued. This includes calls from inside a write
  414. transaction block, which unlike with synchronous transactions are allowed.
  415. @param block The block containing actions to perform inside the write transaction.
  416. `block` should end by calling `commitAsyncWriteTransaction`,
  417. `commitWriteTransaction` or `cancelWriteTransaction`.
  418. Returning without one of these calls is equivalent to calling `cancelWriteTransaction`.
  419. @return An id identifying the asynchronous transaction which can be passed to
  420. `cancelAsyncTransaction:` prior to the block being called to cancel
  421. the pending invocation of the block.
  422. */
  423. - (RLMAsyncTransactionId)beginAsyncWriteTransaction:(void(^)(void))block;
  424. /**
  425. Asynchronously commits a write transaction.
  426. The call returns immediately allowing the caller to proceed while the I/O is
  427. performed on a dedicated background thread. This can be used regardless of if
  428. the write transaction was begun with `beginWriteTransaction` or
  429. `beginAsyncWriteTransaction`.
  430. @param completionBlock A block which will be called on the source thread or
  431. queue once the commit has either completed or failed
  432. with an error.
  433. @param allowGrouping If `YES`, multiple sequential calls to
  434. `commitAsyncWriteTransaction:` may be batched together
  435. and persisted to stable storage in one group. This
  436. improves write performance, particularly when the
  437. individual transactions being batched are small. In the
  438. event of a crash or power failure, either all of the
  439. grouped transactions will be lost or none will, rather
  440. than the usual guarantee that data has been persisted as
  441. soon as a call to commit has returned.
  442. @return An id identifying the asynchronous transaction commit can be passed to
  443. `cancelAsyncTransaction:` prior to the completion block being called
  444. to cancel the pending invocation of the block. Note that this does
  445. *not* cancel the commit itself.
  446. */
  447. - (RLMAsyncTransactionId)commitAsyncWriteTransaction:(nullable void(^)(NSError *_Nullable))completionBlock
  448. allowGrouping:(BOOL)allowGrouping;
  449. /**
  450. Asynchronously commits a write transaction.
  451. The call returns immediately allowing the caller to proceed while the I/O is
  452. performed on a dedicated background thread. This can be used regardless of if
  453. the write transaction was begun with `beginWriteTransaction` or
  454. `beginAsyncWriteTransaction`.
  455. @param completionBlock A block which will be called on the source thread or
  456. queue once the commit has either completed or failed
  457. with an error.
  458. @return An id identifying the asynchronous transaction commit can be passed to
  459. `cancelAsyncTransaction:` prior to the completion block being called
  460. to cancel the pending invocation of the block. Note that this does
  461. *not* cancel the commit itself.
  462. */
  463. - (RLMAsyncTransactionId)commitAsyncWriteTransaction:(void(^)(NSError *_Nullable))completionBlock;
  464. /**
  465. Asynchronously commits a write transaction.
  466. The call returns immediately allowing the caller to proceed while the I/O is
  467. performed on a dedicated background thread. This can be used regardless of if
  468. the write transaction was begun with `beginWriteTransaction` or
  469. `beginAsyncWriteTransaction`.
  470. @return An id identifying the asynchronous transaction commit can be passed to
  471. `cancelAsyncTransaction:` prior to the completion block being called
  472. to cancel the pending invocation of the block. Note that this does
  473. *not* cancel the commit itself.
  474. */
  475. - (RLMAsyncTransactionId)commitAsyncWriteTransaction;
  476. /**
  477. Cancels a queued block for an asynchronous transaction.
  478. This can cancel a block passed to either an asynchronous begin or an
  479. asynchronous commit. Canceling a begin cancels that transaction entirely,
  480. while canceling a commit merely cancels the invocation of the completion
  481. callback, and the commit will still happen.
  482. Transactions can only be canceled before the block is invoked, and calling
  483. `cancelAsyncTransaction:` from within the block is a no-op.
  484. @param asyncTransactionId A transaction id from either `beginAsyncWriteTransaction:` or `commitAsyncWriteTransaction:`.
  485. */
  486. - (void)cancelAsyncTransaction:(RLMAsyncTransactionId)asyncTransactionId;
  487. /**
  488. Asynchronously performs actions contained within the given block inside a
  489. write transaction.
  490. The write transaction is begun asynchronously as if calling
  491. `beginAsyncWriteTransaction:`, and by default the transaction is commited
  492. asynchronously after the block completes. You can also explicitly call
  493. `commitWriteTransaction` or `cancelWriteTransaction` from within the block to
  494. synchronously commit or cancel the write transaction.
  495. @param block The block containing actions to perform.
  496. @param completionBlock A block which will be called on the source thread or
  497. queue once the commit has either completed or failed
  498. with an error.
  499. @return An id identifying the asynchronous transaction which can be passed to
  500. `cancelAsyncTransaction:` prior to the block being called to cancel
  501. the pending invocation of the block.
  502. */
  503. - (RLMAsyncTransactionId)asyncTransactionWithBlock:(void(^)(void))block onComplete:(nullable void(^)(NSError *))completionBlock;
  504. /**
  505. Asynchronously performs actions contained within the given block inside a
  506. write transaction.
  507. The write transaction is begun asynchronously as if calling
  508. `beginAsyncWriteTransaction:`, and by default the transaction is commited
  509. asynchronously after the block completes. You can also explicitly call
  510. `commitWriteTransaction` or `cancelWriteTransaction` from within the block to
  511. synchronously commit or cancel the write transaction.
  512. @param block The block containing actions to perform.
  513. @return An id identifying the asynchronous transaction which can be passed to
  514. `cancelAsyncTransaction:` prior to the block being called to cancel
  515. the pending invocation of the block.
  516. */
  517. - (RLMAsyncTransactionId)asyncTransactionWithBlock:(void(^)(void))block;
  518. /**
  519. Updates the Realm and outstanding objects managed by the Realm to point to the
  520. most recent data.
  521. If the version of the Realm is actually changed, Realm and collection
  522. notifications will be sent to reflect the changes. This may take some time, as
  523. collection notifications are prepared on a background thread. As a result,
  524. calling this method on the main thread is not advisable.
  525. @return Whether there were any updates for the Realm. Note that `YES` may be
  526. returned even if no data actually changed.
  527. */
  528. - (BOOL)refresh;
  529. /**
  530. Set this property to `YES` to automatically update this Realm when changes
  531. happen in other threads.
  532. If set to `YES` (the default), changes made on other threads will be reflected
  533. in this Realm on the next cycle of the run loop after the changes are
  534. committed. If set to `NO`, you must manually call `-refresh` on the Realm to
  535. update it to get the latest data.
  536. Note that by default, background threads do not have an active run loop and you
  537. will need to manually call `-refresh` in order to update to the latest version,
  538. even if `autorefresh` is set to `YES`.
  539. Even with this property enabled, you can still call `-refresh` at any time to
  540. update the Realm before the automatic refresh would occur.
  541. Write transactions will still always advance a Realm to the latest version and
  542. produce local notifications on commit even if autorefresh is disabled.
  543. Disabling `autorefresh` on a Realm without any strong references to it will not
  544. have any effect, and `autorefresh` will revert back to `YES` the next time the
  545. Realm is created. This is normally irrelevant as it means that there is nothing
  546. to refresh (as managed `RLMObject`s, `RLMArray`s, and `RLMResults` have strong
  547. references to the Realm that manages them), but it means that setting
  548. `RLMRealm.defaultRealm.autorefresh = NO` in
  549. `application:didFinishLaunchingWithOptions:` and only later storing Realm
  550. objects will not work.
  551. Defaults to `YES`.
  552. */
  553. @property (nonatomic) BOOL autorefresh;
  554. /**
  555. Invalidates all `RLMObject`s, `RLMResults`, `RLMLinkingObjects`, and `RLMArray`s managed by the Realm.
  556. A Realm holds a read lock on the version of the data accessed by it, so
  557. that changes made to the Realm on different threads do not modify or delete the
  558. data seen by this Realm. Calling this method releases the read lock,
  559. allowing the space used on disk to be reused by later write transactions rather
  560. than growing the file. This method should be called before performing long
  561. blocking operations on a background thread on which you previously read data
  562. from the Realm which you no longer need.
  563. All `RLMObject`, `RLMResults` and `RLMArray` instances obtained from this
  564. `RLMRealm` instance on the current thread are invalidated. `RLMObject`s and `RLMArray`s
  565. cannot be used. `RLMResults` will become empty. The Realm itself remains valid,
  566. and a new read transaction is implicitly begun the next time data is read from the Realm.
  567. Calling this method multiple times in a row without reading any data from the
  568. Realm, or before ever reading any data from the Realm, is a no-op.
  569. */
  570. - (void)invalidate;
  571. #pragma mark - Accessing Objects
  572. /**
  573. Returns the same object as the one referenced when the `RLMThreadSafeReference` was first created,
  574. but resolved for the current Realm for this thread. Returns `nil` if this object was deleted after
  575. the reference was created.
  576. @param reference The thread-safe reference to the thread-confined object to resolve in this Realm.
  577. @warning A `RLMThreadSafeReference` object must be resolved at most once.
  578. Failing to resolve a `RLMThreadSafeReference` will result in the source version of the
  579. Realm being pinned until the reference is deallocated.
  580. An exception will be thrown if a reference is resolved more than once.
  581. @warning Cannot call within a write transaction.
  582. @note Will refresh this Realm if the source Realm was at a later version than this one.
  583. @see `+[RLMThreadSafeReference referenceWithThreadConfined:]`
  584. */
  585. - (nullable id)resolveThreadSafeReference:(RLMThreadSafeReference *)reference
  586. NS_REFINED_FOR_SWIFT;
  587. #pragma mark - Adding and Removing Objects from a Realm
  588. /**
  589. Adds an object to the Realm.
  590. Once added, this object is considered to be managed by the Realm. It can be retrieved
  591. using the `objectsWhere:` selectors on `RLMRealm` and on subclasses of `RLMObject`.
  592. When added, all child relationships referenced by this object will also be added to
  593. the Realm if they are not already in it.
  594. If the object or any related objects are already being managed by a different Realm
  595. an exception will be thrown. Use `-[RLMObject createInRealm:withObject:]` to insert a copy of a managed object
  596. into a different Realm.
  597. The object to be added must be valid and cannot have been previously deleted
  598. from a Realm (i.e. `isInvalidated` must be `NO`).
  599. @warning This method may only be called during a write transaction.
  600. @param object The object to be added to this Realm.
  601. */
  602. - (void)addObject:(RLMObject *)object;
  603. /**
  604. Adds all the objects in a collection to the Realm.
  605. This is the equivalent of calling `addObject:` for every object in a collection.
  606. @warning This method may only be called during a write transaction.
  607. @param objects An enumerable collection such as `NSArray`, `RLMArray`, or `RLMResults`,
  608. containing Realm objects to be added to the Realm.
  609. @see `addObject:`
  610. */
  611. - (void)addObjects:(id<NSFastEnumeration>)objects;
  612. /**
  613. Adds or updates an existing object into the Realm.
  614. The object provided must have a designated primary key. If no objects exist in the Realm
  615. with the same primary key value, the object is inserted. Otherwise, the existing object is
  616. updated with any changed values.
  617. As with `addObject:`, the object cannot already be managed by a different
  618. Realm. Use `-[RLMObject createOrUpdateInRealm:withValue:]` to copy values to
  619. a different Realm.
  620. If there is a property or KVC value on `object` whose value is nil, and it corresponds
  621. to a nullable property on an existing object being updated, that nullable property will
  622. be set to nil.
  623. @warning This method may only be called during a write transaction.
  624. @param object The object to be added or updated.
  625. */
  626. - (void)addOrUpdateObject:(RLMObject *)object;
  627. /**
  628. Adds or updates all the objects in a collection into the Realm.
  629. This is the equivalent of calling `addOrUpdateObject:` for every object in a collection.
  630. @warning This method may only be called during a write transaction.
  631. @param objects An enumerable collection such as `NSArray`, `RLMArray`, or `RLMResults`,
  632. containing Realm objects to be added to or updated within the Realm.
  633. @see `addOrUpdateObject:`
  634. */
  635. - (void)addOrUpdateObjects:(id<NSFastEnumeration>)objects;
  636. /**
  637. Deletes an object from the Realm. Once the object is deleted it is considered invalidated.
  638. @warning This method may only be called during a write transaction.
  639. @param object The object to be deleted.
  640. */
  641. - (void)deleteObject:(RLMObject *)object;
  642. /**
  643. Deletes one or more objects from the Realm.
  644. This is the equivalent of calling `deleteObject:` for every object in a collection.
  645. @warning This method may only be called during a write transaction.
  646. @param objects An enumerable collection such as `NSArray`, `RLMArray`, or `RLMResults`,
  647. containing objects to be deleted from the Realm.
  648. @see `deleteObject:`
  649. */
  650. - (void)deleteObjects:(id<NSFastEnumeration>)objects;
  651. /**
  652. Deletes all objects from the Realm.
  653. @warning This method may only be called during a write transaction.
  654. @see `deleteObject:`
  655. */
  656. - (void)deleteAllObjects;
  657. #pragma mark - Sync Subscriptions
  658. /**
  659. Represents the active subscriptions for this realm, which can be used to add/remove/update
  660. and search flexible sync subscriptions.
  661. Getting the subscriptions from a local or partition-based configured realm will thrown an exception.
  662. @warning This feature is currently in beta and its API is subject to change.
  663. */
  664. @property (nonatomic, readonly, nonnull) RLMSyncSubscriptionSet *subscriptions;
  665. #pragma mark - Migrations
  666. /**
  667. The type of a migration block used to migrate a Realm.
  668. @param migration A `RLMMigration` object used to perform the migration. The
  669. migration object allows you to enumerate and alter any
  670. existing objects which require migration.
  671. @param oldSchemaVersion The schema version of the Realm being migrated.
  672. */
  673. RLM_SWIFT_SENDABLE
  674. typedef void (^RLMMigrationBlock)(RLMMigration *migration, uint64_t oldSchemaVersion);
  675. /**
  676. Returns the schema version for a Realm at a given local URL.
  677. @param fileURL Local URL to a Realm file.
  678. @param key 64-byte key used to encrypt the file, or `nil` if it is unencrypted.
  679. @param error If an error occurs, upon return contains an `NSError` object
  680. that describes the problem. If you are not interested in
  681. possible errors, pass in `NULL`.
  682. @return The version of the Realm at `fileURL`, or `RLMNotVersioned` if the version cannot be read.
  683. */
  684. + (uint64_t)schemaVersionAtURL:(NSURL *)fileURL encryptionKey:(nullable NSData *)key
  685. error:(NSError **)error
  686. NS_REFINED_FOR_SWIFT;
  687. /**
  688. Performs the given Realm configuration's migration block on a Realm at the given path.
  689. This method is called automatically when opening a Realm for the first time and does
  690. not need to be called explicitly. You can choose to call this method to control
  691. exactly when and how migrations are performed.
  692. @param configuration The Realm configuration used to open and migrate the Realm.
  693. @return The error that occurred while applying the migration, if any.
  694. @see RLMMigration
  695. */
  696. + (BOOL)performMigrationForConfiguration:(RLMRealmConfiguration *)configuration error:(NSError **)error;
  697. #pragma mark - Unavailable Methods
  698. /**
  699. RLMRealm instances are cached internally by Realm and cannot be created directly.
  700. Use `+[RLMRealm defaultRealm]`, `+[RLMRealm realmWithConfiguration:error:]` or
  701. `+[RLMRealm realmWithURL]` to obtain a reference to an RLMRealm.
  702. */
  703. - (instancetype)init __attribute__((unavailable("Use +defaultRealm, +realmWithConfiguration: or +realmWithURL:.")));
  704. /**
  705. RLMRealm instances are cached internally by Realm and cannot be created directly.
  706. Use `+[RLMRealm defaultRealm]`, `+[RLMRealm realmWithConfiguration:error:]` or
  707. `+[RLMRealm realmWithURL]` to obtain a reference to an RLMRealm.
  708. */
  709. + (instancetype)new __attribute__((unavailable("Use +defaultRealm, +realmWithConfiguration: or +realmWithURL:.")));
  710. /// :nodoc:
  711. - (void)addOrUpdateObjectsFromArray:(id)array __attribute__((unavailable("Renamed to -addOrUpdateObjects:.")));
  712. @end
  713. // MARK: - RLMNotificationToken
  714. /**
  715. A token which is returned from methods which subscribe to changes to a Realm.
  716. Change subscriptions in Realm return an `RLMNotificationToken` instance,
  717. which can be used to unsubscribe from the changes. You must store a strong
  718. reference to the token for as long as you want to continue to receive notifications.
  719. When you wish to stop, call the `-invalidate` method. Notifications are also stopped if
  720. the token is deallocated.
  721. */
  722. RLM_SWIFT_SENDABLE // is internally thread-safe
  723. @interface RLMNotificationToken : NSObject
  724. /// Stops notifications for the change subscription that returned this token.
  725. - (void)invalidate;
  726. /// Stops notifications for the change subscription that returned this token.
  727. - (void)stop __attribute__((unavailable("Renamed to -invalidate."))) NS_REFINED_FOR_SWIFT;
  728. @end
  729. RLM_HEADER_AUDIT_END(nullability, sendability)