Hash :
be7bbbd5
Author :
Date :
2005-08-29T11:57:17
If more parameters are given, check each of them separately; add more exceptions, as noted by Jim Meyering. (check_module): New procedure. (%exempt_header): Now contains all exceptions.
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
#!/usr/bin/perl -w
# Read a module description file and derive the set of files
# included directly by any .c or .h file listed in the `Files:' section.
# Take the union of all such sets for any dependent modules.
# Then, compare that set with the set derived from the names
# listed in the various Files: sections.
# This script makes no attempt to diagnose invalid or empty
# module-description files.
# Written by Jim Meyering
use strict;
use Getopt::Long;
#use Coda;
(my $VERSION = '$Revision: 1.3 $ ') =~ tr/[0-9].//cd;
(my $ME = $0) =~ s|.*/||;
use constant ST_INIT => 1;
use constant ST_FILES => 2;
use constant ST_DEPENDENTS => 3;
# Parse a module file (returning list of Files: names and
# list of dependent-modules.
# my ($file, $dep) = parse_module_file $module_file;
sub parse_module_file ($)
{
my ($module_file) = @_;
open FH, '<', $module_file
or die "$ME: can't open `$module_file' for reading: $!\n";
my %file_set;
my %dep_set;
my $state = ST_INIT;
while (defined (my $line = <FH>))
{
if ($state eq ST_INIT)
{
if ($line =~ /^Files:$/)
{
$state = ST_FILES;
}
elsif ($line =~ /^Depends-on:$/)
{
$state = ST_DEPENDENTS;
}
}
else
{
chomp $line;
$line =~ s/^\s+//;
$line =~ s/\s+$//;
if ( ! $line)
{
$state = ST_INIT;
next;
}
if ($state eq ST_FILES)
{
$file_set{$line} = 1;
}
elsif ($state eq ST_DEPENDENTS)
{
$dep_set{$line} = 1;
}
}
}
close FH;
# my @t = sort keys %file_set;
# print "files: @t\n";
# my @u = sort keys %dep_set;
# print "dependents: @u\n";
return (\%file_set, \%dep_set);
}
# Extract the set of files required for this module, including
# those required via dependent modules.
# Files:
# lib/stat.c
# m4/stat.m4
# lib/foo.h
#
# Depends-on:
# some-other-module
sub usage ($)
{
my ($exit_code) = @_;
my $STREAM = ($exit_code == 0 ? *STDOUT : *STDERR);
if ($exit_code != 0)
{
print $STREAM "Try `$ME --help' for more information.\n";
}
else
{
print $STREAM <<EOF;
Usage: $ME [OPTIONS] FILE...
Read a module description file and derive the set of files
included directly by any .c or .h file listed in the `Files:' section.
Take the union of all such sets for any dependent modules.
Then, compare that set with the set derived from the names
listed in the various Files: sections.
OPTIONS:
--help display this help and exit
--version output version information and exit
EOF
}
exit $exit_code;
}
sub find_included_lib_files ($)
{
my ($file) = @_;
# Special cases...
my %special_non_dup = ( 'fnmatch_loop.c' => 1, 'regex.c' => 1 );
my %inc;
open FH, '<', $file
or die "$ME: can't open `$file' for reading: $!\n";
while (defined (my $line = <FH>))
{
# Ignore test-driver code at end of file.
$line =~ m!^\#if(def)? TEST_!
and last;
$line =~ m!^\s*\#\s*include\s+"!
or next;
$line =~ s///;
chomp $line;
$line =~ s/".*//;
exists $inc{$line} && ! exists $special_non_dup{$line}
and warn "$ME: $file: duplicate inclusion of $line\n";
$inc{$line} = 1;
}
close FH;
return \%inc;
}
my %exempt_header =
(
# Exempt headers like unlocked-io.h that are `#include'd
# but not necessarily used.
'unlocked-io.h' => 1,
# Give gettext.h a free pass only when included from lib/error.c,
# since we've made that exception solely to make the error
# module easier to use -- at RMS's request.
'lib/error.c:gettext.h' => 1,
# The full-read module shares code with the full-write module.
'lib/full-write.c:full-read.h' => 1,
# The safe-write module shares code with the safe-read module.
'lib/safe-read.c:safe-write.h' => 1,
# The use of obstack.h in the hash module is conditional, off by default.
'lib/hash.c:obstack.h' => 1,
# The fts-lgpl module doesn't actually use fts-cycle.c and unistd-safer.h.
'lib/fts.c:fts-cycle.c' => 1,
'lib/fts.c:unistd-safer.h' => 1,
);
sub check_module ($)
{
my @m = @_;
my %file;
my %module_all_files;
my %dep;
my %seen_module;
while (@m)
{
my $m = pop @m;
# warn "M: $m\n";
exists $seen_module{$m}
and next;
$seen_module{$m} = 1;
my ($file, $dep) = parse_module_file $m;
push @m, keys %$dep;
foreach my $f (keys %$file)
{
$module_all_files{$f} = 1;
}
}
my @t = sort keys %module_all_files;
# warn "ALL files: @t\n";
# Derive from %module_all_files (by parsing the .c and .h files therein),
# the list of all #include'd files that reside in lib/.
foreach my $f (keys %module_all_files)
{
$f =~ /\.[ch]$/
or next;
# FIXME: this is too naive
my $inc = find_included_lib_files "../$f";
foreach my $i (sort keys %$inc)
{
my $lib_file = "lib/$i";
exists $exempt_header{"$f:$i"}
|| exists $exempt_header{$i}
and next;
!exists $module_all_files{$lib_file} && -f "../lib/$i"
and warn "$f: $i is `#include'd, but not "
. "listed in module's Files: section\n";
}
#my @t = sort keys %$inc;
#print "** $f: @t\n";
}
}
{
GetOptions
(
help => sub { usage 0 },
version => sub { print "$ME version $VERSION\n"; exit },
) or usage 1;
@ARGV < 1
and (warn "$ME: missing FILE argument\n"), usage 1;
foreach my $module (@ARGV)
{
check_module $module;
}
exit 0;
}