web-dev-qa-db-ja.com

NSURLSessionスレッド:複数のバックグラウンドダウンロードの追跡

だから私はメインスレッドでダウンロードを作成しています

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に設定します。これにより、すべてのデリゲートがメインスレッドで呼び出されますが、可能であれば、すべてのコールバックをバックグラウンドスレッドに保持したいと思います。

15
Andrew

あなたの例では、辞書は通知システムに渡され、操作キュースレッドによって再び使用されないため、これは問題ではありません。スレッドセーフは、オブジェクトが複数のスレッドから同時にアクセスされる可能性がある場合にのみ問題になります。

辞書が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にアクセスするスレッドは常に1つだけです。

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 
    });
}];

通知を投稿する場合、システムがスレッドを正しく処理するため、そのパターンを使用する必要はないと思います。しかし、保存するには、これを確認する必要があります。

10
sofacoder

GCDシリアルキューを使用して、1つのデリゲートのみが同時に実行されていることを確認できます。

次のように、キューをクラスのインスタンス変数として宣言し、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にアクセスするのはデリゲートだけであり、別々のスレッドに保持できます。

0
Jose Servet