dect
/
linux-2.6
Archived
13
0
Fork 0

checkincludes: fix perlcritic warnings

Turn on strict checking.
Use local file handles.
Use three argument open.

Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Cc: Cong Wang <amwang@redhat.com>
Cc: Michal Marek <mmarek@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Michal Marek <mmarek@suse.cz>
This commit is contained in:
Stephen Hemminger 2010-02-22 15:17:12 -08:00 committed by Michal Marek
parent 1f2a144f5a
commit 3da2715731
1 changed files with 14 additions and 10 deletions

View File

@ -11,6 +11,8 @@
# you do have real dups and do not have them under #ifdef's. You # you do have real dups and do not have them under #ifdef's. You
# could also just review the results. # could also just review the results.
use strict;
sub usage { sub usage {
print "Usage: checkincludes.pl [-r]\n"; print "Usage: checkincludes.pl [-r]\n";
print "By default we just warn of duplicates\n"; print "By default we just warn of duplicates\n";
@ -35,23 +37,24 @@ if ($#ARGV >= 1) {
} }
} }
foreach $file (@ARGV) { foreach my $file (@ARGV) {
open(FILE, $file) or die "Cannot open $file: $!.\n"; open(my $f, '<', $file)
or die "Cannot open $file: $!.\n";
my %includedfiles = (); my %includedfiles = ();
my @file_lines = (); my @file_lines = ();
while (<FILE>) { while (<$f>) {
if (m/^\s*#\s*include\s*[<"](\S*)[>"]/o) { if (m/^\s*#\s*include\s*[<"](\S*)[>"]/o) {
++$includedfiles{$1}; ++$includedfiles{$1};
} }
push(@file_lines, $_); push(@file_lines, $_);
} }
close(FILE); close($f);
if (!$remove) { if (!$remove) {
foreach $filename (keys %includedfiles) { foreach my $filename (keys %includedfiles) {
if ($includedfiles{$filename} > 1) { if ($includedfiles{$filename} > 1) {
print "$file: $filename is included more than once.\n"; print "$file: $filename is included more than once.\n";
} }
@ -59,27 +62,28 @@ foreach $file (@ARGV) {
next; next;
} }
open(FILE,">$file") || die("Cannot write to $file: $!"); open($f, '>', $file)
or die("Cannot write to $file: $!");
my $dups = 0; my $dups = 0;
foreach (@file_lines) { foreach (@file_lines) {
if (m/^\s*#\s*include\s*[<"](\S*)[>"]/o) { if (m/^\s*#\s*include\s*[<"](\S*)[>"]/o) {
foreach $filename (keys %includedfiles) { foreach my $filename (keys %includedfiles) {
if ($1 eq $filename) { if ($1 eq $filename) {
if ($includedfiles{$filename} > 1) { if ($includedfiles{$filename} > 1) {
$includedfiles{$filename}--; $includedfiles{$filename}--;
$dups++; $dups++;
} else { } else {
print FILE $_; print {$f} $_;
} }
} }
} }
} else { } else {
print FILE $_; print {$f} $_;
} }
} }
if ($dups > 0) { if ($dups > 0) {
print "$file: removed $dups duplicate includes\n"; print "$file: removed $dups duplicate includes\n";
} }
close(FILE); close($f);
} }