/[pxelator]/lib/PXElator/httpd.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /lib/PXElator/httpd.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 107 by dpavlin, Sat Aug 1 00:44:52 2009 UTC revision 115 by dpavlin, Sun Aug 2 12:09:02 2009 UTC
# Line 38  our $url = "http://$server::ip:$port"; Line 38  our $url = "http://$server::ip:$port";
38    
39  use html;  use html;
40  our $static_pids;  our $static_pids;
41    use progress_bar;
 use Time::HiRes qw/time/;  
42    
43  sub static {  sub static {
44          my ($client,$path) = @_;          my ($client,$path) = @_;
# Line 71  sub static { Line 70  sub static {
70          my $buff;          my $buff;
71          my $pos = 0;          my $pos = 0;
72    
         STDERR->autoflush(1);  
73          warn "static $path $type $size block: $block\n";          warn "static $path $type $size block: $block\n";
74    
75          my $start_t = time();          progress_bar::start;
         my $last_t = $start_t;  
76    
77          while( my $len = read $fh, $buff, $block ) {          while( my $len = read $fh, $buff, $block ) {
78                  print $client $buff;                  print $client $buff;
79                  $client->flush;                  $client->flush;
80                  $pos += $len;                  $pos += $len;
81                  my $t = time();                  progress_bar::tick( $path, $pos, $size );
                 next unless $t - $last_t > 0.75;  
                 $last_t = $t;  
                 my $speed = ( $pos ) / ( $t - $start_t );  
                 printf STDERR "%s %d/%d %.2f%% %.2f K/s ETA %.1fs   \r"  
                         , $path, $pos  
                         , $size, $pos * 100 / $size  
                         , $speed / 1024  
                         , ( $size - $pos ) / $speed  
                         ;  
82          }          }
83          close($fh);          close($fh);
84          close($client);          close($client);

Legend:
Removed from v.107  
changed lines
  Added in v.115

  ViewVC Help
Powered by ViewVC 1.1.26