RLMMongoCollection.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2020 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/RLMNetworkTransport.h>
  19. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  20. @protocol RLMBSON;
  21. @class RLMFindOptions, RLMFindOneAndModifyOptions, RLMUpdateResult, RLMChangeStream, RLMObjectId;
  22. /// Delegate which is used for subscribing to changes on a `[RLMMongoCollection watch]` stream.
  23. @protocol RLMChangeEventDelegate
  24. /// The stream was opened.
  25. /// @param changeStream The RLMChangeStream subscribing to the stream changes.
  26. - (void)changeStreamDidOpen:(RLMChangeStream *)changeStream;
  27. /// The stream has been closed.
  28. /// @param error If an error occured when closing the stream, an error will be passed.
  29. - (void)changeStreamDidCloseWithError:(nullable NSError *)error;
  30. /// A error has occured while streaming.
  31. /// @param error The streaming error.
  32. - (void)changeStreamDidReceiveError:(NSError *)error;
  33. /// Invoked when a change event has been received.
  34. /// @param changeEvent The change event in BSON format.
  35. - (void)changeStreamDidReceiveChangeEvent:(id<RLMBSON>)changeEvent;
  36. @end
  37. /// Acts as a middleman and processes events with WatchStream
  38. RLM_SWIFT_SENDABLE RLM_FINAL // is internally thread-safe
  39. @interface RLMChangeStream : NSObject<RLMEventDelegate>
  40. /// Stops a watch streaming session.
  41. - (void)close;
  42. /// :nodoc:
  43. - (instancetype)init NS_UNAVAILABLE;
  44. @end
  45. /// The `RLMMongoCollection` represents a MongoDB collection.
  46. ///
  47. /// You can get an instance from a `RLMMongoDatabase`.
  48. ///
  49. /// Create, read, update, and delete methods are available.
  50. ///
  51. /// Operations against the Realm Cloud server are performed asynchronously.
  52. ///
  53. /// - Note:
  54. /// Before you can read or write data, a user must log in.
  55. /// - Usage:
  56. /// RLMMongoClient *client = [self.app mongoClient:@"mongodb1"];
  57. /// RLMMongoDatabase *database = [client databaseWithName:@"test_data"];
  58. /// RLMMongoCollection *collection = [database collectionWithName:@"Dog"];
  59. /// [collection insertOneDocument:@{@"name": @"fido", @"breed": @"cane corso"} completion:...];
  60. ///
  61. /// - SeeAlso:
  62. /// `RLMMongoClient`, `RLMMongoDatabase`
  63. RLM_SWIFT_SENDABLE RLM_FINAL // is internally thread-safe
  64. @interface RLMMongoCollection : NSObject
  65. /// Block which returns an object id on a successful insert, or an error should one occur.
  66. RLM_SWIFT_SENDABLE // invoked on a background thread
  67. typedef void(^RLMMongoInsertBlock)(id<RLMBSON> _Nullable, NSError * _Nullable);
  68. /// Block which returns an array of object ids on a successful insertMany, or an error should one occur.
  69. RLM_SWIFT_SENDABLE // invoked on a background thread
  70. typedef void(^RLMMongoInsertManyBlock)(NSArray<id<RLMBSON>> * _Nullable, NSError * _Nullable);
  71. /// Block which returns an array of Documents on a successful find operation, or an error should one occur.
  72. RLM_SWIFT_SENDABLE // invoked on a background thread
  73. typedef void(^RLMMongoFindBlock)(NSArray<NSDictionary<NSString *, id<RLMBSON>> *> * _Nullable,
  74. NSError * _Nullable);
  75. /// Block which returns a Document on a successful findOne operation, or an error should one occur.
  76. RLM_SWIFT_SENDABLE // invoked on a background thread
  77. typedef void(^RLMMongoFindOneBlock)(NSDictionary<NSString *, id<RLMBSON>> * _Nullable_result,
  78. NSError * _Nullable);
  79. /// Block which returns the number of Documents in a collection on a successful count operation, or an error should one occur.
  80. RLM_SWIFT_SENDABLE // invoked on a background thread
  81. typedef void(^RLMMongoCountBlock)(NSInteger, NSError * _Nullable);
  82. /// Block which returns an RLMUpdateResult on a successful update operation, or an error should one occur.
  83. RLM_SWIFT_SENDABLE // invoked on a background thread
  84. typedef void(^RLMMongoUpdateBlock)(RLMUpdateResult * _Nullable, NSError * _Nullable);
  85. /// Block which returns the deleted Document on a successful delete operation, or an error should one occur.
  86. RLM_SWIFT_SENDABLE // invoked on a background thread
  87. typedef void(^RLMMongoDeleteBlock)(NSDictionary<NSString *, id<RLMBSON>> * _Nullable_result,
  88. NSError * _Nullable);
  89. /// The name of this mongodb collection.
  90. @property (nonatomic, readonly) NSString *name;
  91. /// Encodes the provided value to BSON and inserts it. If the value is missing an identifier, one will be
  92. /// generated for it.
  93. /// @param document A `Document` value to insert.
  94. /// @param completion The result of attempting to perform the insert. An Id will be returned for the inserted object on sucess
  95. - (void)insertOneDocument:(NSDictionary<NSString *, id<RLMBSON>> *)document
  96. completion:(RLMMongoInsertBlock)completion NS_REFINED_FOR_SWIFT;
  97. /// Encodes the provided values to BSON and inserts them. If any values are missing identifiers,
  98. /// they will be generated.
  99. /// @param documents The `Document` values in a bson array to insert.
  100. /// @param completion The result of the insert, returns an array inserted document ids in order
  101. - (void)insertManyDocuments:(NSArray<NSDictionary<NSString *, id<RLMBSON>> *> *)documents
  102. completion:(RLMMongoInsertManyBlock)completion NS_REFINED_FOR_SWIFT;
  103. /// Finds the documents in this collection which match the provided filter.
  104. /// @param filterDocument A `Document` as bson that should match the query.
  105. /// @param options `RLMFindOptions` to use when executing the command.
  106. /// @param completion The resulting bson array of documents or error if one occurs
  107. - (void)findWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  108. options:(RLMFindOptions *)options
  109. completion:(RLMMongoFindBlock)completion NS_REFINED_FOR_SWIFT;
  110. /// Finds the documents in this collection which match the provided filter.
  111. /// @param filterDocument A `Document` as bson that should match the query.
  112. /// @param completion The resulting bson array as a string or error if one occurs
  113. - (void)findWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  114. completion:(RLMMongoFindBlock)completion NS_REFINED_FOR_SWIFT;
  115. /// Returns one document from a collection or view which matches the
  116. /// provided filter. If multiple documents satisfy the query, this method
  117. /// returns the first document according to the query's sort order or natural
  118. /// order.
  119. /// @param filterDocument A `Document` as bson that should match the query.
  120. /// @param options `RLMFindOptions` to use when executing the command.
  121. /// @param completion The resulting bson or error if one occurs
  122. - (void)findOneDocumentWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  123. options:(RLMFindOptions *)options
  124. completion:(RLMMongoFindOneBlock)completion NS_REFINED_FOR_SWIFT;
  125. /// Returns one document from a collection or view which matches the
  126. /// provided filter. If multiple documents satisfy the query, this method
  127. /// returns the first document according to the query's sort order or natural
  128. /// order.
  129. /// @param filterDocument A `Document` as bson that should match the query.
  130. /// @param completion The resulting bson or error if one occurs
  131. - (void)findOneDocumentWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  132. completion:(RLMMongoFindOneBlock)completion NS_REFINED_FOR_SWIFT;
  133. /// Runs an aggregation framework pipeline against this collection.
  134. /// @param pipeline A bson array made up of `Documents` containing the pipeline of aggregation operations to perform.
  135. /// @param completion The resulting bson array of documents or error if one occurs
  136. - (void)aggregateWithPipeline:(NSArray<NSDictionary<NSString *, id<RLMBSON>> *> *)pipeline
  137. completion:(RLMMongoFindBlock)completion NS_REFINED_FOR_SWIFT;
  138. /// Counts the number of documents in this collection matching the provided filter.
  139. /// @param filterDocument A `Document` as bson that should match the query.
  140. /// @param limit The max amount of documents to count
  141. /// @param completion Returns the count of the documents that matched the filter.
  142. - (void)countWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  143. limit:(NSInteger)limit
  144. completion:(RLMMongoCountBlock)completion NS_REFINED_FOR_SWIFT;
  145. /// Counts the number of documents in this collection matching the provided filter.
  146. /// @param filterDocument A `Document` as bson that should match the query.
  147. /// @param completion Returns the count of the documents that matched the filter.
  148. - (void)countWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  149. completion:(RLMMongoCountBlock)completion NS_REFINED_FOR_SWIFT;
  150. /// Deletes a single matching document from the collection.
  151. /// @param filterDocument A `Document` as bson that should match the query.
  152. /// @param completion The result of performing the deletion. Returns the count of deleted objects
  153. - (void)deleteOneDocumentWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  154. completion:(RLMMongoCountBlock)completion NS_REFINED_FOR_SWIFT;
  155. /// Deletes multiple documents
  156. /// @param filterDocument Document representing the match criteria
  157. /// @param completion The result of performing the deletion. Returns the count of the deletion
  158. - (void)deleteManyDocumentsWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  159. completion:(RLMMongoCountBlock)completion NS_REFINED_FOR_SWIFT;
  160. /// Updates a single document matching the provided filter in this collection.
  161. /// @param filterDocument A bson `Document` representing the match criteria.
  162. /// @param updateDocument A bson `Document` representing the update to be applied to a matching document.
  163. /// @param upsert When true, creates a new document if no document matches the query.
  164. /// @param completion The result of the attempt to update a document.
  165. - (void)updateOneDocumentWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  166. updateDocument:(NSDictionary<NSString *, id<RLMBSON>> *)updateDocument
  167. upsert:(BOOL)upsert
  168. completion:(RLMMongoUpdateBlock)completion NS_REFINED_FOR_SWIFT;
  169. /// Updates a single document matching the provided filter in this collection.
  170. /// @param filterDocument A bson `Document` representing the match criteria.
  171. /// @param updateDocument A bson `Document` representing the update to be applied to a matching document.
  172. /// @param completion The result of the attempt to update a document.
  173. - (void)updateOneDocumentWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  174. updateDocument:(NSDictionary<NSString *, id<RLMBSON>> *)updateDocument
  175. completion:(RLMMongoUpdateBlock)completion NS_REFINED_FOR_SWIFT;
  176. /// Updates multiple documents matching the provided filter in this collection.
  177. /// @param filterDocument A bson `Document` representing the match criteria.
  178. /// @param updateDocument A bson `Document` representing the update to be applied to a matching document.
  179. /// @param upsert When true, creates a new document if no document matches the query.
  180. /// @param completion The result of the attempt to update a document.
  181. - (void)updateManyDocumentsWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  182. updateDocument:(NSDictionary<NSString *, id<RLMBSON>> *)updateDocument
  183. upsert:(BOOL)upsert
  184. completion:(RLMMongoUpdateBlock)completion NS_REFINED_FOR_SWIFT;
  185. /// Updates multiple documents matching the provided filter in this collection.
  186. /// @param filterDocument A bson `Document` representing the match criteria.
  187. /// @param updateDocument A bson `Document` representing the update to be applied to a matching document.
  188. /// @param completion The result of the attempt to update a document.
  189. - (void)updateManyDocumentsWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  190. updateDocument:(NSDictionary<NSString *, id<RLMBSON>> *)updateDocument
  191. completion:(RLMMongoUpdateBlock)completion NS_REFINED_FOR_SWIFT;
  192. /// Updates a single document in a collection based on a query filter and
  193. /// returns the document in either its pre-update or post-update form. Unlike
  194. /// `updateOneDocument`, this action allows you to atomically find, update, and
  195. /// return a document with the same command. This avoids the risk of other
  196. /// update operations changing the document between separate find and update
  197. /// operations.
  198. /// @param filterDocument A bson `Document` representing the match criteria.
  199. /// @param updateDocument A bson `Document` representing the update to be applied to a matching document.
  200. /// @param options `RemoteFindOneAndModifyOptions` to use when executing the command.
  201. /// @param completion The result of the attempt to update a document.
  202. - (void)findOneAndUpdateWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  203. updateDocument:(NSDictionary<NSString *, id<RLMBSON>> *)updateDocument
  204. options:(RLMFindOneAndModifyOptions *)options
  205. completion:(RLMMongoFindOneBlock)completion NS_REFINED_FOR_SWIFT;
  206. /// Updates a single document in a collection based on a query filter and
  207. /// returns the document in either its pre-update or post-update form. Unlike
  208. /// `updateOneDocument`, this action allows you to atomically find, update, and
  209. /// return a document with the same command. This avoids the risk of other
  210. /// update operations changing the document between separate find and update
  211. /// operations.
  212. /// @param filterDocument A bson `Document` representing the match criteria.
  213. /// @param updateDocument A bson `Document` representing the update to be applied to a matching document.
  214. /// @param completion The result of the attempt to update a document.
  215. - (void)findOneAndUpdateWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  216. updateDocument:(NSDictionary<NSString *, id<RLMBSON>> *)updateDocument
  217. completion:(RLMMongoFindOneBlock)completion NS_REFINED_FOR_SWIFT;
  218. /// Overwrites a single document in a collection based on a query filter and
  219. /// returns the document in either its pre-replacement or post-replacement
  220. /// form. Unlike `updateOneDocument`, this action allows you to atomically find,
  221. /// replace, and return a document with the same command. This avoids the
  222. /// risk of other update operations changing the document between separate
  223. /// find and update operations.
  224. /// @param filterDocument A `Document` that should match the query.
  225. /// @param replacementDocument A `Document` describing the replacement.
  226. /// @param options `RLMFindOneAndModifyOptions` to use when executing the command.
  227. /// @param completion The result of the attempt to replace a document.
  228. - (void)findOneAndReplaceWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  229. replacementDocument:(NSDictionary<NSString *, id<RLMBSON>> *)replacementDocument
  230. options:(RLMFindOneAndModifyOptions *)options
  231. completion:(RLMMongoFindOneBlock)completion NS_REFINED_FOR_SWIFT;
  232. /// Overwrites a single document in a collection based on a query filter and
  233. /// returns the document in either its pre-replacement or post-replacement
  234. /// form. Unlike `updateOneDocument`, this action allows you to atomically find,
  235. /// replace, and return a document with the same command. This avoids the
  236. /// risk of other update operations changing the document between separate
  237. /// find and update operations.
  238. /// @param filterDocument A `Document` that should match the query.
  239. /// @param replacementDocument A `Document` describing the update.
  240. /// @param completion The result of the attempt to replace a document.
  241. - (void)findOneAndReplaceWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  242. replacementDocument:(NSDictionary<NSString *, id<RLMBSON>> *)replacementDocument
  243. completion:(RLMMongoFindOneBlock)completion NS_REFINED_FOR_SWIFT;
  244. /// Removes a single document from a collection based on a query filter and
  245. /// returns a document with the same form as the document immediately before
  246. /// it was deleted. Unlike `deleteOneDocument`, this action allows you to atomically
  247. /// find and delete a document with the same command. This avoids the risk of
  248. /// other update operations changing the document between separate find and
  249. /// delete operations.
  250. /// @param filterDocument A `Document` that should match the query.
  251. /// @param options `RLMFindOneAndModifyOptions` to use when executing the command.
  252. /// @param completion The result of the attempt to delete a document.
  253. - (void)findOneAndDeleteWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  254. options:(RLMFindOneAndModifyOptions *)options
  255. completion:(RLMMongoDeleteBlock)completion NS_REFINED_FOR_SWIFT;
  256. /// Removes a single document from a collection based on a query filter and
  257. /// returns a document with the same form as the document immediately before
  258. /// it was deleted. Unlike `deleteOneDocument`, this action allows you to atomically
  259. /// find and delete a document with the same command. This avoids the risk of
  260. /// other update operations changing the document between separate find and
  261. /// delete operations.
  262. /// @param filterDocument A `Document` that should match the query.
  263. /// @param completion The result of the attempt to delete a document.
  264. - (void)findOneAndDeleteWhere:(NSDictionary<NSString *, id<RLMBSON>> *)filterDocument
  265. completion:(RLMMongoDeleteBlock)completion NS_REFINED_FOR_SWIFT;
  266. /// Opens a MongoDB change stream against the collection to watch for changes. The resulting stream will be notified
  267. /// of all events on this collection that the active user is authorized to see based on the configured MongoDB
  268. /// rules.
  269. /// @param delegate The delegate that will react to events and errors from the resulting change stream.
  270. /// @param queue Dispatches streaming events to an optional queue, if no queue is provided the main queue is used
  271. - (RLMChangeStream *)watchWithDelegate:(id<RLMChangeEventDelegate>)delegate
  272. delegateQueue:(nullable dispatch_queue_t)queue NS_REFINED_FOR_SWIFT;
  273. /// Opens a MongoDB change stream against the collection to watch for changes
  274. /// made to specific documents. The documents to watch must be explicitly
  275. /// specified by their _id.
  276. /// @param filterIds The list of _ids in the collection to watch.
  277. /// @param delegate The delegate that will react to events and errors from the resulting change stream.
  278. /// @param queue Dispatches streaming events to an optional queue, if no queue is provided the main queue is used
  279. - (RLMChangeStream *)watchWithFilterIds:(NSArray<RLMObjectId *> *)filterIds
  280. delegate:(id<RLMChangeEventDelegate>)delegate
  281. delegateQueue:(nullable dispatch_queue_t)queue NS_REFINED_FOR_SWIFT;
  282. /// Opens a MongoDB change stream against the collection to watch for changes. The provided BSON document will be
  283. /// used as a match expression filter on the change events coming from the stream.
  284. ///
  285. /// See https://docs.mongodb.com/manual/reference/operator/aggregation/match/ for documentation around how to define
  286. /// a match filter.
  287. ///
  288. /// Defining the match expression to filter ChangeEvents is similar to defining the match expression for triggers:
  289. /// https://docs.mongodb.com/realm/triggers/database-triggers/
  290. /// @param matchFilter The $match filter to apply to incoming change events
  291. /// @param delegate The delegate that will react to events and errors from the resulting change stream.
  292. /// @param queue Dispatches streaming events to an optional queue, if no queue is provided the main queue is used
  293. - (RLMChangeStream *)watchWithMatchFilter:(NSDictionary<NSString *, id<RLMBSON>> *)matchFilter
  294. delegate:(id<RLMChangeEventDelegate>)delegate
  295. delegateQueue:(nullable dispatch_queue_t)queue NS_REFINED_FOR_SWIFT;
  296. @end
  297. RLM_HEADER_AUDIT_END(nullability, sendability)