← Index
NYTProf Performance Profile   « block view • line view • sub view »
For 05.Domain_and_Item.t
  Run on Tue May 4 17:21:41 2010
Reported on Tue May 4 17:23:10 2010

File /usr/local/lib/perl5/site_perl/5.10.1/LWP/Protocol/http.pm
Statements Executed 7239
Statement Execution Time 15.2s
Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1401215.2s15.2sLWP::Protocol::http::SocketMethods::::CORE:sselectLWP::Protocol::http::SocketMethods::CORE:sselect (opcode)
411110.8ms15.5sLWP::Protocol::http::::request LWP::Protocol::http::request
140213.25ms15.2sLWP::Protocol::http::SocketMethods::::can_readLWP::Protocol::http::SocketMethods::can_read
101211.83ms15.2sLWP::Protocol::http::SocketMethods::::sysreadLWP::Protocol::http::SocketMethods::sysread
1111.39ms1.48msLWP::Protocol::http::::BEGIN@216 LWP::Protocol::http::BEGIN@216
101121.25ms1.25msLWP::Protocol::http::SocketMethods::::CORE:sysreadLWP::Protocol::http::SocketMethods::CORE:sysread (opcode)
9821958µs87.2msLWP::Protocol::http::::__ANON__[:394] LWP::Protocol::http::__ANON__[:394]
12311843µs912µsLWP::Protocol::http::::__ANON__[:167] LWP::Protocol::http::__ANON__[:167]
4111836µs184msLWP::Protocol::http::::_new_socket LWP::Protocol::http::_new_socket
4111777µs5.73msLWP::Protocol::http::::_get_sock_info LWP::Protocol::http::_get_sock_info
4111574µs1.75msLWP::Protocol::http::::_fixup_header LWP::Protocol::http::_fixup_header
4112295µs295µsLWP::Protocol::http::::CORE:sselect LWP::Protocol::http::CORE:sselect (opcode)
20552263µs263µsLWP::Protocol::http::::CORE:match LWP::Protocol::http::CORE:match (opcode)
4111190µs190µsLWP::Protocol::http::SocketMethods::::increment_response_countLWP::Protocol::http::SocketMethods::increment_response_count
8121185µs185µsLWP::Protocol::http::::socket_type LWP::Protocol::http::socket_type
2873297µs97µsLWP::Protocol::http::::CORE:subst LWP::Protocol::http::CORE:subst (opcode)
411171µs71µsLWP::Protocol::http::::_check_sock LWP::Protocol::http::_check_sock
11115µs18µsLWP::Protocol::http::::BEGIN@3 LWP::Protocol::http::BEGIN@3
1119µs35µsLWP::Protocol::http::Socket::::BEGIN@472 LWP::Protocol::http::Socket::BEGIN@472
2118µs8µsLWP::Protocol::http::::socket_class LWP::Protocol::http::socket_class
1117µs39µsLWP::Protocol::http::::BEGIN@9 LWP::Protocol::http::BEGIN@9
2114µs4µsLWP::Protocol::http::::_extra_sock_opts LWP::Protocol::http::_extra_sock_opts
0000s0sLWP::Protocol::http::SocketMethods::::pingLWP::Protocol::http::SocketMethods::ping
0000s0sLWP::Protocol::http::::hlist_remove LWP::Protocol::http::hlist_remove
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package LWP::Protocol::http;
2
3344µs221µs
# spent 18µs (15+3) within LWP::Protocol::http::BEGIN@3 which was called # once (15µs+3µs) by LWP::Protocol::implementor at line 3
use strict;
# spent 18µs making 1 call to LWP::Protocol::http::BEGIN@3 # spent 3µs making 1 call to strict::import
4
51600nsrequire HTTP::Response;
61300nsrequire HTTP::Status;
7181µsrequire Net::HTTP;
8
93792µs272µs
# spent 39µs (7+32) within LWP::Protocol::http::BEGIN@9 which was called # once (7µs+32µs) by LWP::Protocol::implementor at line 9
use vars qw(@ISA @EXTRA_SOCK_OPTS);
# spent 39µs making 1 call to LWP::Protocol::http::BEGIN@9 # spent 32µs making 1 call to vars::import
10
111600nsrequire LWP::Protocol;
12112µs@ISA = qw(LWP::Protocol);
13
141700nsmy $CRLF = "\015\012";
15
16sub _new_socket
17
# spent 184ms (836µs+183) within LWP::Protocol::http::_new_socket which was called 41 times, avg 4.48ms/call: # 41 times (836µs+183ms) by LWP::Protocol::http::request at line 155, avg 4.48ms/call
{
184164µs my($self, $host, $port, $timeout) = @_;
194141µs my $conn_cache = $self->{ua}{conn_cache};
204121µs if ($conn_cache) {
2141242µs82511µs if (my $sock = $conn_cache->withdraw($self->socket_type, "$host:$port")) {
# spent 447µs making 41 calls to LWP::ConnCache::withdraw, avg 11µs/call # spent 64µs making 41 calls to LWP::Protocol::http::socket_type, avg 2µs/call
2239275µs39851µs return $sock if $sock && !$sock->can_read(0);
# spent 851µs making 39 calls to LWP::Protocol::http::SocketMethods::can_read, avg 22µs/call
23 # if the socket is readable, then either the peer has closed the
24 # connection or there are some garbage bytes on it. In either
25 # case we abandon it.
26 $sock->close;
27 }
28 }
29
3027µs local($^W) = 0; # IO::Socket::INET can be noisy
31234µs6181ms my $sock = $self->socket_class->new(PeerAddr => $host,
# spent 181ms making 2 calls to Net::HTTP::new, avg 90.7ms/call # spent 8µs making 2 calls to LWP::Protocol::http::socket_class, avg 4µs/call # spent 4µs making 2 calls to LWP::Protocol::http::_extra_sock_opts, avg 2µs/call
32 PeerPort => $port,
33 LocalAddr => $self->{ua}{local_address},
34 Proto => 'tcp',
35 Timeout => $timeout,
36 KeepAlive => !!$conn_cache,
37 SendTE => 1,
38 $self->_extra_sock_opts($host, $port),
39 );
40
4121µs unless ($sock) {
42 # IO::Socket::INET leaves additional error messages in $@
43 $@ =~ s/^.*?: //;
44 die "Can't connect to $host:$port ($@)";
45 }
46
47 # perl 5.005's IO::Socket does not have the blocking method.
48411µs227µs eval { $sock->blocking(0); };
# spent 27µs making 2 calls to IO::Socket::blocking, avg 13µs/call
49
50217µs $sock;
51}
52
53sub socket_type
54
# spent 185µs within LWP::Protocol::http::socket_type which was called 81 times, avg 2µs/call: # 41 times (64µs+0s) by LWP::Protocol::http::_new_socket at line 21, avg 2µs/call # 40 times (121µs+0s) by LWP::Protocol::http::request at line 408, avg 3µs/call
{
5581293µs return "http";
56}
57
58sub socket_class
59
# spent 8µs within LWP::Protocol::http::socket_class which was called 2 times, avg 4µs/call: # 2 times (8µs+0s) by LWP::Protocol::http::_new_socket at line 31, avg 4µs/call
{
602900ns my $self = shift;
6129µs (ref($self) || $self) . "::Socket";
62}
63
64sub _extra_sock_opts # to be overridden by subclass
65
# spent 4µs within LWP::Protocol::http::_extra_sock_opts which was called 2 times, avg 2µs/call: # 2 times (4µs+0s) by LWP::Protocol::http::_new_socket at line 31, avg 2µs/call
{
6626µs return @EXTRA_SOCK_OPTS;
67}
68
69sub _check_sock
7041105µs
# spent 71µs within LWP::Protocol::http::_check_sock which was called 41 times, avg 2µs/call: # 41 times (71µs+0s) by LWP::Protocol::http::request at line 156, avg 2µs/call
{
71 #my($self, $req, $sock) = @_;
72}
73
74sub _get_sock_info
75
# spent 5.73ms (777µs+4.95) within LWP::Protocol::http::_get_sock_info which was called 41 times, avg 140µs/call: # 41 times (777µs+4.95ms) by LWP::Protocol::http::request at line 367, avg 140µs/call
{
764156µs my($self, $res, $sock) = @_;
7741603µs1234.88ms if (defined(my $peerhost = $sock->peerhost)) {
# spent 2.07ms making 41 calls to IO::Socket::INET::peerhost, avg 51µs/call # spent 2.03ms making 40 calls to HTTP::Message::__ANON__[HTTP/Message.pm:622], avg 51µs/call # spent 762µs making 41 calls to IO::Socket::INET::peerport, avg 19µs/call # spent 11µs making 1 call to HTTP::Message::AUTOLOAD
78 $res->header("Client-Peer" => "$peerhost:" . $sock->peerport);
79 }
80}
81
82sub _fixup_header
83
# spent 1.75ms (574µs+1.18) within LWP::Protocol::http::_fixup_header which was called 41 times, avg 43µs/call: # 41 times (574µs+1.18ms) by LWP::Protocol::http::request at line 160, avg 43µs/call
{
844157µs my($self, $h, $url, $proxy) = @_;
85
86 # Extract 'Host' header
874193µs41415µs my $hhost = $url->authority;
# spent 415µs making 41 calls to URI::_generic::authority, avg 10µs/call
8841156µs4128µs if ($hhost =~ s/^([^\@]*)\@//) { # get rid of potential "user:pass@"
# spent 28µs making 41 calls to LWP::Protocol::http::CORE:subst, avg 693ns/call
89 # add authorization header if we need them. HTTP URLs do
90 # not really support specification of user and password, but
91 # we allow it.
92 if (defined($1) && not $h->header('Authorization')) {
93 require URI::Escape;
94 $h->authorization_basic(map URI::Escape::uri_unescape($_),
95 split(":", $1, 2));
96 }
97 }
984180µs41737µs $h->init_header('Host' => $hhost);
# spent 737µs making 41 calls to HTTP::Headers::init_header, avg 18µs/call
99
10041110µs if ($proxy) {
101 # Check the proxy URI's userinfo() for proxy credentials
102 # export http_proxy="http://proxyuser:proxypass@proxyhost:port"
103 my $p_auth = $proxy->userinfo();
104 if(defined $p_auth) {
105 require URI::Escape;
106 $h->proxy_authorization_basic(map URI::Escape::uri_unescape($_),
107 split(":", $p_auth, 2))
108 }
109 }
110}
111
112sub hlist_remove {
113 my($hlist, $k) = @_;
114 $k = lc $k;
115 for (my $i = @$hlist - 2; $i >= 0; $i -= 2) {
116 next unless lc($hlist->[$i]) eq $k;
117 splice(@$hlist, $i, 2);
118 }
119}
120
121sub request
122
# spent 15.5s (10.8ms+15.5) within LWP::Protocol::http::request which was called 41 times, avg 378ms/call: # 41 times (10.8ms+15.5s) by LWP::UserAgent::send_request at line 178 of LWP/UserAgent.pm, avg 378ms/call
{
1234157µs my($self, $request, $proxy, $arg, $size, $timeout) = @_;
124
1254117µs $size ||= 4096;
126
127 # check method
1284171µs41230µs my $method = $request->method;
# spent 230µs making 41 calls to HTTP::Request::method, avg 6µs/call
12941221µs4194µs unless ($method =~ /^[A-Za-z0-9_!\#\$%&\'*+\-.^\`|~]+$/) { # HTTP token
# spent 94µs making 41 calls to LWP::Protocol::http::CORE:match, avg 2µs/call
130 return new HTTP::Response &HTTP::Status::RC_BAD_REQUEST,
131 'Library does not allow method ' .
132 "$method for 'http:' URLs";
133 }
134
1354177µs4196µs my $url = $request->uri;
# spent 96µs making 41 calls to HTTP::Request::uri, avg 2µs/call
1364127µs my($host, $port, $fullpath);
137
138 # Check if we're proxy'ing
1394135µs if (defined $proxy) {
140 # $proxy is an URL to an HTTP server which will proxy this request
141 $host = $proxy->host;
142 $port = $proxy->port;
143 $fullpath = $method eq "CONNECT" ?
144 ($url->host . ":" . $url->port) :
145 $url->as_string;
146 }
147 else {
1484190µs41980µs $host = $url->host;
# spent 980µs making 41 calls to URI::_server::host, avg 24µs/call
14941120µs411.07ms $port = $url->port;
# spent 1.07ms making 41 calls to URI::_server::port, avg 26µs/call
15041125µs41382µs $fullpath = $url->path_query;
# spent 382µs making 41 calls to URI::_generic::path_query, avg 9µs/call
15141162µs4151µs $fullpath = "/$fullpath" unless $fullpath =~ m,^/,;
# spent 51µs making 41 calls to LWP::Protocol::http::CORE:match, avg 1µs/call
152 }
153
154 # connect to remote site
15541153µs41184ms my $socket = $self->_new_socket($host, $port, $timeout);
# spent 184ms making 41 calls to LWP::Protocol::http::_new_socket, avg 4.48ms/call
15641108µs4171µs $self->_check_sock($request, $socket);
# spent 71µs making 41 calls to LWP::Protocol::http::_check_sock, avg 2µs/call
157
1584110µs my @h;
159412.31ms822.14ms my $request_headers = $request->headers->clone;
# spent 2.05ms making 41 calls to Storable::dclone, avg 50µs/call # spent 94µs making 41 calls to HTTP::Message::headers, avg 2µs/call
16041138µs411.75ms $self->_fixup_header($request_headers, $url, $proxy);
# spent 1.75ms making 41 calls to LWP::Protocol::http::_fixup_header, avg 43µs/call
161
162
# spent 912µs (843+69) within LWP::Protocol::http::__ANON__[/usr/local/lib/perl5/site_perl/5.10.1/LWP/Protocol/http.pm:167] which was called 123 times, avg 7µs/call: # 123 times (843µs+69µs) by HTTP::Headers::scan at line 231 of HTTP/Headers.pm, avg 7µs/call
$request_headers->scan(sub {
163123105µs my($k, $v) = @_;
164123273µs12336µs $k =~ s/^://;
# spent 36µs making 123 calls to LWP::Protocol::http::CORE:subst, avg 293ns/call
165123231µs12333µs $v =~ s/\n/ /g;
# spent 33µs making 123 calls to LWP::Protocol::http::CORE:subst, avg 267ns/call
166123364µs push(@h, $k, $v);
16741386µs412.49ms });
# spent 2.49ms making 41 calls to HTTP::Headers::scan, avg 61µs/call
168
16941132µs41333µs my $content_ref = $request->content_ref;
# spent 333µs making 41 calls to HTTP::Message::content_ref, avg 8µs/call
1704121µs $content_ref = $$content_ref if ref($$content_ref);
1714112µs my $chunked;
172417µs my $has_content;
173
1744149µs if (ref($content_ref) eq 'CODE') {
175 my $clen = $request_headers->header('Content-Length');
176 $has_content++ if $clen;
177 unless (defined $clen) {
178 push(@h, "Transfer-Encoding" => "chunked");
179 $has_content++;
180 $chunked++;
181 }
182 }
183 else {
184 # Set (or override) Content-Length header
1854187µs41622µs my $clen = $request_headers->header('Content-Length');
# spent 622µs making 41 calls to HTTP::Headers::header, avg 15µs/call
1864156µs if (defined($$content_ref) && length($$content_ref)) {
1874116µs $has_content = length($$content_ref);
1884140µs if (!defined($clen) || $clen ne $has_content) {
1894113µs if (defined $clen) {
190 warn "Content-Length header value was wrong, fixed";
191 hlist_remove(\@h, 'Content-Length');
192 }
1934140µs push(@h, 'Content-Length' => $has_content);
194 }
195 }
196 elsif ($clen) {
197 warn "Content-Length set when there is no content, fixed";
198 hlist_remove(\@h, 'Content-Length');
199 }
200 }
201
2024120µs my $write_wait = 0;
20341172µs82532µs $write_wait = 2
# spent 520µs making 41 calls to HTTP::Headers::header, avg 13µs/call # spent 11µs making 41 calls to LWP::Protocol::http::CORE:match, avg 280ns/call
204 if ($request_headers->header("Expect") || "") =~ /100-continue/;
205
20641155µs4131.9ms my $req_buf = $socket->format_request($method, $fullpath, @h);
# spent 31.9ms making 41 calls to Net::HTTP::Methods::format_request, avg 778µs/call
207 #print "------\n$req_buf\n------\n";
208
2094134µs if (!$has_content || $write_wait || $has_content > 8*1024) {
210 WRITE:
211 {
212 # Since this just writes out the header block it should almost
213 # always succeed to send the whole buffer in a single write call.
214 my $n = $socket->syswrite($req_buf, length($req_buf));
215 unless (defined $n) {
21631.23ms11.48ms
# spent 1.48ms (1.39+94µs) within LWP::Protocol::http::BEGIN@216 which was called # once (1.39ms+94µs) by LWP::Protocol::implementor at line 216
redo WRITE if $!{EINTR};
# spent 1.48ms making 1 call to LWP::Protocol::http::BEGIN@216
217 if ($!{EAGAIN}) {
218 select(undef, undef, undef, 0.1);
219 redo WRITE;
220 }
221 die "write failed: $!";
222 }
223 if ($n) {
224 substr($req_buf, 0, $n, "");
225 }
226 else {
227 select(undef, undef, undef, 0.5);
228 }
229 redo WRITE if length $req_buf;
230 }
231 }
232
2334135µs my($code, $mess, @junk);
2344113µs my $drop_connection;
235
2364129µs if ($has_content) {
237419µs my $eof;
2384112µs my $wbuf;
2394125µs my $woffset = 0;
2404152µs if (ref($content_ref) eq 'CODE') {
241 my $buf = &$content_ref();
242 $buf = "" unless defined($buf);
243 $buf = sprintf "%x%s%s%s", length($buf), $CRLF, $buf, $CRLF
244 if $chunked;
245 substr($buf, 0, 0) = $req_buf if $req_buf;
246 $wbuf = \$buf;
247 }
248 else {
2494131µs if ($req_buf) {
2504171µs my $buf = $req_buf . $$content_ref;
2514123µs $wbuf = \$buf;
252 }
253 else {
254 $wbuf = $content_ref;
255 }
2564110µs $eof = 1;
257 }
258
2594135µs my $fbits = '';
2604175µs vec($fbits, fileno($socket), 1) = 1;
261
262 WRITE:
2634175µs while ($woffset < length($$wbuf)) {
264
2654113µs my $sel_timeout = $timeout;
2664115µs if ($write_wait) {
267 $sel_timeout = $write_wait if $write_wait < $sel_timeout;
268 }
269418µs my $time_before;
2704138µs $time_before = time if $sel_timeout;
271
2724117µs my $rbits = $fbits;
2734115µs my $wbits = $write_wait ? undef : $fbits;
2744114µs my $sel_timeout_before = $sel_timeout;
27541469µs41295µs SELECT:
# spent 295µs making 41 calls to LWP::Protocol::http::CORE:sselect, avg 7µs/call
276 {
2774119µs my $nfound = select($rbits, $wbits, undef, $sel_timeout);
2784133µs if ($nfound < 0) {
279 if ($!{EINTR} || $!{EAGAIN}) {
280 if ($time_before) {
281 $sel_timeout = $sel_timeout_before - (time - $time_before);
282 $sel_timeout = 0 if $sel_timeout < 0;
283 }
284 redo SELECT;
285 }
286 die "select failed: $!";
287 }
288 }
289
2904121µs if ($write_wait) {
291 $write_wait -= time - $time_before;
292 $write_wait = 0 if $write_wait < 0;
293 }
294
29541154µs4155µs if (defined($rbits) && $rbits =~ /[^\0]/) {
# spent 55µs making 41 calls to LWP::Protocol::http::CORE:match, avg 1µs/call
296 # readable
297 my $buf = $socket->_rbuf;
298 my $n = $socket->sysread($buf, 1024, length($buf));
299 unless (defined $n) {
300 die "read failed: $!" unless $!{EINTR} || $!{EAGAIN};
301 # if we get here the rest of the block will do nothing
302 # and we will retry the read on the next round
303 }
304 elsif ($n == 0) {
305 # the server closed the connection before we finished
306 # writing all the request content. No need to write any more.
307 $drop_connection++;
308 last WRITE;
309 }
310 $socket->_rbuf($buf);
311 if (!$code && $buf =~ /\015?\012\015?\012/) {
312 # a whole response header is present, so we can read it without blocking
313 ($code, $mess, @h) = $socket->read_response_headers(laxed => 1,
314 junk_out => \@junk,
315 );
316 if ($code eq "100") {
317 $write_wait = 0;
318 undef($code);
319 }
320 else {
321 $drop_connection++;
322 last WRITE;
323 # XXX should perhaps try to abort write in a nice way too
324 }
325 }
326 }
32741193µs4151µs if (defined($wbits) && $wbits =~ /[^\0]/) {
# spent 51µs making 41 calls to LWP::Protocol::http::CORE:match, avg 1µs/call
32841233µs412.89ms my $n = $socket->syswrite($$wbuf, length($$wbuf), $woffset);
# spent 2.89ms making 41 calls to IO::Handle::syswrite, avg 70µs/call
3294159µs unless (defined $n) {
330 die "write failed: $!" unless $!{EINTR} || $!{EAGAIN};
331 $n = 0; # will retry write on the next round
332 }
333 elsif ($n == 0) {
334 die "write failed: no bytes written";
335 }
3364128µs $woffset += $n;
337
3384124µs if (!$eof && $woffset >= length($$wbuf)) {
339 # need to refill buffer from $content_ref code
340 my $buf = &$content_ref();
341 $buf = "" unless defined($buf);
342 $eof++ unless length($buf);
343 $buf = sprintf "%x%s%s%s", length($buf), $CRLF, $buf, $CRLF
344 if $chunked;
345 $wbuf = \$buf;
346 $woffset = 0;
347 }
348 }
349 } # WRITE
350 }
351
35241744µs4115.1s ($code, $mess, @h) = $socket->read_response_headers(laxed => 1, junk_out => \@junk)
# spent 15.1s making 41 calls to Net::HTTP::Methods::read_response_headers, avg 368ms/call
353 unless $code;
3544133µs ($code, $mess, @h) = $socket->read_response_headers(laxed => 1, junk_out => \@junk)
355 if $code eq "100";
356
35741311µs413.56ms my $response = HTTP::Response->new($code, $mess);
# spent 3.56ms making 41 calls to HTTP::Response::new, avg 87µs/call
35841185µs41245µs my $peer_http_version = $socket->peer_http_version;
# spent 245µs making 41 calls to Net::HTTP::Methods::__ANON__[Net/HTTP/Methods.pm:104], avg 6µs/call
35941169µs41429µs $response->protocol("HTTP/$peer_http_version");
# spent 429µs making 41 calls to HTTP::Message::protocol, avg 10µs/call
360 {
3618269µs local $HTTP::Headers::TRANSLATE_UNDERSCORE;
36241192µs413.49ms $response->push_header(@h);
# spent 3.46ms making 40 calls to HTTP::Message::__ANON__[HTTP/Message.pm:622], avg 87µs/call # spent 22µs making 1 call to HTTP::Message::AUTOLOAD
363 }
3644134µs $response->push_header("Client-Junk" => \@junk) if @junk;
365
36641153µs41424µs $response->request($request);
# spent 424µs making 41 calls to HTTP::Response::request, avg 10µs/call
36741194µs415.73ms $self->_get_sock_info($response, $socket);
# spent 5.73ms making 41 calls to LWP::Protocol::http::_get_sock_info, avg 140µs/call
368
3694132µs if ($method eq "CONNECT") {
370 $response->{client_socket} = $socket; # so it can be picked up
371 return $response;
372 }
373
37441422µs812.27ms if (my @te = $response->remove_header('Transfer-Encoding')) {
# spent 2.26ms making 80 calls to HTTP::Message::__ANON__[HTTP/Message.pm:622], avg 28µs/call # spent 10µs making 1 call to HTTP::Message::AUTOLOAD
375 $response->push_header('Client-Transfer-Encoding', \@te);
376 }
37741229µs821.20ms $response->push_header('Client-Response-Num', scalar $socket->increment_response_count);
# spent 1.01ms making 41 calls to HTTP::Message::__ANON__[HTTP/Message.pm:622], avg 25µs/call # spent 190µs making 41 calls to LWP::Protocol::http::SocketMethods::increment_response_count, avg 5µs/call
378
3794119µs my $complete;
380
# spent 87.2ms (958µs+86.2) within LWP::Protocol::http::__ANON__[/usr/local/lib/perl5/site_perl/5.10.1/LWP/Protocol/http.pm:394] which was called 98 times, avg 890µs/call: # 57 times (452µs+82.7ms) by LWP::Protocol::collect at line 158 of LWP/Protocol.pm, avg 1.46ms/call # 41 times (505µs+3.52ms) by LWP::Protocol::collect at line 148 of LWP/Protocol.pm, avg 98µs/call
$response = $self->collect($arg, $response, sub {
3819859µs my $buf = ""; #prevent use of uninitialized value in SSLeay.xs
3829837µs my $n;
38398280µs9886.2ms READ:
# spent 86.2ms making 98 calls to Net::HTTP::Methods::read_entity_body, avg 880µs/call
384 {
3859843µs $n = $socket->read_entity_body($buf, $size);
3869830µs unless (defined $n) {
387 redo READ if $!{EINTR} || $!{EAGAIN};
388 die "read failed: $!";
389 }
3909857µs redo READ if $n == -1;
391 }
3929842µs $complete++ if !$n;
39398327µs return \$buf;
39441704µs41112ms } );
# spent 112ms making 41 calls to LWP::Protocol::collect, avg 2.73ms/call
3954119µs $drop_connection++ unless $complete;
396
39741265µs41198µs @h = $socket->get_trailers;
# spent 198µs making 41 calls to Net::HTTP::Methods::get_trailers, avg 5µs/call
3984132µs if (@h) {
399 local $HTTP::Headers::TRANSLATE_UNDERSCORE;
400 $response->push_header(@h);
401 }
402
403 # keep-alive support
4044140µs unless ($drop_connection) {
4054177µs if (my $conn_cache = $self->{ua}{conn_cache}) {
40641217µs411.28ms my %connection = map { (lc($_) => 1) }
# spent 1.28ms making 41 calls to HTTP::Message::__ANON__[HTTP/Message.pm:622], avg 31µs/call
407 split(/\s*,\s*/, ($response->header("Connection") || ""));
40841392µs801.07ms if (($peer_http_version eq "1.1" && !$connection{close}) ||
# spent 948µs making 40 calls to LWP::ConnCache::deposit, avg 24µs/call # spent 121µs making 40 calls to LWP::Protocol::http::socket_type, avg 3µs/call
409 $connection{"keep-alive"})
410 {
411 $conn_cache->deposit($self->socket_type, "$host:$port", $socket);
412 }
413 }
414 }
415
41641517µs $response;
417}
418
419
420#-----------------------------------------------------------
421package LWP::Protocol::http::SocketMethods;
422
423
# spent 15.2s (1.83ms+15.2) within LWP::Protocol::http::SocketMethods::sysread which was called 101 times, avg 150ms/call: # 84 times (1.65ms+15.2s) by Net::HTTP::Methods::my_readline at line 256 of Net/HTTP/Methods.pm, avg 181ms/call # 17 times (177µs+543µs) by Net::HTTP::Methods::my_read at line 236 of Net/HTTP/Methods.pm, avg 42µs/call
sub sysread {
42410141µs my $self = shift;
425101190µs if (my $timeout = ${*$self}{io_socket_timeout}) {
426101239µs10115.2s die "read timeout" unless $self->can_read($timeout);
# spent 15.2s making 101 calls to LWP::Protocol::http::SocketMethods::can_read, avg 150ms/call
427 }
428 else {
429 # since we have made the socket non-blocking we
430 # use select to wait for some data to arrive
431 $self->can_read(undef) || die "Assert";
432 }
4331012.39ms1011.25ms sysread($self, $_[0], $_[1], $_[2] || 0);
# spent 1.25ms making 101 calls to LWP::Protocol::http::SocketMethods::CORE:sysread, avg 12µs/call
434}
435
436
# spent 15.2s (3.25ms+15.2) within LWP::Protocol::http::SocketMethods::can_read which was called 140 times, avg 108ms/call: # 101 times (2.75ms+15.2s) by LWP::Protocol::http::SocketMethods::sysread at line 426, avg 150ms/call # 39 times (504µs+347µs) by LWP::Protocol::http::_new_socket at line 22, avg 22µs/call
sub can_read {
437140105µs my($self, $timeout) = @_;
43814079µs my $fbits = '';
439140329µs vec($fbits, fileno($self), 1) = 1;
44014012µs SELECT:
441 {
44214027µs my $before;
443140114µs $before = time if $timeout;
44414015.2s14015.2s my $nfound = select($fbits, undef, undef, $timeout);
# spent 15.2s making 140 calls to LWP::Protocol::http::SocketMethods::CORE:sselect, avg 108ms/call
445140131µs if ($nfound < 0) {
446 if ($!{EINTR} || $!{EAGAIN}) {
447 # don't really think EAGAIN can happen here
448 if ($timeout) {
449 $timeout -= time - $before;
450 $timeout = 0 if $timeout < 0;
451 }
452 redo SELECT;
453 }
454 die "select failed: $!";
455 }
4561401.27ms return $nfound > 0;
457 }
458}
459
460sub ping {
461 my $self = shift;
462 !$self->can_read(0);
463}
464
465
# spent 190µs within LWP::Protocol::http::SocketMethods::increment_response_count which was called 41 times, avg 5µs/call: # 41 times (190µs+0s) by LWP::Protocol::http::request at line 377, avg 5µs/call
sub increment_response_count {
4664130µs my $self = shift;
46741191µs return ++${*$self}{'myhttp_response_count'};
468}
469
470#-----------------------------------------------------------
471package LWP::Protocol::http::Socket;
472346µs260µs
# spent 35µs (9+26) within LWP::Protocol::http::Socket::BEGIN@472 which was called # once (9µs+26µs) by LWP::Protocol::implementor at line 472
use vars qw(@ISA);
# spent 35µs making 1 call to LWP::Protocol::http::Socket::BEGIN@472 # spent 26µs making 1 call to vars::import
473115µs@ISA = qw(LWP::Protocol::http::SocketMethods Net::HTTP);
474
47519µs1;
# spent 263µs within LWP::Protocol::http::CORE:match which was called 205 times, avg 1µs/call: # 41 times (94µs+0s) by LWP::Protocol::http::request at line 129 of LWP/Protocol/http.pm, avg 2µs/call # 41 times (55µs+0s) by LWP::Protocol::http::request at line 295 of LWP/Protocol/http.pm, avg 1µs/call # 41 times (51µs+0s) by LWP::Protocol::http::request at line 327 of LWP/Protocol/http.pm, avg 1µs/call # 41 times (51µs+0s) by LWP::Protocol::http::request at line 151 of LWP/Protocol/http.pm, avg 1µs/call # 41 times (11µs+0s) by LWP::Protocol::http::request at line 203 of LWP/Protocol/http.pm, avg 280ns/call
sub LWP::Protocol::http::CORE:match; # xsub
# spent 295µs within LWP::Protocol::http::CORE:sselect which was called 41 times, avg 7µs/call: # 41 times (295µs+0s) by LWP::Protocol::http::request at line 275 of LWP/Protocol/http.pm, avg 7µs/call
sub LWP::Protocol::http::CORE:sselect; # xsub
# spent 97µs within LWP::Protocol::http::CORE:subst which was called 287 times, avg 339ns/call: # 123 times (36µs+0s) by LWP::Protocol::http::__ANON__[/usr/local/lib/perl5/site_perl/5.10.1/LWP/Protocol/http.pm:167] at line 164 of LWP/Protocol/http.pm, avg 293ns/call # 123 times (33µs+0s) by LWP::Protocol::http::__ANON__[/usr/local/lib/perl5/site_perl/5.10.1/LWP/Protocol/http.pm:167] at line 165 of LWP/Protocol/http.pm, avg 267ns/call # 41 times (28µs+0s) by LWP::Protocol::http::_fixup_header at line 88 of LWP/Protocol/http.pm, avg 693ns/call
sub LWP::Protocol::http::CORE:subst; # xsub
# spent 15.2s within LWP::Protocol::http::SocketMethods::CORE:sselect which was called 140 times, avg 108ms/call: # 140 times (15.2s+0s) by LWP::Protocol::http::SocketMethods::can_read at line 444 of LWP/Protocol/http.pm, avg 108ms/call
sub LWP::Protocol::http::SocketMethods::CORE:sselect; # xsub
# spent 1.25ms within LWP::Protocol::http::SocketMethods::CORE:sysread which was called 101 times, avg 12µs/call: # 101 times (1.25ms+0s) by LWP::Protocol::http::SocketMethods::sysread at line 433 of LWP/Protocol/http.pm, avg 12µs/call
sub LWP::Protocol::http::SocketMethods::CORE:sysread; # xsub