RLMMongoCollection.h 19 KB

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