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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
|
# Copyright 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017 Kevin Ryde
# This file is part of Perl-Critic-Pulp.
# 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::ValuesAndExpressions::ConstantBeforeLt;
use 5.006;
use strict;
use warnings;
use PPI 1.220; # for its incompatible change to PPI::Statement::Sub->prototype
use base 'Perl::Critic::Policy';
use Perl::Critic::Utils qw(is_included_module_name
is_method_call
is_perl_builtin_with_no_arguments
split_nodes_on_comma);
# uncomment this to run the ### lines
# use Smart::Comments;
our $VERSION = 96;
#
# Incidentally "require Foo < 123" is a similar sort of problem in all Perls
# (or at least up to 5.10.0) with "<" being taken to be a "< >". But since
# it always provokes a warning when run it doesn't really need perlcritic,
# or if it does then leave it to another policy to address.
#
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::Document');
sub violates {
my ($self, $document) = @_;
my @violations;
my %constants;
my $constants = \%constants;
$document->find
(sub {
my ($document, $elem) = @_;
@constants{ _use_constants($elem) } = 1; # hash slice
push @violations, _one_violate ($self, $elem, $constants);
return 0; # no-match, and continue
});
return @violations;
}
sub _one_violate {
my ($self, $elem, $constants) = @_;
if (! $elem->isa ('PPI::Token::Word')) { return; }
# eg. "use constant FOO => 123; if (FOO < 456) {}" is ok, for a constant
# defined at the point in question
if (exists $constants->{$elem->content}) { return; }
# eg "time < 123" is ok
if (is_perl_builtin_with_no_arguments ($elem)) { return; }
# eg. "bar" in "$foo->bar < 123" is ok
if (is_method_call ($elem)) { return; }
# eg. "Foo" in "require Foo" is not a constant
if (is_included_module_name ($elem)) { return; }
# must be followed by "<" like "MYBAREWORD < 123"
my $lt = $elem->snext_sibling or return;
$lt->isa('PPI::Token::Operator') or return;
$lt->content eq '<' or return;
# if a ">" somewhere later like "foo <...>" then it's probably a function
# call on a readline or glob
#
my $after = $lt;
for (;;) {
$after = $after->snext_sibling or last;
if ($after->content eq '>') {
return;
}
}
return $self->violation ('Bareword constant before "<"',
'', $elem);
}
# $elem is any element. If it's a "use constants" or a "sub foo () { ...}"
# then return the name or names of the constants so created. Otherwise
# return an empty list.
#
# Perl::Critic::StricterSubs::Utils::find_declared_constant_names() does
# some similar stuff, but it crunches the whole document at once, instead of
# just one statement.
#
my %constant_modules = ('constant' => 1, 'constant::defer' => 1);
sub _use_constants {
my ($elem) = @_;
if ($elem->isa ('PPI::Statement::Sub')) {
my $prototype = $elem->prototype;
### $prototype
if (defined $prototype && $prototype eq '') { # prototype ()
if (my $name = $elem->name) {
return $name;
}
}
# anonymous sub or without prototype
return;
}
return unless ($elem->isa ('PPI::Statement::Include')
&& $elem->type eq 'use'
&& $constant_modules{$elem->module || ''});
$elem = $elem->schild(2) or return; # could be "use constant" alone
### start at: $elem->content
my $single = 1;
if ($elem->isa ('PPI::Structure::Constructor')) {
# multi-constant "use constant { FOO => 1, BAR => 2 }"
#
# PPI::Structure::Constructor { ... }
# PPI::Statement
# PPI::Token::Word 'foo'
#
$single = 0;
# multiple constants
$elem = $elem->schild(0)
or return; # empty on "use constant {}"
goto SKIPSTATEMENT;
} elsif ($elem->isa ('PPI::Structure::List')) {
# single constant in parens "use constant (FOO => 1,2,3)"
#
# PPI::Structure::List ( ... )
# PPI::Statement::Expression
# PPI::Token::Word 'Foo'
#
$elem = $elem->schild(0)
or return; # empty on "use constant {}"
SKIPSTATEMENT:
if ($elem->isa ('PPI::Statement')) {
$elem = $elem->schild(0) or return;
}
}
# split_nodes_on_comma() handles oddities like "use constant qw(FOO 1)"
#
my @nodes = _elem_and_ssiblings ($elem);
my @arefs = split_nodes_on_comma (@nodes);
### @arefs
if ($single) {
$#arefs = 0; # first elem only
}
my @constants;
for (my $i = 0; $i < @arefs; $i += 2) {
my $aref = $arefs[$i];
if (@$aref == 1) {
my $name_elem = $aref->[0];
if (! $name_elem->isa ('PPI::Token::Structure')) { # not final ";"
push @constants, ($name_elem->can('string')
? $name_elem->string
: $name_elem->content);
next;
}
}
### ConstantBeforeLt skip non-name constant: $aref
}
return @constants;
}
sub _elem_and_ssiblings {
my ($elem) = @_;
my @ret;
while ($elem) {
push @ret, $elem;
$elem = $elem->snext_sibling;
}
return @ret;
}
1;
__END__
=for stopwords bareword autoloaded unprototyped readline parens ConstantBeforeLt POSIX Bareword filehandle mis-ordering Ryde emphasises prototyped
=head1 NAME
Perl::Critic::Policy::ValuesAndExpressions::ConstantBeforeLt - disallow bareword before <
=head1 DESCRIPTION
This policy is part of the L<C<Perl::Critic::Pulp>|Perl::Critic::Pulp>
add-on. It prohibits a bareword before a C<E<lt>> to keep you out of trouble
with autoloaded or unprototyped constant subs since a C<E<lt>> in that case
is interpreted as the start of a C<E<lt>..E<gt>> glob or readline instead of
a less-than. This policy is under the "bugs" theme (see
L<Perl::Critic/POLICY THEMES>).
use POSIX;
DBL_MANT_DIG < 32 # bad, perl 5.8 thinks <>
func <*.c> # ok, actual glob
time < 2e9 # ok, builtins parse ok
use constant FOO => 16;
FOO < 32 # ok, your own const
sub BAR () { 64 }
BAR < 32 # ok, your own prototyped sub
The fix for something like C<DBL_MANT_DIG E<lt> 10> is parens either around
or after, like
(DBL_MANT_DIG) < 10 # ok
DBL_MANT_DIG() < 10 # ok
whichever you think is less worse. The latter emphasises it's really a sub.
The key is whether the constant sub in question is defined and has a
prototype at the time the code is compiled. ConstantBeforeLt makes the
pessimistic assumption that anything except C<use constant> and prototyped
subs in your own file shouldn't be relied on.
In practice the most likely problems are with the C<POSIX> module constants
of Perl 5.8.x and earlier, since they were unprototyped. The default code
generated by C<h2xs> (as of Perl 5.10.0) is similar autoloaded unprototyped
constants so modules using the bare output of that suffer too.
If you're confident the modules you use don't play tricks with their
constants (including only using POSIX on Perl 5.10.0 or higher) then you
might find ConstantBeforeLt too pessimistic. It normally triggers rather
rarely anyway, but you can always disable it altogether in your
F<.perlcriticrc> file (see L<Perl::Critic/CONFIGURATION>),
[-ValuesAndExpressions::ConstantBeforeLt]
=head1 OTHER NOTES
Bareword file handles might be misinterpreted by this policy as constants,
but in practice "<" doesn't get used with anything taking a bare filehandle.
A constant used before it's defined, like
if (FOO < 123) { ... } # bad
...
use constant FOO => 456;
is reported by ConstantBeforeLt since it might be an imported constant sub,
even if it's much more likely to be a simple mis-ordering, which C<use
strict> picks up anyway when it runs.
=head1 SEE ALSO
L<Perl::Critic::Pulp>,
L<Perl::Critic>
=head1 HOME PAGE
http://user42.tuxfamily.org/perl-critic-pulp/index.html
=head1 COPYRIGHT
Copyright 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017 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/>.
=cut
|