Files
RestKit/Code/ObjectMapping/RKDynamicMapping.m
Blake Watters 5c21e52829 Update Dynamic Mapping API's to match the rest of the 0.20.x style. Introduce support for predicate based dynamic matching.
* Rename RKDynamicMappingMatcher to RKObjectMappingMatcher since it is not strictly coupled to dynamic mapping and works with object mappings.
* Rework matchers into using a class cluster style to enable flexible subclassing to introduce additional matchers.
2012-12-27 22:16:40 -05:00

103 lines
2.8 KiB
Objective-C

//
// RKDynamicMapping.m
// RestKit
//
// Created by Blake Watters on 7/28/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 "RKDynamicMapping.h"
#import "RKObjectMappingMatcher.h"
#import "RKLog.h"
// Set Logging Component
#undef RKLogComponent
#define RKLogComponent RKlcl_cRestKitObjectMapping
@interface RKDynamicMapping ()
@property (nonatomic, strong) NSMutableArray *mutableMatchers;
@property (nonatomic, copy) RKObjectMapping *(^objectMappingForRepresentationBlock)(id representation);
@end
@implementation RKDynamicMapping
- (id)init
{
self = [super init];
if (self) {
self.mutableMatchers = [NSMutableArray new];
}
return self;
}
- (NSArray *)matchers
{
return [self.mutableMatchers copy];
}
- (NSArray *)objectMappings
{
return [self.mutableMatchers valueForKey:@"objectMapping"];
}
- (void)addMatcher:(RKObjectMappingMatcher *)matcher
{
NSParameterAssert(matcher);
if ([self.mutableMatchers containsObject:matcher]) {
[self.mutableMatchers removeObject:matcher];
[self.mutableMatchers insertObject:matcher atIndex:0];
} else {
[self.mutableMatchers addObject:matcher];
}
}
- (void)removeMatcher:(RKObjectMappingMatcher *)matcher
{
NSParameterAssert(matcher);
[self.mutableMatchers removeObject:matcher];
}
- (RKObjectMapping *)objectMappingForRepresentation:(id)representation
{
RKObjectMapping *mapping = nil;
RKLogTrace(@"Performing dynamic object mapping for object representation: %@", representation);
// Consult the declarative matchers first
for (RKObjectMappingMatcher *matcher in self.mutableMatchers) {
if ([matcher matches:representation]) {
RKLogTrace(@"Found declarative match for matcher: %@.", matcher);
return matcher.objectMapping;
}
}
// Otherwise consult the block
if (self.objectMappingForRepresentationBlock) {
mapping = self.objectMappingForRepresentationBlock(representation);
if (mapping) RKLogTrace(@"Determined concrete `RKObjectMapping` using object mapping for representation block");
}
return mapping;
}
- (BOOL)isEqualToMapping:(RKMapping *)otherMapping
{
// Comparison of dynamic mappings is not currently supported
return NO;
}
@end