1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
|
package Perl::Critic::Policy::Variables::RequireLocalizedPunctuationVars;
use 5.010001;
use strict;
use warnings;
use Readonly;
use Perl::Critic::Utils qw{ :severities :classification $EMPTY hashify};
use parent 'Perl::Critic::Policy';
our $VERSION = '1.156';
#-----------------------------------------------------------------------------
Readonly::Scalar my $DESC => q{Magic variable "%s" should be assigned as "local"};
Readonly::Scalar my $EXPL => [ 81, 82 ];
#-----------------------------------------------------------------------------
sub supported_parameters {
return (
{
name => 'allow',
description =>
q<Global variables to exclude from this policy.>,
default_string => $EMPTY,
behavior => 'string list',
list_always_present_values => [ qw< $_ $ARG @_ > ],
},
);
}
sub default_severity { return $SEVERITY_HIGH }
sub default_themes { return qw(core pbp bugs certrec ) }
sub applies_to { return 'PPI::Token::Operator' }
#-----------------------------------------------------------------------------
sub violates {
my ( $self, $elem, undef ) = @_;
return if $elem->content() ne q{=};
my $destination = $elem->sprevious_sibling;
return if !$destination; # huh? assignment in void context??
while ($destination->isa('PPI::Structure::Subscript')) {
$destination = $destination->sprevious_sibling()
or return;
}
if (my $var = $self->_is_non_local_magic_dest($destination)) {
return $self->violation( sprintf( $DESC, $var ), $EXPL, $elem );
}
return; # OK
}
sub _is_non_local_magic_dest {
my ($self, $elem) = @_;
state $local_or_my = { hashify( 'local', 'my' ) };
# Quick exit if in good form
my $modifier = $elem->sprevious_sibling;
return
if
$modifier
&& $modifier->isa('PPI::Token::Word')
&& $local_or_my->{$modifier->content()};
# Implementation note: Can't rely on PPI::Token::Magic,
# unfortunately, because we need English too
if ($elem->isa('PPI::Token::Symbol')) {
return $self->_is_magic_var($elem) ? $elem : undef;
}
elsif (
$elem->isa('PPI::Structure::List')
or $elem->isa('PPI::Statement::Expression')
) {
for my $child ($elem->schildren) {
my $var = $self->_is_non_local_magic_dest($child);
return $var if $var;
}
}
return;
}
#-----------------------------------------------------------------------------
sub _is_magic_var {
my ($self, $elem) = @_;
my $variable_name = $elem->symbol();
return if $self->{_allow}{$variable_name};
return 1 if $elem->isa('PPI::Token::Magic'); # optimization(?), and
# helps with PPI 1.118 carat
# bug. This bug is gone as of
# 1.208, which is required for
# P::C 1.113. RT 65514
return if not is_perl_global( $elem );
return 1;
}
1;
__END__
#-----------------------------------------------------------------------------
=pod
=head1 NAME
Perl::Critic::Policy::Variables::RequireLocalizedPunctuationVars - Magic variables should be assigned as "local".
=head1 AFFILIATION
This Policy is part of the core L<Perl::Critic|Perl::Critic>
distribution.
=head1 DESCRIPTION
Punctuation variables (and their English.pm equivalents) are global
variables. Messing with globals is dangerous in a complex program as
it can lead to very subtle and hard to fix bugs. If you must change a
magic variable in a non-trivial program, do it in a local scope.
For example, to slurp a filehandle into a scalar, it's common to set
the record separator to undef instead of a newline. If you choose to
do this (instead of using L<Path::Tiny|Path::Tiny>!) then be sure to
localize the global and change it for as short a time as possible.
# BAD:
$/ = undef;
my $content = <$fh>;
# BETTER:
my $content;
{
local $/ = undef;
$content = <$fh>;
}
# A popular idiom:
my $content = do { local $/ = undef; <$fh> };
This policy also allows the use of C<my>. Perl prevents using C<my>
with "proper" punctuation variables, but allows C<$a>, C<@ARGV>, the
names declared by L<English|English>, etc. This is not a good coding
practice, however it is not the concern of this specific policy to
complain about that.
There are exemptions for C<$_> and C<@_>, and the English equivalent
C<$ARG>.
=head1 CONFIGURATION
You can configure your own exemptions using the C<allow> option:
[Variables::RequireLocalizedPunctuationVars]
allow = @ARGV $ARGV
These are added to the default exemptions.
=head1 CREDITS
Initial development of this policy was supported by a grant from the
Perl Foundation.
=head1 AUTHOR
Chris Dolan <cdolan@cpan.org>
=head1 COPYRIGHT
Copyright (c) 2007-2011 Chris Dolan. Many rights reserved.
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 :
|