Files
react-native-code-push/CodePushDownloadHandler.m
2015-11-13 00:20:14 -08:00

78 lines
2.7 KiB
Objective-C

#import "CodePush.h"
@implementation CodePushDownloadHandler
- (id)init:(NSString *)downloadFilePath
progressCallback:(void (^)(long, long))progressCallback
doneCallback:(void (^)())doneCallback
failCallback:(void (^)(NSError *err))failCallback {
self.outputFileStream = [NSOutputStream outputStreamToFileAtPath:downloadFilePath
append:NO];
self.receivedContentLength = 0;
self.progressCallback = progressCallback;
self.doneCallback = doneCallback;
self.failCallback = failCallback;
return self;
}
-(void)download:(NSString*)url {
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:url]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request
delegate:self
startImmediately:NO];
[connection scheduleInRunLoop:[NSRunLoop mainRunLoop]
forMode:NSDefaultRunLoopMode];
[connection start];
}
#pragma mark NSURLConnection Delegate Methods
- (NSCachedURLResponse *)connection:(NSURLConnection *)connection
willCacheResponse:(NSCachedURLResponse*)cachedResponse {
// Return nil to indicate not necessary to store a cached response for this connection
return nil;
}
-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
self.expectedContentLength = response.expectedContentLength;
[self.outputFileStream open];
}
-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
self.receivedContentLength = self.receivedContentLength + [data length];
NSUInteger bytesLeft = [data length];
do {
NSUInteger bytesWritten = [self.outputFileStream write:[data bytes]
maxLength:bytesLeft];
if (bytesWritten == -1) {
break;
}
bytesLeft -= bytesWritten;
} while (bytesLeft>0);
self.progressCallback(self.expectedContentLength, self.receivedContentLength);
if (bytesLeft) {
self.failCallback([self.outputFileStream streamError]);
[self.outputFileStream close];
}
}
- (void)connection:(NSURLConnection*)connection didFailWithError:(NSError*)error
{
self.failCallback(error);
[self.outputFileStream close];
}
-(void)connectionDidFinishLoading:(NSURLConnection *)connection {
self.doneCallback();
[self.outputFileStream close];
}
@end