iOS 7 NSURLSession 在后台下载多个文件 [英] iOS 7 NSURLSession Download multiple files in Background

查看:41
本文介绍了iOS 7 NSURLSession 在后台下载多个文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用 NSUrlSession 下载文件列表.

I want to download a List of files using NSUrlSession.

我有一个用于计算成功下载的变量@property (nonatomic) int downloadsSuccessfulCounter;.在下载文件时,我禁用了 Download Button.当计数器等于下载列表大小时,我再次启用按钮并将计数器设置为 0.我在方法中这样做:

I have a variable for counting the successful downloads @property (nonatomic) int downloadsSuccessfulCounter;. While the files are being downloaded I disable the Download Button. When the counter is equal to the download list size, I enable the button again and set the counter to 0. I do this in the method:

-(void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)location {

...

    [[NSOperationQueue mainQueue] addOperationWithBlock:^ {

        downloadsSuccessfulCounter++;

        if(downloadsSuccessfulCounter == self.downloadList.count) {
            NSLog(@"All downloads finished");

            [self.syncButton setEnabled:YES];

             downloadsSuccessfulCounter = 0;
        }
    }];

}

一切正常,但是当我再次打开 ViewController 时,我收到消息 A background URLSession with identifier com.myApp already exists!.计数器未设置为 0,并且 UI 元素(UIButtons、UILabels)没有响应.

Everything is working fine, but when I open again the ViewController I get the message A background URLSession with identifier com.myApp already exists!. The counter is not set to 0 and the UI elements (UIButtons, UILabels) are not responding.

我猜这个问题是因为 NSURLSession 仍然打开,但我不确定它是如何工作的.

I guess the problem is because the NSURLSession is still open but I'm not really sure about how it works.

所有的教程我都试过了,但99%都是只下载1个文件,不超过1个...有什么想法吗?

I have tried all the tutorials, but 99% of them are only for downloading 1 file, not more than 1... Any ideas?

这是我的代码:

...    
@property (nonatomic, strong) NSURLSession *session;
...

    - (void)viewDidLoad {
        [super viewDidLoad];

        appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];

        self.downloadList = [[NSMutableArray alloc] init];

        NSURLSessionConfiguration *sessionConfiguration = [NSURLSessionConfiguration backgroundSessionConfiguration:@"com.myApp"];
        sessionConfiguration.HTTPMaximumConnectionsPerHost = 5;
        self.session = [NSURLSession sessionWithConfiguration:sessionConfiguration delegate:self delegateQueue:nil];
}

当我按下 下载按钮我调用这个方法(我有一个 Downloadable 对象,其中包含一个 NSURLSessionDownloadTask):

When I press the Download ButtonI call this method ( I have a Downloadable object which contains a NSURLSessionDownloadTask):

-(void)startDownload {

    for (int i=0; i<[self.downloadList count]; i++) {
        Downloadable *d = [self.downloadList objectAtIndex:i];

        if (!d.isDownloading) {
            if (d.taskIdentifier == -1) {
                d.downloadTask = [self.session downloadTaskWithURL:[NSURL URLWithString:d.downloadSource]];

            }else {
                d.downloadTask = [self.session downloadTaskWithResumeData:fdi.taskResumeData];
            }

            d.taskIdentifier = d.downloadTask.taskIdentifier;
            [d.downloadTask resume];
            d.isDownloading = YES;
        }
    }
}

当应用处于后台时:

-(void)URLSessionDidFinishEventsForBackgroundURLSession:(NSURLSession *)session{
    AppDelegate *appDelegate = [UIApplication sharedApplication].delegate;

    [self.session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {

        if ([downloadTasks count] == 0) {
            if (appDelegate.backgroundTransferCompletionHandler != nil) {

                void(^completionHandler)() = appDelegate.backgroundTransferCompletionHandler;

                appDelegate.backgroundTransferCompletionHandler = nil;

                [[NSOperationQueue mainQueue] addOperationWithBlock:^{               
                    completionHandler();

                    UILocalNotification *localNotification = [[UILocalNotification alloc] init];
                    localNotification.alertBody = @"All files downloaded";
                    [[UIApplication sharedApplication] presentLocalNotificationNow:localNotification];

                }];
            }
        }
    }];
}

推荐答案

所以,正如我在评论中提到的,问题是每个 File 都需要一个唯一的 NSURLSession,每个 NSURLSession 都需要一个具有唯一标识符的 NSURLSessionConfiguration.

So, as I mentioned in my comments, the issue is that each File requires a unique NSURLSession, and each NSURLSession requires a NSURLSessionConfiguration with a unique identifier.

我认为你很亲近——而且在某些方面可能比我更合适......您只需要创建一个结构来将唯一 ID 传递到唯一配置中,以填充唯一会话(比如 10 倍快).

I think that you were close - and probably more proper than me in certain aspects... You just need to create a structure to pass unique IDs into unique Configurations, to populate unique Sessions (say that 10x fast).

这就是我所做的:

/** 检索要下载的文件列表* 还使用该列表的大小来实例化项目* 在我的情况下,我加载了一个字符返回的文本文件,其中包含我要下载的文件的名称*/

/* * Retrieves the List of Files to Download * Also uses the size of that list to instantiate items * In my case, I load a character returned text file with the names of the files that I want to download */

- (void) getMediaList {

    NSString *list = @"http://myserver/media_list.txt";
    NSURLSession *session = [NSURLSession sharedSession]; // <-- BASIC session
    [[session dataTaskWithURL:[NSURL URLWithString:list]
            completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {

                NSString *stringFromData = [[NSString alloc] initWithData: data encoding: NSUTF8StringEncoding];

                // Populate Arrays
                REMOTE_MEDIA_FILE_PATHS = [stringFromData componentsSeparatedByString:@"
"];
                [self instantiateURLSessions:[REMOTE_MEDIA_FILE_PATHS count]]; 


                // Start First File
                [self getFile:[REMOTE_MEDIA_FILE_PATHS objectAtIndex:downloadCounter]:downloadCounter]; // this variable is 0 at the start
            }]
     resume];
}

/** 这会将配置和会话数组设置为适当的大小* 它还给每个人一个唯一的 ID*/

/* * This sets Arrays of Configurations and Sessions to the proper size * It also gives a unique ID to each one */

- (void) instantiateURLSessions : (int) size {

    NSMutableArray *configurations = [NSMutableArray array];
    NSMutableArray *sessions = [NSMutableArray array];

    for (int i = 0; i < size; i++) {
        NSString *index = [NSString stringWithFormat:@"%i", i];
        NSString *UniqueIdentifier = @"MyAppBackgroundSessionIdentifier_";
        UniqueIdentifier = [UniqueIdentifier stringByAppendingString:index];

        [configurations addObject: [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:UniqueIdentifier]];
        [sessions addObject:[NSURLSession sessionWithConfiguration: [configurations objectAtIndex:i]  delegate: self delegateQueue: [NSOperationQueue mainQueue]]];
    }

    NSURL_BACKGROUND_CONFIGURATIONS = [NSArray arrayWithArray:configurations];
    NSURL_BACKGROUND_SESSIONS = [NSArray arrayWithArray:sessions];
}

/** 这会根据数组的索引为每个文件设置下载任务* 它还连接到实际文件的路径*/

/* * This sets up the Download task for each file, based off of the index of the array * It also concatenates the path to the actual file */

- (void) getFile : (NSString*) file :(int) index {
    NSString *fullPathToFile = REMOTE_MEDIA_PATH; // Path To Server With Files
    fullPathToFile = [fullPathToFile stringByAppendingString:file];

    NSURL *url = [NSURL URLWithString:fullPathToFile];
    NSURLSessionDownloadTask *downloadTask = [[NSURL_BACKGROUND_SESSIONS objectAtIndex:index ] downloadTaskWithURL: url];
    [downloadTask resume];

}

/** 最后,在我的委托方法中,下载完成后(从临时数据中移动文件后),我检查是否完成,如果没有使用更新的索引计数器再次调用 getFiles 方法*/

/* * Finally, in my delegate method, upon the completion of the download (after the file is moved from the temp data), I check if I am done and if not call the getFiles method again with the updated counter for the index */

-(void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)location
{

    // Get the documents directory URL
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *dataPath = [documentsDirectory stringByAppendingPathComponent:LOCAL_MEDIA_PATH];
    NSURL *customDirectory = [NSURL fileURLWithPath:dataPath];

    // Get the file name and create a destination URL
    NSString *sendingFileName = [downloadTask.originalRequest.URL lastPathComponent];
    NSURL *destinationUrl = [customDirectory URLByAppendingPathComponent:sendingFileName];

    // Move the file
    NSError *error = nil;
    NSFileManager *fileManager = [NSFileManager defaultManager];
    if ([fileManager moveItemAtURL:location toURL:destinationUrl error: &error]) {

        // List
        [self listCustomDirectory];

        if(downloadCounter < [REMOTE_MEDIA_FILE_PATHS count] -1) {
            // Increment Counter
            downloadCounter++;

            // Start Next File
            [self getFile:[REMOTE_MEDIA_FILE_PATHS objectAtIndex:downloadCounter]:downloadCounter];
        }
        else {
            // FINISH YOUR OPERATION / NOTIFY USER / ETC
        }
    }
    else {
        NSLog(@"Damn. Error %@", error);
        // Do Something Intelligent Here
    }  
}

这篇关于iOS 7 NSURLSession 在后台下载多个文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