RLMSyncSubscription.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2021 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 RLMObjectId;
  20. #pragma mark - Subscription States
  21. /// The current state of the subscription. This can be used for ensuring that
  22. /// the subscriptions are not errored and that it has been successfully
  23. /// synced to the server.
  24. typedef NS_ENUM(NSUInteger, RLMSyncSubscriptionState) {
  25. /// The subscription is complete and the server has sent all the data that matched the subscription
  26. /// queries at the time the subscription set was updated. The server is now in a steady-state
  27. /// synchronization mode where it will stream update as they come.
  28. RLMSyncSubscriptionStateComplete,
  29. /// The subscription encountered an error and synchronization is paused for this Realm. You can
  30. /// find the error calling error in the subscription set to get a description of the error. You can
  31. /// still use the current subscription set to write a subscription.
  32. RLMSyncSubscriptionStateError,
  33. /// The subscription is persisted locally but not yet processed by the server, which means
  34. /// the server hasn't yet returned all the data that matched the updated subscription queries.
  35. RLMSyncSubscriptionStatePending,
  36. /// The subscription set has been super-ceded by an updated one, this typically means that
  37. /// someone is trying to write a subscription on a different instance of the subscription set.
  38. /// You should not use a superseded subscription set and instead obtain a new instance of
  39. /// the subscription set to write a subscription.
  40. RLMSyncSubscriptionStateSuperseded
  41. };
  42. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  43. /**
  44. `RLMSyncSubscription` is used to define a Flexible Sync subscription obtained from querying a
  45. subscription set, which can be used to read or remove/update a committed subscription.
  46. */
  47. @interface RLMSyncSubscription : NSObject
  48. /// Name of the subscription. If not specified it will return nil.
  49. @property (nonatomic, readonly, nullable) NSString *name;
  50. /// When the subscription was created. Recorded automatically.
  51. @property (nonatomic, readonly) NSDate *createdAt;
  52. /// When the subscription was last updated. Recorded automatically.
  53. @property (nonatomic, readonly) NSDate *updatedAt;
  54. /**
  55. Updates a Flexible Sync's subscription query with an allowed query which will be used to bootstrap data
  56. from the server when committed.
  57. @warning This method may only be called during a write subscription block.
  58. @param predicateFormat A predicate format string, optionally followed by a variable number of arguments.
  59. */
  60. - (void)updateSubscriptionWhere:(NSString *)predicateFormat, ...;
  61. /// :nodoc:
  62. - (void)updateSubscriptionWhere:(NSString *)predicateFormat
  63. args:(va_list)args;
  64. /**
  65. Updates a Flexible Sync's subscription query with an allowed query which will be used to bootstrap data
  66. from the server when committed.
  67. @warning This method may only be called during a write subscription block.
  68. @param predicate The predicate with which to filter the objects on the server.
  69. */
  70. - (void)updateSubscriptionWithPredicate:(NSPredicate *)predicate;
  71. @end
  72. /**
  73. `RLMSyncSubscriptionSet` is a collection of `RLMSyncSubscription`s. This is the entry point
  74. for adding and removing `RLMSyncSubscription`s.
  75. */
  76. @interface RLMSyncSubscriptionSet : NSObject <NSFastEnumeration>
  77. /// The number of subscriptions in the subscription set.
  78. @property (readonly) NSUInteger count;
  79. /// Gets the error associated to the subscription set. This will be non-nil in case the current
  80. /// state of the subscription set is `RLMSyncSubscriptionStateError`.
  81. @property (nonatomic, readonly, nullable) NSError *error;
  82. /// Gets the state associated to the subscription set.
  83. @property (nonatomic, readonly) RLMSyncSubscriptionState state;
  84. #pragma mark - Batch Update subscriptions
  85. /**
  86. Synchronously performs any transactions (add/remove/update) to the subscription set within the block,
  87. this will not wait for the server to acknowledge and see all the data associated with this collection of subscriptions,
  88. and will return after committing the subscription transactions.
  89. @param block The block containing actions to perform to the subscription set.
  90. */
  91. - (void)update:(__attribute__((noescape)) void(^)(void))block;
  92. /// :nodoc:
  93. - (void)write:(__attribute__((noescape)) void(^)(void))block __attribute__((unavailable("Renamed to -update")));
  94. /**
  95. Synchronously performs any transactions (add/remove/update) to the subscription set within the block,
  96. this will not wait for the server to acknowledge and see all the data associated with this collection of subscriptions,
  97. and will return after committing the subscription transactions.
  98. @param block The block containing actions to perform to the subscription set.
  99. @param onComplete A block which is called upon synchronization of
  100. subscriptions to the server. The block will be passed `nil`
  101. if the update succeeded, and an error describing the problem
  102. otherwise.
  103. */
  104. - (void)update:(__attribute__((noescape)) void(^)(void))block
  105. onComplete:(nullable void(^RLM_SWIFT_SENDABLE)(NSError *_Nullable))onComplete
  106. __attribute__((swift_async(not_swift_private, 2)))
  107. __attribute__((swift_attr("@_unsafeInheritExecutor")));
  108. /// :nodoc:
  109. - (void)write:(__attribute__((noescape)) void(^)(void))block
  110. onComplete:(void(^)(NSError * _Nullable))onComplete __attribute__((unavailable("Renamed to -update:onComplete.")));
  111. #pragma mark - Find subscription
  112. /**
  113. Finds a subscription by the specified name.
  114. @param name The name used to identify the subscription.
  115. @return A subscription for the given name.
  116. */
  117. - (nullable RLMSyncSubscription *)subscriptionWithName:(NSString *)name;
  118. /**
  119. Finds a subscription by the query for the specified object class name.
  120. @param objectClassName The class name for the model class to be queried.
  121. @param predicateFormat A predicate format string, optionally followed by a variable number of arguments.
  122. @return A subscription for the given query..
  123. */
  124. - (nullable RLMSyncSubscription *)subscriptionWithClassName:(NSString *)objectClassName
  125. where:(NSString *)predicateFormat, ...;
  126. /// :nodoc:
  127. - (nullable RLMSyncSubscription *)subscriptionWithClassName:(NSString *)objectClassName
  128. where:(NSString *)predicateFormat
  129. args:(va_list)args;
  130. /**
  131. Finds a subscription by the query for the specified object class name.
  132. @param objectClassName The class name for the model class to be queried.
  133. @param predicate The predicate used to to filter the objects on the server.
  134. @return A subscription for the given query..
  135. */
  136. - (nullable RLMSyncSubscription *)subscriptionWithClassName:(NSString *)objectClassName
  137. predicate:(NSPredicate *)predicate;
  138. #pragma mark - Add a Subscription
  139. /**
  140. Adds a new subscription to the subscription set which will be sent to the server when
  141. committed at the end of a write subscription block.
  142. @warning This method may only be called during a write subscription block.
  143. @param objectClassName The class name for the model class to be queried.
  144. @param predicateFormat A predicate format string, optionally followed by a variable number of arguments.
  145. */
  146. - (void)addSubscriptionWithClassName:(NSString *)objectClassName
  147. where:(NSString *)predicateFormat, ...;
  148. /// :nodoc:
  149. - (void)addSubscriptionWithClassName:(NSString *)objectClassName
  150. where:(NSString *)predicateFormat
  151. args:(va_list)args;
  152. /**
  153. Adds a new subscription to the subscription set which will be sent to the server when
  154. committed at the end of a write subscription block.
  155. @warning This method may only be called during a write subscription block.
  156. @param objectClassName The class name for the model class to be queried.
  157. @param name The name used the identify the subscription.
  158. @param predicateFormat A predicate format string, optionally followed by a variable number of arguments.
  159. */
  160. - (void)addSubscriptionWithClassName:(NSString *)objectClassName
  161. subscriptionName:(NSString *)name
  162. where:(NSString *)predicateFormat, ...;
  163. /// :nodoc:
  164. - (void)addSubscriptionWithClassName:(NSString *)objectClassName
  165. subscriptionName:(NSString *)name
  166. where:(NSString *)predicateFormat
  167. args:(va_list)args;
  168. /**
  169. Adds a new subscription to the subscription set which will be sent to the server when
  170. committed at the end of a write subscription block.
  171. @warning This method may only be called during a write subscription block.
  172. @param objectClassName The class name for the model class to be queried.
  173. @param predicate The predicate defining the query for the subscription.
  174. */
  175. - (void)addSubscriptionWithClassName:(NSString *)objectClassName
  176. predicate:(NSPredicate *)predicate;
  177. /**
  178. Adds a new subscription to the subscription set which will be sent to the server when
  179. committed at the end of a write subscription block.
  180. @warning This method may only be called during a write subscription block.
  181. @param objectClassName The class name for the model class to be queried.
  182. @param name The name used to identify the subscription.
  183. @param predicate The predicate defining the query for the subscription.
  184. */
  185. - (void)addSubscriptionWithClassName:(NSString *)objectClassName
  186. subscriptionName:(nullable NSString *)name
  187. predicate:(NSPredicate *)predicate;
  188. #pragma mark - Remove Subscription
  189. /**
  190. Removes a subscription with the specified name from the subscription set.
  191. @warning This method may only be called during a write subscription block.
  192. @param name The name used the identify the subscription.
  193. */
  194. - (void)removeSubscriptionWithName:(NSString *)name;
  195. /**
  196. Removes a subscription with the specified query for the object class from the subscription set.
  197. @warning This method may only be called during a write subscription block.
  198. @param objectClassName The class name for the model class to be queried.
  199. @param predicateFormat A predicate format string, optionally followed by a variable number of arguments.
  200. */
  201. - (void)removeSubscriptionWithClassName:(NSString *)objectClassName
  202. where:(NSString *)predicateFormat, ...;
  203. /// :nodoc:
  204. - (void)removeSubscriptionWithClassName:(NSString *)objectClassName
  205. where:(NSString *)predicateFormat
  206. args:(va_list)args;
  207. /**
  208. Removes a subscription with the specified query for the object class from the subscription set.
  209. @warning This method may only be called during a write subscription block.
  210. @param objectClassName The class name for the model class to be queried.
  211. @param predicate The predicate which will be used to identify the subscription to be removed.
  212. */
  213. - (void)removeSubscriptionWithClassName:(NSString *)objectClassName
  214. predicate:(NSPredicate *)predicate;
  215. /**
  216. Removes the subscription from the subscription set.
  217. @warning This method may only be called during a write subscription block.
  218. @param subscription An instance of the subscription to be removed.
  219. */
  220. - (void)removeSubscription:(RLMSyncSubscription *)subscription;
  221. #pragma mark - Remove Subscriptions
  222. /**
  223. Removes all subscription from the subscription set.
  224. @warning This method may only be called during a write subscription block.
  225. @warning Removing all subscriptions will result in an error if no new subscription is added. Server should
  226. acknowledge at least one subscription.
  227. */
  228. - (void)removeAllSubscriptions;
  229. /**
  230. Removes all subscription with the specified class name.
  231. @param className The class name for the model class to be queried.
  232. @warning This method may only be called during a write subscription block.
  233. */
  234. - (void)removeAllSubscriptionsWithClassName:(NSString *)className;
  235. #pragma mark - SubscriptionSet Collection
  236. /**
  237. Returns the subscription at the given `index`.
  238. @param index The index.
  239. @return A subscription for the given index in the subscription set.
  240. */
  241. - (nullable RLMSyncSubscription *)objectAtIndex:(NSUInteger)index;
  242. /**
  243. Returns the first object in the subscription set list, or `nil` if the subscriptions are empty.
  244. @return A subscription.
  245. */
  246. - (nullable RLMSyncSubscription *)firstObject;
  247. /**
  248. Returns the last object in the subscription set, or `nil` if the subscriptions are empty.
  249. @return A subscription.
  250. */
  251. - (nullable RLMSyncSubscription *)lastObject;
  252. #pragma mark - Subscript
  253. /**
  254. Returns the subscription at the given `index`.
  255. @param index The index.
  256. @return A subscription for the given index in the subscription set.
  257. */
  258. - (id)objectAtIndexedSubscript:(NSUInteger)index;
  259. @end
  260. RLM_HEADER_AUDIT_END(nullability, sendability)