RLMSwiftCollectionBase.mm 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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 "RLMSwiftCollectionBase.h"
  19. #import "RLMArray_Private.hpp"
  20. #import "RLMObjectSchema_Private.h"
  21. #import "RLMObject_Private.hpp"
  22. #import "RLMObservation.hpp"
  23. #import "RLMProperty_Private.h"
  24. #import "RLMRealm_Private.hpp"
  25. #import "RLMSet_Private.hpp"
  26. #import "RLMDictionary_Private.hpp"
  27. @interface RLMArray (KVO)
  28. - (NSArray *)objectsAtIndexes:(__unused NSIndexSet *)indexes;
  29. @end
  30. // Some of the things declared in the interface are handled by the proxy forwarding
  31. #pragma clang diagnostic push
  32. #pragma clang diagnostic ignored "-Wincomplete-implementation"
  33. @implementation RLMSwiftCollectionBase
  34. + (id<RLMCollection>)_unmanagedCollection {
  35. return nil;
  36. }
  37. + (Class)_backingCollectionType {
  38. REALM_UNREACHABLE();
  39. }
  40. - (instancetype)init {
  41. return self;
  42. }
  43. - (instancetype)initWithCollection:(id<RLMCollection>)collection {
  44. __rlmCollection = collection;
  45. return self;
  46. }
  47. - (id<RLMCollection>)_rlmCollection {
  48. if (!__rlmCollection) {
  49. __rlmCollection = self.class._unmanagedCollection;
  50. }
  51. return __rlmCollection;
  52. }
  53. - (BOOL)isKindOfClass:(Class)aClass {
  54. return [self._rlmCollection isKindOfClass:aClass] || RLMIsKindOfClass(object_getClass(self), aClass);
  55. }
  56. - (NSMethodSignature *)methodSignatureForSelector:(SEL)sel {
  57. return [(id)self._rlmCollection methodSignatureForSelector:sel];
  58. }
  59. - (void)forwardInvocation:(NSInvocation *)invocation {
  60. [invocation invokeWithTarget:self._rlmCollection];
  61. }
  62. - (id)forwardingTargetForSelector:(__unused SEL)sel {
  63. return self._rlmCollection;
  64. }
  65. - (BOOL)respondsToSelector:(SEL)aSelector {
  66. return [self._rlmCollection respondsToSelector:aSelector];
  67. }
  68. - (void)doesNotRecognizeSelector:(SEL)aSelector {
  69. [(id)self._rlmCollection doesNotRecognizeSelector:aSelector];
  70. }
  71. - (BOOL)isEqual:(id)object {
  72. if (auto collection = RLMDynamicCast<RLMSwiftCollectionBase>(object)) {
  73. if (!__rlmCollection) {
  74. return !collection->__rlmCollection.realm && collection->__rlmCollection.count == 0;
  75. }
  76. return [__rlmCollection isEqual:collection->__rlmCollection];
  77. }
  78. return NO;
  79. }
  80. - (BOOL)conformsToProtocol:(Protocol *)aProtocol {
  81. return aProtocol == @protocol(NSFastEnumeration) || [self._rlmCollection conformsToProtocol:aProtocol];
  82. }
  83. @end
  84. #pragma clang diagnostic pop
  85. @implementation RLMLinkingObjectsHandle {
  86. realm::TableKey _tableKey;
  87. realm::ObjKey _objKey;
  88. RLMClassInfo *_info;
  89. RLMRealm *_realm;
  90. RLMProperty *_property;
  91. RLMResults *_results;
  92. }
  93. - (instancetype)initWithObject:(RLMObjectBase *)object property:(RLMProperty *)prop {
  94. if (!(self = [super init])) {
  95. return nil;
  96. }
  97. // KeyPath strings will invoke this initializer with an unmanaged object
  98. // so guard against that.
  99. if (object->_realm) {
  100. auto& obj = object->_row;
  101. _tableKey = obj.get_table()->get_key();
  102. _objKey = obj.get_key();
  103. _info = object->_info;
  104. _realm = object->_realm;
  105. }
  106. _property = prop;
  107. return self;
  108. }
  109. - (instancetype)initWithLinkingObjects:(RLMResults *)linkingObjects {
  110. if (!(self = [super init])) {
  111. return nil;
  112. }
  113. _realm = linkingObjects.realm;
  114. _results = linkingObjects;
  115. return self;
  116. }
  117. - (instancetype)freeze {
  118. RLMLinkingObjectsHandle *frozen = [[self.class alloc] init];
  119. frozen->_results = [self.results freeze];
  120. return frozen;
  121. }
  122. - (instancetype)thaw {
  123. RLMLinkingObjectsHandle *thawed = [[self.class alloc] init];
  124. thawed->_results = [self.results thaw];
  125. return thawed;
  126. }
  127. - (RLMResults *)results {
  128. if (_results) {
  129. return _results;
  130. }
  131. [_realm verifyThread];
  132. auto table = _realm.group.get_table(_tableKey);
  133. if (!table->is_valid(_objKey)) {
  134. @throw RLMException(@"Object has been deleted or invalidated.");
  135. }
  136. auto obj = _realm.group.get_table(_tableKey)->get_object(_objKey);
  137. auto& objectInfo = _realm->_info[_property.objectClassName];
  138. auto& linkOrigin = _info->objectSchema->computed_properties[_property.index].link_origin_property_name;
  139. auto linkingProperty = objectInfo.objectSchema->property_for_name(linkOrigin);
  140. realm::Results results(_realm->_realm, obj.get_backlink_view(objectInfo.table(), linkingProperty->column_key));
  141. _results = [RLMLinkingObjects resultsWithObjectInfo:objectInfo results:std::move(results)];
  142. _realm = nil;
  143. return _results;
  144. }
  145. - (NSString *)_propertyKey {
  146. return _property.name;
  147. }
  148. - (BOOL)_isLegacyProperty {
  149. return _property.isLegacy;
  150. }
  151. @end