/[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 78 by dpavlin, Fri Jul 31 14:43:30 2009 UTC revision 88 by dpavlin, Fri Jul 31 18:16:14 2009 UTC
# Line 111  sub start_stop { Line 111  sub start_stop {
111                          return qq|$daemon pid $pid started|;                          return qq|$daemon pid $pid started|;
112                  } elsif ( defined $pid ) {                  } elsif ( defined $pid ) {
113                          # child                          # child
114                          my $eval = $daemon . '::start(' . ( @_ ? dump(@_) : '' ) . ')';                          my $invoke = 'start';
115                            $invoke = $1 if $daemon =~ s{/(.+)}{};
116                            my $eval = $daemon . '::' . $invoke . '(' . ( @_ ? dump(@_) : '' ) . ')';
117                          warn "eval $eval";                          warn "eval $eval";
118                          eval $eval;                          eval $eval;
119                          warn "can't start $daemon: $@" if $@;                          warn "can't start $daemon: $@" if $@;
# Line 148  sub get_request { Line 150  sub get_request {
150                  my $debug_proc;                  my $debug_proc;
151    
152                  warn 'pids: ', dump( $pids ) if $debug;                  warn 'pids: ', dump( $pids ) if $debug;
153                  foreach my $name ( keys %$pids ) {                  foreach my $name ( sort keys %$pids ) {
154                          my $pid = $pids->{$name} || next;                          my $pid = $pids->{$name} || next;
155    
156                          my $html = qq|<a href=/$name>$pid</a>|;                          my $html = qq|<a href=/$name>$pid</a>|;
157    
158                          if ( $debug ) {                          my $proc = "/proc/$pid/status";
                                 $html .= qq| <a name=$pid href=#proc-$pid>?</a>|;  
159    
160                                  my $proc = "/proc/$pid/status";                          if ( -e $proc ) {
161                                  $debug_proc                                  if ( $debug ) {
162                                          .= qq|<a name=proc-$pid href=#$pid>$proc</a><pre style="font-size: 10%">|                                          $html .= qq| <a name=$pid href=#proc-$pid>?</a>|;
163                                          .  read_file($proc)  
164                                          .  qq|</pre>|                                          $debug_proc
165                                          if -e $proc;                                                  .= qq|<a name=proc-$pid href=#$pid>$proc</a><pre style="font-size: 10%">|
166                                                    .  read_file($proc)
167                                                    .  qq|</pre>|
168                                                    ;
169                                    }
170    
171                                    if ( $name->can('start_fork') ) {
172                                            $html .= qq| <a href=/start_stop/kvm/$_>$_</a>| foreach $name->start_fork;
173                                    }
174    
175                                    if ( $name->can('actions') ) {
176                                            $html .= qq| <a href=/action/kvm/$_>$_</a>| foreach $name->actions;
177                                    }
178                          }                          }
179    
180                          push @rows, ( $name => $html );                          push @rows, ( $name => $html );
# Line 188  sub get_request { Line 201  sub get_request {
201                  warn $@ if $@;                  warn $@ if $@;
202                  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>|;
203                  server::debug( $debug ) if $1 eq 'debug';                  server::debug( $debug ) if $1 eq 'debug';
204          } elsif ( $path =~ m{^/(screen|kvm)} ) {          } elsif ( $path =~ m{^/start_stop/((?:screen|kvm).*)} ) {
205                  print $client $redirect, start_stop($1);                  print $client $redirect, start_stop($1);
206            } elsif ( $path =~ m{^/action/([^/]+)/(.+)} ) {
207                    $1->$2();
208                    print $client $redirect;
209          } elsif ( $path =~ m{^/kill/static/(\d+)} ) {          } elsif ( $path =~ m{^/kill/static/(\d+)} ) {
210                  print $client $redirect;                  print $client $redirect;
211                  kill 9, $1 && warn "killed $1";                  kill 1, $1 || kill 9, $2 && warn "killed $1";
212          } elsif ( $path eq '/exit' ) {          } elsif ( $path eq '/exit' ) {
213  #               DESTROY;  #               DESTROY;
214                  exit 0;                  exit 0;

Legend:
Removed from v.78  
changed lines
  Added in v.88

  ViewVC Help
Powered by ViewVC 1.1.26