SDWebImage源码阅读(二)--SDWebImageManager

SDWebImageManager

SDWebImageManager是一个管理图片缓存和下载逻辑的一个管理类,将SDImageCacheSDWebImageDownloader结合起来处理图片的缓存和下载逻辑。

我们先来看下类的定义SDWebImageManager.h文件,代码如下:

@interface SDWebImageManager : NSObject

@property (weak, nonatomic, nullable) id <SDWebImageManagerDelegate> delegate;

@property (strong, nonatomic, readonly, nullable) SDImageCache *imageCache;
@property (strong, nonatomic, readonly, nullable) SDWebImageDownloader *imageDownloader;
// 返回cacheKey
@property (nonatomic, copy, nullable) SDWebImageCacheKeyFilterBlock cacheKeyFilter;

/**
 * 
   缓存序列化程序是一个块,用于将解码后的图像、源下载的数据转换为用于存储到磁盘缓存的实际数据。如果返回nil,则表示要从图像实例生成数据,请参见“SDImageCache”。
 */
// cacheData缓存数据序列化处理
@property (nonatomic, copy, nullable) SDWebImageCacheSerializerBlock cacheSerializer;

/**
 * Returns global SDWebImageManager instance.
 *
 * @return SDWebImageManager shared instance
 */
+ (nonnull instancetype)sharedManager;

/**
 * Allows to specify instance of cache and image downloader used with image manager.
   自定义cache和downloader
 * @return new instance of `SDWebImageManager` with specified cache and downloader.
 */
- (nonnull instancetype)initWithCache:(nonnull SDImageCache *)cache downloader:(nonnull SDWebImageDownloader *)downloader NS_DESIGNATED_INITIALIZER;

/**
 加载图片

 @param url 图片链接
 @param options SDWebImageOptions图片加载选项
 @param progressBlock 图片下载进度回调
 @param completedBlock 图片下载完成回调
 @return 具体加载图片的操作 SDWebImageOperation
 */
- (nullable id <SDWebImageOperation>)loadImageWithURL:(nullable NSURL *)url
                                              options:(SDWebImageOptions)options
                                             progress:(nullable SDWebImageDownloaderProgressBlock)progressBlock
                                            completed:(nullable SDInternalCompletionBlock)completedBlock;

/**
 * Saves image to cache for given URL
 * 根据url缓存图片
 * @param image The image to cache 要缓存的图片
 * @param url   The URL to the image 图片链接
 *
 */
- (void)saveImageToCache:(nullable UIImage *)image forURL:(nullable NSURL *)url;

/**
 * Cancel all current operations
   取消所有正在下载的操作
 */
- (void)cancelAll;

/**
 * Check one or more operations running
   确定是否有图片正在下载
 */
- (BOOL)isRunning;

/**
 *  Async check if image has already been cached
    异步检查图片是否已经被缓存
 *
 *  @param url              image url 图片链接
 *  @param completionBlock  the block to be executed when the check is finished
 *                          检查完成回调
 *  @note the completion block is always executed on the main queue
 */
- (void)cachedImageExistsForURL:(nullable NSURL *)url
                     completion:(nullable SDWebImageCheckCacheCompletionBlock)completionBlock;

/**
 *  Async check if image has already been cached on disk only
    异步检查图片是否仅缓存在磁盘里
 *
 *  @param url              image url 图片链接
 *  @param completionBlock  the block to be executed when the check is finished
 *                          检查完成回调
 *  @note the completion block is always executed on the main queue
 */
- (void)diskImageExistsForURL:(nullable NSURL *)url
                   completion:(nullable SDWebImageCheckCacheCompletionBlock)completionBlock;


/**
 *Return the cache key for a given URL
  根据url查询缓存的key
 */
- (nullable NSString *)cacheKeyForURL:(nullable NSURL *)url;

@end

从上面图片类的定义中可以看出SDWebImageManager是一个单例类,同时也支持自定义SDImageCacheSDWebImageDownloader。如下:

/**
 * Returns global SDWebImageManager instance.
 *
 * @return SDWebImageManager shared instance
 */
+ (nonnull instancetype)sharedManager;

/**
 * Allows to specify instance of cache and image downloader used with image manager.
   自定义cache和downloader
 * @return new instance of `SDWebImageManager` with specified cache and downloader.
 */
- (nonnull instancetype)initWithCache:(nonnull SDImageCache *)cache downloader:(nonnull SDWebImageDownloader *)downloader NS_DESIGNATED_INITIALIZER;

同时也支持实现SDWebImageManagerDelegate的代理,支持一些自定义的设置,是否支持从网络下载图片、自定义失败url以及自定义图片转换的规则,代码如下:

@property (weak, nonatomic, nullable) id <SDWebImageManagerDelegate> delegate;

@protocol SDWebImageManagerDelegate <NSObject>

@optional

/**
 判定某一个图片在缓存中没找到时,是否从网络下载

 @param imageManager imageManager
 @param imageURL 图片链接
 @return 是否从网络下载,默认为Yes
 */
- (BOOL)imageManager:(nonnull SDWebImageManager *)imageManager shouldDownloadImageForURL:(nullable NSURL *)imageURL;

/**
 * Controls the complicated logic to mark as failed URLs when download error occur.
   控制在发生下载错误时标记为失败URL的复杂逻辑。
 * If the delegate implement this method, we will not use the built-in way to mark URL as failed based on error code;
   如果委托实现了这个方法,我们将不会使用内置的方法根据错误代码将URL标记为失败;
 @param imageManager The current `SDWebImageManager`
 @param imageURL The url of the image
 @param error The download error for the url
 @return Whether to block this url or not. Return YES to mark this URL as failed.
 */
- (BOOL)imageManager:(nonnull SDWebImageManager *)imageManager shouldBlockFailedURL:(nonnull NSURL *)imageURL withError:(nonnull NSError *)error;

/**
 * Allows to transform the image immediately after it has been downloaded and just before to cache it on disk and memory.
   在下载后,图片缓存到磁盘和内存之前转换图片
 * NOTE: This method is called from a global queue in order to not to block the main thread.
   为了不阻塞主线程,这个方法是在全局队列中调用的
 *
 * @param imageManager The current `SDWebImageManager`
 * @param image        The image to transform 要转换的图片
 * @param imageURL     The url of the image to transform
 *
 * @return The transformed image object. 转换好的图片
 */
- (nullable UIImage *)imageManager:(nonnull SDWebImageManager *)imageManager transformDownloadedImage:(nullable UIImage *)image withURL:(nullable NSURL *)imageURL;

@end

同时也支持,自定义cacheKey缓存key的生成规则以及自定义cacheData的序列化处理.代码如下

// 返回cacheKey
@property (nonatomic, copy, nullable) SDWebImageCacheKeyFilterBlock cacheKeyFilter;

/**
 * 
   缓存序列化程序是一个块,用于将解码后的图像、源下载的数据转换为用于存储到磁盘缓存的实际数据。如果返回nil,则表示要从图像实例生成数据,请参见“SDImageCache”。
 */
// cacheData缓存数据序列化处理
@property (nonatomic, copy, nullable) SDWebImageCacheSerializerBlock cacheSerializer;
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,240评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,328评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,182评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,121评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,135评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,093评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,013评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,854评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,295评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,513评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,678评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,398评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,989评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,636评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,801评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,657评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,558评论 2 352

推荐阅读更多精彩内容