This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Omnibus strict and lax version parsing
authorDavid Golden <dagolden@cpan.org>
Thu, 14 Jan 2010 02:47:30 +0000 (21:47 -0500)
committerDavid Golden <dagolden@cpan.org>
Thu, 14 Jan 2010 03:04:08 +0000 (22:04 -0500)
commit91152fc19d1c59a1213e39f74ac8a80f4a015f5e
tree13df618732832e19928bf20a21a4f6dbf7a9bc67
parent32709fdf41543f067562e0dc9944448dd11d2c28
Omnibus strict and lax version parsing

Authors: John Peacock, David Golden and Zefram

The goal of this mega-patch is to enforce strict rules for version
numbers provided to 'package NAME VERSION' while formalizing the prior,
lax rules used for version object creation.  Parsing for use() is
unchanged.

version.pm adds two globals, $STRICT and $LAX, containing regular
expressions that define the rules.  There are two additional functions
-- version::is_strict and version::is_lax -- that test an argument
against these rules.

However, parsing of strings that might contain version numbers is done
in core via the Perl_scan_version function, which may be called during
compilation or may be called later when version objects are created by
Perl_new_version or Perl_upg_version.

A new helper function, Perl_prescan_version, has been added to validate
a string under either strict or lax rules.  This is used in toke.c for
'package NAME VERSION' in strict mode and by Perl_scan_version in lax
mode.  It matches the behavior of the verison.pm regular expressions,
but does not use them directly.

A new test file, comp/packagev.t, validates strict and lax behaviors of
'package NAME VERSION' and 'version->new(VERSION)' respectively and
verifies their behavior against the $STRICT and $LAX regular
expressions, as well.  Validating these two implementation should help
ensure they each work as intended.

Other files and tests have been modified as necessary to support these
changes.

There is remaining work to be done in a few areas:

* documenting all changes in behavior and new functions

* determining proper treatment of "," as decimal separators in
  various locales

* updating diagnostics for new error messages

* porting changes back to the version.pm distribution on CPAN,
  including pure-Perl versions
15 files changed:
dist/Safe/Safe.pm
dist/XSLoader/t/XSLoader.t
embed.fnc
embed.h
global.sym
handy.h
lib/version.pm
lib/version.t
proto.h
t/comp/package.t
t/comp/packagev.t [new file with mode: 0644]
t/porting/diag.t
toke.c
universal.c
util.c