RLMSyncManager.h 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2016 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/RLMSyncUtil.h>
  20. @class RLMSyncSession, RLMSyncTimeoutOptions, RLMAppConfiguration;
  21. NS_ASSUME_NONNULL_BEGIN
  22. /// An enum representing different levels of sync-related logging that can be configured.
  23. typedef RLM_CLOSED_ENUM(NSUInteger, RLMSyncLogLevel) {
  24. /// Nothing will ever be logged.
  25. RLMSyncLogLevelOff,
  26. /// Only fatal errors will be logged.
  27. RLMSyncLogLevelFatal,
  28. /// Only errors will be logged.
  29. RLMSyncLogLevelError,
  30. /// Warnings and errors will be logged.
  31. RLMSyncLogLevelWarn,
  32. /// Information about sync events will be logged. Fewer events will be logged in order to avoid overhead.
  33. RLMSyncLogLevelInfo,
  34. /// Information about sync events will be logged. More events will be logged than with `RLMSyncLogLevelInfo`.
  35. RLMSyncLogLevelDetail,
  36. /// Log information that can aid in debugging.
  37. ///
  38. /// - warning: Will incur a measurable performance impact.
  39. RLMSyncLogLevelDebug,
  40. /// Log information that can aid in debugging. More events will be logged than with `RLMSyncLogLevelDebug`.
  41. ///
  42. /// - warning: Will incur a measurable performance impact.
  43. RLMSyncLogLevelTrace,
  44. /// Log information that can aid in debugging. More events will be logged than with `RLMSyncLogLevelTrace`.
  45. ///
  46. /// - warning: Will incur a measurable performance impact.
  47. RLMSyncLogLevelAll
  48. };
  49. /// A log callback function which can be set on RLMSyncManager.
  50. ///
  51. /// The log function may be called from multiple threads simultaneously, and is
  52. /// responsible for performing its own synchronization if any is required.
  53. typedef void (*RLMSyncLogFunction)(RLMSyncLogLevel level, NSString *message);
  54. /// A block type representing a block which can be used to report a sync-related error to the application. If the error
  55. /// pertains to a specific session, that session will also be passed into the block.
  56. typedef void(^RLMSyncErrorReportingBlock)(NSError *, RLMSyncSession * _Nullable);
  57. /**
  58. A manager which serves as a central point for sync-related configuration.
  59. */
  60. @interface RLMSyncManager : NSObject
  61. /**
  62. A block which can optionally be set to report sync-related errors to your application.
  63. Any error reported through this block will be of the `RLMSyncError` type, and marked
  64. with the `RLMSyncErrorDomain` domain.
  65. Errors reported through this mechanism are fatal, with several exceptions. Please consult
  66. `RLMSyncError` for information about the types of errors that can be reported through
  67. the block, and for for suggestions on handling recoverable error codes.
  68. @see `RLMSyncError`
  69. */
  70. @property (nullable, nonatomic, copy) RLMSyncErrorReportingBlock errorHandler;
  71. /**
  72. A reverse-DNS string uniquely identifying this application. In most cases this
  73. is automatically set by the SDK, and does not have to be explicitly configured.
  74. */
  75. @property (nonatomic, copy) NSString *appID;
  76. /**
  77. A string identifying this application which is included in the User-Agent
  78. header of sync connections. By default, this will be the application's bundle
  79. identifier.
  80. This property must be set prior to opening a synchronized Realm for the first
  81. time. Any modifications made after opening a Realm will be ignored.
  82. */
  83. @property (nonatomic, copy) NSString *userAgent;
  84. /**
  85. The logging threshold which newly opened synced Realms will use. Defaults to
  86. `RLMSyncLogLevelInfo`.
  87. By default logging strings are output to Apple System Logger. Set `logger` to
  88. perform custom logging logic instead.
  89. @warning This property must be set before any synced Realms are opened. Setting it after
  90. opening any synced Realm will do nothing.
  91. */
  92. @property (nonatomic) RLMSyncLogLevel logLevel;
  93. /**
  94. The function which will be invoked whenever the sync client has a log message.
  95. If nil, log strings are output to Apple System Logger instead.
  96. @warning This property must be set before any synced Realms are opened. Setting
  97. it after opening any synced Realm will do nothing.
  98. */
  99. @property (nonatomic, nullable) RLMSyncLogFunction logger;
  100. /**
  101. The name of the HTTP header to send authorization data in when making requests to MongoDB Realm which has
  102. been configured to expect a custom authorization header.
  103. */
  104. @property (nullable, nonatomic, copy) NSString *authorizationHeaderName;
  105. /**
  106. Extra HTTP headers to append to every request to MongoDB Realm.
  107. Modifying this property while sync sessions are active will result in all
  108. sessions disconnecting and reconnecting using the new headers.
  109. */
  110. @property (nullable, nonatomic, copy) NSDictionary<NSString *, NSString *> *customRequestHeaders;
  111. /**
  112. Options for the assorted types of connection timeouts for sync connections.
  113. If nil default values for all timeouts are used instead.
  114. @warning This property must be set before any synced Realms are opened. Setting
  115. it after opening any synced Realm will do nothing.
  116. */
  117. @property (nullable, nonatomic, copy) RLMSyncTimeoutOptions *timeoutOptions;
  118. /// :nodoc:
  119. - (instancetype)init __attribute__((unavailable("RLMSyncManager cannot be created directly")));
  120. /// :nodoc:
  121. + (instancetype)new __attribute__((unavailable("RLMSyncManager cannot be created directly")));
  122. @end
  123. /**
  124. Options for configuring timeouts and intervals in the sync client.
  125. */
  126. @interface RLMSyncTimeoutOptions : NSObject
  127. /// The maximum number of milliseconds to allow for a connection to
  128. /// become fully established. This includes the time to resolve the
  129. /// network address, the TCP connect operation, the SSL handshake, and
  130. /// the WebSocket handshake.
  131. ///
  132. /// Defaults to 2 minutes.
  133. @property (nonatomic) NSUInteger connectTimeout;
  134. /// The number of milliseconds to keep a connection open after all
  135. /// sessions have been abandoned.
  136. ///
  137. /// After all synchronized Realms have been closed for a given server, the
  138. /// connection is kept open until the linger time has expire to avoid the
  139. /// overhead of reestablishing the connection when Realms are being closed and
  140. /// reopened.
  141. ///
  142. /// Defaults to 30 seconds.
  143. @property (nonatomic) NSUInteger connectionLingerTime;
  144. /// The number of milliseconds between each heartbeat ping message.
  145. ///
  146. /// The client periodically sends ping messages to the server to check if the
  147. /// connection is still alive. Shorter periods make connection state change
  148. /// notifications more responsive at the cost of battery life (as the antenna
  149. /// will have to wake up more often).
  150. ///
  151. /// Defaults to 1 minute.
  152. @property (nonatomic) NSUInteger pingKeepalivePeriod;
  153. /// How long in milliseconds to wait for a reponse to a heartbeat ping before
  154. /// concluding that the connection has dropped.
  155. ///
  156. /// Shorter values will make connection state change notifications more
  157. /// responsive as it will only change to `disconnected` after this much time has
  158. /// elapsed, but overly short values may result in spurious disconnection
  159. /// notifications when the server is simply taking a long time to respond.
  160. ///
  161. /// Defaults to 2 minutes.
  162. @property (nonatomic) NSUInteger pongKeepaliveTimeout;
  163. /// The maximum amount of time, in milliseconds, since the loss of a
  164. /// prior connection, for a new connection to be considered a "fast
  165. /// reconnect".
  166. ///
  167. /// When a client first connects to the server, it defers uploading any local
  168. /// changes until it has downloaded all changesets from the server. This
  169. /// typically reduces the total amount of merging that has to be done, and is
  170. /// particularly beneficial the first time that a specific client ever connects
  171. /// to the server.
  172. ///
  173. /// When an existing client disconnects and then reconnects within the "fact
  174. /// reconnect" time this is skipped and any local changes are uploaded
  175. /// immediately without waiting for downloads, just as if the client was online
  176. /// the whole time.
  177. ///
  178. /// Defaults to 1 minute.
  179. @property (nonatomic) NSUInteger fastReconnectLimit;
  180. /// The app configuration that has initialized this SyncManager.
  181. /// This can be set multiple times. This gives the SyncManager
  182. /// access to necessary app functionality.
  183. @property (nonatomic, readonly) RLMAppConfiguration *appConfiguration;
  184. @end
  185. NS_ASSUME_NONNULL_END