Files
RestKit/Code/CoreData/RKPropertyInspector+CoreData.m

139 lines
6.8 KiB
Objective-C

//
// RKPropertyInspector+CoreData.m
// RestKit
//
// Created by Blake Watters on 8/14/11.
// Copyright (c) 2009-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 <objc/message.h>
#import "RKPropertyInspector+CoreData.h"
#import "RKLog.h"
#import "RKObjectUtilities.h"
#import "RKMacros.h"
// Set Logging Component
#undef RKLogComponent
#define RKLogComponent RKlcl_cRestKitCoreData
@implementation RKPropertyInspector (CoreData)
- (NSDictionary *)propertyInspectionForEntity:(NSEntityDescription *)entity
{
NSMutableDictionary *entityInspection = [_inspectionCache objectForKey:[entity name]];
if (entityInspection) {
return entityInspection;
}
entityInspection = [NSMutableDictionary dictionary];
for (NSString *name in [entity attributesByName]) {
NSAttributeDescription *attributeDescription = [[entity attributesByName] valueForKey:name];
if ([attributeDescription attributeValueClassName]) {
Class cls = NSClassFromString([attributeDescription attributeValueClassName]);
if ([cls isSubclassOfClass:[NSNumber class]] && [attributeDescription attributeType] == NSBooleanAttributeType) {
cls = objc_getClass("NSCFBoolean") ?: objc_getClass("__NSCFBoolean") ?: cls;
}
NSDictionary *propertyInspection = @{ RKPropertyInspectionNameKey: name,
RKPropertyInspectionKeyValueCodingClassKey: cls,
RKPropertyInspectionIsPrimitiveKey: @(NO) };
[entityInspection setValue:propertyInspection forKey:name];
} else if ([attributeDescription attributeType] == NSTransformableAttributeType &&
![name isEqualToString:@"_mapkit_hasPanoramaID"]) {
const char *className = [[entity managedObjectClassName] cStringUsingEncoding:NSUTF8StringEncoding];
const char *propertyName = [name cStringUsingEncoding:NSUTF8StringEncoding];
Class managedObjectClass = objc_getClass(className);
objc_property_t prop = class_getProperty(managedObjectClass, propertyName);
// Property is not defined in the Core Data model -- we cannot infer any details about the destination type
if (prop) {
const char *attr = property_getAttributes(prop);
Class destinationClass = RKKeyValueCodingClassFromPropertyAttributes(attr);
if (destinationClass) {
NSDictionary *propertyInspection = @{ RKPropertyInspectionNameKey: name,
RKPropertyInspectionKeyValueCodingClassKey: destinationClass,
RKPropertyInspectionIsPrimitiveKey: @(NO) };
[entityInspection setObject:propertyInspection forKey:name];
}
}
}
}
for (NSString *name in [entity relationshipsByName]) {
NSRelationshipDescription *relationshipDescription = [[entity relationshipsByName] valueForKey:name];
if ([relationshipDescription isToMany]) {
if ([relationshipDescription isOrdered]) {
NSDictionary *propertyInspection = @{ RKPropertyInspectionNameKey: name,
RKPropertyInspectionKeyValueCodingClassKey: [NSOrderedSet class],
RKPropertyInspectionIsPrimitiveKey: @(NO) };
[entityInspection setObject:propertyInspection forKey:name];
} else {
NSDictionary *propertyInspection = @{ RKPropertyInspectionNameKey: name,
RKPropertyInspectionKeyValueCodingClassKey: [NSSet class],
RKPropertyInspectionIsPrimitiveKey: @(NO) };
[entityInspection setObject:propertyInspection forKey:name];
}
} else {
NSEntityDescription *destinationEntity = [relationshipDescription destinationEntity];
Class destinationClass = NSClassFromString([destinationEntity managedObjectClassName]);
if (! destinationClass) {
RKLogWarning(@"Retrieved `Nil` value for class named '%@': This likely indicates that the class is invalid or does not exist in the current target.", [destinationEntity managedObjectClassName]);
}
NSDictionary *propertyInspection = @{ RKPropertyInspectionNameKey: name,
RKPropertyInspectionKeyValueCodingClassKey: destinationClass ?: [NSNull null],
RKPropertyInspectionIsPrimitiveKey: @(NO) };
[entityInspection setObject:propertyInspection forKey:name];
}
}
[_inspectionCache setObject:entityInspection forKey:[entity name]];
RKLogDebug(@"Cached property inspection for Entity '%@': %@", entity, entityInspection);
return entityInspection;
}
- (Class)classForPropertyNamed:(NSString *)propertyName ofEntity:(NSEntityDescription *)entity
{
NSDictionary *entityInspection = [self propertyInspectionForEntity:entity];
NSDictionary *propertyInspection = [entityInspection objectForKey:propertyName];
return [propertyInspection objectForKey:RKPropertyInspectionKeyValueCodingClassKey];
}
@end
@interface NSManagedObject (RKPropertyInspection)
- (Class)rk_classForPropertyAtKeyPath:(NSString *)keyPath isPrimitive:(BOOL *)isPrimitive;
@end
@implementation NSManagedObject (RKPropertyInspection)
- (Class)rk_classForPropertyAtKeyPath:(NSString *)keyPath isPrimitive:(BOOL *)isPrimitive
{
NSArray *components = [keyPath componentsSeparatedByString:@"."];
Class propertyClass = [self class];
for (NSString *property in components) {
if (isPrimitive) *isPrimitive = NO; // Core Data does not enable you to model primitives
propertyClass = [[RKPropertyInspector sharedInspector] classForPropertyNamed:property ofEntity:[self entity]];
propertyClass = propertyClass ?: [[RKPropertyInspector sharedInspector] classForPropertyNamed:property ofClass:propertyClass isPrimitive:isPrimitive];
if (! propertyClass) break;
}
return propertyClass;
}
@end