gpt4 book ai didi

ios - NSURLSession 线程 : Tracking multiple background downloads

转载 作者:技术小花猫 更新时间:2023-10-29 10:09:59 25 4
gpt4 key购买 nike

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

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

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

[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;
}

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

- (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]];

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

最佳答案

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

如果您的字典是 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 委托(delegate):

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

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

使用字典信息进行计算时要小心。您也必须在该队列上执行此操作。但是,您可以将计算结果放在任何其他队列/线程上,例如在主线程上更新 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
});
}];

我认为对于发布通知您不必使用该模式,因为系统会正确处理线程。但为了安全起见,您应该检查一下。

关于ios - NSURLSession 线程 : Tracking multiple background downloads,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18942178/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com