RLMSyncManager.mm 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  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 "RLMSyncManager_Private.hpp"
  19. #import "RLMApp_Private.hpp"
  20. #import "RLMRealmConfiguration+Sync.h"
  21. #import "RLMSyncConfiguration_Private.hpp"
  22. #import "RLMSyncSession_Private.hpp"
  23. #import "RLMUser_Private.hpp"
  24. #import "RLMSyncUtil_Private.hpp"
  25. #import "RLMUtil.hpp"
  26. #import <realm/sync/config.hpp>
  27. #import <realm/object-store/sync/sync_manager.hpp>
  28. #import <realm/object-store/sync/sync_session.hpp>
  29. #if !defined(REALM_COCOA_VERSION)
  30. #import "RLMVersion.h"
  31. #endif
  32. using namespace realm;
  33. using Level = realm::util::Logger::Level;
  34. namespace {
  35. Level levelForSyncLogLevel(RLMSyncLogLevel logLevel) {
  36. switch (logLevel) {
  37. case RLMSyncLogLevelOff: return Level::off;
  38. case RLMSyncLogLevelFatal: return Level::fatal;
  39. case RLMSyncLogLevelError: return Level::error;
  40. case RLMSyncLogLevelWarn: return Level::warn;
  41. case RLMSyncLogLevelInfo: return Level::info;
  42. case RLMSyncLogLevelDetail: return Level::detail;
  43. case RLMSyncLogLevelDebug: return Level::debug;
  44. case RLMSyncLogLevelTrace: return Level::trace;
  45. case RLMSyncLogLevelAll: return Level::all;
  46. }
  47. REALM_UNREACHABLE(); // Unrecognized log level.
  48. }
  49. RLMSyncLogLevel logLevelForLevel(Level logLevel) {
  50. switch (logLevel) {
  51. case Level::off: return RLMSyncLogLevelOff;
  52. case Level::fatal: return RLMSyncLogLevelFatal;
  53. case Level::error: return RLMSyncLogLevelError;
  54. case Level::warn: return RLMSyncLogLevelWarn;
  55. case Level::info: return RLMSyncLogLevelInfo;
  56. case Level::detail: return RLMSyncLogLevelDetail;
  57. case Level::debug: return RLMSyncLogLevelDebug;
  58. case Level::trace: return RLMSyncLogLevelTrace;
  59. case Level::all: return RLMSyncLogLevelAll;
  60. }
  61. REALM_UNREACHABLE(); // Unrecognized log level.
  62. }
  63. #pragma mark - Loggers
  64. struct CocoaSyncLogger : public realm::util::RootLogger {
  65. void do_log(Level, const std::string& message) override {
  66. NSLog(@"Sync: %@", RLMStringDataToNSString(message));
  67. }
  68. };
  69. struct CocoaSyncLoggerFactory : public realm::SyncLoggerFactory {
  70. std::unique_ptr<realm::util::Logger> make_logger(realm::util::Logger::Level level) override {
  71. auto logger = std::make_unique<CocoaSyncLogger>();
  72. logger->set_level_threshold(level);
  73. return std::move(logger);
  74. }
  75. } s_syncLoggerFactory;
  76. struct CallbackLogger : public realm::util::RootLogger {
  77. RLMSyncLogFunction logFn;
  78. void do_log(Level level, const std::string& message) override {
  79. @autoreleasepool {
  80. logFn(logLevelForLevel(level), RLMStringDataToNSString(message));
  81. }
  82. }
  83. };
  84. struct CallbackLoggerFactory : public realm::SyncLoggerFactory {
  85. RLMSyncLogFunction logFn;
  86. std::unique_ptr<realm::util::Logger> make_logger(realm::util::Logger::Level level) override {
  87. auto logger = std::make_unique<CallbackLogger>();
  88. logger->logFn = logFn;
  89. logger->set_level_threshold(level);
  90. return std::move(logger); // not a redundant move because it's a different type
  91. }
  92. CallbackLoggerFactory(RLMSyncLogFunction logFn) : logFn(logFn) { }
  93. };
  94. } // anonymous namespace
  95. #pragma mark - RLMSyncManager
  96. @interface RLMSyncTimeoutOptions () {
  97. @public
  98. realm::SyncClientTimeouts _options;
  99. }
  100. @end
  101. @implementation RLMSyncManager {
  102. std::unique_ptr<CallbackLoggerFactory> _loggerFactory;
  103. std::shared_ptr<SyncManager> _syncManager;
  104. }
  105. - (instancetype)initWithSyncManager:(std::shared_ptr<realm::SyncManager>)syncManager {
  106. if (self = [super init]) {
  107. [RLMUser _setUpBindingContextFactory];
  108. _syncManager = syncManager;
  109. return self;
  110. }
  111. return nil;
  112. }
  113. + (SyncClientConfig)configurationWithRootDirectory:(NSURL *)rootDirectory appId:(NSString *)appId {
  114. SyncClientConfig config;
  115. bool should_encrypt = !getenv("REALM_DISABLE_METADATA_ENCRYPTION") && !RLMIsRunningInPlayground();
  116. config.logger_factory = &s_syncLoggerFactory;
  117. config.metadata_mode = should_encrypt ? SyncManager::MetadataMode::Encryption
  118. : SyncManager::MetadataMode::NoEncryption;
  119. @autoreleasepool {
  120. rootDirectory = rootDirectory ?: [NSURL fileURLWithPath:RLMDefaultDirectoryForBundleIdentifier(nil)];
  121. config.base_file_path = rootDirectory.path.UTF8String;
  122. bool isSwift = !!NSClassFromString(@"RealmSwiftObjectUtil");
  123. config.user_agent_binding_info =
  124. util::format("Realm%1/%2", isSwift ? "Swift" : "ObjectiveC",
  125. RLMStringDataWithNSString(REALM_COCOA_VERSION));
  126. config.user_agent_application_info = RLMStringDataWithNSString(appId);
  127. }
  128. return config;
  129. }
  130. - (std::weak_ptr<realm::app::App>)app {
  131. return _syncManager->app();
  132. }
  133. - (NSString *)appID {
  134. if (!_appID) {
  135. _appID = [[NSBundle mainBundle] bundleIdentifier] ?: @"(none)";
  136. }
  137. return _appID;
  138. }
  139. - (void)setUserAgent:(NSString *)userAgent {
  140. _syncManager->set_user_agent(RLMStringDataWithNSString(userAgent));
  141. _userAgent = userAgent;
  142. }
  143. - (void)setCustomRequestHeaders:(NSDictionary<NSString *,NSString *> *)customRequestHeaders {
  144. _customRequestHeaders = customRequestHeaders.copy;
  145. for (auto&& user : _syncManager->all_users()) {
  146. for (auto&& session : user->all_sessions()) {
  147. auto config = session->config();
  148. config.custom_http_headers.clear();
  149. for (NSString *key in customRequestHeaders) {
  150. config.custom_http_headers.emplace(key.UTF8String, customRequestHeaders[key].UTF8String);
  151. }
  152. session->update_configuration(std::move(config));
  153. }
  154. }
  155. }
  156. - (void)setLogger:(RLMSyncLogFunction)logFn {
  157. _logger = logFn;
  158. if (_logger) {
  159. _loggerFactory = std::make_unique<CallbackLoggerFactory>(logFn);
  160. _syncManager->set_logger_factory(*_loggerFactory);
  161. }
  162. else {
  163. _loggerFactory = nullptr;
  164. _syncManager->set_logger_factory(s_syncLoggerFactory);
  165. }
  166. }
  167. - (void)setTimeoutOptions:(RLMSyncTimeoutOptions *)timeoutOptions {
  168. _timeoutOptions = timeoutOptions;
  169. _syncManager->set_timeouts(timeoutOptions->_options);
  170. }
  171. #pragma mark - Passthrough properties
  172. - (RLMSyncLogLevel)logLevel {
  173. return logLevelForLevel(_syncManager->log_level());
  174. }
  175. - (void)setLogLevel:(RLMSyncLogLevel)logLevel {
  176. _syncManager->set_log_level(levelForSyncLogLevel(logLevel));
  177. }
  178. #pragma mark - Private API
  179. - (void)_fireError:(NSError *)error {
  180. dispatch_async(dispatch_get_main_queue(), ^{
  181. if (self.errorHandler) {
  182. self.errorHandler(error, nil);
  183. }
  184. });
  185. }
  186. - (void)resetForTesting {
  187. _errorHandler = nil;
  188. _appID = nil;
  189. _userAgent = nil;
  190. _logger = nil;
  191. _authorizationHeaderName = nil;
  192. _customRequestHeaders = nil;
  193. _timeoutOptions = nil;
  194. _syncManager->reset_for_testing();
  195. }
  196. - (std::shared_ptr<realm::SyncManager>)syncManager {
  197. return _syncManager;
  198. }
  199. @end
  200. #pragma mark - RLMSyncTimeoutOptions
  201. @implementation RLMSyncTimeoutOptions
  202. - (NSUInteger)connectTimeout {
  203. return static_cast<NSUInteger>(_options.connect_timeout);
  204. }
  205. - (void)setConnectTimeout:(NSUInteger)connectTimeout {
  206. _options.connect_timeout = connectTimeout;
  207. }
  208. - (NSUInteger)connectLingerTime {
  209. return static_cast<NSUInteger>(_options.connection_linger_time);
  210. }
  211. - (void)setConnectionLingerTime:(NSUInteger)connectionLingerTime {
  212. _options.connection_linger_time = connectionLingerTime;
  213. }
  214. - (NSUInteger)pingKeepalivePeriod {
  215. return static_cast<NSUInteger>(_options.ping_keepalive_period);
  216. }
  217. - (void)setPingKeepalivePeriod:(NSUInteger)pingKeepalivePeriod {
  218. _options.ping_keepalive_period = pingKeepalivePeriod;
  219. }
  220. - (NSUInteger)pongKeepaliveTimeout {
  221. return static_cast<NSUInteger>(_options.pong_keepalive_timeout);
  222. }
  223. - (void)setPongKeepaliveTimeout:(NSUInteger)pongKeepaliveTimeout {
  224. _options.pong_keepalive_timeout = pongKeepaliveTimeout;
  225. }
  226. - (NSUInteger)fastReconnectLimit {
  227. return static_cast<NSUInteger>(_options.fast_reconnect_limit);
  228. }
  229. - (void)setFastReconnectLimit:(NSUInteger)fastReconnectLimit {
  230. _options.fast_reconnect_limit = fastReconnectLimit;
  231. }
  232. @end