Files
RestKit/Code/CoreData/RKRelationshipConnectionOperation.m

217 lines
9.4 KiB
Objective-C

//
// RKRelationshipConnectionOperation.m
// RestKit
//
// Created by Blake Watters on 7/12/12.
// Copyright (c) 2012 RestKit. All rights reserved.
//
// 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 <CoreData/CoreData.h>
#import "RKRelationshipConnectionOperation.h"
#import "RKConnectionDescription.h"
#import "RKEntityMapping.h"
#import "RKLog.h"
#import "RKManagedObjectCaching.h"
#import "RKObjectMappingMatcher.h"
#import "RKErrors.h"
#import "RKObjectUtilities.h"
// Set Logging Component
#undef RKLogComponent
#define RKLogComponent RKlcl_cRestKitCoreData
id RKMutableSetValueForRelationship(NSRelationshipDescription *relationship);
id RKMutableSetValueForRelationship(NSRelationshipDescription *relationship)
{
if (! [relationship isToMany]) return nil;
return [relationship isOrdered] ? [NSMutableOrderedSet orderedSet] : [NSMutableSet set];
}
static BOOL RKConnectionAttributeValuesIsNotConnectable(NSDictionary *attributeValues)
{
return [[NSSet setWithArray:[attributeValues allValues]] isEqualToSet:[NSSet setWithObject:[NSNull null]]];
}
static NSDictionary *RKConnectionAttributeValuesWithObject(RKConnectionDescription *connection, NSManagedObject *managedObject)
{
NSCAssert([connection isForeignKeyConnection], @"Only valid for a foreign key connection");
NSMutableDictionary *destinationEntityAttributeValues = [NSMutableDictionary dictionaryWithCapacity:[connection.attributes count]];
for (NSString *sourceAttribute in connection.attributes) {
NSString *destinationAttribute = [connection.attributes objectForKey:sourceAttribute];
id sourceValue = [managedObject valueForKey:sourceAttribute];
[destinationEntityAttributeValues setValue:sourceValue ?: [NSNull null] forKey:destinationAttribute];
}
return RKConnectionAttributeValuesIsNotConnectable(destinationEntityAttributeValues) ? nil : destinationEntityAttributeValues;
}
@interface RKRelationshipConnectionOperation ()
@property (nonatomic, strong, readwrite) NSManagedObject *managedObject;
@property (nonatomic, strong, readwrite) RKConnectionDescription *connection;
@property (nonatomic, strong, readwrite) id<RKManagedObjectCaching> managedObjectCache;
@property (nonatomic, strong, readwrite) NSError *error;
@property (nonatomic, strong, readwrite) id connectedValue;
@property (nonatomic, copy) void (^connectionBlock)(RKRelationshipConnectionOperation *operation, id connectedValue);
// Helpers
@property (weak, nonatomic, readonly) NSManagedObjectContext *managedObjectContext;
@end
@implementation RKRelationshipConnectionOperation
- (id)initWithManagedObject:(NSManagedObject *)managedObject
connection:(RKConnectionDescription *)connection
managedObjectCache:(id<RKManagedObjectCaching>)managedObjectCache;
{
NSParameterAssert(managedObject);
NSAssert([managedObject isKindOfClass:[NSManagedObject class]], @"Relationship connection requires an instance of NSManagedObject");
NSParameterAssert(connection);
NSParameterAssert(managedObjectCache);
self = [self init];
if (self) {
self.managedObject = managedObject;
self.connection = connection;
self.managedObjectCache = managedObjectCache;
}
return self;
}
- (NSManagedObjectContext *)managedObjectContext
{
return self.managedObject.managedObjectContext;
}
- (id)relationshipValueWithConnectionResult:(id)result
{
// TODO: Replace with use of object mapping engine for type conversion
// NOTE: This is a nasty hack to work around the fact that NSOrderedSet does not support key-value
// collection operators. We try to detect and unpack a doubly wrapped collection
if ([self.connection.relationship isToMany] && RKObjectIsCollectionOfCollections(result)) {
id mutableSet = RKMutableSetValueForRelationship(self.connection.relationship);
for (id<NSFastEnumeration> enumerable in result) {
for (id object in enumerable) {
[mutableSet addObject:object];
}
}
return mutableSet;
}
if ([self.connection.relationship isToMany]) {
if ([result isKindOfClass:[NSArray class]]) {
if ([self.connection.relationship isOrdered]) {
return [NSOrderedSet orderedSetWithArray:result];
} else {
return [NSSet setWithArray:result];
}
} else if ([result isKindOfClass:[NSSet class]]) {
if ([self.connection.relationship isOrdered]) {
return [NSOrderedSet orderedSetWithSet:result];
} else {
return result;
}
} else if ([result isKindOfClass:[NSOrderedSet class]]) {
if ([self.connection.relationship isOrdered]) {
return result;
} else {
return [(NSOrderedSet *)result set];
}
} else {
if ([self.connection.relationship isOrdered]) {
return [NSOrderedSet orderedSetWithObject:result];
} else {
return [NSSet setWithObject:result];
}
}
}
return result;
}
- (id)findConnected:(BOOL *)shouldConnectRelationship
{
*shouldConnectRelationship = YES;
id connectionResult = nil;
if (self.connection.sourcePredicate && ![self.connection.sourcePredicate evaluateWithObject:self.managedObject]) return nil;
if ([self.connection isForeignKeyConnection]) {
NSDictionary *attributeValues = RKConnectionAttributeValuesWithObject(self.connection, self.managedObject);
// If there are no attribute values available for connecting, skip the connection entirely
if (! attributeValues) {
*shouldConnectRelationship = NO;
return nil;
}
NSSet *managedObjects = [self.managedObjectCache managedObjectsWithEntity:[self.connection.relationship destinationEntity]
attributeValues:attributeValues
inManagedObjectContext:self.managedObjectContext];
if (self.connection.destinationPredicate) managedObjects = [managedObjects filteredSetUsingPredicate:self.connection.destinationPredicate];
if (!self.connection.includesSubentities) managedObjects = [managedObjects filteredSetUsingPredicate:[NSPredicate predicateWithFormat:@"entity == %@", [self.connection.relationship destinationEntity]]];
if ([self.connection.relationship isToMany]) {
connectionResult = managedObjects;
} else {
if ([managedObjects count] > 1) RKLogWarning(@"Retrieved %ld objects satisfying connection criteria for one-to-one relationship connection: only one object will be connected.", (long) [managedObjects count]);
if ([managedObjects count]) connectionResult = [managedObjects anyObject];
}
} else if ([self.connection isKeyPathConnection]) {
connectionResult = [self.managedObject valueForKeyPath:self.connection.keyPath];
} else {
@throw [NSException exceptionWithName:NSInternalInconsistencyException
reason:[NSString stringWithFormat:@"%@ Attempted to establish a relationship using a mapping that"
" specifies neither a foreign key or a key path connection: %@",
NSStringFromClass([self class]), self.connection]
userInfo:nil];
}
return [self relationshipValueWithConnectionResult:connectionResult];
}
- (void)main
{
if (self.isCancelled || [self.managedObject isDeleted]) return;
NSString *relationshipName = self.connection.relationship.name;
RKLogTrace(@"Connecting relationship '%@' with mapping: %@", relationshipName, self.connection);
[self.managedObjectContext performBlockAndWait:^{
if (self.isCancelled || [self.managedObject isDeleted]) return;
BOOL shouldConnect = YES;
self.connectedValue = [self findConnected:&shouldConnect];
if (shouldConnect) {
@try {
[self.managedObject setValue:self.connectedValue forKeyPath:relationshipName];
RKLogDebug(@"Connected relationship '%@' to object '%@'", relationshipName, self.connectedValue);
if (self.connectionBlock) self.connectionBlock(self, self.connectedValue);
}
@catch (NSException *exception) {
if ([[exception name] isEqualToString:NSObjectInaccessibleException]) {
// Object has been deleted
RKLogDebug(@"Rescued an `NSObjectInaccessibleException` exception while attempting to establish a relationship.");
} else {
[exception raise];
}
}
}
}];
}
- (NSString *)description
{
return [NSString stringWithFormat:@"<%@:%p %@ in %@ using %@>",
[self class], self, self.connection, self.managedObjectContext, self.managedObjectCache];
}
@end