-
Notifications
You must be signed in to change notification settings - Fork 69
/
BHMultipleDownload.m
65 lines (54 loc) · 2.67 KB
/
BHMultipleDownload.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#import "BHMultipleDownload.h"
@implementation BHMultipleDownload {
NSMutableArray<NSURL *> *_downloadedFilePaths;
NSInteger _completedDownloads;
NSInteger _totalDownloads;
}
- (instancetype)init {
self = [super init];
if (self) {
NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
self.session = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:[NSOperationQueue mainQueue]];
}
return self;
}
- (void)downloadFiles:(NSArray<NSURL *> *)fileURLs {
_downloadedFilePaths = [NSMutableArray array];
_completedDownloads = 0;
_totalDownloads = fileURLs.count;
for (NSURL *fileURL in fileURLs) {
NSURLSessionDownloadTask *downloadTask = [self.session downloadTaskWithURL:fileURL];
[downloadTask resume];
}
if (fileURLs.count == 0) {
[self URLSession:self.session didBecomeInvalidWithError:[NSError errorWithDomain:NSURLErrorDomain code:99 userInfo:nil]];
}
}
- (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite {
float prog = (float)totalBytesWritten / (float)totalBytesExpectedToWrite;
if ([self.delegate respondsToSelector:@selector(downloaderProgress:)]) {
[self.delegate downloaderProgress:prog];
}
}
- (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask
didFinishDownloadingToURL:(NSURL *)location {
NSString *documentsPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
NSString *destinationPath = [documentsPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@-%@", NSUUID.UUID.UUIDString, downloadTask.response.suggestedFilename]];
NSError *error;
[[NSFileManager defaultManager] moveItemAtURL:location toURL:[NSURL fileURLWithPath:destinationPath] error:&error];
if (error == nil) {
[_downloadedFilePaths addObject:[NSURL fileURLWithPath:destinationPath]];
}
_completedDownloads++;
if (_completedDownloads == _totalDownloads) {
if ([self.delegate respondsToSelector:@selector(downloaderDidFinishDownloadingAllFiles:)]) {
[self.delegate downloaderDidFinishDownloadingAllFiles:_downloadedFilePaths];
}
}
}
- (void)URLSession:(NSURLSession *)session didBecomeInvalidWithError:(NSError *)error {
if ([self.delegate respondsToSelector:@selector(downloaderDidFailureWithError:)]) {
[self.delegate downloaderDidFailureWithError:error];
}
}
@end