iOS——SDWebImage源码学习

打印 上一主题 下一主题

主题 805|帖子 805|积分 2415

什么是SDWebImage

SDWebImage是一个流行的iOS和macOS平台上的开源库,用于异步加载和缓存网络图片。它提供了一套简单易用的API,使得在应用中加载网络图片变得更加方便和高效。
主要特点和功能:

  • 异步加载:SDWebImage通过异步方式加载网络图片,避免了阻塞主线程的问题,提高了应用的流畅性和响应性。
  • 缓存管理:SDWebImage实现了内存缓存和磁盘缓存,可以有效地管理已加载过的图片,避免重复加载和节省网络带宽。
  • 图片处置惩罚:支持对图片进行解码、压缩和裁剪等处置惩罚,以满足差异需求下的图片展示结果。
  • UIImageView扩展:提供了对UIImageView的扩展,可以直接通过UIImageView加载网络图片,无需手动管理加载过程。
  • 支持多种图片格式:SDWebImage支持加载多种图片格式,包罗PNG、JPEG、GIF、WebP等。
  • 内存优化:对于大型图片和动态图片(如GIF),SDWebImage提供了内存优化的机制,避免内存占用过高。
  • 支持缓存逾期:可以设置图片缓存的逾期时间,以确保实时更新缓存。
  • 支持渐进式加载:支持渐进式加载图片,提高用户体验。


UIKit层



  • UIImageView+WebCache.h
  1. #import "SDWebImageCompat.h"
  2. #import "SDWebImageManager.h"
  3. /**
  4. * 将SDWebImage的异步下载和缓存远程图像集成到UIImageView中。
  5. */
  6. @interface UIImageView (WebCache)
  7. #pragma mark - Image State
  8. /**
  9. * 获取当前图像的URL。
  10. */
  11. @property (nonatomic, strong, readonly, nullable) NSURL *sd_currentImageURL;
  12. #pragma mark - Image Loading
  13. /**
  14. * 使用url设置imageView的`image`。
  15. *
  16. * 下载是异步的并且被缓存。
  17. *
  18. * @param url 图像的URL。
  19. */
  20. - (void)sd_setImageWithURL:(nullable NSURL *)url NS_REFINED_FOR_SWIFT;
  21. /**
  22. * 使用url和占位图像设置imageView的`image`。
  23. *
  24. * 下载是异步的并且被缓存。
  25. *
  26. * @param url         图像的URL。
  27. * @param placeholder 最初设置的图像,直到图像请求完成。
  28. * @see sd_setImageWithURL:placeholderImage:options:
  29. */
  30. - (void)sd_setImageWithURL:(nullable NSURL *)url
  31.           placeholderImage:(nullable UIImage *)placeholder NS_REFINED_FOR_SWIFT;
  32. /**
  33. * 使用url、占位图像和自定义选项设置imageView的`image`。
  34. *
  35. * 下载是异步的并且被缓存。
  36. *
  37. * @param url         图像的URL。
  38. * @param placeholder 最初设置的图像,直到图像请求完成。
  39. * @param options     下载图像时使用的选项。有关可能值,请参阅SDWebImageOptions。
  40. */
  41. - (void)sd_setImageWithURL:(nullable NSURL *)url
  42.           placeholderImage:(nullable UIImage *)placeholder
  43.                    options:(SDWebImageOptions)options NS_REFINED_FOR_SWIFT;
  44. /**
  45. * 使用url、占位图像、自定义选项和上下文设置imageView的`image`。
  46. *
  47. * 下载是异步的并且被缓存。
  48. *
  49. * @param url         图像的URL。
  50. * @param placeholder 最初设置的图像,直到图像请求完成。
  51. * @param options     下载图像时使用的选项。有关可能值,请参阅SDWebImageOptions。
  52. */
  53. - (void)sd_setImageWithURL:(nullable NSURL *)url
  54.           placeholderImage:(nullable UIImage *)placeholder
  55.                    options:(SDWebImageOptions)options
  56.                    context:(nullable SDWebImageContext *)context
  57.                   progress:(nullable SDImageLoaderProgressBlock)progressBlock
  58.                  completed:(nullable SDExternalCompletionBlock)completedBlock;
  59. /**
  60. * 取消当前的图像加载操作。
  61. * @note 对于高亮图像,请使用`sd_cancelCurrentHighlightedImageLoad`。
  62. */
  63. - (void)sd_cancelCurrentImageLoad;
  64. @end
复制代码


  • UIImageView+WebCache
  1. #import "UIImageView+WebCache.h"
  2. #import "objc/runtime.h"
  3. #import "UIView+WebCacheOperation.h"
  4. #import "UIView+WebCacheState.h"
  5. #import "UIView+WebCache.h"
  6. @implementation UIImageView (WebCache)
  7. - (void)sd_setImageWithURL:(nullable NSURL *)url {
  8.     // 使用默认选项加载图像
  9.     [self sd_setImageWithURL:url placeholderImage:nil options:0 progress:nil completed:nil];
  10. }
  11. - (void)sd_setImageWithURL:(nullable NSURL *)url placeholderImage:(nullable UIImage *)placeholder {
  12.     // 使用默认选项加载图像,并设置占位图像
  13.     [self sd_setImageWithURL:url placeholderImage:placeholder options:0 progress:nil completed:nil];
  14. }
  15. - (void)sd_setImageWithURL:(nullable NSURL *)url placeholderImage:(nullable UIImage *)placeholder options:(SDWebImageOptions)options {
  16.     // 使用指定选项加载图像,并设置占位图像
  17.     [self sd_setImageWithURL:url placeholderImage:placeholder options:options progress:nil completed:nil];
  18. }
  19. - (void)sd_setImageWithURL:(nullable NSURL *)url placeholderImage:(nullable UIImage *)placeholder options:(SDWebImageOptions)options context:(nullable SDWebImageContext *)context {
  20.     // 使用指定选项和上下文加载图像,并设置占位图像
  21.     [self sd_setImageWithURL:url placeholderImage:placeholder options:options context:context progress:nil completed:nil];
  22. }
  23. - (void)sd_setImageWithURL:(nullable NSURL *)url completed:(nullable SDExternalCompletionBlock)completedBlock {
  24.     // 使用默认选项加载图像,并在完成后调用自定义完成块
  25.     [self sd_setImageWithURL:url placeholderImage:nil options:0 progress:nil completed:completedBlock];
  26. }
  27. - (void)sd_setImageWithURL:(nullable NSURL *)url placeholderImage:(nullable UIImage *)placeholder completed:(nullable SDExternalCompletionBlock)completedBlock {
  28.     // 使用默认选项加载图像,并设置占位图像,完成后调用自定义完成块
  29.     [self sd_setImageWithURL:url placeholderImage:placeholder options:0 progress:nil completed:completedBlock];
  30. }
  31. - (void)sd_setImageWithURL:(nullable NSURL *)url placeholderImage:(nullable UIImage *)placeholder options:(SDWebImageOptions)options completed:(nullable SDExternalCompletionBlock)completedBlock {
  32.     // 使用指定选项加载图像,并设置占位图像,完成后调用自定义完成块
  33.     [self sd_setImageWithURL:url placeholderImage:placeholder options:options progress:nil completed:completedBlock];
  34. }
  35. - (void)sd_setImageWithURL:(nullable NSURL *)url placeholderImage:(nullable UIImage *)placeholder options:(SDWebImageOptions)options progress:(nullable SDImageLoaderProgressBlock)progressBlock completed:(nullable SDExternalCompletionBlock)completedBlock {
  36.     // 使用指定选项、占位图像和进度块加载图像,并在完成后调用自定义完成块
  37.     [self sd_setImageWithURL:url placeholderImage:placeholder options:options context:nil progress:progressBlock completed:completedBlock];
  38. }
  39. - (void)sd_setImageWithURL:(nullable NSURL *)url
  40.           placeholderImage:(nullable UIImage *)placeholder
  41.                    options:(SDWebImageOptions)options
  42.                    context:(nullable SDWebImageContext *)context
  43.                   progress:(nullable SDImageLoaderProgressBlock)progressBlock
  44.                  completed:(nullable SDExternalCompletionBlock)completedBlock {
  45.     // 使用指定选项、占位图像、上下文和进度块加载图像,并在完成后调用自定义完成块
  46.     [self sd_internalSetImageWithURL:url
  47.                     placeholderImage:placeholder
  48.                              options:options
  49.                              context:context
  50.                        setImageBlock:nil
  51.                             progress:progressBlock
  52.                            completed:^(UIImage * _Nullable image, NSData * _Nullable data, NSError * _Nullable error, SDImageCacheType cacheType, BOOL finished, NSURL * _Nullable imageURL) {
  53.                                if (completedBlock) {
  54.                                    completedBlock(image, error, cacheType, imageURL);
  55.                                }
  56.                            }];
  57. }
  58. #pragma mark - State
  59. - (NSURL *)sd_currentImageURL {
  60.     // 获取当前加载的图像的URL
  61.     return [self sd_imageLoadStateForKey:nil].url;
  62. }
  63. - (void)sd_cancelCurrentImageLoad {
  64.     // 取消当前的图像加载操作
  65.     return [self sd_cancelImageLoadOperationWithKey:nil];
  66. }
  67. @end
复制代码


  • UIView+WebCache.h
  1. /*
  2. * 这个文件是 SDWebImage 包的一部分。
  3. * (c) Olivier Poitrey <rs@dailymotion.com>
  4. *
  5. * 有关完整的版权和许可信息,请查看随源代码分发的 LICENSE 文件。
  6. */
  7. #import "SDWebImageCompat.h"
  8. #import "SDWebImageDefine.h"
  9. #import "SDWebImageManager.h"
  10. #import "SDWebImageTransition.h"
  11. #import "SDWebImageIndicator.h"
  12. #import "UIView+WebCacheOperation.h"
  13. #import "UIView+WebCacheState.h"
  14. /**
  15. 这个值指定了图像加载进度单元数无法确定,因为 progressBlock 没有被调用。
  16. */
  17. FOUNDATION_EXPORT const int64_t SDWebImageProgressUnitCountUnknown; /* 1LL */
  18. typedef void(^SDSetImageBlock)(UIImage * _Nullable image, NSData * _Nullable imageData, SDImageCacheType cacheType, NSURL * _Nullable imageURL);
  19. /**
  20. 将 SDWebImage 的异步下载和远程图像缓存集成到 UIView 子类中。
  21. */
  22. @interface UIView (WebCache)
  23. /**
  24. * 获取当前图像操作的 key。操作 key 用于标识一个视图实例(如 UIButton)的不同查询。
  25. * 有关更多信息,请参阅 `SDWebImageContextSetImageOperationKey`。
  26. *
  27. * @note 您可以使用方法 `UIView+WebCacheOperation` 来查看不同查询的操作。
  28. * @note 对于历史版本兼容性,在当前 UIView 具有完全称为 `image` 的属性时,操作 key 将使用 `NSStringFromClass(self.class)`。 包括 `UIImageView.image/NSImageView.image/NSButton.image`(不包括 `UIButton`)
  29. * @warning 此属性应仅用于单状态视图,如没有高亮状态的 `UIImageView`。 对于具有多个图像加载的具有状态的视图,例如 `UIButton`(一个视图可以有多个图像加载),请检查其头文件以调用正确的 API,如 `-[UIButton sd_imageOperationKeyForState:]`
  30. */
  31. @property (nonatomic, strong, readonly, nullable) NSString *sd_latestOperationKey;
  32. #pragma mark - State
  33. /**
  34. * 获取当前图像的 URL。
  35. * 这只是简单地将 `[self sd_imageLoadStateForKey:self.sd_latestOperationKey].url` 转换为 v5.18.0 中的写法
  36. *
  37. * @note 请注意,由于类别的限制,如果直接使用 setImage:,此属性可能会失去同步。
  38. * @warning 此属性应仅用于单状态视图,如没有高亮状态的 `UIImageView`。 对于具有多个图像加载的具有状态的视图,例如 `UIButton`(一个视图可以有多个图像加载),请使用 `sd_imageLoadStateForKey:`。 有关更多信息,请参阅 `UIView+WebCacheState.h`
  39. */
  40. @property (nonatomic, strong, readonly, nullable) NSURL *sd_imageURL;
  41. /**
  42. * 与视图关联的当前图像加载进度。单元数是接收的大小和下载的期望大小。
  43. * 在新图像加载开始后(从当前队列更改),`totalUnitCount` 和 `completedUnitCount` 将重置为 0。 如果 progressBlock 没有被调用但图像加载成功以标记进度完成(从主队列更改),它们将设置为 `SDWebImageProgressUnitCountUnknown`。
  44. * @note 您可以对进度进行键值观察,但是您应该注意进度的更改是在下载期间的后台队列(与 progressBlock 相同)。 如果要使用 KVO 并更新 UI,请确保在主队列上调度。 建议使用一些 KVO 库,如 KVOController,因为它更安全且易于使用。
  45. * @note 如果值为 nil,则 getter 将创建一个进度实例。 但是,默认情况下,我们不创建一个。 如果需要使用键值观察,请在加载开始之前触发 getter 或设置自定义进度实例。 默认值为 nil。
  46. * @note 请注意,由于类别的限制,如果直接更新进度,则此属性可能会失去同步。
  47. * @warning 此属性应仅用于单状态视图,如没有高亮状态的 `UIImageView`。 对于具有多个图像加载的具有状态的视图,例如 `UIButton`(一个视图可以有多个图像加载),请使用 `sd_imageLoadStateForKey:`。 有关更多信息,请参阅 `UIView+WebCacheState.h`
  48. */
  49. @property (nonatomic, strong, null_resettable) NSProgress *sd_imageProgress;
  50. /**
  51. * 使用 `url` 和可选的占位图像设置 imageView 的 `image`。
  52. *
  53. * 下载是异步的并且被缓存。
  54. *
  55. * @param url            图像的 URL。
  56. * @param placeholder    最初设置的图像,直到图像请求完成。
  57. * @param options        下载图像时使用的选项。 请参阅 SDWebImageOptions 以获取可能的值。
  58. * @param context        包含不同选项以执行指定更改或进程的上下文,请参阅 `SDWebImageContextOption`。 这保存了 `options` 枚举无法保存的额外对象。
  59. * @param setImageBlock  用于自定义设置图像代码的块。 如果未提供,则使用内置的设置图像代码(当前仅支持 `UIImageView/NSImageView` 和 `UIButton/NSButton`)
  60. * @param progressBlock  图像下载过程中调用的块
  61. *                       @note 进度块在后台队列上执行
  62. * @param completedBlock 操作完成时调用的块。
  63. *   这个块没有返回值,并以请求的 UIImage 作为第一个参数和 NSData 表示作为第二个参数。
  64. *   在出错的情况下,图像参数为 nil,第三个参数可能包含一个 NSError。
  65. *
  66. *   第四个参数是一个 `SDImageCacheType` 枚举,指示图像是从本地缓存还是从内存缓存或从网络中检索的。
  67. *
  68. *   第五个参数通常总是 YES。 但是,如果您为启用渐进式下载并自行设置图像的 SDWebImageAvoidAutoSetImage 与 SDWebImageProgressiveLoad 选项,这样会使图像自行调用。 因此,该块会重复调用具有部分图像的块。 当图像完全下载时,将最后一次调用该块并将最后一个参数设置为 YES。
  69. *
  70. *   最后一个参数是原始图像 URL
  71. *  @return 用于取消缓存和下载操作的返回操作,通常类型为 `SDWebImageCombinedOperation`
  72. */
  73. - (nullable id<SDWebImageOperation>)sd_internalSetImageWithURL:(nullable NSURL *)url
  74.                                               placeholderImage:(nullable UIImage *)placeholder
  75.                                                        options:(SDWebImageOptions)options
  76.                                                        context:(nullable SDWebImageContext *)context
  77.                                                  setImageBlock:(nullable SDSetImageBlock)setImageBlock
  78.                                                       progress:(nullable SDImageLoaderProgressBlock)progressBlock
  79.                                                      completed:(nullable SDInternalCompletionBlock)completedBlock;
  80. /**
  81. * 取消当前图像加载
  82. * 这只是简单地将 `[self sd_cancelImageLoadOperationWithKey:self.sd_latestOperationKey]` 转换为 v5.18.0 中的写法
  83. *
  84. * @warning 此方法应仅用于单状态视图,如没有高亮状态的 `UIImageView`。 对于具有多个图像加载的具有状态的视图,例如 `UIButton`(一个视图可以有多个图像加载),请使用 `sd_cancelImageLoadOperationWithKey:`。 有关更多信息,请参阅 `UIView+WebCacheOperation.h`
  85. */
  86. - (void)sd_cancelCurrentImageLoad;
  87. #if SD_UIKIT || SD_MAC
  88. #pragma mark - Image Transition
  89. /**
  90. 当图像加载完成时的图像过渡。请参阅 `SDWebImageTransition`。
  91. 如果指定 nil,则不进行过渡。 默认为 nil。
  92. @warning 此属性应仅用于单状态视图,如没有高亮状态的 `UIImageView`。 对于具有多个图像加载的具有状态的视图,编写自己的实现 `setImageBlock:` 并检查当前具有状态视图的状态以呈现 UI。
  93. */
  94. @property (nonatomic, strong, nullable) SDWebImageTransition *sd_imageTransition;
  95. #pragma mark - Image Indicator
  96. /**
  97. 在图像加载期间的图像指示器。如果不需要指示器,请指定 nil。 默认为 nil
  98. setter 将从当前视图的子视图中删除旧的指示器视图并添加新的指示器视图。
  99. @note 由于这涉及 UI,因此您应仅从主队列访问。
  100. @warning 此属性应仅用于单状态视图,如没有高亮状态的 `UIImageView`。 对于具有多个图像加载的具有状态的视图,编写自己的实现 `setImageBlock:` 并检查当前具有状态视图的状态以呈现 UI。
  101. */
  102. @property (nonatomic, strong, nullable) id<SDWebImageIndicator> sd_imageIndicator;
  103. #endif
  104. @end
