SDWebImage源码分析 3

上章节中遗漏了storeImage这个方法,这章节补完,先来SDWebImageCache.h看它的注释:

/**
 * 根据给的key将图片存储到内存以及磁盘(可选)缓存中
 *
 * @param image       需要存储的图片
 * @param recalculate 图片数据能否在UIImage中被构建出来
 * @param imageData   从服务器返回的图片数据
 * @param key         唯一的图片缓存key, 常使用图片的绝对URL
 * @param toDisk      设为YES时将图片存储进磁盘中
 */
- (void)storeImage:(UIImage *)image recalculateFromImage:(BOOL)recalculate imageData:(NSData *)imageData forKey:(NSString *)key toDisk:(BOOL)toDisk;

通过注释得知该方法是将图片存储进缓存中用的,看下里面的代码:

if (!image || !key) {
    return;
}
// 如果开启内存缓存
if (self.shouldCacheImagesInMemory) { //< 默认是开启的
    NSUInteger cost = SDCacheCostForImage(image); //< 计算cost
    [self.memCache setObject:image forKey:key cost:cost]; //< 利用内建的NSCache进行存储
}
//如果开启写入磁盘
if (toDisk) {
    dispatch_async(self.ioQueue, ^{ //< 存入磁盘也是在异步中进行的
        NSData *data = imageData;

        if (image && (recalculate || !data)) {
#if TARGET_OS_IPHONE
            // 这里主要的功能就是探测图片是PNG还是JPEG
            // We need to determine if the image is a PNG or a JPEG
            // PNGs are easier to detect because they have a unique signature (http://www.w3.org/TR/PNG-Structure.html)
            // The first eight bytes of a PNG file always contain the following (decimal) values:
            // 137 80 78 71 13 10 26 10

            // If the imageData is nil (i.e. if trying to save a UIImage directly or the image was transformed on download)
            // and the image has an alpha channel, we will consider it PNG to avoid losing the transparency
            int alphaInfo = CGImageGetAlphaInfo(image.CGImage);
            BOOL hasAlpha = !(alphaInfo == kCGImageAlphaNone ||
                              alphaInfo == kCGImageAlphaNoneSkipFirst ||
                              alphaInfo == kCGImageAlphaNoneSkipLast);
            BOOL imageIsPng = hasAlpha;

            // 如果有图片数据,查看前8个字节,判断是不是png
            if ([imageData length] >= [kPNGSignatureData length]) {
                imageIsPng = ImageDataHasPNGPreffix(imageData);
            }

            if (imageIsPng) {
                data = UIImagePNGRepresentation(image);
            }
            else {
                data = UIImageJPEGRepresentation(image, (CGFloat)1.0);
            }
#else
            data = [NSBitmapImageRep representationOfImageRepsInArray:image.representations usingType: NSJPEGFileType properties:nil];
#endif
        }

        [self storeImageDataToDisk:data forKey:key];
    });
}

通过代码可以知道,图片默认是通过url作为key被存储进NSCache中的。

if (!imageData) {
    return;
}
//如果没有对应目录就生成一个
if (![_fileManager fileExistsAtPath:_diskCachePath]) {
    [_fileManager createDirectoryAtPath:_diskCachePath withIntermediateDirectories:YES attributes:nil error:NULL];
}

// 为图片key获取缓存路径
NSString *cachePathForKey = [self defaultCachePathForKey:key];
// 转换成NSURL
NSURL *fileURL = [NSURL fileURLWithPath:cachePathForKey];

[_fileManager createFileAtPath:cachePathForKey contents:imageData attributes:nil];

// 关闭iCloud备份
if (self.shouldDisableiCloud) {
    [fileURL setResourceValue:[NSNumber numberWithBool:YES] forKey:NSURLIsExcludedFromBackupKey error:nil];
}

如果需要将图片缓存进磁盘中,就开一个子线程,在里面探测图片是属于哪种类型的,再通过storeImageDataToDisk方法存入磁盘,默认情况下不允许iCloud备份,又学到一招。

defaultCachePathForKey这个方法是用来生成缓存路径的,跟踪进去发现调用的是下面这个方法:

- (NSString *)cachePathForKey:(NSString *)key inPath:(NSString *)path {
    NSString *filename = [self cachedFileNameForKey:key];
    return [path stringByAppendingPathComponent:filename];
}

这段代码将key丢入cachedFileNameForKey方法中生成文件名,然后再将其追加到path后返回缓存路径的。

我们再跟到cachedFileNameForKey中一探究竟:

- (NSString *)cachedFileNameForKey:(NSString *)key {
    const char *str = [key UTF8String];
    if (str == NULL) {
        str = "";
    }
    unsigned char r[CC_MD5_DIGEST_LENGTH];
    CC_MD5(str, (CC_LONG)strlen(str), r);
    NSString *filename = [NSString stringWithFormat:@"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%@",
                          r[0], r[1], r[2], r[3], r[4], r[5], r[6], r[7], r[8], r[9], r[10],
                          r[11], r[12], r[13], r[14], r[15], [[key pathExtension] isEqualToString:@""] ? @"" : [NSString stringWithFormat:@".%@", [key pathExtension]]];

    return filename;
}

该方法将url转为了MD5命名,目的应该是防止缓存进磁盘的文件命名冲突

回到SDWebImageDownloader.m中,上期还没讲的downloadImageWithURL 方法:

- (id <SDWebImageOperation>)downloadImageWithURL:(NSURL *)url options:(SDWebImageDownloaderOptions)options progress:(SDWebImageDownloaderProgressBlock)progressBlock completed:(SDWebImageDownloaderCompletedBlock)completedBlock {
  __block SDWebImageDownloaderOperation *operation;
  __weak __typeof(self)wself = self;
  [self addProgressCallback:progressBlock completedBlock:completedBlock forURL:url     createCallback:^{
    ...

这里第一行就调用了addProgressCallback这个方法,跟踪进去:

- (void)addProgressCallback:(SDWebImageDownloaderProgressBlock)progressBlock completedBlock:(SDWebImageDownloaderCompletedBlock)completedBlock forURL:(NSURL *)url createCallback:(SDWebImageNoParamsBlock)createCallback {
    //URL用作回调字典的键所以不允许为nil,如果为nil立即调用completed block传入空的image,data,error
    if (url == nil) {
        if (completedBlock != nil) {
            completedBlock(nil, nil, nil, NO);
        }
        return;
    }
    
    dispatch_barrier_sync(self.barrierQueue, ^{
        BOOL first = NO;
        if (!self.URLCallbacks[url]) {
            self.URLCallbacks[url] = [NSMutableArray new]; //< URLCallbacks中没有对应的url就创建一个NSMutableArray
            first = YES;
        }

        //同一个URL的情况下只允许一个下载请求
        NSMutableArray *callbacksForURL = self.URLCallbacks[url];
        NSMutableDictionary *callbacks = [NSMutableDictionary new];
        if (progressBlock) callbacks[kProgressCallbackKey] = [progressBlock copy];
        if (completedBlock) callbacks[kCompletedCallbackKey] = [completedBlock copy];
        
        [callbacksForURL addObject:callbacks];
        
        self.URLCallbacks[url] = callbacksForURL;
        
        if (first) {
            createCallback();
        }
    });
}

这段代码中用到了dispatch_barrier_sync,当写入线程与其他写入线程或读取线程并行时候会产生问题,比如:

//摘自《Objective-C高级编程 iOS与OS X多线程和内存管理》
dispatch_queue_t queue = dispatch_create("barrier",DISPATCH_QUEUE_CONCURRENT);
dispatch_async(queue,blk0_for_reading);
dispatch_async(queue,blk1_for_reading);
dispatch_async(queue,blk2_for_reading);
dispatch_async(queue,blk_for_writing);//可能造成读取的数据与预期不符,如果追加多个写入则可能发生更多问题,比如数据竞争。
dispatch_async(queue,blk3_for_reading);
dispatch_async(queue,blk4_for_reading);
dispatch_async(queue,blk5_for_reading);

将写入任务换成dispatch_barrier_async可以解决这个问题,它会等待这个blk02并发执行完毕后,开始执行。执行完毕之后才轮到blk35并发执行

另外,关注一下self.URLCallbacks[url]里存放的数据格。以url作为key,将completed和progress存放进去,如下所示:

{
 "http://www.xxx.com/xxx.jpg" = (
     {
         completed = "<__NSMallocBlock__: 0x7faa6b426620>";
         progress = "<__NSGlobalBlock__: 0x10a508b90>";
     }
 );
}

接着看addProgressCallback方法回调部分:

NSTimeInterval timeoutInterval = wself.downloadTimeout;
if (timeoutInterval == 0.0) {
    timeoutInterval = 15.0; //< 下载超时的时间,默认是15秒。
}

在没设置downloadTimeout的情况下,默认超时时间为15秒

//开启SDWebImageDownloaderUseNSURLCache选项则使用NSURL的Cache,否则忽略
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:url cachePolicy:(options & SDWebImageDownloaderUseNSURLCache ? NSURLRequestUseProtocolCachePolicy : NSURLRequestReloadIgnoringLocalCacheData) timeoutInterval:timeoutInterval];
request.HTTPShouldHandleCookies = (options & SDWebImageDownloaderHandleCookies); //< 简单地说就是请求时将cookie一起带上
request.HTTPShouldUsePipelining = YES; //< 不等待上次请求响应,直接发送数据
if (wself.headersFilter) { //< 自定义http 头部
    request.allHTTPHeaderFields = wself.headersFilter(url, [wself.HTTPHeaders copy]);
}
else { //< 默认http 头部
    request.allHTTPHeaderFields = wself.HTTPHeaders;
}

这里用于构建NSMutableURLRequest以及设置http头部信息

//wself.operationClass是Class类型,由init的时候或set时指定
//_operationClass = [SDWebImageDownloaderOperation class];
operation = [[wself.operationClass alloc] initWithRequest:request
  options:options
  progress:^(NSInteger receivedSize, NSInteger expectedSize) {
    ...
  }
  completed:^(UIImage *image, NSData *data, NSError *error, BOOL finished) {
    ...
  }
  cancelled:^{
    ...
  }];

这里将上面构造好的request放入SDWebImageDownloaderOperation中被初始化。三段回调里的代码比较长,这里拆开来说

progress:

progress:^(NSInteger receivedSize, NSInteger expectedSize) {
 SDWebImageDownloader *sself = wself;
 if (!sself) return;
 __block NSArray *callbacksForURL;
 //此处并未使用dispatch_barrier_sync,个人感觉是因为此处并未对sself.URLCallbacks进行修改,所以不会对后面的任务产生数据竞争(竞态条件),使用dispatch_sync更恰当
 dispatch_sync(sself.barrierQueue, ^{
     callbacksForURL = [sself.URLCallbacks[url] copy];
 });
 for (NSDictionary *callbacks in callbacksForURL) {
     dispatch_async(dispatch_get_main_queue(), ^{ //< 回主线程
         SDWebImageDownloaderProgressBlock callback = callbacks[kProgressCallbackKey]; //< process
         // receivedSize:下载了多少,expectedSize:预期下载量多大
         // 只要有新数据块到达,这个block就会不停地被调用
         if (callback) callback(receivedSize, expectedSize);
     });
 }
}

completed:

completed:^(UIImage *image, NSData *data, NSError *error, BOOL finished) {
  SDWebImageDownloader *sself = wself;
  if (!sself) return;
  __block NSArray *callbacksForURL;
  dispatch_barrier_sync(sself.barrierQueue, ^{
      callbacksForURL = [sself.URLCallbacks[url] copy];
      if (finished) {
          [sself.URLCallbacks removeObjectForKey:url]; //< 任务完成后删除对应url的回调
      }
  });
  for (NSDictionary *callbacks in callbacksForURL) {
      SDWebImageDownloaderCompletedBlock callback = callbacks[kCompletedCallbackKey]; //< completed
      if (callback) callback(image, data, error, finished);
  }
}

cancelled:

cancelled:^{
    SDWebImageDownloader *sself = wself;
    if (!sself) return;
    dispatch_barrier_async(sself.barrierQueue, ^{
        [sself.URLCallbacks removeObjectForKey:url];//< 任务取消后删除对应url的回调
    });
}
//图片在下载后以及在缓存中进行解压可以提高性能但会消耗大量内存,默认YES
operation.shouldDecompressImages = wself.shouldDecompressImages;
//鉴权相关
if (wself.urlCredential) {
    operation.credential = wself.urlCredential;
} else if (wself.username && wself.password) {
    operation.credential = [NSURLCredential credentialWithUser:wself.username password:wself.password persistence:NSURLCredentialPersistenceForSession];
}
//优先级相关
if (options & SDWebImageDownloaderHighPriority) {
    operation.queuePriority = NSOperationQueuePriorityHigh;
} else if (options & SDWebImageDownloaderLowPriority) {
    operation.queuePriority = NSOperationQueuePriorityLow;
}
//将operation加入到downloadQueue
[wself.downloadQueue addOperation:operation];

if (wself.executionOrder == SDWebImageDownloaderLIFOExecutionOrder) { //< 如果执行顺序为LIFO后进先出
    // 将新添加的operations作为最后一个operation的依赖,执行顺序就是新添加的operation先执行,后进先出的过程,类似栈结构
    // Emulate LIFO execution order by systematically adding new operations as last operation's dependency
    [wself.lastAddedOperation addDependency:operation];
    wself.lastAddedOperation = operation;
}

至此本章将SDWebImageDownloader的主要流程给介绍完了。对于网络请求鉴权什么的我不打算深究,留着以后看完AFNetWorking再说。

P.S:顺便吐槽下简书的代码显示太窄,影响阅读效果。

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

推荐阅读更多精彩内容