diff --git a/platform/background_downloader_ios.h b/platform/background_downloader_ios.h index 72e11bddc1..e29bdee1a2 100644 --- a/platform/background_downloader_ios.h +++ b/platform/background_downloader_ios.h @@ -9,7 +9,7 @@ NS_ASSUME_NONNULL_BEGIN @end -typedef void (^DownloadCompleteBlock)( NSURL * _Nullable location, NSError * _Nullable error); +typedef void (^DownloadCompleteBlock)(NSError *_Nullable error); typedef void (^DownloadProgressBlock)(int64_t bytesWritten, int64_t bytesExpected); /// Note: this class is NOT thread-safe and must be used from main thread only. diff --git a/platform/background_downloader_ios.mm b/platform/background_downloader_ios.mm index 2ccf92df89..812ae3c63c 100644 --- a/platform/background_downloader_ios.mm +++ b/platform/background_downloader_ios.mm @@ -196,6 +196,23 @@ #pragma mark - NSURLSessionDownloadDelegate implementation +- (void)finishDownloading:(NSURLSessionTask *)downloadTask error:(nullable NSError *)error { + [self.restoredTasks removeObjectForKey:downloadTask.originalRequest.URL.path]; + + TaskInfo *info = [self.tasks objectForKey:@(downloadTask.taskIdentifier)]; + if (!info) + return; + + info.completion(error); + + [self.tasks removeObjectForKey:@(downloadTask.taskIdentifier)]; + + if ([self.tasks count] == 0) { + for (id subscriber in self.subscribers) + [subscriber didFinishDownloading]; + } +} + - (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)location { @@ -204,20 +221,7 @@ [[NSFileManager defaultManager] moveItemAtURL:location.filePathURL toURL:destinationUrl error:&error]; dispatch_async(dispatch_get_main_queue(), ^{ - [self.restoredTasks removeObjectForKey:downloadTask.originalRequest.URL.path]; - - TaskInfo *info = [self.tasks objectForKey:@(downloadTask.taskIdentifier)]; - if (!info) - return; - - info.completion(destinationUrl, error); - - [self.tasks removeObjectForKey:@(downloadTask.taskIdentifier)]; - - if ([self.tasks count] == 0) { - for (id subscriber in self.subscribers) - [subscriber didFinishDownloading]; - } + [self finishDownloading:downloadTask error:error]; }); } @@ -236,20 +240,8 @@ - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)downloadTask didCompleteWithError:(NSError *)error { dispatch_async(dispatch_get_main_queue(), ^{ - [self.restoredTasks removeObjectForKey:downloadTask.originalRequest.URL.path]; - - TaskInfo *info = [self.tasks objectForKey:@(downloadTask.taskIdentifier)]; - if (!info) - return; - - info.completion(nil, error); - - [self.tasks removeObjectForKey:@(downloadTask.taskIdentifier)]; - - if ([self.tasks count] == 0) { - for (id subscriber in self.subscribers) - [subscriber didFinishDownloading]; - } + if (error && error.code != NSURLErrorCancelled) + [self finishDownloading:downloadTask error:error]; }); } diff --git a/storage/background_downloading/downloader_adapter_ios.mm b/storage/background_downloading/downloader_adapter_ios.mm index 61306d1046..cff7092a21 100644 --- a/storage/background_downloading/downloader_adapter_ios.mm +++ b/storage/background_downloading/downloader_adapter_ios.mm @@ -10,6 +10,21 @@ #include #include +@interface NSError (ToDownloaderError) + +- (downloader::DownloadStatus)toDownloaderError; + +@end + +@implementation NSError (ToDownloaderError) + +- (downloader::DownloadStatus)toDownloaderError { + return self.code == NSURLErrorFileDoesNotExist ? downloader::DownloadStatus::FileNotFound + : downloader::DownloadStatus::Failed; +} + +@end + namespace storage { BackgroundDownloaderAdapter::BackgroundDownloaderAdapter() @@ -77,15 +92,10 @@ void BackgroundDownloaderAdapter::DownloadFromAnyUrl(CountryId const & countryId { if (urls.empty()) return; - - auto onFinish = [this, countryId, downloadPath, urls = urls](NSURL *location, NSError *error) mutable { - if (!error || error.code == NSURLErrorCancelled) - return; - - downloader::DownloadStatus status = downloader::DownloadStatus::Completed; - status = error.code == NSURLErrorFileDoesNotExist ? downloader::DownloadStatus::FileNotFound - : downloader::DownloadStatus::Failed; - + + auto onFinish = [this, countryId, downloadPath, urls = urls](NSError *error) mutable { + downloader::DownloadStatus status = error ? [error toDownloaderError] : downloader::DownloadStatus::Completed; + if (!m_queue.Contains(countryId)) return; @@ -100,7 +110,7 @@ void BackgroundDownloaderAdapter::DownloadFromAnyUrl(CountryId const & countryId m_queue.Remove(countryId); } }; - + auto onProgress = [this, countryId](int64_t totalWritten, int64_t totalExpected) { if (!m_queue.Contains(countryId)) return;