RKResponseMapperOperation Class Reference
| Inherits from | NSOperation |
| Declared in | RKResponseMapperOperation.h |
Overview
RKResponseMapperOperation is an NSOperation that provides support for performing object mapping on an NSHTTPURLResponse and its associated response data.
This is an abstract base class encapsulating the common interface API for its concrete subclasses RKObjectResponseMapperOperation and RKManagedObjectResponseMapperOperation.
The common behaviors encapsulated within RKResponseMapperOperation include:
- Handling Empty Responses: Empty response data (see note below) requires special handling depending on the status code of the HTTP response. If an empty response is loaded with a status code in 4xx (Client Error) range, an
NSErrorin theRKErrorDomainis created with theNSURLErrorBadServerResponsecode to indicate that the response was not processable. If an empty response is loaded with a status code in 2xx (Successful) range, the interpretation of the response is dependent on the value oftreatsEmptyResponseAsSuccess. WhenYES, empty responses result in the successful completion of the operation with anRKMappingResultcontaining the targetObject of the operation, if any. - Deserializing Response Data: When started, the operation attempts to deserialize the response data into a Foundation object representation using the
RKMIMETypeSerializationclass. This deserialized representation is then made available to subclass implementations that perform the actual object mapping work.
How ‘Empty’ Responses are Evaluated
Any nil response or NSData object with a length equal to zero is considered empty. To support a common behavior of the widely deployed Ruby on Rails Framework, RKResponseMapperOperation also considers a response containing a single space character to be empty. This type of response is generated by Rails whe render :nothing => true is invoked.
Metadata Mapping
The RKResponseMapperOperation class integrates with the metadata mapping architecture. Clients of the response mapper can provide a dictionary of metadata via the mappingMetadata property and it will be made available to the underlying RKMapperOperation executed to process the response body. In addition to any user supplied metadata, the response mapper makes the following metadata key paths available for mapping:
@metadata.HTTP.request.URL– TheNSURLobject identifying the URL of the request that loaded the response.@metadata.HTTP.request.method– AnNSStringspecifying the HTTP method of the request that loaded the response.@metadata.HTTP.request.headers– AnNSDictionaryobject containing all HTTP headers and values for the request that loaded the response.@metadata.HTTP.response.URL– TheNSURLobject identifying the URL of the response.@metadata.HTTP.response.headers– AnNSDictionaryobject containing all HTTP headers and values for the response.
Please refer to the documentation accompanying RKMappingOperation for more details on metadata mapping.
Tasks
Initializing a Response Mapping Operation
-
– initWithRequest:response:data:responseDescriptors:Initializes and returns a newly created response mapper operation with the given request, HTTP response, response data, and an array of
RKResponseDescriptorobjects.
Accessing HTTP Request and Response Data
-
requestAn request object for which the response was loaded.
property -
responseThe response object that loaded the data that is to be object mapped by the operation. Cannot be
propertynil. -
dataThe response data that is to be deserialized and mapped by the operation. May be
propertynil.
Configuring Object Mapping
-
responseDescriptorsAn array of
propertyRKResponseDescriptorobjects that specify object mapping configurations that may be applied to the deserialized response data if they are found to match the response. -
targetObjectThe target object for the object mapping operation performed on the deserialized response data. May be
propertynil. -
mapperDelegateThe delegate for the
propertyRKMapperOperationcreated by the receiver to perform object mapping on the deserialized response data. May benil. -
mappingMetadataAn optional dictionary of metadata to make available to mapping operations executed by the receiver.
property -
treatsEmptyResponseAsSuccessA Boolean value that indicates if the receiver should consider empty responses as being successfully mapped even though no mapping is actually performed.
property -
responseMappingsDictionaryReturns a dictionary of key path to
propertyRKMappingobjects that are applicable to mapping the response. This is determined by evaluating the URL and status codes of the response against the set ofresponseDescriptors. -
matchingResponseDescriptorsReturns an array containing all
propertyRKResponseDescriptorobjects in the configuredresponseDescriptorsarray that were found to match the response.
Accessing Mapping Results
-
mappingResultThe results of performing object mapping on the deserialized response data. In the event that the operation has failed, the value will is
propertynil. -
errorThe error, if any, that occured during execution of the operation.
property
Configuring Callbacks
-
– setWillMapDeserializedResponseBlock:Sets a block to be executed before the response mapper operation begins mapping the deserialized response body, providing an opportunity to manipulate the mappable representation input before mapping begins.
-
– setDidFinishMappingBlock:Sets a block to be executed when the response mapper operation has completed its mapping activities. This method is distinct from the
completionBlockbecause it is invoked while the operation is still executing.
Properties
data
The response data that is to be deserialized and mapped by the operation. May be nil.
@property (nonatomic, strong, readonly) NSData *dataDeclared In
RKResponseMapperOperation.herror
The error, if any, that occured during execution of the operation.
@property (nonatomic, strong, readonly) NSError *errorDeclared In
RKResponseMapperOperation.hmapperDelegate
The delegate for the RKMapperOperation created by the receiver to perform object mapping on the deserialized response data. May be nil.
@property (nonatomic, weak) id<RKMapperOperationDelegate> mapperDelegateDiscussion
The delegate provides access to the details of the mapping process as it is executing. Be aware that the delegate will be invoked from the thread on which the mapping is executing.
Declared In
RKResponseMapperOperation.hmappingMetadata
An optional dictionary of metadata to make available to mapping operations executed by the receiver.
@property (nonatomic, copy) NSDictionary *mappingMetadataDeclared In
RKResponseMapperOperation.hmappingResult
The results of performing object mapping on the deserialized response data. In the event that the operation has failed, the value will is nil.
@property (nonatomic, strong, readonly) RKMappingResult *mappingResultDiscussion
The keyPath of each RKResponseDescriptor from the responseDescriptors set that was successfully mapped from the response data will appear as an entry in the mapping result.
Declared In
RKResponseMapperOperation.hmatchingResponseDescriptors
Returns an array containing all RKResponseDescriptor objects in the configured responseDescriptors array that were found to match the response.
@property (nonatomic, strong, readonly) NSArray *matchingResponseDescriptorsDeclared In
RKResponseMapperOperation.hrequest
An request object for which the response was loaded.
@property (nonatomic, strong, readonly) NSURLRequest *requestDeclared In
RKResponseMapperOperation.hresponse
The response object that loaded the data that is to be object mapped by the operation. Cannot be nil.
@property (nonatomic, strong, readonly) NSHTTPURLResponse *responseDeclared In
RKResponseMapperOperation.hresponseDescriptors
An array of RKResponseDescriptor objects that specify object mapping configurations that may be applied to the deserialized response data if they are found to match the response.
@property (nonatomic, strong, readonly) NSArray *responseDescriptorsDeclared In
RKResponseMapperOperation.hresponseMappingsDictionary
Returns a dictionary of key path to RKMapping objects that are applicable to mapping the response. This is determined by evaluating the URL and status codes of the response against the set of responseDescriptors.
@property (nonatomic, strong, readonly) NSDictionary *responseMappingsDictionaryDeclared In
RKResponseMapperOperation.htargetObject
The target object for the object mapping operation performed on the deserialized response data. May be nil.
@property (nonatomic, strong) id targetObjectDiscussion
When object mapping is being performed against a known object, the targetObject is set to ensure that the mapping is applied to the appropriate object reference. When nil, the mapping operation will result in the fetching or creation of new objects as necessary to satisfy the mapping configuration.
Declared In
RKResponseMapperOperation.htreatsEmptyResponseAsSuccess
A Boolean value that indicates if the receiver should consider empty responses as being successfully mapped even though no mapping is actually performed.
@property (nonatomic, assign) BOOL treatsEmptyResponseAsSuccessDiscussion
When YES and the response data is empty (see below), a mapping result will be returned containing the target object (if any). Otherwise, the response data will be pass through to the parser which may generate an error.
Default: YES
Warning: To support the Ruby on Rails behavior of rendering a single space character on invocation of render :nothing => true, a response body’s containing only a single space is treated as empty.
Declared In
RKResponseMapperOperation.hInstance Methods
initWithRequest:response:data:responseDescriptors:
Initializes and returns a newly created response mapper operation with the given request, HTTP response, response data, and an array of RKResponseDescriptor objects.
- (id)initWithRequest:(NSURLRequest *)request response:(NSHTTPURLResponse *)response data:(NSData *)data responseDescriptors:(NSArray *)responseDescriptorsParameters
- response
The HTTP response object to be used for object mapping.
- responseDescriptors
An array whose elements are
RKResponseDescriptorobjects specifying object mapping configurations that may be applied to the response.
Declared In
RKResponseMapperOperation.hsetDidFinishMappingBlock:
Sets a block to be executed when the response mapper operation has completed its mapping activities. This method is distinct from the completionBlock because it is invoked while the operation is still executing.
- (void)setDidFinishMappingBlock:(void ( ^ ) ( RKMappingResult *mappingResult , NSError *error ))blockParameters
Declared In
RKResponseMapperOperation.hsetWillMapDeserializedResponseBlock:
Sets a block to be executed before the response mapper operation begins mapping the deserialized response body, providing an opportunity to manipulate the mappable representation input before mapping begins.
- (void)setWillMapDeserializedResponseBlock:(id ( ^ ) ( id deserializedResponseBody ))blockParameters
- block
A block object to be executed before the deserialized response is passed to the response mapper. The block has an
idreturn type and must return a dictionary or array of dictionaries corresponding to the object representations that are to be mapped. The block accepts a single argument: the deserialized response data that was loaded via HTTP. If you do not wish to make any chances to the response body before mapping begins, the block should return the value passed in thedeserializedResponseBodyblock argument. Returningnilwill decline the mapping from proceeding and fail the operation with an error with theRKMappingErrorMappingDeclinedcode.
Discussion
Warning: The deserialized response body may or may not be immutable depending on the implementation details of the RKSerialization class that deserialized the response. If you wish to make changes to the mappable object representations, you must obtain a mutable copy of the response body input.
Declared In
RKResponseMapperOperation.h