RLMRealmConfiguration+Sync.mm 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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 "RLMRealmConfiguration+Sync.h"
  19. #import "RLMBSON_Private.hpp"
  20. #import "RLMRealmConfiguration_Private.hpp"
  21. #import "RLMSyncConfiguration_Private.hpp"
  22. #import "RLMUser_Private.hpp"
  23. #import "RLMSyncManager_Private.hpp"
  24. #import "RLMSyncUtil_Private.hpp"
  25. #import "RLMUtil.hpp"
  26. #import <realm/object-store/sync/sync_manager.hpp>
  27. #import <realm/object-store/util/bson/bson.hpp>
  28. #import <realm/sync/config.hpp>
  29. @implementation RLMRealmConfiguration (Sync)
  30. #pragma mark - API
  31. - (void)setSyncConfiguration:(RLMSyncConfiguration *)syncConfiguration {
  32. if (syncConfiguration == nil) {
  33. self.config.sync_config = nullptr;
  34. return;
  35. }
  36. if (self.config.should_compact_on_launch_function) {
  37. @throw RLMException(@"Cannot set `syncConfiguration` when `shouldCompactOnLaunch` is set.");
  38. }
  39. RLMUser *user = syncConfiguration.user;
  40. if (user.state == RLMUserStateRemoved) {
  41. @throw RLMException(@"Cannot set a sync configuration which has an errored-out user.");
  42. }
  43. NSAssert(user.identifier, @"Cannot call this method on a user that doesn't have an identifier.");
  44. self.config.in_memory = false;
  45. self.config.sync_config = std::make_shared<realm::SyncConfig>([syncConfiguration rawConfiguration]);
  46. if (syncConfiguration.customFileURL) {
  47. self.config.path = syncConfiguration.customFileURL.path.UTF8String;
  48. } else {
  49. self.config.path = [user pathForPartitionValue:self.config.sync_config->partition_value];
  50. }
  51. [self updateSchemaMode];
  52. }
  53. - (RLMSyncConfiguration *)syncConfiguration {
  54. if (!self.config.sync_config) {
  55. return nil;
  56. }
  57. realm::SyncConfig& sync_config = *self.config.sync_config;
  58. return [[RLMSyncConfiguration alloc] initWithRawConfig:sync_config];
  59. }
  60. @end