mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +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
15430c49b1
commit
73dc4cb9f6
238 changed files with 694 additions and 544 deletions
107
Headers/Additions/GNUstepBase/GSFileHandle.h
Normal file
107
Headers/Additions/GNUstepBase/GSFileHandle.h
Normal file
|
@ -0,0 +1,107 @@
|
|||
/* Interface for GSFileHandle for GNUStep
|
||||
Copyright (C) 1997-2002 Free Software Foundation, Inc.
|
||||
|
||||
Written by: Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
Date: 1997
|
||||
|
||||
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., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#ifndef __GSFileHandle_h_GNUSTEP_BASE_INCLUDE
|
||||
#define __GSFileHandle_h_GNUSTEP_BASE_INCLUDE
|
||||
|
||||
#include <Foundation/NSFileHandle.h>
|
||||
#include <Foundation/NSArray.h>
|
||||
#include <Foundation/NSDictionary.h>
|
||||
#include <Foundation/NSRunLoop.h>
|
||||
|
||||
#include <GSConfig.h>
|
||||
|
||||
#if USE_ZLIB
|
||||
#include <zlib.h>
|
||||
#endif
|
||||
|
||||
@interface GSFileHandle : NSFileHandle <RunLoopEvents, GCFinalization>
|
||||
{
|
||||
int descriptor;
|
||||
BOOL closeOnDealloc;
|
||||
BOOL isStandardFile;
|
||||
BOOL isNullDevice;
|
||||
BOOL isSocket;
|
||||
BOOL isNonBlocking;
|
||||
BOOL wasNonBlocking;
|
||||
BOOL acceptOK;
|
||||
BOOL connectOK;
|
||||
BOOL readOK;
|
||||
BOOL writeOK;
|
||||
NSMutableDictionary *readInfo;
|
||||
int readMax;
|
||||
NSMutableArray *writeInfo;
|
||||
int writePos;
|
||||
NSString *address;
|
||||
NSString *service;
|
||||
NSString *protocol;
|
||||
#if USE_ZLIB
|
||||
gzFile gzDescriptor;
|
||||
#endif
|
||||
}
|
||||
|
||||
- (id) initAsClientAtAddress: (NSString*)address
|
||||
service: (NSString*)service
|
||||
protocol: (NSString*)protocol;
|
||||
- (id) initAsClientInBackgroundAtAddress: (NSString*)address
|
||||
service: (NSString*)service
|
||||
protocol: (NSString*)protocol
|
||||
forModes: (NSArray*)modes;
|
||||
- (id) initAsServerAtAddress: (NSString*)address
|
||||
service: (NSString*)service
|
||||
protocol: (NSString*)protocol;
|
||||
- (id) initForReadingAtPath: (NSString*)path;
|
||||
- (id) initForWritingAtPath: (NSString*)path;
|
||||
- (id) initForUpdatingAtPath: (NSString*)path;
|
||||
- (id) initWithStandardError;
|
||||
- (id) initWithStandardInput;
|
||||
- (id) initWithStandardOutput;
|
||||
- (id) initWithNullDevice;
|
||||
|
||||
- (void) checkAccept;
|
||||
- (void) checkConnect;
|
||||
- (void) checkRead;
|
||||
- (void) checkWrite;
|
||||
|
||||
- (void) ignoreReadDescriptor;
|
||||
- (void) ignoreWriteDescriptor;
|
||||
- (void) setNonBlocking: (BOOL)flag;
|
||||
- (void) postReadNotification;
|
||||
- (void) postWriteNotification;
|
||||
- (int) read: (void*)buf length: (int)len;
|
||||
- (void) receivedEvent: (void*)data
|
||||
type: (RunLoopEventType)type
|
||||
extra: (void*)extra
|
||||
forMode: (NSString*)mode;
|
||||
- (void) setAddr: (struct sockaddr_in *)sin;
|
||||
- (NSDate*) timedOutEvent: (void*)data
|
||||
type: (RunLoopEventType)type
|
||||
forMode: (NSString*)mode;
|
||||
- (BOOL) useCompression;
|
||||
- (void) watchReadDescriptorForModes: (NSArray*)modes;
|
||||
- (void) watchWriteDescriptor;
|
||||
- (int) write: (const void*)buf length: (int)len;
|
||||
|
||||
@end
|
||||
|
||||
#endif /* __GSFileHandle_h_GNUSTEP_BASE_INCLUDE */
|
Loading…
Add table
Add a link
Reference in a new issue