/[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 53 by dpavlin, Thu Jul 30 12:10:53 2009 UTC revision 57 by dpavlin, Thu Jul 30 14:16:59 2009 UTC
# Line 18  use File::Slurp; Line 18  use File::Slurp;
18  #use JSON;  #use JSON;
19  use IO::Socket::INET;  use IO::Socket::INET;
20  use Module::Refresh;  use Module::Refresh;
 use Parallel::ForkManager;  
21    
22  our $port = 7777;  our $port = 7777;
23  our $debug = 1;  our $debug = 1;
24    
 my $pm = Parallel::ForkManager->new(10);  
   
 our $screen_pid;  
   
25  use server;  use server;
26  our $url = "http://$server::ip:$port/";  our $url = "http://$server::ip:$port/";
27    
# Line 59  sub static { Line 54  sub static {
54  my $ok = "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n";  my $ok = "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n";
55    
56  use boolean;  use boolean;
57    
58  use screen;  use screen;
59    use kvm;
60    our $pids;
61    
62    $SIG{CHLD} = 'IGNORE';
63    
64    sub start_stop {
65            my $daemon = shift;
66            my $pid = $pids->{$daemon};
67    
68            warn "start_stop $daemon pids: ",dump( $pids );
69    
70            if ( $pid ) {
71                    warn "kill 9 $pid";
72                    kill 9, $pid;
73                    delete $pids->{$daemon};
74                    return qq|$daemon pid $pid stopped|;
75            } else {
76                    if ( $pid = fork ) {
77                            # parent
78                            $pids->{$daemon} = $pid;
79                            warn "forked $daemon $pid";
80                            return qq|$daemon pid $pid started|;
81                    } elsif ( defined $pid ) {
82                            # child
83                            my $eval = $daemon . '::start';
84                            warn "eval $eval";
85                            eval $eval;
86                            warn "can't start $daemon: $@" if $@;
87                            exit;
88                    } else {
89                            die "fork error $!";
90                    }
91            }
92    }
93    
94  sub get_request {  sub get_request {
95          my ( $client, $path, $param ) = @_;          my ( $client, $path, $param ) = @_;
# Line 70  sub get_request { Line 100  sub get_request {
100                  warn "static $found" if $debug;                  warn "static $found" if $debug;
101          } elsif ( $path eq '/' ) {          } elsif ( $path eq '/' ) {
102    
103                  my $screen = $screen_pid ? qq|stop <tt>$screen_pid</tt>| : 'start';                  my $screen = $pids->{screen} ? qq|stop <tt>$pids->{screen}</tt>|        : 'start';
104                    my $kvm    = $pids->{kvm}    ? qq|stop <tt>$pids->{kvm}</tt>|           :
105                                             $pids->{screen} ? qq|start|                                                    : qq|start screen first|;
106    
107                  print $client $ok,                  print $client $ok,
108                  html::table( 2,                  html::table( 2,
109                          'pid',   $$,                          'pid',    $$,
110                          'debug', qq|<a href=/our/debug/| . boolean::toggle($debug) . qq|>$debug</a>|,                          'debug',  qq|<a href=/our/debug/| . boolean::toggle($debug) . qq|>$debug</a>|,
111                          'screen', qq|<a href=/screen>$screen</a>|,                          'screen', qq|<a href=/screen>$screen</a>|,
112                            'kvm',    qq|<a href=/kvm>$kvm</a>|,
113                  );                  );
114    
115          } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {          } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {
116                  eval 'our $' . $1 . ' = ' . $2;                  eval 'our $' . $1 . ' = ' . $2;
117                  warn $@ if $@;                  warn $@ if $@;
118                  print $client qq|HTTP/1.1 302 Found\r\nLocation: $url\r\nContent-type: text/html\r\n\r\n<big>$1 = $2</big><br>Location: <a href="$url">$url</a>|;                  print $client qq|HTTP/1.1 302 Found\r\nLocation: $url\r\nContent-type: text/html\r\n\r\n<big>$1 = $2</big><br>Location: <a href="$url">$url</a>|;
119          } elsif ( $path =~ m{^/screen} ) {          } elsif ( $path =~ m{^/(screen|kvm)} ) {
120                    print $client $ok, start_stop($1);
                 if ( $screen_pid ) {  
                         if ( ! kill $screen_pid ) {  
                                 warn "kill -9 $screen_pid";  
                                 if ( kill 9, $screen_pid ) {  
                                         print $client $ok, qq|screen pid $screen_pid stopped|;  
                                         $screen_pid = 0;  
                                 } else {  
                                         print $client $ok, qq|can't stop screen $screen_pid: $!|;  
                                 }  
                         }  
                 } else {  
                         if ( $screen_pid = $pm->start ) {  
                                 print $client $ok, qq|screen started pid $screen_pid|;  
                         } else {  
                                 screen::start;  
                                 $pm->finish;  
                         }  
                 }  
   
121          } elsif ( $path =~ m{/boot} ) {          } elsif ( $path =~ m{/boot} ) {
122                  print $client qq{$ok                  print $client qq{$ok
123  #!gpxe  #!gpxe

Legend:
Removed from v.53  
changed lines
  Added in v.57

  ViewVC Help
Powered by ViewVC 1.1.26