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