package Perl::Critic::Policy::Variables::ProhibitReusedNames; use 5.010001; use strict; use warnings; use List::SomeUtils qw(part); use Readonly; use Perl::Critic::Utils qw{ :severities :classification :data_conversion }; use parent 'Perl::Critic::Policy'; our $VERSION = '1.152'; #----------------------------------------------------------------------------- Readonly::Scalar my $DESC => q{Reused variable name in lexical scope: }; Readonly::Scalar my $EXPL => q{Invent unique variable names}; #----------------------------------------------------------------------------- sub supported_parameters { return ( { name => 'allow', description => 'The variables to not consider as duplicates.', default_string => '$self $class', ## no critic (RequireInterpolationOfMetachars) behavior => 'string list', }, ); } sub default_severity { return $SEVERITY_MEDIUM } sub default_themes { return qw( core bugs ) } sub applies_to { return 'PPI::Statement::Variable' } #----------------------------------------------------------------------------- sub violates { my ( $self, $elem, undef ) = @_; return if 'local' eq $elem->type; my $allow = $self->{_allow}; my $names = [ grep { not $allow->{$_} } $elem->variables() ]; # Assert: it is impossible for @$names to be empty in valid Perl syntax # But if it IS empty, this code should still work but will be inefficient # Walk up the PDOM looking for declared variables in the same # scope or outer scopes. Quit when we hit the root or when we find # violations for all vars (the latter is a shortcut). my $outer = $elem; my @violations; while (1) { my $up = $outer->sprevious_sibling; if (not $up) { $up = $outer->parent; last if !$up; # top of PDOM, we're done } $outer = $up; if ($outer->isa('PPI::Statement::Variable') && 'local' ne $outer->type) { my %vars = map {$_ => undef} $outer->variables; my $hits; ($hits, $names) = part { exists $vars{$_} ? 0 : 1 } @{$names}; if ($hits) { push @violations, map { $self->violation( $DESC . $_, $EXPL, $elem ) } @{$hits}; last if not $names; # found violations for ALL variables, we're done } } } return @violations; } 1; __END__ #----------------------------------------------------------------------------- =pod =head1 NAME Perl::Critic::Policy::Variables::ProhibitReusedNames - Do not reuse a variable name in a lexical scope =head1 AFFILIATION This Policy is part of the core L distribution. =head1 DESCRIPTION It's really hard on future maintenance programmers if you reuse a variable name in a lexical scope. The programmer is at risk of confusing which variable is which. And, worse, the programmer could accidentally remove the inner declaration, thus silently changing the meaning of the inner code to use the outer variable. my $x = 1; for my $i (0 .. 10) { my $x = $i+1; # not OK, "$x" reused } With C in effect, Perl will warn you if you reuse a variable name at the same scope level but not within nested scopes. Like so: % perl -we 'my $x; my $x' "my" variable $x masks earlier declaration in same scope at -e line 1. This policy takes that warning to a stricter level. =head1 CAVEATS =head2 Crossing subroutines This policy looks across subroutine boundaries. So, the following may be a false positive for you: sub make_accessor { my ($self, $fieldname) = @_; return sub { my ($self) = @_; # false positive, $self declared as reused return $self->{$fieldname}; } } This is intentional, though, because it catches bugs like this: my $debug_mode = 0; sub set_debug { my $debug_mode = 1; # accidental redeclaration } I've done this myself several times -- it's a strong habit to put that "my" in front of variables at the start of subroutines. =head2 Performance The current implementation walks the tree over and over. For a big file, this can be a huge time sink. I'm considering rewriting to search the document just once for variable declarations and cache the tree walking on that single analysis. =head1 CONFIGURATION This policy has a single option, C, which is a list of names to never count as duplicates. It defaults to containing C<$self> and C<$class>. You add to this by adding something like this to your F<.perlcriticrc>: [Variables::ProhibitReusedNames] allow = $self $class @blah =head1 AUTHOR Chris Dolan This policy is inspired by L. Java does not allow you to reuse variable names declared in outer scopes, which I think is a nice feature. =head1 COPYRIGHT Copyright (c) 2008-2021 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. =cut # 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 :