← Index
NYTProf Performance Profile   « line view »
For /Users/brian/bin/perls/cpan5.26.1
  Run on Sat Dec 30 01:41:10 2017
Reported on Sat Dec 30 01:44:15 2017

Filename/usr/local/perls/perl-5.26.1/lib/5.26.1/CPAN/Version.pm
StatementsExecuted 22 statements in 331µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111217µs290µsCPAN::Version::::vcmpCPAN::Version::vcmp
53158µs58µsCPAN::Version::::CORE:matchCPAN::Version::CORE:match (opcode)
11141µs331µsCPAN::Version::::vgeCPAN::Version::vge
21115µs15µsCPAN::Version::::CORE:substCPAN::Version::CORE:subst (opcode)
0000s0sCPAN::Version::::BEGINCPAN::Version::BEGIN
0000s0sCPAN::Version::::float2vvCPAN::Version::float2vv
0000s0sCPAN::Version::::readableCPAN::Version::readable
0000s0sCPAN::Version::::vgtCPAN::Version::vgt
0000s0sCPAN::Version::::vleCPAN::Version::vle
0000s0sCPAN::Version::::vltCPAN::Version::vlt
0000s0sCPAN::Version::::vstringCPAN::Version::vstring
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package CPAN::Version;
2
3use strict;
4use vars qw($VERSION);
5$VERSION = "5.5003";
6
7# CPAN::Version::vcmp courtesy Jost Krieger
8
# spent 290µs (217+73) within CPAN::Version::vcmp which was called: # once (217µs+73µs) by CPAN::Version::vge at line 69
sub vcmp {
9126µs my($self,$l,$r) = @_;
10117µs local($^W) = 0;
1111µs CPAN->debug("l[$l] r[$r]") if $CPAN::DEBUG;
12
13 # treat undef as zero
14121µs $l = 0 if $l eq 'undef';
1510s $r = 0 if $r eq 'undef';
16
17115µs return 0 if $l eq $r; # short circuit for quicker success
18
1911µs for ($l,$r) {
20232µs215µs s/_//g;
# spent 15µs making 2 calls to CPAN::Version::CORE:subst, avg 8µs/call
21 }
22114µs CPAN->debug("l[$l] r[$r]") if $CPAN::DEBUG;
23114µs for ($l,$r) {
24230µs216µs next unless tr/.// > 1 || /^v/;
# spent 16µs making 2 calls to CPAN::Version::CORE:match, avg 8µs/call
25 s/^v?/v/;
26 1 while s/\.0+(\d)/.$1/; # remove leading zeroes per group
27 }
2811µs CPAN->debug("l[$l] r[$r]") if $CPAN::DEBUG;
29155µs233µs if ($l=~/^v/ <=> $r=~/^v/) {
# spent 33µs making 2 calls to CPAN::Version::CORE:match, avg 16µs/call
30 for ($l,$r) {
31 next if /^v/;
32 $_ = $self->float2vv($_);
33 }
34 }
3510s CPAN->debug("l[$l] r[$r]") if $CPAN::DEBUG;
3614µs my $lvstring = "v0";
3711µs my $rvstring = "v0";
38127µs19µs if ($] >= 5.006
# spent 9µs making 1 call to CPAN::Version::CORE:match
39 && $l =~ /^v/
40 && $r =~ /^v/) {
41 $lvstring = $self->vstring($l);
42 $rvstring = $self->vstring($r);
43 CPAN->debug(sprintf "lv[%vd] rv[%vd]", $lvstring, $rvstring) if $CPAN::DEBUG;
44 }
45
46 return (
47120µs ($l ne "undef") <=> ($r ne "undef")
48 ||
49 $lvstring cmp $rvstring
50 ||
51 $l <=> $r
52 ||
53 $l cmp $r
54 );
55}
56
57sub vgt {
58 my($self,$l,$r) = @_;
59 $self->vcmp($l,$r) > 0;
60}
61
62sub vlt {
63 my($self,$l,$r) = @_;
64 $self->vcmp($l,$r) < 0;
65}
66
67
# spent 331µs (41+290) within CPAN::Version::vge which was called: # once (41µs+290µs) by CPAN::__ANON__[/usr/local/perls/perl-5.26.1/lib/5.26.1/CPAN.pm:1113] at line 1104 of CPAN.pm
sub vge {
6813µs my($self,$l,$r) = @_;
69149µs1290µs $self->vcmp($l,$r) >= 0;
# spent 290µs making 1 call to CPAN::Version::vcmp
70}
71
72sub vle {
73 my($self,$l,$r) = @_;
74 $self->vcmp($l,$r) <= 0;
75}
76
77sub vstring {
78 my($self,$n) = @_;
79 $n =~ s/^v// or die "CPAN::Version::vstring() called with invalid arg [$n]";
80 pack "U*", split /\./, $n;
81}
82
83# vv => visible vstring
84sub float2vv {
85 my($self,$n) = @_;
86 my($rev) = int($n);
87 $rev ||= 0;
88 my($mantissa) = $n =~ /\.(\d{1,12})/; # limit to 12 digits to limit
89 # architecture influence
90 $mantissa ||= 0;
91 $mantissa .= "0" while length($mantissa)%3;
92 my $ret = "v" . $rev;
93 while ($mantissa) {
94 $mantissa =~ s/(\d{1,3})// or
95 die "Panic: length>0 but not a digit? mantissa[$mantissa]";
96 $ret .= ".".int($1);
97 }
98 # warn "n[$n]ret[$ret]";
99 $ret =~ s/(\.0)+/.0/; # v1.0.0 => v1.0
100 $ret;
101}
102
103sub readable {
104 my($self,$n) = @_;
105 $n =~ /^([\w\-\+\.]+)/;
106
107 return $1 if defined $1 && length($1)>0;
108 # if the first user reaches version v43, he will be treated as "+".
109 # We'll have to decide about a new rule here then, depending on what
110 # will be the prevailing versioning behavior then.
111
112 if ($] < 5.006) { # or whenever v-strings were introduced
113 # we get them wrong anyway, whatever we do, because 5.005 will
114 # have already interpreted 0.2.4 to be "0.24". So even if he
115 # indexer sends us something like "v0.2.4" we compare wrongly.
116
117 # And if they say v1.2, then the old perl takes it as "v12"
118
119 if (defined $CPAN::Frontend) {
120 $CPAN::Frontend->mywarn("Suspicious version string seen [$n]\n");
121 } else {
122 warn("Suspicious version string seen [$n]\n");
123 }
124 return $n;
125 }
126 my $better = sprintf "v%vd", $n;
127 CPAN->debug("n[$n] better[$better]") if $CPAN::DEBUG;
128 return $better;
129}
130
1311;
132
133__END__
 
# spent 58µs within CPAN::Version::CORE:match which was called 5 times, avg 12µs/call: # 2 times (33µs+0s) by CPAN::Version::vcmp at line 29, avg 16µs/call # 2 times (16µs+0s) by CPAN::Version::vcmp at line 24, avg 8µs/call # once (9µs+0s) by CPAN::Version::vcmp at line 38
sub CPAN::Version::CORE:match; # opcode
# spent 15µs within CPAN::Version::CORE:subst which was called 2 times, avg 8µs/call: # 2 times (15µs+0s) by CPAN::Version::vcmp at line 20, avg 8µs/call
sub CPAN::Version::CORE:subst; # opcode