AFNetworking简单使用
AFNetworking我们在开发中经常会使用到,我这里就根据自己的使用来说下个人的认识。首先说下AFNetworking的使用:
AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
[manager GET:url parameters:nil progress:nil success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) {
NSLog(@"responseObject = %@",responseObject);
} failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
if (error) {
NSLog(@"error = %@",error);
}
}];
上面这种是最简单的使用
我们再来看下如果用系统的NSURLSession来做的话是什么样的,如下
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:url];
request.HTTPMethod = @"GET";
[request setValue:@"application/json" forHTTPHeaderField:@"Conten-Type"];
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
if(error){
NSLog(@"error = %@",error);
}else{
NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:nil];
NSLog(@"dic = %@",dic);
}
}];
[task resume];
从调用步骤上看,使用AFNetworking比我们直接使用系统的NSURLSession要方便点多,那AFNetworking内部到底是如何做的呢?下面我们就通过源码看下。
AFNetworking组成部分
-NSURLSession :网络处理,请求、上传、下载
-Reachability:网络可达性,检测网络变化
-Security:完全相关,处理请求时的签名等处理
-Serialization:序列化,分为request和response
AFNetworking内部实现
我们主要看下NSURLSession这部分是如何设计和实现的。
NSURLSession由两个类组成:AFHTTPSessionManager和AFURLSessionManager。
AFHTTPSessionManager
继承于AFURLSessionManager,是AFURLSessionManager进行了二次封装。主要是我们常用的get、post请求。
AFHTTPSessionManager
继承于NSObject,是对NSURLSession的封装。封装了请求、上传、下载等相关方法。
上面的各种方法都是通过NSURLSession对应的delegate方式来实现的。
关键的一个类AFURLSessionManagerTaskDelegate,这个是用来记录上传时相关NSURLSessionTask信息的,具体定义如下:
@interface AFURLSessionManagerTaskDelegate : NSObject <NSURLSessionTaskDelegate, NSURLSessionDataDelegate, NSURLSessionDownloadDelegate>
- (instancetype)initWithTask:(NSURLSessionTask *)task;
@property (nonatomic, weak) AFURLSessionManager *manager;
@property (nonatomic, strong) NSMutableData *mutableData;
@property (nonatomic, strong) NSProgress *uploadProgress;
@property (nonatomic, strong) NSProgress *downloadProgress;
@property (nonatomic, copy) NSURL *downloadFileURL;
@property (nonatomic, copy) AFURLSessionDownloadTaskDidFinishDownloadingBlock downloadTaskDidFinishDownloading;
@property (nonatomic, copy) AFURLSessionTaskProgressBlock uploadProgressBlock;
@property (nonatomic, copy) AFURLSessionTaskProgressBlock downloadProgressBlock;
@property (nonatomic, copy) AFURLSessionTaskCompletionHandler completionHandler;
@end
当用户调用请求接口时,会创建AFURLSessionManagerTaskDelegate对象,然后添加到NSMutableDictionary对象mutableTaskDelegatesKeyedByTaskIdentifier中,用于后面不同sessionTask的区分。
当数据接收完成对应代码:
//代理
- (void)URLSession:(NSURLSession *)session
task:(NSURLSessionTask *)task
didCompleteWithError:(NSError *)error
{
AFURLSessionManagerTaskDelegate *delegate = [self delegateForTask:task];
// delegate may be nil when completing a task in the background
if (delegate) {
[delegate URLSession:session task:task didCompleteWithError:error];
[self removeDelegateForTask:task];
}
if (self.taskDidComplete) {
self.taskDidComplete(session, task, error);
}
}
请求完成后,清空task数据
- (void)removeDelegateForTask:(NSURLSessionTask *)task {
NSParameterAssert(task);
[self.lock lock];
[self removeNotificationObserverForTask:task];
[self.mutableTaskDelegatesKeyedByTaskIdentifier removeObjectForKey:@(task.taskIdentifier)];
[self.lock unlock];
}