I have an app that downloads a number of large files and saves them straight to disk. On the simulator and on my phone (good wireless connection and 30MB BB) this works fine.
However when tested on networks that are slower inevitably the download fails and my code deletes the partially downloaded file and asks user to try again - not a very good user experience.
I am wondering how I can resume from where I left off (in other words if half of the file was downloaded is there a way to save the data and accurately resume once connection has been restored)?
I have used the standard approach in the Apple docs but storing straight to file rather than using NSMutableData.
Can anyone suggest a way to do this please?
Code below:
- (IBAction)downloadFile:(id)sender {
theRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:movieDownload1]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];
theRequest2=[NSURLRequest requestWithURL:[NSURL URLWithString:movieDownload2]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];
theRequest3=[NSURLRequest requestWithURL:[NSURL URLWithString:movieDownload3]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];
theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
if (theConnection) {
// do something
} else {
// Inform the user that the connection failed.
NSLog(@"connection failed");
}
}
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
if (connection == theConnection) {
expectedBytes = [response expectedContentLength];
bytesReceived = 0.0;
fileProgressBar.progress = 0.0;
filename = [[NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:movie1]; // filename is in .h file
} else if (connection == theConnection2) {
expectedBytes = [response expectedContentLength];
bytesReceived = 0.0;
fileProgressBar.progress = 0.0;
NSLog(@"content-length: %@ bytes", self.filesize);
filename = [[NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:movie2]; // filename is in .h file
} else if (connection == theConnection3) {
expectedBytes = [response expectedContentLength];
bytesReceived = 0.0;
fileProgressBar.progress = 0.0;
NSLog(@"content-length: %@ bytes", self.filesize);
filename = [[NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:movie3]; // filename is in .h file
}
[[NSFileManager defaultManager] createFileAtPath:filename contents:nil attributes:nil];
file = [NSFileHandle fileHandleForUpdatingAtPath:filename] ;// file is in .h
if (file) {
[file seekToEndOfFile];
}
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
//
//
if (file) {
[file seekToEndOfFile];
}
[file writeData:data];
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
// Delete file that failed to download correctly
if (connection == theconnection) {
filename = [[NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:movie1];
[[NSFileManager defaultManager] removeItemAtPath:filename error:NULL];
} else if(connection == theconnection2) {
filename = [[NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:movie2];
[[NSFileManager defaultManager] removeItemAtPath:filename error:NULL];
} else if(connection == theconnection3) {
filename = [[NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:movie2];
[[NSFileManager defaultManager] removeItemAtPath:filename error:NULL];
}
// inform the user
NSLog(@"Connection failed! Error - %@ %@",
[error localizedDescription],
[[error userInfo] objectForKey:NSURLErrorFailingURLStringErrorKey]);
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
// do something with the data
[file closeFile];
// code to exclude files from back up
}