2 # Copyright (C) 2012 Free Software Foundation, Inc.
4 # This file is part of GCC.
6 # GCC is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3, or (at your option)
11 # GCC is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with GCC; see the file COPYING. If not, write to
18 # the Free Software Foundation, 51 Franklin Street, Fifth Floor,
19 # Boston, MA 02110-1301, USA.
21 # This script parses a .diff file generated with 'diff -up' or 'diff -cp'
22 # and writes a skeleton ChangeLog file to stdout. It does not try to be
23 # very smart when parsing function names, but it produces a reasonable
26 # Author: Diego Novillo <dnovillo@google.com> and
27 # Cary Coutant <ccoutant@google.com>
29 # Change these settings to reflect your profile.
30 $username = $ENV{'USER'};
31 $name = `finger $username | grep -o 'Name: .*'`;
32 @n = split(/: /, $name);
33 $name = @n[1]; chop($name);
34 $addr = $username . "\@my.domain.org";
35 $date = `date +%Y-%m-%d`; chop ($date);
38 $gcc_root =~ s/[^\\\/]+$/../;
42 #-----------------------------------------------------------------------------
43 # Program starts here. You should not need to edit anything below this
45 #-----------------------------------------------------------------------------
47 $prog = `basename $0`; chop ($prog);
48 print "usage: $prog file.diff\n\n";
49 print "Adds a ChangeLog template to the start of file.diff\n";
50 print "It assumes that file.diff has been created with -up or -cp.\n";
55 $dir = `dirname $diff`; chop ($dir);
56 $basename = `basename $diff`; chop ($basename);
57 $hdrline = "$date $name <$addr>";
60 return ('ChangeLog', $_[0]) if ($_[0] !~ /[\/\\]/);
64 my $clname = "$dirname/ChangeLog";
66 my $relname = substr ($_[0], length ($dirname) + 1);
67 return ($clname, $relname);
69 $dirname =~ s/[\/\\]?[^\/\\]*$//;
73 return ('Unknown ChangeLog', $_[0]);
76 sub remove_suffixes
($) {
78 $filename =~ s/^[ab]\///;
79 $filename =~ s/\.jj$//;
83 # For every file in the .diff print all the function names in ChangeLog
88 $clname = get_clname
('');
89 open (DFILE
, $diff) or die "Could not open file $diff for reading";
91 # Stop processing functions if we found a new file
92 # Remember both left and right names because one may be /dev/null.
93 if (/^[+*][+*][+*] +(\S+)/) {
94 $left = remove_suffixes
($1);
98 $right = remove_suffixes
($1);
102 # Check if the body of diff started.
103 # We should now have both left and right name,
104 # so we can decide filename.
106 if ($left && (/^\*{15}$/ || /^@@ /)) {
107 # If we have not seen any function names in the previous file (ie,
108 # $change_msg is empty), we just write out a ':' before starting the next
111 $cl_entries{$clname} .= $change_msg ?
"$change_msg" : ":\n";
114 if ($left eq $right) {
116 } elsif($left eq '/dev/null') {
118 } elsif($right eq '/dev/null') {
121 print STDERR
"Error: failed to parse diff for $left and $right\n";
124 $left = $right = undef;
125 ($clname, $relname) = get_clname
($filename);
126 $cl_entries{$clname} .= "\t* $relname";
128 $look_for_funs = $filename =~ '\.(c|cpp|C|cc|h|inc|def)$';
131 # Remember the last line in a unified diff block that might start
133 if (/^[-+ ]([a-zA-Z0-9_].*)/) {
137 # Check if file is newly added.
138 # Two patterns: for context and unified diff.
139 if (/^\*\*\* 0 \*\*\*\*/
140 || /^@@ -0,0 \+1.* @@/) {
141 $change_msg = $filename =~ /testsuite.*(?<!\.exp)$/ ?
": New test.\n" : ": New file.\n";
145 # Check if file was removed.
146 # Two patterns: for context and unified diff.
148 || /^@@ -1.* \+0,0 @@/) {
149 $change_msg = ": Remove.\n";
153 # If we find a new function, print it in brackets. Special case if
154 # this is the first function in a file.
156 # Note that we don't try too hard to find good matches. This should
157 # return a superset of the actual set of functions in the .diff file.
159 # The first two patterns work with context diff files (diff -c). The
160 # third pattern works with unified diff files (diff -u).
162 # The fourth pattern looks for the starts of functions or classes
163 # within a unified diff block.
166 && (/^\*\*\*\*\*\** ([a-zA-Z0-9_].*)/
167 || /^[\-\+\!] ([a-zA-Z0-9_]+)[ \t]*\(.*/
168 || /^@@ .* @@ ([a-zA-Z0-9_].*)/
174 # Beginning of a new function.
180 # No usable function name found.
181 } elsif (/^((class|struct|union|enum) [a-zA-Z0-9_]+)/) {
182 # Discard stuff after the class/struct/etc. tag.
184 } elsif (/([a-zA-Z0-9_][^(]*)\(/) {
185 # Discard template and function parameters.
187 1 while ($fn =~ s/<[^<>]*>//);
190 if ($fn && $seen_names{$fn} == 0) {
191 # If this is the first function in the file, we display it next
192 # to the filename, so we need an extra space before the opening
200 $change_msg .= "($fn):\n";
201 $seen_names{$fn} = 1;
208 # If we have not seen any function names (ie, $change_msg is empty), we just
209 # write out a ':'. This happens when there is only one file with no
211 $cl_entries{$clname} .= $change_msg ?
": $change_msg\n" : ":\n";
213 $temp = `mktemp /tmp/$basename.XXXXXX` || exit 1; chop ($temp);
214 open (CLFILE
, ">$temp") or die "Could not open file $temp for writing";
216 foreach my $clname (keys %cl_entries) {
217 print CLFILE
"$clname:\n\n$hdrline\n\n$cl_entries{$clname}\n";
220 # Concatenate the ChangeLog template and the original .diff file.
221 system ("cat $diff >>$temp && mv $temp $diff") == 0
222 or die "Could not add the ChangeLog entry to $diff";