这篇博文将分析SDWebImageDownloader
和SDWebImageDownloaderOperation
。SDWebImage
经过这两个类处理图片的网络加载。SDWebImageManager
经过属性imageDownloader
持有SDWebImageDownloader
而且调用它的downloadImageWithURL
来从网络加载图片。SDWebImageDownloader
实现了图片加载的具体处理,若是图片在缓存存在则从缓存区,若是缓存不存在,则直接建立一个SDWebImageDownloaderOperation
对象来下载图片。管理NSURLRequest对象请求头的封装、缓存、cookie的设置。加载选项的处理等功能。管理Operation之间的依赖关系。SDWebImageDownloaderOperation
是一个自定义的并行Operation子类。这个类主要实现了图片下载的具体操做、以及图片下载完成之后的图片解压缩、Operation生命周期管理等。html
SDWebImageDownloader
分析SDWebImageDownlaoder
是一个单列对象,主要作了以下工做:git
定义了SDWebImageDownloaderOptions
这个枚举属性,经过这个枚举属性来设置图片从网络加载的不一样状况。github
定义并管理了NSURLSession
对象,经过这个对象来作网络请求,而且实现对象的代理方法。shell
定义一个NSURLRequest
对象,而且管理请求头的拼装。数组
对于每个网络请求,经过一个SDWebImageDownloaderOperation
自定义的NSOperation
来操做网络下载。缓存
管理网络加载过程和完成时候的回调工做。经过addProgressCallback
实现。cookie
SDWebImageDownloaderOptions
枚举类型能够经过这个枚举类型来控制网络加载、请求头、缓存策略等。网络
typedef NS_OPTIONS(NSUInteger, SDWebImageDownloaderOptions) { SDWebImageDownloaderLowPriority = 1 << 0, SDWebImageDownloaderProgressiveDownload = 1 << 1, /* *默认状况下,http请求阻止使用NSURLCache对象。若是设置了这个标记,则NSURLCache会被http请求使用。 */ SDWebImageDownloaderUseNSURLCache = 1 << 2, /* *若是image/imageData是从NSURLCache返回的。则completion这个回调会返回nil。 */ SDWebImageDownloaderIgnoreCachedResponse = 1 << 3, /* *若是app进入后台模式,是否继续下载。这个是经过在后台申请时间来完成这个操做。若是指定的时间范围内没有完成,则直接取消下载。 */ SDWebImageDownloaderContinueInBackground = 1 << 4, /* 处理缓存在`NSHTTPCookieStore`对象里面的cookie。经过设置`NSMutableURLRequest.HTTPShouldHandleCookies = YES`来实现的。 */ SDWebImageDownloaderHandleCookies = 1 << 5, /* *容许非信任的SSL证书请求。 *在测试的时候颇有用。可是正式环境要当心使用。 */ SDWebImageDownloaderAllowInvalidSSLCertificates = 1 << 6, /* * 默认状况下,图片加载的顺序是根据加入队列的顺序加载的。可是这个标记会把任务加入队列的最前面。 */ SDWebImageDownloaderHighPriority = 1 << 7, /* *默认状况下,图片会按照他的原始大小来解码显示。这个属性会调整图片的尺寸到合适的大小根据设备的内存限制。 *若是`SDWebImageProgressiveDownload`标记被设置了,则这个flag不起做用。 */ SDWebImageDownloaderScaleDownLargeImages = 1 << 8, };
SDWebImageDownloader
的属性和初始化能够经过它的属性对最大并行下载数量、超时时间、operation之间的下载顺序、作处理。session
/** * 当图片下载完成之后,加压缩图片之后再换成。这样能够提高性能可是会占用更多的存储空间。 * 模式YES,若是你由于过多的内存消耗致使一个奔溃,能够把这个属性设置为NO。 */ @property (assign, nonatomic) BOOL shouldDecompressImages; /** 最大并行下载的数量 */ @property (assign, nonatomic) NSInteger maxConcurrentDownloads; /** 当前并行下载数量 */ @property (readonly, nonatomic) NSUInteger currentDownloadCount; /** 下载超时时间设置 */ @property (assign, nonatomic) NSTimeInterval downloadTimeout; /** 改变下载operation的执行顺序。默认是FIFO。 */ @property (assign, nonatomic) SDWebImageDownloaderExecutionOrder executionOrder; /** 单列方法。返回一个单列对象 @return 返回一个单列的SDWebImageDownloader对象 */ + (nonnull instancetype)sharedDownloader; /** 为图片加载request设置一个SSL证书对象。 */ @property (strong, nonatomic, nullable) NSURLCredential *urlCredential; /** Basic认证请求设置用户名和密码 */ @property (strong, nonatomic, nullable) NSString *username; @property (strong, nonatomic, nullable) NSString *password; /** * 为http请求设置header。 * 每一request执行的时候,这个Block都会被执行。用于向http请求添加请求域。 */ @property (nonatomic, copy, nullable) SDWebImageDownloaderHeadersFilterBlock headersFilter; /** 初始化一个请求对象 @param sessionConfiguration NSURLSessionTask初始化配置 @return 返回一个SDWebImageDownloader对象 */ - (nonnull instancetype)initWithSessionConfiguration:(nullable NSURLSessionConfiguration *)sessionConfiguration NS_DESIGNATED_INITIALIZER; /** 设置请求头域 @param value 请求头域值 @param field 请求头域名 */ - (void)setValue:(nullable NSString *)value forHTTPHeaderField:(nullable NSString *)field; /* *获取请求头域的值 */ - (nullable NSString *)valueForHTTPHeaderField:(nullable NSString *)field; /** 设置一个`SDWebImageDownloaderOperation`的子类做为`NSOperation`来构建request来下载一张图片。 @param operationClass 指定的子类 */ - (void)setOperationClass:(nullable Class)operationClass; /** 全部的下载图片的Operation都加入NSoperationQueue中 */ @property (strong, nonatomic, nonnull) NSOperationQueue *downloadQueue; /** 最后一个添加的Operation */ @property (weak, nonatomic, nullable) NSOperation *lastAddedOperation; /** 自定义的NSOperation子类 */ @property (assign, nonatomic, nullable) Class operationClass; /** 用于记录url和他对应的SDWebImageDownloaderOperation对象。 */ @property (strong, nonatomic, nonnull) NSMutableDictionary<NSURL *, SDWebImageDownloaderOperation *> *URLOperations; /** 请求头域字典 */ @property (strong, nonatomic, nullable) SDHTTPHeadersMutableDictionary *HTTPHeaders; /** 经过这个`NSURLSession`建立请求 */ @property (strong, nonatomic) NSURLSession *session;
downloadImageWithURL
方法这个方法是SDWebImageDownloader
的核心方法。SDWebImageManager
经过这个方法来实现图片从网络加载。并发
/** 新建一个SDWebImageDownloadOperation对象来来作具体的下载操做。同时指定缓存策略、cookie策略、自定义请求头域等。 @param url url @param options 加载选项 @param progressBlock 进度progress @param completedBlock 完成回调 @return 返回一个SDWebImageDownloadToken,用于关联一个请求 */ - (nullable SDWebImageDownloadToken *)downloadImageWithURL:(nullable NSURL *)url options:(SDWebImageDownloaderOptions)options progress:(nullable SDWebImageDownloaderProgressBlock)progressBlock completed:(nullable SDWebImageDownloaderCompletedBlock)completedBlock { __weak SDWebImageDownloader *wself = self; return [self addProgressCallback:progressBlock completedBlock:completedBlock forURL:url createCallback:^SDWebImageDownloaderOperation *{ __strong __typeof (wself) sself = wself; NSTimeInterval timeoutInterval = sself.downloadTimeout; if (timeoutInterval == 0.0) { timeoutInterval = 15.0; } /* *为了不可能存在的NSURLCache和SDImageCache同时缓存。咱们默认不容许image对象的NSURLCache对象。 具体缓存策略参考http://www.jianshu.com/p/855c2c6e761f */ NSURLRequestCachePolicy cachePolicy = NSURLRequestReloadIgnoringLocalCacheData; if (options & SDWebImageDownloaderUseNSURLCache) { if (options & SDWebImageDownloaderIgnoreCachedResponse) { cachePolicy = NSURLRequestReturnCacheDataDontLoad; } else { cachePolicy = NSURLRequestUseProtocolCachePolicy; } } NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:url cachePolicy:cachePolicy timeoutInterval:timeoutInterval]; //使用cookies request.HTTPShouldHandleCookies = (options & SDWebImageDownloaderHandleCookies); //使用管道 request.HTTPShouldUsePipelining = YES; //添加自定义请求头 if (sself.headersFilter) { request.allHTTPHeaderFields = sself.headersFilter(url, [sself.HTTPHeaders copy]); } else { request.allHTTPHeaderFields = sself.HTTPHeaders; } //初始化一个自定义NSOperation对象 SDWebImageDownloaderOperation *operation = [[sself.operationClass alloc] initWithRequest:request inSession:sself.session options:options]; //是否解压缩返回的图片 operation.shouldDecompressImages = sself.shouldDecompressImages; //指定验证信息 if (sself.urlCredential) { //SSL验证 operation.credential = sself.urlCredential; } else if (sself.username && sself.password) { //Basic验证 operation.credential = [NSURLCredential credentialWithUser:sself.username password:sself.password persistence:NSURLCredentialPersistenceForSession]; } //指定优先级 if (options & SDWebImageDownloaderHighPriority) { operation.queuePriority = NSOperationQueuePriorityHigh; } else if (options & SDWebImageDownloaderLowPriority) { operation.queuePriority = NSOperationQueuePriorityLow; } //把operatin添加进入NSOperationQueue中 [sself.downloadQueue addOperation:operation]; /* 若是是LIFO这种模式,则须要手动指定operation之间的依赖关系 */ if (sself.executionOrder == SDWebImageDownloaderLIFOExecutionOrder) { //若是是LIFO,则让前面的operation依赖于最新添加的operation [sself.lastAddedOperation addDependency:operation]; sself.lastAddedOperation = operation; } return operation; }]; } /** 给下载过程添加进度 @param progressBlock 进度Block @param completedBlock 完成Block @param url url地址 @param createCallback nil @return 返回SDWebImageDownloadToken。方便后面取消 */ - (nullable SDWebImageDownloadToken *)addProgressCallback:(SDWebImageDownloaderProgressBlock)progressBlock completedBlock:(SDWebImageDownloaderCompletedBlock)completedBlock forURL:(nullable NSURL *)url createCallback:(SDWebImageDownloaderOperation *(^)())createCallback { // The URL will be used as the key to the callbacks dictionary so it cannot be nil. If it is nil immediately call the completed block with no image or data. if (url == nil) { if (completedBlock != nil) { completedBlock(nil, nil, nil, NO); } return nil; } __block SDWebImageDownloadToken *token = nil; dispatch_barrier_sync(self.barrierQueue, ^{ //看是否当前url是否有对应的Operation图片加载对象 SDWebImageDownloaderOperation *operation = self.URLOperations[url]; //若是没有,则直接建立一个。 if (!operation) { //建立一个operation。而且添加到URLOperation中。 operation = createCallback(); self.URLOperations[url] = operation; __weak SDWebImageDownloaderOperation *woperation = operation; //设置operation操做完成之后的回调 operation.completionBlock = ^{ SDWebImageDownloaderOperation *soperation = woperation; if (!soperation) return; if (self.URLOperations[url] == soperation) { [self.URLOperations removeObjectForKey:url]; }; }; } id downloadOperationCancelToken = [operation addHandlersForProgress:progressBlock completed:completedBlock]; token = [SDWebImageDownloadToken new]; token.url = url; token.downloadOperationCancelToken = downloadOperationCancelToken; }); return token; }
若是要取消一个下载操做,使用cancel
方法来处理
/** 移除一个图片加载操做 @param token 经过token来肯定操做 */ - (void)cancel:(nullable SDWebImageDownloadToken *)token { dispatch_barrier_async(self.barrierQueue, ^{ SDWebImageDownloaderOperation *operation = self.URLOperations[token.url]; BOOL canceled = [operation cancel:token.downloadOperationCancelToken]; if (canceled) { [self.URLOperations removeObjectForKey:token.url]; } }); }
另外还有NSURLSession
的代理方法,这里就不细讲了。若是兴趣能够参考AFNetWorking
源码分析。
SDWebImageDownloaderOperation
分析SDWebImageDownloaderOperation
是一个自定义、并行的NSOperation
子类。这个子类主要实现的功能有:
因为只自定义的并行NSOperation
,因此须要管理executing
,finished
等各类属性的处理,而且手动触发KVO。
在start
(NSOperation
规定,没有为何)方法里面实现主要逻辑。
在NSURLSessionTaskDelegate
和NSURLSessionDataDelegate
中处理数据的加载,以及进度Block的处理。
若是unownedSession
属性由于某种缘由是nil,则手动初始化一个作网络请求。
在代理方法中对认证、数据拼装、完成回调Block作处理。
经过发送SDWebImageDownloadStopNotification
,SDWebImageDownloadFinishNotification
,SDWebImageDownloadReceiveResponseNotification
,SDWebImageDownloadStartNotification
来通知Operation的状态。
具体完整源码以下:
NSString *const SDWebImageDownloadStartNotification = @"SDWebImageDownloadStartNotification"; NSString *const SDWebImageDownloadReceiveResponseNotification = @"SDWebImageDownloadReceiveResponseNotification"; NSString *const SDWebImageDownloadStopNotification = @"SDWebImageDownloadStopNotification"; NSString *const SDWebImageDownloadFinishNotification = @"SDWebImageDownloadFinishNotification"; static NSString *const kProgressCallbackKey = @"progress"; static NSString *const kCompletedCallbackKey = @"completed"; typedef NSMutableDictionary<NSString *, id> SDCallbacksDictionary; @interface SDWebImageDownloaderOperation () /** 回调Block列表 */ @property (strong, nonatomic, nonnull) NSMutableArray<SDCallbacksDictionary *> *callbackBlocks; /** 自定义并行Operation须要管理的两个属性。默认是readonly的,咱们这里经过声明改成可修改的。方便咱们在后面操做。 */ @property (assign, nonatomic, getter = isExecuting) BOOL executing; @property (assign, nonatomic, getter = isFinished) BOOL finished; /** 存储图片数据 */ @property (strong, nonatomic, nullable) NSMutableData *imageData; /** 经过SDWebImageDownloader传过来。因此这里是weak。由于他是经过SDWebImageDownloader管理的。 */ @property (weak, nonatomic, nullable) NSURLSession *unownedSession; /** 若是unownedSession是nil,咱们须要手动建立一个而且管理他的生命周期和代理方法 */ @property (strong, nonatomic, nullable) NSURLSession *ownedSession; /** dataTask对象 */ @property (strong, nonatomic, readwrite, nullable) NSURLSessionTask *dataTask; /** 一个并行queue。用于控制数据的处理 */ @property (SDDispatchQueueSetterSementics, nonatomic, nullable) dispatch_queue_t barrierQueue; #if SD_UIKIT /** 若是用户设置了后台继续加载选线。则经过backgroundTask来继续下载图片 */ @property (assign, nonatomic) UIBackgroundTaskIdentifier backgroundTaskId; #endif @end @implementation SDWebImageDownloaderOperation { size_t width, height; #if SD_UIKIT || SD_WATCH UIImageOrientation orientation; #endif } @synthesize executing = _executing; @synthesize finished = _finished; - (nonnull instancetype)init { return [self initWithRequest:nil inSession:nil options:0]; } - (nonnull instancetype)initWithRequest:(nullable NSURLRequest *)request inSession:(nullable NSURLSession *)session options:(SDWebImageDownloaderOptions)options { if ((self = [super init])) { _request = [request copy]; _shouldDecompressImages = YES; _options = options; _callbackBlocks = [NSMutableArray new]; //默认状况下。_executing和finished都是NO _executing = NO; _finished = NO; _expectedSize = 0; _unownedSession = session; _barrierQueue = dispatch_queue_create("com.hackemist.SDWebImageDownloaderOperationBarrierQueue", DISPATCH_QUEUE_CONCURRENT); } return self; } - (void)dealloc { SDDispatchQueueRelease(_barrierQueue); } /** 给Operation添加进度和回调Block @param progressBlock 进度Block @param completedBlock 回调Block @return 回调字典 */ - (nullable id)addHandlersForProgress:(nullable SDWebImageDownloaderProgressBlock)progressBlock completed:(nullable SDWebImageDownloaderCompletedBlock)completedBlock { SDCallbacksDictionary *callbacks = [NSMutableDictionary new]; //把Operation对应的回调和进度Block存入一个字典中 if (progressBlock) callbacks[kProgressCallbackKey] = [progressBlock copy]; if (completedBlock) callbacks[kCompletedCallbackKey] = [completedBlock copy]; //把完成和进度Block加入callbackBlocks中 dispatch_barrier_async(self.barrierQueue, ^{ [self.callbackBlocks addObject:callbacks]; }); return callbacks; } - (nullable NSArray<id> *)callbacksForKey:(NSString *)key { __block NSMutableArray<id> *callbacks = nil; dispatch_sync(self.barrierQueue, ^{ // We need to remove [NSNull null] because there might not always be a progress block for each callback callbacks = [[self.callbackBlocks valueForKey:key] mutableCopy]; [callbacks removeObjectIdenticalTo:[NSNull null]]; }); return [callbacks copy]; // strip mutability here } - (BOOL)cancel:(nullable id)token { __block BOOL shouldCancel = NO; dispatch_barrier_sync(self.barrierQueue, ^{ [self.callbackBlocks removeObjectIdenticalTo:token]; if (self.callbackBlocks.count == 0) { shouldCancel = YES; } }); if (shouldCancel) { [self cancel]; } return shouldCancel; } /** 并行的Operation须要重写这个方法.在这个方法里面作具体的处理 */ - (void)start { @synchronized (self) { if (self.isCancelled) { self.finished = YES; [self reset]; return; } #if SD_UIKIT Class UIApplicationClass = NSClassFromString(@"UIApplication"); BOOL hasApplication = UIApplicationClass && [UIApplicationClass respondsToSelector:@selector(sharedApplication)]; //若是用户甚至了Background模式,则设置一个backgroundTask if (hasApplication && [self shouldContinueWhenAppEntersBackground]) { __weak __typeof__ (self) wself = self; UIApplication * app = [UIApplicationClass performSelector:@selector(sharedApplication)]; self.backgroundTaskId = [app beginBackgroundTaskWithExpirationHandler:^{ //background结束之后。作清理工做 __strong __typeof (wself) sself = wself; if (sself) { [sself cancel]; [app endBackgroundTask:sself.backgroundTaskId]; sself.backgroundTaskId = UIBackgroundTaskInvalid; } }]; } #endif NSURLSession *session = self.unownedSession; //若是SDWebImageDownloader传入的session是nil,则本身手动初始化一个。 if (!self.unownedSession) { NSURLSessionConfiguration *sessionConfig = [NSURLSessionConfiguration defaultSessionConfiguration]; sessionConfig.timeoutIntervalForRequest = 15; /** * Create the session for this task * We send nil as delegate queue so that the session creates a serial operation queue for performing all delegate * method calls and completion handler calls. */ self.ownedSession = [NSURLSession sessionWithConfiguration:sessionConfig delegate:self delegateQueue:nil]; session = self.ownedSession; } self.dataTask = [session dataTaskWithRequest:self.request]; self.executing = YES; } //发送请求 [self.dataTask resume]; if (self.dataTask) { //第一次调用进度BLOCK for (SDWebImageDownloaderProgressBlock progressBlock in [self callbacksForKey:kProgressCallbackKey]) { progressBlock(0, NSURLResponseUnknownLength, self.request.URL); } dispatch_async(dispatch_get_main_queue(), ^{ [[NSNotificationCenter defaultCenter] postNotificationName:SDWebImageDownloadStartNotification object:self]; }); } else { [self callCompletionBlocksWithError:[NSError errorWithDomain:NSURLErrorDomain code:0 userInfo:@{NSLocalizedDescriptionKey : @"Connection can't be initialized"}]]; } #if SD_UIKIT Class UIApplicationClass = NSClassFromString(@"UIApplication"); if(!UIApplicationClass || ![UIApplicationClass respondsToSelector:@selector(sharedApplication)]) { return; } if (self.backgroundTaskId != UIBackgroundTaskInvalid) { UIApplication * app = [UIApplication performSelector:@selector(sharedApplication)]; [app endBackgroundTask:self.backgroundTaskId]; self.backgroundTaskId = UIBackgroundTaskInvalid; } #endif } /** 若是要取消一个Operation,就会调用这个方法。 */ - (void)cancel { @synchronized (self) { [self cancelInternal]; } } - (void)cancelInternal { if (self.isFinished) return; [super cancel]; if (self.dataTask) { [self.dataTask cancel]; dispatch_async(dispatch_get_main_queue(), ^{ [[NSNotificationCenter defaultCenter] postNotificationName:SDWebImageDownloadStopNotification object:self]; }); // As we cancelled the connection, its callback won't be called and thus won't // maintain the isFinished and isExecuting flags. //更新状态 if (self.isExecuting) self.executing = NO; if (!self.isFinished) self.finished = YES; } [self reset]; } - (void)done { self.finished = YES; self.executing = NO; [self reset]; } - (void)reset { dispatch_barrier_async(self.barrierQueue, ^{ [self.callbackBlocks removeAllObjects]; }); self.dataTask = nil; self.imageData = nil; if (self.ownedSession) { [self.ownedSession invalidateAndCancel]; self.ownedSession = nil; } } /** 须要手动触发_finished的KVO。这个是自定义并发`NSOperation`必须实现的。 @param finished 改变状态 */ - (void)setFinished:(BOOL)finished { [self willChangeValueForKey:@"isFinished"]; _finished = finished; [self didChangeValueForKey:@"isFinished"]; } /** 须要手动触发_executing的KVO。这个是自定义并发`NSOperation`必须实现的。 @param executing 改变状态 */ - (void)setExecuting:(BOOL)executing { [self willChangeValueForKey:@"isExecuting"]; _executing = executing; [self didChangeValueForKey:@"isExecuting"]; } /** 返回YES,代表这个NSOperation对象是并发的 @return 返回bool值 */ - (BOOL)isConcurrent { return YES; } #pragma mark NSURLSessionDataDelegate /* */ - (void)URLSession:(NSURLSession *)session dataTask:(NSURLSessionDataTask *)dataTask didReceiveResponse:(NSURLResponse *)response completionHandler:(void (^)(NSURLSessionResponseDisposition disposition))completionHandler { //'304 Not Modified' is an exceptional one if (![response respondsToSelector:@selector(statusCode)] || (((NSHTTPURLResponse *)response).statusCode < 400 && ((NSHTTPURLResponse *)response).statusCode != 304)) { //指望的总长度 NSInteger expected = response.expectedContentLength > 0 ? (NSInteger)response.expectedContentLength : 0; self.expectedSize = expected; //进度回调Block for (SDWebImageDownloaderProgressBlock progressBlock in [self callbacksForKey:kProgressCallbackKey]) { progressBlock(0, expected, self.request.URL); } self.imageData = [[NSMutableData alloc] initWithCapacity:expected]; self.response = response; dispatch_async(dispatch_get_main_queue(), ^{ [[NSNotificationCenter defaultCenter] postNotificationName:SDWebImageDownloadReceiveResponseNotification object:self]; }); } else { NSUInteger code = ((NSHTTPURLResponse *)response).statusCode; //This is the case when server returns '304 Not Modified'. It means that remote image is not changed. //In case of 304 we need just cancel the operation and return cached image from the cache. /* 若是返回304表示图片么有变化。在这种状况下,咱们只须要取消operation而且返回缓存的图片就能够了。 */ if (code == 304) { [self cancelInternal]; } else { [self.dataTask cancel]; } dispatch_async(dispatch_get_main_queue(), ^{ [[NSNotificationCenter defaultCenter] postNotificationName:SDWebImageDownloadStopNotification object:self]; }); [self callCompletionBlocksWithError:[NSError errorWithDomain:NSURLErrorDomain code:((NSHTTPURLResponse *)response).statusCode userInfo:nil]]; [self done]; } //这个表示容许继续加载 if (completionHandler) { completionHandler(NSURLSessionResponseAllow); } } /* *会被屡次调用。获取图片数据 */ - (void)URLSession:(NSURLSession *)session dataTask:(NSURLSessionDataTask *)dataTask didReceiveData:(NSData *)data { [self.imageData appendData:data]; if ((self.options & SDWebImageDownloaderProgressiveDownload) && self.expectedSize > 0) { // The following code is from http://www.cocoaintheshell.com/2011/05/progressive-images-download-imageio/ // Thanks to the author @Nyx0uf // Get the total bytes downloaded //获取已经下载的数据长度 const NSInteger totalSize = self.imageData.length; // Update the data source, we must pass ALL the data, not just the new bytes CGImageSourceRef imageSource = CGImageSourceCreateWithData((__bridge CFDataRef)self.imageData, NULL); /* *width和height都是0的话表示还么有获取到图片的高度和宽度。咱们能够经过数据来获取图片的宽度和高度 *此时表示第一次收到图片数据 */ if (width + height == 0) { //获取图片数据的属性 CFDictionaryRef properties = CGImageSourceCopyPropertiesAtIndex(imageSource, 0, NULL); if (properties) { NSInteger orientationValue = -1; //获取高度值 CFTypeRef val = CFDictionaryGetValue(properties, kCGImagePropertyPixelHeight); if (val) CFNumberGetValue(val, kCFNumberLongType, &height); //获取宽度值 val = CFDictionaryGetValue(properties, kCGImagePropertyPixelWidth); if (val) CFNumberGetValue(val, kCFNumberLongType, &width); //获取图片的方向值 val = CFDictionaryGetValue(properties, kCGImagePropertyOrientation); if (val) CFNumberGetValue(val, kCFNumberNSIntegerType, &orientationValue); CFRelease(properties); // When we draw to Core Graphics, we lose orientation information, // which means the image below born of initWithCGIImage will be // oriented incorrectly sometimes. (Unlike the image born of initWithData // in didCompleteWithError.) So save it here and pass it on later. #if SD_UIKIT || SD_WATCH orientation = [[self class] orientationFromPropertyValue:(orientationValue == -1 ? 1 : orientationValue)]; #endif } } /* * 这个表示已经收到部分图片数据而且还么有获取到全部的图片数据 */ if (width + height > 0 && totalSize < self.expectedSize) { // Create the image CGImageRef partialImageRef = CGImageSourceCreateImageAtIndex(imageSource, 0, NULL); #if SD_UIKIT || SD_WATCH // Workaround for iOS anamorphic image if (partialImageRef) { const size_t partialHeight = CGImageGetHeight(partialImageRef); CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); CGContextRef bmContext = CGBitmapContextCreate(NULL, width, height, 8, width * 4, colorSpace, kCGBitmapByteOrderDefault | kCGImageAlphaPremultipliedFirst); CGColorSpaceRelease(colorSpace); if (bmContext) { CGContextDrawImage(bmContext, (CGRect){.origin.x = 0.0f, .origin.y = 0.0f, .size.width = width, .size.height = partialHeight}, partialImageRef); CGImageRelease(partialImageRef); partialImageRef = CGBitmapContextCreateImage(bmContext); CGContextRelease(bmContext); } else { CGImageRelease(partialImageRef); partialImageRef = nil; } } #endif if (partialImageRef) { #if SD_UIKIT || SD_WATCH UIImage *image = [UIImage imageWithCGImage:partialImageRef scale:1 orientation:orientation]; #elif SD_MAC UIImage *image = [[UIImage alloc] initWithCGImage:partialImageRef size:NSZeroSize]; #endif //获取图片url对应的key NSString *key = [[SDWebImageManager sharedManager] cacheKeyForURL:self.request.URL]; //根据原始图片数据获取对应scale下面的图片 UIImage *scaledImage = [self scaledImageForKey:key image:image]; //是否解压缩图片 if (self.shouldDecompressImages) { /* *解压缩图片 */ image = [UIImage decodedImageWithImage:scaledImage]; } else { image = scaledImage; } CGImageRelease(partialImageRef); [self callCompletionBlocksWithImage:image imageData:nil error:nil finished:NO]; } } CFRelease(imageSource); } for (SDWebImageDownloaderProgressBlock progressBlock in [self callbacksForKey:kProgressCallbackKey]) { progressBlock(self.imageData.length, self.expectedSize, self.request.URL); } } - (void)URLSession:(NSURLSession *)session dataTask:(NSURLSessionDataTask *)dataTask willCacheResponse:(NSCachedURLResponse *)proposedResponse completionHandler:(void (^)(NSCachedURLResponse *cachedResponse))completionHandler { //根据request的选项。决定是否缓存NSCachedURLResponse NSCachedURLResponse *cachedResponse = proposedResponse; if (self.request.cachePolicy == NSURLRequestReloadIgnoringLocalCacheData) { // Prevents caching of responses cachedResponse = nil; } if (completionHandler) { completionHandler(cachedResponse); } } #pragma mark NSURLSessionTaskDelegate /* 网络请求加载完成,在这里处理得到的数据 */ - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error { @synchronized(self) { self.dataTask = nil; //发送图片下载完成的通知 dispatch_async(dispatch_get_main_queue(), ^{ [[NSNotificationCenter defaultCenter] postNotificationName:SDWebImageDownloadStopNotification object:self]; if (!error) { [[NSNotificationCenter defaultCenter] postNotificationName:SDWebImageDownloadFinishNotification object:self]; } }); } if (error) { [self callCompletionBlocksWithError:error]; } else { if ([self callbacksForKey:kCompletedCallbackKey].count > 0) { if (self.imageData) { UIImage *image = [UIImage sd_imageWithData:self.imageData]; //获取url对应的缓存Key NSString *key = [[SDWebImageManager sharedManager] cacheKeyForURL:self.request.URL]; image = [self scaledImageForKey:key image:image]; // Do not force decoding animated GIFs if (!image.images) { //是否加压缩图片数据 if (self.shouldDecompressImages) { //若是设置了SDWebImageDownloaderScaleDownLargeImages。则返回处理过的图片 if (self.options & SDWebImageDownloaderScaleDownLargeImages) { #if SD_UIKIT || SD_WATCH image = [UIImage decodedAndScaledDownImageWithImage:image]; [self.imageData setData:UIImagePNGRepresentation(image)]; #endif } else { image = [UIImage decodedImageWithImage:image]; } } } //构建回调Block if (CGSizeEqualToSize(image.size, CGSizeZero)) { [self callCompletionBlocksWithError:[NSError errorWithDomain:SDWebImageErrorDomain code:0 userInfo:@{NSLocalizedDescriptionKey : @"Downloaded image has 0 pixels"}]]; } else { [self callCompletionBlocksWithImage:image imageData:self.imageData error:nil finished:YES]; } } else { [self callCompletionBlocksWithError:[NSError errorWithDomain:SDWebImageErrorDomain code:0 userInfo:@{NSLocalizedDescriptionKey : @"Image data is nil"}]]; } } } [self done]; } /* 验证HTTPS的证书 */ - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *credential))completionHandler { NSURLSessionAuthChallengeDisposition disposition = NSURLSessionAuthChallengePerformDefaultHandling; __block NSURLCredential *credential = nil; //使用可信任证书机构的证书 if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust]) { //若是SDWebImageDownloaderAllowInvalidSSLCertificates属性设置了,则不验证SSL证书。直接信任 if (!(self.options & SDWebImageDownloaderAllowInvalidSSLCertificates)) { disposition = NSURLSessionAuthChallengePerformDefaultHandling; } else { credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]; disposition = NSURLSessionAuthChallengeUseCredential; } } else { //使用本身生成的证书 if (challenge.previousFailureCount == 0) { if (self.credential) { credential = self.credential; disposition = NSURLSessionAuthChallengeUseCredential; } else { disposition = NSURLSessionAuthChallengeCancelAuthenticationChallenge; } } else { disposition = NSURLSessionAuthChallengeCancelAuthenticationChallenge; } } //验证证书 if (completionHandler) { completionHandler(disposition, credential); } } #pragma mark Helper methods #if SD_UIKIT || SD_WATCH /** 把整数转换为对应的枚举值 @param value 整数值 @return 枚举值 */ + (UIImageOrientation)orientationFromPropertyValue:(NSInteger)value { switch (value) { case 1: return UIImageOrientationUp; case 3: return UIImageOrientationDown; case 8: return UIImageOrientationLeft; case 6: return UIImageOrientationRight; case 2: return UIImageOrientationUpMirrored; case 4: return UIImageOrientationDownMirrored; case 5: return UIImageOrientationLeftMirrored; case 7: return UIImageOrientationRightMirrored; default: return UIImageOrientationUp; } } #endif /** * 经过image对象获取对应scale模式下的图像 */ - (nullable UIImage *)scaledImageForKey:(nullable NSString *)key image:(nullable UIImage *)image { return SDScaledImageForKey(key, image); } - (BOOL)shouldContinueWhenAppEntersBackground { return self.options & SDWebImageDownloaderContinueInBackground; } - (void)callCompletionBlocksWithError:(nullable NSError *)error { [self callCompletionBlocksWithImage:nil imageData:nil error:error finished:YES]; } /** 处理回调 @param image UIImage数据 @param imageData Image的data数据 @param error 错误 @param finished 是否完成的标记位 */ - (void)callCompletionBlocksWithImage:(nullable UIImage *)image imageData:(nullable NSData *)imageData error:(nullable NSError *)error finished:(BOOL)finished { //获取key对应的回调Block数组 NSArray<id> *completionBlocks = [self callbacksForKey:kCompletedCallbackKey]; dispatch_main_async_safe(^{ //调用回调 for (SDWebImageDownloaderCompletedBlock completedBlock in completionBlocks) { completedBlock(image, imageData, error, finished); } }); } @end