-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathASIInputStream.m
More file actions
275 lines (226 loc) · 7.11 KB
/
ASIInputStream.m
File metadata and controls
275 lines (226 loc) · 7.11 KB
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
//
// ASIInputStream.m
// Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest
//
// Created by Ben Copsey on 10/08/2009.
// Copyright 2009 All-Seeing Interactive. All rights reserved.
//
#import "ASIInputStream.h"
#import "ASIHTTPRequest.h"
#import <objc/runtime.h>
// Used to ensure only one request can read data at once
static NSLock *readLock = nil;
@implementation ASIInputStream
+ (void)initialize
{
if (self == [ASIInputStream class]) {
readLock = [[NSLock alloc] init];
}
}
+ (id)inputStreamWithFileAtPath:(NSString *)path request:(ASIHTTPRequest *)theRequest
{
ASIInputStream *theStream = [[[ASIInputStream alloc] initWithInputStream:[NSInputStream inputStreamWithFileAtPath:path]] autorelease];
[theStream setRequest:theRequest];
return theStream;
}
+ (id)inputStreamWithData:(NSData *)data request:(ASIHTTPRequest *)theRequest
{
ASIInputStream *theStream = [[[ASIInputStream alloc] initWithInputStream:[NSInputStream inputStreamWithData:data]] autorelease];
[theStream setRequest:theRequest];
return theStream;
}
#pragma mark - Object lifecycle
- (id)initWithInputStream:(NSInputStream *)aStream
{
self = [super init];
if (self) {
// Initialization code here.
stream = [aStream retain];
[stream setDelegate:self];
[self setDelegate:self];
}
return self;
}
- (void)dealloc
{
[stream release];
[super dealloc];
}
#pragma mark - NSStream subclass methods
- (void)open
{
[stream open];
}
- (void)close
{
[stream close];
}
- (id <NSStreamDelegate> )delegate
{
return delegate;
}
- (void)setDelegate:(id<NSStreamDelegate>)aDelegate
{
if (aDelegate == nil) {
delegate = self;
}
else {
delegate = aDelegate;
}
}
- (void)scheduleInRunLoop:(NSRunLoop *)aRunLoop forMode:(NSString *)mode
{
[stream scheduleInRunLoop:aRunLoop forMode:mode];
}
- (void)removeFromRunLoop:(NSRunLoop *)aRunLoop forMode:(NSString *)mode
{
[stream removeFromRunLoop:aRunLoop forMode:mode];
}
- (id)propertyForKey:(NSString *)key
{
return [stream propertyForKey:key];
}
- (BOOL)setProperty:(id)property forKey:(NSString *)key
{
return [stream setProperty:property forKey:key];
}
- (NSStreamStatus)streamStatus
{
return [stream streamStatus];
}
- (NSError *)streamError
{
return [stream streamError];
}
#pragma mark - NSInputStream subclass methods
// Called when CFNetwork wants to read more of our request body
// When throttling is on, we ask ASIHTTPRequest for the maximum amount of data we can read
- (NSInteger)read:(uint8_t *)buffer maxLength:(NSUInteger)len
{
[readLock lock];
unsigned long toRead = len;
if ([ASIHTTPRequest isBandwidthThrottled]) {
toRead = [ASIHTTPRequest maxUploadReadLength];
if (toRead > len) {
toRead = len;
} else if (toRead == 0) {
toRead = 1;
}
[request performThrottling];
}
[readLock unlock];
NSInteger rv = [stream read:buffer maxLength:toRead];
if (rv > 0)
[ASIHTTPRequest incrementBandwidthUsedInLastSecond:(unsigned long)rv];
return rv;
}
- (BOOL)getBuffer:(uint8_t **)buffer length:(NSUInteger *)len
{
// We cannot implement our character-counting in O(1) time,
// so we return NO as indicated in the NSInputStream
// documentation.
return NO;
}
- (BOOL)hasBytesAvailable
{
return [stream hasBytesAvailable];
}
#pragma mark - Undocumented CFReadStream bridged methods
+ (BOOL)resolveInstanceMethod:(SEL) selector
{
NSString *name = NSStringFromSelector(selector);
if ([name hasPrefix:@"_"]){
name = [name substringFromIndex:1];
SEL aSelector = NSSelectorFromString(name);
Method method = class_getInstanceMethod(self, aSelector);
if (method)
{
class_addMethod(self,
selector,
method_getImplementation(method),
method_getTypeEncoding(method));
return YES;
}
}
return [super resolveInstanceMethod:selector];
}
- (void)scheduleInCFRunLoop:(CFRunLoopRef)aRunLoop forMode:(CFStringRef)aMode
{
CFReadStreamScheduleWithRunLoop((CFReadStreamRef)stream, aRunLoop, aMode);
}
- (BOOL)setCFClientFlags:(CFOptionFlags)inFlags callback:(CFReadStreamClientCallBack)inCallback context:(CFStreamClientContext *)inContext
{
if (inCallback != NULL) {
requestedEvents = inFlags;
copiedCallback = inCallback;
memcpy(&copiedContext, inContext, sizeof(CFStreamClientContext));
if (copiedContext.info && copiedContext.retain) {
copiedContext.retain(copiedContext.info);
}
}
else {
requestedEvents = kCFStreamEventNone;
copiedCallback = NULL;
if (copiedContext.info && copiedContext.release) {
copiedContext.release(copiedContext.info);
}
memset(&copiedContext, 0, sizeof(CFStreamClientContext));
}
return YES;
}
- (void)unscheduleFromCFRunLoop:(CFRunLoopRef)aRunLoop forMode:(CFStringRef)aMode
{
CFReadStreamUnscheduleFromRunLoop((CFReadStreamRef)stream, aRunLoop, aMode);
}
#pragma mark - NSStreamDelegate methods
- (void)stream:(NSStream *)aStream handleEvent:(NSStreamEvent)eventCode
{
assert(aStream == stream);
switch (eventCode) {
case NSStreamEventOpenCompleted:
if (requestedEvents & kCFStreamEventOpenCompleted) {
copiedCallback((CFReadStreamRef)self,
kCFStreamEventOpenCompleted,
copiedContext.info);
}
break;
case NSStreamEventHasBytesAvailable:
if (requestedEvents & kCFStreamEventHasBytesAvailable) {
copiedCallback((CFReadStreamRef)self,
kCFStreamEventHasBytesAvailable,
copiedContext.info);
}
break;
case NSStreamEventErrorOccurred:
if (requestedEvents & kCFStreamEventErrorOccurred) {
copiedCallback((CFReadStreamRef)self,
kCFStreamEventErrorOccurred,
copiedContext.info);
}
break;
case NSStreamEventEndEncountered:
if (requestedEvents & kCFStreamEventEndEncountered) {
copiedCallback((CFReadStreamRef)self,
kCFStreamEventEndEncountered,
copiedContext.info);
}
break;
case NSStreamEventHasSpaceAvailable:
// This doesn't make sense for a read stream
break;
default:
break;
}
}
// If we get asked to perform a method we don't have (probably internal ones),
// we'll just forward the message to our stream
- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
{
return [stream methodSignatureForSelector:aSelector];
}
- (void)forwardInvocation:(NSInvocation *)anInvocation
{
[anInvocation invokeWithTarget:stream];
}
@synthesize request;
@end