ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/myhttpd/shell.pl
(Generate patch)

Comparing Coro/myhttpd/shell.pl (file contents):
Revision 1.7 by root, Sat Aug 11 16:53:59 2001 UTC vs.
Revision 1.8 by root, Sat Aug 11 19:59:20 2001 UTC

2 2
3use Coro; 3use Coro;
4use Coro::Handle; 4use Coro::Handle;
5use Coro::Socket; 5use Coro::Socket;
6use Event; 6use Event;
7use Time::HiRes 'time';
8
9my $last_ts = time;
7 10
8sub shell { 11sub shell {
9 my $fh = shift; 12 my $fh = shift;
10 13
11 while (defined (print $fh "cmd> "), $_ = <$fh>) { 14 while (defined (print $fh "cmd> "), $_ = <$fh>) {
12 s/\015?\012$//; 15 s/\015?\012$//;
13 chomp; 16 chomp;
14 if (/^q/) { 17 if (/^q/) {
15 Event::unloop; 18 Event::unloop;
16 } elsif (/^i/) { 19 } elsif (/^i/) {
20 $::NOW = time+1e-6;
17 my @data; 21 my @data;
18 for (values %conn::conn) { 22 for (values %conn::conn) {
19 for (values %$_) { 23 for (values %$_) {
20 next unless $_; 24 next unless $_;
25 my $rate = sprintf "%.1f", $_->{written} / ($::NOW - $_->{time});
21 push @data, "$_->{country}/$_->{remote_addr} $_->{method} $_->{uri}\n"; 26 push @data, "$_->{country}/$_->{remote_addr} $_->{written} $rate $_->{method} $_->{uri}\n";
22 } 27 }
23 } 28 }
24 print $fh sort @data; 29 print $fh sort @data;
25 print $fh scalar@data, " connections\n";#d# 30 print $fh scalar@data, " connections\n";#d#
31 print $fh "$::written bytes written in the last ",$::NOW - $last_ts, " seconds\n";
32 printf $fh "(%.1f bytes/s)\n", $::written / ($::NOW - $last_ts);
33 ($last_ts, $::written) = ($::NOW, 0);
26 } elsif (/^ref/) { 34 } elsif (/^ref/) {
27 read_blocklist; 35 read_blocklist;
28 } elsif (/^r/) { 36 } elsif (/^r/) {
29 $::RESTART = 1; 37 $::RESTART = 1;
30 unloop; 38 unloop;
31 print $fh "bye bye.\n"; 39 print $fh "bye bye.\n";
32 last; 40 last;
41 } elsif (/^co\S*\s+(\S+)/) {
42 print $fh ip_request($1), "\n";
33 } else { 43 } else {
34 print $fh "try quit, info, restart, refresh\n"; 44 print $fh "try quit, info, restart, refresh\n";
35 } 45 }
36 } 46 }
37} 47}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines