summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/splitindex/splitindex.tex
blob: 3d22e33cfc9aee320519040941867529b8775190 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
% ======================================================================
% splitindex.tex
% Copyright (c) Markus Kohm, 2002-2009
%
% $Id: splitindex.tex 4 2016-02-18 10:13:32Z mjk $
%
% This file is part of the SplitIndex bundle.
%
% This work may be distributed and/or modified under the conditions of
% the LaTeX Project Public License, version 1.3c of the license.
% The latest version of this license is in
%   http://www.latex-project.org/lppl.txt
% and version 1.3c or later is part of all distributions of LaTeX
% version 2005/12/01 or later and of this work.
%
% This work has the LPPL maintenance status "author-maintained".
%
% The Current Maintainer and author of this work is Markus Kohm.
%
% The list of all files belongig to the SplitIndex bundle is given in
% in the file `manifest.txt'. Files generated by means of unpacking the
% distribution (using, for example, the docstrip program) or by means
% of compiling them from a source file, for example, from splitindex.c
% or splitindex.java may be distributed at the distributor's discretion.
% However if they are distributed then a copy of the SplitIndex bundle
% must be distributed together with them.
%
% The list of derived (unpacked or compiled) files belongig to the 
% distribution and covered by LPPL is defined by the unpacking scripts 
% (with extension .ins) and the installation script (with name 
% install.sh) which are part of the distribution.
%
% Two often ignorred clauses from LPPL 1.3c you should not ignore:
% ----------------------------------------------------------------
% 2. You may distribute a complete, unmodified copy of the Work as you
%    received it.  Distribution of only part of the Work is considered
%    modification of the Work, and no right to distribute such a Derived
%    Work may be assumed under the terms of this clause.
% 3. You may distribute a Compiled Work that has been generated from a
%    complete, unmodified copy of the Work as distributed under Clause 2
%    above, as long as that Compiled Work is distributed in such a way that
%    the recipients may install the Compiled Work on their system exactly
%    as it would have been installed if they generated a Compiled Work
%    directly from the Work.
% ======================================================================

% Set newlinechar
\newlinechar`\^^J

% Tell program information
\message{splitindex.tex 0.1^^J%
  Copyright (c) 2002 Markus Kohm <kohm@gmx.de>^^J^^J}

% Change \catcode of At to be a letter
\catcode`\@11\relax

% New end processing command (one of these should do the job)
\def\endprocessing{%
  \csname @@end\endcsname
  \csname end\endcsname
  \csname endinput\endcsname
}

% Check out, if we are using LaTeX or plainTeX:
\let\@earlyend\relax
\def\@tempa{LaTeX2e}
\expandafter\ifx\csname fmtname\endcsname\@tempa
\else
  \def\@tempa{plain}
  \expandafter\ifx\csname fmtname\endcsname\@tempa
    \def\newwrite{\alloc@7\write\chardef\sixt@@n}% not longer \outer
    \chardef\@inputcheck=0\relax
  \else
    \message{Unkown format \csname fmtname\endcsname^^J
      You have to use plainTeX or LaTeX2e to run
      splitindex.tex!^^J}
    \let\@earlyend\endprocessing
  \fi
\fi
\@earlyend

% Is \idx defined to the name of the raw index file?
\expandafter\ifx\csname idx\endcsname\relax
% no it isn't
  \message{Enter the name of the idx file to be processed: }%
  \advance\endlinechar\@M
  \read\m@ne to\idx
  \advance\endlinechar-\@M
\fi

% Sorry to late for log file
\def\setjobname#1.idx#2\\{\def\jobname{#1}}
\expandafter\setjobname\idx.idx\\

\let\@earlyend\relax
\openin\@inputcheck\idx %
\ifeof\@inputcheck
  \ifx\jobname\idx
    \openin\@inputcheck\jobname.idx %
    \ifeof\@inputcheck
      \message{Error: Neither file `\idx' nor file `\jobname.idx' found!^^J}%
      \let\@earlyend\endprocessing
    \else
      \xdef\idx{\jobname.idx}%
    \fi
  \else
    \message{Error: File `\idx' not found!^^J}%
    \let\@earlyend\endprocessing
  \fi
\fi
\@earlyend

\message{Read from file: \idx^^J%
  Write to files: \jobname-*.idx^^J}

% We are ready to do the processing

% First we have to do the tricky splitting of the input line.
% We do not allow lines which don't start with \indexentry.
% We do not support other index file definitions but with an
% optional argument of \indexentry.
% We need some catcode changes to read and split the line. So
% we do this part of the processing at a group.
\newtoks\verbatim@line
\begingroup
\catcode`\^^M\active

\begingroup
\catcode`\|=0
\catcode`\\=12
|gdef|splitidxline\indexentry#1{%
  |if #1[%
    |expandafter|@splitidxline%
  |else%
    |expandafter |@splitidxline |expandafter i|expandafter d%
    |expandafter x|expandafter ]|expandafter#1%
  |fi%
}
|endgroup

\gdef\@splitidxline#1]#2^^M{%
  \idxwrite{#1}{\string\indexentry#2}%
}

\gdef\processidxline{%\message{\the\verbatim@line}%
  \expandafter\splitidxline\verbatim@line^^M
}
\endgroup

% Now, we can do the main job: writing to the index files
\def\idxwrite#1#2{%
  \expandafter\ifx\csname write@#1\endcsname\relax
    % We need a new file
     \message{New index file: \jobname-#1.idx^^J}%
     \expandafter\newwrite\csname write@#1\endcsname
     \immediate\openout\csname write@#1\endcsname \jobname-#1.idx %
    % FixMe: Don't close by end TeX run but use \closeout
  \fi
  \immediate\write\csname write@#1\endcsname{#2}%
}

% Read the file verbatim and process the lines
\newif\ifnoteof
\newtoks\par@tok\par@tok{\par}
\def\@makeother#1{\catcode`#112\relax}
\def\processidxfile{
  \immediate\openin\@inputcheck \idx %
  \noteoftrue
  \loop
    \ifeof\@inputcheck \noteoffalse\fi
  \ifnoteof
    \begingroup
      \let\do\@makeother\dospecials
      \immediate\read\@inputcheck to \verbatim@line
      \if\par@tok\verbatim@line\else
        \processidxline
      \fi
    \endgroup
  \repeat
}

\processidxfile

% Trick to end processing in TeX and LaTeX
\endprocessing
%%% Local Variables: 
%%% mode: tex
%%% TeX-master: t
%%% End: