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.41 by root, Sun Jul 5 23:50:59 2009 UTC vs.
Revision 1.45 by root, Fri Jul 17 16:56:36 2009 UTC

41use strict; 41use strict;
42no warnings; 42no warnings;
43 43
44use Errno (); 44use Errno ();
45 45
46use AnyEvent 4.452 (); 46use AnyEvent 4.8 ();
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.4';
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
94When called in void context, nothing is returned. In other contexts, 94When called in void context, nothing is returned. In other contexts,
95C<http_request> returns a "cancellation guard" - you have to keep the 95C<http_request> returns a "cancellation guard" - you have to keep the
96object at least alive until the callback get called. If the object gets 96object at least alive until the callback get called. If the object gets
97destroyed before the callbakc is called, the request will be cancelled. 97destroyed before the callbakc is called, the request will be cancelled.
98 98
99The callback will be called with the response data as first argument 99The callback will be called with the response body data as first argument
100(or C<undef> if it wasn't available due to errors), and a hash-ref with 100(or C<undef> if an error occured), and a hash-ref with response headers as
101response headers as second argument. 101second argument.
102 102
103All the headers in that hash are lowercased. In addition to the response 103All the headers in that hash are lowercased. In addition to the response
104headers, the "pseudo-headers" C<HTTPVersion>, C<Status> and C<Reason> 104headers, the "pseudo-headers" C<HTTPVersion>, C<Status> and C<Reason>
105contain the three parts of the HTTP Status-Line of the same name. The 105contain the three parts of the HTTP Status-Line of the same name. The
106pseudo-header C<URL> contains the original URL (which can differ from the 106pseudo-header C<URL> contains the original URL (which can differ from the
186verification) TLS context. 186verification) TLS context.
187 187
188The default for this option is C<low>, which could be interpreted as "give 188The default for this option is C<low>, which could be interpreted as "give
189me the page, no matter what". 189me the page, no matter what".
190 190
191=item on_header => $callback->($hdr) 191=item on_header => $callback->($headers)
192 192
193When specified, this callback will be called with the header hash as soon 193When specified, this callback will be called with the header hash as soon
194as headers have been successfully received from the remote server (not on 194as headers have been successfully received from the remote server (not on
195locally-generated errors). 195locally-generated errors).
196 196
200 200
201This callback is useful, among other things, to quickly reject unwanted 201This callback is useful, among other things, to quickly reject unwanted
202content, which, if it is supposed to be rare, can be faster than first 202content, which, if it is supposed to be rare, can be faster than first
203doing a C<HEAD> request. 203doing a C<HEAD> request.
204 204
205Example: cancel the request unless the content-type is "text/html".
206
207 on_header => sub {
208 $_[0]{"content-type"} =~ /^text\/html\s*(?:;|$)/
209 },
210
205=item on_body => $callback->($data, $hdr) 211=item on_body => $callback->($partial_body, $headers)
206 212
207When specified, all body data will be "filtered" through this callback. 213When specified, all body data will be passed to this callback instead of
214to the completion callback. The completion callback will get the empty
215string instead of the body data.
208 216
209The callback will incrementally receive body data, and is supposed to 217It has to return either true (in which case AnyEvent::HTTP will continue),
210return it or a modified version of it (empty strings are valid returns). 218or false, in which case AnyEvent::HTTP will cancel the download (and call
219the completion callback with an error code of C<598>).
211 220
212If the callback returns C<undef>, then the request will be cancelled. 221This callback is useful when the data is too large to be held in memory
213 222(so the callback writes it to a file) or when only some information should
214This callback is useful when you want to do some processing on the data, 223be extracted, or when the body should be processed incrementally.
215or the data is too large to be held in memory (so the callback writes it
216to a file and returns the empty string) and so on.
217 224
218It is usually preferred over doing your own body handling via 225It is usually preferred over doing your own body handling via
219C<want_body_handle>. 226C<want_body_handle>, but in case of streaming APIs, where HTTP is
227only used to create a connection, C<want_body_handle> is the better
228alternative, as it allows you to install your own event handler, reducing
229resource usage.
220 230
221=item want_body_handle => $enable 231=item want_body_handle => $enable
222 232
223When enabled (default is disabled), the behaviour of AnyEvent::HTTP 233When enabled (default is disabled), the behaviour of AnyEvent::HTTP
224changes considerably: after parsing the headers, and instead of 234changes considerably: after parsing the headers, and instead of
236This is useful with some push-type services, where, after the initial 246This is useful with some push-type services, where, after the initial
237headers, an interactive protocol is used (typical example would be the 247headers, an interactive protocol is used (typical example would be the
238push-style twitter API which starts a JSON/XML stream). 248push-style twitter API which starts a JSON/XML stream).
239 249
240If you think you need this, first have a look at C<on_body>, to see if 250If you think you need this, first have a look at C<on_body>, to see if
241that doesn'T solve your problem in a better way. 251that doesn't solve your problem in a better way.
242 252
243=back 253=back
244 254
245Example: make a simple HTTP GET request for http://www.nethype.de/ 255Example: make a simple HTTP GET request for http://www.nethype.de/
246 256
347 $uauthority =~ /^(?: .*\@ )? ([^\@:]+) (?: : (\d+) )?$/x 357 $uauthority =~ /^(?: .*\@ )? ([^\@:]+) (?: : (\d+) )?$/x
348 or return $cb->(undef, { Status => 599, Reason => "Unparsable URL", URL => $url }); 358 or return $cb->(undef, { Status => 599, Reason => "Unparsable URL", URL => $url });
349 359
350 my $uhost = $1; 360 my $uhost = $1;
351 $uport = $2 if defined $2; 361 $uport = $2 if defined $2;
362
363 $hdr{host} = defined $2 ? "$uhost:$2" : "$uhost";
352 364
353 $uhost =~ s/^\[(.*)\]$/$1/; 365 $uhost =~ s/^\[(.*)\]$/$1/;
354 $upath .= "?$query" if length $query; 366 $upath .= "?$query" if length $query;
355 367
356 $upath =~ s%^/?%/%; 368 $upath =~ s%^/?%/%;
399 } 411 }
400 412
401 $hdr{"user-agent"} ||= $USERAGENT; 413 $hdr{"user-agent"} ||= $USERAGENT;
402 $hdr{referer} ||= "$uscheme://$uauthority$upath"; # leave out fragment and query string, just a heuristic 414 $hdr{referer} ||= "$uscheme://$uauthority$upath"; # leave out fragment and query string, just a heuristic
403 415
404 $hdr{host} = "$uhost:$uport";
405 $hdr{"content-length"} = length $arg{body}; 416 $hdr{"content-length"} = length $arg{body};
406 417
407 my %state = (connect_guard => 1); 418 my %state = (connect_guard => 1);
408 419
409 _get_slot $uhost, sub { 420 _get_slot $uhost, sub {
411 422
412 return unless $state{connect_guard}; 423 return unless $state{connect_guard};
413 424
414 $state{connect_guard} = AnyEvent::Socket::tcp_connect $rhost, $rport, sub { 425 $state{connect_guard} = AnyEvent::Socket::tcp_connect $rhost, $rport, sub {
415 $state{fh} = shift 426 $state{fh} = shift
427 or do {
428 my $err = "$!";
429 %state = ();
416 or return (%state = (), $cb->(undef, { Status => 599, Reason => "$!", URL => $url })); 430 return $cb->(undef, { Status => 599, Reason => $err, URL => $url });
431 };
432
417 pop; # free memory, save a tree 433 pop; # free memory, save a tree
418 434
419 return unless delete $state{connect_guard}; 435 return unless delete $state{connect_guard};
420 436
421 # get handle 437 # get handle
483 # things seen, not parsed: 499 # things seen, not parsed:
484 # p3pP="NON CUR OTPi OUR NOR UNI" 500 # p3pP="NON CUR OTPi OUR NOR UNI"
485 501
486 $hdr{lc $1} .= ",$2" 502 $hdr{lc $1} .= ",$2"
487 while /\G 503 while /\G
488 ([^:\000-\037]+): 504 ([^:\000-\037]*):
489 [\011\040]* 505 [\011\040]*
490 ((?: [^\012]+ | \012[\011\040] )*) 506 ((?: [^\012]+ | \012[\011\040] )*)
491 \012 507 \012
492 /gxc; 508 /gxc;
493 509
597 my $len = $hdr{"content-length"}; 613 my $len = $hdr{"content-length"};
598 614
599 if (!$redirect && $arg{on_header} && !$arg{on_header}(\%hdr)) { 615 if (!$redirect && $arg{on_header} && !$arg{on_header}(\%hdr)) {
600 $finish->(undef, { Status => 598, Reason => "Request cancelled by on_header", URL => $url }); 616 $finish->(undef, { Status => 598, Reason => "Request cancelled by on_header", URL => $url });
601 } elsif ( 617 } elsif (
602 $hdr{Status} =~ /^(?:1..|204|304)$/ 618 $hdr{Status} =~ /^(?:1..|[23]04)$/
603 or $method eq "HEAD" 619 or $method eq "HEAD"
604 or (defined $len && !$len) 620 or (defined $len && !$len)
605 ) { 621 ) {
606 # no body 622 # no body
607 $finish->("", \%hdr); 623 $finish->("", \%hdr);
647 $finish->((substr delete $_[0]{rbuf}, 0, $len, ""), \%hdr) 663 $finish->((substr delete $_[0]{rbuf}, 0, $len, ""), \%hdr)
648 if $len <= length $_[0]{rbuf}; 664 if $len <= length $_[0]{rbuf};
649 }); 665 });
650 } else { 666 } else {
651 $_[0]->on_error (sub { 667 $_[0]->on_error (sub {
652 $! == Errno::EPIPE 668 $! == Errno::EPIPE || !$!
653 ? $finish->(delete $_[0]{rbuf}, \%hdr) 669 ? $finish->(delete $_[0]{rbuf}, \%hdr)
654 : $finish->(undef, { Status => 599, Reason => $_[2], URL => $url }); 670 : $finish->(undef, { Status => 599, Reason => $_[2], URL => $url });
655 }); 671 });
656 $_[0]->on_read (sub { }); 672 $_[0]->on_read (sub { });
657 } 673 }
725=item $AnyEvent::HTTP::USERAGENT 741=item $AnyEvent::HTTP::USERAGENT
726 742
727The default value for the C<User-Agent> header (the default is 743The default value for the C<User-Agent> header (the default is
728C<Mozilla/5.0 (compatible; U; AnyEvent-HTTP/$VERSION; +http://software.schmorp.de/pkg/AnyEvent)>). 744C<Mozilla/5.0 (compatible; U; AnyEvent-HTTP/$VERSION; +http://software.schmorp.de/pkg/AnyEvent)>).
729 745
730=item $AnyEvent::HTTP::MAX_PERSISTENT 746=item $AnyEvent::HTTP::MAX_PER_HOST
731 747
732The maximum number of persistent connections to keep open (default: 8). 748The maximum number of concurrent conenctions to the same host (identified
749by the hostname). If the limit is exceeded, then the additional requests
750are queued until previous connections are closed.
733 751
734Not implemented currently. 752The default value for this is C<4>, and it is highly advisable to not
735 753increase it.
736=item $AnyEvent::HTTP::PERSISTENT_TIMEOUT
737
738The maximum time to cache a persistent connection, in seconds (default: 2).
739
740Not implemented currently.
741 754
742=item $AnyEvent::HTTP::ACTIVE 755=item $AnyEvent::HTTP::ACTIVE
743 756
744The number of active connections. This is not the number of currently 757The number of active connections. This is not the number of currently
745running requests, but the number of currently open and non-idle TCP 758running requests, but the number of currently open and non-idle TCP

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines