Up
Authors
- Richard Frith-Macdonald (
richard@brainstorm.co.uk
)
-
Version: 1.35
Date: 2005/11/28 15:41:33
Copyright: (C) 1997 Free Software Foundation, Inc.
- Declared in:
- Foundation/NSFileHandle.h
Availability: OpenStep
NSFileHandle
is a class that provides a wrapper for accessing system files and socket connections. You can open connections to a file using class methods such as +fileHandleForReadingAtPath:
.
GNUstep extends the use of this class to allow you to create network connections (sockets), secure connections and also allows you to use compression with these files and connections (as long as GNUstep Base was compiled with the zlib library).
Method summary
+ (id)
fileHandleForReadingAtPath: (
NSString*)path;
Availability: OpenStep
Returns an NSFileHandle
object set up for reading from the file listed at path. If the file does not exist or cannot be opened for some other reason, nil
is returned.
+ (id)
fileHandleForUpdatingAtPath: (
NSString*)path;
Availability: OpenStep
Returns an NSFileHandle
object setup for updating (reading and writing) from the file listed at path. If the file does not exist or cannot be opened for some other reason, nil
is returned.
+ (id)
fileHandleForWritingAtPath: (
NSString*)path;
Availability: OpenStep
Returns an NSFileHandle
object set up for writing to the file listed at path. If the file does not exist or cannot be opened for some other reason, nil
is returned.
+ (id)
fileHandleWithNullDevice;
Availability: OpenStep
Returns a file handle object that is connected to the null device (i.e. a device that does nothing.) It is typically used in arrays and other collections of file handle objects as a place holder (null) object, so that all objects can respond to the same messages.
+ (id)
fileHandleWithStandardError;
Availability: OpenStep
Returns an NSFileHandle
object for the standard error descriptor. The returned object is a shared instance as there can only be one standard error per process.
+ (id)
fileHandleWithStandardInput;
Availability: OpenStep
Returns an NSFileHandle
object for the standard input descriptor. The returned object is a shared instance as there can only be one standard input per process.
+ (id)
fileHandleWithStandardOutput;
Availability: OpenStep
Returns an NSFileHandle
object for the standard output descriptor. The returned object is a shared instance as there can only be one standard output per process.
- (void)
acceptConnectionInBackgroundAndNotify;
Availability: OpenStep
Asynchronously accept a stream-type socket connection and act as the (server) end of the communications channel. This instance should have been created by
-initWithFileDescriptor:
with a stream-type socket created by the appropriate system routine. Posts a
NSFileHandleConnectionAcceptedNotification
when connection initiated, returning an
NSFileHandle
for the client side with that notification.
- (void)
acceptConnectionInBackgroundAndNotifyForModes: (
NSArray*)modes;
Availability: OpenStep
Asynchronously accept a stream-type socket connection and act as the (server) end of the communications channel. This instance should have been created by -initWithFileDescriptor:
with a stream-type socket created by the appropriate system routine. Posts a NSFileHandleConnectionAcceptedNotification
when connection initiated, returning an NSFileHandle
for the client side with that notification.
The modes array specifies NSRunLoop
modes that the notification can be posted in.
- (
NSData*)
availableData;
Availability: OpenStep
Synchronously returns data available through this file or connection. If the handle represents a file, the entire contents from current file pointer to end are returned. If this is a network connection, reads what is available, blocking if nothing is available. Raises NSFileHandleOperationException
if problem encountered.
- (void)
closeFile;
Availability: OpenStep
Disallows further reading from read-access files or connections, and sends EOF on write-access files or connections. Descriptor is only deleted when this instance is deallocated.
- (int)
fileDescriptor;
Availability: OpenStep
Return the underlying file descriptor for this instance.
- (id)
initWithFileDescriptor: (int)desc;
Availability: OpenStep
Initialize with desc, which can point to either a regular file or socket connection.
- (id)
initWithFileDescriptor: (int)desc
closeOnDealloc: (BOOL)flag;
Availability: OpenStep
Initialize with desc, which can point to either a regular file or socket connection. Close desc when this instance is deallocated if flag is YES
.
- (id)
initWithNativeHandle: (void*)hdl;
Availability: OpenStep
Windows-Unix compatibility support.
- (id)
initWithNativeHandle: (void*)hdl
closeOnDealloc: (BOOL)flag;
Availability: OpenStep
This is a designated initialiser for the class.
Windows-Unix compatibility support.
- (void*)
nativeHandle;
Availability: OpenStep
Windows-Unix compatibility support.
- (unsigned long long)
offsetInFile;
Availability: OpenStep
Return current position in file, or raises exception if instance does not represent a regular file.
- (
NSData*)
readDataOfLength: (unsigned int)len;
Availability: OpenStep
Reads up to len bytes from file or communications channel into return data.
- (
NSData*)
readDataToEndOfFile;
Availability: OpenStep
Reads up to maximum unsigned int bytes from file or communications channel into return data.
- (void)
readInBackgroundAndNotify;
Availability: OpenStep
- (void)
readInBackgroundAndNotifyForModes: (
NSArray*)modes;
Availability: OpenStep
Set up an asynchronous read operation which will cause a notification to be sent when any amount of data (or end of file) is read. Note that the file handle will not continuously send notifications when data is available. If you want to continue to receive notifications, you need to send this message again after receiving a notification.
- (void)
readToEndOfFileInBackgroundAndNotify;
Availability: OpenStep
- (void)
readToEndOfFileInBackgroundAndNotifyForModes: (
NSArray*)modes;
Availability: OpenStep
Set up an asynchronous read operation which will cause a notification to be sent when end of file is read.
- (unsigned long long)
seekToEndOfFile;
Availability: OpenStep
Position file pointer at end of file, raising exception if instance does not represent a regular file.
- (void)
seekToFileOffset: (unsigned long long)pos;
Availability: OpenStep
Position file pointer at pos, raising exception if instance does not represent a regular file.
- (void)
synchronizeFile;
Availability: OpenStep
Flush in-memory buffer to file or connection, then return.
- (void)
truncateFileAtOffset: (unsigned long long)pos;
Availability: OpenStep
Chops file beyond pos then sets file pointer to that point.
- (void)
waitForDataInBackgroundAndNotify;
Availability: OpenStep
- (void)
waitForDataInBackgroundAndNotifyForModes: (
NSArray*)modes;
Availability: OpenStep
Set up to provide a notification when data can be read from the handle.
- (void)
writeData: (
NSData*)item;
Availability: OpenStep
Synchronously writes given data item to file or connection.
- Declared in:
- Foundation/NSFileHandle.h
Availability: OpenStep
The NSPipe provides an encapsulation of the UNIX concept of pipe.
With NSPipe, it is possible to redirect the standard input or standard output.
The file handles created by NSPipe are automatically closed when they are no longer in use (ie when the NSPipe instance is deallocated), so you don't need to close them explicitly.
Instance Variables
Method summary
+ (id)
pipe;
Availability: OpenStep
Returns a newly allocated and initialized NSPipe object that has been sent an autorelease message.
- (
NSFileHandle*)
fileHandleForReading;
Availability: OpenStep
Returns the file handle for reading from the pipe.
- (
NSFileHandle*)
fileHandleForWriting;
Availability: OpenStep
Returns the file handle for writing to the pipe.
Instance Variables for NSPipe Class
@protected NSFileHandle* readHandle;
Description forthcoming.
@protected NSFileHandle* writeHandle;
Description forthcoming.
- Declared in:
- Foundation/NSFileHandle.h
Availability: Base 0.0.0
A set of convenience methods for utilizing the socket communications capabilities of the
NSFileHandle
class.
Method summary
+ (id)
fileHandleAsClientAtAddress: (
NSString*)address
service: (
NSString*)service
protocol: (
NSString*)protocol;
Availability: Base 0.0.0
+ (id)
fileHandleAsClientInBackgroundAtAddress: (
NSString*)address
service: (
NSString*)service
protocol: (
NSString*)protocol;
Availability: Base 0.0.0
+ (id)
fileHandleAsClientInBackgroundAtAddress: (
NSString*)address
service: (
NSString*)service
protocol: (
NSString*)protocol
forModes: (
NSArray*)modes;
Availability: Base 0.0.0
Opens an outgoing network connection asynchronously.
-
The address is the name (or IP dotted quad) of the machine to which the connection should be made.
-
The service is the name (or number) of the port to which the connection should be made.
-
The protocol is provided so support different network protocols, but at present only 'tcp' is supported. However, a protocol specification of the form 'socks-...' can be used to control socks5 support.
If '...' is empty (ie the string is just 'socks-' then the connection is not made via a socks server.
Otherwise, the text '...' must be the name of the host on which the socks5 server is running, with an optional port number separated from the host name by a colon.
Alternatively a prefix of the form 'bind-' followed by an IP address may be used (for non-socks connections) to ensure that the connection is made from the specified address.
-
If modes is
nil
or empty, uses NSDefaultRunLoopMode.
This method supports connection through a firewall via socks5. The socks5 connection may be controlled via the protocol argument, but if no socks information is supplied here, the GSSOCKS user default will be used, and failing that, the SOCKS5_SERVER or SOCKS_SERVER environment variables will be used to set the socks server. If none of these mechanisms specify a socks server, the connection will be made directly rather than through socks.
+ (id)
fileHandleAsServerAtAddress: (
NSString*)address
service: (
NSString*)service
protocol: (
NSString*)protocol;
Availability: Base 0.0.0
Opens a network server socket and listens for incoming connections using the specified
service and
protocol.
-
The service is the name (or number) of the port to which the connection should be made.
-
The protocol may at present only be 'tcp'
- (void)
readDataInBackgroundAndNotifyLength: (unsigned)len;
Availability: Base 0.0.0
- (void)
readDataInBackgroundAndNotifyLength: (unsigned)len
forModes: (
NSArray*)modes;
Availability: Base 0.0.0
Set up an asynchronous read operation which will cause a notification to be sent when the specified amount of data (or end of file) is read.
- (BOOL)
readInProgress;
Availability: Base 0.0.0
Returns a boolean to indicate whether a read operation of any kind is in progress on the handle.
- (
NSString*)
socketAddress;
Availability: Base 0.0.0
Returns the host address of the network connection represented by the file handle. If this handle is an incoming connection which was received by a local server handle, this is the name or address of the client machine.
- (
NSString*)
socketLocalAddress;
Availability: Base 0.0.0
Returns the local address of the network connection or nil
.
- (
NSString*)
socketLocalService;
Availability: Base 0.0.0
Returns the local service/port of the network connection or nil
.
- (
NSString*)
socketProtocol;
Availability: Base 0.0.0
Returns the name of the protocol in use for the network connection represented by the file handle.
- (
NSString*)
socketService;
Availability: Base 0.0.0
Returns the name (or number) of the service (network port) in use for the network connection represented by the file handle.
- (BOOL)
useCompression;
Availability: Base 0.0.0
Return a flag to indicate whether compression has been turned on for the file handle... this is only available on systems where GNUstep was built with 'zlib' support for compressing/decompressing data.
On systems which support it, this method may be called after a file handle has been initialised to turn on compression or decompression of the data being written/read.
Returns YES
on success, NO
on failure.
Reasons for failure are -
-
Not supported/built in to GNUstep
-
File handle has been closed
-
File handle is open for both read and write
-
Failure in compression/decompression library
- (void)
writeInBackgroundAndNotify: (
NSData*)item;
Availability: Base 0.0.0
- (void)
writeInBackgroundAndNotify: (
NSData*)item
forModes: (
NSArray*)modes;
Availability: Base 0.0.0
Write the specified data asynchronously, and notify on completion.
- (BOOL)
writeInProgress;
Availability: Base 0.0.0
Returns a boolean to indicate whether a write operation of any kind is in progress on the handle. An outgoing network connection attempt (as a client) is considered to be a write operation.
- Declared in:
- Foundation/NSFileHandle.h
Availability: Base 0.0.0
Where OpenSSL is available, you can use the subclass returned by
+sslClass
to handle SSL connections. The
-sslAccept
method is used to do SSL handshake and start an encrypted session on a channel where the connection was initiated from the far end. The
-sslConnect
method is used to do SSL handshake and start an encrypted session on a channel where the connection was initiated from the near end.. The
-sslDisconnect
method is used to end the encrypted session. The
-sslSetCertificate:privateKey:PEMpasswd:
method is used to establish a client certificate before starting an encrypted session.
Method summary
+ (Class)
sslClass;
Availability: Base 0.0.0
returns the concrete class used to implement SSL connections.
- (BOOL)
sslAccept;
Availability: Base 0.0.0
An empty method provided for subclasses to override.
Establishes an SSL connection from the system that the handle is talking to.
This is implented by an SSL handling subclass.
The default implementation just returns NO
.
- (BOOL)
sslConnect;
Availability: Base 0.0.0
An empty method provided for subclasses to override.
Establishes an SSL connection to the system that the handle is talking to.
This is implented by an SSL handling subclass.
The default implementation just returns NO
.
- (void)
sslDisconnect;
Availability: Base 0.0.0
An empty method provided for subclasses to override.
Shuts down the SSL connection to the system that the handle is talking to.
- (void)
sslSetCertificate: (
NSString*)certFile
privateKey: (
NSString*)privateKey
PEMpasswd: (
NSString*)PEMpasswd;
Availability: Base 0.0.0
An empty method provided for subclasses to override.
Sets the certificate to be used to identify this process to the server at the opposite end of the network connection.
Up