mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-13 01:20:57 +00:00
Richard: I'm unsure about three of these, which were fixes in memset() calls in: - NSConcreteMapTable.m - NSConcreteHashTable.m - Additions/NSData+GNUstepBase.m Please can you check them? I think they are intended to zero the entire object (rather than the first word), but the lack of comments makes me unsure. Most changes were just tweaks to variable types. I've also removed some dead code from NSInvocation. This was small group of things that were marked for internal use only, but not actually referenced in the code anywhere. Other improvements: - NSArray / NSDictionary fixed up to use the 10.7 (ARC-friendly) prototypes. - getObjects:andKeys: implemented for NSDictionary (10.5 method) - NSPointerArray and NSHashTable now properly support weak objects. - Tests for weak objects in collections. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33621 72102866-910b-0410-8b05-ffd578937521
117 lines
3.4 KiB
Objective-C
117 lines
3.4 KiB
Objective-C
/* 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 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 __GSFileHandle_h_GNUSTEP_BASE_INCLUDE
|
|
#define __GSFileHandle_h_GNUSTEP_BASE_INCLUDE
|
|
|
|
#import <Foundation/NSFileHandle.h>
|
|
#import <Foundation/NSArray.h>
|
|
#import <Foundation/NSDictionary.h>
|
|
#import <Foundation/NSRunLoop.h>
|
|
|
|
#import <GNUstepBase/GSConfig.h>
|
|
|
|
#if USE_ZLIB
|
|
#include <zlib.h>
|
|
#endif
|
|
|
|
struct sockaddr_in;
|
|
|
|
/**
|
|
* DO NOT USE ... this header is here only for the SSL file handle support
|
|
* and is not intended to be used by anyone else ... it is subject to
|
|
* change or removal without warning.
|
|
*/
|
|
@interface GSFileHandle : NSFileHandle <RunLoopEvents>
|
|
{
|
|
#if GS_EXPOSE(GSFileHandle)
|
|
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
|
|
#if defined(__MINGW__)
|
|
WSAEVENT event;
|
|
#endif
|
|
#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;
|
|
- (NSInteger) read: (void*)buf length: (NSUInteger)len;
|
|
- (void) receivedEvent: (void*)data
|
|
type: (RunLoopEventType)type
|
|
extra: (void*)extra
|
|
forMode: (NSString*)mode;
|
|
- (void) setAddr: (struct sockaddr_in *)sin;
|
|
- (BOOL) useCompression;
|
|
- (void) watchReadDescriptorForModes: (NSArray*)modes;
|
|
- (void) watchWriteDescriptor;
|
|
- (NSInteger) write: (const void*)buf length: (NSUInteger)len;
|
|
|
|
@end
|
|
|
|
#endif /* __GSFileHandle_h_GNUSTEP_BASE_INCLUDE */
|