/[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 67 by dpavlin, Thu Jul 30 21:31:30 2009 UTC revision 115 by dpavlin, Sun Aug 2 12:09:02 2009 UTC
# Line 19  use File::Slurp; Line 19  use File::Slurp;
19  use IO::Socket::INET;  use IO::Socket::INET;
20  use Module::Refresh;  use Module::Refresh;
21    
22  our $pids = { httpd => $$ };  our $pids;
23    $pids = { httpd => $$ } unless defined $pids; # keep pids on refresh
24    
25  sub DESTROY {  sub DESTROY {
26          warn "pids ",dump( $pids );          warn "pids ",dump( $pids );
# Line 36  our $debug = server::debug; Line 37  our $debug = server::debug;
37  our $url = "http://$server::ip:$port";  our $url = "http://$server::ip:$port";
38    
39  use html;  use html;
40    our $static_pids;
41    use progress_bar;
42    
43  sub static {  sub static {
44          my ($client,$path) = @_;          my ($client,$path) = @_;
# Line 44  sub static { Line 47  sub static {
47    
48          return if ! -f $full;          return if ! -f $full;
49    
50            if ( my $pid = fork ) {
51                    # parent
52                    close($client);
53                    print "http static child $pid\n";
54                    $static_pids->{$pid} = $path;
55                    return 1;
56            }
57    
58          my $type = 'application/octet-stream';          my $type = 'application/octet-stream';
59          $type = 'text/html' if $path =~ m{\.htm};          $type = 'text/html' if $path =~ m{\.htm};
60          $type = 'application/javascript' if $path =~ m{\.js};          $type = 'application/javascript' if $path =~ m{\.js};
# Line 54  sub static { Line 65  sub static {
65          print $client "HTTP/1.0 200 OK\r\nContent-Type: $type\r\nContent-Length: $size\r\nConnection: close\r\n\r\n";          print $client "HTTP/1.0 200 OK\r\nContent-Type: $type\r\nContent-Length: $size\r\nConnection: close\r\n\r\n";
66    
67          open(my $fh, $full);          open(my $fh, $full);
         print "static $path $type $size\n";  
68    
69          my $block = 8192;          my $block = 1400; # try not to fragment packages (pxelinux seems to have problems with it)
70          my $buff;          my $buff;
71          my $pos = 0;          my $pos = 0;
72    
73            warn "static $path $type $size block: $block\n";
74    
75            progress_bar::start;
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;
80                  $pos += $len;                  $pos += $len;
81                  printf "%s %d/%d %.2f%%\r", $path, $pos, $size, $pos * 100 / $size;                  progress_bar::tick( $path, $pos, $size );
82          }          }
83          close($fh);          close($fh);
84          close($client);          close($client);
85    
86          print "$path $pos == $size OK\n";          print STDERR "\n";
87    
88            warn "exit static child";
89    
90          return $path;          exit(0);
91  }  }
92    
93  use boolean;  use boolean;
# Line 84  sub start_stop { Line 101  sub start_stop {
101          my $daemon = shift;          my $daemon = shift;
102          my $pid = $pids->{$daemon};          my $pid = $pids->{$daemon};
103    
104          warn "start_stop $daemon $pid pids: ",dump( $pids );          warn "start_stop $daemon $pid\n";
105    
106          if ( $pid =~ m{^\d+$} ) {          if ( $pid =~ m{^\d+$} ) {
107                  warn "kill 9 $pid";                  my $pstree = `pstree -p $pid`;
108                  kill 9, $pid;                  my @pids = $pstree =~ m{\((\d+)\)}g;
109                    warn "pstree $pstree pids ",dump( @pids );
110                    kill 1, $_ foreach reverse @pids;
111                  $pids->{$daemon} = 'stopped';                  $pids->{$daemon} = 'stopped';
112                  return qq|$daemon pid $pid stopped|;                  return qq|$daemon pid $pid stopped|;
113          } else {          } else {
114                  if ( $pid = fork ) {                  if ( $pid = fork ) {
115                          # parent                          # parent
116                          $pids->{$daemon} = $pid;                          $pids->{$daemon} = $pid;
117                          warn "forked $daemon $pid";                          warn "forked $daemon $pid\n";
118                          return qq|$daemon pid $pid started|;                          return qq|$daemon pid $pid started|;
119                  } elsif ( defined $pid ) {                  } elsif ( defined $pid ) {
120                          # child                          # child
121                          my $eval = $daemon . '::start(' . ( @_ ? dump(@_) : '' ) . ')';                          my $invoke = 'start';
122                            $invoke = $1 if $daemon =~ s{/(.+)}{};
123                            my $eval = $daemon . '::' . $invoke . '(' . ( @_ ? dump(@_) : '' ) . ')';
124                          warn "eval $eval";                          warn "eval $eval";
125                          eval $eval;                          eval $eval;
126                          warn "can't start $daemon: $@" if $@;                          warn "can't start $daemon: $@" if $@;
# Line 116  my $redirect = qq|HTTP/1.1 302 Found\r\n Line 137  my $redirect = qq|HTTP/1.1 302 Found\r\n
137  sub get_request {  sub get_request {
138          my ( $client, $path, $param ) = @_;          my ( $client, $path, $param ) = @_;
139    
140          warn "get_request $client $path ",dump( $param );          warn "get_request $path ", $param ? dump( $param ) : '', "\n";
141    
142          if ( my $found = static( $client,$path ) ) {          if ( my $found = static( $client,$path ) ) {
143                  warn "static $found" if $debug;                  warn "static $found" if $debug;
# Line 132  sub get_request { Line 153  sub get_request {
153    
154                          'debug',        qq|<a href=/our/debug/| . boolean::toggle($debug) . qq|>$debug</a>|,                          'debug',        qq|<a href=/our/debug/| . boolean::toggle($debug) . qq|>$debug</a>|,
155                  );                  );
156                  foreach my $name ( %$pids ) {  
157                    my $debug_proc = '';
158    
159                    warn 'pids: ', dump( $pids ) if $debug;
160                    foreach my $name ( sort keys %$pids ) {
161                          my $pid = $pids->{$name} || next;                          my $pid = $pids->{$name} || next;
162    
163                            my $html = qq|<a href=/start_stop/$name>$pid</a>|;
164    
165                          my $proc = "/proc/$pid/status";                          my $proc = "/proc/$pid/status";
166    
167                          my $html = qq|<a href=/$name>$pid</a>|;                          if ( -e $proc ) {
168                          $html   .= qq|<pre style="font-size: 10%">|                                  if ( $debug ) {
169                                          .  ( $debug && -e $proc ? read_file($proc) : '' )                                          $html .= qq| <a name=$pid href=#proc-$pid>?</a>|;
170                                          .  qq|</pre>| if $debug;  
171                                            $debug_proc
172                                                    .= qq|<a name=proc-$pid href=#$pid>$proc</a><pre style="font-size: 10%">|
173                                                    .  read_file($proc)
174                                                    .  qq|</pre>|
175                                                    ;
176                                    }
177    
178                                    if ( $name->can('start_fork') ) {
179                                            $html .= qq| <a href=/start_stop/kvm/$_>$_</a>| foreach $name->start_fork;
180                                    }
181    
182                                    if ( $name->can('actions') ) {
183                                            $html .= qq| <a href=/action/kvm/$_>$_</a>| foreach $name->actions;
184                                    }
185                            }
186    
187                          push @rows, ( $name => $html );                          push @rows, ( $name => $html );
188                  }                  }
189    
190                  print $client $ok, html::table( 2, @rows );                  my $below_table = '';
191    
192                    warn 'static_pids: ', dump( $static_pids ) if $debug;
193                    foreach my $pid ( keys %$static_pids ) {
194                            my $path = $static_pids->{$pid};
195                            if ( -d "/proc/$pid" ) {
196                                    push @rows, ( $path => qq|<a href=/kill/static/$pid>$pid</a>| );
197                            } elsif ( $param->{clean_completed_downloads} ) {
198                                    delete $static_pids->{$pid}
199                            } else {
200                                    push @rows, ( $path => "$pid competed" );
201                                    $below_table = qq|<a href="/?clean_completed_downloads=1">clean completed downloads</a>|;
202                            }
203                    }
204    
205                    print $client $ok
206                            , html::table( 2, @rows )
207                            , $below_table
208                            , html::tabs( log::mac_changes )
209                            , $debug_proc
210                            ;
211    
212          } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {          } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {
213                  eval 'our $' . $1 . ' = ' . $2;                  eval 'our $' . $1 . ' = ' . $2;
214                  warn $@ if $@;                  warn $@ if $@;
215                  print $client $redirect, qq|<big>$1 = $2</big><br>Location: <a href="$url">$url</a>|;                  print $client $redirect, qq|<big>$1 = $2</big><br>Location: <a href="$url">$url</a>|;
216                  server::debug( $debug ) if $1 eq 'debug';                  server::debug( $debug ) if $1 eq 'debug';
217          } elsif ( $path =~ m{^/(screen|kvm)} ) {          } elsif ( $path =~ m{^/start_stop/((?:screen|kvm).*)} ) { # XXX we don't want to stop all classes
218                  print $client $redirect, start_stop($1);                  print $client $redirect, start_stop($1);
219            } elsif ( $path =~ m{^/action/([^/]+)/(.+)} ) {
220                    $1->$2();
221                    print $client $redirect;
222            } elsif ( $path =~ m{^/kill/static/(\d+)} ) {
223                    print $client $redirect;
224                    kill 1, $1 || kill 9, $2 && warn "killed $1";
225          } elsif ( $path eq '/exit' ) {          } elsif ( $path eq '/exit' ) {
226  #               DESTROY;  #               DESTROY;
227                  exit 0;                  exit 0;
# Line 206  sub start { Line 275  sub start {
275                                  }                                  }
276                                  warn "param: ",dump( $param ) if $debug;                                  warn "param: ",dump( $param ) if $debug;
277                          }                          }
                         warn "path $path param: ",dump( $param );  
278                          get_request $client, $path, $param;                          get_request $client, $path, $param;
279                  } else {                  } else {
280                          print $client "HTTP/1.0 500 No method\r\nConnection: close\r\nContent-type: text/plain\r\n\r\n500 $request";                          print $client "HTTP/1.0 500 No method\r\nConnection: close\r\nContent-type: text/plain\r\n\r\n500 $request";

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

  ViewVC Help
Powered by ViewVC 1.1.26