| Perl-Critic-Pulp documentation | Contained in the Perl-Critic-Pulp distribution. |
Perl::Critic::Policy::Modules::ProhibitUseQuotedVersion - avoid quoted version number string in a "use" statement
This policy is part of the Perl::Critic::Pulp|Perl::Critic::Pulp
addon. It asks you not to quote a version number string as the sole
argument to a use or no statement.
use Foo::Bar '1.50'; # bad
use Foo::Bar 1.50; # ok
no Abc::Def '2.000_010'; # bad
no Abc::Def 2.000_010; # ok
The unquoted form uses Perl's builtin module version check (Perl 5.004 up)
and is always enforced. The quoted form is passed to the module's import
and relies on it to do the check. If there's no import then the quoted
form is silently ignored.
Exporter|Exporter as used by many modules provides an import which
checks a version number arg, so those modules are fine. But the idea of
this policy is to do what works always and on that basis is under the "bugs"
theme (see POLICY THEMES in Perl::Critic).
The builtin module version check is new in Perl 5.004. For earlier versions
both forms behave the same, with the string or number going through to the
module import and so may or may not be checked. But even in code
supporting older Perl it's good to write the unquoted number so later Perl
will be certain to enforce it.
The policy only applies to a single number string argument, anything else is taken to be a module parameters.
no Abc::Def '123', 'ABC'; # ok
use lib '..'; # ok
If you're a bit nervous about unquoting because floating point version numbers are often not exactly representable in binary, well, yes, that's true, but in practice it works out ok, either by converting the same way everywhere in the program or by treated as a string in the "version" module anyway.
If you're confident about the import() in modules you use and prefer the
string form you can always disable ProhibitUseQuotedVersion from your
.perlcriticrc in the usual way (see CONFIGURATION in Perl::Critic),
[-Modules::ProhibitUseQuotedVersion]
http://user42.tuxfamily.org/perl-critic-pulp/index.html
Copyright 2009, 2010, 2011 Kevin Ryde
Perl-Critic-Pulp is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version.
Perl-Critic-Pulp is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Perl-Critic-Pulp. If not, see <http://www.gnu.org/licenses/>.
| Perl-Critic-Pulp documentation | Contained in the Perl-Critic-Pulp distribution. |
# Copyright 2009, 2010, 2011 Kevin Ryde # Perl-Critic-Pulp is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by the # Free Software Foundation; either version 3, or (at your option) any later # version. # # Perl-Critic-Pulp is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License # for more details. # # You should have received a copy of the GNU General Public License along # with Perl-Critic-Pulp. If not, see <http://www.gnu.org/licenses/>. package Perl::Critic::Policy::Modules::ProhibitUseQuotedVersion; use 5.006; use strict; use warnings; use base 'Perl::Critic::Policy'; use Perl::Critic::Utils; use Perl::Critic::Pulp::Utils; use version (); our $VERSION = 61; use constant supported_parameters => (); use constant default_severity => $Perl::Critic::Utils::SEVERITY_MEDIUM; use constant default_themes => qw(pulp bugs); use constant applies_to => 'PPI::Statement::Include'; sub violates { my ($self, $elem, $document) = @_; defined($elem->module) || return; # if a "use 5.005" etc my $arg = $elem->schild(2) || return; # if a "use Foo" with no args $arg->isa('PPI::Token::Quote') || return; elem_is_last_of_statement($arg) || return; # This is a strict match of what a module version number is like. # Previously looser forms like '.500' were matched too, but of course # unquoting that doesn't give something that's checked by perl itself. # There don't seem to be forms like .500 used in practice, so don't think # it's important. # my $str = $arg->string; $str =~ $Perl::Critic::Pulp::Utils::use_module_version_number_re or return; return $self->violation ("Don't use a quoted string version number in a \"use\" statement", '', $arg); } # return true if $elem is the last thing in its statement, apart from an # optional terminating ";" # sub elem_is_last_of_statement { my ($elem) = @_; my $next = $elem->snext_sibling; return (! $next || ($next->isa('PPI::Token::Structure') && $next eq ';' && ! $next->snext_sibling)); } 1; __END__