mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Header reorganizsateion - Please refer to ChangeLog
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17407 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
9cc6c39319
commit
ac30183cd6
238 changed files with 694 additions and 544 deletions
138
Headers/Foundation/NSURLHandle.h
Normal file
138
Headers/Foundation/NSURLHandle.h
Normal file
|
@ -0,0 +1,138 @@
|
|||
/* NSURLHandle.h - Class NSURLHandle
|
||||
Copyright (C) 1999 Free Software Foundation, Inc.
|
||||
|
||||
Written by: Manuel Guesdon <mguesdon@sbuilders.com>
|
||||
Date: Jan 1999
|
||||
|
||||
This file is part of the GNUstep 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., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#ifndef _NSURLHandle_h__
|
||||
#define _NSURLHandle_h__
|
||||
|
||||
#include <Foundation/NSObject.h>
|
||||
|
||||
#ifndef STRICT_OPENSTEP
|
||||
|
||||
@class NSData;
|
||||
@class NSString;
|
||||
@class NSMutableArray;
|
||||
@class NSMutableData;
|
||||
@class NSURLHandle;
|
||||
@class NSURL;
|
||||
|
||||
GS_EXPORT NSString * const NSHTTPPropertyStatusCodeKey;
|
||||
GS_EXPORT NSString * const NSHTTPPropertyStatusReasonKey;
|
||||
GS_EXPORT NSString * const NSHTTPPropertyServerHTTPVersionKey;
|
||||
GS_EXPORT NSString * const NSHTTPPropertyRedirectionHeadersKey;
|
||||
GS_EXPORT NSString * const NSHTTPPropertyErrorPageDataKey;
|
||||
|
||||
#ifndef NO_GNUSTEP
|
||||
GS_EXPORT NSString * const GSHTTPPropertyMethodKey;
|
||||
GS_EXPORT NSString * const GSHTTPPropertyProxyHostKey;
|
||||
GS_EXPORT NSString * const GSHTTPPropertyProxyPortKey;
|
||||
#endif
|
||||
|
||||
typedef enum
|
||||
{
|
||||
NSURLHandleNotLoaded = 0,
|
||||
NSURLHandleLoadSucceeded,
|
||||
NSURLHandleLoadInProgress,
|
||||
NSURLHandleLoadFailed
|
||||
} NSURLHandleStatus;
|
||||
|
||||
/**
|
||||
* A protocol to which clients of a handle must conform in order to
|
||||
* rfeceive notification of events on the handle.
|
||||
*/
|
||||
@protocol NSURLHandleClient
|
||||
/**
|
||||
* Sent by the NSURLHandle object when some data becomes available
|
||||
* from the handle. Note that this does not mean that all data has become
|
||||
* available, only that a chunk of data has arrived.
|
||||
*/
|
||||
- (void) URLHandle: (NSURLHandle*)sender
|
||||
resourceDataDidBecomeAvailable: (NSData*)newData;
|
||||
|
||||
/**
|
||||
* Sent by the NSURLHandle object on resource load failure.
|
||||
* Supplies a human readable failure reason.
|
||||
*/
|
||||
- (void) URLHandle: (NSURLHandle*)sender
|
||||
resourceDidFailLoadingWithReason: (NSString*)reason;
|
||||
|
||||
/**
|
||||
* Sent by the NSURLHandle object when it begins loading
|
||||
* resource data.
|
||||
*/
|
||||
- (void) URLHandleResourceDidBeginLoading: (NSURLHandle*)sender;
|
||||
|
||||
/**
|
||||
* Sent by the NSURLHandle object when resource loading is canceled
|
||||
* by programmatic request (rather than by failure).
|
||||
*/
|
||||
- (void) URLHandleResourceDidCancelLoading: (NSURLHandle*)sender;
|
||||
|
||||
/**
|
||||
* Sent by the NSURLHandle object when it completes loading
|
||||
* resource data.
|
||||
*/
|
||||
- (void) URLHandleResourceDidFinishLoading: (NSURLHandle*)sender;
|
||||
@end
|
||||
|
||||
@interface NSURLHandle: NSObject
|
||||
{
|
||||
id _data;
|
||||
NSMutableArray *_clients;
|
||||
NSString *_failure;
|
||||
NSURLHandleStatus _status;
|
||||
}
|
||||
|
||||
+ (NSURLHandle*) cachedHandleForURL: (NSURL*)url;
|
||||
+ (BOOL) canInitWithURL: (NSURL*)url;
|
||||
+ (void) registerURLHandleClass: (Class)urlHandleSubclass;
|
||||
+ (Class) URLHandleClassForURL: (NSURL*)url;
|
||||
|
||||
- (void) addClient: (id <NSURLHandleClient>)client;
|
||||
- (NSData*) availableResourceData;
|
||||
- (void) backgroundLoadDidFailWithReason: (NSString*)reason;
|
||||
- (void) beginLoadInBackground;
|
||||
- (void) cancelLoadInBackground;
|
||||
- (void) didLoadBytes: (NSData*)newData
|
||||
loadComplete: (BOOL)loadComplete;
|
||||
- (void) endLoadInBackground;
|
||||
- (NSString*) failureReason;
|
||||
- (void) flushCachedData;
|
||||
- (id) initWithURL: (NSURL*)url
|
||||
cached: (BOOL)cached;
|
||||
- (void) loadInBackground;
|
||||
- (NSData*) loadInForeground;
|
||||
- (id) propertyForKey: (NSString*)propertyKey;
|
||||
- (id) propertyForKeyIfAvailable: (NSString*)propertyKey;
|
||||
- (void) removeClient: (id <NSURLHandleClient>)client;
|
||||
- (NSData*) resourceData;
|
||||
- (NSURLHandleStatus) status;
|
||||
- (BOOL) writeData: (NSData*)data;
|
||||
- (BOOL) writeProperty: (id)propertyValue
|
||||
forKey: (NSString*)propertyKey;
|
||||
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue