mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-27 10:40:50 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29663 72102866-910b-0410-8b05-ffd578937521
134 lines
3.7 KiB
Objective-C
134 lines
3.7 KiB
Objective-C
/* NSURL.h - Class NSURL
|
|
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 Lesser 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 Lesser 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.
|
|
*/
|
|
|
|
#ifndef __NSURL_h_GNUSTEP_BASE_INCLUDE
|
|
#define __NSURL_h_GNUSTEP_BASE_INCLUDE
|
|
#import <GNUstepBase/GSVersionMacros.h>
|
|
|
|
#import <Foundation/NSURLHandle.h>
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if OS_API_VERSION(GS_API_MACOSX, GS_API_LATEST)
|
|
|
|
@class NSNumber;
|
|
|
|
/**
|
|
* URL scheme constant for use with [NSURL-initWithScheme:host:path:].
|
|
*/
|
|
GS_EXPORT NSString* const NSURLFileScheme;
|
|
|
|
@interface NSURL: NSObject <NSCoding, NSCopying, NSURLHandleClient>
|
|
{
|
|
#if GS_EXPOSE(NSURL)
|
|
@private
|
|
NSString *_urlString;
|
|
NSURL *_baseURL;
|
|
void *_clients;
|
|
void *_data;
|
|
#endif
|
|
}
|
|
|
|
+ (id) fileURLWithPath: (NSString*)aPath;
|
|
+ (id) URLWithString: (NSString*)aUrlString;
|
|
+ (id) URLWithString: (NSString*)aUrlString
|
|
relativeToURL: (NSURL*)aBaseUrl;
|
|
|
|
- (id) initFileURLWithPath: (NSString*)aPath;
|
|
- (id) initWithScheme: (NSString*)aScheme
|
|
host: (NSString*)aHost
|
|
path: (NSString*)aPath;
|
|
- (id) initWithString: (NSString*)aUrlString;
|
|
- (id) initWithString: (NSString*)aUrlString
|
|
relativeToURL: (NSURL*)aBaseUrl;
|
|
|
|
- (NSString*) absoluteString;
|
|
- (NSURL*) absoluteURL;
|
|
- (NSURL*) baseURL;
|
|
- (NSString*) fragment;
|
|
- (NSString*) host;
|
|
- (BOOL) isFileURL;
|
|
- (void) loadResourceDataNotifyingClient: (id)client
|
|
usingCache: (BOOL)shouldUseCache;
|
|
- (NSString*) parameterString;
|
|
- (NSString*) password;
|
|
- (NSString*) path;
|
|
- (NSNumber*) port;
|
|
- (id) propertyForKey: (NSString*)propertyKey;
|
|
- (NSString*) query;
|
|
- (NSString*) relativePath;
|
|
- (NSString*) relativeString;
|
|
- (NSData*) resourceDataUsingCache: (BOOL)shouldUseCache;
|
|
- (NSString*) resourceSpecifier;
|
|
- (NSString*) scheme;
|
|
- (BOOL) setProperty: (id)property
|
|
forKey: (NSString*)propertyKey;
|
|
- (BOOL) setResourceData: (NSData*)data;
|
|
- (NSURL*) standardizedURL;
|
|
- (NSURLHandle*)URLHandleUsingCache: (BOOL)shouldUseCache;
|
|
- (NSString*) user;
|
|
|
|
@end
|
|
|
|
@interface NSObject (NSURLClient)
|
|
|
|
/** <override-dummy />
|
|
* Some data has become available. Note that this does not mean that all data
|
|
* has become available, only that a chunk of data has arrived.
|
|
*/
|
|
- (void) URL: (NSURL*)sender
|
|
resourceDataDidBecomeAvailable: (NSData*)newBytes;
|
|
|
|
/** <override-dummy />
|
|
* Loading of resource data is complete.
|
|
*/
|
|
- (void) URLResourceDidFinishLoading: (NSURL*)sender;
|
|
|
|
/** <override-dummy />
|
|
* Loading of resource data was cancelled by programmatic request
|
|
* (not an error).
|
|
*/
|
|
- (void) URLResourceDidCancelLoading: (NSURL*)sender;
|
|
|
|
/** <override-dummy />
|
|
* Loading of resource data has failed, for given human-readable reason.
|
|
*/
|
|
- (void) URL: (NSURL*)sender
|
|
resourceDidFailLoadingWithReason: (NSString*)reason;
|
|
@end
|
|
|
|
#endif /* GS_API_MACOSX */
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#if !defined(NO_GNUSTEP) && !defined(GNUSTEP_BASE_INTERNAL)
|
|
#import <GNUstepBase/NSURL+GNUstepBase.h>
|
|
#endif
|
|
|
|
#endif /* __NSURL_h_GNUSTEP_BASE_INCLUDE */
|
|
|