1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
|
#ifndef INCLUDED_GSSTREAM_H
#define INCLUDED_GSSTREAM_H
/** Implementation for GSStream for GNUStep
Copyright (C) 2006 Free Software Foundation, Inc.
Written by: Derek Zhou <derekzhou@gmail.com>
Written by: Richard Frith-Macdonald <rfm@gnu.org>
Date: 2006
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
Lesser 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., 31 Milk Street #960789 Boston, MA 02196 USA.
NSInputStream and NSOutputStream are clusters rather than concrete classes
The inherance graph is:
NSStream
|-- GSStream
| `--GSSocketStream
|-- NSInputStream
| `--GSInputStream
| |-- GSDataInputStream
| |-- GSFileInputStream
| |-- GSPipeInputStream (mswindows only)
| `-- GSSocketInputStream
| |-- GSInetInputStream
| |-- GSLocalInputStream
| `-- GSInet6InputStream
|-- NSOutputStream
| `--GSOutputStream
| |-- GSBufferOutputStream
| |-- GSDataOutputStream
| |-- GSFileOutputStream
| |-- GSPipeOutputStream (mswindows only)
| `-- GSSocketOutputStream
| |-- GSInetOutputStream
| |-- GSLocalOutputStream
| `-- GSInet6InputStream
`-- GSServerStream
`-- GSAbstractServerStream
|-- GSLocalServerStream (mswindows)
`-- GSSocketServerStream
|-- GSInetServerStream
|-- GSInet6ServerStream
`-- GSLocalServerStream (gnu/linux)
*/
#import "Foundation/NSStream.h"
#import "Foundation/NSRunLoop.h"
#import "Foundation/NSMapTable.h"
#import "GNUstepBase/NSStream+GNUstepBase.h"
/**
* Convenience methods used to add streams to the run loop.
*/
@interface NSRunLoop (NSStream)
- (void) addStream: (NSStream*)aStream mode: (NSString*)mode;
- (void) removeStream: (NSStream*)aStream mode: (NSString*)mode;
@end
@class NSMutableData;
#define IVARS \
{ \
id _delegate; /* Delegate controls operation. */\
NSMutableDictionary *_properties; /* storage for properties */\
BOOL _delegateValid; /* whether the delegate responds*/\
BOOL _scheduled; /* Are the loops sceduled? */\
NSError *_lastError; /* last error occured */\
NSStreamStatus _currentStatus;/* current status */\
NSMapTable *_loops; /* Run loops and their modes. */\
void *_loopID; /* file descriptor etc. */\
int _events; /* Signalled events. */\
}
/**
* GSInputStream and GSOutputStream both inherit methods from the
* GSStream class using 'behaviors', and must therefore share
* EXACTLY THE SAME initial ivar layout.
*/
@interface GSStream : NSStream
IVARS
/** Return description of current event mask.
*/
- (NSString*) _stringFromEvents;
@end
@interface GSAbstractServerStream : GSServerStream
IVARS
@end
@interface NSStream(Private)
/**
* Async notification
*/
- (void) _dispatch;
/**
* Return YES if the stream is opened, NO otherwise.
*/
- (BOOL) _isOpened;
/**
* Return previously set reference for IO in run loop.
*/
- (void*) _loopID;
/** Reset events in mask to allow them to be sent again.
*/
- (void) _resetEvents: (NSUInteger)mask;
/**
* Place the stream in all the scheduled runloops.
*/
- (void) _schedule;
/** Return YES if the stream is *actually* scheduled in one or more loops.
*/
- (BOOL) _scheduled;
/** Low level method to place the stream in the scheduled runloop.
* Must only be called by -_schedule and -scheduleInRunLoop:forMode:
*/
- (void) _scheduleInRunLoop: (NSRunLoop*)aRunLoop forMode: (NSString*)mode;
/**
* send an event to delegate
*/
- (void) _sendEvent: (NSStreamEvent)event;
/**
* send an event to delegate
*/
- (void) _sendEvent: (NSStreamEvent)event delegate: (id)delegate;
/**
* setter for IO event reference (file descriptor, file handle etc )
*/
- (void) _setLoopID: (void *)ref;
/**
* set the status to newStatus. an exception is error cannot
* be overwriten by closed
*/
- (void) _setStatus: (NSStreamStatus)newStatus;
/**
* record an error based on errno
*/
- (void) _recordError;
- (void) _recordError: (NSError*)anError;
/** Low level method to remove the stream from the scheduled runloop.
* Must only be called by -_sunchedule and -removeFromRunLoop:forMode:
*/
- (void) _removeFromRunLoop: (NSRunLoop*)aRunLoop forMode: (NSString*)mode;
/**
* say whether there is unhandled data for the stream.
*/
- (BOOL) _unhandledData;
/**
* Remove the stream from all the scheduled runloops.
*/
- (void) _unschedule;
/** Return name of event
*/
- (NSString*) stringFromEvent: (NSStreamEvent)e;
/** Return name of status
*/
- (NSString*) stringFromStatus: (NSStreamStatus)s;
@end
@interface GSInputStream : NSInputStream
IVARS
@end
@interface GSOutputStream : NSOutputStream
IVARS
@end
/**
* The concrete subclass of NSInputStream that reads from the memory
*/
@interface GSDataInputStream : GSInputStream
{
@private
NSData *_data;
unsigned long _pointer;
}
@end
/**
* The concrete subclass of NSOutputStream that writes to a buffer
*/
@interface GSBufferOutputStream : GSOutputStream
{
@private
uint8_t *_buffer;
unsigned _capacity;
unsigned long _pointer;
}
@end
/**
* The concrete subclass of NSOutputStream that writes to a variable sise buffer
*/
@interface GSDataOutputStream : GSOutputStream
{
@private
NSMutableData *_data;
unsigned long _pointer;
}
@end
#endif
|