复制代码


  • UIView+WebCache.m
  1. //获取图像加载的进度。它首先获取最近图像加载操作的键,然后根据该键从sd_imageLoadStateForKey方法中获取图像加载状态。接着,它获取加载状态中的进度对象,如果进度对象不存在,则创建一个新的进度对象,并将其赋值给加载状态的进度属性。最后返回这个进度对象。
  2. - (NSProgress *)sd_imageProgress {
  3.     SDWebImageLoadState *loadState = [self sd_imageLoadStateForKey:self.sd_latestOperationKey];
  4.     NSProgress *progress = loadState.progress;
  5.     if (!progress) {
  6.         progress = [[NSProgress alloc] initWithParent:nil userInfo:nil];
  7.         self.sd_imageProgress = progress;
  8.     }
  9.     return progress;
  10. }
  11. //用于设置图像加载的进度。它首先检查传入的进度对象是否为nil,如果是,则直接返回,不进行任何操作。接着,它获取最近图像加载操作的键,然后根据该键从sd_imageLoadStateForKey方法中获取图像加载状态。如果加载状态不存在,则创建一个新的加载状态对象。接着,将传入的进度对象赋值给加载状态对象的进度属性。最后,调用sd_setImageLoadState:forKey:方法,将更新后的加载状态对象保存起来。
  12. - (void)setSd_imageProgress:(NSProgress *)sd_imageProgress {
  13.     if (!sd_imageProgress) {
  14.         return;
  15.     }
  16.     SDWebImageLoadState *loadState = [self sd_imageLoadStateForKey:self.sd_latestOperationKey];
  17.     if (!loadState) {
  18.         loadState = [SDWebImageLoadState new];
  19.     }
  20.     loadState.progress = sd_imageProgress;
  21.     [self sd_setImageLoadState:loadState forKey:self.sd_latestOperationKey];
  22. }
  23. //用于设置图像加载的各种参数和回调
  24. - (nullable id<SDWebImageOperation>)sd_internalSetImageWithURL:(nullable NSURL *)url
  25.                                               placeholderImage:(nullable UIImage *)placeholder
  26.                                                        options:(SDWebImageOptions)options
  27.                                                        context:(nullable SDWebImageContext *)context
  28.                                                  setImageBlock:(nullable SDSetImageBlock)setImageBlock
  29.                                                       progress:(nullable SDImageLoaderProgressBlock)progressBlock
  30.                                                      completed:(nullable SDInternalCompletionBlock)completedBlock {
  31.     if (context) {
  32.         // 如果传入的 context 不为空,进行一次拷贝,避免可变对象的问题
  33.         context = [context copy];
  34.     } else {
  35.         // 如果传入的 context 为空,创建一个空的字典作为 context
  36.         context = [NSDictionary dictionary];
  37.     }
  38.     //从context中获取有效的操作键,如果没有则使用当前类名作为键。validOperationKey是一个用于标识图像加载操作的唯一键值,它在这段代码中起到重要的作用:在图像加载过程中,可能会有多个操作同时进行,比如同时加载多张图片或者在不同的地方加载同一张图片。为了区分这些操作,需要为每个操作分配一个唯一的标识符,这就是validOperationKey的作用。如果在context中已经设置了一个有效的操作键SDWebImageContextSetImageOperationKey,那么就使用这个键作为validOperationKey。否则,使用当前对象的类名作为validOperationKey。通过使用validOperationKey,可以确保每个图像加载操作都有一个独一无二的标识符,这样在管理和取消图像加载操作时就能够准确地识别每个操作
  39.     NSString *validOperationKey = context[SDWebImageContextSetImageOperationKey];
  40.     if (!validOperationKey) {
  41.         validOperationKey = NSStringFromClass([self class]);
  42.         SDWebImageMutableContext *mutableContext = [context mutableCopy];
  43.         mutableContext[SDWebImageContextSetImageOperationKey] = validOperationKey;
  44.         context = [mutableContext copy];
  45.     }
  46.     // 将最新的操作键保存到对象中
  47.     self.sd_latestOperationKey = validOperationKey;
  48.     // 如果不包含 SDWebImageAvoidAutoCancelImage 选项,则取消之前相同操作键的加载操作
  49.     //SDWebImageAvoidAutoCancelImage 是一个选项,用于控制图像加载时的自动取消行为。这个选项的作用是告诉 SDWebImage 不要自动取消之前相同操作键的加载操作。
  50.     if (!(SD_OPTIONS_CONTAINS(options, SDWebImageAvoidAutoCancelImage))) {
  51.         [self sd_cancelImageLoadOperationWithKey:validOperationKey];
  52.     }
  53.     // 获取或创建图像加载状态对象,并保存到对象中
  54.     SDWebImageLoadState *loadState = [self sd_imageLoadStateForKey:validOperationKey];
  55.     if (!loadState) {
  56.         loadState = [SDWebImageLoadState new];
  57.     }
  58.     loadState.url = url;
  59.     [self sd_setImageLoadState:loadState forKey:validOperationKey];
  60.    
  61.     // 获取上下文中的自定义SDWebImageManager实例
  62.     SDWebImageManager *manager = context[SDWebImageContextCustomManager];
  63.     // 如果上下文中没有自定义的manager实例
  64.     if (!manager) {
  65.         // 使用SDWebImage共享的默认manager实例
  66.         manager = [SDWebImageManager sharedManager];
  67.     } else {
  68.         // 如果存在自定义的manager实例,则需要移除它以避免循环引用
  69.         // 创建一个可变的上下文副本
  70.         SDWebImageMutableContext *mutableContext = [context mutableCopy];
  71.         // 将自定义manager实例从上下文中移除
  72.         mutableContext[SDWebImageContextCustomManager] = nil;
  73.         // 更新上下文为移除了自定义manager的副本
  74.         context = [mutableContext copy];
  75.     }
  76.    
  77.     // 根据是否使用弱缓存,设置对应的缓存策略
  78.     BOOL shouldUseWeakCache = NO;
  79.     if ([manager.imageCache isKindOfClass:SDImageCache.class]) {
  80.         shouldUseWeakCache = ((SDImageCache *)manager.imageCache).config.shouldUseWeakMemoryCache;
  81.     }
  82.     // 如果不延迟显示占位图,则根据缓存策略获取缓存的图片或触发弱缓存同步逻辑
  83.     if (!(options & SDWebImageDelayPlaceholder)) {
  84.         if (shouldUseWeakCache) {
  85.             NSString *key = [manager cacheKeyForURL:url context:context];
  86.             // call memory cache to trigger weak cache sync logic, ignore the return value and go on normal query
  87.             // this unfortunately will cause twice memory cache query, but it's fast enough
  88.             // in the future the weak cache feature may be re-design or removed
  89.             [((SDImageCache *)manager.imageCache) imageFromMemoryCacheForKey:key];
  90.         }
  91.         // 异步设置占位图
  92.         dispatch_main_async_safe(^{
  93.             [self sd_setImage:placeholder imageData:nil basedOnClassOrViaCustomSetImageBlock:setImageBlock cacheType:SDImageCacheTypeNone imageURL:url];
  94.         });
  95.     }
  96.    
  97.     id <SDWebImageOperation> operation = nil;
  98.    
  99.     // 如果 URL 存在,则开始加载图片
  100.     if (url) {
  101.         // 重置进度
  102.         NSProgress *imageProgress = loadState.progress;
  103.         if (imageProgress) {
  104.             imageProgress.totalUnitCount = 0;
  105.             imageProgress.completedUnitCount = 0;
  106.         }
  107.         
  108. #if SD_UIKIT || SD_MAC
  109.         // check and start image indicator
  110.         [self sd_startImageIndicator];
  111.         id<SDWebImageIndicator> imageIndicator = self.sd_imageIndicator;
  112. #endif
  113.         
  114.         // 根据不同条件设置加载进度回调
  115.         SDImageLoaderProgressBlock combinedProgressBlock = ^(NSInteger receivedSize, NSInteger expectedSize, NSURL * _Nullable targetURL) {
  116.             // 更新进度
  117.             if (imageProgress) {
  118.                 imageProgress.totalUnitCount = expectedSize;
  119.                 imageProgress.completedUnitCount = receivedSize;
  120.             }
  121. #if SD_UIKIT || SD_MAC
  122.             // 更新 UI 控件的加载进度
  123.             //首先检查imageIndicator对象是否实现了updateIndicatorProgress:方法。用于确保imageIndicator对象能够响应这个方法调用。
  124.             if ([imageIndicator respondsToSelector:@selector(updateIndicatorProgress:)]) {
  125.                 //计算加载进度。receivedSize是已接收的数据大小,expectedSize是预期的总数据大小。
  126.                 double progress = (double)receivedSize / expectedSize;
  127.                 //将计算得到的进度值限制在0到1之间
  128.                 progress = MAX(MIN(progress, 1), 0);
  129.                 //将后续的更新操作放入主队列中异步执行。这是因为UI操作必须在主线程上执行,而图像加载通常是在后台线程进行的。
  130.                 dispatch_async(dispatch_get_main_queue(), ^{
  131.                     //传入计算得到的加载进度值作为参数。这个方法会根据进度值更新指示器
  132.                     [imageIndicator updateIndicatorProgress:progress];
  133.                 });
  134.             }
  135. #endif
  136.             // 触发外部传入的进度回调
  137.             if (progressBlock) {
  138.                 //如果progressBlock存在,就调用它,并将接收到的数据大小、预期总数据大小和目标URL作为参数传入。这样可以让外部代码在加载过程中获取到实时的加载进度信息,并根据需要进行处理或者显示。
  139.                 progressBlock(receivedSize, expectedSize, targetURL);
  140.             }
  141.         };
  142.         // 开始加载图片,并设置完成回调
  143.         //避免在后续的代码中形成循环引用。这样做是因为在异步加载图片过程中,可能会导致self对象在图片加载完成前被释放,为了避免这种情况,使用了弱引用。
  144.         @weakify(self);
  145.         //调用SDWebImage提供的loadImageWithURL:options:context:progress:completed:方法来异步加载图片。
  146.         operation = [manager loadImageWithURL:url options:options context:context progress:combinedProgressBlock completed:^(UIImage *image, NSData *data, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) {
  147.             //使用strongify宏将之前弱引用的self对象转换为强引用,这样在后续的代码中就可以安全地使用self对象,而不用担心在回调中self对象已经被释放的问题。
  148.             @strongify(self);
  149.             //在回调中使用了强引用的self对象进行了判空检查。如果self对象已经被释放(比如在加载图片过程中用户退出了当前界面),则直接返回,不再处理后续的逻辑。
  150.             if (!self) { return; }
  151.             // if the progress not been updated, mark it to complete state
  152.             if (imageProgress && finished && !error && imageProgress.totalUnitCount == 0 && imageProgress.completedUnitCount == 0) {
  153.                 //将进度对象的总单位数和已完成单位数都设置为未知。
  154.                 //这样做的目的可能是在图像加载过程中,初始阶段无法确定具体的进度单位数量,因此将其设置为未知状态,避免显示不准确的进度信息。
  155.                 imageProgress.totalUnitCount = SDWebImageProgressUnitCountUnknown;
  156.                 imageProgress.completedUnitCount = SDWebImageProgressUnitCountUnknown;
  157.             }
  158.             
  159. #if SD_UIKIT || SD_MAC
  160.             // check and stop image indicator
  161.             if (finished) {
  162.                 [self sd_stopImageIndicator];
  163.             }
  164. #endif
  165.             //如果图像加载已完成或者设置了 SDWebImageAvoidAutoSetImage 选项,则应该调用加载完成的回调。
  166.             BOOL shouldCallCompletedBlock = finished || (options & SDWebImageAvoidAutoSetImage);
  167.             //如果图像存在且设置了SDWebImageAvoidAutoSetImage选项,或者图像不存在且没有设置SDWebImageDelayPlaceholder选项,则不应该设置图像。
  168.             BOOL shouldNotSetImage = ((image && (options & SDWebImageAvoidAutoSetImage)) ||
  169.                                       (!image && !(options & SDWebImageDelayPlaceholder)));
  170.             //在适当的条件下调用加载完成的回调completedBlock。
  171.             SDWebImageNoParamsBlock callCompletedBlockClosure = ^{
  172.                 if (!self) { return; }
  173.                 if (!shouldNotSetImage) {
  174.                     [self sd_setNeedsLayout];
  175.                 }
  176.                 if (completedBlock && shouldCallCompletedBlock) {
  177.                     completedBlock(image, data, error, cacheType, finished, url);
  178.                 }
  179.             };
  180.             
  181.             //用于判断是否应该设置图像
  182.             if (shouldNotSetImage) {
  183.                 dispatch_main_async_safe(callCompletedBlockClosure);
  184.                 return;
  185.             }
  186.             
  187.             UIImage *targetImage = nil;
  188.             NSData *targetData = nil;
  189.             if (image) {
  190.                 targetImage = image;
  191.                 targetData = data;
  192.             } else if (options & SDWebImageDelayPlaceholder) {
  193.                 targetImage = placeholder;
  194.                 targetData = nil;
  195.             }
  196.             
  197. #if SD_UIKIT || SD_MAC
  198.             //用于存储最终选择的过渡动画对象
  199.             SDWebImageTransition *transition = nil;
  200.             //是否应该使用过渡动画。
  201.             BOOL shouldUseTransition = NO;
  202.             //表示无论什么情况下,都会使用过渡动画来显示图像。
  203.             if (options & SDWebImageForceTransition) {
  204.                 // Always
  205.                 shouldUseTransition = YES;
  206.             } else if (cacheType == SDImageCacheTypeNone) {
  207.                 // From network
  208.                 //表示如果图像是从网络加载的,就会使用过渡动画来显示图像。
  209.                 shouldUseTransition = YES;
  210.             } else {
  211.                 //如果图像来源不是网络,而是本地缓存,则根据不同情况决定是否使用过渡动画。
  212.                 if (cacheType == SDImageCacheTypeMemory) {
  213.                     //如果图像缓存在内存中,则不使用过渡动画。
  214.                     shouldUseTransition = NO;
  215.                 } else if (cacheType == SDImageCacheTypeDisk) {
  216.                     if (options & SDWebImageQueryMemoryDataSync || options & SDWebImageQueryDiskDataSync) {
  217.                         //如果图像缓存在磁盘中,并且用户没有使用同步查询,则不使用过渡动画。
  218.                         shouldUseTransition = NO;
  219.                     } else {
  220.                         //如果缓存类型不是内存或磁盘,表示缓存类型无效,这时候使用回退策略,不使用过渡动画。
  221.                         shouldUseTransition = YES;
  222.                     }
  223.                 } else {
  224.                     // Not valid cache type, fallback
  225.                     shouldUseTransition = NO;
  226.                 }
  227.             }
  228.             if (finished && shouldUseTransition) {
  229.                 //将过渡动画对象赋值给transition变量。
  230.                 transition = self.sd_imageTransition;
  231.             }
  232. #endif
  233. //下面这段代码是在主线程异步安全地设置图像的显示
  234.             //dispatch_main_async_safe是一个宏定义,用于确保在主线程上执行代码
  235.             dispatch_main_async_safe(^{
  236. #if SD_UIKIT || SD_MAC
  237.                 [self sd_setImage:targetImage imageData:targetData basedOnClassOrViaCustomSetImageBlock:setImageBlock transition:transition cacheType:cacheType imageURL:imageURL];
  238. #else
  239.                 [self sd_setImage:targetImage imageData:targetData basedOnClassOrViaCustomSetImageBlock:setImageBlock cacheType:cacheType imageURL:imageURL];
  240. #endif
  241.                 callCompletedBlockClosure();
  242.             });
  243.         }];
  244.         [self sd_setImageLoadOperation:operation forKey:validOperationKey];
  245.     } else {
  246. #if SD_UIKIT || SD_MAC
  247.         [self sd_stopImageIndicator];
  248. #endif
  249.         if (completedBlock) {
  250.             dispatch_main_async_safe(^{
  251.                 NSError *error = [NSError errorWithDomain:SDWebImageErrorDomain code:SDWebImageErrorInvalidURL userInfo:@{NSLocalizedDescriptionKey : @"Image url is nil"}];
  252.                 //调用了传入的加载完成后的回调completedBlock,并传入了错误对象和其他参数,以便通知调用者图像加载失败的情况。
  253.                 completedBlock(nil, nil, error, SDImageCacheTypeNone, YES, url);
  254.             });
  255.         }
  256.     }
  257.    
  258.     return operation;
  259. }
复制代码
工具层

SDWebImageManager

