I'm creating an NSInputStream from an NSData object but once created the stream reports NO for hasBytesAvailable:
NSData* data = [outputStream propertyForKey: NSStreamDataWrittenToMemoryStreamKey];
NSLog(@"creating stream with data 0x%x length %d", [data bytes], [data length]);
NSInputStream *insrm = [[NSInputStream alloc] initWithData:data];
[insrm open];
uint8_t* buf = NULL;
NSUInteger len;
BOOL result = [insrm getBuffer:&buf length:&len];
BOOL hasbytes = [insrm hasBytesAvailable];
NSLog(@"getBuffer:%d hasBytes:%d", result, hasbytes);
NSLog(@"created inputstream data %d len %d", buf, len);
Log:
[26797:20b] creating stream with data 0x7050000 length 34672
[26797:20b] getBuffer:0 hasBytes:0
[26797:20b] created inputstream data 0 len 0
What am I missing here?
This code will work for reading your stream:
getBuffer:length:
will return YES if you do not open the stream. However, it will not initially have valid values in buf or len. I think this is due to the fact that it is a non-blocking operation. Presumably values will be filled in later.In any case, if you want to block, use what I have above. If you do not want to block, you should schedule the input stream on the run loop and implement the delegate method
stream:handleEvent:
. However, even this does not guarantee that you will never block. Instead you might want to look for a library that offers another layer of abstraction and handles the stream on a separate thread for you.