NAME
LWP::Protocol::Coro::http - Coro-friendly HTTP and HTTPS backend for LWP
VERSION
Version 1.12.0
SYNOPSIS
# Make HTTP and HTTPS requests Coro-friendly.
use LWP::Protocol::Coro::http;
# Or LWP::Simple, WWW::Mechanize, etc
use LWP::UserAgent;
# A reason to want LWP friendly to event loops.
use Coro qw( async );
for my $url (@urls) {
async {
my $ua = LWP::UserAgent->new();
$ua->protocols_allowed([qw( http https )]); # The only protocols made safe.
process( $ua->get($url) );
};
}
# Using a worker pool model to fetch web pages in parallel.
use Coro qw( async );
use Coro::Channel qw( );
use LWP::Protocol::Coro::http qw( );
use LWP::UserAgent qw( );
my $num_workers = 10;
my $q = Coro::Channel->new();
my @threads;
for (1..$num_workers) {
push @threads, async {
my $ua = LWP::UserAgent->new();
$ua->protocols_allowed([qw( http https )]);
while (my $url = $q->get()) {
handle_response($ua->get($url));
}
}
}
while (my $url = get_next_url()) {
$q->put($url);
}
$q->shutdown();
$_->join() for @threads;
DESCRIPTION
Coro is a cooperating multitasking system. This means it requires some amount of cooperation on the part of user code in order to provide parallelism.
This module makes LWP more cooperative by plugging in an HTTP and HTTPS protocol implementor powered by AnyEvent::HTTP.
In short, it allows AnyEvent callbacks and Coro threads to execute when LWP is blocked. (Please let me know at <ikegami@adaelis.com>
what other system this helps so I can add tests and add a mention.)
All LWP features and configuration options should still be available when using this module.
SSL SUPPORT
Only the following ssl_opts
are currently supported:
verify_hostname
SSL_verify_mode
Only partially supported. Unspecified or
VERIFY_NONE
disables verification, anything else enables it.SSL_verifycn_scheme
Only
www
is supported. Any other value is ignored.SSL_ca_file
SSL_ca_path
SSL_cert_file
SSL_cert
SSL_key_file
SSL_key
As with LWP::Protocol::https, if hostname verification is requested by LWP::UserAgent's ssl_opts
, and neither SSL_ca_file
nor SSL_ca_path
is set, then SSL_ca_file
is implied to be the one provided by Mozilla::CA.
The maintainer will be happy to add support for additional options.
PROXY SUPPORT
The following proxy types are supported:
https
http
socks
(alias forsocks5
)socks5
(requires AnyEvent::HTTP::Socks)socks4a
(requires AnyEvent::HTTP::Socks)socks4
(requires AnyEvent::HTTP::Socks)
SEE ALSO
-
A newer implementation of this module that doesn't require Coro. These two modules are developed in parallel.
-
An excellent cooperative multitasking library assisted by this module.
-
Powers this module.
LWP::Simple, LWP::UserAgent, WWW::Mechanize
Affected by this module.
-
An alternative to this module for users of Coro. Intrusive, which results in problems in some unrelated code. Doesn't support HTTPS. Supports FTP and NTTP.
AnyEvent::HTTP::LWP::UserAgent
An alternative to this module that attempts to provide the same interface as LWP::UserAgent, but falls short in many ways. Unlike AnyEvent::HTTP::LWP::UserAgent, this module only replaces the back end of LWP::UserAgent, offering a much more faithful experience.
BUGS
Please report any bugs or feature requests to bug-LWP-Protocol-Coro-http at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=LWP-Protocol-Coro-http. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc LWP::Protocol::Coro::http
You can also look for information at:
Search CPAN
RT: CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=LWP-Protocol-Coro-http
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
AUTHORS
Eric Brine, <ikegami@adaelis.com>
, Maintainer
Max Maischein, <corion@cpan.org>
Graham Barr, <gbarr@pobox.com>
COPYRIGHT & LICENSE
No rights reserved.
The author has dedicated the work to the Commons by waiving all of his or her rights to the work worldwide under copyright law and all related or neighboring legal rights he or she had in the work, to the extent allowable by law.
Works under CC0 do not require attribution. When citing the work, you should not imply endorsement by the author.