I am looking for a way to add a timeout to a CFHTTP request. It seems like there should be a feature of the CFHTTPMessage or the CFReadStream object, but I can't find it. Do I have to roll my own timer on the run loop or something? (if so, any code for this?)

Thanks!

link|improve this question

67% accept rate
feedback

2 Answers

up vote 0 down vote accepted

Unless you have a special reason for using CFHTTPMessage I'd recommend using a higher level class such as ASIHTTPRequest which gives you added ease of use including timeouts.

link|improve this answer
Roger, I did look @ ASIHTTPRequest and it looks great, except there's one thing I need it to do that it doesn't -- which is stream data from a CFReadStream object. (I could add a patch I s'pose...) – sehugg Jun 8 '09 at 9:37
You should drop Ben at All seeing eye a line. He answers his mail and is a nice guy. If you have a patch, I'm sure he'd take it. – Roger Nolan Jun 9 '09 at 8:59
ASIHTTPRequest does use an NSInputStream for the request body when posting files from an ASIFormDataRequest, and also whenever shouldStreamPostDataFromDisk is true. If your CFReadStream is reading from a file on disk, just use setPostBodyFilePath: and it'll do the rest. If not, it shouldn't be too tough to patch it to use your CFReadStream instead, but drop me a msg (my email is on the website) if you need a hand. – pokeb Jun 9 '09 at 12:02
Thanks for the offer -- I ended up using NSURLConnection for everything except the POST, which I augmented with a NSTimer. Kind of a cop-out but I already had the code and some unit tests :P Next time I will start with ASIHTTPRequest in the first place! – sehugg Jun 10 '09 at 15:31
Just FYI, I finally got around to extending ASIHTTPRequest and it was quite simply to make it take a stream instead of file or buffer. I used socketpair() to make a write stream that could be written from a different thread. Let me know if you are interested in code. Thanks :) – sehugg Jan 30 '10 at 1:43
show 2 more comments
feedback

Try this, readStream is your CFReadStreamRef:

#define _kCFStreamPropertyReadTimeout CFSTR("_kCFStreamPropertyReadTimeout")

double to = 15; // 15s timeout
CFNumberRef num = CFNumberCreate(kCFAllocatorDefault, kCFNumberDoubleType, &to);
CFReadStreamSetProperty(readStream, _kCFStreamPropertyReadTimeout, num);
CFRelease(num);

Constant for write timeout is _kCFStreamPropertyWriteTimeout

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.