首先来看看SDWebImageManager的头文件中声明的属性和方法:
  1. #import "SDWebImageCompat.h"
  2. #import "SDWebImageOperation.h"
  3. #import "SDImageCacheDefine.h"
  4. #import "SDImageLoader.h"
  5. #import "SDImageTransformer.h"
  6. #import "SDWebImageCacheKeyFilter.h"
  7. #import "SDWebImageCacheSerializer.h"
  8. #import "SDWebImageOptionsProcessor.h"
  9. typedef void(^SDExternalCompletionBlock)(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL);
  10. //用于执行在图像操作完成后的回调
  11. typedef void(^SDInternalCompletionBlock)(UIImage * _Nullable image, NSData * _Nullable data, NSError * _Nullable error, SDImageCacheType cacheType, BOOL finished, NSURL * _Nullable imageURL);
  12. // 代表缓存和加载操作的组合操作。您可以使用它来取消加载过程。
  13. @interface SDWebImageCombinedOperation : NSObject <SDWebImageOperation>
  14. // 取消当前操作,包括缓存和加载过程
  15. - (void)cancel;
  16. // 操作是否已取消。
  17. @property (nonatomic, assign, readonly, getter=isCancelled) BOOL cancelled;
  18. // 来自图像缓存查询的缓存操作
  19. @property (strong, nonatomic, nullable, readonly) id<SDWebImageOperation> cacheOperation;
  20. // 来自图像加载器(例如下载操作)的加载器操作
  21. @property (strong, nonatomic, nullable, readonly) id<SDWebImageOperation> loaderOperation;
  22. @end
  23. @class SDWebImageManager;
  24. //管理器代理协议。
  25. @protocol SDWebImageManagerDelegate <NSObject>
  26. @optional
  27. /**
  28. * 当在缓存中找不到图像时,控制是否应下载图像。
  29. *
  30. * @param imageManager 当前的 `SDWebImageManager`
  31. * @param imageURL     要下载的图像的 URL
  32. *
  33. * @return 返回 NO 以防止在缓存未命中时下载图像。如果未实现,则默认为 YES。
  34. */
  35. - (BOOL)imageManager:(nonnull SDWebImageManager *)imageManager shouldDownloadImageForURL:(nonnull NSURL *)imageURL;
  36. /**
  37. * 控制当下载错误发生时如何将 URL 标记为失败的复杂逻辑。
  38. * 如果代理实现了这个方法,我们将不使用基于错误代码的内置方式来标记 URL 为失败;
  39. @param imageManager 当前的 `SDWebImageManager`
  40. @param imageURL 图像的 URL
  41. @param error URL 的下载错误
  42. @return 是否阻止此 URL。返回 YES 表示将此 URL 标记为失败。
  43. */
  44. - (BOOL)imageManager:(nonnull SDWebImageManager *)imageManager shouldBlockFailedURL:(nonnull NSURL *)imageURL withError:(nonnull NSError *)error;
  45. @end
  46. /**
  47. * SDWebImageManager 是 UIImageView+WebCache 类别背后的类,以及类似的类别。它将异步下载器(SDWebImageDownloader)与图像缓存存储(SDImageCache)关联起来。
  48. */
  49. @interface SDWebImageManager : NSObject
  50. /**
  51. * 管理器的代理。默认为 nil。
  52. */
  53. @property (weak, nonatomic, nullable) id <SDWebImageManagerDelegate> delegate;
  54. /**
  55. * 管理器用于查询图像缓存的图像缓存。
  56. */
  57. @property (strong, nonatomic, readonly, nonnull) id<SDImageCache> imageCache;
  58. /**
  59. * 管理器用于加载图像的图像加载器。
  60. */
  61. @property (strong, nonatomic, readonly, nonnull) id<SDImageLoader> imageLoader;
  62. /**
  63. 管理器的图像变换器。用于在图像加载完成后对图像进行变换并将变换后的图像存储到缓存中,参见 `SDImageTransformer`。
  64. 默认为 nil,表示不应用任何变换。
  65. @note 如果您提供了图像变换器,它将影响此管理器的所有加载请求。但是,您可以在上下文参数中明确使用 `SDWebImageContextImageTransformer` 来使用该变换器。
  66. */
  67. @property (strong, nonatomic, nullable) id<SDImageTransformer> transformer;
  68. /**
  69. * 缓存过滤器用于每次 SDWebImageManager 需要使用图像缓存的缓存键时将 URL 转换为缓存键。
  70. * 以下示例在应用程序代理中设置了一个过滤器,该过滤器将在将 URL 用作缓存键之前删除任何查询字符串:
  71. */
  72. @property (nonatomic, strong, nullable) id<SDWebImageCacheKeyFilter> cacheKeyFilter;
  73. /**
  74. * 缓存序列化器用于将解码后的图像,即源下载数据,转换为用于存储到磁盘缓存的实际数据。如果返回 nil,则表示从图像实例生成数据,参见 `SDImageCache`。
  75. * 例如,如果您使用 WebP 图像并且在稍后再次从磁盘缓存中检索时遇到了解码时间过长的问题。您可以尝试将解码后的图像编码为 JPEG/PNG 格式以存储到磁盘缓存,而不是源下载数据。
  76. * @note `image` 参数为非空,但是当您同时提供图像变换器并且图像已经被转换时,`data` 参数可能为 nil,请注意这种情况。
  77. * @note 该方法是从全局队列中调用的,以避免阻塞主线程。
  78. * 默认值为 nil。表示只将源下载数据存储到磁盘缓存中。
  79. */
  80. @property (nonatomic, strong, nullable) id<SDWebImageCacheSerializer> cacheSerializer;
  81. /**
  82. 选项处理器用于对所有图像请求的选项和上下文选项进行全局控制。
  83. @note 如果您使用了管理器的 `transformer`、`cacheKeyFilter` 或 `cacheSerializer` 属性,输入上下文选项已经应用了这些属性再传递。这个选项处理器是这些属性在常见用法中的一个更好的替代品。
  84. */
  85. @property (nonatomic, strong, nullable) id<SDWebImageOptionsProcessor> optionsProcessor;
  86. /**
  87. * 检查一个或多个操作是否正在运行
  88. */
  89. @property (nonatomic, assign, readonly, getter=isRunning) BOOL running;
  90. /**
  91. 当没有参数创建的管理器时,默认的图像缓存。比如共享管理器或初始化。
  92. 默认为 nil。表示使用 `SDImageCache.sharedImageCache`
  93. */
  94. @property (nonatomic, class, nullable) id<SDImageCache> defaultImageCache;
  95. /**
  96. 当没有参数创建的管理器时,默认的图像加载器。比如共享管理器或初始化。
  97. 默认为 nil。表示使用 `SDWebImageDownloader.sharedDownloader`
  98. */
  99. @property (nonatomic, class, nullable) id<SDImageLoader> defaultImageLoader;
  100. /**
  101. * 返回全局共享的管理器实例。
  102. */
  103. @property (nonatomic, class, readonly, nonnull) SDWebImageManager *sharedManager;
  104. /**
  105. * 允许指定用于管理器的缓存和图像加载器的实例。
  106. * @return 使用指定缓存和加载器创建的 `SDWebImageManager` 的新实例。
  107. */
  108. - (nonnull instancetype)initWithCache:(nonnull id<SDImageCache>)cache loader:(nonnull id<SDImageLoader>)loader NS_DESIGNATED_INITIALIZER;
  109. /**
  110. * 如果缓存中不存在图像,则下载给定 URL 的图像,否则返回缓存的版本。
  111. * @param url            图像的 URL
  112. * @param options        用于此请求的选项掩码
  113. * @param progressBlock  下载图像时调用的块
  114. *                       @note 进度块在后台队列上执行
  115. * @param completedBlock 操作完成后调用的块。
  116. *
  117. *   此参数是必需的。
  118. *
  119. *   此块没有返回值,以请求的 UIImage 为第一个参数,NSData 表示形式为第二个参数。如果发生错误,则图像参数为 nil,并且第三个参数可能包含 NSError。
  120. *
  121. *   第四个参数是 `SDImageCacheType` 枚举,指示图像是从本地缓存还是从内存缓存还是从网络中检索的。
  122. *
  123. *   当使用 `SDWebImageProgressiveLoad` 选项并且图像正在下载时,第五个参数设置为 NO。这样,该块会重复调用,直到图像下载完成。当图像完全下载时,最后一个参数设置为 YES。
  124. *
  125. *   最后一个参数是原始图像 URL
  126. *
  127. * @return 返回 SDWebImageCombinedOperation 的实例,您可以取消加载过程。
  128. */
  129. - (nullable SDWebImageCombinedOperation *)loadImageWithURL:(nullable NSURL *)url
  130.                                                    options:(SDWebImageOptions)options
  131.                                                   progress:(nullable SDImageLoaderProgressBlock)progressBlock
  132.                                                  completed:(nonnull SDInternalCompletionBlock)completedBlock;
  133. /**
  134. * 如果缓存中不存在图像,则下载给定 URL 的图像,否则返回缓存的版本。
  135. *
  136. * @param url            图像的 URL
  137. * @param options        用于此请求的选项掩码
  138. * @param context        包含不同选项以执行指定更改或进程的上下文,参见 `SDWebImageContextOption`。这保存了额外对象,`options` 枚举不能包含的对象。
  139. * @param progressBlock  下载图像时调用的块
  140. *                       @note 进度块在后台队列上执行
  141. * @param completedBlock 操作完成后调用的块。
  142. *
  143. * @return 返回 SDWebImageCombinedOperation 的实例,您可以取消加载过程。
  144. */
  145. - (nullable SDWebImageCombinedOperation *)loadImageWithURL:(nullable NSURL *)url
  146.                                                    options:(SDWebImageOptions)options
  147.                                                    context:(nullable SDWebImageContext *)context
  148.                                                   progress:(nullable SDImageLoaderProgressBlock)progressBlock
  149.                                                  completed:(nonnull SDInternalCompletionBlock)completedBlock;
  150. /**
  151. * 取消所有当前操作
  152. */
  153. - (void)cancelAll;
  154. /**
  155. * 从失败的黑名单中删除指定的 URL。
  156. * @param url 失败的 URL。
  157. */
  158. - (void)removeFailedURL:(nonnull NSURL *)url;
  159. /**
  160. * 从失败的黑名单中删除所有 URL。
  161. */
  162. - (void)removeAllFailedURLs;
  163. /**
  164. * 返回给定 URL 的缓存键,不考虑变换器或缩略图。
  165. * @note 此方法没有上下文
  166. 选项,仅使用 URL 和管理器级别的 cacheKeyFilter 生成缓存键。
  167. */
  168. - (nullable NSString *)cacheKeyForURL:(nullable NSURL *)url;
  169. /**
  170. * 返回给定 URL 和上下文选项的缓存键。
  171. * @note 上下文选项,如 `.thumbnailPixelSize` 和 `.imageTransformer` 将影响生成的缓存键,如果有这些关联的上下文,请使用此方法。
  172. */
  173. - (nullable NSString *)cacheKeyForURL:(nullable NSURL *)url context:(nullable SDWebImageContext *)context;
  174. @end
复制代码
SDWebImageCombinedOperation的类扩展中:
  1. @interface SDWebImageCombinedOperation ()
  2. //getter = isCancelled:这部分指定了该属性的获取方法名为isCancelled,而不是默认的方法名(cancelled)。
  3. //这个属性用于表示一个操作是否被取消
  4. @property (assign, nonatomic, getter = isCancelled) BOOL cancelled;
  5. //用来表示图像加载过程中的操作
  6. @property (strong, nonatomic, readwrite, nullable) id<SDWebImageOperation> loaderOperation;
  7. //用来表示缓存操作的对象
  8. @property (strong, nonatomic, readwrite, nullable) id<SDWebImageOperation> cacheOperation;
  9. //用来指向 SDWebImageManager 对象的实例
  10. @property (weak, nonatomic, nullable) SDWebImageManager *manager;
  11. @end
复制代码
我们从SDWebImage中下载图片的方法开始看起:
  1. /* 如果缓存中不存在图像,则下载给定 URL 的图像,否则返回缓存的版本。
  2. * @param url            图像的 URL
  3. * @param options        用于此请求的选项掩码
  4. * @param progressBlock  下载图像时调用的块
  5. *                       @note 进度块在后台队列上执行
  6. * @param completedBlock 操作完成后调用的块。*/
  7. - (SDWebImageCombinedOperation *)loadImageWithURL:(nullable NSURL *)url
  8.                                      options:(SDWebImageOptions)options
  9.                                      context:(nullable SDWebImageContext *)context
  10.                                     progress:(nullable SDImageLoaderProgressBlock)progressBlock
  11.                                    completed:(nonnull SDInternalCompletionBlock)completedBlock {
  12.     // 不带完成回调调用此方法是没有意义的
  13.     NSAssert(completedBlock != nil, @"若意在预加载图片,请改用-[SDWebImagePrefetcher prefetchURLs]");
  14.     // 常见错误是使用NSString而非NSURL传递URL。由于某些奇怪的原因,Xcode对此类型不匹配不会抛出任何警告。
  15.     // 这里我们通过允许URL以NSString形式传递来安全处理这个错误。
  16.     if ([url isKindOfClass:NSString.class]) {
  17.         url = [NSURL URLWithString:(NSString *)url];
  18.     }
  19.     // 防止因参数类型错误(例如发送NSNull而非NSURL)导致应用崩溃
  20.     if (![url isKindOfClass:NSURL.class]) {
  21.         url = nil;
  22.     }
  23.     // 代表缓存和加载操作的组合操作。可以使用它来取消加载过程。
  24.     SDWebImageCombinedOperation *operation = [SDWebImageCombinedOperation new];
  25.     //将当前对象作为 operation 的管理器,以便 operation 对象在执行加载图像的操作时,能够与当前对象关联,从而实现加载过程中的相关功能或交互。例如,operation 可能需要在加载完成后通知管理器,或者管理器需要取消 operation 的加载操作等。
  26.     //根据上面的SDWebImageCombinedOperation的类扩展中定义的属性我们知道,manager是对 SDWebImageManager 类的一个实例的引用。manager 属性让 SDWebImageCombinedOperation 对象可以访问这个管理器。
  27.     operation.manager = self;
  28.     BOOL isFailedUrl = NO;
  29.     if (url) {
  30.         //使用 SD_LOCK 宏对 _failedURLsLock 进行加锁操作,这是为了确保在多线程环境下对 _failedURLs 属性的访问是安全的。
  31.         SD_LOCK(_failedURLsLock);
  32.         //判断failedURLs是否包含url
  33.         isFailedUrl = [self.failedURLs containsObject:url];
  34.         //使用 SD_UNLOCK 宏对 _failedURLsLock 进行解锁操作,以释放锁。
  35.         SD_UNLOCK(_failedURLsLock);
  36.         /*在这段代码中,涉及到了对 _failedURLs 属性的访问操作,而 _failedURLs 属性很可能是一个共享资源,即多个线程可能会同时访问它。在多线程环境下,如果不进行加锁操作,就可能会导致数据竞争(data race)的问题,即多个线程同时修改同一个共享资源,导致数据不一致或者出现未定义的行为。*/
  37.     }
  38.    
  39.     // 预处理选项和上下文参数,以决定最终的manager处理结果
  40.     SDWebImageOptionsResult *result = [self processedResultForURL:url options:options context:context];
  41.     //字符串长度是否为0,或者如果选项中不包含SDWebImageRetryFailed标志位并且URL被标记为失败,则进入条件块。
  42.     if (url.absoluteString.length == 0 || (!(options & SDWebImageRetryFailed) && isFailedUrl)) {
  43.         NSString *description = isFailedUrl ? @"图片URL已被拉黑" : @"图片URL为空";
  44.         //设置错误代码
  45.         NSInteger code = isFailedUrl ? SDWebImageErrorBlackListed : SDWebImageErrorInvalidURL;
  46.         //这个方法通常在图像的异步加载操作完成或者发生错误时被调用,用于执行一些收尾工作。传递了操作(operation)、完成块(completedBlock)、错误信息(通过NSError创建,包括了错误域、错误代码、用户信息中的描述)、队列(从result.context[SDWebImageContextCallbackQueue]获取)、URL(url)等参数。
  47.         //typedef NSString *NSErrorUserInfoKey;
  48.         [self callCompletionBlockForOperation:operation completion:completedBlock error:[NSError errorWithDomain:SDWebImageErrorDomain code:code userInfo:@{NSLocalizedDescriptionKey : description}] queue:result.context[SDWebImageContextCallbackQueue] url:url];
  49.         return operation;
  50.     }
  51.     //将这个操作加入进程,为避免在多线程环境下发生资源竞争的问题,因此使用了锁
  52.     SD_LOCK(_runningOperationsLock);
  53.     [self.runningOperations addObject:operation];
  54.     SD_UNLOCK(_runningOperationsLock);
  55.    
  56.     // 开始从缓存加载图片的入口步骤,以下是更详细的步骤
  57.     // 无转换器步骤:
  58.     // 1. 从缓存查询图片,未命中
  59.     // 2. 下载数据和图片
  60.     // 3. 存储图片至缓存
  61.    
  62.     // 带转换器步骤:
  63.     // 1. 从缓存查询转换后的图片,未命中
  64.     // 2. 从缓存查询原始图片,未命中
  65.     // 3. 下载数据和图片
  66.     // 4. 在CPU上执行转换
  67.     // 5. 存储原始图片至缓存
  68.     // 6. 存储转换后的图片至缓存
  69.     [self callCacheProcessForOperation:operation url:url options:result.options context:result.context progress:progressBlock completed:completedBlock];
  70.     return operation;
  71. }
复制代码
其中,在这段代码中:
  1. // 预处理选项和上下文参数,以决定最终的manager处理结果
  2.     SDWebImageOptionsResult *result = [self processedResultForURL:url options:options context:context];
复制代码
这段代码涉及到一个processedResultForURL: options: context:方法,这是一个用于处置惩罚给定的URL、选项和上下文,生成最终的图像加载选项结果的方法,这里我们具体表明一下:
  1. /*
  2. url:要处理的图像的URL。
  3. options:SDWebImageOptions枚举类型,表示加载图像时的选项,比如是否需要缓存、是否需要渐进式加载等。
  4. context:SDWebImageContext对象,包含了额外的图像加载参数,比如图像转换器、缓存键过滤器、缓存序列化器等。
  5. */
  6. //处理给定的URL、选项和上下文,生成最终的图像加载选项结果(SDWebImageOptionsResult对象)
  7. - (SDWebImageOptionsResult *)processedResultForURL:(NSURL *)url options:(SDWebImageOptions)options context:(SDWebImageContext *)context {
  8.     SDWebImageOptionsResult *result;
  9.     //SDWebImageMutableContext的定义:typedef NSMutableDictionary<SDWebImageContextOption, id> SDWebImageMutableContext;
  10.     SDWebImageMutableContext *mutableContext = [SDWebImageMutableContext dictionary];
  11.    
  12.     // 从管理器获取图像转换器
  13.     //确保 context 中存在 SDWebImageContextImageTransformer 键对应的值时,将 self.transformer 的值设置为该键的值。
  14.     if (!context[SDWebImageContextImageTransformer]) {
  15.         //定义了一个名为 transformer 的变量,其类型为遵循 SDImageTransformer 协议的对象。该对象的类型必须符合指定的协议,但具体的类可以是任意实现了该协议的类
  16.         id<SDImageTransformer> transformer = self.transformer;
  17.         [mutableContext setValue:transformer forKey:SDWebImageContextImageTransformer];
  18.     }
  19.     // 从管理器获取缓存键过滤器
  20.     if (!context[SDWebImageContextCacheKeyFilter]) {
  21.         id<SDWebImageCacheKeyFilter> cacheKeyFilter = self.cacheKeyFilter;
  22.         [mutableContext setValue:cacheKeyFilter forKey:SDWebImageContextCacheKeyFilter];
  23.     }
  24.     // 从管理器获取缓存序列化器
  25.     if (!context[SDWebImageContextCacheSerializer]) {
  26.         id<SDWebImageCacheSerializer> cacheSerializer = self.cacheSerializer;
  27.         [mutableContext setValue:cacheSerializer forKey:SDWebImageContextCacheSerializer];
  28.     }
  29.    
  30.     //将 mutableContext 中的键值对合并到 context 中,并确保最终的 context 对象包含了 mutableContext 中的所有键值对。
  31.     if (mutableContext.count > 0) {
  32.         if (context) {
  33.             [mutableContext addEntriesFromDictionary:context];
  34.         }
  35.         context = [mutableContext copy];
  36.     }
  37.    
  38.     // 应用选项处理器
  39.     //调用 self.optionsProcessor 对象的处理方法,传入 URL、选项和上下文参数,并将处理后的结果赋值给 result 变量。
  40.     if (self.optionsProcessor) {
  41.         result = [self.optionsProcessor processedResultForURL:url options:options context:context];
  42.     }
  43.     //检查处理后的结果是否为空,如果为空则创建一个默认的选项结果对象,并将其赋值给 result 变量。这样可以确保在处理后的结果为空时,仍能有一个有效的默认选项结果对象。
  44.     if (!result) {
  45.         // 使用默认选项结果
  46.         result = [[SDWebImageOptionsResult alloc] initWithOptions:options context:context];
  47.     }
  48.    
  49.     return result;
  50. }
复制代码
其中SDWebImageOptionsResult是一个是一个用于存储图像加载选项和上下文信息的类:
  1. #import <Foundation/Foundation.h>
  2. #import "SDWebImageCompat.h"
  3. #import "SDWebImageDefine.h"
  4. @class SDWebImageOptionsResult;
  5. typedef SDWebImageOptionsResult * _Nullable(^SDWebImageOptionsProcessorBlock)(NSURL * _Nullable url, SDWebImageOptions options, SDWebImageContext * _Nullable context);
  6. /**
  7. 选项结果包含了选项和上下文信息。
  8. */
  9. @interface SDWebImageOptionsResult : NSObject
  10. /**
  11. WebCache 选项。
  12. */
  13. @property (nonatomic, assign, readonly) SDWebImageOptions options;
  14. /**
  15. 上下文选项。
  16. */
  17. @property (nonatomic, copy, readonly, nullable) SDWebImageContext *context;
  18. /**
  19. 创建一个新的选项结果。
  20. @param options 选项
  21. @param context 上下文
  22. @return 包含选项和上下文信息的选项结果。
  23. */
  24. - (nonnull instancetype)initWithOptions:(SDWebImageOptions)options context:(nullable SDWebImageContext *)context;
  25. @end
  26. /**
  27. 这是用于选项处理器的协议。
  28. 选项处理器可以用于控制单个图像请求的最终结果中的 `SDWebImageOptions` 和 `SDWebImageContext`。
  29. 实现此协议可全局控制每个单独图像请求的选项。
  30. */
  31. @protocol SDWebImageOptionsProcessor <NSObject>
  32. /**
  33. 返回指定图像 URL 的处理后选项结果,包含其选项和上下文信息。
  34. @param url 图像的 URL
  35. @param options 用于此请求的选项掩码
  36. @param context 包含不同选项以执行指定更改或处理的上下文,参见 `SDWebImageContextOption`。该上下文包含了 `options` 枚举无法包含的额外对象。
  37. @return 处理后的结果,包含选项和上下文信息
  38. */
  39. - (nullable SDWebImageOptionsResult *)processedResultForURL:(nullable NSURL *)url
  40.                                                     options:(SDWebImageOptions)options
  41.                                                     context:(nullable SDWebImageContext *)context;
  42. @end
  43. /**
  44. 一个带有 block 的选项处理器类。
  45. */
  46. @interface SDWebImageOptionsProcessor : NSObject<SDWebImageOptionsProcessor>
  47. - (nonnull instancetype)initWithBlock:(nonnull SDWebImageOptionsProcessorBlock)block;
  48. + (nonnull instancetype)optionsProcessorWithBlock:(nonnull SDWebImageOptionsProcessorBlock)block;
  49. @end
复制代码
在前面的代码中还涉及到一个缓存过滤器SDWebImageCacheKeyFilter,那么这个具体是个什么东西呢:
  1. #import <Foundation/Foundation.h>
  2. #import "SDWebImageCompat.h"
  3. typedef NSString * _Nullable(^SDWebImageCacheKeyFilterBlock)(NSURL * _Nonnull url);
  4. /**
  5. 这是缓存键过滤器的协议。
  6. 我们可以使用一个 block 来指定缓存键过滤器。但使用协议可以使其可扩展,并允许 Swift 用户更容易地使用它,而不是使用 `@convention(block)` 将 block 存储到上下文选项中。
  7. */
  8. /* SDWebImageCacheKeyFilter,即缓存键过滤器,在SDWebImage库中起着非常重要的作用。
  9. 在SDWebImage库中,每张图片都会根据其URL生成一个唯一的缓存键,这个缓存键被用来在缓存系统中存储和查找图像。然而,在某些情况下,我们可能希望修改或自定义这个缓存键的生成规则。例如,我们可能希望对同一张图像的不同尺寸版本使用不同的缓存键,或者我们可能需要将某些URL参数考虑在内以生成缓存键。
  10. 这时,SDWebImageCacheKeyFilter就派上用场了。通过实现SDWebImageCacheKeyFilter协议,我们可以自定义缓存键的生成规则。当SDWebImage需要生成缓存键时,它会调用协议中的cacheKeyForURL:方法,我们可以在这个方法中实现自己的逻辑来生成缓存键。
  11. 除此之外,SDWebImageCacheKeyFilter还支持使用block来快速创建一个过滤器,这使得在需要自定义缓存键生成规则时更加方便。
  12. */
  13. @protocol SDWebImageCacheKeyFilter <NSObject>
  14. - (nullable NSString *)cacheKeyForURL:(nonnull NSURL *)url;
  15. @end
  16. /**
  17. 一个带有 block 的缓存键过滤器类。
  18. */
  19. @interface SDWebImageCacheKeyFilter : NSObject <SDWebImageCacheKeyFilter>
  20. - (nonnull instancetype)initWithBlock:(nonnull SDWebImageCacheKeyFilterBlock)block;
  21. + (nonnull instancetype)cacheKeyFilterWithBlock:(nonnull SDWebImageCacheKeyFilterBlock)block;
  22. @end
复制代码
实现文件:
  1. #import "SDWebImageCacheKeyFilter.h"
  2. @interface SDWebImageCacheKeyFilter () // 类扩展
  3. @property (nonatomic, copy, nonnull) SDWebImageCacheKeyFilterBlock block; // block 属性,用于存储过滤器 block
  4. @end
  5. @implementation SDWebImageCacheKeyFilter // 类实现部分
  6. // 使用 block 初始化方法
  7. - (instancetype)initWithBlock:(SDWebImageCacheKeyFilterBlock)block {
  8.     self = [super init]; // 调用超类初始化方法
  9.     if (self) { // 如果初始化成功
  10.         self.block = block; // 存储过滤器 block
  11.     }
  12.     return self; // 返回初始化后的实例
  13. }
  14. // 类方法,使用 block 创建过滤器实例
  15. + (instancetype)cacheKeyFilterWithBlock:(SDWebImageCacheKeyFilterBlock)block {
  16.     SDWebImageCacheKeyFilter *cacheKeyFilter = [[SDWebImageCacheKeyFilter alloc] initWithBlock:block]; // 创建实例
  17.     return cacheKeyFilter; // 返回创建的实例
  18. }
  19. // 实现协议方法,生成缓存键
  20. - (NSString *)cacheKeyForURL:(NSURL *)url {
  21.     if (!self.block) { // 如果没有设置过滤器 block
  22.         return nil; // 返回 nil
  23.     }
  24.     return self.block(url); // 调用过滤器 block 生成缓存键
  25. }
  26. @end
复制代码
还有缓存序列化器SDWebImageCacheSerializer:
  1. #import <Foundation/Foundation.h>
  2. #import "SDWebImageCompat.h"
  3. // 定义一个类型为 SDWebImageCacheSerializerBlock 的 block,该 block 接收一个非空的 UIImage 对象,一个可为空的 NSData 对象和一个可为空的 NSURL 对象,返回一个可为空的 NSData 对象。
  4. typedef NSData * _Nullable(^SDWebImageCacheSerializerBlock)(UIImage * _Nonnull image, NSData * _Nullable data, NSURL * _Nullable imageURL);
  5. /**
  6. 这是缓存序列化器的协议。
  7. 我们可以使用一个 block 来指定缓存序列化器。但是使用协议可以使这一功能更具扩展性,并且允许 Swift 用户更容易地使用它,而不是使用 `@convention(block)` 将 block 存储到上下文选项中。
  8. */
  9. @protocol SDWebImageCacheSerializer <NSObject>
  10. /// 提供与图像关联的图像数据并存储到磁盘缓存中
  11. /// @param image 加载的图像
  12. /// @param data 原始加载的图像数据。当图像被转换时可能为nil(UIImage.sd_isTransformed = YES)
  13. /// @param imageURL 图像的URL
  14. - (nullable NSData *)cacheDataWithImage:(nonnull UIImage *)image originalData:(nullable NSData *)data imageURL:(nullable NSURL *)imageURL;
  15. @end
  16. /**
  17. 一个带有 block 的缓存序列化器类。
  18. */
  19. @interface SDWebImageCacheSerializer : NSObject <SDWebImageCacheSerializer>
  20. - (nonnull instancetype)initWithBlock:(nonnull SDWebImageCacheSerializerBlock)block;
  21. + (nonnull instancetype)cacheSerializerWithBlock:(nonnull SDWebImageCacheSerializerBlock)block;
  22. @end
复制代码
  1. #import "SDWebImageCacheSerializer.h"
  2. @interface SDWebImageCacheSerializer ()
  3. // 声明一个名为 block 的属性,它是 SDWebImageCacheSerializerBlock 类型的 block,设置为非空并且拷贝语义
  4. @property (nonatomic, copy, nonnull) SDWebImageCacheSerializerBlock block;
  5. @end
  6. // SDWebImageCacheSerializer 类的实现部分
  7. @implementation SDWebImageCacheSerializer
  8. // 使用 block 初始化 SDWebImageCacheSerializer 对象的方法
  9. - (instancetype)initWithBlock:(SDWebImageCacheSerializerBlock)block {
  10.     // 调用父类的 init 方法进行初始化
  11.     self = [super init];
  12.     // 如果 self 不为空,设置 self 的 block 属性为传入的 block
  13.     if (self) {
  14.         self.block = block;
  15.     }
  16.     // 返回初始化后的对象
  17.     return self;
  18. }
  19. // 创建并返回一个 SDWebImageCacheSerializer 对象的类方法,该对象使用传入的 block 进行初始化
  20. +(instancetype)cacheSerializerWithBlock:(SDWebImageCacheSerializerBlock)block {
  21.     SDWebImageCacheSerializer *cacheSerializer = [[SDWebImageCacheSerializer alloc] initWithBlock:block];
  22.     return cacheSerializer;
  23. }
  24. // 实现 SDWebImageCacheSerializer 协议中的 cacheDataWithImage:originalData:imageURL: 方法
  25. - (NSData *)cacheDataWithImage:(UIImage *)image originalData:(NSData *)data imageURL:(nullable NSURL *)imageURL {
  26.     // 如果 block 属性为空,直接返回 nil
  27.     if (!self.block) {
  28.         return nil;
  29.     }
  30.     // 如果 block 属性不为空,调用 block 并返回其结果
  31.     return self.block(image, data, imageURL);
  32. }
  33. @end
复制代码
缓存方面的代码

在最后的callCacheProcessForOperation是负责缓存方面的方法,它用于处置惩罚图像的缓存逻辑,假如图像在缓存中找到,则直接返回,否则从网络下载。接下来我们来具体看一下缓存方面的代码:
  1. // 查询普通缓存的流程
  2. - (void)callCacheProcessForOperation:(nonnull SDWebImageCombinedOperation *)operation
  3.                                  url:(nonnull NSURL *)url
  4.                              options:(SDWebImageOptions)options
  5.                              context:(nullable SDWebImageContext *)context
  6.                             progress:(nullable SDImageLoaderProgressBlock)progressBlock
  7.                            completed:(nullable SDInternalCompletionBlock)completedBlock {
  8.     // 获取要使用的图像缓存
  9.     id<SDImageCache> imageCache = context[SDWebImageContextImageCache];
  10.     if (!imageCache) {
  11.         //如果该图像没有缓存过就将添加缓存
  12.         imageCache = self.imageCache;
  13.     }
  14.     // 获取查询缓存类型
  15.     SDImageCacheType queryCacheType = SDImageCacheTypeAll;
  16.     //查询context中有没有设置缓存类型 要是设置了就讲刚刚定义的缓存类型设置为这个
  17.     if (context[SDWebImageContextQueryCacheType]) {
  18.         queryCacheType = [context[SDWebImageContextQueryCacheType] integerValue];
  19.     }
  20.    
  21.     // 检查我们是否应该查询缓存
  22.     //SD_OPTIONS_CONTAINS是一个宏,用于检查options变量
  23.     BOOL shouldQueryCache = !SD_OPTIONS_CONTAINS(options, SDWebImageFromLoaderOnly);
  24.     if (shouldQueryCache) { // 如果需要查询缓存
  25.         // 生成缓存键
  26.         NSString *key = [self cacheKeyForURL:url context:context];
  27.         @weakify(operation); // 弱引用 operation 避免循环引用
  28.         
  29.         // 查询缓存
  30.         operation.cacheOperation = [imageCache queryImageForKey:key options:options context:context cacheType:queryCacheType completion:^(UIImage * _Nullable cachedImage, NSData * _Nullable cachedData, SDImageCacheType cacheType) {
  31.             
  32.             @strongify(operation); // 强引用 operation,如果我们在block中直接使用弱引用的operation,那么operation可能在block执行过程中被释放。
  33.             
  34.             if (!operation || operation.isCancelled) { // 如果 operation 不存在或被取消
  35.                 // 结束操作,返回错误信息
  36.                 [self callCompletionBlockForOperation:operation completion:completedBlock error:[NSError errorWithDomain:SDWebImageErrorDomain code:SDWebImageErrorCancelled userInfo:@{NSLocalizedDescriptionKey : @"Operation cancelled by user during querying the cache"}] queue:context[SDWebImageContextCallbackQueue] url:url];
  37.                 [self safelyRemoveOperationFromRunning:operation];
  38.                 return;
  39.             } else if (!cachedImage) { // 如果没有在缓存中找到图像
  40.                 //获取原始缓存
  41.                 NSString *originKey = [self originalCacheKeyForURL:url context:context];
  42.                 //判断当前的键是否与原始缓存的键相同。如果不同,返回 YES,表示可能在原始缓存中;如果相同,返回 NO,表示不在原始缓存中。
  43.                 BOOL mayInOriginalCache = ![key isEqualToString:originKey];
  44.                 // 查询原始缓存,然后应用转换
  45.                 if (mayInOriginalCache) {
  46.                     [self callOriginalCacheProcessForOperation:operation url:url options:options context:context progress:progressBlock completed:completedBlock];
  47.                     return;
  48.                 }
  49.             }
  50.             // 如果在缓存中找到图像,继续下载过程
  51.             [self callDownloadProcessForOperation:operation url:url options:options context:context cachedImage:cachedImage cachedData:cachedData cacheType:cacheType progress:progressBlock completed:completedBlock];
  52.         }];
  53.     } else { // 如果不需要查询缓存,直接开始下载过程
  54.         [self callDownloadProcessForOperation:operation url:url options:options context:context cachedImage:nil cachedData:nil cacheType:SDImageCacheTypeNone progress:progressBlock completed:completedBlock];
  55.     }
  56. }
复制代码
其中图像缓存类型有这几种:
  1. /// 图像缓存类型
  2. typedef NS_ENUM(NSInteger, SDImageCacheType) {
  3.     /**
  4.      * 对于响应中的查询和包含操作,表示图像在图像缓存中不可用
  5.      * 对于请求中的操作,此类型不可用,无效果。
  6.      */
  7.     SDImageCacheTypeNone,
  8.     /**
  9.      * 对于响应中的查询和包含操作,表示图像是从磁盘缓存中获取的。
  10.      * 对于请求中的操作,表示仅处理磁盘缓存。
  11.      */
  12.     SDImageCacheTypeDisk,
  13.     /**
  14.      * 对于响应中的查询和包含操作,表示图像是从内存缓存中获取的。
  15.      * 对于请求中的操作,表示仅处理内存缓存。
  16.      */
  17.     SDImageCacheTypeMemory,
  18.     /**
  19.      * 对于响应中的查询和包含操作,此类型不可用,无效果。
  20.      * 对于请求中的操作,表示处理内存缓存和磁盘缓存。
  21.      */
  22.     SDImageCacheTypeAll
  23. };
复制代码
在上面代码的查询缓存键时用到了queryImageForKey:方法,该方法是用于查询指定键的图片,其具体代码:
  1. // 查询指定键的图片
  2. // 参数:key - 要查询的键
  3. //       options - 查询选项
  4. //       context - 查询的上下文
  5. //       cacheType - 缓存类型
  6. //       completionBlock - 查询完成的回调
  7. - (id<SDWebImageOperation>)queryImageForKey:(NSString *)key options:(SDWebImageOptions)options context:(SDWebImageContext *)context cacheType:(SDImageCacheType)cacheType completion:(SDImageCacheQueryCompletionBlock)completionBlock {
  8.     // 如果键为空,直接返回nil
  9.     if (!key) {
  10.         return nil;
  11.     }
  12.     // 获取缓存
  13.     //NSArray<id<SDImageCache>>数组中的每个元素都是实现了SDImageCache协议的对象,这些对象代表了不同的缓存。
  14.     NSArray<id<SDImageCache>> *caches = self.caches;
  15.     NSUInteger count = caches.count;
  16.    
  17.     // 如果没有缓存,直接返回nil
  18.     if (count == 0) {
  19.         return nil;
  20.     } else if (count == 1) { // 如果只有一个缓存,直接在这个缓存中查询
  21.         return [caches.firstObject queryImageForKey:key options:options context:context cacheType:cacheType completion:completionBlock];
  22.     }
  23.    
  24.     // 根据查询策略来决定如何查询图片
  25.     switch (self.queryOperationPolicy) {
  26.         case SDImageCachesManagerOperationPolicyHighestOnly: { // 只查询优先级最高的缓存
  27.             id<SDImageCache> cache = caches.lastObject;
  28.             return [cache queryImageForKey:key options:options context:context cacheType:cacheType completion:completionBlock];
  29.         }
  30.         case SDImageCachesManagerOperationPolicyLowestOnly: { // 只查询优先级最低的缓存
  31.             id<SDImageCache> cache = caches.firstObject;
  32.             return [cache queryImageForKey:key options:options context:context cacheType:cacheType completion:completionBlock];
  33.         }
  34.         case SDImageCachesManagerOperationPolicyConcurrent: { // 并行查询所有的缓存
  35.             SDImageCachesManagerOperation *operation = [SDImageCachesManagerOperation new];
  36.             [operation beginWithTotalCount:caches.count];
  37.             [self concurrentQueryImageForKey:key options:options context:context cacheType:cacheType completion:completionBlock enumerator:caches.reverseObjectEnumerator operation:operation];
  38.             return operation;
  39.         }
  40.         case SDImageCachesManagerOperationPolicySerial: { // 串行查询所有的缓存
  41.             SDImageCachesManagerOperation *operation = [SDImageCachesManagerOperation new];
  42.             [operation beginWithTotalCount:caches.count];
  43.             [self serialQueryImageForKey:key options:options context:context cacheType:cacheType completion:completionBlock enumerator:caches.reverseObjectEnumerator operation:operation];
  44.             return operation;
  45.         }
  46.         default: // 默认情况,直接返回nil
  47.             return nil;
  48.     }
  49. }
复制代码
concurrentQueryImageForKey:方法:
  1. // 并行查询所有缓存中的图片
  2. // 参数:key - 要查询的键
  3. //       options - 查询选项
  4. //       context - 查询的上下文
  5. //       queryCacheType - 查询的缓存类型
  6. //       completionBlock - 查询完成的回调
  7. //       enumerator - 缓存的枚举器
  8. //       operation - 操作
  9. - (void)concurrentQueryImageForKey:(NSString *)key options:(SDWebImageOptions)options context:(SDWebImageContext *)context cacheType:(SDImageCacheType)queryCacheType completion:(SDImageCacheQueryCompletionBlock)completionBlock enumerator:(NSEnumerator<id<SDImageCache>> *)enumerator operation:(SDImageCachesManagerOperation *)operation {
  10.     // 断言,确保enumerator和operation不为空
  11.     NSParameterAssert(enumerator);
  12.     NSParameterAssert(operation);
  13.     // 遍历所有的缓存
  14.     for (id<SDImageCache> cache in enumerator) {
  15.         // 在每个缓存中查询图片
  16.         [cache queryImageForKey:key options:options context:context cacheType:queryCacheType completion:^(UIImage * _Nullable image, NSData * _Nullable data, SDImageCacheType cacheType) {
  17.             // 如果操作已经被取消,直接返回
  18.             if (operation.isCancelled) {
  19.                 return;
  20.             }
  21.             // 如果操作已经完成,直接返回
  22.             if (operation.isFinished) {
  23.                 return;
  24.             }
  25.             // 完成一个操作
  26.             [operation completeOne];
  27.             // 如果查询到了图片,标记所有操作为完成,并调用完成回调
  28.             if (image) {
  29.                 [operation done];
  30.                 if (completionBlock) {
  31.                     completionBlock(image, data, cacheType);
  32.                 }
  33.                 return;
  34.             }
  35.             // 如果所有的操作都已经完成,标记所有操作为完成,并调用完成回调
  36.             if (operation.pendingCount == 0) {
  37.                 [operation done];
  38.                 if (completionBlock) {
  39.                     completionBlock(nil, nil, SDImageCacheTypeNone);
  40.                 }
  41.             }
  42.         }];
  43.     }
  44. }
复制代码
cacheKeyForURL:方法:用于为给定的URL和上下文生成一个缓存键:
  1. //为给定的URL和上下文生成一个缓存键
  2. - (nullable NSString *)cacheKeyForURL:(nullable NSURL *)url context:(nullable SDWebImageContext *)context {
  3.     if (!url) { // 检查URL是否为空
  4.         return @""; // 如果URL为空,返回空字符串作为缓存键
  5.     }
  6.    
  7.     NSString *key; // 用于存储缓存键的变量
  8.    
  9.     // 获取缓存键过滤器
  10.     id<SDWebImageCacheKeyFilter> cacheKeyFilter = self.cacheKeyFilter;
  11.     if (context[SDWebImageContextCacheKeyFilter]) {
  12.         cacheKeyFilter = context[SDWebImageContextCacheKeyFilter];
  13.     }
  14.     if (cacheKeyFilter) { // 如果存在缓存键过滤器,使用过滤器生成缓存键
  15.         key = [cacheKeyFilter cacheKeyForURL:url];
  16.     } else { // 否则,直接使用URL的绝对字符串作为缓存键
  17.         key = url.absoluteString;
  18.     }
  19.    
  20.     // 处理缩略图键
  21.     NSValue *thumbnailSizeValue = context[SDWebImageContextImageThumbnailPixelSize];
  22.     if (thumbnailSizeValue != nil) { // 如果存在缩略图大小值
  23.         CGSize thumbnailSize = CGSizeZero; // 初始化缩略图大小为零
  24.         
  25.         // 获取真实的缩略图大小
  26. #if SD_MAC // 如果是在Mac系统上
  27.         thumbnailSize = thumbnailSizeValue.sizeValue; // 使用sizeValue属性获取大小
  28. #else // 如果是在其他系统上
  29.         thumbnailSize = thumbnailSizeValue.CGSizeValue; // 使用CGSizeValue属性获取大小
  30. #endif
  31.         BOOL preserveAspectRatio = YES; // 默认保持原图的纵横比
  32.         NSNumber *preserveAspectRatioValue = context[SDWebImageContextImagePreserveAspectRatio]; // 获取是否保持纵横比的值
  33.         if (preserveAspectRatioValue != nil) { // 如果有设置是否保持纵横比的值
  34.             preserveAspectRatio = preserveAspectRatioValue.boolValue; // 使用设置的值
  35.         }
  36.         
  37.         // 生成缩略图的缓存键,考虑了缩略图的大小和是否保持纵横比
  38.         key = SDThumbnailedKeyForKey(key, thumbnailSize, preserveAspectRatio);
  39.     }
  40.    
  41.     // 处理转换器键
  42.     id<SDImageTransformer> transformer = self.transformer;
  43.     if (context[SDWebImageContextImageTransformer]) { // 如果上下文中存在图像转换器,需要在缓存键中添加相关信息
  44.         transformer = context[SDWebImageContextImageTransformer];
  45.         if ([transformer isEqual:NSNull.null]) {
  46.             transformer = nil;
  47.         }
  48.     }
  49.     if (transformer) {
  50.         key = SDTransformedKeyForKey(key, transformer.transformerKey);
  51.     }
  52.    
  53.     return key; // 返回生成的缓存键
  54. }
复制代码
serialQueryImageForKey:方法:
  1. //用于在一系列的缓存中查询指定的图片
  2. //方法定义,接受7个参数,key是你要查询的图片的键,options是查询选项,context包含一些额外的上下文信息,queryCacheType限定查询的缓存类型,completionBlock是查询完成后的回调,enumerator用于遍历所有的缓存,operation是管理查询操作的对象。
  3. - (void)serialQueryImageForKey:(NSString *)key options:(SDWebImageOptions)options context:(SDWebImageContext *)context cacheType:(SDImageCacheType)queryCacheType completion:(SDImageCacheQueryCompletionBlock)completionBlock enumerator:(NSEnumerator<id<SDImageCache>> *)enumerator operation:(SDImageCachesManagerOperation *)operation {
  4.    
  5.     NSParameterAssert(enumerator); // 确保enumerator不为空,否则抛出异常
  6.     NSParameterAssert(operation); // 确保operation不为空,否则抛出异常
  7.    
  8.     id<SDImageCache> cache = enumerator.nextObject; // 获取下一个缓存对象
  9.     if (!cache) {
  10.         // 如果没有更多的缓存,那么完成操作,并调用回调函数,传入nil表示没有找到图片
  11.         [operation done];
  12.         if (completionBlock) {
  13.             completionBlock(nil, nil, SDImageCacheTypeNone);
  14.         }
  15.         return;
  16.     }
  17.     @weakify(self); // 防止在block中发生循环引用
  18.     [cache queryImageForKey:key options:options context:context cacheType:queryCacheType completion:^(UIImage * _Nullable image, NSData * _Nullable data, SDImageCacheType cacheType) {
  19.         @strongify(self); // 强引用self,确保在block执行期间self不会被销毁
  20.         if (operation.isCancelled) {
  21.             // 如果操作已经被取消,那么直接返回
  22.             return;
  23.         }
  24.         if (operation.isFinished) {
  25.             // 如果操作已经完成,那么直接返回
  26.             return;
  27.         }
  28.         [operation completeOne]; // 表示一个查询操作已经完成
  29.         if (image) {
  30.             // 如果找到了图片,那么完成所有操作,并调用回调函数
  31.             [operation done];
  32.             if (completionBlock) {
  33.                 completionBlock(image, data, cacheType);
  34.             }
  35.             return;
  36.         }
  37.         // 如果没有找到图片,那么查询下一个缓存
  38.         [self serialQueryImageForKey:key options:options context:context cacheType:queryCacheType completion:completionBlock enumerator:enumerator operation:operation];
  39.     }];
  40. }
复制代码
在上面的代码中有个SDImageCachesManagerOperation类,这个类的对象主要负责管理一系列的图像缓存查询操作:
  1. #import <Foundation/Foundation.h>
  2. #import "SDWebImageCompat.h"
  3. /// 这用于操作管理,但不用于操作队列执行
  4. @interface SDImageCachesManagerOperation : NSOperation
  5. // 未完成的操作的数量
  6. @property (nonatomic, assign, readonly) NSUInteger pendingCount;
  7. // 开始一个包含指定数量的操作
  8. - (void)beginWithTotalCount:(NSUInteger)totalCount;
  9. // 完成一个操作
  10. - (void)completeOne;
  11. // 完成所有操作
  12. - (void)done;
  13. @end
复制代码
  1. #import "SDImageCachesManagerOperation.h"
  2. #import "SDInternalMacros.h"
  3. @implementation SDImageCachesManagerOperation {
  4.     SD_LOCK_DECLARE(_pendingCountLock);
  5. }
  6. @synthesize executing = _executing;
  7. @synthesize finished = _finished;
  8. @synthesize cancelled = _cancelled;
  9. @synthesize pendingCount = _pendingCount;
  10. - (instancetype)init {
  11.     if (self = [super init]) {
  12.         SD_LOCK_INIT(_pendingCountLock);
  13.         _pendingCount = 0;
  14.     }
  15.     return self;
  16. }
  17. //totalCount:开始的操作的总数
  18. - (void)beginWithTotalCount:(NSUInteger)totalCount {
  19.     //表示正在执行操作
  20.     self.executing = YES;
  21.     //表示操作还未完成
  22.     self.finished = NO;
  23.     //表示还有totalCount数量的操作待完成
  24.     _pendingCount = totalCount;
  25. }
  26. - (NSUInteger)pendingCount {
  27.     SD_LOCK(_pendingCountLock);
  28.     NSUInteger pendingCount = _pendingCount;
  29.     SD_UNLOCK(_pendingCountLock);
  30.     return pendingCount;
  31. }
  32. // 完成一个操作
  33. - (void)completeOne {
  34.     // 上锁,防止在多线程环境下`_pendingCount`的值被同时修改
  35.     SD_LOCK(_pendingCountLock);
  36.     // 如果`_pendingCount`的值大于0,则减1,否则保持为0
  37.     _pendingCount = _pendingCount > 0 ? _pendingCount - 1 : 0;
  38.     // 解锁
  39.     SD_UNLOCK(_pendingCountLock);
  40. }
  41. - (void)cancel {
  42.     self.cancelled = YES;
  43.     [self reset];
  44. }
  45. // 所有操作完成
  46. - (void)done {
  47.     // 将`finished`设为YES,表示所有操作已完成
  48.     self.finished = YES;
  49.     // 将`executing`设为NO,表示不再有正在执行的操作
  50.     self.executing = NO;
  51.     // 重置操作
  52.     [self reset];
  53. }
  54. - (void)reset {
  55.     SD_LOCK(_pendingCountLock);
  56.     _pendingCount = 0;
  57.     SD_UNLOCK(_pendingCountLock);
  58. }
  59. - (void)setFinished:(BOOL)finished {
  60.     [self willChangeValueForKey:@"isFinished"];
  61.     _finished = finished;
  62.     [self didChangeValueForKey:@"isFinished"];
  63. }
  64. - (void)setExecuting:(BOOL)executing {
  65.     [self willChangeValueForKey:@"isExecuting"];
  66.     _executing = executing;
  67.     [self didChangeValueForKey:@"isExecuting"];
  68. }
  69. - (void)setCancelled:(BOOL)cancelled {
  70.     [self willChangeValueForKey:@"isCancelled"];
  71.     _cancelled = cancelled;
  72.     [self didChangeValueForKey:@"isCancelled"];
  73. }
  74. @end
复制代码
在上面的callCacheProcessForOperation:的查询缓存的代码中,还有一个用于获取原始缓存的方法originalCacheKeyForURL:。
   什么是原始缓存呢?
"原始缓存"是指对图像进行任何形式转换(如裁剪、缩放、滤镜应用等)之前的图像缓存。比如,你可能会把一张大图缩小后保存在缓存中,这时假如再次需要原图,就需要去原始缓存中获取。
该方法代码如下:
  1. // 获取指定URL的原始缓存键
  2. - (nullable NSString *)originalCacheKeyForURL:(nullable NSURL *)url context:(nullable SDWebImageContext *)context {
  3.     // 如果URL为空,则返回空字符串
  4.     if (!url) {
  5.         return @"";
  6.     }
  7.    
  8.     NSString *key;
  9.     // 缓存键过滤器
  10.     id<SDWebImageCacheKeyFilter> cacheKeyFilter = self.cacheKeyFilter;
  11.     // 如果上下文中存在缓存键过滤器,则使用上下文中的缓存键过滤器
  12.     if (context[SDWebImageContextCacheKeyFilter]) {
  13.         cacheKeyFilter = context[SDWebImageContextCacheKeyFilter];
  14.     }
  15.     // 如果存在缓存键过滤器,则使用过滤器处理URL得到缓存键
  16.     if (cacheKeyFilter) {
  17.         key = [cacheKeyFilter cacheKeyForURL:url];
  18.     } else {
  19.         // 如果不存在缓存键过滤器,则直接使用URL的绝对字符串作为缓存键
  20.         key = url.absoluteString;
  21.     }
  22.    
  23.     // 返回缓存键
  24.     return key;
  25. }
复制代码
这里的cacheKeyForURL:方法在上面的SDWebImageCacheKeyFilter的类中有,这里再展示一下,它是用来生成缓存键的。
  1. // 实现协议方法,生成缓存键
  2. - (NSString *)cacheKeyForURL:(NSURL *)url {
  3.     if (!self.block) { // 如果没有设置过滤器 block
  4.         return nil; // 返回 nil
  5.     }
  6.     return self.block(url); // 调用过滤器 block 生成缓存键
  7. }
复制代码
这里来说一下,缓存通常以键值对的形式存储数据。键(Key)是用来标识和查找数据的唯一标识,值(Value)则是你要存储的具体数据。因此这里要生成缓存键才能将缓存存入。
callOriginalCacheProcessForOperation:方法:处置惩罚原始缓存的查询过程:
  1. // 处理原始缓存的查询过程
  2. - (void)callOriginalCacheProcessForOperation:(nonnull SDWebImageCombinedOperation *)operation
  3.                                          url:(nonnull NSURL *)url
  4.                                      options:(SDWebImageOptions)options
  5.                                      context:(nullable SDWebImageContext *)context
  6.                                     progress:(nullable SDImageLoaderProgressBlock)progressBlock
  7.                                    completed:(nullable SDInternalCompletionBlock)completedBlock {
  8.     // 获取要使用的图片缓存,优先选择独立的原始缓存
  9.     id<SDImageCache> imageCache = context[SDWebImageContextOriginalImageCache];
  10.     if (!imageCache) {
  11.         // 如果没有可用的独立缓存,使用默认缓存
  12.         imageCache = context[SDWebImageContextImageCache];
  13.         if (!imageCache) {
  14.             imageCache = self.imageCache;
  15.         }
  16.     }
  17.    
  18.     // 设置原始查询缓存类型为磁盘缓存
  19.     SDImageCacheType originalQueryCacheType = SDImageCacheTypeDisk;
  20.     // 如果上下文中提供了原始查询缓存类型,那么使用上下文中的类型
  21.     if (context[SDWebImageContextOriginalQueryCacheType]) {
  22.         originalQueryCacheType = [context[SDWebImageContextOriginalQueryCacheType] integerValue];
  23.     }
  24.    
  25.     // 检查是否应查询原始缓存
  26.     BOOL shouldQueryOriginalCache = (originalQueryCacheType != SDImageCacheTypeNone);
  27.     if (shouldQueryOriginalCache) {
  28.         // 获取没有转换器的原始缓存键生成
  29.         NSString *key = [self originalCacheKeyForURL:url context:context];
  30.         @weakify(operation);//防止循环引用
  31.         operation.cacheOperation = [imageCache queryImageForKey:key options:options context:context cacheType:originalQueryCacheType completion:^(UIImage * _Nullable cachedImage, NSData * _Nullable cachedData, SDImageCacheType cacheType) {
  32.             @strongify(operation);//防止operation被释放
  33.             if (!operation || operation.isCancelled) {
  34.                 // 用户取消了图像组合操作
  35.                 [self callCompletionBlockForOperation:operation completion:completedBlock error:[NSError errorWithDomain:SDWebImageErrorDomain code:SDWebImageErrorCancelled userInfo:@{NSLocalizedDescriptionKey : @"Operation cancelled by user during querying the cache"}] queue:context[SDWebImageContextCallbackQueue] url:url];
  36.                 [self safelyRemoveOperationFromRunning:operation];
  37.                 return;
  38.             } else if (!cachedImage) {
  39.                 // 原始图片缓存丢失。继续下载过程
  40.                 [self callDownloadProcessForOperation:operation url:url options:options context:context cachedImage:nil cachedData:nil cacheType:SDImageCacheTypeNone progress:progressBlock completed:completedBlock];
  41.                 return;
  42.             }
  43.                         
  44.             // 跳过下载并继续转换过程,现在忽略.refreshCached选项
  45.             [self callTransformProcessForOperation:operation url:url options:options context:context originalImage:cachedImage originalData:cachedData cacheType:cacheType finished:YES completed:completedBlock];
  46.             
  47.             [self safelyRemoveOperationFromRunning:operation];
  48.         }];
  49.     } else {
  50.         // 继续下载过程
  51.         [self callDownloadProcessForOperation:operation url:url options:options context:context cachedImage:nil cachedData:nil cacheType:SDImageCacheTypeNone progress:progressBlock completed:completedBlock];
  52.     }
  53. }
复制代码
safelyRemoveOperationFromRunning:
  1. // 安全地从正在运行的操作集合中移除指定的操作
  2. - (void)safelyRemoveOperationFromRunning:(nullable SDWebImageCombinedOperation*)operation {
  3.     // 如果操作为空,则直接返回
  4.     if (!operation) {
  5.         return;
  6.     }
  7.     // 加锁,防止在多线程环境下同时修改`runningOperations`导致的问题
  8.     SD_LOCK(_runningOperationsLock);
  9.     // 从正在运行的操作集合中移除指定的操作
  10.     [self.runningOperations removeObject:operation];
  11.     // 解锁
  12.     SD_UNLOCK(_runningOperationsLock);
  13. }
复制代码
下载部分

说完了缓存的部分,接下来同样重要的是下载图片的部分,首先在我们上面那块的代码中就有,调用到了callDownloadProcessForOperation:方法,该方法是图片的下载过程,下面详解:
  1. // 下载过程
  2. - (void)callDownloadProcessForOperation:(nonnull SDWebImageCombinedOperation *)operation
  3.                                     url:(nonnull NSURL *)url
  4.                                 options:(SDWebImageOptions)options
  5.                                 context:(SDWebImageContext *)context
  6.                             cachedImage:(nullable UIImage *)cachedImage
  7.                              cachedData:(nullable NSData *)cachedData
  8.                               cacheType:(SDImageCacheType)cacheType
  9.                                progress:(nullable SDImageLoaderProgressBlock)progressBlock
  10.                               completed:(nullable SDInternalCompletionBlock)completedBlock {
  11.     // 标记缓存操作结束
  12.     @synchronized (operation) {
  13.         //缓存操作的对象为nil
  14.         operation.cacheOperation = nil;
  15.     }
  16.    
  17.     // 获取要使用的图像加载器
  18.     id<SDImageLoader> imageLoader = context[SDWebImageContextImageLoader];
  19.     if (!imageLoader) {
  20.         imageLoader = self.imageLoader;
  21.     }
  22.    
  23.     // 检查我们是否应该从网络下载图像
  24.     BOOL shouldDownload = !SD_OPTIONS_CONTAINS(options, SDWebImageFromCacheOnly);
  25.     //如果没有缓存的图像或者选项中包含SDWebImageRefreshCached(即使有缓存图像也要下载新的图像),那么应该下载图像。
  26.     shouldDownload &= (!cachedImage || options & SDWebImageRefreshCached);
  27.     //如果委托没有实现imageManager:shouldDownloadImageForURL:方法或者委托允许下载这个URL的图像,那么应该下载图像。
  28.     shouldDownload &= (![self.delegate respondsToSelector:@selector(imageManager:shouldDownloadImageForURL:)] || [self.delegate imageManager:self shouldDownloadImageForURL:url]);
  29.     //如果图像加载器支持canRequestImageForURL:options:context:方法,那么我们将根据这个方法的结果来决定是否应该下载图像。如果不支持这个方法,那么我们将根据canRequestImageForURL:方法的结果来决定是否应该下载图像。
  30.     if ([imageLoader respondsToSelector:@selector(canRequestImageForURL:options:context:)]) {
  31.         shouldDownload &= [imageLoader canRequestImageForURL:url options:options context:context];
  32.     } else {
  33.         shouldDownload &= [imageLoader canRequestImageForURL:url];
  34.     }
  35.     if (shouldDownload) {
  36.         if (cachedImage && options & SDWebImageRefreshCached) {
  37.             // 如果在缓存中找到了图像,但提供了SDWebImageRefreshCached,则通知缓存的图像
  38.             // 并尝试重新下载,以便让NSURLCache有机会从服务器刷新。
  39.             [self callCompletionBlockForOperation:operation completion:completedBlock image:cachedImage data:cachedData error:nil cacheType:cacheType finished:YES queue:context[SDWebImageContextCallbackQueue] url:url];
  40.             // 将缓存的图像传递给图像加载器。图像加载器应该检查远程图像是否等于缓存图像。
  41.             SDWebImageMutableContext *mutableContext;
  42.             if (context) {
  43.                 mutableContext = [context mutableCopy];
  44.             } else {
  45.                 mutableContext = [NSMutableDictionary dictionary];
  46.             }
  47.             mutableContext[SDWebImageContextLoaderCachedImage] = cachedImage;
  48.             context = [mutableContext copy];
  49.         }
  50.         @weakify(operation);
  51.         operation.loaderOperation = [imageLoader requestImageWithURL:url options:options context:context progress:progressBlock completed:^(UIImage *downloadedImage, NSData *downloadedData, NSError *error, BOOL finished) {
  52.             @strongify(operation);
  53.             if (!operation || operation.isCancelled) {
  54.                 // 图像组合操作被用户取消
  55.                 [self callCompletionBlockForOperation:operation completion:completedBlock error:[NSError errorWithDomain:SDWebImageErrorDomain code:SDWebImageErrorCancelled userInfo:@{NSLocalizedDescriptionKey : @"在发送请求期间用户取消了操作"}] queue:context[SDWebImageContextCallbackQueue] url:url];
  56.             } else if (cachedImage && options & SDWebImageRefreshCached && [error.domain isEqualToString:SDWebImageErrorDomain] && error.code == SDWebImageErrorCacheNotModified) {
  57.                 // 图像刷新命中了NSURLCache缓存,不调用完成块
  58.             } else if ([error.domain isEqualToString:SDWebImageErrorDomain] && error.code == SDWebImageErrorCancelled) {
  59.                 // 在发送请求前用户取消了下载操作,不阻止失败的URL
  60.                 [self callCompletionBlockForOperation:operation completion:completedBlock error:error queue:context[SDWebImageContextCallbackQueue] url:url];
  61.             } else if (error) {
  62.                 [self callCompletionBlockForOperation:operation completion:completedBlock error:error queue:context[SDWebImageContextCallbackQueue] url:url];
  63.                 BOOL shouldBlockFailedURL = [self shouldBlockFailedURLWithURL:url error:error options:options context:context];
  64.                
  65.                 //根据条件阻止或重试失败的URL,并确保在多线程环境下的线程安全性。
  66.                 if (shouldBlockFailedURL) {
  67.                     SD_LOCK(self->_failedURLsLock);
  68.                     [self.failedURLs addObject:url];
  69.                     SD_UNLOCK(self->_failedURLsLock);
  70.                 }
  71.             } else {
  72.                 if ((options & SDWebImageRetryFailed)) {
  73.                     SD_LOCK(self->_failedURLsLock);
  74.                     [self.failedURLs removeObject:url];
  75.                     SD_UNLOCK(self->_failedURLsLock);
  76.                 }
  77.                 // 继续转换过程
  78.                 [self callTransformProcessForOperation:operation url:url options:options context:context originalImage:downloadedImage originalData:downloadedData cacheType:SDImageCacheTypeNone finished:finished completed:completedBlock];
  79.             }
  80.             
  81.             if (finished) {
  82.                 [self safelyRemoveOperationFromRunning:operation];
  83.             }
  84.         }];
  85.     } else if (cachedImage) {
  86.         [self callCompletionBlockForOperation:operation completion:completedBlock image:cachedImage data:cachedData error:nil cacheType:cacheType finished:YES queue:context[SDWebImageContextCallbackQueue] url:url];
  87.         [self safelyRemoveOperationFromRunning:operation];
  88.     } else {
  89.         // 缓存中没有图像,且委托禁止下载
  90.         [self callCompletionBlockForOperation:operation completion:completedBlock image:nil data:nil error:nil cacheType:SDImageCacheTypeNone finished:YES queue:context[SDWebImageContextCallbackQueue] url:url];
  91.         [self safelyRemoveOperationFromRunning:operation];
  92.     }
  93. }
复制代码
在上面代码中,假如找到了缓存中的图像,但是有SDWebImageRefreshCached,则需要再下载。这里的SDWebImageRefreshCached是对图像下载和缓存控制的一个设置,当使用这个设置的时候,纵然图像已缓存,也要恭敬HTTP响应的缓存控制,并根据需要从远程位置革新图像。磁盘缓存将由NSURLCache处置惩罚,而不是SDWebImage,导致轻微的性能下降。此选项有助于处置惩罚在相同哀求URL后更改的图像,比方Facebook图形API个人资料图片。假如革新缓存的图像,则完成块会一次调用缓存的图像,然后再调用最终图像。仅在无法使URL静态化并嵌入缓存粉碎参数时使用此标志。
简单表明一下就是:在某些情况下,纵然一个图像已经被缓存到当地,我们仍然需要考虑HTTP响应中的缓存控制信息。假如HTTP响应中的缓存控制信息表示我们应该从远程位置革新图像,我们就需要重新从网络下载这个图像,而不是直接使用已经缓存到当地的图像。在这种情况下,磁盘缓存将由NSURLCache而不是SDWebImage来处置惩罚,这可能会导致性能略有下降。这个选项对于某些特定的情况很有帮助,比方一个图像的URL没有变,但是图像的内容已经变了。一个典型的例子就是Facebook的个人资料图片,它们的URL通常是固定的,但是用户可以随时更改本身的个人资料图片。假如我们选择革新缓存的图像,那么当我们完成图像的下载和处置惩罚后,会首先调用一次完成的回调函数,传递给它缓存的图像,然后再调用一次完成的回调函数,这次传递的是最新下载的图像。
还有其他许多类似的选项,我会将具体有什么选项放在最后。
requestImageWithURL:
  1. // 定义一个请求图像的方法
  2. - (id<SDWebImageOperation>)requestImageWithURL:(NSURL *)url options:(SDWebImageOptions)options context:(SDWebImageContext *)context progress:(SDImageLoaderProgressBlock)progressBlock completed:(SDImageLoaderCompletedBlock)completedBlock {
  3.     // 如果没有提供 URL,则直接返回 nil,因为没有图像可以请求
  4.     if (!url) {
  5.         return nil;
  6.     }
  7.     // 获取所有的图像加载器
  8.     NSArray<id<SDImageLoader>> *loaders = self.loaders;
  9.     // 遍历所有的图像加载器,从后向前遍历,保证后添加的加载器优先被考虑
  10.     for (id<SDImageLoader> loader in loaders.reverseObjectEnumerator) {
  11.         // 检查当前的加载器是否可以处理这个 URL 的请求
  12.         if ([loader canRequestImageForURL:url]) {
  13.             // 如果可以处理,那么就使用这个加载器来请求图像,并返回这个请求操作
  14.             return [loader requestImageWithURL:url options:options context:context progress:progressBlock completed:completedBlock];
  15.         }
  16.     }
  17.     // 如果所有的加载器都不能处理这个 URL 的请求,那么返回 nil
  18.     return nil;
  19. }
复制代码
canRequestImageForURL:
  1. - (BOOL)canRequestImageForURL:(nullable NSURL *)url {
  2.     return [self canRequestImageForURL:url options:0 context:nil];
  3. }
  4. - (BOOL)canRequestImageForURL:(NSURL *)url options:(SDWebImageOptions)options context:(SDWebImageContext *)context {
  5.     //获取所有的图像加载器
  6.     NSArray<id<SDImageLoader>> *loaders = self.loaders;
  7.     //对加载器数组进行反向遍历
  8.     for (id<SDImageLoader> loader in loaders.reverseObjectEnumerator) {
  9.         //如果某个加载器支持canRequestImageForURL:options:context:方法,且该方法返回YES,那么这个方法就返回YES
  10.         if ([loader respondsToSelector:@selector(canRequestImageForURL:options:context:)]) {
  11.             if ([loader canRequestImageForURL:url options:options context:context]) {
  12.                 return YES;
  13.             }
  14.         } else {
  15.             //如果某个加载器不支持canRequestImageForURL:options:context:方法,但支持canRequestImageForURL:方法,且该方法返回YES,那么这个方法也返回YES
  16.             if ([loader canRequestImageForURL:url]) {
  17.                 return YES;
  18.             }
  19.         }
  20.     }
  21.     return NO;
  22. }
复制代码
对下载的图像进行转换处置惩罚:
  1. // 转换处理
  2. //SDWebImageCombinedOperation包含一个或多个相关的操作,比如下载、缓存、转换图像等。
  3. //枚举类型SDWebImageOptions参数可以影响图像的下载和缓存行为。
  4. - (void)callTransformProcessForOperation:(nonnull SDWebImageCombinedOperation *)operation
  5.                                      url:(nonnull NSURL *)url
  6.                                  options:(SDWebImageOptions)options
  7.                                  context:(SDWebImageContext *)context
  8.                            originalImage:(nullable UIImage *)originalImage
  9.                             originalData:(nullable NSData *)originalData
  10.                                cacheType:(SDImageCacheType)cacheType
  11.                                 finished:(BOOL)finished
  12.                                completed:(nullable SDInternalCompletionBlock)completedBlock {
  13.     // 获取图像转换器
  14.     id<SDImageTransformer> transformer = context[SDWebImageContextImageTransformer];
  15.     if ([transformer isEqual:NSNull.null]) {
  16.         transformer = nil;
  17.     }
  18.     // 转换器检查
  19.     BOOL shouldTransformImage = originalImage && transformer;
  20.     shouldTransformImage = shouldTransformImage && (!originalImage.sd_isAnimated || (options & SDWebImageTransformAnimatedImage));
  21.     shouldTransformImage = shouldTransformImage && (!originalImage.sd_isVector || (options & SDWebImageTransformVectorImage));
  22.     // 缩略图检查
  23.     BOOL isThumbnail = originalImage.sd_isThumbnail;
  24.     NSData *cacheData = originalData;
  25.     UIImage *cacheImage = originalImage;
  26.     if (isThumbnail) {
  27.         cacheData = nil; // 缩略图不存储全尺寸数据
  28.         originalImage = nil; // 缩略图没有全尺寸图像
  29.     }
  30.    
  31.     if (shouldTransformImage) {
  32.         // 转换后的缓存键
  33.         NSString *key = [self cacheKeyForURL:url context:context];
  34.         dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  35.             // 情况:转换器在缩略图上,这时需要全像素图像
  36.             //使用当前的图像转换器对缓存图像进行转换,并将转换后的图像赋值给transformedImage。
  37.             UIImage *transformedImage = [transformer transformedImageWithImage:cacheImage forKey:key];
  38.             //转换后的图像是否存在
  39.             if (transformedImage) {
  40.                 //该属性设置为YES,表示这个图像已经被转换过了
  41.                 transformedImage.sd_isTransformed = YES;
  42.                 //将转换后的图像和原始数据存储起来
  43.                 [self callStoreOriginCacheProcessForOperation:operation url:url options:options context:context originalImage:originalImage cacheImage:transformedImage originalData:originalData cacheData:nil cacheType:cacheType finished:finished completed:completedBlock];
  44.             } else {
  45.                 //如果转换后的图像不存在,那么就直接调用callStoreOriginCacheProcessForOperation:方法,将缓存图像和原始数据存储起来
  46.                 [self callStoreOriginCacheProcessForOperation:operation url:url options:options context:context originalImage:originalImage cacheImage:cacheImage originalData:originalData cacheData:cacheData cacheType:cacheType finished:finished completed:completedBlock];
  47.             }
  48.         });
  49.     } else {
  50.         //若图像转换失败或者没有进行转换,直接存储原始的缓存图像和数据
  51.         [self callStoreOriginCacheProcessForOperation:operation url:url options:options context:context originalImage:originalImage cacheImage:cacheImage originalData:originalData cacheData:cacheData cacheType:cacheType finished:finished completed:completedBlock];
  52.     }
  53. }
复制代码
  1. - (UIImage *)transformedImageWithImage:(UIImage *)image forKey:(NSString *)key {
  2.     if (!image) {
  3.         return nil;
  4.     }
  5.     UIImage *transformedImage = image;
  6.     //self.transformers是一个每个元素都是遵循SDImageTransformer协议的数组
  7.     //在这个for in循环中,每一次循环都会取出一个图像转换器,然后用这个转换器对transformedImage进行转换。转换的方法是调用转换器的transformedImageWithImage:forKey:方法,它返回一个新的图像,这个新图像就是转换后的结果。然后,我们把转换后的图像赋值给transformedImage,这样在下一次循环中,就可以用转换后的图像作为输入,进行下一个转换器的转换。
  8.     //这段代码的作用就是用self.transformers数组中的所有图像转换器,依次对输入的图像进行转换。
  9.     for (id<SDImageTransformer> transformer in self.transformers) {
  10.         transformedImage = [transformer transformedImageWithImage:transformedImage forKey:key];
  11.     }
  12.     return transformedImage;
  13. }
复制代码
callStoreOriginCacheProcessForOperation:方法:存储原始缓存过程:
  1. // 存储原始缓存过程
  2. - (void)callStoreOriginCacheProcessForOperation:(nonnull SDWebImageCombinedOperation *)operation
  3.                                             url:(nonnull NSURL *)url
  4.                                         options:(SDWebImageOptions)options
  5.                                         context:(SDWebImageContext *)context
  6.                                   originalImage:(nullable UIImage *)originalImage
  7.                                      cacheImage:(nullable UIImage *)cacheImage
  8.                                    originalData:(nullable NSData *)originalData
  9.                                       cacheData:(nullable NSData *)cacheData
  10.                                       cacheType:(SDImageCacheType)cacheType
  11.                                        finished:(BOOL)finished
  12.                                       completed:(nullable SDInternalCompletionBlock)completedBlock {
  13.     // 获取要使用的图像缓存,首选独立原始缓存
  14.     id<SDImageCache> imageCache = context[SDWebImageContextOriginalImageCache];
  15.     if (!imageCache) {
  16.         // 如果没有可用的独立缓存,使用默认缓存
  17.         imageCache = context[SDWebImageContextImageCache];
  18.         if (!imageCache) {
  19.             imageCache = self.imageCache;
  20.         }
  21.     }
  22.     // 原始存储图像缓存类型
  23.     SDImageCacheType originalStoreCacheType = SDImageCacheTypeDisk;
  24.     if (context[SDWebImageContextOriginalStoreCacheType]) {
  25.         originalStoreCacheType = [context[SDWebImageContextOriginalStoreCacheType] integerValue];
  26.     }
  27.     id<SDWebImageCacheSerializer> cacheSerializer = context[SDWebImageContextCacheSerializer];
  28.    
  29.     // 如果原始缓存类型是disk,因为我们不需要再次存储原始数据
  30.     // 从originalStoreCacheType中剥离disk
  31.     if (cacheType == SDImageCacheTypeDisk) {
  32.         if (originalStoreCacheType == SDImageCacheTypeDisk) originalStoreCacheType = SDImageCacheTypeNone;
  33.         if (originalStoreCacheType == SDImageCacheTypeAll) originalStoreCacheType = SDImageCacheTypeMemory;
  34.     }
  35.    
  36.     // 获取不带转换器的原始缓存键生成
  37.     NSString *key = [self originalCacheKeyForURL:url context:context];
  38.     if (finished && cacheSerializer && (originalStoreCacheType == SDImageCacheTypeDisk || originalStoreCacheType == SDImageCacheTypeAll)) {
  39.         dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  40.             NSData *newOriginalData = [cacheSerializer cacheDataWithImage:originalImage originalData:originalData imageURL:url];
  41.             // 存储原始图像和数据
  42.             [self storeImage:originalImage imageData:newOriginalData forKey:key options:options context:context imageCache:imageCache cacheType:originalStoreCacheType finished:finished completion:^{
  43.                 // 继续存储缓存过程,转换后的数据为nil
  44.                 [self callStoreCacheProcessForOperation:operation url:url options:options context:context image:cacheImage data:cacheData cacheType:cacheType finished:finished completed:completedBlock];
  45.             }];
  46.         });
  47.     } else {
  48.         // 存储原始图像和数据
  49.         [self storeImage:originalImage imageData:originalData forKey:key options:options context:context imageCache:imageCache cacheType:originalStoreCacheType finished:finished completion:^{
  50.             // 继续存储缓存过程,转换后的数据为nil
  51.             [self callStoreCacheProcessForOperation:operation url:url options:options context:context image:cacheImage data:cacheData cacheType:cacheType finished:finished completed:completedBlock];
  52.         }];
  53.     }
  54. }
复制代码
最后是缓存和下载操作的枚举:
  1. /// WebCache options
  2. typedef NS_OPTIONS(NSUInteger, SDWebImageOptions) {
  3.     /**
  4.      * 默认情况下,当URL下载失败时,URL会被列入黑名单,因此库将停止尝试。该标志禁用此黑名单。
  5.      */
  6.     SDWebImageRetryFailed = 1 << 0,
  7.    
  8.     /**
  9.      * 默认情况下,图像下载在用户界面交互期间开始,此标志禁用此功能,导致在UIScrollView减速期间延迟下载。
  10.      */
  11.     SDWebImageLowPriority = 1 << 1,
  12.    
  13.     /**
  14.      * 此标志启用渐进式下载,图像在下载过程中逐渐显示,就像浏览器一样。默认情况下,图像仅在完全下载后显示。
  15.      */
  16.     SDWebImageProgressiveLoad = 1 << 2,
  17.    
  18.     /**
  19.      * 即使图像已缓存,也要尊重HTTP响应的缓存控制,并根据需要从远程位置刷新图像。磁盘缓存将由NSURLCache处理,而不是SDWebImage,导致轻微的性能下降。此选项有助于处理在相同请求URL后更改的图像,例如Facebook图形API个人资料图片。如果刷新缓存的图像,则完成块会一次调用缓存的图像,然后再调用最终图像。
  20.      *
  21.      * 仅在无法使URL静态化并嵌入缓存破坏参数时使用此标志。
  22.      */
  23.     /*--------------------------------------------------------------------------
  24.      对上面说明的解释:在某些情况下,即使一个图像已经被缓存到本地,我们仍然需要考虑HTTP响应中的缓存控制信息。如果HTTP响应中的缓存控制信息表示我们应该从远程位置刷新图像,我们就需要重新从网络下载这个图像,而不是直接使用已经缓存到本地的图像。
  25.      
  26.      在这种情况下,磁盘缓存将由NSURLCache而不是SDWebImage来处理,这可能会导致性能略有下降。
  27.      这个选项对于某些特定的情况很有帮助,例如一个图像的URL没有变,但是图像的内容已经变了。一个典型的例子就是Facebook的个人资料图片,它们的URL通常是固定的,但是用户可以随时更改自己的个人资料图片。
  28.      如果我们选择刷新缓存的图像,那么当我们完成图像的下载和处理后,会首先调用一次完成的回调函数,传递给它缓存的图像,然后再调用一次完成的回调函数,这次传递的是最新下载的图像。*/
  29.     SDWebImageRefreshCached = 1 << 3,
  30.    
  31.     /**
  32.      * 在iOS 4+中,如果应用程序进入后台,继续下载图像。这是通过请求系统来请求额外的后台时间来完成请求。如果后台任务过期,操作将被取消。
  33.      */
  34.     SDWebImageContinueInBackground = 1 << 4,
  35.    
  36.     /**
  37.      * 通过设置NSMutableURLRequest.HTTPShouldHandleCookies = YES;来处理存储在NSHTTPCookieStore中的Cookie。
  38.      */
  39.     SDWebImageHandleCookies = 1 << 5,
  40.    
  41.     /**
  42.      * 允许使用不受信任的SSL证书。用于测试目的。在生产中谨慎使用。
  43.      */
  44.     SDWebImageAllowInvalidSSLCertificates = 1 << 6,
  45.    
  46.     /**
  47.      * 默认情况下,图像按照排队的顺序加载。此标志将它们移动到队列的前面。
  48.      */
  49.     SDWebImageHighPriority = 1 << 7,
  50.    
  51.     /**
  52.      * 默认情况下,当图像加载时,会加载占位图像。此标志将延迟加载占位图像,直到图像加载完成后。
  53.      * @note 这用于将占位图像视为**错误占位符**,而不是**加载占位符**。如果图像加载被取消或出错,占位符将始终被设置。
  54.      * @note 因此,如果您同时需要**错误占位符**和**加载占位符**,请使用`SDWebImageAvoidAutoSetImage`手动设置这两个占位符和最终加载的图像,取决于加载结果。
  55.      * @note 此选项是UI级别选项,在ImageManager或其他组件上没有用。
  56.      */
  57.     SDWebImageDelayPlaceholder = 1 << 8,
  58.    
  59.     /**
  60.      * 我们通常不对动画图像应用转换,因为大多数转换器无法管理动画图像。使用此标志无论如何转换它们。
  61.      */
  62.     SDWebImageTransformAnimatedImage = 1 << 9,
  63.    
  64.     /**
  65.      * 默认情况下,图像在下载后被添加到imageView中。但是在某些情况下,我们希望在设置图像之前先进行手动处理(例如应用滤镜或添加交叉淡入淡出动画)。
  66.      * 如果要在成功时手动设置图像,请使用此标志
  67.      * @note 此选项是UI级别选项,在ImageManager或其他组件上没有用。
  68.      */
  69.     SDWebImageAvoidAutoSetImage = 1 << 10,
  70.    
  71.     /**
  72.      * 默认情况下,图像按照其原始大小解码。此标志将图像缩小到与设备的受限内存兼容的大小。要控制限制的内存字节,请检查`SDImageCoderHelper.defaultScaleDownLimitBytes`(在iOS上默认为60MB)
  73.      * (从5.16.0开始)这实际上将转换为使用上下文选项`SDWebImageContextImageScaleDownLimitBytes`,该选项检查和计算小于限制字节的缩略图像素大小(包括动画图像)
  74.      * (从5.5.0开始)这些标志也会影响渐进式和动画图像
  75.      * @note 如果需要详细的控制,最好使用上下文选项`imageScaleDownBytes`。
  76.      * @warning 这不影响缓存键。这意味着,这会影响全局缓存,即使下次您没有使用此选项进行查询。在全局选项上使用此选项时,请注意。建议始终使用请求级选项进行不同流水线处理。
  77.      */
  78.     SDWebImageScaleDownLargeImages = 1 << 11,
  79.    
  80.     /**
  81.      * 默认情况下,当图像已经缓存在内存中时,我们不会查询图像数据。此掩码可以同时强制查询图像数据。但是,除非您指定`SDWebImageQueryMemoryDataSync`,否则此查询是异步的。
  82.      */
  83.     SDWebImageQueryMemoryData = 1 << 12,
  84.    
  85.     /**
  86.      * 默认情况下,当您只指定`SDWebImageQueryMemoryData`时,我们会异步查询内存图像数据。也可以将此掩码结合使用,以同步查询内存图像数据。
  87.      * @note 不建议同步查询数据,除非您希望确保在同一运行循环中加载图像,以避免在单元重用过程中出现闪烁。
  88.      */
  89.     SDWebImageQueryMemoryDataSync = 1 << 13,
  90.    
  91.     /**
  92.      * 默认情况下,当内存缓存未命中时,我们会异步查询磁盘缓存。此掩码可以强制在内存缓存未命中时(内存缓存未命中时)同步查询磁盘缓存。
  93.      * @note 这3个查询选项可以组合在一起。有关这些掩码组合的完整列表,请参阅wiki页面。
  94.      * @note 不建议同步查询数据,除非您希望确保在同一运行循环中加载图像,以避免在单元重用过程中出现闪烁。
  95.      */
  96.     SDWebImageQueryDiskDataSync = 1 << 14,
  97.    
  98.     /**
  99.      * 默认情况下,当缓存未命中时,会从加载程序中加载图像。此标志可以防止从缓存中加载,仅从缓存中加载。
  100.      */
  101.     SDWebImageFromCacheOnly = 1 << 15,
  102.    
  103.     /**
  104.      * 默认情况下,我们会在从加载程序加载图像之前查询缓存。此标志可以防止从加载程序加载,仅从加载程序加载。
  105.      */
  106.     SDWebImageFromLoaderOnly = 1 << 16,
  107.    
  108.     /**
  109.      * 默认情况下,在图像加载完成后,使用`SDWebImageTransition`执行一些视图过渡,此过渡仅适用于异步(从网络或磁盘缓存查询)时的图像。此掩码可以强制适用于任何情况,例如内存缓存查询或同步磁盘缓存查询。
  110.      * @note 此选项是UI级别选项,在ImageManager或其他组件上没有用。
  111.      */
  112.     SDWebImageForceTransition = 1 << 17,
  113.    
  114.     /**
  115.      * 默认情况下,我们会在缓存查询和从网络下载期间在后台解码图像。这有助于提高性能,因为在屏幕上呈现图像时,首先需要解码。但是,这由Core Animation在主队列上执行。
  116.      * 但是,此过程也可能增加内存使用量。如果您遇到由于内存消耗过多而导致的问题,此标志可以防止解码图像。
  117.      * @note 5.14.0引入了`SDImageCoderDecodeUseLazyDecoding`,使用它可以从编解码器中更好地控制,而不是后处理。它的作用类似于此选项,但也适用于SDAnimatedImage(此选项不适用于SDAnimatedImage)。
  118.      * @deprecated 在v5.17.0中已弃用,如果您不想强制解码,请在上下文选项中传递[.imageForceDecodePolicy] = [SDImageForceDecodePolicy.never]
  119.      */
  120.     SDWebImageAvoidDecodeImage API_DEPRECATED("Use SDWebImageContextImageForceDecodePolicy instead", macos(10.10, 10.10), ios(8.0, 8.0), tvos(9.0, 9.0), watchos(2.0, 2.0)) = 1 << 18,
  121.    
  122.     /**
  123.      * 默认情况下,我们会对动画图像进行解码。此标志可以仅解码第一帧,并生成静态图像。
  124.      */
  125.     SDWebImageDecodeFirstFrameOnly = 1 << 19,
  126.    
  127.     /**
  128.      * 默认情况下,对于`SDAnimatedImage`,我们在渲染期间解码动画图像帧,以减少内存使用量。但是,您可以指定将所有帧预加载到内存中,以减少当动画图像由大量imageView共享时的CPU使用率。
  129.      * 这实际上会在后台队列(仅磁盘缓存和下载)中触发`preloadAllAnimatedImageFrames`。
  130.      */
  131.     SDWebImagePreloadAllFrames = 1 << 20,
  132.    
  133.     /**
  134. * 默认情况下,当你使用 SDWebImageContextAnimatedImageClass 上下文选项(像使用设计为使用 SDAnimatedImage 的 SDAnimatedImageView),即使内存缓存命中,或者图像解码器无法生成一个完全匹配你的自定义类,我们可能仍然使用 UIImage 作为降级方案。
  135. * 使用这个选项,可以确保我们总是返回你提供的类的图像。如果无法生成一个,将会使用一个错误码为 SDWebImageErrorBadImageData 的错误。
  136. * 注意这个选项与 SDWebImageDecodeFirstFrameOnly 不兼容,后者总是生成一个 UIImage/NSImage。
  137. */
  138.     SDWebImageMatchAnimatedImageClass = 1 << 21,
  139.    
  140.     /**
  141. * 默认情况下,当我们从网络加载图像时,图像会被写入缓存(内存和硬盘,由你的 storeCacheType 上下文选项控制)
  142. * 这可能是一个异步操作,最终的 SDInternalCompletionBlock 回调并不能保证硬盘缓存的写入已经完成,可能会导致逻辑错误。(例如,你在完成块中修改硬盘数据,然而,硬盘缓存还没有准备好)
  143. * 如果你需要在完成块中处理硬盘缓存,你应该使用这个选项来确保在回调时硬盘缓存已经被写入。
  144. * 注意,如果你在使用自定义缓存序列化,或者使用转换器时使用这个选项,我们也会等到输出图像数据的写入完成。
  145. */
  146.     SDWebImageWaitStoreCache = 1 << 22,
  147.    
  148.     /**
  149. * 我们通常不对矢量图像进行变换,因为矢量图像支持动态改变到任何大小,栅格化到固定大小将会丢失细节。要修改矢量图像,你可以在运行时处理矢量数据(例如修改 PDF 标签 / SVG 元素)。
  150. * 无论如何,使用这个标志来转换它们。
  151. */
  152.     SDWebImageTransformVectorImage = 1 << 23,
  153.    
  154.     /**
  155.      * 默认情况下,当您使用UIImageView的UI级别类别(例如`sd_setImageWithURL:`)时,它将取消加载图像请求。但是,一些用户可能选择不取消加载图像请求,并始终启动新的流水线。使用此标志禁用自动取消行为。
  156.      * @note 此选项是UI级别选项,在ImageManager或其他组件上没有用。
  157.      */
  158.     SDWebImageAvoidAutoCancelImage = 1 << 24,
  159. };
