NSURLSession Threads:跟踪多个后台下载

Posted

技术标签:

【中文标题】NSURLSession Threads:跟踪多个后台下载【英文标题】:NSURLSession Threads: Tracking multiple background downloads 【发布时间】:2013-09-22 09:15:46 【问题描述】:

所以我在主线程上创建我的下载

NSURLRequest *request = [NSURLRequest requestWithURL:download.URL];
NSURLSessionDownloadTask *downloadTask = [self.downloadSession downloadTaskWithRequest:request];
[downloadTask resume];

并将与下载相关的 NSManagedContextID 添加到 NSMutableDictionary, 所以我可以稍后在委托回调中检索它

[self.downloads setObject:[download objectID] forKey:[NSNumber numberWithInteger:downloadTask.taskIdentifier]];

我上面的self.downloadSession是这样配置的

- (NSURLSession *)backgroundSession

static NSURLSession *session = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^
    NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfiguration:@"com.test.backgroundSession"];
    configuration.discretionary = YES;
    session = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
);
return session;

我的问题是委托回调似乎是在不同的线程上调用的

- (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite
   
    NSManagedObjectID *downloadID = [self.downloads objectForKey:[NSNumber numberWithInteger:downloadTask.taskIdentifier]];

    double progress = (double)totalBytesWritten / (double)totalBytesExpectedToWrite;

    NSDictionary *userInfo = [NSDictionary dictionaryWithObjectsAndKeys:downloadID,@"download",[NSNumber numberWithDouble:progress],@"progress", nil];

    [[NSNotificationCenter defaultCenter] postNotificationName:@"DownloadProgress" object:nil userInfo:userInfo];

 

因此,当我访问 self.downloads 以获取正确的 objectID 时,我实际上是从与创建它的线程不同的线程访问 NSMutableDictionary,并且我相信 NSMutableDictionary 不是线程安全的。那么最好的解决方案是什么,我可以使用这样的东西

session = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:[NSOperationQueue mainQueue]];

在声明会话时,将委托队列设置为 mainQueue,这会导致在主线程上调用所有委托,但如果可能,我希望将所有回调保留在后台线程上

【问题讨论】:

您是否尝试过在定义会话时简单地设置自己的线程? @Mundi 如何处理NSMutableArrayNSObject 的模型,如this tutorial? 中所述 【参考方案1】:

在您的示例中,这不是问题,因为您的字典已移交给通知系统,并且不再被操作队列线程使用。只有当一个对象可能同时从多个线程访问时,线程安全才是一个问题。

如果您的 dict 是 iVar,您应该这样做:

像这样创建自己的队列

myQueue = [[NSOperationQueue alloc] init];
// This creates basically a serial queue, since there is just on operation running at any time.
[myQueue setMaxConcurrentOperationCount:1];

然后在此队列中安排每次访问您的字典,例如:

[myQueue addOperationWithBlock:^

    // Access your dictionary 
];

当然也可以将此队列用于您的 URLSesson 委托:

session = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:myQueue];

由于这个队列被设置为一个串行队列,所以总是只有一个线程在后台访问字典。

使用 dict 信息计算某些内容时要小心。您也必须在该队列上执行此操作。但是,您可以将计算结果放在任何其他队列/线程上,例如在主线程上更新 UI。

[myQueue addOperationWithBlock:^

    // Calculate with your dictionary
    // Maybe the progress calcualtion
    NSString* progress = [self calculateProgress: iVarDict];
    dispatch_async(dispatch_get_main_queue(), ^
    
       // use progress to update UI 
    );
];

我认为发布通知不必使用该模式,因为系统会正确处理线程。但为了省钱,你应该检查一下。

【讨论】:

好吧,文档说不是:Threading Prgramming Guide 如何处理NSMutableArrayNSObject 的模型,如this tutorial? 中所述【参考方案2】:

您可以使用 GCD 串行队列来确保只有一个委托同时执行。

您可以将队列声明为您的类的实例变量,并在 init 方法中对其进行初始化,如下所示:

dispatch_queue_t delegateQueue;

...

delegateQueue = dispatch_queue_create("com.yourcompany.mydelegatequeue", 0x0);

在您的委托方法中,只需让它在这个队列中执行:

- (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite
   
    dispatch_sync(delegateQueue, ^
    NSManagedObjectID *downloadID = [self.downloads objectForKey:[NSNumber numberWithInteger:downloadTask.taskIdentifier]];

    double progress = (double)totalBytesWritten / (double)totalBytesExpectedToWrite;

    NSDictionary *userInfo = [NSDictionary dictionaryWithObjectsAndKeys:downloadID,@"download",[NSNumber numberWithDouble:progress],@"progress", nil];

    [[NSNotificationCenter defaultCenter] postNotificationName:@"DownloadProgress" object:nil userInfo:userInfo];
);

 

这样,虽然每个委托都在其线程中被调用,但一次只有他们访问 self.downloads,您可以将它们保存在单独的线程中。

【讨论】:

这有点不太理想,因为如文档中所述,当 delegateQueue 设置为 nil 时,NSURLSession 会创建一个串行队列。因此委托调用在该队列上执行,然后代码立即切换到另一个队列。可以轻松避免的一个队列(因此​​至少浪费了一个线程)。您可以将 NSURLSession 设置为 mainQueue,但这又是一个不必要的队列。 由于他立即发布通知,因此将整个事情包装在主线程上的调度中会更聪明。

以上是关于NSURLSession Threads:跟踪多个后台下载的主要内容,如果未能解决你的问题,请参考以下文章

NSURLSession 中的 TaskIdentifier 没有改变

我可以在 Swift 中通过 NSURLSession 以某种方式执行同步 HTTP 请求吗

NSURLSESSION 后台下载多个

AFNetworking/NSURLSession耗时长创建100多个任务下载文件

nsurlsession 用于循环中的多个请求

Windbg 堆栈跟踪问题