mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 16:30:41 +00:00
Skeletal implementation of new URL laoding scheme
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23065 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c1d77f551b
commit
ae3fb0d61f
33 changed files with 5024 additions and 28 deletions
279
Source/NSURLDownload.m
Normal file
279
Source/NSURLDownload.m
Normal file
|
@ -0,0 +1,279 @@
|
|||
/* Implementation for NSURLDownload for GNUstep
|
||||
Copyright (C) 2006 Software Foundation, Inc.
|
||||
|
||||
Written by: Richard Frith-Macdonald <frm@gnu.org>
|
||||
Date: 2006
|
||||
|
||||
This file is part of the GNUstep Base Library.
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public
|
||||
License along with this library; if not, write to the Free
|
||||
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
|
||||
#include "GSURLPrivate.h"
|
||||
|
||||
@interface GSURLDownload : NSObject <NSURLProtocolClient>
|
||||
{
|
||||
@public
|
||||
NSURLDownload *_parent; // Not retained
|
||||
NSURLRequest *_request;
|
||||
NSURLProtocol *_protocol;
|
||||
NSData *_resumeData;
|
||||
NSString *_path;
|
||||
id _delegate;
|
||||
BOOL _deletesFileUponFailure;
|
||||
BOOL _allowOverwrite;
|
||||
}
|
||||
@end
|
||||
|
||||
typedef struct {
|
||||
@defs(NSURLDownload)
|
||||
} priv;
|
||||
#define this ((GSURLDownload*)(((priv*)self)->_NSURLDownloadInternal))
|
||||
#define inst ((GSURLDownload*)(((priv*)o)->_NSURLDownloadInternal))
|
||||
|
||||
@implementation NSURLDownload
|
||||
|
||||
+ (id) allocWithZone: (NSZone*)z
|
||||
{
|
||||
NSURLDownload *o = [super allocWithZone: z];
|
||||
|
||||
if (o != nil)
|
||||
{
|
||||
o->_NSURLDownloadInternal
|
||||
= NSAllocateObject([GSURLDownload class], 0, z);
|
||||
inst->_parent = o;
|
||||
}
|
||||
return o;
|
||||
}
|
||||
|
||||
+ (BOOL) canResumeDownloadDecodedWithEncodingMIMEType: (NSString *)MIMEType
|
||||
{
|
||||
return NO; // FIXME
|
||||
}
|
||||
|
||||
- (void) dealloc
|
||||
{
|
||||
RELEASE(this);
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
- (void) cancel
|
||||
{
|
||||
[this->_protocol stopLoading];
|
||||
DESTROY(this->_protocol);
|
||||
// FIXME
|
||||
}
|
||||
|
||||
- (BOOL) deletesFileUponFailure
|
||||
{
|
||||
return this->_deletesFileUponFailure;
|
||||
}
|
||||
|
||||
- (id) initWithRequest: (NSURLRequest *)request delegate: (id)delegate
|
||||
{
|
||||
NSData *resumeData = nil;
|
||||
|
||||
// FIXME ... build resume data from request.
|
||||
return [self initWithResumeData: resumeData delegate: delegate path: nil];
|
||||
}
|
||||
|
||||
- (id) initWithResumeData: (NSData *)resumeData
|
||||
delegate: (id)delegate
|
||||
path: (NSString *)path
|
||||
{
|
||||
if ((self = [super init]) != nil)
|
||||
{
|
||||
this->_resumeData = [resumeData copy];
|
||||
this->_delegate = [delegate retain];
|
||||
this->_path = [path copy];
|
||||
// FIXME ... start connection
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (NSURLRequest *) request
|
||||
{
|
||||
return this->_request;
|
||||
}
|
||||
|
||||
- (NSData *) resumeData
|
||||
{
|
||||
return nil; // FIXME
|
||||
}
|
||||
|
||||
- (void) setDeletesFileUponFailure: (BOOL)deletesFileUponFailure
|
||||
{
|
||||
this->_deletesFileUponFailure = deletesFileUponFailure;
|
||||
}
|
||||
|
||||
- (void) setDestination: (NSString *)path allowOverwrite: (BOOL)allowOverwrite
|
||||
{
|
||||
ASSIGN(this->_path, path);
|
||||
this->_allowOverwrite = allowOverwrite;
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@implementation NSObject (NSURLDownloadDelegate)
|
||||
|
||||
- (void) downloadDidBegin: (NSURLDownload *)download
|
||||
{
|
||||
}
|
||||
|
||||
- (void) downloadDidFinish: (NSURLDownload *)download
|
||||
{
|
||||
}
|
||||
|
||||
- (void) download: (NSURLDownload *)download
|
||||
decideDestinationWithSuggestedFilename: (NSString *)filename
|
||||
{
|
||||
}
|
||||
|
||||
- (void) download: (NSURLDownload *)download
|
||||
didCancelAuthenticationChallenge: (NSURLAuthenticationChallenge *)challenge
|
||||
{
|
||||
}
|
||||
|
||||
- (void) download: (NSURLDownload *)download
|
||||
didCreateDestination: (NSString *)path
|
||||
{
|
||||
}
|
||||
|
||||
- (void) download: (NSURLDownload *)download didFailWithError: (NSError *)error
|
||||
{
|
||||
}
|
||||
|
||||
- (void) download: (NSURLDownload *)download
|
||||
didReceiveAuthenticationChallenge: (NSURLAuthenticationChallenge *)challenge
|
||||
{
|
||||
}
|
||||
|
||||
- (void) download: (NSURLDownload *)download
|
||||
didReceiveDataOfLength: (unsigned)length
|
||||
{
|
||||
}
|
||||
|
||||
- (void) download: (NSURLDownload *)download
|
||||
didReceiveResponse: (NSURLResponse *)response
|
||||
{
|
||||
}
|
||||
|
||||
- (BOOL) download: (NSURLDownload *)download
|
||||
shouldDecodeSourceDataOfMIMEType: (NSString *)encodingType
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
||||
- (void) download: (NSURLDownload *)download
|
||||
willResumeWithResponse: (NSURLResponse *)response
|
||||
fromByte: (long long)startingByte
|
||||
{
|
||||
}
|
||||
|
||||
- (NSURLRequest *) download: (NSURLDownload *)download
|
||||
willSendRequest: (NSURLRequest *)request
|
||||
redirectResponse: (NSURLResponse *)redirectResponse
|
||||
{
|
||||
return request;
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
|
||||
@implementation GSURLDownload
|
||||
|
||||
- (void) dealloc
|
||||
{
|
||||
RELEASE(_protocol);
|
||||
RELEASE(_resumeData);
|
||||
RELEASE(_request);
|
||||
RELEASE(_delegate);
|
||||
RELEASE(_path);
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
- (void) URLProtocol: (NSURLProtocol *)protocol
|
||||
cachedResponseIsValid: (NSCachedURLResponse *)cachedResponse
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
- (void) URLProtocol: (NSURLProtocol *)protocol
|
||||
didFailWithError: (NSError *)error
|
||||
{
|
||||
[_delegate download: _parent didFailWithError: error];
|
||||
}
|
||||
|
||||
- (void) URLProtocol: (NSURLProtocol *)protocol
|
||||
didLoadData: (NSData *)data
|
||||
{
|
||||
}
|
||||
|
||||
- (void) URLProtocol: (NSURLProtocol *)protocol
|
||||
didReceiveAuthenticationChallenge: (NSURLAuthenticationChallenge *)challenge
|
||||
{
|
||||
[_delegate download: _parent didReceiveAuthenticationChallenge: challenge];
|
||||
}
|
||||
|
||||
- (void) URLProtocol: (NSURLProtocol *)protocol
|
||||
didReceiveResponse: (NSURLResponse *)response
|
||||
cacheStoragePolicy: (NSURLCacheStoragePolicy)policy
|
||||
{
|
||||
[_delegate download: _parent didReceiveResponse: response];
|
||||
if (policy == NSURLCacheStorageAllowed
|
||||
|| policy == NSURLCacheStorageAllowedInMemoryOnly)
|
||||
{
|
||||
|
||||
// FIXME ... cache response here
|
||||
}
|
||||
}
|
||||
|
||||
- (void) URLProtocol: (NSURLProtocol *)protocol
|
||||
wasRedirectedToRequest: (NSURLRequest *)request
|
||||
redirectResponse: (NSURLResponse *)redirectResponse
|
||||
{
|
||||
request = [_delegate download: _parent
|
||||
willSendRequest: request
|
||||
redirectResponse: redirectResponse];
|
||||
// If we have been cancelled, our protocol will be nil
|
||||
if (_protocol != nil)
|
||||
{
|
||||
if (request == nil)
|
||||
{
|
||||
[_delegate downloadDidFinish: _parent];
|
||||
}
|
||||
else
|
||||
{
|
||||
DESTROY(_protocol);
|
||||
// FIXME start new request loading
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
- (void) URLProtocolDidFinishLoading: (NSURLProtocol *)protocol
|
||||
{
|
||||
[_delegate downloadDidFinish: _parent];
|
||||
}
|
||||
|
||||
- (void) URLProtocol: (NSURLProtocol *)protocol
|
||||
didCancelAuthenticationChallenge: (NSURLAuthenticationChallenge *)challenge
|
||||
{
|
||||
[_delegate download: _parent didCancelAuthenticationChallenge: challenge];
|
||||
}
|
||||
|
||||
@end
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue