vote up 0 vote down star

The following code snippet reads HTTP response. Say the response doesn't contain a Content-Length header and the Content-Type is not text/html, how would one terminate the while loop?

(1. Don't worry about chunked transfer encoding 2. No IO::Socket)


    while(defined($line = <SOCK>))
    {
    	$data .= $line;

    	if($line =~ /Content-length:/isg)
    	{
    		($cl) = $line =~ /Content-Length: ([0-9]+)/i;
    	}

    	$line =~ s/\n//g;
    	$line =~ s/\r//g;
    	if($line eq '' && $cl)
    	{
    		read(SOCK, $data, $cl, length($data));
    		last;
    	}
    	if($line =~ /<\/html>/) { last; }
    }
flag
You don't have to check for defined ness, it automatically gets checked for you. – Brad Gilbert Nov 4 at 0:33
If you are assigning to your own variable in a while(), the defined check is not implicit. It's only implicit when you have the readline operator by itself. – brian d foy Nov 4 at 14:48
Based on comments, I think you might have a different problem. Do you really care if there is a content length, or do you just want to know when you have everything? For instance, if the server is set up for keep-alive, once you finish one request, you can make another on the same connection. If that's happening, I think you have a different question. – brian d foy Nov 4 at 15:02
I just wanted to know when I have everything, don't really care about content-length as a matter of fact. – Murali Nov 6 at 17:25

3 Answers

vote up 0 vote down

If you don't want to read from the socket anymore, just don't read from the socket. If you want to close the socket, just close it. If you want the server to close the connection when it's done serving your request, ensure you send the 'Connection: close' header with your request.

If you think you might hurt the server's feelings, you can just read everything that's left and not do anything with it. However, this gives the server a chance to stream endless gobs of data at you, keeping your socket open forever.

IF you really need to process it yourself in your code, you probably want to handle the header and message body separately. Once you see the complete header, you can check that it had the fields you need. If not, you close the sock and return:

 sub read_sock {
    HEADER: while( <SOCK> ) {
      last if /^[\r\n]+$/; # blank line terminating header

      ... parse header lines into %headers...
      }

    unless( exists $headers{'content-length'} ) {
       warn "No Content-Length! Stopping!\n";
       close SOCK;
       return;
       }

    MESSAGE_BODY: while( <SOCK> ) {
      ... read(), etc ...
      }

    return $message_body;
 }

There's probably a better way to do that with LWP::UserAgent though. You can define your own content handler and do whatever you like in it.

link|flag
Brian, I must read everything that the server sends, for example a response with download headers with no content-length, yes there is a potential that the server could send endless amounts of data. I cannot stop just because I don't see a content-length header, since it is still a legal HTTP response.Yes, LWP useragent would work but I am using it in an env where LWP is not available. – Murali Nov 6 at 17:41
vote up 2 vote down

If there is no Content-Length, and the server is not using chunked transfer encoding, the data ends when the server closes the socket (you will get an EOF). For details, see the relevant section in the HTTP spec: http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.4

The real problem in your code sample is it:

  1. Fails to handle the case of a header merely ending with 'content-length', as in X-Not-Really-Content-Length:
  2. Never enters the read at all if $cl is zero or undefined (this is probably what you're seeing!). Since you say it breaks when there's no Content-Length header, what happens is $cl stays undefined and you never enter your read block.

Since this is perl, you might want to take a look at LWP, which handles a lot of the tricky parts of HTTP processing.

link|flag
that is what I thought too, I am not getting an EOF and the while loop never terminates! – Murali Nov 3 at 23:47
Are you getting chunked encoding? It wont use chunked encoding if you make an http/1.0 request. – davidsheldon Nov 4 at 0:07
No, I know for sure the server doesn't send chunked encoding, that is why I mentioned that in my question. – Murali Nov 4 at 0:19
Can you show the actual response headers then? – Remy Lebeau - TeamB Nov 4 at 1:12
@Murali, see my edit - there's a few big bugs in your code :) – bdonlan Nov 4 at 4:19
show 4 more comments
vote up 0 vote down

If there's no content-length header then you have three options:

  1. Some kind of flag in the data that tells you when it's complete
  2. Timeout
  3. Wait for the server to close the socket

none of which is very robust.

link|flag
3  
Browsers do not rely on #2. The rules for detecting the end of the data are well defined by the relevant RFCs for the HTTP protocol, and include #1 and #3. – Remy Lebeau - TeamB Nov 4 at 1:14

Your Answer

Get an OpenID
or

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