blob: 6f95dd542ca57504fd9e3b7880c4c7a42847a020 (
plain)
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
|
/* Copyright 2014 Google Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
#import "GTMReadMonitorInputStream.h"
@implementation GTMReadMonitorInputStream {
NSInputStream *_inputStream; // Encapsulated stream that does the work.
NSThread *_thread; // Thread in which this object was created.
NSArray *_runLoopModes; // Modes for calling callbacks, when necessary.
}
@synthesize readDelegate = _readDelegate;
@synthesize readSelector = _readSelector;
@synthesize runLoopModes = _runLoopModes;
// We'll forward all unhandled messages to the NSInputStream class or to the encapsulated input
// stream. This is needed for all messages sent to NSInputStream which aren't handled by our
// superclass; that includes various private run loop calls.
+ (NSMethodSignature *)methodSignatureForSelector:(SEL)selector {
return [NSInputStream methodSignatureForSelector:selector];
}
+ (void)forwardInvocation:(NSInvocation*)invocation {
[invocation invokeWithTarget:[NSInputStream class]];
}
- (BOOL)respondsToSelector:(SEL)selector {
return [_inputStream respondsToSelector:selector];
}
- (NSMethodSignature*)methodSignatureForSelector:(SEL)selector {
return [_inputStream methodSignatureForSelector:selector];
}
- (void)forwardInvocation:(NSInvocation*)invocation {
[invocation invokeWithTarget:_inputStream];
}
#pragma mark -
+ (instancetype)inputStreamWithStream:(NSInputStream *)input {
return [[self alloc] initWithStream:input];
}
- (instancetype)initWithStream:(NSInputStream *)input {
self = [super init];
if (self) {
_inputStream = input;
_thread = [NSThread currentThread];
}
return self;
}
- (instancetype)init {
[self doesNotRecognizeSelector:_cmd];
return nil;
}
#pragma mark -
- (NSInteger)read:(uint8_t *)buffer maxLength:(NSUInteger)len {
// Read from the encapsulated stream.
NSInteger numRead = [_inputStream read:buffer maxLength:len];
if (numRead > 0) {
if (_readDelegate && _readSelector) {
// Call the read selector with the buffer and number of bytes actually read into it.
BOOL isOnOriginalThread = [_thread isEqual:[NSThread currentThread]];
if (isOnOriginalThread) {
// Invoke immediately.
NSData *data = [NSData dataWithBytesNoCopy:buffer
length:(NSUInteger)numRead
freeWhenDone:NO];
[self invokeReadSelectorWithBuffer:data];
} else {
// Copy the buffer into an NSData to be retained by the performSelector,
// and invoke on the proper thread.
SEL sel = @selector(invokeReadSelectorWithBuffer:);
NSData *data = [NSData dataWithBytes:buffer length:(NSUInteger)numRead];
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
if (_runLoopModes) {
[self performSelector:sel
onThread:_thread
withObject:data
waitUntilDone:NO
modes:_runLoopModes];
} else {
[self performSelector:sel
onThread:_thread
withObject:data
waitUntilDone:NO];
}
#pragma clang diagnostic pop
}
}
}
return numRead;
}
- (void)invokeReadSelectorWithBuffer:(NSData *)data {
const void *buffer = data.bytes;
int64_t length = (int64_t)data.length;
id argSelf = self;
id readDelegate = _readDelegate;
if (readDelegate) {
NSMethodSignature *signature = [readDelegate methodSignatureForSelector:_readSelector];
NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:signature];
[invocation setSelector:_readSelector];
[invocation setTarget:readDelegate];
[invocation setArgument:&argSelf atIndex:2];
[invocation setArgument:&buffer atIndex:3];
[invocation setArgument:&length atIndex:4];
[invocation invoke];
}
}
- (BOOL)getBuffer:(uint8_t **)buffer length:(NSUInteger *)len {
return [_inputStream getBuffer:buffer length:len];
}
- (BOOL)hasBytesAvailable {
return [_inputStream hasBytesAvailable];
}
#pragma mark Standard messages
// Pass expected messages to our encapsulated stream.
//
// We want our encapsulated NSInputStream to handle the standard messages;
// we don't want the superclass to handle them.
- (void)open {
[_inputStream open];
}
- (void)close {
[_inputStream close];
}
- (id)delegate {
return [_inputStream delegate];
}
- (void)setDelegate:(id)delegate {
[_inputStream setDelegate:delegate];
}
- (id)propertyForKey:(NSString *)key {
return [_inputStream propertyForKey:key];
}
- (BOOL)setProperty:(id)property forKey:(NSString *)key {
return [_inputStream setProperty:property forKey:key];
}
- (void)scheduleInRunLoop:(NSRunLoop *)aRunLoop forMode:(NSString *)mode {
[_inputStream scheduleInRunLoop:aRunLoop forMode:mode];
}
- (void)removeFromRunLoop:(NSRunLoop *)aRunLoop forMode:(NSString *)mode {
[_inputStream removeFromRunLoop:aRunLoop forMode:mode];
}
- (NSStreamStatus)streamStatus {
return [_inputStream streamStatus];
}
- (NSError *)streamError {
return [_inputStream streamError];
}
@end
|