复制代码
  1. #pragma mark - Context option
  2. SDWebImageContextOption const SDWebImageContextSetImageOperationKey = @"setImageOperationKey";
  3. SDWebImageContextOption const SDWebImageContextCustomManager = @"customManager";
  4. SDWebImageContextOption const SDWebImageContextCallbackQueue = @"callbackQueue";
  5. SDWebImageContextOption const SDWebImageContextImageCache = @"imageCache";
  6. SDWebImageContextOption const SDWebImageContextImageLoader = @"imageLoader";
  7. SDWebImageContextOption const SDWebImageContextImageCoder = @"imageCoder";
  8. SDWebImageContextOption const SDWebImageContextImageTransformer = @"imageTransformer";
  9. SDWebImageContextOption const SDWebImageContextImageForceDecodePolicy = @"imageForceDecodePolicy";
  10. SDWebImageContextOption const SDWebImageContextImageDecodeOptions = @"imageDecodeOptions";
  11. SDWebImageContextOption const SDWebImageContextImageScaleFactor = @"imageScaleFactor";
  12. SDWebImageContextOption const SDWebImageContextImagePreserveAspectRatio = @"imagePreserveAspectRatio";
  13. //设定生成缩略图的像素尺寸
  14. SDWebImageContextOption const SDWebImageContextImageThumbnailPixelSize = @"imageThumbnailPixelSize";
  15. SDWebImageContextOption const SDWebImageContextImageTypeIdentifierHint = @"imageTypeIdentifierHint";
  16. SDWebImageContextOption const SDWebImageContextImageScaleDownLimitBytes = @"imageScaleDownLimitBytes";
  17. SDWebImageContextOption const SDWebImageContextImageEncodeOptions = @"imageEncodeOptions";
  18. SDWebImageContextOption const SDWebImageContextQueryCacheType = @"queryCacheType";
  19. SDWebImageContextOption const SDWebImageContextStoreCacheType = @"storeCacheType";
  20. SDWebImageContextOption const SDWebImageContextOriginalQueryCacheType = @"originalQueryCacheType";
  21. SDWebImageContextOption const SDWebImageContextOriginalStoreCacheType = @"originalStoreCacheType";
  22. SDWebImageContextOption const SDWebImageContextOriginalImageCache = @"originalImageCache";
  23. SDWebImageContextOption const SDWebImageContextAnimatedImageClass = @"animatedImageClass";
  24. SDWebImageContextOption const SDWebImageContextDownloadRequestModifier = @"downloadRequestModifier";
  25. SDWebImageContextOption const SDWebImageContextDownloadResponseModifier = @"downloadResponseModifier";
  26. SDWebImageContextOption const SDWebImageContextDownloadDecryptor = @"downloadDecryptor";
  27. SDWebImageContextOption const SDWebImageContextCacheKeyFilter = @"cacheKeyFilter";
  28. SDWebImageContextOption const SDWebImageContextCacheSerializer = @"cacheSerializer";
复制代码
SDWebImageDownloader

这个部分的焦点代码是downloadImageWithURL:方法,这里具体说一下:
  1. // 定义一个下载图像的方法
  2. - (nullable SDWebImageDownloadToken *)downloadImageWithURL:(nullable NSURL *)url
  3.                                                    options:(SDWebImageDownloaderOptions)options
  4.                                                    context:(nullable SDWebImageContext *)context
  5.                                                   progress:(nullable SDWebImageDownloaderProgressBlock)progressBlock
  6.                                                  completed:(nullable SDWebImageDownloaderCompletedBlock)completedBlock {
  7.     // 如果 URL 是 nil,那么直接调用完成回调,没有图像或数据
  8.     if (url == nil) {
  9.         if (completedBlock) {
  10.             NSError *error = [NSError errorWithDomain:SDWebImageErrorDomain code:SDWebImageErrorInvalidURL userInfo:@{NSLocalizedDescriptionKey : @"Image url is nil"}];
  11.             completedBlock(nil, nil, error, YES);
  12.         }
  13.         return nil;
  14.     }
  15.    
  16.     id downloadOperationCancelToken;
  17.     // 当不同的缩略图大小与相同的url下载时,我们需要确保每个回调都使用期望的大小被调用
  18.     id<SDWebImageCacheKeyFilter> cacheKeyFilter = context[SDWebImageContextCacheKeyFilter];
  19.     NSString *cacheKey;
  20.     if (cacheKeyFilter) {
  21.         cacheKey = [cacheKeyFilter cacheKeyForURL:url];
  22.     } else {
  23.         cacheKey = url.absoluteString;
  24.     }
  25.     SDImageCoderOptions *decodeOptions = SDGetDecodeOptionsFromContext(context, [self.class imageOptionsFromDownloaderOptions:options], cacheKey);
  26.     SD_LOCK(_operationsLock);
  27.     NSOperation<SDWebImageDownloaderOperation> *operation = [self.URLOperations objectForKey:url];
  28.     // 存在一种情况,操作可能被标记为完成或取消,但没有从 `self.URLOperations` 中移除
  29.     BOOL shouldNotReuseOperation;
  30.     if (operation) {
  31.         @synchronized (operation) {
  32.             shouldNotReuseOperation = operation.isFinished || operation.isCancelled;
  33.         }
  34.     } else {
  35.         shouldNotReuseOperation = YES;
  36.     }
  37.     if (shouldNotReuseOperation) {
  38.         operation = [self createDownloaderOperationWithUrl:url options:options context:context];
  39.         if (!operation) {
  40.             SD_UNLOCK(_operationsLock);
  41.             if (completedBlock) {
  42.                 NSError *error = [NSError errorWithDomain:SDWebImageErrorDomain code:SDWebImageErrorInvalidDownloadOperation userInfo:@{NSLocalizedDescriptionKey : @"Downloader operation is nil"}];
  43.                 completedBlock(nil, nil, error, YES);
  44.             }
  45.             return nil;
  46.         }
  47.         @weakify(self);
  48.         operation.completionBlock = ^{
  49.             @strongify(self);
  50.             if (!self) {
  51.                 return;
  52.             }
  53.             SD_LOCK(self->_operationsLock);
  54.             [self.URLOperations removeObjectForKey:url];
  55.             SD_UNLOCK(self->_operationsLock);
  56.         };
  57.         [self.URLOperations setObject:operation forKey:url];
  58.         // 在提交到操作队列之前添加处理程序,避免操作完成之前设置处理程序的竞争条件
  59.         downloadOperationCancelToken = [operation addHandlersForProgress:progressBlock completed:completedBlock decodeOptions:decodeOptions];
  60.         // 根据 Apple 的文档,只有在所有配置完成后才将操作添加到操作队列。
  61.         // `addOperation:` 不会同步执行 `operation.completionBlock`,因此不会导致死锁
  62.         [self.downloadQueue addOperation:operation];
  63.     } else {
  64.         // 当我们重用下载操作来附加更多的回调时,可能存在线程安全问题,因为回调的 getter 可能在另一个队列(解码队列或代理队列)中
  65.         // 所以我们在这里锁定操作,在 `SDWebImageDownloaderOperation` 中,我们使用 `@synchonzied (self)`,以确保这两个类之间的线程安全
  66.         @synchronized (operation) {
  67.             downloadOperationCancelToken = [operation addHandlersForProgress:progressBlock completed:completedBlock decodeOptions:decodeOptions];
  68.         }
  69.     }
  70.     SD_UNLOCK(_operationsLock);
  71.    
  72.     // 创建一个下载令牌
  73.     SDWebImageDownloadToken *token = [[SDWebImageDownloadToken alloc] initWithDownloadOperation:operation];
  74.     token.url = url;
  75.     token.request = operation.request;
  76.     token.downloadOperationCancelToken = downloadOperationCancelToken;
  77.    
  78.     // 返回下载令牌
  79.     return token;
  80. }
  81. // 定义一个帮助方法
  82. + (SDWebImageOptions)imageOptionsFromDownloaderOptions:(SDWebImageDownloaderOptions)downloadOptions {
  83.     // 初始化图像选项为 0
  84.     SDWebImageOptions options = 0;
  85.     // 检查下载选项是否包含 `SDWebImageDownloaderScaleDownLargeImages`,如果是,那么在图像选项中添加 `SDWebImageScaleDownLargeImages`
  86.     if (downloadOptions & SDWebImageDownloaderScaleDownLargeImages) options |= SDWebImageScaleDownLargeImages;
  87.     // 检查下载选项是否包含 `SDWebImageDownloaderDecodeFirstFrameOnly`,如果是,那么在图像选项中添加 `SDWebImageDecodeFirstFrameOnly`
  88.     if (downloadOptions & SDWebImageDownloaderDecodeFirstFrameOnly) options |= SDWebImageDecodeFirstFrameOnly;
  89.     // 检查下载选项是否包含 `SDWebImageDownloaderPreloadAllFrames`,如果是,那么在图像选项中添加 `SDWebImagePreloadAllFrames`
  90.     if (downloadOptions & SDWebImageDownloaderPreloadAllFrames) options |= SDWebImagePreloadAllFrames;
  91.     // 检查下载选项是否包含 `SDWebImageDownloaderAvoidDecodeImage`,如果是,那么在图像选项中添加 `SDWebImageAvoidDecodeImage`
  92.     if (downloadOptions & SDWebImageDownloaderAvoidDecodeImage) options |= SDWebImageAvoidDecodeImage;
  93.     // 检查下载选项是否包含 `SDWebImageDownloaderMatchAnimatedImageClass`,如果是,那么在图像选项中添加 `SDWebImageMatchAnimatedImageClass`
  94.     if (downloadOptions & SDWebImageDownloaderMatchAnimatedImageClass) options |= SDWebImageMatchAnimatedImageClass;
  95.    
  96.     // 返回转化后的图像选项
  97.     return options;
  98. }
复制代码
在这个方法中还调用了一个createDownloaderOperationWithUrl方法,我们发现这个方法才是真正的下载:
  1. - (nullable NSOperation<SDWebImageDownloaderOperation> *)createDownloaderOperationWithUrl:(nonnull NSURL *)url
  2.                                                                                   options:(SDWebImageDownloaderOptions)options
  3.                                                                                   context:(nullable SDWebImageContext *)context {
  4.     //创建一个等待时间
  5.     NSTimeInterval timeoutInterval = self.config.downloadTimeout;
  6.     if (timeoutInterval == 0.0) {
  7.         timeoutInterval = 15.0;
  8.     }
  9.    
  10.     // In order to prevent from potential duplicate caching (NSURLCache + SDImageCache) we disable the cache for image requests if told otherwise
  11.     // 为了防止潜在的重复缓存(NSURLCache + SDImageCache),我们禁用图像请求的缓存
  12.     NSURLRequestCachePolicy cachePolicy = options & SDWebImageDownloaderUseNSURLCache ? NSURLRequestUseProtocolCachePolicy : NSURLRequestReloadIgnoringLocalCacheData;
  13.     //创建下载请求
  14.     NSMutableURLRequest *mutableRequest = [[NSMutableURLRequest alloc] initWithURL:url cachePolicy:cachePolicy timeoutInterval:timeoutInterval];
  15.     mutableRequest.HTTPShouldHandleCookies = SD_OPTIONS_CONTAINS(options, SDWebImageDownloaderHandleCookies);
  16.     mutableRequest.HTTPShouldUsePipelining = YES;
  17.     //线程安全的创建一个请求头
  18.     SD_LOCK(self.HTTPHeadersLock);
  19.     mutableRequest.allHTTPHeaderFields = self.HTTPHeaders;
  20.     SD_UNLOCK(self.HTTPHeadersLock);
  21.    
  22.     // Context Option
  23.     // Context选项
  24.     SDWebImageMutableContext *mutableContext;
  25.     if (context) {
  26.         mutableContext = [context mutableCopy];
  27.     } else {
  28.         mutableContext = [NSMutableDictionary dictionary];
  29.     }
  30.    
  31.     // Request Modifier
  32.     //请求修饰符,设置请求修饰符,在图像加载之前修改原始的下载请求。返回nil将取消下载请求。
  33.     id<SDWebImageDownloaderRequestModifier> requestModifier;
  34.     if ([context valueForKey:SDWebImageContextDownloadRequestModifier]) {
  35.         requestModifier = [context valueForKey:SDWebImageContextDownloadRequestModifier];
  36.     } else {
  37.         //self.requestModifier默认为nil,表示不修改原始下载请求。
  38.         requestModifier = self.requestModifier;
  39.     }
  40.    
  41.     NSURLRequest *request;
  42.     //如果请求修饰符存在
  43.     if (requestModifier) {
  44.         NSURLRequest *modifiedRequest = [requestModifier modifiedRequestWithRequest:[mutableRequest copy]];
  45.         // If modified request is nil, early return
  46.         // 如果修改请求为nil,则提前返回
  47.         if (!modifiedRequest) {
  48.             return nil;
  49.         } else {
  50.             request = [modifiedRequest copy];
  51.         }
  52.     } else {
  53.         request = [mutableRequest copy];
  54.     }
  55.     // Response Modifier
  56.     // 响应修饰符,设置响应修饰符来修改图像加载期间的原始下载响应。返回nil将标志当前下载已取消。
  57.     id<SDWebImageDownloaderResponseModifier> responseModifier;
  58.     if ([context valueForKey:SDWebImageContextDownloadResponseModifier]) {
  59.         responseModifier = [context valueForKey:SDWebImageContextDownloadResponseModifier];
  60.     } else {
  61.         //self.responseModifier默认为nil,表示不修改原始下载响应。
  62.         responseModifier = self.responseModifier;
  63.     }
  64.     //如果响应修饰存在
  65.     if (responseModifier) {
  66.         mutableContext[SDWebImageContextDownloadResponseModifier] = responseModifier;
  67.     }
  68.     // Decryptor
  69.     // 图像解码,设置解密器对原始下载数据进行解密后再进行图像解码。返回nil将标志下载失败。
  70.     id<SDWebImageDownloaderDecryptor> decryptor;
  71.     if ([context valueForKey:SDWebImageContextDownloadDecryptor]) {
  72.         decryptor = [context valueForKey:SDWebImageContextDownloadDecryptor];
  73.     } else {
  74.         //self.decryptor默认为nil,表示不修改原始下载数据。
  75.         decryptor = self.decryptor;
  76.     }
  77.     //如果图像解码操作存在
  78.     if (decryptor) {
  79.         mutableContext[SDWebImageContextDownloadDecryptor] = decryptor;
  80.     }
  81.    
  82.     context = [mutableContext copy];
  83.    
  84.     // Operation Class
  85.     // 操作类
  86.     Class operationClass = self.config.operationClass;
  87.     //操作类存在 && 操作类是NSOperation的实例类 && 操作类遵守SDWebImageDownloaderOperation协议
  88.     if (operationClass && [operationClass isSubclassOfClass:[NSOperation class]] && [operationClass conformsToProtocol:@protocol(SDWebImageDownloaderOperation)]) {
  89.         // Custom operation class
  90.         // 自定义操作类(可以自行修改和定义)
  91.     } else {
  92.         //默认操作类
  93.         operationClass = [SDWebImageDownloaderOperation class];
  94.     }
  95.     //创建下载操作:SDWebImageDownloaderOperation用于请求网络资源的操作,它是一个 NSOperation 的子类
  96.     NSOperation<SDWebImageDownloaderOperation> *operation = [[operationClass alloc] initWithRequest:request inSession:self.session options:options context:context];
  97.    
  98.     //如果operation实现了setCredential:方法
  99.     if ([operation respondsToSelector:@selector(setCredential:)]) {
  100.         //url证书
  101.         if (self.config.urlCredential) {
  102.             operation.credential = self.config.urlCredential;
  103.         } else if (self.config.username && self.config.password) {
  104.             operation.credential = [NSURLCredential credentialWithUser:self.config.username password:self.config.password persistence:NSURLCredentialPersistenceForSession];
  105.         }
  106.     }
  107.         
  108.     //如果operation实现了setMinimumProgressInterval:方法
  109.     if ([operation respondsToSelector:@selector(setMinimumProgressInterval:)]) {
  110.         operation.minimumProgressInterval = MIN(MAX(self.config.minimumProgressInterval, 0), 1);
  111.     }
  112.    
  113.     //设置该url的操作优先级
  114.     if (options & SDWebImageDownloaderHighPriority) {
  115.         operation.queuePriority = NSOperationQueuePriorityHigh;
  116.     } else if (options & SDWebImageDownloaderLowPriority) {
  117.         operation.queuePriority = NSOperationQueuePriorityLow;
  118.     }
  119.    
  120.     if (self.config.executionOrder == SDWebImageDownloaderLIFOExecutionOrder) {
  121.         // Emulate LIFO execution order by systematically, each previous adding operation can dependency the new operation
  122.         // This can gurantee the new operation to be execulated firstly, even if when some operations finished, meanwhile you appending new operations
  123.         // Just make last added operation dependents new operation can not solve this problem. See test case #test15DownloaderLIFOExecutionOrder
  124.         // 通过系统地模拟后进先出的执行顺序,前一个添加的操作可以依赖于新操作
  125.         // 这样可以保证先执行新操作,即使有些操作完成了,同时又追加了新操作
  126.         // 仅仅使上次添加的操作依赖于新的操作并不能解决这个问题。参见测试用例#test15DownloaderLIFOExecutionOrder
  127.         for (NSOperation *pendingOperation in self.downloadQueue.operations) {
  128.             [pendingOperation addDependency:operation];
  129.         }
  130.     }
  131.    
  132.     return operation;
  133. }
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

吴旭华

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表