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

Comparing Coro/myhttpd/httpd.pl (file contents):
Revision 1.46 by root, Sat Nov 17 04:15:23 2001 UTC vs.
Revision 1.83 by root, Sun Dec 3 17:49:22 2006 UTC

1use Coro; 1use Coro;
2use Coro::Semaphore; 2use Coro::Semaphore;
3use Coro::Event; 3use Coro::Event;
4use Coro::Socket; 4use Coro::Socket;
5use Coro::Signal; 5use Coro::Signal;
6use Coro::AIO ();
6 7
7use HTTP::Date; 8use HTTP::Date;
9use POSIX ();
10
11use Compress::Zlib ();
8 12
9no utf8; 13no utf8;
10use bytes; 14use bytes;
11 15
12# at least on my machine, this thingy serves files 16# at least on my machine, this thingy serves files
14# and quite a bit slower than thttpd :( 18# and quite a bit slower than thttpd :(
15 19
16$SIG{PIPE} = 'IGNORE'; 20$SIG{PIPE} = 'IGNORE';
17 21
18our $accesslog; 22our $accesslog;
23our $errorlog;
24
25our $NOW;
26our $HTTP_NOW;
27
28our $ERROR_LOG;
29our $ACCESS_LOG;
30
31Event->timer(interval => 1, hard => 1, cb => sub {
32 $NOW = time;
33 $HTTP_NOW = time2str $NOW;
34})->now;
35
36if ($ERROR_LOG) {
37 use IO::Handle;
38 open $errorlog, ">>$ERROR_LOG"
39 or die "$ERROR_LOG: $!";
40 $errorlog->autoflush(1);
41}
19 42
20if ($ACCESS_LOG) { 43if ($ACCESS_LOG) {
21 use IO::Handle; 44 use IO::Handle;
22 open $accesslog, ">>$ACCESS_LOG" 45 open $accesslog, ">>$ACCESS_LOG"
23 or die "$ACCESS_LOG: $!"; 46 or die "$ACCESS_LOG: $!";
25} 48}
26 49
27sub slog { 50sub slog {
28 my $level = shift; 51 my $level = shift;
29 my $format = shift; 52 my $format = shift;
53 my $NOW = (POSIX::strftime "%Y-%m-%d %H:%M:%S", gmtime $::NOW);
30 printf "---: $format\n", @_; 54 printf "$NOW: $format\n", @_;
55 printf $errorlog "$NOW: $format\n", @_ if $errorlog;
31} 56}
32 57
33our $connections = new Coro::Semaphore $MAX_CONNECTS || 250; 58our $connections = new Coro::Semaphore $MAX_CONNECTS || 250;
34our $httpevent = new Coro::Signal; 59our $httpevent = new Coro::Signal;
35 60
36our $wait_factor = 0.95; 61our $queue_file = new transferqueue $MAX_TRANSFERS;
62our $queue_index = new transferqueue 10;
37 63
38our @transfers = ( 64our $tbf_top = new tbf rate => $TBF_RATE || 100000;
39 [(new Coro::Semaphore $MAX_TRANSFERS_SMALL || 50), 1], 65
40 [(new Coro::Semaphore $MAX_TRANSFERS_LARGE || 50), 1], 66my $unused_bytes = 0;
41); 67my $unused_last = time;
68
69sub unused_bandwidth {
70 $unused_bytes += $_[0];
71 if ($unused_last < $NOW - 30 && $unused_bytes / ($NOW - $unused_last) > 50000) {
72 $unused_last = $NOW;
73 $unused_bytes = 0;
74 $queue_file->force_wake_next;
75 slog 1, "forced filetransfer due to unused bandwidth";
76 }
77}
42 78
43my @newcons; 79my @newcons;
44my @pool; 80my @pool;
45 81
46# one "execution thread" 82# one "execution thread"
47sub handler { 83sub handler {
48 while () { 84 while () {
49 if (@newcons) { 85 if (@newcons) {
50 eval { 86 eval {
51 conn->new(@{pop @newcons})->handle; 87 conn->new (@{pop @newcons})->handle;
52 }; 88 };
53 slog 1, "$@" if $@ && !ref $@; 89 slog 1, "$@" if $@ && !ref $@;
90
91 $httpevent->broadcast; # only for testing, but doesn't matter much
92
54 $connections->up; 93 $connections->up;
55 } else { 94 } else {
56 last if @pool >= $MAX_POOL; 95 last if @pool >= $MAX_POOL;
57 push @pool, $Coro::current; 96 push @pool, $Coro::current;
58 schedule; 97 schedule;
75 if (@pool) { 114 if (@pool) {
76 (pop @pool)->ready; 115 (pop @pool)->ready;
77 } else { 116 } else {
78 async \&handler; 117 async \&handler;
79 } 118 }
80
81 } 119 }
82 }; 120 };
83} 121}
84 122
85my $http_port = new Coro::Socket 123my $http_port = new Coro::Socket
86 LocalAddr => $SERVER_HOST, 124 LocalAddr => $SERVER_HOST,
87 LocalPort => $SERVER_PORT, 125 LocalPort => $SERVER_PORT,
88 ReuseAddr => 1, 126 ReuseAddr => 1,
89 Listen => 50, 127 Listen => 50,
90 or die "unable to start server"; 128 or die "unable to start server";
91 129
92listen_on $http_port; 130listen_on $http_port;
93 131
94if ($SERVER_PORT2) { 132if ($SERVER_PORT2) {
95 my $http_port = new Coro::Socket 133 my $http_port = new Coro::Socket
96 LocalAddr => $SERVER_HOST, 134 LocalAddr => $SERVER_HOST,
97 LocalPort => $SERVER_PORT2, 135 LocalPort => $SERVER_PORT2,
98 ReuseAddr => 1, 136 ReuseAddr => 1,
99 Listen => 50, 137 Listen => 50,
100 or die "unable to start server"; 138 or die "unable to start server";
101 139
102 listen_on $http_port; 140 listen_on $http_port;
103} 141}
104 142
105our $NOW;
106our $HTTP_NOW;
107
108Event->timer(interval => 1, hard => 1, cb => sub {
109 $NOW = time;
110 $HTTP_NOW = time2str $NOW;
111})->now;
112
113package conn; 143package conn;
144
145use strict;
146use bytes;
114 147
115use Socket; 148use Socket;
116use HTTP::Date; 149use HTTP::Date;
117use Convert::Scalar 'weaken'; 150use Convert::Scalar 'weaken';
118use Linux::AIO; 151use IO::AIO;
119 152
120Linux::AIO::min_parallel $::AIO_PARALLEL; 153IO::AIO::min_parallel $::AIO_PARALLEL;
121 154
122Event->io(fd => Linux::AIO::poll_fileno, 155Event->io (fd => IO::AIO::poll_fileno,
123 poll => 'r', async => 1, 156 poll => 'r', async => 1,
124 cb => \&Linux::AIO::poll_cb); 157 cb => \&IO::AIO::poll_cb);
125 158
126our %conn; # $conn{ip}{self} => connobj 159our %conn; # $conn{ip}{self} => connobj
127our %uri; # $uri{ip}{uri}{self} 160our %uri; # $uri{ip}{uri}{self}
128our %blocked; 161our %blocked;
129our %mimetype; 162our %mimetype;
130 163
131sub read_mimetypes { 164sub read_mimetypes {
132 local *M;
133 if (open M, "<mime_types") { 165 if (open my $fh, "<mime_types") {
134 while (<M>) { 166 while (<$fh>) {
135 if (/^([^#]\S+)\t+(\S+)$/) { 167 if (/^([^#]\S+)\t+(\S+)$/) {
136 $mimetype{lc $1} = $2; 168 $mimetype{lc $1} = $2;
137 } 169 }
138 } 170 }
139 } else { 171 } else {
147 my $class = shift; 179 my $class = shift;
148 my $fh = shift; 180 my $fh = shift;
149 my $peername = shift; 181 my $peername = shift;
150 my $self = bless { fh => $fh }, $class; 182 my $self = bless { fh => $fh }, $class;
151 my (undef, $iaddr) = unpack_sockaddr_in $peername 183 my (undef, $iaddr) = unpack_sockaddr_in $peername
152 or $self->err(500, "unable to decode peername"); 184 or $self->err (500, "unable to decode peername");
153 185
186 $self->{remote_addr} =
154 $self->{remote_addr} = inet_ntoa $iaddr; 187 $self->{remote_id} = inet_ntoa $iaddr;
188
155 $self->{time} = $::NOW; 189 $self->{time} = $::NOW;
156 190
191 weaken ($Coro::current->{conn} = $self);
192
157 $::conns++; 193 ++$::conns;
194 $::maxconns = $::conns if $::conns > $::maxconns;
158 195
159 $self; 196 $self
160} 197}
161 198
162sub DESTROY { 199sub DESTROY {
163 my $self = shift; 200 my $self = shift;
201
164 $::conns--; 202 --$::conns;
165 $self->eoconn;
166} 203}
167 204
168# end of connection 205sub prune_cache {
169sub eoconn { 206 my $hash = $_[0];
170 my $self = shift;
171 207
172 # clean up hints 208 for (keys %$hash) {
173 delete $conn{$self->{remote_id}}{$self*1}; 209 if (ref $hash->{$_} eq HASH::) {
174 delete $uri{$self->{remote_id}}{$self->{uri}}{$self*1}; 210 prune_cache($hash->{$_});
175 211 unless (scalar keys %{$hash->{$_}}) {
176 $httpevent->broadcast; 212 delete $hash->{$_};
213 }
214 }
215 }
177} 216}
217
218sub prune_caches {
219 prune_cache \%conn;
220 prune_cache \%uri;
221
222 for (keys %blocked) {
223 delete $blocked{$_} unless $blocked{$_}[0] > $::NOW;
224 }
225}
226
227Event->timer (interval => 60, cb => \&prune_caches);
178 228
179sub slog { 229sub slog {
180 my $self = shift; 230 my $self = shift;
181 main::slog($_[0], ($self->{remote_id} || $self->{remote_addr}) ."> $_[1]"); 231 main::slog($_[0], "$self->{remote_id}> $_[1]");
182} 232}
183 233
184sub response { 234sub response {
185 my ($self, $code, $msg, $hdr, $content) = @_; 235 my ($self, $code, $msg, $hdr, $content) = @_;
186 my $res = "HTTP/1.1 $code $msg\015\012"; 236 my $res = "HTTP/1.1 $code $msg\015\012";
237 my $GZ = "";
187 238
188 if (exists $hdr->{Connection}) { 239 if (exists $hdr->{Connection}) {
189 if ($hdr->{Connection} =~ /close/) { 240 if ($hdr->{Connection} =~ /close/) {
190 $self->{h}{connection} = "close" 241 $self->{h}{connection} = "close"
191 } 242 }
197 $self->{h}{connection} = "close" 248 $self->{h}{connection} = "close"
198 } 249 }
199 } 250 }
200 } 251 }
201 252
253 if ($self->{method} ne "HEAD"
254 && $self->{h}{"accept-encoding"} =~ /\bgzip\b/
255 && 400 < length $content
256 && $hdr->{"Content-Length"} == length $content
257 && !exists $hdr->{"Content-Encoding"}
258 ) {
259 my $orig = length $content;
260 $hdr->{"Content-Encoding"} = "gzip";
261 $content = Compress::Zlib::memGzip(\$content);
262 $hdr->{"Content-Length"} = length $content;
263 $GZ = sprintf "GZ%02d", 100 - 100*((length $content) / $orig);
264 }
265
202 $res .= "Date: $HTTP_NOW\015\012"; 266 $res .= "Date: $HTTP_NOW\015\012";
267 $res .= "Server: $::NAME\015\012";
203 268
204 while (my ($h, $v) = each %$hdr) { 269 while (my ($h, $v) = each %$hdr) {
205 $res .= "$h: $v\015\012" 270 $res .= "$h: $v\015\012"
206 } 271 }
207 $res .= "\015\012"; 272 $res .= "\015\012";
208 273
209 $res .= $content if defined $content and $self->{method} ne "HEAD"; 274 $res .= $content if defined $content and $self->{method} ne "HEAD";
210 275
211 my $log = "$self->{remote_addr} \"$self->{uri}\" $code ".$hdr->{"Content-Length"}." \"$self->{h}{referer}\"\n"; 276 my $log = (POSIX::strftime "%Y-%m-%d %H:%M:%S", gmtime $::NOW).
277 " $self->{remote_id} \"$self->{uri}\" $code ".$hdr->{"Content-Length"}.$GZ.
278 " \"$self->{h}{referer}\"\n";
212 279
213 print $accesslog $log if $accesslog; 280 print $::accesslog $log if $::accesslog;
214 print STDERR $log; 281 print STDERR $log;
215 282
216 $self->{written} += 283 $tbf_top->request(length $res, 1e6);
217 print {$self->{fh}} $res; 284 $self->{written} += print {$self->{fh}} $res;
218} 285}
219 286
220sub err { 287sub err {
221 my $self = shift; 288 my $self = shift;
222 my ($code, $msg, $hdr, $content) = @_; 289 my ($code, $msg, $hdr, $content) = @_;
226 $hdr->{"Content-Type"} = "text/plain"; 293 $hdr->{"Content-Type"} = "text/plain";
227 $hdr->{"Content-Length"} = length $content; 294 $hdr->{"Content-Length"} = length $content;
228 } 295 }
229 $hdr->{"Connection"} = "close"; 296 $hdr->{"Connection"} = "close";
230 297
231 $self->response($code, $msg, $hdr, $content); 298 $self->response ($code, $msg, $hdr, $content);
232 299
233 die bless {}, err::; 300 die bless {}, err::
234} 301}
235 302
236sub handle { 303sub handle {
237 my $self = shift; 304 my $self = shift;
238 my $fh = $self->{fh}; 305 my $fh = $self->{fh};
239 306
240 my $host; 307 my $host;
241 308
242 $fh->timeout($::REQ_TIMEOUT); 309 $fh->timeout($::REQ_TIMEOUT);
243 while() { 310 while () {
244 $self->{reqs}++; 311 $self->{reqs}++;
245 312
246 # read request and parse first line 313 # read request and parse first line
247 my $req = $fh->readline("\015\012\015\012"); 314 my $req = $fh->readline("\015\012\015\012");
248 315
277 my (%hdr, $h, $v); 344 my (%hdr, $h, $v);
278 345
279 $hdr{lc $1} .= ",$2" 346 $hdr{lc $1} .= ",$2"
280 while $req =~ /\G 347 while $req =~ /\G
281 ([^:\000-\040]+): 348 ([^:\000-\040]+):
282 [\008\040]* 349 [\011\040]*
283 ((?: [^\015\012]+ | \015\012[\008\040] )*) 350 ((?: [^\015\012]+ | \015\012[\011\040] )*)
284 \015\012 351 \015\012
285 /gxc; 352 /gxc;
286 353
287 $req =~ /\G\015\012$/ 354 $req =~ /\G\015\012$/
288 or $self->err(400, "bad request"); 355 or $self->err(400, "bad request");
300 $id .= "[".$self->{h}{"x-forwarded-for"}."]"; 367 $id .= "[".$self->{h}{"x-forwarded-for"}."]";
301 } 368 }
302 369
303 $self->{remote_id} = $id; 370 $self->{remote_id} = $id;
304 371
372 weaken (local $conn{$id}{$self*1} = $self);
373
305 if ($blocked{$id}) { 374 if ($blocked{$id}) {
306 $self->err_blocked($blocked{$id}) 375 $self->err_blocked
307 if $blocked{$id} > $::NOW; 376 if $blocked{$id}[0] > $::NOW;
308 377
309 delete $blocked{$id}; 378 delete $blocked{$id};
310 }
311
312 if (%{$conn{$id}} >= $::MAX_CONN_IP) {
313 my $delay = $::PER_TIMEOUT + $::NOW + 15;
314 while (%{$conn{$id}} >= $::MAX_CONN_IP) {
315 if ($delay < $::NOW) {
316 $self->slog(2, "blocked ip $id");
317 $self->err_blocked;
318 } else {
319 $httpevent->wait;
320 }
321 }
322 } 379 }
323 380
324 # find out server name and port 381 # find out server name and port
325 if ($self->{uri} =~ s/^http:\/\/([^\/?#]*)//i) { 382 if ($self->{uri} =~ s/^http:\/\/([^\/?#]*)//i) {
326 $host = $1; 383 $host = $1;
337 $host = inet_ntoa $host; 394 $host = inet_ntoa $host;
338 } 395 }
339 396
340 $self->{server_name} = $host; 397 $self->{server_name} = $host;
341 398
342 # enter ourselves into various lists
343 weaken ($conn{$id}{$self*1} = $self);
344 weaken ($uri{$id}{$self->{uri}}{$self*1} = $self); 399 weaken (local $uri{$id}{$self->{uri}}{$self*1} = $self);
345 400
346 eval { 401 eval {
347 $self->map_uri; 402 $self->map_uri;
348 $self->respond; 403 $self->respond;
349 }; 404 };
350 405
351 $self->eoconn;
352
353 die if $@ && !ref $@; 406 die if $@ && !ref $@;
354 407
355 last if $self->{h}{connection} =~ /close/; 408 last if $self->{h}{connection} =~ /close/i;
356 409
357 $httpevent->broadcast; 410 $httpevent->broadcast;
358 411
359 $fh->timeout($::PER_TIMEOUT); 412 $fh->timeout($::PER_TIMEOUT);
360 } 413 }
414}
415
416sub block {
417 my $self = shift;
418
419 $blocked{$self->{remote_id}} = [$::NOW + $_[0], $_[1]];
420 $self->slog(2, "blocked ip $self->{remote_id}");
421 $self->err_blocked;
361} 422}
362 423
363# uri => path mapping 424# uri => path mapping
364sub map_uri { 425sub map_uri {
365 my $self = shift; 426 my $self = shift;
412 473
413sub respond { 474sub respond {
414 my $self = shift; 475 my $self = shift;
415 my $path = $self->{path}; 476 my $path = $self->{path};
416 477
417 stat $path 478 if ($self->{name} =~ s%^/internal/([^/]+)%%) {
418 or $self->err(404, "not found"); 479 if ($::internal{$1}) {
419 480 $::internal{$1}->($self);
420 $self->{stat} = [stat _];
421
422 # idiotic netscape sends idiotic headers AGAIN
423 my $ims = $self->{h}{"if-modified-since"} =~ /^([^;]+)/
424 ? str2time $1 : 0;
425
426 if (-d _ && -r _) {
427 # directory
428 if ($path !~ /\/$/) {
429 # create a redirect to get the trailing "/"
430 # we don't try to avoid the :80
431 $self->err(301, "moved permanently", { Location => "http://".$self->server_hostport."$self->{uri}/" });
432 } else { 481 } else {
433 $ims < $self->{stat}[9] 482 $self->err (404, "not found");
483 }
484 } else {
485
486 stat $path
434 or $self->err(304, "not modified"); 487 or $self->err (404, "not found");
435 488
436 if (-r "$path/index.html") { 489 $self->{stat} = [stat _];
437 # replace directory "size" by index.html filesize 490
438 $self->{stat}[7] = (stat ($self->{path} .= "/index.html"))[7]; 491 # idiotic netscape sends idiotic headers AGAIN
439 $self->handle_file; 492 my $ims = $self->{h}{"if-modified-since"} =~ /^([^;]+)/
493 ? str2time $1 : 0;
494
495 if (-d _ && -r _) {
496 # directory
497 if ($path !~ /\/$/) {
498 # create a redirect to get the trailing "/"
499 # we don't try to avoid the :80
500 $self->err (301, "moved permanently", { Location => "http://".$self->server_hostport."$self->{uri}/" });
440 } else { 501 } else {
502 $ims < $self->{stat}[9]
503 or $self->err (304, "not modified");
504
505 if (-r "$path/index.html") {
506 # replace directory "size" by index.html filesize
507 $self->{stat} = [stat ($self->{path} .= "/index.html")];
508 $self->handle_file ($queue_index, $tbf_top);
509 } else {
441 $self->handle_dir; 510 $self->handle_dir;
442 } 511 }
443 } 512 }
444 } elsif (-f _ && -r _) { 513 } elsif (-f _ && -r _) {
445 -x _ and $self->err(403, "forbidden"); 514 -x _ and $self->err (403, "forbidden");
446 $self->handle_file; 515
516 if (keys %{$conn{$self->{remote_id}}} > $::MAX_TRANSFERS_IP) {
517 my $timeout = $::NOW + 10;
518 while (keys %{$conn{$self->{remote_id}}} > $::MAX_TRANSFERS_IP) {
519 if ($timeout < $::NOW) {
520 $self->block($::BLOCKTIME, "too many connections");
521 } else {
522 $httpevent->wait;
523 }
524 }
525 }
526
527 $self->handle_file ($queue_file, $tbf_top);
447 } else { 528 } else {
448 $self->err(404, "not found"); 529 $self->err (404, "not found");
530 }
449 } 531 }
450} 532}
451 533
452sub handle_dir { 534sub handle_dir {
453 my $self = shift; 535 my $self = shift;
454 my $idx = $self->diridx; 536 my $idx = $self->diridx;
455 537
456 $self->response(200, "ok", 538 $self->response (200, "ok",
457 { 539 {
458 "Content-Type" => "text/html", 540 "Content-Type" => "text/html; charset=utf-8",
459 "Content-Length" => length $idx, 541 "Content-Length" => length $idx,
542 "Last-Modified" => time2str ($self->{stat}[9]),
460 }, 543 },
461 $idx); 544 $idx);
462} 545}
463 546
464sub handle_file { 547sub handle_file {
465 my $self = shift; 548 my ($self, $queue, $tbf) = @_;
466 my $length = $self->{stat}[7]; 549 my $length = $self->{stat}[7];
467 my $queue = $::transfers[$length >= $::TRANSFER_SMALL];
468 my $hdr = { 550 my $hdr = {
469 "Last-Modified" => time2str ((stat _)[9]), 551 "Last-Modified" => time2str ((stat _)[9]),
552 "Accept-Ranges" => "bytes",
470 }; 553 };
471 554
472 my @code = (200, "ok"); 555 my @code = (200, "ok");
473 my ($l, $h); 556 my ($l, $h);
474 557
484 } 567 }
485 goto satisfiable if $l >= 0 && $l < $length && $h >= 0 && $h >= $l; 568 goto satisfiable if $l >= 0 && $l < $length && $h >= 0 && $h >= $l;
486 } 569 }
487 $hdr->{"Content-Range"} = "bytes */$length"; 570 $hdr->{"Content-Range"} = "bytes */$length";
488 $hdr->{"Content-Length"} = $length; 571 $hdr->{"Content-Length"} = $length;
489 $self->err(416, "not satisfiable", $hdr, ""); 572 $self->err (416, "not satisfiable", $hdr, "");
490 573
491satisfiable: 574satisfiable:
492 # check for segmented downloads 575 # check for segmented downloads
493 if ($l && $::NO_SEGMENTED) { 576 if ($l && $::NO_SEGMENTED) {
494 my $delay = $::NOW + $::PER_TIMEOUT + 15; 577 my $timeout = $::NOW + 15;
495 while (%{$uri{$self->{remote_id}}{$self->{uri}}} > 1) { 578 while (keys %{$uri{$self->{remote_id}}{$self->{uri}}} > 1) {
496 if ($delay <= $::NOW) { 579 if ($timeout <= $::NOW) {
580 $self->block ($::BLOCKTIME, "segmented downloads are forbidden");
497 $self->err_segmented_download; 581 #$self->err_segmented_download;
498 } else { 582 } else {
499 $httpevent->wait; 583 $httpevent->wait;
500 } 584 }
501 } 585 }
502 } 586 }
512 596
513 $self->{path} =~ /\.([^.]+)$/; 597 $self->{path} =~ /\.([^.]+)$/;
514 $hdr->{"Content-Type"} = $mimetype{lc $1} || "application/octet-stream"; 598 $hdr->{"Content-Type"} = $mimetype{lc $1} || "application/octet-stream";
515 $hdr->{"Content-Length"} = $length; 599 $hdr->{"Content-Length"} = $length;
516 600
517 $self->response(@code, $hdr, ""); 601 $self->response (@code, $hdr, "");
518 602
519 if ($self->{method} eq "GET") { 603 if ($self->{method} eq "GET") {
520 $self->{time} = $::NOW; 604 $self->{time} = $::NOW;
521
522 my $fudge = $queue->[0]->waiters;
523 $fudge = $fudge ? ($fudge+1)/$fudge : 1;
524
525 $queue->[1] *= $fudge;
526 my $transfer = $queue->[0]->guard;
527
528 if ($fudge != 1) {
529 $queue->[1] /= $fudge;
530 $queue->[1] = $queue->[1] * $::wait_factor
531 + ($::NOW - $self->{time}) * (1 - $::wait_factor);
532 }
533 $self->{time} = $::NOW; 605 $self->{written} = 0;
534 606
535 $self->{fh}->writable or return;
536
537 my ($fh, $buf, $r);
538 my $current = $Coro::current;
539 open $fh, "<", $self->{path} 607 open my $fh, "<", $self->{path}
540 or die "$self->{path}: late open failure ($!)"; 608 or die "$self->{path}: late open failure ($!)";
541 609
542 $h -= $l - 1; 610 $h -= $l - 1;
543 611
544 if (0) { 612 my $transfer = $queue->start_transfer ($h);
545 if ($l) { 613 my $locked;
546 sysseek $fh, $l, 0; 614 my $bufsize = $::WAIT_BUFSIZE; # initial buffer size
547 }
548 }
549 615
550 while ($h > 0) { 616 while ($h > 0) {
551 if (0) { 617 unless ($locked) {
552 sysread $fh, $buf, $h > $::BUFSIZE ? $::BUFSIZE : $h 618 if ($locked ||= $transfer->try ($::WAIT_INTERVAL)) {
619 $bufsize = $::BUFSIZE;
620 $self->{time} = $::NOW;
621 $self->{written} = 0;
622 }
623 }
624
625 if ($blocked{$self->{remote_id}}) {
626 $self->{h}{connection} = "close";
627 die bless {}, err::;
628 }
629
630 Coro::AIO::aio_read $fh, $l, ($h > $bufsize ? $bufsize : $h), my $buf, 0
553 or last; 631 or last;
554 } else { 632
555 aio_read($fh, $l, ($h > $::BUFSIZE ? $::BUFSIZE : $h), 633 $tbf->request (length $buf);
556 $buf, 0, sub {
557 $r = $_[0];
558 Coro::ready($current);
559 });
560 &Coro::schedule;
561 last unless $r;
562 }
563 my $w = syswrite $self->{fh}, $buf 634 my $w = syswrite $self->{fh}, $buf
564 or last; 635 or last;
565 $::written += $w; 636 $::written += $w;
566 $self->{written} += $w; 637 $self->{written} += $w;
567 $l += $r; 638 $l += $w;
568 } 639 }
569 640
570 close $fh; 641 close $fh;
571 } 642 }
572} 643}
573 644
5741; 6451
646

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines