SDWebImage缓存图片的机制(转)

转载自: iOS Dev

SDWebImage是一个很厉害的图片缓存的框架。既ASIHttp+AsyncImage之后,我一直使用AFNetworking集成的UIImageView+AFNetworking.h,但后者对于图片的缓存实际应用的是NSURLCache自带的cache机制。而NSURLCache每次都要把缓存的raw

 data 再转化为UIImage,就带来了数据处理和内存方面的更多操作。具体的比较在这里

SDWebImage提供了如下三个category来进行缓存。

MKAnnotationView(WebCache)

UIButton(WebCache)

UIImageView(WebCache)

以最为常用的UIImageView为例:

[if !supportLists]1.   [endif]UIImageView+WebCache:  setImageWithURL:placeholderImage:options: 先显示 placeholderImage ,同时由SDWebImageManager 根据 URL 来在本地查找图片。

[if !supportLists]2.  [endif]SDWebImageManager: downloadWithURL:delegate:options:userInfo: SDWebImageManager是将UIImageView+WebCache同SDImageCache链接起来的类, SDImageCache: queryDiskCacheForKey:delegate:userInfo:用来从缓存根据CacheKey查找图片是否已经在缓存中

[if !supportLists]3.   [endif]如果内存中已经有图片缓存, SDWebImageManager会回调SDImageCacheDelegate : imageCache:didFindImage:forKey:userInfo:

[if !supportLists]4.   [endif]而 UIImageView+WebCache 则回调SDWebImageManagerDelegate:  webImageManager:didFinishWithImage:来显示图片。

[if !supportLists]5.   [endif]如果内存中没有图片缓存,那么生成 NSInvocationOperation 添加到队列,从硬盘查找图片是否已被下载缓存。

[if !supportLists]6.   [endif]根据 URLKey 在硬盘缓存目录下尝试读取图片文件。这一步是在 NSOperation 进行的操作,所以回主线程进行结果回调 notifyDelegate:。

[if !supportLists]7.   [endif]如果上一操作从硬盘读取到了图片,将图片添加到内存缓存中(如果空闲内存过小,会先清空内存缓存)。SDImageCacheDelegate 回调 imageCache:didFindImage:forKey:userInfo:。进而回调展示图片。

[if !supportLists]8.   [endif]如果从硬盘缓存目录读取不到图片,说明所有缓存都不存在该图片,需要下载图片,回调 imageCache:didNotFindImageForKey:userInfo:。

[if !supportLists]9.   [endif]共享或重新生成一个下载器 SDWebImageDownloader 开始下载图片。

[if !supportLists]10.  [endif]图片下载由 NSURLConnection 来做,实现相关 delegate 来判断图片下载中、下载完成和下载失败。

[if !supportLists]11.  [endif]connection:didReceiveData: 中利用 ImageIO 做了按图片下载进度加载效果。

[if !supportLists]12.  [endif]connectionDidFinishLoading: 数据下载完成后交给 SDWebImageDecoder 做图片解码处理。

[if !supportLists]13.  [endif]图片解码处理在一个 NSOperationQueue 完成,不会拖慢主线程 UI。如果有需要对下载的图片进行二次处理,最好也在这里完成,效率会好很多。

[if !supportLists]14.  [endif]在主线程 notifyDelegateOnMainThreadWithInfo: 宣告解码完成,imageDecoder:didFinishDecodingImage:userInfo: 回调给 SDWebImageDownloader。

[if !supportLists]15.  [endif]imageDownloader:didFinishWithImage: 回调给 SDWebImageManager 告知图片下载完成。

[if !supportLists]16.  [endif]通知所有的 downloadDelegates 下载完成,回调给需要的地方展示图片。

[if !supportLists]17.  [endif]将图片保存到 SDImageCache 中,内存缓存和硬盘缓存同时保存。

[if !supportLists]18.  [endif]写文件到硬盘在单独 NSInvocationOperation 中完成,避免拖慢主线程。

[if !supportLists]19.  [endif] 如果是在iOS上运行,SDImageCache 在初始化的时候会注册notification 到 UIApplicationDidReceiveMemoryWarningNotification以及 UIApplicationWillTerminateNotification,在内存警告的时候清理内存图片缓存,应用结束的时候清理过期图片。

[if !supportLists]20.  [endif]SDWebImagePrefetcher 可以预先下载图片,方便后续使用。

你可能感兴趣的:(SDWebImage缓存图片的机制(转))