NSURLSession 下载任务 - 进度条问题

Posted

技术标签:

【中文标题】NSURLSession 下载任务 - 进度条问题【英文标题】:NSURLSession Download Task- Progress Bar Issue 【发布时间】:2016-05-04 06:14:40 【问题描述】:

我正在处理一个非 ARC 项目,我必须在其中下载视频,下载后我将显示它们。我正在使用 NSURLSession 下载它。

问题在进度条中。当我开始下载第四个文件时,我可以通过进度条正确下载前两个或三个文件,进度条没有正确更新,但文件与最后删除的文件一起下载。

再次删除并再次下载时会崩溃

尝试在已失效的会话中创建任务

 - (void)startOrPauseDownloadingSingleFile : (UIButton *)sender
  
    self.part_id_Value = self.part_id;
    m_Web getIconPathForAnimation:self.part_id];

     [UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
      NSURL *urlVideo=[NSURL URLWithString:self.NonInteractiveMP4URL];
      NSString *strlastcomponent=[urlVideo lastPathComponent];


      FileDownloadInfo *fdi = [[FileDownloadInfo alloc] initWithFileTitle:strlastcomponent andDownloadSource:[NSString stringWithFormat:@"%@",urlVideo]];



        if (!fdi.isDownloading)
        
            // Check if should create a new download task using a URL, or using resume data.


            if (fdi.taskIdentifier == -1)
            
             **Getting Crash Here**

                fdi.downloadTask = [self.session downloadTaskWithURL:[NSURL URLWithString:fdi.downloadSource]];
            
            else
            
                fdi.downloadTask = [self.session downloadTaskWithResumeData:fdi.taskResumeData];
            

            // Keep the new taskIdentifier.
            fdi.taskIdentifier = fdi.downloadTask.taskIdentifier;

            // Start the download.
            [fdi.downloadTask resume];

            // Indicate for each file that is being downloaded.
            fdi.isDownloading = YES;
        
    

我的下载和更新进度条的方法 -

- (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite
 
   double Progress = (double)totalBytesWritten / (double)totalBytesExpectedToWrite;
   NSLog(@"Progressview progress : %f",Progress);

if (totalBytesExpectedToWrite == NSURLSessionTransferSizeUnknown)

    NSLog(@"Unknown transfer size");

else

    [self performSelectorOnMainThread:@selector(updateProgress:) withObject:[NSString stringWithFormat:@"%f",Progress] waitUntilDone:NO];
 


- (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)location
 
 NSError *error;
 NSFileManager *fileManager = [NSFileManager defaultManager];
 NSString *destinationFilename = downloadTask.originalRequest.URL.lastPathComponent;
 NSURL *destinationURL = [self.docDirectoryURL URLByAppendingPathComponent:destinationFilename];

 if ([fileManager fileExistsAtPath:[destinationURL path]])
 
    [fileManager removeItemAtURL:destinationURL error:nil];
 
 BOOL success = [fileManager copyItemAtURL:location
                                    toURL:destinationURL
                                    error:&error];
 if (success)
  
    [[NSOperationQueue mainQueue] addOperationWithBlock:^
        NSLog(@"Download completed!");
        NSLog(@"destination file name : %@!",destinationFilename);
        NSLog(@"Part id of file name : %@!",self.part_id);
        [self performSelectorOnMainThread:@selector(updateProgress:) withObject:[NSString stringWithFormat:@"1.0"] waitUntilDone:NO];

        [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;

        NSString *filenameValue=[NSString stringWithFormat:@"%@",destinationFilename];
        NSString *hideExtension=[filenameValue substringToIndex:filenameValue.length-4];
        NSLog(@"filenameValue == %@", filenameValue);

        [self DBUpdateVideoURLStatus:self.part_id andFileName:filenameValue];
        [self DBInsertDownloads:self.part_id andFileName:filenameValue];

        UIAlertView *alert=[[UIAlertView alloc]initWithTitle:NSLocalizedString(@"Success", @"Success message") message:[NSString localizedStringWithFormat:@"%@ downloaded successfully!",hideExtension] delegate:self cancelButtonTitle:NSLocalizedString(@"Ok", @"Ok action") otherButtonTitles:nil];
        alert.tag = 1;
        [alert show];
        [alert release];
        [self.session finishTasksAndInvalidate];
    ];
 
 else
  
    NSLog(@"Unable to copy temp file. Error: %@", [error localizedDescription]);
  


-(void)updateProgress:(id)progress

  float currentProgress = [progress floatValue];
  [self.downloadProgress setProgress:currentProgress animated:YES];
  [self.downloadProgress setNeedsDisplay];
  [self.tblview reloadData];

【问题讨论】:

您使用的是单个会话对象还是多个会话对象?你为什么打电话给finishTasksAndInvalidate?如果进度视图没有更新,您是否看到“Progressview 进度...”消息,或“未知传输大小”或什么也没有?当您说“与上次删除的文件一起下载”时,您是什么意思? @Rob 我一次下载一个文件。哦,所以不需要 finishTasksAndInvalidate.. 如果进度视图没有更新,但文件正在下载,则不需要。我没有收到任何消息未知传输大小。 您需要进行更多诊断以准确识别故障所在。 didWriteData 没有被调用吗? updateProgress 没有被调用吗? downloadProgress 是非nil 值吗?从你的问题不清楚。请编辑问题,详细说明您迄今为止所做的诊断。 @Rob 我很欣赏诊断,我知道这些事情当我尝试下载并删除它并再次下载尝试在已失效的会话中创建任务 *** 终止应用程序由于未捕获的异常“NSGenericException”,原因:“在已失效的会话中创建的任务” 【参考方案1】:

你说:

当我尝试下载并删除它并再次下载时尝试在已失效的会话中创建任务 *** 由于未捕获的异常“NSGenericException”而终止应用程序,原因:“在具有已作废'

这是因为您正在调用finishTasksAndInvalidate,它告诉NSURLSession 它不仅应该完成所有队列任务,还应该使会话无效并且不允许更多任务。但是还有另一个任务要运行,但是您使会话无效。

底线,随意取消任务,但如果您要为同一个会话对象启动更多任务,请不要使会话对象无效。

【讨论】:

【参考方案2】:

我注意到一个错误:

mainQueue 在主线程上处理,因此您不应从在主队列上执行的块中调用 performSelectorOnMainThread。

在下载任务结束时到达主线程的标准模式是将异步调度到主队列,而不是像您所做的那样向主队列添加操作。

【讨论】:

正确,但与手头的问题无关。 @malhal。你能更新我的代码并发布正确的代码吗?了解一下就好了 要修复的东西太多,我不完全理解您试图实现的下载行为。如果我是你,我会搜索如何使用 NSURLSession 下载多个文件以获取正确模式的示例。 @malhal 你能给我推荐一些最好的多重下载示例吗?我已经足够好了。【参考方案3】:

您能否尝试更改以下代码并告诉我们结果如何:

-(void)updateProgress:(id)progress

    dispatch_async(dispatch_get_main_queue(), ^

        float currentProgress = [progress floatValue];
        [self.downloadProgress setProgress:currentProgress animated:YES];
        [self.downloadProgress setNeedsDisplay];

    );
    [self.tblview reloadData];

【讨论】:

兄弟当我删除它并再次下载时它会崩溃我收到消息崩溃 - 尝试在已失效的会话中创建任务。找不到问题出在哪里,上面有人建议诊断问题,我做到了,这也是崩溃的原因和更新进度

以上是关于NSURLSession 下载任务 - 进度条问题的主要内容,如果未能解决你的问题,请参考以下文章

更改视图控制器后如何更新 UIProgressView 以显示 NSUrlSession 下载进度

recyclerView中多任务下载文件进度条更新的问题

NSURLSession dataTaskWithRequest 进度跟踪

NSURLSession,数据任务转换为下载任务后,后台无法下载

NSURLSession,上传任务 - 获取传输的实际字节

Python实现下载界面(带进度条,断点续传,多线程多任务下载等)