1 package version::regex;
6 $VERSION $CLASS $STRICT $LAX
7 $STRICT_DECIMAL_VERSION $STRICT_DOTTED_DECIMAL_VERSION
8 $LAX_DECIMAL_VERSION $LAX_DOTTED_DECIMAL_VERSION
13 #--------------------------------------------------------------------------#
14 # Version regexp components
15 #--------------------------------------------------------------------------#
17 # Fraction part of a decimal version number. This is a common part of
18 # both strict and lax decimal versions
20 my $FRACTION_PART = qr/\.[0-9]+/;
22 # First part of either decimal or dotted-decimal strict version number.
23 # Unsigned integer with no leading zeroes (except for zero itself) to
24 # avoid confusion with octal.
26 my $STRICT_INTEGER_PART = qr/0|[1-9][0-9]*/;
28 # First part of either decimal or dotted-decimal lax version number.
29 # Unsigned integer, but allowing leading zeros. Always interpreted
30 # as decimal. However, some forms of the resulting syntax give odd
31 # results if used as ordinary Perl expressions, due to how perl treats
33 # version->new("010" ) == 10
34 # version->new( 010 ) == 8
35 # version->new( 010.2) == 82 # "8" . "2"
37 my $LAX_INTEGER_PART = qr/[0-9]+/;
39 # Second and subsequent part of a strict dotted-decimal version number.
40 # Leading zeroes are permitted, and the number is always decimal.
41 # Limited to three digits to avoid overflow when converting to decimal
42 # form and also avoid problematic style with excessive leading zeroes.
44 my $STRICT_DOTTED_DECIMAL_PART = qr/\.[0-9]{1,3}/;
46 # Second and subsequent part of a lax dotted-decimal version number.
47 # Leading zeroes are permitted, and the number is always decimal. No
48 # limit on the numerical value or number of digits, so there is the
49 # possibility of overflow when converting to decimal form.
51 my $LAX_DOTTED_DECIMAL_PART = qr/\.[0-9]+/;
53 # Alpha suffix part of lax version number syntax. Acts like a
54 # dotted-decimal part.
56 my $LAX_ALPHA_PART = qr/_[0-9]+/;
58 #--------------------------------------------------------------------------#
59 # Strict version regexp definitions
60 #--------------------------------------------------------------------------#
62 # Strict decimal version number.
64 $STRICT_DECIMAL_VERSION =
65 qr/ $STRICT_INTEGER_PART $FRACTION_PART? /x;
67 # Strict dotted-decimal version number. Must have both leading "v" and
68 # at least three parts, to avoid confusion with decimal syntax.
70 $STRICT_DOTTED_DECIMAL_VERSION =
71 qr/ v $STRICT_INTEGER_PART $STRICT_DOTTED_DECIMAL_PART{2,} /x;
73 # Complete strict version number syntax -- should generally be used
74 # anchored: qr/ \A $STRICT \z /x
77 qr/ $STRICT_DECIMAL_VERSION | $STRICT_DOTTED_DECIMAL_VERSION /x;
79 #--------------------------------------------------------------------------#
80 # Lax version regexp definitions
81 #--------------------------------------------------------------------------#
83 # Lax decimal version number. Just like the strict one except for
84 # allowing an alpha suffix or allowing a leading or trailing
87 $LAX_DECIMAL_VERSION =
88 qr/ $LAX_INTEGER_PART (?: $FRACTION_PART | \. )? $LAX_ALPHA_PART?
90 $FRACTION_PART $LAX_ALPHA_PART?
93 # Lax dotted-decimal version number. Distinguished by having either
94 # leading "v" or at least three non-alpha parts. Alpha part is only
95 # permitted if there are at least two non-alpha parts. Strangely
96 # enough, without the leading "v", Perl takes .1.2 to mean v0.1.2,
97 # so when there is no "v", the leading part is optional
99 $LAX_DOTTED_DECIMAL_VERSION =
101 v $LAX_INTEGER_PART (?: $LAX_DOTTED_DECIMAL_PART+ $LAX_ALPHA_PART? )?
103 $LAX_INTEGER_PART? $LAX_DOTTED_DECIMAL_PART{2,} $LAX_ALPHA_PART?
106 # Complete lax version number syntax -- should generally be used
107 # anchored: qr/ \A $LAX \z /x
109 # The string 'undef' is a special case to make for easier handling
110 # of return values from ExtUtils::MM->parse_version
113 qr/ undef | $LAX_DOTTED_DECIMAL_VERSION | $LAX_DECIMAL_VERSION /x;
115 #--------------------------------------------------------------------------#
117 # Preloaded methods go here.
118 sub is_strict { defined $_[0] && $_[0] =~ qr/ \A $STRICT \z /x }
119 sub is_lax { defined $_[0] && $_[0] =~ qr/ \A $LAX \z /x }