B::Concise -- an improved replacement for B::Terse
[p5sagit/p5-mst-13.2.git] / ext / B / B / Lint.pm
CommitLineData
a798dbf2 1package B::Lint;
2
3=head1 NAME
4
5B::Lint - Perl lint
6
7=head1 SYNOPSIS
8
9perl -MO=Lint[,OPTIONS] foo.pl
10
11=head1 DESCRIPTION
12
13The B::Lint module is equivalent to an extended version of the B<-w>
14option of B<perl>. It is named after the program B<lint> which carries
15out a similar process for C programs.
16
17=head1 OPTIONS AND LINT CHECKS
18
19Option words are separated by commas (not whitespace) and follow the
20usual conventions of compiler backend options. Following any options
21(indicated by a leading B<->) come lint check arguments. Each such
22argument (apart from the special B<all> and B<none> options) is a
23word representing one possible lint check (turning on that check) or
24is B<no-foo> (turning off that check). Before processing the check
25arguments, a standard list of checks is turned on. Later options
26override earlier ones. Available options are:
27
28=over 8
29
30=item B<context>
31
32Produces a warning whenever an array is used in an implicit scalar
33context. For example, both of the lines
34
35 $foo = length(@bar);
36 $foo = @bar;
37will elicit a warning. Using an explicit B<scalar()> silences the
38warning. For example,
39
40 $foo = scalar(@bar);
41
42=item B<implicit-read> and B<implicit-write>
43
44These options produce a warning whenever an operation implicitly
45reads or (respectively) writes to one of Perl's special variables.
46For example, B<implicit-read> will warn about these:
47
48 /foo/;
49
50and B<implicit-write> will warn about these:
51
52 s/foo/bar/;
53
54Both B<implicit-read> and B<implicit-write> warn about this:
55
56 for (@a) { ... }
57
58=item B<dollar-underscore>
59
60This option warns whenever $_ is used either explicitly anywhere or
61as the implicit argument of a B<print> statement.
62
63=item B<private-names>
64
65This option warns on each use of any variable, subroutine or
66method name that lives in a non-current package but begins with
67an underscore ("_"). Warnings aren't issued for the special case
68of the single character name "_" by itself (e.g. $_ and @_).
69
70=item B<undefined-subs>
71
72This option warns whenever an undefined subroutine is invoked.
73This option will only catch explicitly invoked subroutines such
74as C<foo()> and not indirect invocations such as C<&$subref()>
75or C<$obj-E<gt>meth()>. Note that some programs or modules delay
76definition of subs until runtime by means of the AUTOLOAD
77mechanism.
78
79=item B<regexp-variables>
80
81This option warns whenever one of the regexp variables $', $& or
82$' is used. Any occurrence of any of these variables in your
83program can slow your whole program down. See L<perlre> for
84details.
85
86=item B<all>
87
88Turn all warnings on.
89
90=item B<none>
91
92Turn all warnings off.
93
94=back
95
96=head1 NON LINT-CHECK OPTIONS
97
98=over 8
99
100=item B<-u Package>
101
102Normally, Lint only checks the main code of the program together
103with all subs defined in package main. The B<-u> option lets you
104include other package names whose subs are then checked by Lint.
105
106=back
107
108=head1 BUGS
109
110This is only a very preliminary version.
111
112=head1 AUTHOR
113
114Malcolm Beattie, mbeattie@sable.ox.ac.uk.
115
116=cut
117
118use strict;
f6c2d85b 119use B qw(walkoptree main_root walksymtable svref_2object parents
4c1f658f 120 OPf_WANT_LIST OPf_WANT OPf_STACKED G_ARRAY
121 );
a798dbf2 122
123my $file = "unknown"; # shadows current filename
124my $line = 0; # shadows current line number
125my $curstash = "main"; # shadows current stash
126
127# Lint checks
128my %check;
129my %implies_ok_context;
130BEGIN {
131 map($implies_ok_context{$_}++,
3f872cb9 132 qw(scalar av2arylen aelem aslice helem hslice
133 keys values hslice defined undef delete));
a798dbf2 134}
135
136# Lint checks turned on by default
137my @default_checks = qw(context);
138
139my %valid_check;
140# All valid checks
141BEGIN {
142 map($valid_check{$_}++,
143 qw(context implicit_read implicit_write dollar_underscore
144 private_names undefined_subs regexp_variables));
145}
146
147# Debugging options
148my ($debug_op);
149
150my %done_cv; # used to mark which subs have already been linted
151my @extra_packages; # Lint checks mainline code and all subs which are
152 # in main:: or in one of these packages.
153
154sub warning {
155 my $format = (@_ < 2) ? "%s" : shift;
156 warn sprintf("$format at %s line %d\n", @_, $file, $line);
157}
158
159# This gimme can't cope with context that's only determined
160# at runtime via dowantarray().
161sub gimme {
162 my $op = shift;
163 my $flags = $op->flags;
4c1f658f 164 if ($flags & OPf_WANT) {
165 return(($flags & OPf_WANT_LIST) ? 1 : 0);
a798dbf2 166 }
167 return undef;
168}
169
170sub B::OP::lint {}
171
172sub B::COP::lint {
173 my $op = shift;
3f872cb9 174 if ($op->name eq "nextstate") {
57843af0 175 $file = $op->file;
a798dbf2 176 $line = $op->line;
177 $curstash = $op->stash->NAME;
178 }
179}
180
181sub B::UNOP::lint {
182 my $op = shift;
3f872cb9 183 my $opname = $op->name;
184 if ($check{context} && ($opname eq "rv2av" || $opname eq "rv2hv")) {
a798dbf2 185 my $parent = parents->[0];
3f872cb9 186 my $pname = $parent->name;
a798dbf2 187 return if gimme($op) || $implies_ok_context{$pname};
188 # Two special cases to deal with: "foreach (@foo)" and "delete $a{$b}"
189 # null out the parent so we have to check for a parent of pp_null and
190 # a grandparent of pp_enteriter or pp_delete
3f872cb9 191 if ($pname eq "null") {
192 my $gpname = parents->[1]->name;
193 return if $gpname eq "enteriter" || $gpname eq "delete";
a798dbf2 194 }
195 warning("Implicit scalar context for %s in %s",
3f872cb9 196 $opname eq "rv2av" ? "array" : "hash", $parent->desc);
a798dbf2 197 }
3f872cb9 198 if ($check{private_names} && $opname eq "method") {
a798dbf2 199 my $methop = $op->first;
3f872cb9 200 if ($methop->name eq "const") {
a798dbf2 201 my $method = $methop->sv->PV;
202 if ($method =~ /^_/ && !defined(&{"$curstash\::$method"})) {
203 warning("Illegal reference to private method name $method");
204 }
205 }
206 }
207}
208
209sub B::PMOP::lint {
210 my $op = shift;
211 if ($check{implicit_read}) {
3f872cb9 212 if ($op->name eq "match" && !($op->flags & OPf_STACKED)) {
a798dbf2 213 warning('Implicit match on $_');
214 }
215 }
216 if ($check{implicit_write}) {
3f872cb9 217 if ($op->name eq "subst" && !($op->flags & OPf_STACKED)) {
a798dbf2 218 warning('Implicit substitution on $_');
219 }
220 }
221}
222
223sub B::LOOP::lint {
224 my $op = shift;
225 if ($check{implicit_read} || $check{implicit_write}) {
3f872cb9 226 if ($op->name eq "enteriter") {
a798dbf2 227 my $last = $op->last;
3f872cb9 228 if ($last->name eq "gv" && $last->gv->NAME eq "_") {
a798dbf2 229 warning('Implicit use of $_ in foreach');
230 }
231 }
232 }
233}
234
7934575e 235sub B::SVOP::lint {
a798dbf2 236 my $op = shift;
3f872cb9 237 if ($check{dollar_underscore} && $op->name eq "gvsv"
a798dbf2 238 && $op->gv->NAME eq "_")
239 {
240 warning('Use of $_');
241 }
242 if ($check{private_names}) {
3f872cb9 243 my $opname = $op->name;
4f25aa18 244 if ($opname eq "gv" || $opname eq "gvsv") {
7934575e 245 my $gv = $op->gv;
246 if ($gv->NAME =~ /^_./ && $gv->STASH->NAME ne $curstash) {
247 warning('Illegal reference to private name %s', $gv->NAME);
248 }
a798dbf2 249 }
250 }
251 if ($check{undefined_subs}) {
3f872cb9 252 if ($op->name eq "gv"
253 && $op->next->name eq "entersub")
254 {
a798dbf2 255 my $gv = $op->gv;
256 my $subname = $gv->STASH->NAME . "::" . $gv->NAME;
257 no strict 'refs';
258 if (!defined(&$subname)) {
259 $subname =~ s/^main:://;
260 warning('Undefined subroutine %s called', $subname);
261 }
262 }
263 }
3f872cb9 264 if ($check{regexp_variables} && $op->name eq "gvsv") {
a798dbf2 265 my $name = $op->gv->NAME;
266 if ($name =~ /^[&'`]$/) {
267 warning('Use of regexp variable $%s', $name);
268 }
269 }
270}
271
272sub B::GV::lintcv {
273 my $gv = shift;
274 my $cv = $gv->CV;
275 #warn sprintf("lintcv: %s::%s (done=%d)\n",
276 # $gv->STASH->NAME, $gv->NAME, $done_cv{$$cv});#debug
277 return if !$$cv || $done_cv{$$cv}++;
278 my $root = $cv->ROOT;
279 #warn " root = $root (0x$$root)\n";#debug
f6c2d85b 280 walkoptree($root, "lint") if $$root;
a798dbf2 281}
282
283sub do_lint {
284 my %search_pack;
f6c2d85b 285 walkoptree(main_root, "lint") if ${main_root()};
a798dbf2 286
287 # Now do subs in main
288 no strict qw(vars refs);
289 my $sym;
290 local(*glob);
291 while (($sym, *glob) = each %{"main::"}) {
292 #warn "Trying $sym\n";#debug
293 svref_2object(\*glob)->EGV->lintcv unless $sym =~ /::$/;
294 }
295
296 # Now do subs in non-main packages given by -u options
297 map { $search_pack{$_} = 1 } @extra_packages;
298 walksymtable(\%{"main::"}, "lintcv", sub {
299 my $package = shift;
300 $package =~ s/::$//;
301 #warn "Considering $package\n";#debug
302 return exists $search_pack{$package};
303 });
304}
305
306sub compile {
307 my @options = @_;
308 my ($option, $opt, $arg);
309 # Turn on default lint checks
310 for $opt (@default_checks) {
311 $check{$opt} = 1;
312 }
313 OPTION:
314 while ($option = shift @options) {
315 if ($option =~ /^-(.)(.*)/) {
316 $opt = $1;
317 $arg = $2;
318 } else {
319 unshift @options, $option;
320 last OPTION;
321 }
322 if ($opt eq "-" && $arg eq "-") {
323 shift @options;
324 last OPTION;
325 } elsif ($opt eq "D") {
326 $arg ||= shift @options;
327 foreach $arg (split(//, $arg)) {
328 if ($arg eq "o") {
329 B->debug(1);
330 } elsif ($arg eq "O") {
331 $debug_op = 1;
332 }
333 }
334 } elsif ($opt eq "u") {
335 $arg ||= shift @options;
336 push(@extra_packages, $arg);
337 }
338 }
339 foreach $opt (@default_checks, @options) {
340 $opt =~ tr/-/_/;
341 if ($opt eq "all") {
342 %check = %valid_check;
343 }
344 elsif ($opt eq "none") {
345 %check = ();
346 }
347 else {
348 if ($opt =~ s/^no-//) {
349 $check{$opt} = 0;
350 }
351 else {
352 $check{$opt} = 1;
353 }
354 warn "No such check: $opt\n" unless defined $valid_check{$opt};
355 }
356 }
357 # Remaining arguments are things to check
358
359 return \&do_lint;
360}
361
3621;