File Coverage

blib/lib/Perl/Critic/Policy/Variables/ProhibitUnusedVariables.pm
Criterion Covered Total %
statement 62 74 83.7
branch 13 28 46.4
condition n/a
subroutine 17 17 100.0
pod 4 5 80.0
total 96 124 77.4


line stmt bran cond sub pod time code
1             package Perl::Critic::Policy::Variables::ProhibitUnusedVariables;
2              
3 40     40   26948 use 5.010001;
  40         204  
4 40     40   287 use strict;
  40         123  
  40         845  
5 40     40   229 use warnings;
  40         124  
  40         930  
6              
7 40     40   309 use Readonly;
  40         110  
  40         1930  
8 40     40   268 use List::SomeUtils qw( any );
  40         126  
  40         1715  
9              
10 40     40   309 use PPI::Token::Symbol;
  40         150  
  40         1542  
11 40     40   25381 use PPIx::QuoteLike;
  40         6366503  
  40         2035  
12              
13 40     40   472 use Perl::Critic::Utils qw< :characters :severities >;
  40         113  
  40         3035  
14 40     40   13860 use parent 'Perl::Critic::Policy';
  40         144  
  40         427  
15              
16             our $VERSION = '1.150';
17              
18             #-----------------------------------------------------------------------------
19              
20             Readonly::Scalar my $EXPL =>
21             q<Unused variables clutter code and make it harder to read>;
22              
23             #-----------------------------------------------------------------------------
24              
25 89     89 0 1649 sub supported_parameters { return () }
26 74     74 1 384 sub default_severity { return $SEVERITY_MEDIUM }
27 74     74 1 413 sub default_themes { return qw< core maintenance certrec > }
28 30     30 1 86 sub applies_to { return qw< PPI::Document > }
29              
30             #-----------------------------------------------------------------------------
31              
32             sub violates {
33 30     30 1 129 my ( $self, $elem, $document ) = @_;
34              
35 30         58 my %symbol_usage;
36 30         120 _get_symbol_usage( \%symbol_usage, $document );
37 30         133 _get_regexp_symbol_usage( \%symbol_usage, $document );
38 30 100       124 return if not %symbol_usage;
39              
40 28         75 my $declarations = $document->find('PPI::Statement::Variable');
41 28 100       120 return if not $declarations;
42              
43 27         48 my @violations;
44              
45             DECLARATION:
46 27         49 foreach my $declaration ( @{$declarations} ) {
  27         58  
47 85 100       1165 next DECLARATION if 'my' ne $declaration->type();
48              
49 58         1664 my @children = $declaration->schildren();
50 58 50   174   1005 next DECLARATION if any { $_->content() eq q<=> } @children;
  174         480  
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         466 return @violations;
69             }
70              
71             sub _get_symbol_usage {
72 30     30   70 my ( $symbol_usage, $document ) = @_;
73              
74 30         75 my $symbols = $document->find('PPI::Token::Symbol');
75 30 100       115 return if not $symbols;
76              
77 28         93 foreach my $symbol ( @{$symbols} ) {
  28         92  
78 172         6066 $symbol_usage->{ $symbol->symbol() }++;
79             }
80              
81 28         1057 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 168         283 foreach my $double_quotish (
90 168 100       319 @{ $document->find( $class ) || [] }
91             ) {
92 1 50       15 my $str = PPIx::QuoteLike->new( $double_quotish )
93             or next;
94 1         3601 foreach my $var ( $str->variables() ) {
95 0         0 $symbol_usage->{ $var }++;
96             }
97             }
98             }
99              
100 28         62 return;
101             }
102              
103             sub _get_regexp_symbol_usage {
104 30     30   81 my ( $symbol_usage, $document ) = @_;
105              
106 30         67 foreach my $class ( qw{
107             PPI::Token::Regexp::Match
108             PPI::Token::Regexp::Substitute
109             PPI::Token::QuoteLike::Regexp
110             } ) {
111              
112 90 50       143 foreach my $regex ( @{ $document->find( $class ) || [] } ) {
  90         168  
113              
114 0 0       0 my $ppix = $document->ppix_regexp_from_element( $regex ) or next;
115 0 0       0 $ppix->failures() and next;
116              
117 0         0 foreach my $code ( @{
118 0 0       0 $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 30         70 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 :