| Perl-Critic documentation | Contained in the Perl-Critic distribution. |
Perl::Critic::Policy::NamingConventions::ProhibitAmbiguousNames - Don't use vague variable or subroutine names like 'last' or 'record'.
This Policy is part of the core Perl::Critic distribution.
Conway lists a collection of English words which are highly ambiguous
as variable or subroutine names. For example, $last can mean
previous or final.
This policy tests against a list of ambiguous words for variable names.
The default list of forbidden words is:
abstract bases close contract last left no record right second set
This list can be changed by giving a value for forbid of a series
of forbidden words separated by spaces.
For example, if you decide that bases is an OK name for variables
(e.g. in bioinformatics), then put something like the following in
$HOME/.perlcriticrc:
[NamingConventions::ProhibitAmbiguousNames]
forbid = last set left right no abstract contract record second close
Currently this policy checks the entire variable and subroutine name,
not parts of the name. For example, it catches $last but not
$last_record. Hopefully future versions will catch both cases.
Some variable statements will be false positives if they have
assignments where the right hand side uses forbidden names. For
example, in this case the last incorrectly triggers a violation.
my $previous_record = $Foo::last;
Chris Dolan <cdolan@cpan.org>
Copyright (c) 2005-2011 Chris Dolan.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of this license can be found in the LICENSE file included with this module.
| Perl-Critic documentation | Contained in the Perl-Critic distribution. |
############################################################################## # $URL: http://perlcritic.tigris.org/svn/perlcritic/trunk/distributions/Perl-Critic/lib/Perl/Critic/Policy/NamingConventions/ProhibitAmbiguousNames.pm $ # $Date: 2011-05-15 16:34:46 -0500 (Sun, 15 May 2011) $ # $Author: clonezone $ # $Revision: 4078 $ ############################################################################## package Perl::Critic::Policy::NamingConventions::ProhibitAmbiguousNames; use 5.006001; use strict; use warnings; use Readonly; use Perl::Critic::Utils qw{ :severities :data_conversion }; use base 'Perl::Critic::Policy'; our $VERSION = '1.116'; #----------------------------------------------------------------------------- Readonly::Scalar my $EXPL => [ 48 ]; Readonly::Scalar my $DEFAULT_FORBID => 'abstract bases close contract last left no record right second set'; #----------------------------------------------------------------------------- sub supported_parameters { return ( { name => 'forbid', description => 'The variable names that are not to be allowed.', default_string => $DEFAULT_FORBID, behavior => 'string list', }, ); } sub default_severity { return $SEVERITY_MEDIUM } sub default_themes { return qw(core pbp maintenance) } sub applies_to { return qw(PPI::Statement::Sub PPI::Statement::Variable) } #----------------------------------------------------------------------------- sub violates { my ( $self, $elem, undef ) = @_; if ( $elem->isa('PPI::Statement::Sub') ) { my @words = grep { $_->isa('PPI::Token::Word') } $elem->schildren(); for my $word (@words) { # strip off any leading "Package::" my ($name) = $word =~ m/ (\w+) \z /xms; next if not defined $name; # should never happen, right? if ( exists $self->{_forbid}->{$name} ) { return $self->violation( qq<Ambiguously named subroutine "$name">, $EXPL, $elem, ); } } return; # ok } # PPI::Statement::Variable # Accumulate them since there can be more than one violation # per variable statement my @violations; # TODO: false positive bug - this can erroneously catch the # assignment half of a variable statement my $symbols = $elem->find('PPI::Token::Symbol'); if ($symbols) { # this should always be true, right? for my $symbol ( @{$symbols} ) { # Strip off sigil and any leading "Package::" # Beware that punctuation vars may have no # alphanumeric characters. my ($name) = $symbol =~ m/ (\w+) \z /xms; next if ! defined $name; if ( exists $self->{_forbid}->{$name} ) { push @violations, $self->violation( qq<Ambiguously named variable "$name">, $EXPL, $elem, ); } } } return @violations; } 1; __END__ #-----------------------------------------------------------------------------
# Local Variables: # mode: cperl # cperl-indent-level: 4 # fill-column: 78 # indent-tabs-mode: nil # c-indentation-style: bsd # End: # ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :