]> sjero.net Git - wget/blobdiff - tests/HTTPServer.pm
[svn] Added support for Range header.
[wget] / tests / HTTPServer.pm
index 19375eff1a2fd389a48142d2459c8650c3038fa2..88224f4f9be1c5b456ba7f2d6478462dc146b3a3 100755 (executable)
@@ -16,23 +16,37 @@ my $CRLF = "\015\012"; # "\r\n" is not portable
 my $log = undef;
 
 sub run {
-    my ($self, $urls) = @_;
+    my ($self, $urls, $synch_callback) = @_;
+    my $initialized = 0;
+
+    while (1) {
+        if (!$initialized) {
+            $synch_callback->();
+            $initialized = 1;
+        }        
                                 
-    while (my $con = $self->accept) {
+        my $con = $self->accept();
+        print STDERR "Accepted a new connection\n" if $log;
         while (my $req = $con->get_request) {
-            print STDERR "Method: ", $req->method, "\n" if $log;
-            print STDERR "Path: ", $req->url->path, "\n" if $log;
-            foreach my $key (keys %{HTTPServer::urls}) {
-                print STDERR $key, '\n';
+            my $url_path = $req->url->path;
+            if ($url_path =~ m{/$}) {
+                $url_path .= 'index.html';
+            }
+            if ($log) {
+                print STDERR "Method: ", $req->method, "\n";
+                print STDERR "Path: ", $url_path, "\n";
+                print STDERR "Available URLs: ", "\n";
+                foreach my $key (keys %$urls) {
+                    print STDERR $key, "\n";
+                }
             }
-            if (exists($urls->{$req->url->path})) {
-                print STDERR "Serving requested URL: ", $req->url->path, "\n" if $log;
+            if (exists($urls->{$url_path})) {
+                print STDERR "Serving requested URL: ", $url_path, "\n" if $log;
                 next unless ($req->method eq "HEAD" || $req->method eq "GET");
                 
                 # create response
-                my $tmp = $urls->{$req->url->path};
-                my $resp = HTTP::Response->new ($tmp->{code},
-                                                $tmp->{msg});
+                my $tmp = $urls->{$url_path};
+                my $resp = HTTP::Response->new ($tmp->{code}, $tmp->{msg});
                 print STDERR "HTTP::Response: \n", $resp->as_string if $log;
                 
                 #if (is_dynamic_url) { # dynamic resource
@@ -51,7 +65,24 @@ sub run {
                             $con->send_basic_header($tmp->{code}, $resp->message, $resp->protocol);
                             print $con $resp->headers_as_string($CRLF);
                             print $con $CRLF;
-                            print $con $tmp->{content};                                
+                            print $con $tmp->{content};
+                            next;
+                        }
+                        if ($req->header("Range")) {
+                            $req->header("Range") =~ m/bytes=(\d*)-(\d*)/;
+                            my $content_len = length($tmp->{content});
+                            my $start = $1 ? $1 : 0;
+                            my $end = $2 ? $2 : ($content_len - 1);
+                            my $len = $2 ? ($2 - $start) : ($content_len - $start);
+                            $resp->header("Accept-Ranges" => "bytes");
+                            $resp->header("Content-Length" => $len);
+                            $resp->header("Content-Range" => "bytes $start-$end/$content_len");
+                            $resp->header("Keep-Alive" => "timeout=15, max=100");
+                            $resp->header("Connection" => "Keep-Alive");
+                            $con->send_basic_header(206, "Partial Content", $resp->protocol);
+                            print $con $resp->headers_as_string($CRLF);
+                            print $con $CRLF;
+                            print $con substr($tmp->{content}, $start, $len);
                             next;
                         }
                         # fill in content
@@ -63,12 +94,13 @@ sub run {
                 $con->send_response($resp);
                 print STDERR "HTTP::Response sent: \n", $resp->as_string if $log;
             } else {
-                print STDERR "Requested wrong URL: ", $req->url->path, "\n" if $log;
+                print STDERR "Requested wrong URL: ", $url_path, "\n" if $log;
                 $con->send_error($HTTP::Status::RC_FORBIDDEN);
-            }
+                last;
+            }            
         }
+        print STDERR "Closing connection\n" if $log;
         $con->close;
-        undef($con);
     }
 }