I am writing a webserver for a music sharing app ... when I have a large file (i.e an mp3) this does not work. It crashes on SIGPIPE error code. The header I am sending has "Connection: close" -- but I assumed this would wait until after the download finishes to close the connection. I know this should probably be forked into a thread but for testing i want to get it working synchronously.

NSData *fileData =[NSData dataWithContentsOfFile:filePath];

CFHTTPMessageRef response =
CFHTTPMessageCreateResponse(
                            kCFAllocatorDefault, 200, NULL, kCFHTTPVersion1_1);
CFHTTPMessageSetHeaderFieldValue(
                                 response, (CFStringRef)@"Content-Type", (CFStringRef)@"audio/mpeg");
CFHTTPMessageSetHeaderFieldValue(
                                 response, (CFStringRef)@"Connection", (CFStringRef)@"close");
CFHTTPMessageSetHeaderFieldValue(
                                 response,
                                 (CFStringRef)@"Content-Length",
                                 (CFStringRef)[NSString stringWithFormat:@"%ld", [fileData length]]);
CFDataRef headerData = CFHTTPMessageCopySerializedMessage(response);

@try
{
    [fileHandle writeData:(NSData *)headerData];
    [fileHandle writeData:fileData];
}@catch (NSException *exception)
{
    // Ignore the exception, it normally just means the client
    // closed the connection from the other end.
}
link|improve this question

52% accept rate
What type is the fileHandle variable? – Sam Nov 8 '11 at 23:57
feedback

2 Answers

A web server has to cope with the case where the client closes the connection early -- perhaps it has enough, or the page load or download was canceled. This can happen even when the server is written correctly. Have you looked at a packet capture of the conversation?

link|improve this answer
I thought the try catch block should handle this case. (edited to include this part of the code above) – user491880 Apr 27 '11 at 2:28
1  
SIGPIPE is a unix signal rather than an exception. You'll have to handle it on a per-process (your whole app) basis, it isn't something that you can catch locally. – Jon Hess Apr 27 '11 at 4:18
1  
I suppose you could say signal(SIGPIPE, SIG_IGN); in which case it would come back as an ordinary write failure -- again, this is per-process, so it would need to be done early on in main. – Jeffrey Hantin Apr 27 '11 at 22:31
feedback

You should check out How to prevent SIGPIPEs (or handle them properly).

This is a bit of a rehash, but basically use signal(SIGPIPE, SIG_IGN); when your app first launches. This will prevent the SIGPIPE from being signaled (i.e. your app won't crash). You usually do this when you want to handle the problem locally. You can check locally by doing something like:

if ([fileHandle writeData:(NSData *)headerData] > 0 &&
    [fileHandle writeData:fileData] > 0)
{
   // writes succeeded, ...
}
else
{
   // write failed for some reason
}

You can additionally check for errors using NSStream's streamError or streamStatus properties.

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.