/[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 77 by dpavlin, Fri Jul 31 14:42:45 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 $pids;
23  our $debug = 1;  $pids = { httpd => $$ } unless defined $pids; # keep pids on refresh
24    
25  my $pm = Parallel::ForkManager->new(10);  sub DESTROY {
26            warn "pids ",dump( $pids );
27            foreach ( values %$pids ) {
28                    warn "kill $_";
29                    kill 1,$_ || kill 9, $_;
30            }
31    }
32    
33  our $screen_pid;  our $port = 7777;
34    
35  use server;  use server;
36  our $url = "http://$server::ip:$port/";  our $debug = server::debug;
37    our $url = "http://$server::ip:$port";
38    
39  use html;  use html;
40    our $static_pids;
41    
42  sub static {  sub static {
43          my ($client,$path) = @_;          my ($client,$path) = @_;
44    
45          $path = "tftp/$path";          my $full = "$server::base_dir/tftp/$path";
46    
47            return if ! -f $full;
48    
49          if ( ! -e $path ||  -d $path ) {          if ( my $pid = fork ) {
50                  print $client "HTTP/1.0 404 $path not found\r\n";                  # parent
51                  return;                  close($client);
52                    print "http static child $pid\n";
53                    $static_pids->{$pid} = $path;
54                    return 1;
55          }          }
56    
57          my $type = 'text/plain';          my $type = 'application/octet-stream';
58          $type = 'text/html' if $path =~ m{\.htm};          $type = 'text/html' if $path =~ m{\.htm};
59          $type = 'application/javascript' if $path =~ m{\.js};          $type = 'application/javascript' if $path =~ m{\.js};
60            $type = 'text/plain' if $path =~ m{\.txt};
61    
62            my $size = -s $full || return;
63    
64            print $client "HTTP/1.0 200 OK\r\nContent-Type: $type\r\nContent-Length: $size\r\nConnection: close\r\n\r\n";
65    
66            open(my $fh, $full);
67            print "static $path $type $size\n";
68    
69            my $block = 8192;
70            my $buff;
71            my $pos = 0;
72    
73          print $client "HTTP/1.0 200 OK\r\nContent-Type: $type\r\nContent-Length: ", -s $path,"\r\n\r\n";          while( my $len = read $fh, $buff, $block ) {
74          open(my $html, $path);                  print $client $buff;
75          while(<$html>) {                  $pos += $len;
76                  print $client $_;                  printf "%s %d/%d %.2f%%\r", $path, $pos, $size, $pos * 100 / $size;
77          }          }
78          close($html);          close($fh);
79            close($client);
80    
81          return $path;          print "$path $pos == $size OK\n";
 }  
82    
83  my $ok = "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n";          exit;
84    }
85    
86  use boolean;  use boolean;
87    
88  use screen;  use screen;
89    use kvm;
90    
91    $SIG{CHLD} = 'IGNORE';
92    
93    sub start_stop {
94            my $daemon = shift;
95            my $pid = $pids->{$daemon};
96    
97            warn "start_stop $daemon $pid pids: ",dump( $pids );
98    
99            if ( $pid =~ m{^\d+$} ) {
100                    my $pstree = `pstree -p $pid`;
101                    my @pids = $pstree =~ m{\((\d+)\)}g;
102                    warn "pstree $pstree pids ",dump( @pids );
103                    kill 1, $_ foreach reverse @pids;
104                    $pids->{$daemon} = 'stopped';
105                    return qq|$daemon pid $pid stopped|;
106            } else {
107                    if ( $pid = fork ) {
108                            # parent
109                            $pids->{$daemon} = $pid;
110                            warn "forked $daemon $pid";
111                            return qq|$daemon pid $pid started|;
112                    } elsif ( defined $pid ) {
113                            # child
114                            my $eval = $daemon . '::start(' . ( @_ ? dump(@_) : '' ) . ')';
115                            warn "eval $eval";
116                            eval $eval;
117                            warn "can't start $daemon: $@" if $@;
118                            exit;
119                    } else {
120                            die "fork error $!";
121                    }
122            }
123    }
124    
125    my $ok =       qq|HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n|;
126    my $redirect = qq|HTTP/1.1 302 Found\r\nContent-type: text/html\r\nLocation: $url\r\n\r\n|;
127    
128  sub get_request {  sub get_request {
129          my ( $client, $path, $param ) = @_;          my ( $client, $path, $param ) = @_;
# Line 70  sub get_request { Line 134  sub get_request {
134                  warn "static $found" if $debug;                  warn "static $found" if $debug;
135          } elsif ( $path eq '/' ) {          } elsif ( $path eq '/' ) {
136    
137                  my $screen = $screen_pid ? qq|stop <tt>$screen_pid</tt>| : 'start';                  my $screen = $pids->{screen} ? qq|stop <tt>$pids->{screen}</tt>|        : 'start';
138                    my $kvm    = $pids->{kvm}    ? qq|stop <tt>$pids->{kvm}</tt>|           :
139                                             $pids->{screen} ? qq|start|                                                    : qq|start screen first|;
140    
141                    my @rows = (
142                            'ip',           html::tt( $server::ip ),
143                            'netmask',      html::tt( $server::netmask ),
144    
145                  print $client $ok,                          'debug',        qq|<a href=/our/debug/| . boolean::toggle($debug) . qq|>$debug</a>|,
                 html::table( 2,  
                         'pid',   $$,  
                         'debug', qq|<a href=/our/debug/| . boolean::toggle($debug) . qq|>$debug</a>|,  
                         'screen', qq|<a href=/screen>$screen</a>|,  
146                  );                  );
147    
148          } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {                  my $debug_proc;
                 eval 'our $' . $1 . ' = ' . $2;  
                 warn $@ if $@;  
                 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>|;  
         } elsif ( $path =~ m{^/screen} ) {  
149    
150                  if ( $screen_pid ) {                  warn 'pids: ', dump( $pids );
151                          if ( ! kill $screen_pid ) {                  foreach my $name ( keys %$pids ) {
152                                  warn "kill -9 $screen_pid";                          my $pid = $pids->{$name} || next;
153                                  if ( kill 9, $screen_pid ) {  
154                                          print $client $ok, qq|screen pid $screen_pid stopped|;                          my $html = qq|<a href=/$name>$pid</a>|;
155                                          $screen_pid = 0;  
156                                  } else {                          if ( $debug ) {
157                                          print $client $ok, qq|can't stop screen $screen_pid: $!|;                                  $html .= qq| <a name=$pid href=#proc-$pid>?</a>|;
158                                  }  
159                                    my $proc = "/proc/$pid/status";
160                                    $debug_proc
161                                            .= qq|<a name=proc-$pid href=#$pid>$proc</a><pre style="font-size: 10%">|
162                                            .  read_file($proc)
163                                            .  qq|</pre>|
164                                            if -e $proc;
165                          }                          }
166                  } else {  
167                          if ( $screen_pid = $pm->start ) {                          push @rows, ( $name => $html );
168                                  print $client $ok, qq|screen started pid $screen_pid|;                  }
169    
170                    warn 'static_pids: ', dump( $static_pids );
171                    foreach my $pid ( keys %$static_pids ) {
172                            my $path = $static_pids->{$pid};
173                            if ( -d "/proc/$pid" ) {
174                                    push @rows, ( $path => qq|<a href=/kill/static/$pid>$pid</a>| );
175                          } else {                          } else {
176                                  screen::start;                                  push @rows, ( $path => "$pid competed" );
                                 $pm->finish;  
177                          }                          }
178                  }                  }
179    
180                    print $client $ok
181                            , html::table( 2, @rows )
182                            , html::tabs( log::mac_changes )
183                            , $debug_proc
184                            ;
185    
186            } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {
187                    eval 'our $' . $1 . ' = ' . $2;
188                    warn $@ if $@;
189                    print $client $redirect, qq|<big>$1 = $2</big><br>Location: <a href="$url">$url</a>|;
190                    server::debug( $debug ) if $1 eq 'debug';
191            } elsif ( $path =~ m{^/(screen|kvm)} ) {
192                    print $client $redirect, start_stop($1);
193            } elsif ( $path =~ m{^/kill/static/(\d+)} ) {
194                    print $client $redirect;
195                    kill 9, $1 && warn "killed $1";
196            } elsif ( $path eq '/exit' ) {
197    #               DESTROY;
198                    exit 0;
199          } elsif ( $path =~ m{/boot} ) {          } elsif ( $path =~ m{/boot} ) {
200                  print $client qq{$ok                  print $client qq{$ok
201  #!gpxe  #!gpxe
# Line 119  chain http://$server::ip:$httpd::port/ Line 211  chain http://$server::ip:$httpd::port/
211    
212  }  }
213    
214    use browser;
215    
216  sub start {  sub start {
217    
218          my $server = IO::Socket::INET->new(          my $server = IO::Socket::INET->new(
# Line 130  sub start { Line 224  sub start {
224    
225          print "url $url\n";          print "url $url\n";
226    
227          system "/mnt/llin/rest/cvs/uzbl/uzbl -u $url &";          start_stop 'browser', $url;
228            start_stop 'screen';
229            start_stop 'kvm';
230    
231          while (my $client = $server->accept()) {          while (my $client = $server->accept()) {
232                  $client->autoflush(1);                  $client->autoflush(1);
# Line 160  sub start { Line 256  sub start {
256                  print $client qq{                  print $client qq{
257                  <div style="font-size: 80%; color: #888">                  <div style="font-size: 80%; color: #888">
258                  <a href="">reload</a>                  <a href="">reload</a>
259                  <a href="/">index</a>                  <a href=/>index</a>
260                    <a href=/exit>exit</a>
261                  </div>                  </div>
262                  } if $client->connected;                  } if $client->connected;
263    

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

  ViewVC Help
Powered by ViewVC 1.1.26