ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-HTTP/HTTP.pm
(Generate patch)

Comparing AnyEvent-HTTP/HTTP.pm (file contents):
Revision 1.42 by root, Mon Jul 6 00:08:16 2009 UTC vs.
Revision 1.51 by root, Fri Aug 14 15:21:33 2009 UTC

41use strict; 41use strict;
42no warnings; 42no warnings;
43 43
44use Errno (); 44use Errno ();
45 45
46use AnyEvent 4.452 (); 46use AnyEvent 5.0 ();
47use AnyEvent::Util (); 47use AnyEvent::Util ();
48use AnyEvent::Socket (); 48use AnyEvent::Socket ();
49use AnyEvent::Handle (); 49use AnyEvent::Handle ();
50 50
51use base Exporter::; 51use base Exporter::;
52 52
53our $VERSION = '1.12'; 53our $VERSION = '1.43';
54 54
55our @EXPORT = qw(http_get http_post http_head http_request); 55our @EXPORT = qw(http_get http_post http_head http_request);
56 56
57our $USERAGENT = "Mozilla/5.0 (compatible; U; AnyEvent-HTTP/$VERSION; +http://software.schmorp.de/pkg/AnyEvent)"; 57our $USERAGENT = "Mozilla/5.0 (compatible; U; AnyEvent-HTTP/$VERSION; +http://software.schmorp.de/pkg/AnyEvent)";
58our $MAX_RECURSE = 10; 58our $MAX_RECURSE = 10;
59our $MAX_PERSISTENT = 8; 59our $MAX_PERSISTENT = 8;
60our $PERSISTENT_TIMEOUT = 2; 60our $PERSISTENT_TIMEOUT = 2;
61our $TIMEOUT = 300; 61our $TIMEOUT = 300;
62 62
63# changing these is evil 63# changing these is evil
64our $MAX_PERSISTENT_PER_HOST = 2; 64our $MAX_PERSISTENT_PER_HOST = 0;
65our $MAX_PER_HOST = 4; 65our $MAX_PER_HOST = 4;
66 66
67our $PROXY; 67our $PROXY;
68our $ACTIVE = 0; 68our $ACTIVE = 0;
69 69
138 138
139=item headers => hashref 139=item headers => hashref
140 140
141The request headers to use. Currently, C<http_request> may provide its 141The request headers to use. Currently, C<http_request> may provide its
142own C<Host:>, C<Content-Length:>, C<Connection:> and C<Cookie:> headers 142own C<Host:>, C<Content-Length:>, C<Connection:> and C<Cookie:> headers
143and will provide defaults for C<User-Agent:> and C<Referer:>. 143and will provide defaults for C<User-Agent:> and C<Referer:> (this can be
144suppressed by using C<undef> for these headers in which case they won't be
145sent at all).
144 146
145=item timeout => $seconds 147=item timeout => $seconds
146 148
147The time-out to use for various stages - each connect attempt will reset 149The time-out to use for various stages - each connect attempt will reset
148the timeout, as will read or write activity. Default timeout is 5 minutes. 150the timeout, as will read or write activity, i.e. this is not an overall
151timeout.
152
153Default timeout is 5 minutes.
149 154
150=item proxy => [$host, $port[, $scheme]] or undef 155=item proxy => [$host, $port[, $scheme]] or undef
151 156
152Use the given http proxy for all requests. If not specified, then the 157Use the given http proxy for all requests. If not specified, then the
153default proxy (as specified by C<$ENV{http_proxy}>) is used. 158default proxy (as specified by C<$ENV{http_proxy}>) is used.
154 159
155C<$scheme> must be either missing or C<http> for HTTP, or C<https> for 160C<$scheme> must be either missing, C<http> for HTTP or C<https> for
156HTTPS. 161HTTPS.
157 162
158=item body => $string 163=item body => $string
159 164
160The request body, usually empty. Will be-sent as-is (future versions of 165The request body, usually empty. Will be-sent as-is (future versions of
186verification) TLS context. 191verification) TLS context.
187 192
188The default for this option is C<low>, which could be interpreted as "give 193The default for this option is C<low>, which could be interpreted as "give
189me the page, no matter what". 194me the page, no matter what".
190 195
196=item on_prepare => $callback->($fh)
197
198In rare cases you need to "tune" the socket before it is used to
199connect (for exmaple, to bind it on a given IP address). This parameter
200overrides the prepare callback passed to C<AnyEvent::Socket::tcp_connect>
201and behaves exactly the same way (e.g. it has to provide a
202timeout). See the description for the C<$prepare_cb> argument of
203C<AnyEvent::Socket::tcp_connect> for details.
204
191=item on_header => $callback->($headers) 205=item on_header => $callback->($headers)
192 206
193When specified, this callback will be called with the header hash as soon 207When specified, this callback will be called with the header hash as soon
194as headers have been successfully received from the remote server (not on 208as headers have been successfully received from the remote server (not on
195locally-generated errors). 209locally-generated errors).
221This callback is useful when the data is too large to be held in memory 235This callback is useful when the data is too large to be held in memory
222(so the callback writes it to a file) or when only some information should 236(so the callback writes it to a file) or when only some information should
223be extracted, or when the body should be processed incrementally. 237be extracted, or when the body should be processed incrementally.
224 238
225It is usually preferred over doing your own body handling via 239It is usually preferred over doing your own body handling via
226C<want_body_handle>. 240C<want_body_handle>, but in case of streaming APIs, where HTTP is
241only used to create a connection, C<want_body_handle> is the better
242alternative, as it allows you to install your own event handler, reducing
243resource usage.
227 244
228=item want_body_handle => $enable 245=item want_body_handle => $enable
229 246
230When enabled (default is disabled), the behaviour of AnyEvent::HTTP 247When enabled (default is disabled), the behaviour of AnyEvent::HTTP
231changes considerably: after parsing the headers, and instead of 248changes considerably: after parsing the headers, and instead of
243This is useful with some push-type services, where, after the initial 260This is useful with some push-type services, where, after the initial
244headers, an interactive protocol is used (typical example would be the 261headers, an interactive protocol is used (typical example would be the
245push-style twitter API which starts a JSON/XML stream). 262push-style twitter API which starts a JSON/XML stream).
246 263
247If you think you need this, first have a look at C<on_body>, to see if 264If you think you need this, first have a look at C<on_body>, to see if
248that doesn'T solve your problem in a better way. 265that doesn't solve your problem in a better way.
249 266
250=back 267=back
251 268
252Example: make a simple HTTP GET request for http://www.nethype.de/ 269Example: make a simple HTTP GET request for http://www.nethype.de/
253 270
309 push @{ $CO_SLOT{$_[0]}[1] }, $_[1]; 326 push @{ $CO_SLOT{$_[0]}[1] }, $_[1];
310 327
311 _slot_schedule $_[0]; 328 _slot_schedule $_[0];
312} 329}
313 330
314our $qr_nl = qr<\015?\012>; 331our $qr_nl = qr{\015?\012};
315our $qr_nlnl = qr<\015?\012\015?\012>; 332our $qr_nlnl = qr{(?<![^\012])\015?\012};
316 333
317our $TLS_CTX_LOW = { cache => 1, sslv2 => 1 }; 334our $TLS_CTX_LOW = { cache => 1, sslv2 => 1 };
318our $TLS_CTX_HIGH = { cache => 1, verify => 1, verify_peername => "https" }; 335our $TLS_CTX_HIGH = { cache => 1, verify => 1, verify_peername => "https" };
319 336
320sub http_request($$@) { 337sub http_request($$@) {
354 $uauthority =~ /^(?: .*\@ )? ([^\@:]+) (?: : (\d+) )?$/x 371 $uauthority =~ /^(?: .*\@ )? ([^\@:]+) (?: : (\d+) )?$/x
355 or return $cb->(undef, { Status => 599, Reason => "Unparsable URL", URL => $url }); 372 or return $cb->(undef, { Status => 599, Reason => "Unparsable URL", URL => $url });
356 373
357 my $uhost = $1; 374 my $uhost = $1;
358 $uport = $2 if defined $2; 375 $uport = $2 if defined $2;
376
377 $hdr{host} = defined $2 ? "$uhost:$2" : "$uhost";
359 378
360 $uhost =~ s/^\[(.*)\]$/$1/; 379 $uhost =~ s/^\[(.*)\]$/$1/;
361 $upath .= "?$query" if length $query; 380 $upath .= "?$query" if length $query;
362 381
363 $upath =~ s%^/?%/%; 382 $upath =~ s%^/?%/%;
396 my ($rhost, $rport, $rscheme, $rpath); # request host, port, path 415 my ($rhost, $rport, $rscheme, $rpath); # request host, port, path
397 416
398 if ($proxy) { 417 if ($proxy) {
399 ($rpath, $rhost, $rport, $rscheme) = ($url, @$proxy); 418 ($rpath, $rhost, $rport, $rscheme) = ($url, @$proxy);
400 419
420 $rscheme = "http" unless defined $rscheme;
421
401 # don't support https requests over https-proxy transport, 422 # don't support https requests over https-proxy transport,
402 # can't be done with tls as spec'ed, unless you double-encrypt. 423 # can't be done with tls as spec'ed, unless you double-encrypt.
403 $rscheme = "http" if $uscheme eq "https" && $rscheme eq "https"; 424 $rscheme = "http" if $uscheme eq "https" && $rscheme eq "https";
404 } else { 425 } else {
405 ($rhost, $rport, $rscheme, $rpath) = ($uhost, $uport, $uscheme, $upath); 426 ($rhost, $rport, $rscheme, $rpath) = ($uhost, $uport, $uscheme, $upath);
406 } 427 }
407 428
408 $hdr{"user-agent"} ||= $USERAGENT; 429 # leave out fragment and query string, just a heuristic
409 $hdr{referer} ||= "$uscheme://$uauthority$upath"; # leave out fragment and query string, just a heuristic 430 $hdr{referer} ||= "$uscheme://$uauthority$upath" unless exists $hdr{referer};
431 $hdr{"user-agent"} ||= $USERAGENT unless exists $hdr{"user-agent"};
410 432
411 $hdr{host} = "$uhost:$uport";
412 $hdr{"content-length"} = length $arg{body}; 433 $hdr{"content-length"} = length $arg{body};
413 434
414 my %state = (connect_guard => 1); 435 my %state = (connect_guard => 1);
415 436
416 _get_slot $uhost, sub { 437 _get_slot $uhost, sub {
418 439
419 return unless $state{connect_guard}; 440 return unless $state{connect_guard};
420 441
421 $state{connect_guard} = AnyEvent::Socket::tcp_connect $rhost, $rport, sub { 442 $state{connect_guard} = AnyEvent::Socket::tcp_connect $rhost, $rport, sub {
422 $state{fh} = shift 443 $state{fh} = shift
444 or do {
445 my $err = "$!";
446 %state = ();
423 or return (%state = (), $cb->(undef, { Status => 599, Reason => "$!", URL => $url })); 447 return $cb->(undef, { Status => 599, Reason => $err, URL => $url });
448 };
449
424 pop; # free memory, save a tree 450 pop; # free memory, save a tree
425 451
426 return unless delete $state{connect_guard}; 452 return unless delete $state{connect_guard};
427 453
428 # get handle 454 # get handle
461 $state{handle}->starttls ("connect") if $uscheme eq "https" && !exists $state{handle}{tls}; 487 $state{handle}->starttls ("connect") if $uscheme eq "https" && !exists $state{handle}{tls};
462 488
463 # send request 489 # send request
464 $state{handle}->push_write ( 490 $state{handle}->push_write (
465 "$method $rpath HTTP/1.0\015\012" 491 "$method $rpath HTTP/1.0\015\012"
466 . (join "", map "\u$_: $hdr{$_}\015\012", keys %hdr) 492 . (join "", map "\u$_: $hdr{$_}\015\012", grep defined $hdr{$_}, keys %hdr)
467 . "\015\012" 493 . "\015\012"
468 . (delete $arg{body}) 494 . (delete $arg{body})
469 ); 495 );
470 496
471 %hdr = (); # reduce memory usage, save a kitten 497 %hdr = (); # reduce memory usage, save a kitten
482 URL => ",$url" 508 URL => ",$url"
483 ); 509 );
484 510
485 # headers, could be optimized a bit 511 # headers, could be optimized a bit
486 $state{handle}->unshift_read (line => $qr_nlnl, sub { 512 $state{handle}->unshift_read (line => $qr_nlnl, sub {
487 for ("$_[1]\012") { 513 for ("$_[1]") {
488 y/\015//d; # weed out any \015, as they show up in the weirdest of places. 514 y/\015//d; # weed out any \015, as they show up in the weirdest of places.
489 515
490 # things seen, not parsed: 516 # things seen, not parsed:
491 # p3pP="NON CUR OTPi OUR NOR UNI" 517 # p3pP="NON CUR OTPi OUR NOR UNI"
492 518
493 $hdr{lc $1} .= ",$2" 519 $hdr{lc $1} .= ",$2"
494 while /\G 520 while /\G
495 ([^:\000-\037]+): 521 ([^:\000-\037]*):
496 [\011\040]* 522 [\011\040]*
497 ((?: [^\012]+ | \012[\011\040] )*) 523 ((?: [^\012]+ | \012[\011\040] )*)
498 \012 524 \012
499 /gxc; 525 /gxc;
500 526
589 615
590 redo if /\G\s*,/gc; 616 redo if /\G\s*,/gc;
591 } 617 }
592 } 618 }
593 619
594 if ($redirect) { 620 if ($redirect && exists $hdr{location}) {
595 # we ignore any errors, as it is very common to receive 621 # we ignore any errors, as it is very common to receive
596 # Content-Length != 0 but no actual body 622 # Content-Length != 0 but no actual body
597 # we also access %hdr, as $_[1] might be an erro 623 # we also access %hdr, as $_[1] might be an erro
598 http_request ($method => $hdr{location}, %arg, recurse => $recurse - 1, $cb); 624 http_request ($method => $hdr{location}, %arg, recurse => $recurse - 1, $cb);
599 } else { 625 } else {
654 $finish->((substr delete $_[0]{rbuf}, 0, $len, ""), \%hdr) 680 $finish->((substr delete $_[0]{rbuf}, 0, $len, ""), \%hdr)
655 if $len <= length $_[0]{rbuf}; 681 if $len <= length $_[0]{rbuf};
656 }); 682 });
657 } else { 683 } else {
658 $_[0]->on_error (sub { 684 $_[0]->on_error (sub {
659 $! == Errno::EPIPE 685 $! == Errno::EPIPE || !$!
660 ? $finish->(delete $_[0]{rbuf}, \%hdr) 686 ? $finish->(delete $_[0]{rbuf}, \%hdr)
661 : $finish->(undef, { Status => 599, Reason => $_[2], URL => $url }); 687 : $finish->(undef, { Status => 599, Reason => $_[2], URL => $url });
662 }); 688 });
663 $_[0]->on_read (sub { }); 689 $_[0]->on_read (sub { });
664 } 690 }
688 }); 714 });
689 } else { 715 } else {
690 &$handle_actual_request; 716 &$handle_actual_request;
691 } 717 }
692 718
693 }, sub { 719 }, $arg{on_prepare} || sub { $timeout };
694 $timeout
695 };
696 }; 720 };
697 721
698 defined wantarray && AnyEvent::Util::guard { %state = () } 722 defined wantarray && AnyEvent::Util::guard { %state = () }
699} 723}
700 724
732=item $AnyEvent::HTTP::USERAGENT 756=item $AnyEvent::HTTP::USERAGENT
733 757
734The default value for the C<User-Agent> header (the default is 758The default value for the C<User-Agent> header (the default is
735C<Mozilla/5.0 (compatible; U; AnyEvent-HTTP/$VERSION; +http://software.schmorp.de/pkg/AnyEvent)>). 759C<Mozilla/5.0 (compatible; U; AnyEvent-HTTP/$VERSION; +http://software.schmorp.de/pkg/AnyEvent)>).
736 760
737=item $AnyEvent::HTTP::MAX_PERSISTENT 761=item $AnyEvent::HTTP::MAX_PER_HOST
738 762
739The maximum number of persistent connections to keep open (default: 8). 763The maximum number of concurrent connections to the same host (identified
764by the hostname). If the limit is exceeded, then the additional requests
765are queued until previous connections are closed.
740 766
741Not implemented currently. 767The default value for this is C<4>, and it is highly advisable to not
742 768increase it.
743=item $AnyEvent::HTTP::PERSISTENT_TIMEOUT
744
745The maximum time to cache a persistent connection, in seconds (default: 2).
746
747Not implemented currently.
748 769
749=item $AnyEvent::HTTP::ACTIVE 770=item $AnyEvent::HTTP::ACTIVE
750 771
751The number of active connections. This is not the number of currently 772The number of active connections. This is not the number of currently
752running requests, but the number of currently open and non-idle TCP 773running requests, but the number of currently open and non-idle TCP

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines