文章目录
  1. 1. 1 AFN 2.x 的六大模块:
    1. 1.1. 1.1 NSURLConnection
      1. 1.1.1. 1.1.1 AFURLConnectionOperation原理
    2. 1.2. 1.2 NSURLSession
    3. 1.3. 1.3 Reachability
    4. 1.4. 1.4 Security
    5. 1.5. 1.5 Serialization
    6. 1.6. 1.6 UIKit
  2. 2. 2 在3.x之后:
    1. 2.1. 2.1 NSURLSession的使用
      1. 2.1.1. 2.1.1 AFURLSessionManager

来自:AFNetworking实现原理理解
AFNetworking的原理与使用

1 AFN 2.x 的六大模块:

1.1 NSURLConnection

主要对 NSURLConnection进行了进一步的封装,包含以下核心的类:

  • AFURLConnectionOperation
  • AFHTTPRequestOperationManager
  • AFHTTPRequestOperation

1.1.1 AFURLConnectionOperation原理

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//AFURLConnectionOperation.m
+ (void)networkRequestThreadEntryPoint:(id)__unused object {
@autoreleasepool {
[[NSThread currentThread] setName:@"AFNetworking"];
NSRunLoop * runLoop = [NSRunLoop currentRunLoop];
[runLoop addPort:[NSMachPort port] forMode:NSDefaultRunLoopMode];
[runLoop run];
}
}
+ (NSThread * )networkRequestThread {
static NSThread *_networkRequestThread = nil;
static dispatch_once_t oncePredicate;
dispatch_once(&oncePredicate, ^{
_networkRequestThread = [[NSThread alloc] initWithTarget:self selector:@selector(networkRequestThreadEntryPoint:) object:nil];
[_networkRequestThread start];
});
return _networkRequestThread;
}

1:首先我们可以看到他创建了一个单例线程,用来处理AFN发起的所有请求任务。当然,线程也跟随着一个runLoop,AFN将这个runloop的模式设置成了NSDefaultRunLoopMode。但NSDefaultRunLoopMode是无法检测到connection的状态的。这说明了,AFN将不会在这该线程处理connection完成后的UI刷新等工作,而是会将数据抛给主线程,让主线程去完成UI的刷新。

2:我们可以看到该类通过接受请求的字符串,创建了URLRequest以及NSURLConnection对象。从而去进行请求。

3:实现文件多次使用到了锁,可以保证数据的安全。当然他也实现了几个数据的NSCoping协议。

4:请求的创建、进行、取消、完成、暂停恢复、异常等问题及状态的控制。这里讲一下暂停和恢复

       暂停实际上将网络请求取消掉了。但是由于实现了nscoping协议,已经下载到数据得以保存下来。下次进行相同请求的时候,我们会将已经下载到的数据的节 点一起发送给服务器,告诉服务器这部分的数据我们不需要了,服务器根据我发送的返回节点给我返回相应的数据即可。从而实现了暂停和恢复功能,也就是断点续传

5:operation方法的重写。自行google,这里不赘述。
6:状态的各种控制方法的实现以及发送状态改变的通知

1.2 NSURLSession

主要对象NSURLSession对象进行了进一步的封装,包含以下核心的类:

  • AFHTTPSessionManager
  • AFURLSessionManager

1.3 Reachability

提供了与网络状态相关的操作接口,包含以下核心的类:

  • AFNetworkReachabilityManager

    但实际使用我不建议使用,可以使用苹果公司自己写的那个Reachability库,因为有些无线网络,AFN会返回AFNetworkReachabilityStatusUnknown,而不是AFNetworkReachabilityStatusReachableViaWiFi。自己亲身体会,仅供参考。

1.4 Security

提供了与安全性相关的操作接口,包含以下核心的类:

  • AFSecurityPolicy

1.5 Serialization

提供了与解析数据相关的操作接口,包含以下核心的类:

  • AFURLRequestSerialization

    • AFHTTPRequestSerializer
    • AFJSONRequestSerializer
    • AFPropertyListRequestSerializer
  • AFURLResponseSerialization

    • AFHTTPResponseSerializer
    • AFJSONResponseSerializer
    • AFXMLParserResponseSerializer
    • AFXMLDocumentResponseSerializer (Mac OS X)
    • AFPropertyListResponseSerializer
    • AFImageResponseSerializer
    • AFCompoundResponseSerializer

1.6 UIKit

       提供了大量网络请求过程中与UI界面显示相关的操作接口,通常用于网络请求过程中提示,使用户交互更加友好,包含以下核心的分类/类:

  • AFNetworkActivityIndicatorManager
  • UIActivityIndicatorView+AFNetworking
  • UIAlertView+AFNetworking
  • UIButton+AFNetworking
  • UIImageView+AFNetworking
  • UIKit+AFNetworking
  • UIProgressView+AFNetworking
  • UIRefreshControl+AFNetworking
  • UIWebView+AFNetworking

2 在3.x之后:

       由于App Store策略要求所有iOS应用必须包含对IPv6-only网络的支持。自2016年6月1日开始,所有提交至苹果App Store的应用申请必须要兼容面向硬件识别和网络路由的最新互联网协议–IPv6-only标准。

       我们是可以通过NSURLSessionCFNetwork APIs兼容该协议。所以AFNetworking摒弃了NSURLConnection。通过使用NSURLSession来支持IPv6-only协议。

       而且由于苹果官方正逐渐摒弃UIAlertView,所以AFNetworking也取消了对UIAlertView+AFNetworking的扩展。也增加了AFImageDownloaderAFAutoPurgingImageCache

2.1 NSURLSession的使用

2.1.1 AFURLSessionManager

       AFURLSessionManager基于NSURLSessionConfiguration创建并管理一个NSURLSession对象,该对象遵守了<NSURLSessionDelegate, NSURLSessionTaskDelegate, NSURLSessionDataDelegate, NSURLSessionDownloadDelegate, NSSecureCoding, NSCopying>协议。

创建一个下载任务:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];
NSURL *url = [NSURL URLWithString:@"https://www.baidu.com/"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
NSURLSessionDownloadTask *downloadTask = [manager downloadTaskWithRequest:request progress:nil destination:^NSURL * _Nonnull(NSURL * _Nonnull targetPath, NSURLResponse * _Nonnull response) {
NSURL *documentsDirectoryURL = [[NSFileManager defaultManager] URLForDirectory:NSDocumentDirectory inDomain:NSUserDomainMask appropriateForURL:nil create:NO error:nil];
return [documentsDirectoryURL URLByAppendingPathComponent:[response suggestedFilename]];
} completionHandler:^(NSURLResponse * _Nonnull response, NSURL * _Nullable filePath, NSError * _Nullable error) {
NSLog(@"File downloaded to: %@", filePath);
}];
[downloadTask resume];

创建一个上传任务:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];
NSURL *URL = [NSURL URLWithString:@"http://JingQL.com/upload"];
NSURLRequest *request = [NSURLRequest requestWithURL:URL];
NSURL *filePath = [NSURL fileURLWithPath:@"file://path/to/image.png"];
NSURLSessionUploadTask *uploadTask = [manager uploadTaskWithRequest:request fromFile:filePath progress:nil completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) {
if (error) {
NSLog(@"Error: %@", error);
} else {
NSLog(@"Success: %@ %@", response, responseObject);
}
}];
[uploadTask resume];

创建一个带有进度的上传请求任务:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
NSMutableURLRequest *request = [[AFHTTPRequestSerializer serializer] multipartFormRequestWithMethod:@"POST" URLString:@"http://http://JingQL.com/upload" parameters:nil constructingBodyWithBlock:^(id<AFMultipartFormData> formData) {
[formData appendPartWithFileURL:[NSURL fileURLWithPath:@"file://path/to/image.jpg"] name:@"file" fileName:@"filename.jpg" mimeType:@"image/jpeg" error:nil];
} error:nil];
AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration]];
NSURLSessionUploadTask *uploadTask;
uploadTask = [manager uploadTaskWithStreamedRequest:request progress:^(NSProgress * _Nonnull uploadProgress) {
dispatch_async(dispatch_get_main_queue(), ^{
[ProgressView setProgress:uploadProgress.fractionCompleted];
});
} completionHandler:^(NSURLResponse * _Nonnull response, id _Nullable responseObject, NSError * _Nullable error) {
if (error) {
NSLog(@"Error: %@", error);
} else {
NSLog(@"%@ %@", response, responseObject);
}
}];
[uploadTask resume];

创建一个请求数据任务:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];
NSURL *URL = [NSURL URLWithString:@"http://httpbin.org/get"];
NSURLRequest *request = [NSURLRequest requestWithURL:URL];
NSURLSessionDataTask *dataTask = [manager dataTaskWithRequest:request completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) {
if (error) {
NSLog(@"Error: %@", error);
} else {
NSLog(@"%@ %@", response, responseObject);
}
}];
[dataTask resume];

文章目录
  1. 1. 1 AFN 2.x 的六大模块:
    1. 1.1. 1.1 NSURLConnection
      1. 1.1.1. 1.1.1 AFURLConnectionOperation原理
    2. 1.2. 1.2 NSURLSession
    3. 1.3. 1.3 Reachability
    4. 1.4. 1.4 Security
    5. 1.5. 1.5 Serialization
    6. 1.6. 1.6 UIKit
  2. 2. 2 在3.x之后:
    1. 2.1. 2.1 NSURLSession的使用
      1. 2.1.1. 2.1.1 AFURLSessionManager