File Coverage

blib/lib/Perl/Critic/Policy/Variables/ProhibitUnusedVariables.pm
Criterion Covered Total %
statement 66 74 89.1
branch 17 28 60.7
condition n/a
subroutine 17 17 100.0
pod 4 5 80.0
total 104 124 83.8


line stmt bran cond sub pod time code
1             package Perl::Critic::Policy::Variables::ProhibitUnusedVariables;
2              
3 40     40   24965 use 5.010001;
  40         138  
4 40     40   199 use strict;
  40         100  
  40         777  
5 40     40   157 use warnings;
  40         81  
  40         1530  
6              
7 40     40   205 use Readonly;
  40         70  
  40         1984  
8 40     40   192 use List::SomeUtils qw( any );
  40         69  
  40         1625  
9              
10 40     40   193 use PPI::Token::Symbol;
  40         96  
  40         1233  
11 40     40   19325 use PPIx::QuoteLike;
  40         1233014  
  40         1858  
12              
13 40     40   322 use Perl::Critic::Utils qw< :characters :severities >;
  40         75  
  40         2722  
14 40     40   10069 use parent 'Perl::Critic::Policy';
  40         73  
  40         299  
15              
16             our $VERSION = '1.156';
17              
18             #-----------------------------------------------------------------------------
19              
20             Readonly::Scalar my $EXPL =>
21             q<Unused variables clutter code and make it harder to read>;
22              
23             #-----------------------------------------------------------------------------
24              
25 90     90 0 588 sub supported_parameters { return () }
26 75     75 1 238 sub default_severity { return $SEVERITY_MEDIUM }
27 74     74 1 343 sub default_themes { return qw< core maintenance certrec > }
28 31     31 1 85 sub applies_to { return qw< PPI::Document > }
29              
30             #-----------------------------------------------------------------------------
31              
32             sub violates {
33 31     31 1 98 my ( $self, undef, $document ) = @_;
34              
35 31         56 my %symbol_usage;
36 31         147 _get_symbol_usage( \%symbol_usage, $document );
37 31         183 _get_regexp_symbol_usage( \%symbol_usage, $document );
38 31 100       80 return if not %symbol_usage;
39              
40 29         69 my $declarations = $document->find('PPI::Statement::Variable');
41 29 100       85 return if not $declarations;
42              
43 27         54 my @violations;
44              
45             DECLARATION:
46 27         51 foreach my $declaration ( @{$declarations} ) {
  27         64  
47 85 100       1035 next DECLARATION if 'my' ne $declaration->type();
48              
49 58         1479 my @children = $declaration->schildren();
50 58 50   174   840 next DECLARATION if any { $_->content() eq q<=> } @children;
  174         444  
51              
52             VARIABLE:
53 0         0 foreach my $variable ( $declaration->variables() ) {
54 0         0 my $count = $symbol_usage{ $variable };
55 0 0       0 next VARIABLE if not $count; # BUG!
56 0 0       0 next VARIABLE if $count > 1;
57              
58 0         0 push
59             @violations,
60             $self->violation(
61             qq<"$variable" is declared but not used.>,
62             $EXPL,
63             $declaration,
64             );
65             }
66             }
67              
68 27         379 return @violations;
69             }
70              
71             sub _get_symbol_usage {
72 31     31   78 my ( $symbol_usage, $document ) = @_;
73              
74 31         87 my $symbols = $document->find('PPI::Token::Symbol');
75 31 100       73 return if not $symbols;
76              
77 29         48 foreach my $symbol ( @{$symbols} ) {
  29         73  
78 173         5433 $symbol_usage->{ $symbol->symbol() }++;
79             }
80              
81 29         1081 foreach my $class ( qw{
82             PPI::Token::Quote::Double
83             PPI::Token::Quote::Interpolate
84             PPI::Token::QuoteLike::Backtick
85             PPI::Token::QuoteLike::Command
86             PPI::Token::QuoteLike::Readline
87             PPI::Token::HereDoc
88             } ) {
89 174         244 foreach my $double_quotish (
90 174 100       284 @{ $document->find( $class ) || [] }
91             ) {
92 1 50       11 my $str = PPIx::QuoteLike->new( $double_quotish )
93             or next;
94 1         3178 foreach my $var ( $str->variables() ) {
95 0         0 $symbol_usage->{ $var }++;
96             }
97             }
98             }
99              
100 29         59 return;
101             }
102              
103             sub _get_regexp_symbol_usage {
104 31     31   79 my ( $symbol_usage, $document ) = @_;
105              
106 31         67 foreach my $class ( qw{
107             PPI::Token::Regexp::Match
108             PPI::Token::Regexp::Substitute
109             PPI::Token::QuoteLike::Regexp
110             } ) {
111              
112 93 100       309 foreach my $regex ( @{ $document->find( $class ) || [] } ) {
  93         184  
113              
114 1 50       2 my $ppix = $document->ppix_regexp_from_element( $regex ) or next;
115 1 50       5 $ppix->failures() and next;
116              
117 1         7 foreach my $code ( @{
118 1 50       5 $ppix->find( 'PPIx::Regexp::Token::Code' ) || [] } ) {
119 0 0       0 my $subdoc = $code->ppi() or next;
120 0         0 _get_symbol_usage( $symbol_usage, $subdoc );
121             }
122              
123             }
124              
125             }
126              
127 31         53 return;
128             }
129              
130             #-----------------------------------------------------------------------------
131              
132             1;
133              
134             __END__
135              
136             #-----------------------------------------------------------------------------
137              
138             =pod
139              
140             =head1 NAME
141              
142             Perl::Critic::Policy::Variables::ProhibitUnusedVariables - Don't ask for storage you don't need.
143              
144              
145             =head1 AFFILIATION
146              
147             This Policy is part of the core L<Perl::Critic|Perl::Critic>
148             distribution.
149              
150              
151             =head1 DESCRIPTION
152              
153             Unused variables clutter code and require the reader to do mental
154             bookkeeping to figure out if the variable is actually used or not.
155              
156             At present, this Policy is very limited in order to ensure that there
157             aren't any false positives. Hopefully, this will become more
158             sophisticated soon.
159              
160             Right now, this only looks for simply declared, uninitialized lexical
161             variables.
162              
163             my $x; # not ok, assuming no other appearances.
164             my @y = (); # ok, not handled yet.
165             our $z; # ok, global.
166             local $w; # ok, global.
167              
168             This module is very dumb: it does no scoping detection, i.e. if the
169             same variable name is used in two different locations, even if they
170             aren't the same variable, this Policy won't complain.
171              
172             Have to start somewhere.
173              
174              
175             =head1 CONFIGURATION
176              
177             This Policy is not configurable except for the standard options.
178              
179              
180             =head1 AUTHOR
181              
182             Elliot Shank C<< <perl@galumph.com> >>
183              
184              
185             =head1 COPYRIGHT
186              
187             Copyright (c) 2008-2021 Elliot Shank.
188              
189             This program is free software; you can redistribute it and/or modify
190             it under the same terms as Perl itself. The full text of this license
191             can be found in the LICENSE file included with this module.
192              
193             =cut
194              
195             # Local Variables:
196             # mode: cperl
197             # cperl-indent-level: 4
198             # fill-column: 78
199             # indent-tabs-mode: nil
200             # c-indentation-style: bsd
201             # End:
202             # ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :