采坑日记1-NSURLSessionDownloadTask下载断点,任务删除,手动杀进程,系统杀进程后继续下载
网上关于NSURLSessionDownloadTask下载的文章大多止步于仅仅完成断点,怎么删除下载任务,app被删除后的断点处理都没有写到!
关于手动暂停任务
//注意:[_nsDownloadTask cancelByProducingResumeData:^(NSData * _Nullable resumeData) {}]方法
//ios8-ios11 resumeData是可以直接encoding转换为NSString的
//ios12之后resumeData是一个NSObject对象的序列化文件NSData
[_nsDownloadTask cancelByProducingResumeData:^(NSData * _Nullable resumeData) {//resumeData包含下载地址下载进度等信息
//此处把resumeData作为二进制文件保存起来即可, 如果有多个下载任务可以通过下面的解析获取下载地址 根据下载地址分别保存resumeData
[self.saveResumeData resumeData];
//解析resumeData 获取有用信息
if([[UIDevice currentDevice].systemVersion floatValue]<=11){
//ios11和之前版本的解析
NSString *dataString = [[NSString alloc] initWithData:resumeData encoding:NSUTF8StringEncoding];//dataString为一个包含下载地址和下载进度的xml字符串
//使用dataString获取用到信息 例如:获取当前下载的url
NSString *downloadUrl = [dataString componentsSeparatedByString:@"<key>NSURLSessionDownloadURL</key>\n\t<string>"].lastObject;
downloadUrl = [downloadUrl componentsSeparatedByString:@"</string>"].firstObject;
//获取当前下载暂停后的tmp缓存文件的文件名
NSString * tmpFileName = [dataString componentsSeparatedByString:@"<key>NSURLSessionResumeInfoTempFileName</key>\n\t<string>"].lastObject;
tmpFileName = [tmpFileName componentsSeparatedByString:@"</string>"].firstObject;
//[self.saveResumeData resumeData with: downloadUrl];
}else{
if ([resumeData isKindOfClass:[NSData class]]) {//ios12之后的解析
id root = nil;
id keyedUnarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:resumeData];
root = [keyedUnarchiver decodeTopLevelObjectForKey:@"NSKeyedArchiveRootObjectKey" error:nil];
[keyedUnarchiver finishDecoding];
NSDictionary *resumeDictionary = [NSDictionary dictionaryWithDictionary:root];//resumeDictionary为一个包含下载地址和下载进度的字典
//使用resumeDictionary获取用到信息 例如:获取当前下载的url
NSString *downloadUrl = [resumeDictionary stringValueForKey:@"NSURLSessionDownloadURL" default:@""];
//获取缓存文件名
NSString * tmpFileName = [resumeDictionary stringValueForKey:@"NSURLSessionResumeInfoTempFileName" default:@""];
//[self.saveResumeData resumeData with: downloadUrl];
}
}
}];
关于删除下载中的任务
就不用说了,直接[nsDownloadTask cancel];//就可以了
关于删除暂停中的缓存文件
根据暂停时保存的tmpFileName 通过NSFileManager删除
- (NSString *)tempStr{
return [NSString stringWithFormat:@"%@/%@/", NSHomeDirectory(), @"tmp"];
}
- (BOOL)deleteWithTmpFileName:(NSString*)tmpName{
if (tmpName.length>0) {
NSString *tmpPath = [self.tempStr stringByAppendingPathComponent:tmpName];
if ([[NSFileManager defaultManager] fileExistsAtPath:tmpPath]) {
NSError *error;
[[NSFileManager defaultManager] removeItemAtPath:tmpPath error:&error];
return !error;//没出错则说明删除成功
}
}
return NO;;
}
这里捎带说一下NSURLSession
通过下列代码创建的NSURLSessionDownloadTask, 当app在后台被系统杀死后, 下载任务仍然在下载的(屌屌的哈~)
NSURLSessionConfiguration * config =[NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:@"com.xxx"];
NSURLSession *session = [NSURLSession sessionWithConfiguration:config delegate:self delegateQueue:[NSOperationQueue mainQueue]];
if ([self getResumeData]) {
self.nsDownloadTask = [session downloadTaskWithResumeData:[self getResumeData]];
} else {
self.nsDownloadTask = [session downloadTaskWithURL:[NSURL URLWithString:downLoadUrl]];
}
关于手动杀进程后再次启动app任务如何继续
看好多文章说监听程序的退出, 然后直接在[applicationWillTerminate]方法里暂停下载任务!
实际上这种方法是不可行的, 会造成下载文件信息的不完整!
实际上程序被杀时,我们什么都不需要处理! 因为当我们下载启动app再次创建相同'Identifier'的 NSURLSession时系统会调用
.- (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error{}
代理方法, 并且会传进来一个resumeData, 我们可以根据resumeData来获取app被杀死时的那条下载任务的信息.
- (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error{
// 调用cancel方法直接返回,在相应操作是直接进行处理
if (error && [error.localizedDescription isEqualToString:@"cancelled"]) return;
// 下载时,进程杀死,重新启动,回调错误
if (error && [error.userInfo objectForKey:NSURLErrorBackgroundTaskCancelledReasonKey]) {
NSData *resumeData = [error.userInfo objectForKey:NSURLSessionDownloadTaskResumeData];
NSString *downloadUrl = [error.userInfo stringValueForKey:@"NSErrorFailingURLStringKey" default:@""];
//此处根据downloadUrl 处理app被杀死时的下载任务, 保存相关信息到沙盒
return;
}
}
网友评论