summaryrefslogtreecommitdiff
path: root/tools/check-includes.pl
blob: 7f049da6d853deaf1d06d356f69a2e1e6e71f2b2 (plain)
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
#!/usr/bin/env perl
#
# checkincludes: Find files included more than once in (other) files.
# Copyright abandoned, 2000, Niels Kristian Bech Jensen <nkbj@image.dk>.

#if 0 // 5 errors and 2 warnings are inaccaptable for elogind - See PerlCritic.
# foreach $file (@ARGV) {
# 	open(FILE, $file) or die "Cannot open $file: $!.\n";
# 
# 	my %includedfiles = ();
# 
# 	while (<FILE>) {
# 		if (m/^\s*#\s*include\s*[<"](\S*)[>"]/o) {
# 			++$includedfiles{$1};
# 		}
# 	}
# 	foreach $filename (keys %includedfiles) {
# 		if ($includedfiles{$filename} > 1) {
# 			print "$file: $filename is included more than once.\n";
# 		}
# 	}
# 
# 	close(FILE);
# }
#else
use strict;
use warnings;

foreach my $file (@ARGV) {
	my %includedfiles = ();

	open(my $FILE, "<", $file) or die "Cannot open $file: $!.\n";
	while (<$FILE>) {
		if (m/^\s*#\s*include\s*[<"](\S*)[>"]/o) {
			++$includedfiles{$1};
		}
	}
	close($FILE);

	foreach my $filename (keys %includedfiles) {
		if ($includedfiles{$filename} > 1) {
			print "$file: $filename is included more than once.\n";
		}
	}
}
#endif // 0