123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- ////////////////////////////////////////////////////////////////////////////
- //
- // Copyright 2021 Realm Inc.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- //
- ////////////////////////////////////////////////////////////////////////////
- #import "RLMSwiftCollectionBase.h"
- #import "RLMArray_Private.hpp"
- #import "RLMObjectSchema_Private.h"
- #import "RLMObject_Private.hpp"
- #import "RLMObservation.hpp"
- #import "RLMProperty_Private.h"
- #import "RLMRealm_Private.hpp"
- #import "RLMSet_Private.hpp"
- #import "RLMDictionary_Private.hpp"
- @interface RLMArray (KVO)
- - (NSArray *)objectsAtIndexes:(__unused NSIndexSet *)indexes;
- @end
- // Some of the things declared in the interface are handled by the proxy forwarding
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wincomplete-implementation"
- @implementation RLMSwiftCollectionBase
- + (id<RLMCollection>)_unmanagedCollection {
- return nil;
- }
- + (Class)_backingCollectionType {
- REALM_UNREACHABLE();
- }
- - (instancetype)init {
- return self;
- }
- - (instancetype)initWithCollection:(id<RLMCollection>)collection {
- __rlmCollection = collection;
- return self;
- }
- - (id<RLMCollection>)_rlmCollection {
- if (!__rlmCollection) {
- __rlmCollection = self.class._unmanagedCollection;
- }
- return __rlmCollection;
- }
- - (BOOL)isKindOfClass:(Class)aClass {
- return [self._rlmCollection isKindOfClass:aClass] || RLMIsKindOfClass(object_getClass(self), aClass);
- }
- - (NSMethodSignature *)methodSignatureForSelector:(SEL)sel {
- return [(id)self._rlmCollection methodSignatureForSelector:sel];
- }
- - (void)forwardInvocation:(NSInvocation *)invocation {
- [invocation invokeWithTarget:self._rlmCollection];
- }
- - (id)forwardingTargetForSelector:(__unused SEL)sel {
- return self._rlmCollection;
- }
- - (BOOL)respondsToSelector:(SEL)aSelector {
- return [self._rlmCollection respondsToSelector:aSelector];
- }
- - (void)doesNotRecognizeSelector:(SEL)aSelector {
- [(id)self._rlmCollection doesNotRecognizeSelector:aSelector];
- }
- - (BOOL)isEqual:(id)object {
- if (auto collection = RLMDynamicCast<RLMSwiftCollectionBase>(object)) {
- if (!__rlmCollection) {
- return !collection->__rlmCollection.realm && collection->__rlmCollection.count == 0;
- }
- return [__rlmCollection isEqual:collection->__rlmCollection];
- }
- return NO;
- }
- - (BOOL)conformsToProtocol:(Protocol *)aProtocol {
- return aProtocol == @protocol(NSFastEnumeration) || [self._rlmCollection conformsToProtocol:aProtocol];
- }
- @end
- #pragma clang diagnostic pop
- @implementation RLMLinkingObjectsHandle {
- realm::TableKey _tableKey;
- realm::ObjKey _objKey;
- RLMClassInfo *_info;
- RLMRealm *_realm;
- RLMProperty *_property;
- RLMResults *_results;
- }
- - (instancetype)initWithObject:(RLMObjectBase *)object property:(RLMProperty *)prop {
- if (!(self = [super init])) {
- return nil;
- }
- // KeyPath strings will invoke this initializer with an unmanaged object
- // so guard against that.
- if (object->_realm) {
- auto& obj = object->_row;
- _tableKey = obj.get_table()->get_key();
- _objKey = obj.get_key();
- _info = object->_info;
- _realm = object->_realm;
- }
- _property = prop;
- return self;
- }
- - (instancetype)initWithLinkingObjects:(RLMResults *)linkingObjects {
- if (!(self = [super init])) {
- return nil;
- }
- _realm = linkingObjects.realm;
- _results = linkingObjects;
- return self;
- }
- - (instancetype)freeze {
- RLMLinkingObjectsHandle *frozen = [[self.class alloc] init];
- frozen->_results = [self.results freeze];
- return frozen;
- }
- - (instancetype)thaw {
- RLMLinkingObjectsHandle *thawed = [[self.class alloc] init];
- thawed->_results = [self.results thaw];
- return thawed;
- }
- - (RLMResults *)results {
- if (_results) {
- return _results;
- }
- [_realm verifyThread];
- auto table = _realm.group.get_table(_tableKey);
- if (!table->is_valid(_objKey)) {
- @throw RLMException(@"Object has been deleted or invalidated.");
- }
- auto obj = _realm.group.get_table(_tableKey)->get_object(_objKey);
- auto& objectInfo = _realm->_info[_property.objectClassName];
- auto& linkOrigin = _info->objectSchema->computed_properties[_property.index].link_origin_property_name;
- auto linkingProperty = objectInfo.objectSchema->property_for_name(linkOrigin);
- realm::Results results(_realm->_realm, obj.get_backlink_view(objectInfo.table(), linkingProperty->column_key));
- _results = [RLMLinkingObjects resultsWithObjectInfo:objectInfo results:std::move(results)];
- _realm = nil;
- return _results;
- }
- - (NSString *)_propertyKey {
- return _property.name;
- }
- - (BOOL)_isLegacyProperty {
- return _property.isLegacy;
- }
- @end
|