File::Find::_find_dir nit for VMS, plus version bump.
[p5sagit/p5-mst-13.2.git] / lib / CPAN / Version.pm
CommitLineData
554a9ef5 1package CPAN::Version;
2
ec5fee46 3use strict;
0a78cd5d 4use vars qw($VERSION);
547d3dfd 5$VERSION = sprintf "%.6f", substr(q$Rev: 2210 $,4)/1000000 + 5.4;
0a78cd5d 6
554a9ef5 7# CPAN::Version::vcmp courtesy Jost Krieger
8sub vcmp {
547d3dfd 9 my($self,$l,$r) = @_;
10 local($^W) = 0;
11 CPAN->debug("l[$l] r[$r]") if $CPAN::DEBUG;
12
13 return 0 if $l eq $r; # short circuit for quicker success
14
15 for ($l,$r) {
16 s/_//g;
17 }
18 CPAN->debug("l[$l] r[$r]") if $CPAN::DEBUG;
19 for ($l,$r) {
20 next unless tr/.// > 1 || /^v/;
21 s/^v?/v/;
22 1 while s/\.0+(\d)/.$1/; # remove leading zeroes per group
23 }
24 CPAN->debug("l[$l] r[$r]") if $CPAN::DEBUG;
25 if ($l=~/^v/ <=> $r=~/^v/) {
26 for ($l,$r) {
27 next if /^v/;
28 $_ = $self->float2vv($_);
29 }
30 }
31 CPAN->debug("l[$l] r[$r]") if $CPAN::DEBUG;
32 my $lvstring = "v0";
33 my $rvstring = "v0";
34 if ($] >= 5.006
35 && $l =~ /^v/
36 && $r =~ /^v/) {
37 $lvstring = $self->vstring($l);
38 $rvstring = $self->vstring($r);
39 CPAN->debug(sprintf "lv[%vd] rv[%vd]", $lvstring, $rvstring) if $CPAN::DEBUG;
40 }
41
42 return (
43 ($l ne "undef") <=> ($r ne "undef")
44 ||
45 $lvstring cmp $rvstring
46 ||
47 $l <=> $r
48 ||
49 $l cmp $r
50 );
554a9ef5 51}
52
53sub vgt {
547d3dfd 54 my($self,$l,$r) = @_;
55 $self->vcmp($l,$r) > 0;
554a9ef5 56}
57
c9869e1c 58sub vlt {
547d3dfd 59 my($self,$l,$r) = @_;
60 0 + ($self->vcmp($l,$r) < 0);
c9869e1c 61}
62
554a9ef5 63sub vstring {
547d3dfd 64 my($self,$n) = @_;
65 $n =~ s/^v// or die "CPAN::Version::vstring() called with invalid arg [$n]";
66 pack "U*", split /\./, $n;
554a9ef5 67}
68
69# vv => visible vstring
70sub float2vv {
f3fe0ae6 71 my($self,$n) = @_;
554a9ef5 72 my($rev) = int($n);
73 $rev ||= 0;
74 my($mantissa) = $n =~ /\.(\d{1,12})/; # limit to 12 digits to limit
75 # architecture influence
76 $mantissa ||= 0;
77 $mantissa .= "0" while length($mantissa)%3;
78 my $ret = "v" . $rev;
79 while ($mantissa) {
80 $mantissa =~ s/(\d{1,3})// or
81 die "Panic: length>0 but not a digit? mantissa[$mantissa]";
82 $ret .= ".".int($1);
83 }
84 # warn "n[$n]ret[$ret]";
547d3dfd 85 $ret =~ s/(\.0)+/.0/; # v1.0.0 => v1.0
554a9ef5 86 $ret;
87}
88
89sub readable {
547d3dfd 90 my($self,$n) = @_;
91 $n =~ /^([\w\-\+\.]+)/;
92
93 return $1 if defined $1 && length($1)>0;
94 # if the first user reaches version v43, he will be treated as "+".
95 # We'll have to decide about a new rule here then, depending on what
96 # will be the prevailing versioning behavior then.
97
98 if ($] < 5.006) { # or whenever v-strings were introduced
99 # we get them wrong anyway, whatever we do, because 5.005 will
100 # have already interpreted 0.2.4 to be "0.24". So even if he
101 # indexer sends us something like "v0.2.4" we compare wrongly.
102
103 # And if they say v1.2, then the old perl takes it as "v12"
104
105 if (defined $CPAN::Frontend) {
106 $CPAN::Frontend->mywarn("Suspicious version string seen [$n]\n");
107 } else {
108 warn("Suspicious version string seen [$n]\n");
109 }
110 return $n;
0a78cd5d 111 }
547d3dfd 112 my $better = sprintf "v%vd", $n;
113 CPAN->debug("n[$n] better[$better]") if $CPAN::DEBUG;
114 return $better;
554a9ef5 115}
116
1171;
118
119__END__
120
26844e27 121=head1 NAME
122
123CPAN::Version - utility functions to compare CPAN versions
124
125=head1 SYNOPSIS
126
127 use CPAN::Version;
128
129 CPAN::Version->vgt("1.1","1.1.1"); # 1 bc. 1.1 > 1.001001
130
131 CPAN::Version->vlt("1.1","1.1"); # 0 bc. 1.1 not < 1.1
132
133 CPAN::Version->vcmp("1.1","1.1.1"); # 1 bc. first is larger
134
135 CPAN::Version->vcmp("1.1.1","1.1"); # -1 bc. first is smaller
136
137 CPAN::Version->readable(v1.2.3); # "v1.2.3"
138
139 CPAN::Version->vstring("v1.2.3"); # v1.2.3
140
141 CPAN::Version->float2vv(1.002003); # "v1.2.3"
142
143=head1 DESCRIPTION
144
145This module mediates between some version that perl sees in a package
146and the version that is published by the CPAN indexer.
147
148It's only written as a helper module for both CPAN.pm and CPANPLUS.pm.
149
150As it stands it predates version.pm but has the same goal: make
151version strings visible and comparable.
152
153=head1 LICENSE
154
155This program is free software; you can redistribute it and/or
156modify it under the same terms as Perl itself.
157
158=cut
159
554a9ef5 160# Local Variables:
161# mode: cperl
547d3dfd 162# cperl-indent-level: 4
554a9ef5 163# End: