2 # (c) 2007, Joe Perches <joe@perches.com>
3 # created from checkpatch.pl
5 # Print selected MAINTAINERS information for
6 # the files modified in a patch or for a file
8 # usage: perl scripts/get_maintainer.pl [OPTIONS] <patch>
9 # perl scripts/get_maintainer.pl [OPTIONS] -f <file>
11 # Licensed under the terms of the GNU GPL License version 2
18 use Getopt
::Long
qw(:config no_auto_abbrev);
22 my $email_usename = 1;
23 my $email_maintainer = 1;
25 my $email_subscriber_list = 0;
26 my $email_git_penguin_chiefs = 0;
28 my $email_git_all_signature_types = 0;
29 my $email_git_blame = 0;
30 my $email_git_min_signatures = 1;
31 my $email_git_max_maintainers = 5;
32 my $email_git_min_percent = 5;
33 my $email_git_since = "1-year-ago";
34 my $email_hg_since = "-365";
35 my $email_remove_duplicates = 1;
36 my $output_multiline = 1;
37 my $output_separator = ", ";
39 my $output_rolestats = 0;
47 my $from_filename = 0;
48 my $pattern_depth = 0;
54 my @penguin_chief = ();
55 push(@penguin_chief, "Linus Torvalds:torvalds\@linux-foundation.org");
56 #Andrew wants in on most everything - 2009/01/14
57 #push(@penguin_chief, "Andrew Morton:akpm\@linux-foundation.org");
59 my @penguin_chief_names = ();
60 foreach my $chief (@penguin_chief) {
61 if ($chief =~ m/^(.*):(.*)/) {
64 push(@penguin_chief_names, $chief_name);
67 my $penguin_chiefs = "\(" . join("|", @penguin_chief_names) . "\)";
69 # Signature types of people who are either
70 # a) responsible for the code in question, or
71 # b) familiar enough with it to give relevant feedback
72 my @signature_tags = ();
73 push(@signature_tags, "Signed-off-by:");
74 push(@signature_tags, "Reviewed-by:");
75 push(@signature_tags, "Acked-by:");
76 my $signaturePattern = "\(" . join("|", @signature_tags) . "\)";
78 # rfc822 email address - preloaded methods go here.
79 my $rfc822_lwsp = "(?:(?:\\r\\n)?[ \\t])";
80 my $rfc822_char = '[\\000-\\377]';
82 # VCS command support: class-like functions and strings
87 "execute_cmd" => \
&git_execute_cmd
,
88 "available" => '(which("git") ne "") && (-d ".git")',
89 "find_signers_cmd" => "git log --no-color --since=\$email_git_since -- \$file",
90 "find_commit_signers_cmd" => "git log --no-color -1 \$commit",
91 "blame_range_cmd" => "git blame -l -L \$diff_start,+\$diff_length \$file",
92 "blame_file_cmd" => "git blame -l \$file",
93 "commit_pattern" => "^commit [0-9a-f]{40,40}",
94 "blame_commit_pattern" => "^([0-9a-f]+) "
98 "execute_cmd" => \
&hg_execute_cmd
,
99 "available" => '(which("hg") ne "") && (-d ".hg")',
100 "find_signers_cmd" =>
101 "hg log --date=\$email_hg_since" .
102 " --template='commit {node}\\n{desc}\\n' -- \$file",
103 "find_commit_signers_cmd" => "hg log --template='{desc}\\n' -r \$commit",
104 "blame_range_cmd" => "", # not supported
105 "blame_file_cmd" => "hg blame -c \$file",
106 "commit_pattern" => "^commit [0-9a-f]{40,40}",
107 "blame_commit_pattern" => "^([0-9a-f]+):"
110 if (-f
"${lk_path}.get_maintainer.conf") {
112 open(my $conffile, '<', "${lk_path}.get_maintainer.conf")
113 or warn "$P: Can't open .get_maintainer.conf: $!\n";
114 while (<$conffile>) {
117 $line =~ s/\s*\n?$//g;
121 next if ($line =~ m/^\s*#/);
122 next if ($line =~ m/^\s*$/);
124 my @words = split(" ", $line);
125 foreach my $word (@words) {
126 last if ($word =~ m/^#/);
127 push (@conf_args, $word);
131 unshift(@ARGV, @conf_args) if @conf_args;
136 'git!' => \
$email_git,
137 'git-all-signature-types!' => \
$email_git_all_signature_types,
138 'git-blame!' => \
$email_git_blame,
139 'git-chief-penguins!' => \
$email_git_penguin_chiefs,
140 'git-min-signatures=i' => \
$email_git_min_signatures,
141 'git-max-maintainers=i' => \
$email_git_max_maintainers,
142 'git-min-percent=i' => \
$email_git_min_percent,
143 'git-since=s' => \
$email_git_since,
144 'hg-since=s' => \
$email_hg_since,
145 'remove-duplicates!' => \
$email_remove_duplicates,
146 'm!' => \
$email_maintainer,
147 'n!' => \
$email_usename,
148 'l!' => \
$email_list,
149 's!' => \
$email_subscriber_list,
150 'multiline!' => \
$output_multiline,
151 'roles!' => \
$output_roles,
152 'rolestats!' => \
$output_rolestats,
153 'separator=s' => \
$output_separator,
154 'subsystem!' => \
$subsystem,
155 'status!' => \
$status,
158 'pattern-depth=i' => \
$pattern_depth,
159 'k|keywords!' => \
$keywords,
160 'sections!' => \
$sections,
161 'fe|file-emails!' => \
$file_emails,
162 'f|file' => \
$from_filename,
163 'v|version' => \
$version,
164 'h|help|usage' => \
$help,
166 die "$P: invalid argument - use --help if necessary\n";
175 print("${P} ${V}\n");
179 if (-t STDIN
&& !@ARGV) {
180 # We're talking to a terminal, but have no command line arguments.
181 die "$P: missing patchfile or -f file - use --help if necessary\n";
184 if ($output_separator ne ", ") {
185 $output_multiline = 0;
188 if ($output_rolestats) {
201 my $selections = $email + $scm + $status + $subsystem + $web;
202 if ($selections == 0) {
203 die "$P: Missing required option: email, scm, status, subsystem or web\n";
208 ($email_maintainer + $email_list + $email_subscriber_list +
209 $email_git + $email_git_penguin_chiefs + $email_git_blame) == 0) {
210 die "$P: Please select at least 1 email option\n";
213 if (!top_of_kernel_tree
($lk_path)) {
214 die "$P: The current directory does not appear to be "
215 . "a linux kernel source tree.\n";
218 if ($email_git_all_signature_types) {
219 $signaturePattern = "(.+?)[Bb][Yy]:";
222 ## Read MAINTAINERS for type/value pairs
227 open (my $maint, '<', "${lk_path}MAINTAINERS")
228 or die "$P: Can't open MAINTAINERS: $!\n";
232 if ($line =~ m/^(\C):\s*(.*)/) {
236 ##Filename pattern matching
237 if ($type eq "F" || $type eq "X") {
238 $value =~ s@\
.@
\\\
.@g; ##Convert . to \.
239 $value =~ s/\*/\.\*/g; ##Convert * to .*
240 $value =~ s/\?/\./g; ##Convert ? to .
241 ##if pattern is a directory and it lacks a trailing slash, add one
243 $value =~ s@
([^/])$@$1/@
;
245 } elsif ($type eq "K") {
246 $keyword_hash{@typevalue} = $value;
248 push(@typevalue, "$type:$value");
249 } elsif (!/^(\s)*$/) {
251 push(@typevalue, $line);
258 if ($email_remove_duplicates) {
259 open(my $mailmap, '<', "${lk_path}.mailmap")
260 or warn "$P: Can't open .mailmap: $!\n";
264 next if ($line =~ m/^\s*#/);
265 next if ($line =~ m/^\s*$/);
267 my ($name, $address) = parse_email
($line);
268 $line = format_email
($name, $address, $email_usename);
270 next if ($line =~ m/^\s*$/);
272 if (exists($mailmap{$name})) {
273 my $obj = $mailmap{$name};
274 push(@
$obj, $address);
276 my @arr = ($address);
277 $mailmap{$name} = \
@arr;
283 ## use the filenames on the command line or find the filenames in the patchfiles
287 my @keyword_tvi = ();
288 my @file_emails = ();
291 push(@ARGV, "&STDIN");
294 foreach my $file (@ARGV) {
295 if ($file ne "&STDIN") {
296 ##if $file is a directory and it lacks a trailing slash, add one
298 $file =~ s@
([^/])$@$1/@
;
299 } elsif (!(-f
$file)) {
300 die "$P: file '${file}' not found\n";
303 if ($from_filename) {
305 if (-f
$file && ($keywords || $file_emails)) {
306 open(my $f, '<', $file)
307 or die "$P: Can't open $file: $!\n";
308 my $text = do { local($/) ; <$f> };
311 foreach my $line (keys %keyword_hash) {
312 if ($text =~ m/$keyword_hash{$line}/x) {
313 push(@keyword_tvi, $line);
318 my @poss_addr = $text =~ m
$[A
-Za
-zÀ
-ÿ
\"\' \
,\
.\
+-]*\s
*[\
,]*\s
*[\
(\
<\
{]{0,1}[A
-Za
-z0
-9_\
.\
+-]+\@
[A
-Za
-z0
-9\
.-]+\
.[A
-Za
-z0
-9]+[\
)\
>\
}]{0,1}$g;
319 push(@file_emails, clean_file_emails
(@poss_addr));
323 my $file_cnt = @files;
326 open(my $patch, "< $file")
327 or die "$P: Can't open $file: $!\n";
330 if (m/^\+\+\+\s+(\S+)/) {
332 $filename =~ s@
^[^/]*/@@
;
334 $lastfile = $filename;
335 push(@files, $filename);
336 } elsif (m/^\@\@ -(\d+),(\d+)/) {
337 if ($email_git_blame) {
338 push(@range, "$lastfile:$1:$2");
340 } elsif ($keywords) {
341 foreach my $line (keys %keyword_hash) {
342 if ($patch_line =~ m/^[+-].*$keyword_hash{$line}/x) {
343 push(@keyword_tvi, $line);
350 if ($file_cnt == @files) {
351 warn "$P: file '${file}' doesn't appear to be a patch. "
352 . "Add -f to options?\n";
354 @files = sort_and_uniq
(@files);
358 @file_emails = uniq
(@file_emails);
367 # Find responsible parties
369 foreach my $file (@files) {
372 my $tvi = find_first_section
();
373 while ($tvi < @typevalue) {
374 my $start = find_starting_index
($tvi);
375 my $end = find_ending_index
($tvi);
379 #Do not match excluded file patterns
381 for ($i = $start; $i < $end; $i++) {
382 my $line = $typevalue[$i];
383 if ($line =~ m/^(\C):\s*(.*)/) {
387 if (file_match_pattern
($file, $value)) {
396 for ($i = $start; $i < $end; $i++) {
397 my $line = $typevalue[$i];
398 if ($line =~ m/^(\C):\s*(.*)/) {
402 if (file_match_pattern
($file, $value)) {
403 my $value_pd = ($value =~ tr@
/@@
);
404 my $file_pd = ($file =~ tr@
/@@
);
405 $value_pd++ if (substr($value,-1,1) ne "/");
406 if ($pattern_depth == 0 ||
407 (($file_pd - $value_pd) < $pattern_depth)) {
408 $hash{$tvi} = $value_pd;
419 foreach my $line (sort {$hash{$b} <=> $hash{$a}} keys %hash) {
420 add_categories
($line);
423 my $start = find_starting_index
($line);
424 my $end = find_ending_index
($line);
425 for ($i = $start; $i < $end; $i++) {
426 my $line = $typevalue[$i];
427 if ($line =~ /^[FX]:/) { ##Restore file patterns
428 $line =~ s/([^\\])\.([^\*])/$1\?$2/g;
429 $line =~ s/([^\\])\.$/$1\?/g; ##Convert . back to ?
430 $line =~ s/\\\./\./g; ##Convert \. to .
431 $line =~ s/\.\*/\*/g; ##Convert .* to *
433 $line =~ s/^([A-Z]):/$1:\t/g;
440 if ($email && $email_git) {
441 vcs_file_signoffs
($file);
444 if ($email && $email_git_blame) {
445 vcs_file_blame
($file);
450 @keyword_tvi = sort_and_uniq
(@keyword_tvi);
451 foreach my $line (@keyword_tvi) {
452 add_categories
($line);
457 foreach my $chief (@penguin_chief) {
458 if ($chief =~ m/^(.*):(.*)/) {
461 $email_address = format_email
($1, $2, $email_usename);
462 if ($email_git_penguin_chiefs) {
463 push(@email_to, [$email_address, 'chief penguin']);
465 @email_to = grep($_->[0] !~ /${email_address}/, @email_to);
470 foreach my $email (@file_emails) {
471 my ($name, $address) = parse_email
($email);
473 my $tmp_email = format_email
($name, $address, $email_usename);
474 push_email_address
($tmp_email, '');
475 add_role
($tmp_email, 'in file');
479 if ($email || $email_list) {
482 @to = (@to, @email_to);
485 @to = (@to, @list_to);
487 output
(merge_email
(@to));
496 @status = uniq
(@status);
501 @subsystem = uniq
(@subsystem);
512 sub file_match_pattern
{
513 my ($file, $pattern) = @_;
514 if (substr($pattern, -1) eq "/") {
515 if ($file =~ m@
^$pattern@
) {
519 if ($file =~ m@
^$pattern@
) {
520 my $s1 = ($file =~ tr@
/@@
);
521 my $s2 = ($pattern =~ tr@
/@@
);
532 usage: $P [options] patchfile
533 $P [options] -f file|directory
536 MAINTAINER field selection options:
537 --email => print email address(es) if any
538 --git => include recent git \*-by: signers
539 --git-all-signature-types => include signers regardless of signature type
540 or use only ${signaturePattern} signers (default: $email_git_all_signature_types)
541 --git-chief-penguins => include ${penguin_chiefs}
542 --git-min-signatures => number of signatures required (default: $email_git_min_signatures)
543 --git-max-maintainers => maximum maintainers to add (default: $email_git_max_maintainers)
544 --git-min-percent => minimum percentage of commits required (default: $email_git_min_percent)
545 --git-blame => use git blame to find modified commits for patch or file
546 --git-since => git history to use (default: $email_git_since)
547 --hg-since => hg history to use (default: $email_hg_since)
548 --m => include maintainer(s) if any
549 --n => include name 'Full Name <addr\@domain.tld>'
550 --l => include list(s) if any
551 --s => include subscriber only list(s) if any
552 --remove-duplicates => minimize duplicate email names/addresses
553 --roles => show roles (status:subsystem, git-signer, list, etc...)
554 --rolestats => show roles and statistics (commits/total_commits, %)
555 --file-emails => add email addresses found in -f file (default: 0 (off))
556 --scm => print SCM tree(s) if any
557 --status => print status if any
558 --subsystem => print subsystem name if any
559 --web => print website(s) if any
562 --separator [, ] => separator for multiple entries on 1 line
563 using --separator also sets --nomultiline if --separator is not [, ]
564 --multiline => print 1 entry per line
567 --pattern-depth => Number of pattern directory traversals (default: 0 (all))
568 --keywords => scan patch for keywords (default: 1 (on))
569 --sections => print the entire subsystem sections with pattern matches
570 --version => show version
571 --help => show this help information
574 [--email --git --m --n --l --multiline --pattern-depth=0 --remove-duplicates]
577 Using "-f directory" may give unexpected results:
578 Used with "--git", git signators for _all_ files in and below
579 directory are examined as git recurses directories.
580 Any specified X: (exclude) pattern matches are _not_ ignored.
581 Used with "--nogit", directory is used as a pattern match,
582 no individual file within the directory or subdirectory
584 Used with "--git-blame", does not iterate all files in directory
585 Using "--git-blame" is slow and may add old committers and authors
586 that are no longer active maintainers to the output.
587 Using "--roles" or "--rolestats" with git send-email --cc-cmd or any
588 other automated tools that expect only ["name"] <email address>
589 may not work because of additional output after <email address>.
590 Using "--rolestats" and "--git-blame" shows the #/total=% commits,
591 not the percentage of the entire file authored. # of commits is
592 not a good measure of amount of code authored. 1 major commit may
593 contain a thousand lines, 5 trivial commits may modify a single line.
594 If git is not installed, but mercurial (hg) is installed and an .hg
595 repository exists, the following options apply to mercurial:
597 --git-min-signatures, --git-max-maintainers, --git-min-percent, and
599 Use --hg-since not --git-since to control date selection
600 File ".get_maintainer.conf", if it exists in the linux kernel source root
601 directory, can change whatever get_maintainer defaults are desired.
602 Entries in this file can be any command line argument.
603 This file is prepended to any additional command line arguments.
604 Multiple lines and # comments are allowed.
608 sub top_of_kernel_tree
{
611 if ($lk_path ne "" && substr($lk_path,length($lk_path)-1,1) ne "/") {
614 if ( (-f
"${lk_path}COPYING")
615 && (-f
"${lk_path}CREDITS")
616 && (-f
"${lk_path}Kbuild")
617 && (-f
"${lk_path}MAINTAINERS")
618 && (-f
"${lk_path}Makefile")
619 && (-f
"${lk_path}README")
620 && (-d
"${lk_path}Documentation")
621 && (-d
"${lk_path}arch")
622 && (-d
"${lk_path}include")
623 && (-d
"${lk_path}drivers")
624 && (-d
"${lk_path}fs")
625 && (-d
"${lk_path}init")
626 && (-d
"${lk_path}ipc")
627 && (-d
"${lk_path}kernel")
628 && (-d
"${lk_path}lib")
629 && (-d
"${lk_path}scripts")) {
636 my ($formatted_email) = @_;
641 if ($formatted_email =~ /^([^<]+)<(.+\@.*)>.*$/) {
644 } elsif ($formatted_email =~ /^\s*<(.+\@\S*)>.*$/) {
646 } elsif ($formatted_email =~ /^(.+\@\S*).*$/) {
650 $name =~ s/^\s+|\s+$//g;
651 $name =~ s/^\"|\"$//g;
652 $address =~ s/^\s+|\s+$//g;
654 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
655 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
659 return ($name, $address);
663 my ($name, $address, $usename) = @_;
667 $name =~ s/^\s+|\s+$//g;
668 $name =~ s/^\"|\"$//g;
669 $address =~ s/^\s+|\s+$//g;
671 if ($name =~ /[^\w \-]/i) { ##has "must quote" chars
672 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
678 $formatted_email = "$address";
680 $formatted_email = "$name <$address>";
683 $formatted_email = $address;
686 return $formatted_email;
689 sub find_first_section
{
692 while ($index < @typevalue) {
693 my $tv = $typevalue[$index];
694 if (($tv =~ m/^(\C):\s*(.*)/)) {
703 sub find_starting_index
{
707 my $tv = $typevalue[$index];
708 if (!($tv =~ m/^(\C):\s*(.*)/)) {
717 sub find_ending_index
{
720 while ($index < @typevalue) {
721 my $tv = $typevalue[$index];
722 if (!($tv =~ m/^(\C):\s*(.*)/)) {
731 sub get_maintainer_role
{
735 my $start = find_starting_index
($index);
736 my $end = find_ending_index
($index);
739 my $subsystem = $typevalue[$start];
740 if (length($subsystem) > 20) {
741 $subsystem = substr($subsystem, 0, 17);
742 $subsystem =~ s/\s*$//;
743 $subsystem = $subsystem . "...";
746 for ($i = $start + 1; $i < $end; $i++) {
747 my $tv = $typevalue[$i];
748 if ($tv =~ m/^(\C):\s*(.*)/) {
758 if ($role eq "supported") {
760 } elsif ($role eq "maintained") {
761 $role = "maintainer";
762 } elsif ($role eq "odd fixes") {
764 } elsif ($role eq "orphan") {
765 $role = "orphan minder";
766 } elsif ($role eq "obsolete") {
767 $role = "obsolete minder";
768 } elsif ($role eq "buried alive in reporters") {
769 $role = "chief penguin";
772 return $role . ":" . $subsystem;
779 my $start = find_starting_index
($index);
780 my $end = find_ending_index
($index);
782 my $subsystem = $typevalue[$start];
783 if (length($subsystem) > 20) {
784 $subsystem = substr($subsystem, 0, 17);
785 $subsystem =~ s/\s*$//;
786 $subsystem = $subsystem . "...";
789 if ($subsystem eq "THE REST") {
800 my $start = find_starting_index
($index);
801 my $end = find_ending_index
($index);
803 push(@subsystem, $typevalue[$start]);
805 for ($i = $start + 1; $i < $end; $i++) {
806 my $tv = $typevalue[$i];
807 if ($tv =~ m/^(\C):\s*(.*)/) {
811 my $list_address = $pvalue;
812 my $list_additional = "";
813 my $list_role = get_list_role
($i);
815 if ($list_role ne "") {
816 $list_role = ":" . $list_role;
818 if ($list_address =~ m/([^\s]+)\s+(.*)$/) {
820 $list_additional = $2;
822 if ($list_additional =~ m/subscribers-only/) {
823 if ($email_subscriber_list) {
824 push(@list_to, [$list_address, "subscriber list${list_role}"]);
828 push(@list_to, [$list_address, "open list${list_role}"]);
831 } elsif ($ptype eq "M") {
832 my ($name, $address) = parse_email
($pvalue);
835 my $tv = $typevalue[$i - 1];
836 if ($tv =~ m/^(\C):\s*(.*)/) {
839 $pvalue = format_email
($name, $address, $email_usename);
844 if ($email_maintainer) {
845 my $role = get_maintainer_role
($i);
846 push_email_addresses
($pvalue, $role);
848 } elsif ($ptype eq "T") {
850 } elsif ($ptype eq "W") {
852 } elsif ($ptype eq "S") {
853 push(@status, $pvalue);
860 my %email_hash_address;
863 my ($name, $address) = @_;
865 return 1 if (($name eq "") && ($address eq ""));
866 return 1 if (($name ne "") && exists($email_hash_name{$name}));
867 return 1 if (($address ne "") && exists($email_hash_address{$address}));
872 sub push_email_address
{
873 my ($line, $role) = @_;
875 my ($name, $address) = parse_email
($line);
877 if ($address eq "") {
881 if (!$email_remove_duplicates) {
882 push(@email_to, [format_email
($name, $address, $email_usename), $role]);
883 } elsif (!email_inuse
($name, $address)) {
884 push(@email_to, [format_email
($name, $address, $email_usename), $role]);
885 $email_hash_name{$name}++;
886 $email_hash_address{$address}++;
892 sub push_email_addresses
{
893 my ($address, $role) = @_;
895 my @address_list = ();
897 if (rfc822_valid
($address)) {
898 push_email_address
($address, $role);
899 } elsif (@address_list = rfc822_validlist
($address)) {
900 my $array_count = shift(@address_list);
901 while (my $entry = shift(@address_list)) {
902 push_email_address
($entry, $role);
905 if (!push_email_address
($address, $role)) {
906 warn("Invalid MAINTAINERS address: '" . $address . "'\n");
912 my ($line, $role) = @_;
914 my ($name, $address) = parse_email
($line);
915 my $email = format_email
($name, $address, $email_usename);
917 foreach my $entry (@email_to) {
918 if ($email_remove_duplicates) {
919 my ($entry_name, $entry_address) = parse_email
($entry->[0]);
920 if (($name eq $entry_name || $address eq $entry_address)
921 && ($role eq "" || !($entry->[1] =~ m/$role/))
923 if ($entry->[1] eq "") {
924 $entry->[1] = "$role";
926 $entry->[1] = "$entry->[1],$role";
930 if ($email eq $entry->[0]
931 && ($role eq "" || !($entry->[1] =~ m/$role/))
933 if ($entry->[1] eq "") {
934 $entry->[1] = "$role";
936 $entry->[1] = "$entry->[1],$role";
946 foreach my $path (split(/:/, $ENV{PATH
})) {
947 if (-e
"$path/$bin") {
959 foreach my $line (@lines) {
960 my ($name, $address) = parse_email
($line);
961 if (!exists($hash{$name})) {
962 $hash{$name} = $address;
963 } elsif ($address ne $hash{$name}) {
964 $address = $hash{$name};
965 $line = format_email
($name, $address, $email_usename);
967 if (exists($mailmap{$name})) {
968 my $obj = $mailmap{$name};
969 foreach my $map_address (@
$obj) {
970 if (($map_address eq $address) &&
971 ($map_address ne $hash{$name})) {
972 $line = format_email
($name, $hash{$name}, $email_usename);
981 sub git_execute_cmd
{
986 $output =~ s/^\s*//gm;
987 @lines = split("\n", $output);
997 @lines = split("\n", $output);
1002 sub vcs_find_signers
{
1007 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1009 my $pattern = $VCS_cmds{"commit_pattern"};
1011 $commits = grep(/$pattern/, @lines); # of commits
1013 @lines = grep(/^[ \t]*${signaturePattern}.*\@.*$/, @lines);
1014 if (!$email_git_penguin_chiefs) {
1015 @lines = grep(!/${penguin_chiefs}/i, @lines);
1018 s/.*:\s*(.+)\s*/$1/ for (@lines);
1020 ## Reformat email addresses (with names) to avoid badly written signatures
1022 foreach my $line (@lines) {
1023 my ($name, $address) = parse_email
($line);
1024 $line = format_email
($name, $address, 1);
1027 return ($commits, @lines);
1030 sub vcs_save_commits
{
1035 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1037 foreach my $line (@lines) {
1038 if ($line =~ m/$VCS_cmds{"blame_commit_pattern"}/) {
1051 return @commits if (!(-f
$file));
1053 if (@range && $VCS_cmds{"blame_range_cmd"} eq "") {
1054 my @all_commits = ();
1056 $cmd = $VCS_cmds{"blame_file_cmd"};
1057 $cmd =~ s/(\$\w+)/$1/eeg; #interpolate $cmd
1058 @all_commits = vcs_save_commits
($cmd);
1060 foreach my $file_range_diff (@range) {
1061 next if (!($file_range_diff =~ m/(.+):(.+):(.+)/));
1063 my $diff_start = $2;
1064 my $diff_length = $3;
1065 next if ("$file" ne "$diff_file");
1066 for (my $i = $diff_start; $i < $diff_start + $diff_length; $i++) {
1067 push(@commits, $all_commits[$i]);
1071 foreach my $file_range_diff (@range) {
1072 next if (!($file_range_diff =~ m/(.+):(.+):(.+)/));
1074 my $diff_start = $2;
1075 my $diff_length = $3;
1076 next if ("$file" ne "$diff_file");
1077 $cmd = $VCS_cmds{"blame_range_cmd"};
1078 $cmd =~ s/(\$\w+)/$1/eeg; #interpolate $cmd
1079 push(@commits, vcs_save_commits
($cmd));
1082 $cmd = $VCS_cmds{"blame_file_cmd"};
1083 $cmd =~ s/(\$\w+)/$1/eeg; #interpolate $cmd
1084 @commits = vcs_save_commits
($cmd);
1090 my $printed_novcs = 0;
1092 %VCS_cmds = %VCS_cmds_git;
1093 return 1 if eval $VCS_cmds{"available"};
1094 %VCS_cmds = %VCS_cmds_hg;
1095 return 1 if eval $VCS_cmds{"available"};
1097 if (!$printed_novcs) {
1098 warn("$P: No supported VCS found. Add --nogit to options?\n");
1099 warn("Using a git repository produces better results.\n");
1100 warn("Try Linus Torvalds' latest git repository using:\n");
1101 warn("git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git\n");
1108 my ($role, $divisor, @lines) = @_;
1113 return if (@lines <= 0);
1115 if ($divisor <= 0) {
1116 warn("Bad divisor in " . (caller(0))[3] . ": $divisor\n");
1120 if ($email_remove_duplicates) {
1121 @lines = mailmap
(@lines);
1124 @lines = sort(@lines);
1127 $hash{$_}++ for @lines;
1130 foreach my $line (sort {$hash{$b} <=> $hash{$a}} keys %hash) {
1131 my $sign_offs = $hash{$line};
1132 my $percent = $sign_offs * 100 / $divisor;
1134 $percent = 100 if ($percent > 100);
1136 last if ($sign_offs < $email_git_min_signatures ||
1137 $count > $email_git_max_maintainers ||
1138 $percent < $email_git_min_percent);
1139 push_email_address
($line, '');
1140 if ($output_rolestats) {
1141 my $fmt_percent = sprintf("%.0f", $percent);
1142 add_role
($line, "$role:$sign_offs/$divisor=$fmt_percent%");
1144 add_role
($line, $role);
1149 sub vcs_file_signoffs
{
1155 return if (!vcs_exists
());
1157 my $cmd = $VCS_cmds{"find_signers_cmd"};
1158 $cmd =~ s/(\$\w+)/$1/eeg; # interpolate $cmd
1160 ($commits, @signers) = vcs_find_signers
($cmd);
1161 vcs_assign
("commit_signer", $commits, @signers);
1164 sub vcs_file_blame
{
1171 return if (!vcs_exists
());
1173 @commits = vcs_blame
($file);
1174 @commits = uniq
(@commits);
1175 $total_commits = @commits;
1177 foreach my $commit (@commits) {
1179 my @commit_signers = ();
1181 my $cmd = $VCS_cmds{"find_commit_signers_cmd"};
1182 $cmd =~ s/(\$\w+)/$1/eeg; #interpolate $cmd
1184 ($commit_count, @commit_signers) = vcs_find_signers
($cmd);
1185 push(@signers, @commit_signers);
1188 if ($from_filename) {
1189 vcs_assign
("commits", $total_commits, @signers);
1191 vcs_assign
("modified commits", $total_commits, @signers);
1199 @parms = grep(!$saw{$_}++, @parms);
1207 @parms = sort @parms;
1208 @parms = grep(!$saw{$_}++, @parms);
1212 sub clean_file_emails
{
1213 my (@file_emails) = @_;
1214 my @fmt_emails = ();
1216 foreach my $email (@file_emails) {
1217 $email =~ s/[\(\<\{]{0,1}([A-Za-z0-9_\.\+-]+\@[A-Za-z0-9\.-]+)[\)\>\}]{0,1}/\<$1\>/g;
1218 my ($name, $address) = parse_email
($email);
1219 if ($name eq '"[,\.]"') {
1223 my @nw = split(/[^A-Za-zÀ-ÿ\'\,\.\+-]/, $name);
1225 my $first = $nw[@nw - 3];
1226 my $middle = $nw[@nw - 2];
1227 my $last = $nw[@nw - 1];
1229 if (((length($first) == 1 && $first =~ m/[A-Za-z]/) ||
1230 (length($first) == 2 && substr($first, -1) eq ".")) ||
1231 (length($middle) == 1 ||
1232 (length($middle) == 2 && substr($middle, -1) eq "."))) {
1233 $name = "$first $middle $last";
1235 $name = "$middle $last";
1239 if (substr($name, -1) =~ /[,\.]/) {
1240 $name = substr($name, 0, length($name) - 1);
1241 } elsif (substr($name, -2) =~ /[,\.]"/) {
1242 $name = substr($name, 0, length($name) - 2) . '"';
1245 if (substr($name, 0, 1) =~ /[,\.]/) {
1246 $name = substr($name, 1, length($name) - 1);
1247 } elsif (substr($name, 0, 2) =~ /"[,\.]/) {
1248 $name = '"' . substr($name, 2, length($name) - 2);
1251 my $fmt_email = format_email
($name, $address, $email_usename);
1252 push(@fmt_emails, $fmt_email);
1262 my ($address, $role) = @
$_;
1263 if (!$saw{$address}) {
1264 if ($output_roles) {
1265 push(@lines, "$address ($role)");
1267 push(@lines, $address);
1279 if ($output_multiline) {
1280 foreach my $line (@parms) {
1284 print(join($output_separator, @parms));
1292 # Basic lexical tokens are specials, domain_literal, quoted_string, atom, and
1293 # comment. We must allow for rfc822_lwsp (or comments) after each of these.
1294 # This regexp will only work on addresses which have had comments stripped
1295 # and replaced with rfc822_lwsp.
1297 my $specials = '()<>@,;:\\\\".\\[\\]';
1298 my $controls = '\\000-\\037\\177';
1300 my $dtext = "[^\\[\\]\\r\\\\]";
1301 my $domain_literal = "\\[(?:$dtext|\\\\.)*\\]$rfc822_lwsp*";
1303 my $quoted_string = "\"(?:[^\\\"\\r\\\\]|\\\\.|$rfc822_lwsp)*\"$rfc822_lwsp*";
1305 # Use zero-width assertion to spot the limit of an atom. A simple
1306 # $rfc822_lwsp* causes the regexp engine to hang occasionally.
1307 my $atom = "[^$specials $controls]+(?:$rfc822_lwsp+|\\Z|(?=[\\[\"$specials]))";
1308 my $word = "(?:$atom|$quoted_string)";
1309 my $localpart = "$word(?:\\.$rfc822_lwsp*$word)*";
1311 my $sub_domain = "(?:$atom|$domain_literal)";
1312 my $domain = "$sub_domain(?:\\.$rfc822_lwsp*$sub_domain)*";
1314 my $addr_spec = "$localpart\@$rfc822_lwsp*$domain";
1316 my $phrase = "$word*";
1317 my $route = "(?:\@$domain(?:,\@$rfc822_lwsp*$domain)*:$rfc822_lwsp*)";
1318 my $route_addr = "\\<$rfc822_lwsp*$route?$addr_spec\\>$rfc822_lwsp*";
1319 my $mailbox = "(?:$addr_spec|$phrase$route_addr)";
1321 my $group = "$phrase:$rfc822_lwsp*(?:$mailbox(?:,\\s*$mailbox)*)?;\\s*";
1322 my $address = "(?:$mailbox|$group)";
1324 return "$rfc822_lwsp*$address";
1327 sub rfc822_strip_comments
{
1329 # Recursively remove comments, and replace with a single space. The simpler
1330 # regexps in the Email Addressing FAQ are imperfect - they will miss escaped
1331 # chars in atoms, for example.
1333 while ($s =~ s
/^((?
:[^"\\]|\\.)*
1334 (?:"(?
:[^"\\]|\\.)*"(?
:[^"\\]|\\.)*)*)
1335 \((?:[^()\\]|\\.)*\)/$1 /osx) {}
1339 # valid: returns true if the parameter is an RFC822 valid address
1342 my $s = rfc822_strip_comments(shift);
1345 $rfc822re = make_rfc822re();
1348 return $s =~ m/^$rfc822re$/so && $s =~ m/^$rfc822_char*$/;
1351 # validlist: In scalar context, returns true if the parameter is an RFC822
1352 # valid list of addresses.
1354 # In list context, returns an empty list on failure (an invalid
1355 # address was found); otherwise a list whose first element is the
1356 # number of addresses found and whose remaining elements are the
1357 # addresses. This is needed to disambiguate failure (invalid)
1358 # from success with no addresses found, because an empty string is
1361 sub rfc822_validlist {
1362 my $s = rfc822_strip_comments(shift);
1365 $rfc822re = make_rfc822re();
1367 # * null list items are valid according to the RFC
1368 # * the '1' business is to aid in distinguishing failure from no results
1371 if ($s =~ m/^(?:$rfc822re)?(?:,(?:$rfc822re)?)*$/so &&
1372 $s =~ m/^$rfc822_char*$/) {
1373 while ($s =~ m/(?:^|,$rfc822_lwsp*)($rfc822re)/gos) {
1376 return wantarray ? (scalar(@r), @r) : 1;
1378 return wantarray ? () : 0;