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.8 by root, Sun Aug 26 14:55:46 2001 UTC vs.
Revision 1.23 by root, Mon Dec 3 15:16:42 2001 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
1package conn; 98package conn;
2 99
3our %blockuri; 100our %blockuri;
4our $blockref; 101our $blockref;
5 102
56 153
57read_blockuri; 154read_blockuri;
58read_blockref; 155read_blockref;
59 156
60use Tie::Cache; 157use Tie::Cache;
61tie %whois_cache, Tie::Cache::, $::MAX_CONNECTS * 1.5; 158tie %whois_cache, Tie::Cache::, 32;
62 159
63sub access_check { 160sub access_check {
64 my $self = shift; 161 my $self = shift;
65 162
66 my $ref = $self->{h}{referer}; 163 my $ref = $self->{h}{referer};
69 166
70 $self->err_block_referer 167 $self->err_block_referer
71 if $self->{h}{referer} =~ $blockref; 168 if $self->{h}{referer} =~ $blockref;
72 169
73 my $whois = $whois_cache{$self->{remote_addr}} 170 my $whois = $whois_cache{$self->{remote_addr}}
74 ||= ::ip_request($self->{remote_addr}); 171 ||= netgeo::ip_request($self->{remote_addr});
75 172
76 my $country = "XX"; 173 my $country = "XX";
77 174
78 if ($whois =~ /^\*cy: (\S+)/m) { 175 if ($whois =~ /^\*cy: (\S+)/m) {
79 $country = uc $1; 176 $country = uc $1;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines