61 lines
2.1 KiB
Mathematica
61 lines
2.1 KiB
Mathematica
![]() |
// Copyright 2015-present 650 Industries. All rights reserved.
|
||
|
|
||
|
#import <EXFileSystem/EXSessionResumableDownloadTaskDelegate.h>
|
||
|
|
||
|
@interface EXSessionResumableDownloadTaskDelegate ()
|
||
|
|
||
|
@property (strong, nonatomic, readonly) EXDownloadDelegateOnWriteCallback onWriteCallback;
|
||
|
@property (weak, nonatomic) EXResumablesManager *manager;
|
||
|
@property (strong, nonatomic) NSString *uuid;
|
||
|
|
||
|
@end
|
||
|
|
||
|
@implementation EXSessionResumableDownloadTaskDelegate
|
||
|
|
||
|
- (instancetype)initWithResolve:(UMPromiseResolveBlock)resolve
|
||
|
reject:(UMPromiseRejectBlock)reject
|
||
|
localUrl:(NSURL *)localUrl
|
||
|
shouldCalculateMd5:(BOOL)shouldCalculateMd5
|
||
|
onWriteCallback:(EXDownloadDelegateOnWriteCallback)onWriteCallback
|
||
|
resumableManager:(EXResumablesManager *)manager
|
||
|
uuid:(NSString *)uuid;
|
||
|
{
|
||
|
if (self = [super initWithResolve:resolve
|
||
|
reject:reject
|
||
|
localUrl:localUrl
|
||
|
shouldCalculateMd5:shouldCalculateMd5]) {
|
||
|
_onWriteCallback = onWriteCallback;
|
||
|
_manager = manager;
|
||
|
_uuid = uuid;
|
||
|
}
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
- (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error
|
||
|
{
|
||
|
if (error) {
|
||
|
// The task was paused by us. So, we shouldn't throw.
|
||
|
if (error.code == NSURLErrorCancelled) {
|
||
|
self.resolve([NSNull null]);
|
||
|
} else {
|
||
|
self.reject(@"ERR_FILESYSTEM_CANNOT_DOWNLOAD",
|
||
|
[NSString stringWithFormat:@"Unable to download file: %@", error.description],
|
||
|
error);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
[_manager unregisterTask:_uuid];
|
||
|
}
|
||
|
|
||
|
- (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask
|
||
|
didWriteData:(int64_t)bytesWritten
|
||
|
totalBytesWritten:(int64_t)totalBytesWritten
|
||
|
totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite
|
||
|
{
|
||
|
if (_onWriteCallback && bytesWritten > 0) {
|
||
|
_onWriteCallback(downloadTask, bytesWritten, totalBytesWritten, totalBytesExpectedToWrite);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@end
|