3 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004,
4 # 2005, 2006 Free Software Foundation, Inc.
6 # This file is part of GNU Emacs.
8 # GNU Emacs is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2, or (at your option)
13 # GNU Emacs is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with GNU Emacs; see the file COPYING. If not, write to the
20 # Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 # Boston, MA 02110-1301, USA.
24 # Extract entries from ChangeLogs matching specified criteria.
25 # Optionally format the resulting output to a form suitable for RCS
26 # logs, like they are used in Emacs, for example. In this format,
27 # author lines, leading spaces, and file names are removed.
32 # Parse command line options.
34 use vars
qw($author $regexp $exclude $from_date $to_date
35 $rcs_log $with_date $version $help $reverse
39 my $result = GetOptions ("author=s" => \$author,
41 "exclude=s" => \$exclude,
42 "from-date=s" => \$from_date,
43 "to-date=s" => \$to_date,
44 "rcs-log" => \$rcs_log,
45 "with-date" => \$with_date,
46 "reverse!" => \$reverse,
47 "version" => \$version,
50 # If date options are specified, check that they have the format
53 $result = 0 if $from_date && $from_date !~ /^\d\d\d\d-\d\d-\d\d$/;
54 $result = 0 if $to_date && $to_date !~ /^\d\d\d\d-\d\d-\d\d$/;
56 # Print usage information and exit when necessary.
58 if ($result == 0 || $help) {
61 Usage: $0 [options] [CHANGELOG...]
63 Print entries in ChangeLogs matching various criteria.
66 --author=AUTHOR Match entries whose author line matches
67 regular expression AUTHOR
68 --text=TEXT Match entries whose text matches regular
70 --exclude=TEXT Exclude entries matching TEXT
71 --from-date=YYYY-MM-DD Match entries not older than given date
72 --to-date=YYYY-MM-DD Match entries not younger than given date
73 --rcs-log Format output suitable for RCS log entries
74 --with-date Print short date line in RCS log
75 --reverse Show entries in reverse (chronological) order
76 --version Print version info
77 --help Print this help
79 If no CHANGELOG is specified scan the files "ChangeLog" and
80 "ChangeLog.1+" in the current directory. Old-style dates in ChangeLogs
86 # Print version info and exit if `--version' was specified.
94 # Value is non-zero if HEADER matches according to command line
95 # options specified, i.e. it matches $author, and its date is in
96 # the range $from_date <= date <= $to_date.
101 return 0 unless $header;
103 # No match if AUTHOR-regexp specified and doesn't match.
104 return 0 if $author && $header !~ /$author/;
106 # Check that the date of the entry matches if date options
107 # `--from-date' and/or `--to-date' were specified . Old-style
108 # dates in ChangeLogs are not recognized, and never match.
109 if ($from_date || $to_date) {
110 if ($header =~ /^(\d\d\d\d-\d\d-\d\d)/) {
112 return 0 if $from_date && $date lt $from_date;
113 return 0 if $to_date && $date gt $to_date;
115 # Don't bother recognizing old-style dates.
124 # Value is non-zero if ENTRY matches the criteria specified on the
125 # command line, i.e. it matches $regexp, and it doesn't match
131 return 0 unless $entry;
134 return 1 if ($entry =~ /$regexp/
135 && (!$exclude || $entry !~ $exclude));
137 return 1 if !$exclude || $entry !~ $exclude;
144 # Print HEADER and/or ENTRY in a format suitable for what was
145 # specified on the command line. If $rcs_log is specified, author
146 # lines are not printed, and leading spaces and file names are removed
147 # from ChangeLog entries.
150 my ($header, $entry) = @_;
154 # Remove leading whitespace from entry.
155 $entry =~ s/^\s+//mg;
156 # Remove file name parts.
157 $entry =~ s/^\*.*\(/(/mg;
158 # Remove file name parts, 2.
159 $entry =~ s/^\*.*://mg;
161 $header =~ /(\d\d\d\d-\d\d-\d\d)/;
162 $output = "!changelog-date $1\n";
166 $output .= $header . $entry;
170 push @entries, $output;
176 # Scan LOG for matching entries, and print them to standard output.
178 sub parse_changelog
{
183 @entries = () if $reverse;
185 # Open the ChangeLog.
186 open (IN
, "< $log") || die "Cannot open $log: $!";
188 while (defined(my $line = <IN
>)) {
189 if ($line =~ /^\S/) {
190 # Line is an author-line. Print previous entry if
192 print_log
($header, $entry)
193 if header_match_p
($header) && entry_match_p
($entry);
198 # Add empty lines below the header.
199 while (defined($line = <IN
>) && $line =~ /^\s*$/) {
200 $header = "$header$line";
204 last unless defined $line;
206 if ($line =~ /^\s*\*/) {
207 # LINE is the first line of a ChangeLog entry. Print
208 # previous entry if it matches.
209 print_log
($header, $entry)
210 if header_match_p
($header) && entry_match_p
($entry);
213 # Add LINE to the current entry.
214 $entry = "$entry$line";
218 # Print last entry if it matches.
219 print_log
($header, $entry)
220 if header_match_p
($header) && entry_match_p
($entry);
225 for (my $entry = @entries; $entry; $entry--) {
226 print $entries[$entry-1];
232 # Main program. Process ChangeLogs.
234 # If files were specified on the command line, parse those files in the
235 # order supplied by the user; otherwise parse default files ChangeLog and
236 # ChangeLog.1+ according to $reverse.
238 @ARGV = ("ChangeLog");
246 grep /^ChangeLog\.\d+$/, readdir D
;
249 @ARGV = reverse @ARGV if $reverse;
252 while (defined (my $log = shift @ARGV)) {
253 parse_changelog
($log) if -f
$log;
257 # arch-tag: 9e4f6749-e053-4bb7-b3ad-11947318418e
258 # grep-changelog ends here.