Add 2010 to copyright years.
[bpt/emacs.git] / doc / lispref / tindex.pl
CommitLineData
dfc16043
GM
1#! /usr/bin/perl
2
352c8b4a 3# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
114f9c96 4# 2008, 2009, 2010 Free Software Foundation, Inc.
352c8b4a 5
dfc16043 6# This file is part of GNU Emacs.
352c8b4a
GM
7
8# GNU Emacs is free software: you can redistribute it and/or modify
dfc16043 9# it under the terms of the GNU General Public License as published by
352c8b4a
GM
10# the Free Software Foundation, either version 3 of the License, or
11# (at your option) any later version.
12
dfc16043
GM
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.
352c8b4a 17
dfc16043 18# You should have received a copy of the GNU General Public License
352c8b4a
GM
19# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
20
dfc16043
GM
21
22require 5;
23use Getopt::Long;
24
25my $USAGE = <<ENDUSAGE;
26Remove \@tindex lines from files that were already present in previous
27versions.
28
29Usage: $0 [--old=EXT] FILE...
30 $0 --help
31 $0 --version
32
33 --help display this help and exit
34 --version print version and exit
35 --old=DIR find old files in DIR
36
37The script performs two passes. In the first pass, Texinfo files from
38DIR are scanned for \@tindex lines, and identifiers in them are
39recorded. In a second pass, Texinfo files in the current directory
40are scanned, and \@tindex lines for identifiers that were recorded in
41the first pass are removed. Old file contents are saved in files
42with extension ".orig". A list of modified files and removed \@tindex
43identifiers is printed to stdout at the end.
44ENDUSAGE
45
46sub fatal {
47 print STDERR "$0: ", @_, ".\n";
48 exit 1;
49}
50
51my $help = 0;
52my $version = 0;
53my $old;
54
177c0ea7 55my $rc = GetOptions ('help' => \$help, 'version' => \$version,
dfc16043
GM
56 'old=s' => \$old);
57if ($version) {
58 print "0.1\n";
59 exit 0;
60} elsif (!$rc || !$old || @ARGV) {
61 print $USAGE;
62 exit 1;
63} elsif ($help) {
64 print $USAGE;
65 exit 0;
66}
67
68# Fill the hash %tindex with associations VAR -> COUNT where
69# the keys VAR are identifiers mentioned in @tindex lines in the older
70# files to process and COUNT is the number of times they are seen in
71# the files.
72
73my %tindex;
74my %removed;
75my @old_files = glob "$old/*.texi";
76my @new_files = glob "*.texi";
77fatal ("No Texinfo files found in `$old'") unless @old_files;
78fatal ("No Texinfo files found in current directory") unless @new_files;
79
80print "Scanning old files for \@tindex lines\n";
81foreach $file (@old_files) {
82 open (IN, "<$file") or fatal "Cannot open $file: $!";
83 while (<IN>) {
84 ++$tindex{$1} if /^\s*\@tindex\s+(\S+)/;
85 }
86 close IN;
87}
88
177c0ea7 89# Process current files and remove those @tindex lines which we
dfc16043
GM
90# know were already present in the files scanned above.
91
92print "Removing old \@tindex lines\n";
93foreach $file (@new_files) {
94 my $modified = 0;
95 my $contents = "";
177c0ea7 96
dfc16043
GM
97 open (IN, "< $file") or fatal "Cannot open $file.orig for reading: $!";
98 while (<IN>) {
99 if (/^\s*\@tindex\s+(\S+)/ && $tindex{$1}) {
100 ++$removed{$1};
101 $modified = 1;
102 } else {
103 $contents = $contents . $_;
104 }
105 }
177c0ea7 106
dfc16043
GM
107 close IN;
108
109 if ($modified) {
110 print " $file\n";
111 system ("cp $file $file.orig") == 0 or fatal "Cannot backup $file: $!";
112 open (OUT, ">$file") or fatal "Cannot open $file for writing: $!";
113 print OUT $contents;
114 close OUT;
115 }
116}
117
118# Print a list of identifiers removed.
119
120print "Removed \@tindex commands for:\n";
121my $key;
122foreach $key (keys %removed) {
123 print " $key\n";
124}
125
ab5796a9 126# arch-tag: f8460df6-6bef-4c98-8555-e2c63a88b0fa