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

Comparing Coro/myhttpd/access.pl (file contents):
Revision 1.23 by root, Mon Dec 3 15:16:42 2001 UTC vs.
Revision 1.31 by root, Thu Nov 21 09:52:34 2002 UTC

1package transferqueue;
2
3sub new {
4 my $class = shift;
5 bless {
6 slots => $_[0],
7 lastspb => 0,
8 avgspb => 0,
9 }, $class;
10}
11
12sub start_transfer {
13 my $self = shift;
14 my $size = $_[0];
15
16 my $transfer = bless {
17 queue => $self,
18 time => $::NOW,
19 size => $size,
20 coro => $Coro::current,
21 started => 0,
22 }, transfer::;
23
24 push @{$self->{wait}}, $transfer;
25
26 $self->wake_next;
27
28 $transfer;
29}
30
31sub sort {
32 my @queue = grep $_, @{$_[0]{wait}};
33
34 $_->{spb} = ($::NOW-$_->{time}) / ($_->{size} || 1) for @queue;
35
36 $_[0]{wait} = [sort { $b->{spb} <=> $a->{spb} } @queue];
37
38 Scalar::Util::weaken $_ for @{$_[0]{wait}};
39}
40
41sub wake_next {
42 my $self = shift;
43
44 $self->sort;
45
46 while($self->{slots} > 0 && @{$self->{wait}}) {
47 my $transfer = shift @{$self->{wait}};
48 if ($transfer) {
49 $self->{lastspb} = $transfer->{spb};
50 $self->{avgspb} ||= $transfer->{spb};
51 $self->{avgspb} = $self->{avgspb} * 0.95 + $transfer->{spb} * 0.05;
52 $self->{started}++;
53 $transfer->wake;
54 last;
55 }
56 }
57}
58
59sub waiters {
60 $_[0]->sort;
61 @{$_[0]{wait}};
62}
63
64package transfer;
65
66use Coro::Timer ();
67
68sub wake {
69 my $self = shift;
70
71 $self->{alloc} = 1;
72 $self->{queue}{slots}--;
73 $self->{wake} and $self->{wake}->ready;
74}
75
76sub try {
77 my $self = shift;
78
79 $self->{alloc} || do {
80 my $timeout = Coro::Timer::timeout $_[0];
81 local $self->{wake} = $self->{coro};
82
83 Coro::schedule;
84
85 $self->{alloc};
86 }
87}
88
89sub DESTROY {
90 my $self = shift;
91
92 if ($self->{alloc}) {
93 $self->{queue}{slots}++;
94 $self->{queue}->wake_next;
95 }
96}
97
98package conn; 1package conn;
99 2
100our %blockuri; 3our %blockuri;
101our $blockref; 4our $blockref;
102 5
165 my %disallow; 68 my %disallow;
166 69
167 $self->err_block_referer 70 $self->err_block_referer
168 if $self->{h}{referer} =~ $blockref; 71 if $self->{h}{referer} =~ $blockref;
169 72
170 my $whois = $whois_cache{$self->{remote_addr}} 73 my $ra = $self->{remote_addr};
171 ||= netgeo::ip_request($self->{remote_addr}); 74 my $whois = $whois_cache{$ra} ||= netgeo::ip_request($ra);
172 75
173 my $country = "XX"; 76 my $country = "XX";
174 77
175 if ($whois =~ /^\*cy: (\S+)/m) { 78 if ($whois =~ /^\*cy: (\S+)/m) {
176 $country = uc $1; 79 $country = uc $1;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines