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

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines