NSURLSessionDownloadTask 并重试

NSURLSessionDownloadTask and retrying

我正在使用以下代码从 Web 下载文件。我如何构造代码(使用块),如果失败,将以最大重试次数重试。这是我用来下载文件的代码。

    NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
    AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];

    NSURL *myURL = [NSURL URLWithString:@"urlstring"];

    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:myURL];

    [request setValue:token forHTTPHeaderField:@"Authorization"];

    NSURLSessionDownloadTask *downloadTask = [manager downloadTaskWithRequest:request progress:nil destination:^NSURL *(NSURL *targetPath, NSURLResponse *response) {
        NSURL *directoryURL = [NSURL fileURLWithPath:NSTemporaryDirectory()];
        return [directoryURL URLByAppendingPathComponent:fileName];
        } completionHandler:^(NSURLResponse *response, NSURL *filePath, NSError *error) {
              //check here if error then retry using block ?
                if (!error)
                 {
                     //do something with the file
                 }
                 else
                  {
                       //retry download ??
                  }
      }
  }];
   [downloadTask resume];

您可以创建一个 retryCount 实例变量并将其设置为您想要重试网络调用的次数。然后,您可以将所有网络代码放入一个带有自定义完成处理程序的方法中。您的完成处理程序可以是一个将 BOOL 作为参数和 returns void 的块。然后,在您的网络代码中,创建一个本地 BOOL 变量,并根据网络调用成功或失败将其设置为 YESNO。您将 运行 网络代码中的完成处理程序参数。然后作为参数发送给方法的块(完成处理程序)可以 "see" 无论方法中的局部变量设置为 YES 还是 NO。如果是YES,网络调用成功,什么都不做。如果是NO,网络调用失败,所以检查retryCount--如果>0,再次调用网络方法,自减retryCount

更新

这应该给你一个大概的想法...

typedef void (^CustomCompletionHandler)(BOOL); // Create your CustomCompletionHandler type

- (void)getDataAndCallCompletionHandler:(CustomCompletionHandler *)completionHandler {
    NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
    AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];

    NSURL *myURL = [NSURL URLWithString:@"urlstring"];

    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:myURL];

    [request setValue:token forHTTPHeaderField:@"Authorization"];

    NSURLSessionDownloadTask *downloadTask = [manager downloadTaskWithRequest:request progress:nil destination:^NSURL *(NSURL *targetPath, NSURLResponse *response) {

        BOOL success = NO; // Create local variable to keep track of whether network call succeeded or failed

        NSURL *directoryURL = [NSURL fileURLWithPath:NSTemporaryDirectory()];
        return [directoryURL URLByAppendingPathComponent:fileName];
        } completionHandler:^(NSURLResponse *response, NSURL *filePath, NSError *error) {
              //check here if error then retry using block ?
                if (!error)
                 {
                     success = YES;
                     //do something with the file
                 }
                 else
                  {
                     success = NO;
                     //retry download ??
                  }
      }
  // Get main queue and call completionHandler and pass success:
  // completionHandler(success)
  }];
[downloadTask resume];
}

您可以通过执行类似...

的操作来调用此方法
[self getDataAndCallCompletionHandler:^(BOOL success) {
    // If success == true {  
    //     Do whatever you need to
    // } else {
    //     Check retryCount
    //     If you need to, call getDataAndCallCompletionHandler: again
    // }
}];