iOS之多文件断点下载

先上楼主项目已经实现效果图

330F1C3B1EE1D0F8165DBA71B6CA3CD7.jpg

此demo实现效果图

070A2466358DDC5F111E14286CE93DBF.png

文件断点下载 实现原理

主要是运用AFNetworking实现,对AFNetworking 进行二次封装。项目要求,断网或者下载失败,下次下载时,都需要从已经下载完毕的标志位起开始下载。

一、管理类DownloadFile

typedef void(^ProgressBlock)(NSInteger receivedSize, NSInteger expectedSize);
typedef void(^SuccessBlock)(NSString *_Nonnull filePath);
typedef void(^FailBlock)(void);

@interface DownloadFile : NSObject

//单例方法
+ (nonnull DownloadFile *)sharedDownloader;


//下载文件
- (void)downloadFileWithURL:(nonnull NSString *)url
                   progress:(nullable ProgressBlock) progressBlock
                    success:(nullable SuccessBlock)successBlock
                       fail:(nullable FailBlock)failBlock;

//暂停下载
- (void)pauseDownloadFile:(nonnull NSString *)url;

//继续下载
//- (void)resume:(nonnull NSString *)url;

@end

二、DownloadFile.m的实现

#import "DownloadFile.h"
#import "AFNetworking.h"
#import <CommonCrypto/CommonDigest.h>

@interface DownloadFile()

@property(nonatomic,strong)NSMutableDictionary *URLTasks;

@end

@implementation DownloadFile

+ (nonnull DownloadFile *)sharedDownloader {
    static dispatch_once_t once;
    static id instance;
    dispatch_once(&once, ^{
        instance = [self new];
    });
    return instance;
}

- (id)init {
    
    if(self = [super init]) {
        _URLTasks = [[NSMutableDictionary alloc] init];
    }
    
    return self;
}

- (void)downloadFileWithURL:(nonnull NSString *)url
                   progress:(nullable ProgressBlock) progressBlock
                    success:(nullable SuccessBlock)successBlock
                       fail:(nullable FailBlock)failBlock {
    
    //1.判断cache目录是否有缓存的文件,有的话需要续传
    //将url字符串转成md5字符串,作为文件名存储本地
    NSString *filename = [self cachedFileNameForKey:url];
    //取得存储路径:cache
    NSString *cachesPath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
    NSString *filePath = [cachesPath stringByAppendingPathComponent:filename];
    
    //2.下载操作
    NSURL *URL = [NSURL URLWithString:url];
    //默认配置
    NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
    AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];
    NSURLRequest *request = [NSURLRequest requestWithURL:URL];
    
    NSURLSessionDownloadTask *downloadTask = nil;
    
    //3.判断是否有缓存文件,如果存在,则续传,不存在则重新下载
    if(![NSFileManager.defaultManager fileExistsAtPath:filePath]) {
        
        //创建重新下载任务对象
        downloadTask = [manager downloadTaskWithRequest:request progress:^(NSProgress * _Nonnull downloadProgress) {
            
            // @property int64_t totalUnitCount;     需要下载文件的总大小
            // @property int64_t completedUnitCount; 当前已经下载的大小
            dispatch_async(dispatch_get_main_queue(), ^{
                //回调进度block
                if(progressBlock) {
                    progressBlock(downloadProgress.completedUnitCount,downloadProgress.totalUnitCount);
                }
            });
            
        } destination:^NSURL * _Nonnull(NSURL * _Nonnull targetPath, NSURLResponse * _Nonnull response) {
            //存储到documents目录
            NSString *cachesPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
            NSString *path = [cachesPath stringByAppendingPathComponent:response.suggestedFilename];
            return [NSURL fileURLWithPath:path];
        } completionHandler:^(NSURLResponse * _Nonnull response, NSURL * _Nullable filePath, NSError * _Nullable error) {
            
            if(error) {  //下载失败
                NSData *resumeData = error.userInfo[NSURLSessionDownloadTaskResumeData];
                [self resumeDataToDisk:resumeData url:url];
                
                if(failBlock) {
                    failBlock();
                }
            } else {
                // filePath就是你下载文件的位置
                NSString *file = [filePath path];
                if(successBlock) {
                    successBlock(file);
                }
            }
            
            [self.URLTasks removeObjectForKey:url];
        }];
        
    } else {
        
        //存在,续传上次下载的文件
        NSData *resumeData = [NSData dataWithContentsOfFile:filePath];
        [[NSFileManager defaultManager] removeItemAtPath:filePath error:nil];
        
        if(!resumeData){
            return;
        };
        
        downloadTask = [manager downloadTaskWithResumeData:resumeData progress:^(NSProgress * _Nonnull downloadProgress) {
            dispatch_async(dispatch_get_main_queue(), ^{
                //回调进度block
                if(progressBlock) {
                    progressBlock(downloadProgress.completedUnitCount,downloadProgress.totalUnitCount);
                }
            });
        } destination:^NSURL * _Nonnull(NSURL * _Nonnull targetPath, NSURLResponse * _Nonnull response) {
            //存储到documents目录
            NSString *cachesPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
            NSString *path = [cachesPath stringByAppendingPathComponent:response.suggestedFilename];
            return [NSURL fileURLWithPath:path];
        } completionHandler:^(NSURLResponse * _Nonnull response, NSURL * _Nullable filePath, NSError * _Nullable error) {
            if(error) {  //下载失败
                NSData *resumeData = error.userInfo[NSURLSessionDownloadTaskResumeData];
                [self resumeDataToDisk:resumeData url:url];
                
                if(failBlock) {
                    failBlock();
                }
            } else {
                // filePath就是你下载文件的位置
                NSString *file = [filePath path];
                if(successBlock) {
                    successBlock(file);
                }
            }
            
            [self.URLTasks removeObjectForKey:url];
        }];
    }
    
    [downloadTask resume];
    
    self.URLTasks[url] = downloadTask;
    
}
//暂停下载
- (void)pauseDownloadFile:(nonnull NSString *)url {
    NSURLSessionDownloadTask *task = self.URLTasks[url];
    [task cancelByProducingResumeData:^(NSData * _Nullable resumeData) {
        [self resumeDataToDisk:resumeData url:url];
    }];
    
}
//获得已经下载文件数据
- (void)resumeDataToDisk:(NSData *_Nonnull)resumeData url:(NSString *_Nonnull)url {
    
    NSString *filename = [self cachedFileNameForKey:url];
    //取得存储路径:documents
    NSString *cachesPath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
    NSString *filePath = [cachesPath stringByAppendingPathComponent:filename];
    
    [resumeData writeToFile:filePath atomically:YES];
}


//将字符串转成md5
- (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;
}


@end

三、界面的实现

#import "ViewController.h"
#import "DownloadFile.h"
#import "FileCell.h"

@interface ViewController ()<UITableViewDelegate,UITableViewDataSource>

@property (weak, nonatomic) IBOutlet UITableView *tableView;
@property (nonatomic,strong) NSArray *data;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.data = @[
                  @"https://download.alicdn.com/dingtalk-desktop/mac_dmg/Release/DingTalk_v3.3.3.dmg",
                  @"http://dldir1.qq.com/qqfile/QQforMac/QQ_V5.4.1.dmg",
                  @"http://xiazai.mycleanmymac.com/trial/CleanMyMac3.5_probation.dmg"
                ];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return self.data.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    
    FileCell *cell = [tableView dequeueReusableCellWithIdentifier:@"downloadCell" forIndexPath:indexPath];
    
    cell.url = self.data[indexPath.row];
    
    return cell;
}

@end

四、cell 的实现

#import "FileCell.h"
#import "DownloadFile.h"

@implementation FileCell

- (IBAction)startAction:(id)sender {
    [[DownloadFile sharedDownloader] downloadFileWithURL:self.url progress:^(NSInteger receivedSize, NSInteger expectedSize) {
       
        progressView.progress = 1.0 * receivedSize/expectedSize;
        progressLabel.text = [NSString stringWithFormat:@"%.1f%%",progressView.progress*100];
        
    } success:^(NSString * _Nonnull filePath) {
        NSLog(@"下载完成:%@",filePath);
    } fail:^{
        
    }];
}

- (IBAction)pauseAction:(id)sender {
    [[DownloadFile sharedDownloader] pauseDownloadFile:self.url];
}

@end

五、题外

项目中实现 核心是差不多的,有什么问题可下方留言,不足之处,还请多多指教。哈哈哈。
另外关于多文件断点上传,也有实现,相对比较简单些。就不写了~ 楼主项目中要求是 每次上传之前都会请求下服务器该文件已经上传了多少size。然后减去该文件已经上传size 上传剩余的~
另外,没有实现下载的最大并发数,写成并行队列。。。。不知道有木有已经实现的宝宝~ 欢迎留言~~ ~

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

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,398评论 25 707
  • Swift版本点击这里欢迎加入QQ群交流: 594119878最新更新日期:18-09-17 About A cu...
    ylgwhyh阅读 25,266评论 7 249
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,016评论 4 62
  • 第二天 列车一路往西行驶,公路两旁的景色由葱葱草原、逐渐成为稀稀疏疏的几颗零星的草到一望无际的漫天风沙。阳光下沙漠...
    渊初夏阅读 212评论 0 3
  • 要说中国什么最多,答案无疑是:人多。如果再问:哪里最能体现人多?众多的答案中,我选择地铁。为什么是地铁?因为我上下...
    健壮的小牛阅读 199评论 0 0