summaryrefslogtreecommitdiff
path: root/macros/texinfo/texinfo/texindex/ti.twjr
blob: ca8b68db7be71d76b8bc4326e5dc19da8e86634b (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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
\input texinfo   @c -*-texinfo-*-
@c vim: filetype=texinfo tabstop=4 shiftwidth=4
@c %**start of header (This is for running Texinfo on a region.)
@setfilename texindex.info
@settitle Texindex @VERSION@: A program for sorting indices
@c %**end of header (This is for running Texinfo on a region.)

@c Merge the function and variable indexes into the concept index,
@c but without the code font; in the index entries we'll do the
@c font management ourselves.  Also merge in the chunk definition
@c and reference entries, which jrweave creates for us.
@c (Ordinarily this would be in the header, but jrweave puts the
@c defindexes later.)
@synindex fn cp
@synindex vr cp
@synindex cd cp
@synindex cr cp

@ifnottex
@ifnotdocbook
@macro ii{text}
@i{\text\}
@end macro
@end ifnotdocbook
@end ifnottex

@ifdocbook
@macro ii{text}
@inlineraw{docbook,<lineannotation>\text\</lineannotation>}
@end macro
@end ifdocbook

@copying
This @command{texindex} program (version @VERSION@, @UPDATED@) sorts the
raw index files created by @file{texinfo.tex}.  (This Texinfo source is
a literate program written using TexiWeb@tie{}Jr., not a user manual.)

Copyright @copyright{} 2014, 2015, 2016, 2017, 2018, 2019 Free Software 
Foundation, Inc.

@quotation
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see @url{https://www.gnu.org/licenses/}.
@end quotation
@end copying

@titlepage
@title Texindex
@subtitle version @VERSION@, @UPDATED@
@author Arnold D. Robbins
@author and Texinfo maintainers
@page
@vskip 0pt plus 1filll
@insertcopying
@end titlepage

@contents

@ifnottex
@node Top
@top Texindex

This file defines @command{texindex} (version @VERSION@,
@UPDATED@), an @code{awk} program that processes the raw index
files produced by the @file{texinfo.tex} file.

@end ifnottex

@menu
* Preface::                     Introductory remarks.
* Requirements::                How the program needs to work.
* High-level organization::     The overall outline.
* Processing records::          Processing each record.
* Necessary stuff::             Copyright, helper functions, i18n.
* Index::                       Combined index.

@detailmenu
* Intended audience::              Who should read this document.
* History::                        @file{texindex.awk} development history.
* Desired printed output::         What a printed index should look like.
* Texinfo indexing commands::      How to write indexing commands.
* Input form::                     The input to @file{texindex.awk}.
* Output form::                    The output from @file{texindex.awk}.
* Processing::                     Processing the data.
* Assumptions::                    Additional assumptions.
* Portability::                    Using portable @command{awk}.
* First line::                     The first line in the file.
* Initial setup::                  Set up variables and constants used
                                   throughout.
* Argument processing::            Processing command line arguments.
* Setup for each input file::      What happens at the start of each file.
* Processing each record::         Pulling apart the fields and storing data.
* Remove duplicates::              Removing duplicating entries.
* Remove leading @code{\entry}::   Remove the leading @code{\entry} command.
* Get the initial::                Get the initial for this entry.
* Set up and name fields::         Pull apart the line.
* Store the data for this line::   Store the data for later access.
* Check for more than one initial:: See if there are multiple initials.
* Splitting the record::           Split the record apart.
* End-of-file sorting and printing:: Sorting the entries for each index.
* Quicksort::                      Sorting our input.
* Multilevel comparisons::         Handling multilevel entries.
* Comparing index entries::        The heart of the sorting algorithm.
* Printing the data::              Printing the final results.
* printing top level::             Top level logic.
* printing a single entry::        Handling a single entry.
* Copyright statement::            Copyright info.
* Library functions::              From the @code{gawk} library:
                                   @file{ftrans.awk}, @code{join()}.
* Helper functions::               @code{del_array()},
                                   @code{check_split_null()}, @code{fatal()},
                                   @dots{}
* del_array::                      Clearing out an array.
* check_split_null::               Checking if @command{awk} splits on the
                                   null string.
* char_split::                     Splitting a line into individual
                                   characters.
* fatal::                          Printing fatal errors.
* is@dots{} functions::            Checking character types.
* make_regexp::                    Make a regexp to match @TeX{} control
                                   sequences.
* escape::                         Escaping backslashes for strings.
* min::                            Get the minimum of two numbers.
* I18N::                           Internationalization.
@end detailmenu
@end menu

@node Preface
@unnumbered Preface

This file defines @file{texindex.awk}, a reimplementation of the C
program @file{texindex.c}.  The purpose is to make the program more
maintainable.  As a practical benefit, it also supports correct sorting
and initials for the @samp{@{} and @samp{@}} characters in an index,
and multi-level index entries.
@cindex @{ (left brace), example index entry for
@cindex @} (right brace), example index entry for

@cindex TexiWeb Jr.@: literate programming system
@cindex Texinfo document formatting language
This is a @dfn{literate program}, written using the
@uref{https://github.com/arnoldrobbins/texiwebjr, @sc{TexiWeb Jr.@:}
literate programming system}.  The underlying documentation system is
@uref{https://www.gnu.org/software/texinfo, Texinfo}, the GNU
documentation formatting language.  A single source file produces the
runnable program, a printable document, and an online document.

@menu
* Intended audience::           Who should read this document.
* History::                     @file{texindex.awk} development history.
@end menu

@node Intended audience
@section Intended Audience

You should read this if you want to understand how @file{texindex.awk}
works.  You should be familiar with the @command{awk} programming
language.

If you are interested in array indexing, you've come to
the wrong place.  @xref{knuth}.

@c Scale figure to 4.5 inches which is good for both smallbook
@c and regular.  TeX will scale height also automatically.
@float Figure,knuth
@caption{Indexing (@url{https://xkcd.com/163/})}
@center @image{dek_idx, 5in, , Indexing}
@end float

@node History
@section Development History

This program was originally written in 2014 in order to enable
using left and right braces in index entries, and to provide a program
that would be more easily maintainable going forward than the C version.

In 2019, discussions on the Texinfo bug mailing list around adding
multi-level indexing and ``see'' and ``see also'' entries motivated
reworking the program.

@node Requirements
@chapter Requirements

The input to this program is the list of unsorted index entries produced
by @file{texinfo.tex} when a Texinfo document is processed.
This chapter presents the input to the program, the Texinfo
commands that produce that input, and the expected output from
this program.  It also presents some additional notes concerning
the requirements.

@menu
* Desired printed output::      What a printed index should look like.
* Texinfo indexing commands::   How to write indexing commands.
* Input form::                  The input to @file{texindex.awk}.
* Output form::                 The output from @file{texindex.awk}.
* Processing::                  Processing the data.
* Assumptions::                 Additional assumptions.
* Portability::                 Using portable @command{awk}.
@end menu

@node Desired printed output
@section Where We're Going

Let's first look at the kind of output desired.
A high-quality index has
several types of entries:

@table @asis
@item Single level entries
These are the most common; each entry has text and a list of one
or more page numbers.

@item Double level entries
These entries have subtopics; the top level entry may also have a
page number, or it may not.

@item Triple level entries
These entries have subtopics for the subtopics; the top level
and secondary entries may also have
page numbers, or they may not.

@item ``See @dots{}'' entries
Entries that point at other entries in the index, generally without
any subtopics. ``See'' entries do not have a page number of their own.

@item ``See also @dots{}'' entries
Entries that point at other entries, but often do have
subsequent direct page references of their own.
``See also'' entries are merged with regular entries,
their text coming after the page numbers.
@end table

Here's what they might look like when printed
(apologies in advance
for the use of a constant-width font):

@example
coffee makers . . . . . . . . . . 15         @ii{Single level entry}
       electric . . . . . . . 17, 22         @ii{Double level entry}
             blue . . . . . . . . 42         @ii{Triple level entry}
             pink . . . . . . . . 35         @ii{Another triple level entry}
@end example

The same hierarchy might appear without page numbers:

@example
coffee makers,                               @ii{Single level entry}
       electric,                             @ii{Double level entry}
             blue . . . . . . . . . . 42     @ii{Triple level entry}
             pink . . . . . . . . . . 35     @ii{Another triple level entry}
@end example

A ``See'' entry doesn't have page numbers:

@example
espresso makers, @ii{See} coffee makers
toasters, . . . . . . . . 42, @ii{See also} coffee makers
@end example

@node Texinfo indexing commands
@section Texinfo Indexing Commands

Texinfo provides a number of different commands for putting entries
into different indices.  For discussion we use the @code{@@cindex}
command in the following examples.  Of interest to @file{texindex.awk}
is the text of the one-to-three parts of an entry, and how the index
should be sorted.  Some examples:

@example
@@cindex coffee makers                                    @ii{One level}
@@cindex coffee makers @@subentry electric                 @ii{Tow levels}
@@cindex coffee makers @@subentry electric @@subentry blue  @ii{Three levels}
@end example

Here, the @code{@@subentry} separates the secondary and tertiary parts of
the entry from the primary part.

Additionally, each part may have an @code{@@sortas} clause:

@example
@@cindex coffee makers @@sortas@{Coffee Makers@}
@end example

``See'' and ``See also'' entries look like this:

@example
@@cindex espresso makers @@seeentry@{coffee makers@}
@@cindex toasters @@seealso@{coffee makers@}
@end example

@noindent
Note that there is (or should be) no comma between the primary text and the @code{@@seeentry}
or @code{@@seealso}: @file{texindex.awk} supplies a comma in the final
printed entry.

@node Input form
@section Input To The Program

The output from @file{texinfo.tex} contains the data for the
different kinds of index entries described in the previous
section.  Each line is an @dfn{entry}. Each entry has from three
to five fields, where the first three fields represent the same
data for all entries.  Entries look as follows:

@example
@@entry@{@var{sortkey}@}@{@var{page or see}@}@{@var{primary}@}
@@entry@{@var{sortkey}@}@{@var{page or see}@}@{@var{primary}@}@{@var{secondary}@}
@@entry@{@var{sortkey}@}@{@var{page or see}@}@{@var{primary}@}@{@var{secondary}@}@{@var{tertiary}@}
@end example

The braces are balanced in all cases, although for use by this program,
literal braces (not necessarily balanced) can be included in the sort
key by escaping them with the @dfn{command character}.

@cindex backslash vs.@: at
@cindex command character, @samp{\} vs.@: @samp{@@}
In the example above, the command character is @samp{@@} (as in Texinfo
itself).  Historically, however, the command character was backslash
(@samp{\}), and @file{texindex.awk} can handle either one.

Because older versions of @command{texi2dvi} only understand backslash as
the command character, it remains set to backslash, so that newer versions
of @file{texinfo.tex} will work with older versions of @command{texi2dvi}.
Once the newer version of @command{texi2dvi} that also understands
@samp{@@} has had a chance to spread, (we can hope that) the command
character will change to @samp{@@}.

The command character is determined at run time by looking at the first
character on the first line of each input file.

The fields are as follows:

@table @var
@item sortkey
The text to use for sorting index entries.
Generally, this is the text of the line with all markup removed.
When an @code{@@sortas} clause is provided, its contents are used instead.
This field should contain only ASCII characters.

When there are subentries, the sort key is the concatenation of three
fields (or their sort @code{@@sortas} clauses), separated by
@code{@@subentry} and a space. @file{texindex.awk} needs to recognize
where there are multiple sort keys in order to print entries appropriately.

@item page or see
Either a page number (as a roman numeral or an integer, possibly
with additional markup), or an indication that that this is a ``See''
or ``See also'' entry.

@item primary
The primary text of the index entry.

@item secondary
The (optional) secondary text of the index entry.

@item tertiary
The (optional) tertiary text of the index entry.
@end table

Our mission (which we choose to accept) is to read the above input,
sort it appropriately, and produce the correct output.

@node Output form
@section What The Output Should Look Like

Output consists four different commands, derived from the indexing input.
The middle two can have a variant where there is no page number.

@example
@@initial @{A@}                        @ii{For the initial over each group}

@@entry@{@var{indexing text}@}@{@var{pagenum}@}      @ii{Primary entry}
@@entry@{@var{indexing text}@}@{@}             @ii{Primary entry without page number}

@@secondary@{@var{indexing text}@}@{@var{pagenum}@}  @ii{Secondary entry}
@@secondary@{@var{indexing text}@}@{@}         @ii{Secondary entry without page number}

@@tertiary@{@var{indexing text}@}@{@var{pagenum}@}   @ii{Tertiary entry}
@end example

The commands are:

@table @code
@item @@initial
Besides the index entries,
@file{texindex.awk} must output special lines indicating the
first character (the @dfn{initial}) of keys grouped together, but only
if there is more than one initial used throughout the input file.

@item @@entry
This is for a plain index entry, or for the primary term in a multi-level
index entry.  When the primary appears only with a secondary entry,
there won't be a page number.

No page number is printed when there
is an @code{@@seeentry} in the entry. In that case,
the output from @file{texindex.awk} should be a combination of
the original input fields three and two.

@item @@secondary
This is for a secondary index entry in a multi-level
index entry.  When the secondary appears only with a tertiary entry,
there won't be a page number.

@item @@tertiary
This is for a tertiary index entry in a multi-level
index entry.  This one always has a page number, unless it is
a ``see'' entry.
@end table


@node Processing
@section Processing Index Entries

The job is to sort the entries, and merge those which are identical
except for the page numbers.
The sorting should be in the order of: all symbols first, then all
digits, then all letters, with uppercase letters following lowercase
ones, so we will need some smarts.

Once sorted, the lines must be output in the correct form, depending
upon how many entries and subentries they have.

Input lines might be duplicated (same entry, same page, more than once),
so we will have to deal with that.

@node Assumptions
@section Assumptions About Our Data

In the rest of the program we make two fundamental assumptions:

@enumerate 1
@item
If a given sort key has more than one display text, we only take the
first (this matches the behavior of C @command{texindex}).  Put another
way, if the same sort key has two different display texts, it means that
different markup was used, probably inadvertently, and we just take the
first.  As an example, consider these two Texinfo commands:

@example
@@cindex @@file@{field_split()@} function
@dots{}
@@cindex @@code@{field_split()@} function
@end example

@noindent
They produce the following output via @file{texinfo.tex},
which in turn is the input to @file{texindex.awk}:

@example
@@entry@{field_split() function@}@{2@}@{@@file @{field_split()@} function@}
@@entry@{field_split() function@}@{7@}@{@@code @{field_split()@} function@}
@end example

@noindent
The result will be a single entry, using @code{@@file},
accumulating the page numbers:

@example
@@entry@{@@file @{field_split()@} function@}@{2, 7@}
@end example

@item
@cindex roman numerals
For the same sort key and text, page numbers will be monotonically
increasing.  This means we can just use a new page number when it comes
in, and not have to sort entries based on both sort key and page number.
In turn, this means that we don't need to worry about page numbers
that are roman numerals (which can occur).

@end enumerate

@node Portability
@section Using Portable @command{awk}

An additional requirement, for ease of deployment, is that the program
be written in portable @command{awk}, and not use features found only in
GNU @command{awk} (@command{gawk}).  For our purposes, ``portable''
means ``new'' @command{awk} as defined in the 1988 book by Aho,
Weinberger and Kernighan.  This gives us functions, multidimensional
arrays and a number of other important features over the original
@command{awk} shipped with V7 Unix.

In practice, we can also rely on basic features added in POSIX
@command{awk} should we need to (such as @code{CONVFMT}), although
at the moment there are no such features used by @file{texindex.awk}.

We tested the program with five versions of @command{awk} (@command{gawk},
@command{mawk}, Brian Kernighan's @command{awk}, @command{goawk},
and Busybox @command{awk}) on a large index and got byte-identical
results from all five.

@node High-level organization
@chapter High-level Organization

The general outline is as follows:

@(texindex.awk@) =
@<First line@>
@<GPL v3 copyright statement@>
@<Library functions@>
@<Helper functions@>

BEGIN {
	@<Initial setup@>
	@<Argument processing@>
}

@<@code{beginfile()} work function@>
@<@code{endfile()} work function@>
@<Process a record@>
@<Work functions@>
@

@menu
* First line::                  The first line in the file.
* Initial setup::               Set up variables and constants used
                                throughout.
* Argument processing::         Processing command line arguments.
@end menu

@node First line
@section The Program's First Line

@cindex first line
@cindex @code{#!} header
@cindex header, shebang

For the first line of the generated output, we hardwire our intended
output file name and how it got made.  We do not use a @samp{#!} header
because, being a GNU program, we need to accept the @option{--help} and
@option{--version} options.  This cannot be done with a standalone
@code{awk} script; we need a shell wrapper, and hence, the @code{awk}
script itself need not be executable. Also, it's simpler not to worry
about the location of the @code{awk} program.

@<First line@>=
# texindex.awk, generated by jrtangle from ti.twjr.
@

@node Initial setup
@section Initial Setup

@cindex initial setup
The initial setup sets up some constants, including the version of the
program.  In the program itself, we follow a convenient convention:
global variable and array names start with a capital letter.

@cindex @code{Invocation_name} variable
Per GNU standards, we sometimes hardwire the string @samp{texindex} as
the name of the program, and sometimes use the name by which the program
was invoked.  We'll call the latter @code{Invocation_name}; it's
supposed to be passed in from the shell wrapper.

@cindex @code{Can_split_null} variable
The last line below sets up @code{Can_split_null}, which tells us if the
built-in @code{split()} function will split apart a string into its
individual characters or if we have to do it manually.

@cindex @code{TRUE} constant
@cindex @code{FALSE} constant
@cindex @code{EXIT_SUCCESS} constant
@cindex @code{EXIT_FAILURE} constant
@cindex @code{Texindex_version} variable
@cindex @code{check_split_null()} function
@cindex @code{Can_split_null} variable
@cindex @code{Invocation_name} variable
@<Initial setup@>=
TRUE = 1
FALSE = 0
EXIT_SUCCESS = 0
EXIT_FAILURE = 1

Texindex_version = "@VERSION@"
if (! Invocation_name) {
	# provide fallback in case it's not passed in.
	Invocation_name = "texindex"
}

Can_split_null = check_split_null()
@

@node Argument processing
@section Command-line Argument Processing

@cindex argument processing

@cindex @code{usage()} function
@cindex @code{version()} function
Argument processing is straightforward, though manual.  The important
thing is to remove options and their arguments from @code{ARGV} so that
they're not treated as filenames.  The options that print version or
help information automatically exit, so there's no need to mess with
@code{ARGV} in those cases.

@cindex @code{-h} (@code{--help}) option
@cindex @code{-k} (@code{--keep}), no-op option
@cindex @code{--} option
@cindex @code{--version} option
@cindex @code{EXIT_SUCCESS} constant
@cindex @code{EXIT_FAILURE} constant
@cindex @code{fatal()} function
@<Argument processing@>=
for (i = 1; i < ARGC; i++) {
	if (ARGV[i] == "-h" || ARGV[i] == "--help") {
		usage(EXIT_SUCCESS)
	} else if (ARGV[i] == "--version") {
		version()
	} else if (ARGV[i] == "-k" || ARGV[i] == "--keep") {
		# do nothing, backwards compatibility
		delete ARGV[i]
	} else if (ARGV[i] == "--") {
		delete ARGV[i]
		break
	} else if (ARGV[i] ~ /^--?.+/) {
		fatal(_"%s: unrecognized option `%s'\n" \
				"Try `%s --help' for more information.\n",
				Invocation_name, ARGV[i], Invocation_name)
		# fatal() will do `exit EXIT_FAILURE'
	} else {
		break
	}
}
@

@node Processing records
@chapter Processing Records

Processing records includes setting things up for each input file,
pulling apart each record, sorting the data at the end, and writing out
the data properly.

@menu
* Setup for each input file::        What happens at the start of each file.
* Processing each record::           Pulling apart the fields and storing
                                     data.
* End-of-file sorting and printing:: Sorting the entries for each index.
* Printing the data::                Printing the final results.
@end menu

@node Setup for each input file
@section Setup For Each Input File

At the beginning of each input file, the @code{beginfile()} function
clears our variables from any previous processing and sets up the
output file name.  We always append an @samp{s} to the name of the input
file. This is the standard convention.

When @code{beginfile()} is called, the first record has already been
read, so it's possible to perform the checks for a Texinfo index file:
The first character must be either @samp{\} or @samp{@@}
(@pxref{Requirements}), and the next five characters must be the word
@samp{entry}.

@cindex @code{Special_chars} variable
@code{Special_chars} are the characters that must be preceded by
the command character inside the first key. This includes the command
character itself.

Finally, several variables are set to regular expressions that
match control sequences of interest.

@cindex @code{fatal()} function
@cindex @code{FALSE} constant
@cindex @code{beginfile()} function
@cindex @code{Output_file} variable
@cindex @code{Do_initials} variable
@cindex @code{Prev_initial} variable
@cindex @code{Command_char} variable
@cindex @code{Special_chars} variable
@cindex @code{Entries} variable
@<@code{beginfile()} work function@>=
function beginfile(filename)
{
	Output_file = filename "s"

	@<Clear out all data arrays@>
	Entries = 0
	Do_initials = FALSE
	Prev_initial = ""

	Command_char = substr($0, 1, 1)
	if ((Command_char != "\\" && Command_char != "@") \
		|| substr($0, 2, 5) != "entry")
		fatal(_"%s is not a Texinfo index file\n", filename)

	Special_chars = "{}" Command_char

	@<Set up control sequence regexps@>
}
@

@node Processing each record
@section Processing Each Record

Record processing consists of building the data structures for use in
sorting and printing once the whole file has been processed.

@<Process a record@>=
{
	@<Remove duplicates@>
	@<Remove leading @code{\entry} or @code{@@entry}@>
	@<Get the initial@>
	@<Set up @code{fields} array with the data@>
	@<Name the fields@>
	@<Store the data for this line in the various arrays@>
	@<Check for more than one initial@>
}
@

@menu
* Remove duplicates::               Removing duplicating entries.
* Remove leading @code{\entry}::    Remove the leading @code{\entry} command.
* Get the initial::                 Get the initial for this entry.
* Set up and name fields::          Pull apart the line.
* Store the data for this line::    Store the data for later access.
* Check for more than one initial:: See if there are multiple initials.
* Splitting the record::            Split the record apart.
@end menu

@node Remove duplicates
@subsection Removing Duplicate Lines

@cindex removing duplicates
@cindex duplicates, removing

@cindex @code{Seen} array
Duplicates are going to be exact.  Removing them is thus easy; store
each incoming line as the index of an array named @code{Seen}.  If a
line is not there, it has not been seen.  Otherwise it has, and we move
on to the next record.

@cindex @code{TRUE} constant
@cindex @code{Seen} array
@<Remove duplicates@>=
# Remove duplicates, which can happen
if ($0 in Seen)
	next
Seen[$0] = TRUE
@

We have to clear out the @code{Seen} array at the start of each input file.

@cindex @code{del_array()} function
@<Clear out all data arrays@>=
# Reinitialize these for each input file
del_array(Seen)
@

@node Remove leading @code{\entry}
@subsection Remove The Leading @code{\entry} Or @code{@@entry}

We use @code{substr()} here to avoid possible hassles with leading
backslashes in @code{sub()}.

@<Remove leading @code{\entry} or @code{@@entry}@>=
$0 = substr($0, 7)  # remove leading \entry or @entry
@

@node Get the initial
@subsection Get The Initial

@cindex @code{extract_initial()} function
@<Get the initial@>=
initial = extract_initial($0)
@

The sort key is the first part of the line after @samp{@@entry}, 
starting with an open brace, and continuing to a matching close brace.

The very first character of the sort key can be an open brace.
If so, we extract the component of the sort key surrounded by balanced 
braces.  We don't account for @samp{\@{} or @samp{\@}} inside this component, as 
@file{texinfo.tex} isn't expected to produce such output.

An example can be seen in what older versions of @file{texinfo.tex}
generated if you needed to index a real backslash, namely an input line
something like the following:

@example
\entry@{@{\tt \indexbackslash @} (backslash)@}@{14@}@{\code @{@{\tt @dots{}@}@}
@end example

Earlier versions of @command{texindex} took the first non-brace 
character as the initial, in this example @samp{\}, and output it as 
@samp{\\}; this was not, however, a control sequence recognized by the 
older versions of @file{texinfo.tex}.

@cindex @code{extract_initial()} function
@cindex @code{char_split()} function
@cindex @code{fatal()} function
@<Work functions@>=
function extract_initial(key,  initial, nextchar, i, l, kchars)
{
	l = char_split(key, kchars)
	if (l >= 3 && kchars[2] == "{") {
		bracecount = 1
		i = 3
		while (bracecount > 0 && i <= l) {
			if (kchars[i] == "{")
				bracecount++
			else if (kchars[i] == "}")
				bracecount--
			i++
		}
		if (i > l)
			fatal(_"%s:%d: Bad key %s in record\n", FILENAME, FNR, key)
		initial = substr(key, 2, i - 2)
	} else if (kchars[2] == Command_char) {
		nextchar = kchars[3]
		if (initial == Command_char && index("{}", nextchar) > 0)
			initial = substr(key, 2, 3)
		else {
			initial = toupper(nextchar)
		}
	} else {
		initial = toupper(kchars[2])
	}

	return initial
}
@

@node Set up and name fields
@subsection Set Up And Name The Fields

The next step is to pull out the data of interest from the multiple sets of
braces.  This is delegated to a function named @code{field_split()}.
There must be at least three fields, and there can be up to five.

@cindex @code{fatal()} function
@cindex @code{field_split()} function
@cindex @code{fields} array, setting up
@<Set up @code{fields} array with the data@>=
numfields = field_split($0, fields, "{", "}", Command_char)
if (numfields < 3 || numfields > 5)
	fatal(_"%s:%d: Bad entry; expected 3 to 5 fields, not %d\n",
		FILENAME, FNR, numfields)
@

We give the fields names for later use.

@<Name the fields@>=
key = fields[1]
pagenum = fields[2]
primary_text = fields[3]
secondary_text = (numfields > 3 ? fields[4] : "")
tertiary_text = (numfields > 4 ? fields[5] : "")
@

@node Store the data for this line
@subsection Store The Data For This Line

@cindex storing data

We use multiple arrays to store different parts of the data.
The sort key from the input is invariant across entries, so we use that
as the index in the various arrays.
We need the following arrays:

@table @code
@item Numfields
How many fields (entries) in this line: one, two, or three.

@item Initials
The initial for this line.

@item Primary
The primary index text. This is the real text, not the stripped
value appearing in the sort key.

@item Secondary
The secondary index text, if present.

@item Tertiary
The tertiary index text, if present.

@item Pagedata
The page numbers on which identical entries occur.

@item See_count
The number of ``see'' entries for a given
index line. Nothing prevents there being multiple such:

@cindex toast @seeentry{toaster}
@cindex toast @seeentry{jam}
@example
@@cindex toast @@seeentry@{toaster@}
@@cindex toast @@seeentry@{jam@}
@end example

@noindent
So we have to be prepared to handle such input.
The @code{See_count} array counts the number of such
texts as there may be.

@item See
The actual texts of the @samp{@@seeentry} value for
the line's sort key.   Each entry goes into
@code{See[key, 1]}, @code{See[key, 2]}, etc., up to
@code{See_count[key]}.

@item Seealso_count
@itemx Seealso
These serve the same purpose as @code{See_count} and @code{See},
but for @code{@@seealso} entries.
@end table

In the event that a particular key has more than one associated output
text, we'll keep the first and ignore the remainder (this is the same
behavior as the C implementation).  @xref{Assumptions}.

For page numbers, we merely append the page number field from the input,
preceded by a comma and space, unless that page number was already the
last that's been stored.  (We're assuming the page numbers don't jump
around, which, in fact, they don't, so we don't need a more complex
approach.)  This also handles any page numbers that appear as roman
numerals (from the so-called front matter), should there be such.

In addition to all the previously described arrays, the key is stored in
the @code{Keys} array the first time it is seen; this array is sorted
later on.  Its indices are just incremented integers, stored in the
global @code{Entries} variable.  The @code{Allkeys} associative array
lets us easily track if we have seen a key before.

@cindex @code{Keys} array
@cindex @code{Allkeys} array
@cindex @code{Entries} variable
@cindex @code{Seeentry_re} variable
@cindex @code{Seealso_re} variable
@cindex @code{Primary} array
@cindex @code{Secondary} array
@cindex @code{Tertiary} array
@cindex @code{Numfields} array
@cindex @code{See} array
@cindex @code{See_count} array
@cindex @code{Seealso} array
@cindex @code{Seealso_count} array
@cindex @code{Pagedata} array
@cindex @code{escape()} function
@<Store the data for this line in the various arrays@>=
if (! (key in Allkeys)) {
	# first time we've seen this full line
	Keys[++Entries] = key
	Allkeys[key] = key
	Initials[key] = initial
	Numfields[key] = numfields - 2	# don't count sortkey, page number
	Primary[key] = primary_text
	if (secondary_text)
		Secondary[key] = secondary_text
	if (tertiary_text)
		Tertiary[key] = tertiary_text
	@<Split out and store the subparts of the sort key@>

	if (pagenum ~ Seeentry_re) {
		See_count[key]++
		See[key, See_count[key]] = pagenum
	} else if (pagenum ~ Seealso_re) {
		Seealso_count[key]++
		Seealso[key, Seealso_count[key]] = pagenum
	} else
		Pagedata[key] = pagenum
} else {
	# We've seen this key before:
	# Add to see or see also, or else add to list of pages.
	# In the latter case, make sure we've not seen this
	# page number before.  (Shouldn't happen based on the
	# earlier removal of exact duplicates, but we could have
	# an identical key with different formatting of actual text.

	if (pagenum ~ Seeentry_re) {
		See_count[key]++
		See[key, See_count[key]] = pagenum
	} else if (pagenum ~ Seealso_re) {
		Seealso_count[key]++
		Seealso[key, Seealso_count[key]] = pagenum
	} else if (! (key in Pagedata)) {
		Pagedata[key] = pagenum
	} else if (Pagedata[key] != pagenum \
				&& Pagedata[key] !~  escape(", " pagenum "$")) {
		Pagedata[key] = Pagedata[key] ", " pagenum
	}
}
@

We split the key into subparts, using the @samp{@@subentry} as
the separator. The subparts are stored in the @code{Subkeys} array.

@cindex @code{Subkeys} array
@<Split out and store the subparts of the sort key@>=
n = split(key, subparts, Subentry_re)
for (i = 1; i <= n; i++)
	Subkeys[key, i] = subparts[i]
@

The @code{Seeentry_re}, @code{Seealso_re} and @code{Subentry_re}
variables are regular expressions that match the corresponding @TeX{}
control sequences.  They're initialized once for each input file, since
the command character might be different between files.
The @code{make_regexp()} function is described in @ref{make_regexp}.

@cindex @code{Seeentry_re} variable
@cindex @code{Seealso_re} variable
@cindex @code{Subentry_re} variable
@cindex @code{make_regexp()} function
@<Set up control sequence regexps@>=
Seeentry_re = make_regexp("%seeentry")
Seealso_re = make_regexp("%seealso")
Subentry_re = make_regexp(" *%subentry +")
@

Here too, we have to clear out the arrays we've used at the start of
each input file.

@cindex @code{Keys} array
@cindex @code{Subkeys} array
@cindex @code{Allkeys} array
@cindex @code{Initials} array
@cindex @code{Numfields} array
@cindex @code{Primary} array
@cindex @code{Secondary} array
@cindex @code{Tertiary} array
@cindex @code{See} array
@cindex @code{See_count} array
@cindex @code{Seealso} array
@cindex @code{Seealso_count} array
@cindex @code{Pagedata} array
@cindex @code{del_array()} function
@<Clear out all data arrays@>=
del_array(Keys)
del_array(Allkeys)
del_array(Subkeys)
del_array(Initials)
del_array(Numfields)
del_array(Primary)
del_array(Secondary)
del_array(Tertiary)
del_array(See)
del_array(See_count)
del_array(Seealso)
del_array(Seealso_count)
del_array(Pagedata)
@

@node Check for more than one initial
@subsection Check For More Than One Initial

@cindex initial, checking for more than one

Finally, we need to determine if more than one initial occurs in the
input.  If so, we set @code{Do_initials} to true.  As soon as it's true,
we don't need to do further checking on subsequent lines.

@cindex @code{TRUE} constant
@cindex @code{Do_initials} variable
@cindex @code{Prev_initial} variable
@<Check for more than one initial@>=
if (! Do_initials) {
	if (Prev_initial == "")
		Prev_initial = initial
	else if (initial != Prev_initial)
		Do_initials = TRUE
}
@

@node Splitting the record
@subsection Splitting The Record: @code{field_split()}

Let's take a look at the function that breaks apart the record.  Upon
entry to the function, the value of @code{record} looks something like:

@example
@{POSIX awk@}@{5@}@{POSIX @@command @{awk@}@}
@end example

The first field may have instances of @samp{@@@{} and/or @samp{@@@}} (or
@samp{\@{} and/or @samp{\@}}), so the braces aren't necessarily exactly
balanced.

The @code{field_split()} function uses fairly straightforward ``count
the delimiters'' code.  The loop starts at two, since we know the first
character is an open brace.  The main things to handle are the command
character and the final closing brace.

@cindex @code{field_split()} function
@cindex @code{char_split()} function
@<Work functions@>=
function field_split( \
	record, fields, start, end, com_ch,      # parameters
	chars, numchars, out, delim_count, i, j, k) # locals
{
	del_array(fields)

	numchars = char_split(record, chars)
	j = 1  # index into fields
	k = 1  # index into out
	delim_count = 1
	for (i = 2; i <= numchars; i++) {
		if (chars[i] == com_ch) {
			@<Handle the character after the command character@>
		} else if (chars[i] == start) {
			delim_count++
			out[k++] = chars[i]
		} else if (chars[i] == end) {
			delim_count--

			if (delim_count == 0) {
				@<Finish off the field, set up for next field@>
			} else
				out[k++] = chars[i]
		} else
			out[k++] = chars[i]
	}

	return j - 1  # num fields
}
@

If the command character is doubled, we pass that on through, so that
@TeX{} will process it correctly.
If the character following the command character is an open brace or close
brace, we pull it in.  Otherwise, the
command character is left alone as part of the field.

@cindex @code{Command_char} variable
@cindex @code{Special_chars} variable
@<Handle the character after the command character@>=
if (chars[i+1] == Command_char) {	# input was @@
	out[k++] = chars[i+1]
	out[k++] = chars[i+1]
	i++
} else if (index(Special_chars, chars[i+1]) != 0) {
	out[k++] = chars[i+1]
	i++
} else
	out[k++] = chars[i]
@

Upon seeing the final closing brace, we put all the characters back
together into a string using @code{join()}.  We then reset the
@code{out} array for the next time through.  If the next character isn't
an open brace, then the line is bad and we print a fatal error.
Otherwise, we reset @code{delim_count} to one.

@cindex @code{join()} function
@cindex @code{del_array()} function
@cindex @code{fatal()} function
@<Finish off the field, set up for next field@>=
fields[j++] = join(out, 1, k-1, SUBSEP)
del_array(out)  # reset for next time through
k = 1

i++
if (i <= numchars && chars[i] != start)
	fatal(_"%s:%d: Bad entry; expected %s at column %d\n",
		FILENAME, FNR, start, i)
delim_count = 1
@


@node End-of-file sorting and printing
@section End-of-file Sorting And Printing

Upon end of input, the processing is straightforward: sort the entries
and write them out.  Additionally, if we are printing the initial,
handle that.  (That printing task is delegated to a small function.)

@cindex @code{endfile()} function
@cindex @code{quicksort()} function
@cindex @code{write_index_entry()} function
@cindex @code{Entries} variable
@cindex @code{Keys} array
@cindex @code{Initials} array
@cindex @code{print_initial()} function
@cindex @code{Output_file} variable
@<@code{endfile()} work function@>=
function endfile(filename,		i, prev_initial, initial)
{
	# sort the entries
	quicksort(Keys, 1, Entries, "index")

	prev_initial = ""
	for (i = 1; i <= Entries; i++) {
		# deal with initial
		initial = Initials[Keys[i]]
		if (initial != prev_initial) {
			prev_initial = initial
			print_initial(initial)
		}

		write_index_entry(i)
	}
	close(Output_file)
}
@

Printing an initial is not complicated.  The main thing is to precede
special characters with the command character.

@cindex @code{Command_char} variable
@cindex @code{Special_chars} variable
@cindex @code{Do_initials} variable
@cindex @code{print_initial()} function
@cindex @code{Output_file} variable
@<Work functions@>=
function print_initial(initial)
{
	if (! Do_initials)
		return

	if (index(Special_chars, initial) != 0)
		initial = Command_char initial
	printf("%cinitial {%s}\n",
		Command_char, initial) > Output_file
}
@

@menu
* Quicksort::                   Sorting our input.
* Multilevel comparisons::      Handling multilevel entries.
* Comparing index entries::     The heart of the sorting algorithm.
@end menu

@node Quicksort
@subsection Quicksort

@cindex quicksort algorithm
@cindex Hoare, C.A.R.

Sorting uses a standard quicksort algorithm. It turns out we need to
sort both multilevel index entries, and regular text. To that end
the @code{compare} variable indicates which way to do the ``less
than'' comparison.

@cindex @code{quicksort()} function
@cindex @code{quicksort_swap()} function
@<Helper functions@>=
# quicksort --- C.A.R. Hoare's quick sort algorithm.  See Wikipedia
#               or almost any algorithms or computer science text
# Adapted from K&R-II, page 110
#
function quicksort(data, left, right, compare,	# parameters
					i, last, use_index, lt)		# locals
{
	if (left >= right)  # do nothing if array contains fewer
		return          # than two elements

	@<Set compare mechanism@>

	quicksort_swap(data, left, int((left + right) / 2))
	last = left
	for (i = left + 1; i <= right; i++) {
		@<Do ``less than'' comparison@>
		if (lt)
			quicksort_swap(data, ++last, i)
	}
	quicksort_swap(data, left, last)
	quicksort(data, left, last - 1, compare)
	quicksort(data, last + 1, right, compare)
}

# quicksort_swap --- quicksort helper function, could be inline
#
function quicksort_swap(data, i, j, temp)
{
	temp = data[i]
	data[i] = data[j]
	data[j] = temp
}
@

We set a Boolean (numeric) variable to indicate what kind of
comparison to do, avoiding repeating the string
comparison whose result won't change upon each iteration.

@<Set compare mechanism@>=
use_index = (compare == "index")
@

The @code{less_than()} function supplies the comparison for index entries
(@pxref{Multilevel comparisons}, and @pxref{Comparing index entries}).
The @code{key_compare()} function is used for string comparisons.

@cindex @code{less_than()} function
@cindex @code{key_compare()} function
@<Do ``less than'' comparison@>=
lt = (use_index \
		? less_than(data, i, left) \
		: key_compare(data[i], data[left]) < 0)
@

@node Multilevel comparisons
@subsection Handling Multilevel Entries

The @code{less_than()} function has to take into account
that we are comparing multilevel index entries. We can't just
compare the full sort key, since the @samp{@@subentry} throws off
the comparison; we want to compare based only on the key texts
themselves.

To that end, the comparison happens on two levels. At the higher
level, we compare the subkeys; if the first subkeys are equal
then we differentiate between them based on the second subkey.
If, in turn, the second ones are equal, we differentiate based
on the third one.

By definition, an index entry with only one subkey sorts to be before
an entry with two, and one with two comes before one with three.

The underlying @code{key_compare()} function, which does the hard
work of comparison, returns a three-way value a la the C @code{strcmp()}
function: less than zero if the first string is less than the second,
zero if they're equal, or greater than zero if the first string is
greater than the second one.

We make an effort here to call the comparison function only as
much as necessary, since it's a relatively expensive operation.

@cindex @code{less_than()} function
@cindex @code{key_compare()} function
@cindex @code{Numfields} array
@cindex @code{Subkeys} array
@<Work functions@>=
function less_than(data, l, r,		left, right, nfields, cmp1, cmp2)
{
	left = data[l]
	right = data[r]

	left_fields = Numfields[left]
	right_fields = Numfields[right]

	nfields = min(left_fields, right_fields)

	# At least one field, always check the first subkey
	cmp1 = key_compare(Subkeys[left, 1], Subkeys[right, 1])
	if (cmp1 != 0)
		return cmp1 < 0

	# cmp1 == 0: one side has 1 field, other side has 1 to 3 fields
	if (nfields == 1)
		return left_fields < right_fields

	# At least two fields, check second subkey
	cmp2 = key_compare(Subkeys[left, 2], Subkeys[right, 2])
	if (cmp2 != 0)
		return cmp2 < 0

	# cmp1 == 0, cmp2 == 0, one side has 2 fields,
	# other has 2 to 3 fields
	if (nfields == 2)
		return left_fields < right_fields

	# Three fields
	return key_compare(Subkeys[left, 3], Subkeys[right, 3]) < 0
}
@

@node Comparing index entries
@subsection Comparing Index Entries

The sort key comparison function is the heart of the sorting algorithm.  The
comparison is based on the indexing rules, which are:

@itemize @bullet
@item
All symbols first.

@item
Followed by digits.

@item
Followed by letters.  Lowercase precedes uppercase and both ``a'' and
``A'' precede anything starting with ``b'' or ``B'' (etc.).
@end itemize

Implementing these rules is a little complicated.  The first thing we
need is a table that maps characters to comparison values.  The
following code is based on the original C @command{texindex}, although
the actual comparison algorithm is more sophisticated.

We set up an @code{Ordval} array to map characters to numeric values.
Most characters map to their ASCII code.  We add 512 to the value of each
of the digits; this causes them to come after all symbols.

The letters are handled a little differently. We set things up so that
lowercase letters come before uppercase ones, but both ``a'' and
``A'' come before ``b'', and so on.  This then lets us use
a simple subtraction in the comparison to determine if two letters are
less than, equal to, or greater than each other. In any case, the mapping
also ensures that letters come after digits.
(This code should also work for EBCDIC systems, although @TeX{} does
everything in ASCII, so it's not likely to make a difference.)

The table must be built completely before changing the mapping of the
letters, because all of the uppercase and lowercase letters must be in
the table before we can change their values.

@cindex @code{Ordval} array
@cindex @code{isdigit()} function
@cindex @code{isupper()} function
@<Work functions@>=
BEGIN {
	for (i = 0; i < 256; i++) {
		c = sprintf("%c", i)
		Ordval[c] = i  # map character to value

		if (isdigit(c))
			Ordval[c] += 512
	}

	# Set things up such that 'a' < 'A' < 'b' < 'B' < ...
	i = Ordval["a"]
	j = Ordval["z"]
	newval = i + 512
	for (; i <= j; i++) {
		c = sprintf("%c", i)

		if (islower(c)) {
			Ordval[c] = newval++
			Ordval[toupper(c)] = newval++
		}
	}
}
@

Here is the @code{key_compare()} function.  It returns less than zero if the
@code{left} string is ``less than'' the @code{right} string, zero if they are
equal, and greater than zero if the @code{left} string is ``greater than'' the
@code{right} string.

The comparison algorithm is not too complicated, once we define how
things should work.  We loop over each pair of characters in the
@code{left} and @code{right} strings, comparing them one at a time.
When comparing two characters, there are three cases, one of which has
three subcases, as follows:

@table @i
@item Two letters

@c nested table
@table @i
@item Same letter, but different case
This is the slightly complicated case.
When two characters are equal, we have to look ahead at the next
characters to decide whether to continue the loop or quit.  As long as
we are not at the end of the string, and at least one of the following
characters in either string is a letter, we continue the loop.
Otherwise we do the character comparison and return.

@item Two different letters, but same case
@itemx Two different letters, different case
Use the comparison of the respective @code{Ordval} values.
@end table
@c end nested table

@item A letter and something else
@itemx Two nonletters
Use the comparison of the respective @code{Ordval} values.

@end table

@noindent
When the values are equal, continue around the loop.  And, as
usual, if one string is an initial substring of the other, that one is
considered to be ``less than'' the other one.

The rules just described produce @emph{better} results than did the C
@command{texindex}.  For example, @samp{beginfile()} sorts
before @samp{BEGINFILE}, whereas with the C version they came out in the
opposite order.

@cindex @code{Ordval} array
@cindex @code{char_split()} function
@cindex @code{key_compare()} function
@cindex @code{isalpha()} function
@<Work functions@>=
function key_compare(left, right,	len_l, len_r, len, chars_l, chars_r)
{
	len_l = length(left)
	len_r = length(right)
	len = (len_l < len_r ? len_l : len_r)

	char_split(left, chars_l)
	char_split(right, chars_r)

	for (i = 1; i <= len; i++) {
		if (isalpha(chars_l[i]) && isalpha(chars_r[i])) {
			# same char different case
			# upper case comes out last
			if (chars_l[i] != chars_r[i] &&
				tolower(chars_l[i]) == tolower(chars_r[i])) {
				if (i != len \
					&& (isalpha(chars_l[i+1]) || isalpha(chars_r[i+1])))
					continue

				# negative, zero, or positive
				return Ordval[chars_l[i]] - Ordval[chars_r[i]]
			}
			# same case, different char,
			# or different case, different char:
			# letter order wins
			if (Ordval[chars_l[i]] < Ordval[chars_r[i]])
				return -1

			if (Ordval[chars_l[i]] > Ordval[chars_r[i]])
				return 1

			# equal, keep going
			continue
		}

		# letter and something else, or two non-letters
		# letter order wins
		if (Ordval[chars_l[i]] < Ordval[chars_r[i]])
			return -1

		if (Ordval[chars_l[i]] > Ordval[chars_r[i]])
			return 1

		# equal, keep going
	}

	# equal so far, shorter one wins
	if (len_l < len_r)
		return -1

	if (len_l > len_r)
		return 1

	return 0
}
@

@node Printing the data
@section Printing The Final Results

Printing an index entry is where all the data we collected
gets used.  Much of the complexity is here, since we have to
output up to three lines per entry.

@menu
* printing top level::          Top level logic.
* printing a single entry::     Handling a single entry.
@end menu

@node printing top level
@subsection Top Level Logic For Printing An Entry

So, let's start. The logic is going to be a little complicated:

@cindex @code{write_index_entry()} function
@cindex @code{Keys} array
@cindex @code{Numfields} array
@<Print index entry@>=
function write_index_entry(current,		key)
{
	key = Keys[current]		# current sort key
	if (Numfields[key] == 1) {
		@<Print primary entry@>
	} else if (Numfields[key] == 2) {
		@<Print primary entry if necessary@>
		@<Print secondary entry@>
	} else if (Numfields[key] == 3) {
		@<Print primary entry if necessary@>
		@<Print secondary entry if necessary@>
		@<Print tertiary entry@>
	}
}
@

Consider the three-level case, for an entry like:

@example
@@cindex coffee makers @@subentry electric @@subentry blue
@end example

@noindent
There may not have been separate preceding entries like @samp{@@cindex
coffee makers} or @samp{@@cindex coffee makers @@subentry electric}.  Thus,
we have to generate the preceding @code{@@entry} and @code{@@secondary}
lines before generating the final @code{@@tertiary} line.

Printing the entries is similar no matter what kind of entry; there's
a lot of work to be done so it's isolated in the @code{print_entry()}
function described in the next section.

@cindex @code{print_entry()} function
@<Print primary entry@>=
print_entry(key, "entry", Primary)
@

@cindex @code{print_entry()} function
@<Print secondary entry@>=
print_entry(key, "secondary", Secondary)
@

@cindex @code{print_entry()} function
@<Print tertiary entry@>=
print_entry(key, "tertiary", Tertiary)
@

@node printing a single entry
@subsection Printing A Single Entry

Printing a single entry is quite involved:

@cindex @code{print_entry()} function
@cindex @code{print_see_entry()} function
@cindex @code{See} array
@cindex @code{See_count} array
@cindex @code{Seealso} array
@cindex @code{Seealso_count} array
@cindex @code{Pagedata} array
@cindex @code{Printed} array
@cindex @code{Output_file} variable
@<Print an entry@>=
function print_entry(key, entry_command, entry_text,
					@<Local variables for ``see also'' printing@>)
{
	if ((key, 1) in See)		# at least one ``see''
		print_see_entry(key, entry_command, entry_text,
						See_count, See)

	if (key in Pagedata) {		# at least one page number
		@<Check for ``see also'', add to @code{Pagedata}@>

		printf("%c%s{%s}{%s}\n",
			Command_char, entry_command,
			entry_text[key], Pagedata[key]) > Output_file

		Printed[key] = True		# mark this key as printed
	} else if ((key, 1) in Seealso) {	# at least one ``see also''
		# Only ``see also'' entry, print it
		@<Prepare and sort ``see also'' entries into @code{see_entries}@>

		printf("%c%s{%s}{",
			Command_char, entry_command,
			entry_text[key]) > Output_file

		# now add them to the page data
		for (i = 1; i <= count; i++) {
			printf("%s", see_entries[i]) > Output_file
			if (i != count)
				printf(", ") > Output_file
		}
		printf("}\n") > Output_file
	}
}
@

Note that we only take note of having printed the key
for lines with page numbers. Otherwise, a ``see'' entry followed
by a regular multilevel entry is not handled correctly.

When there exist both regular index entries for a topic and
also a ``see also'' entry, we place the ``see also'' text
after all the page numbers, so that there is only one printed
index entry for the topic.

This ends up being involved, since potentially there could be
multiple ``see also'' entries (even though this is bad form).

@<Check for ``see also'', add to @code{Pagedata}@>=
if ((key, 1) in Seealso) {
	@<Prepare and sort ``see also'' entries into @code{see_entries}@>

	# now add them to the page data
	for (i = 1; i <= count; i++)
		Pagedata[key] = Pagedata[key] ", " see_entries[i]
}
@

@<Local variables for ``see also'' printing@>=
count, see_entries, i
@

Although it's bad practice, there could be multiple
``see also'' entries for a given key. In that case, we
must sort them before using them.

@<Prepare and sort ``see also'' entries into @code{see_entries}@>=
count = Seealso_count[key]

# Copy the entries to a separate array
for (i = 1; i <= count; i++)
	see_entries[i] = Seealso[key, i]

# sort them
quicksort(see_entries, 1, count, "string")
@

Be sure to empty out @code{Printed} at the start of each file.

@cindex @code{Printed} array
@cindex @code{del_array()} function
@<Clear out all data arrays@>=
del_array(Printed)
@

And add our function to the group of work functions.

@<Work functions@>=
@<Print an entry@>
@

Printing ``see'' entries is potentially messy if there
are more than one. (A good index won't have more than one, but nothing
prevents there being multiple such entries, so we have to handle them.)

@cindex @code{print_see_entry()} function
@cindex @code{quicksort()} function
@cindex @code{Output_file} variable
@<Print a ``see'' entry@>=
function print_see_entry(key, entry_command, entry_text,	# parameters
						count_array, see_text_array,		# parameters
						i, count, see_entries)				# locals
{
	count = count_array[key]
	if (count == 1) {	# the easy case
		printf("%c%s{%s, %s}{}\n",
			Command_char, entry_command,
			entry_text[key], see_text_array[key, 1]) > Output_file

		return
	}

	# Otherwise, we need to sort the entries and then print them
	# Copy the entries to a separate array
	for (i = 1; i <= count; i++)
		see_entries[i] = see_text_array[key, i]

	# sort them
	quicksort(see_entries, 1, count, "string")

	# now print them
	for (i = 1; i <= count; i++)
		printf("%c%s{%s, %s}{}\n",
			Command_char, entry_command,
			entry_text[key], see_entries[i]) > Output_file
}
@
@cindex test case @seeentry{testing}
@cindex test case @seeentry{brief case}
@cindex coffee
@cindex coffee @seealso{tea}
@cindex coffee @seealso{coca-cola}
@cindex whisky @seealso{soda}
@cindex whisky @seealso{scotch}


@<Work functions@>=
@<Print a ``see'' entry@>
@

When checking if we need to print the primary and secondary entry,
we need to use the subparts of the key.
The subparts represent the key for those entries;
each will have an index in @code{Printed} if
we already printed such an entry.
The subparts are already available in the @code{Subkeys} array.

@cindex @code{Subkeys} array
@cindex @code{Printed} array
@cindex @code{Output_file} variable
@<Print primary entry if necessary@>=
if (! (Subkeys[key, 1] in Printed)) {
	printf("%centry{%s,}{}\n",
		Command_char, Primary[key]) > Output_file
	Printed[Subkeys[key, 1]] = True
}
@

Printing the secondary entry is a little subtle; we have to check
that the combination of primary and secondary subkeys have been
printed and use that combination as the index into @code{Printed}.

@cindex @code{Subkeys} array
@cindex @code{Printed} array
@cindex @code{Output_file} variable
@<Print secondary entry if necessary@>=
subkey = (Subkeys[key, 1] Command_char "subentry " Subkeys[key, 2])
if (! (subkey in Printed)) {
	printf("%csecondary{%s,}{}\n",
		Command_char, Secondary[key]) > Output_file
	Printed[subkey] = True
}
@


Here are some test cases:

@c These should make a nice test case!
@cindex coffee makers

@cindex toasters @subentry british
@cindex toasters @subentry american

@cindex microwaves @subentry electric @subentry 110 volt
@cindex microwaves @subentry electric @subentry 220 volt

@cindex children
@cindex children @subentry small
@cindex children @subentry small @subentry toddlers
@cindex children @subentry small @subentry infants
@cindex children @subentry teenagers
@cindex children @subentry adult
@example
@@c Top level entry, with page
@@cindex coffee makers

@@c Double level, no separate top level
@@cindex toasters @@subentry british
@@cindex toasters @@subentry american

@@c Triple level, no separate 1st or 2nd level
@@cindex microwaves @@subentry electric @@subentry 110 volt
@@cindex microwaves @@subentry electric @@subentry 220 volt

@@c All 3 levels, with pages
@@cindex children
@@cindex children @@subentry small
@@cindex children @@subentry small @@subentry toddlers
@@cindex children @@subentry small @@subentry infants
@@cindex children @@subentry teenagers
@@cindex children @@subentry adult

@@c More examples
@@cindex test case @@seeentry@{testing@}
@@cindex test case @@seeentry@{brief case@}
@@cindex coffee
@@cindex coffee @@seealso@{tea@}
@@cindex coffee @@seealso@{coca-cola@}
@@cindex whisky @@seealso@{soda@}
@@cindex whisky @@seealso@{scotch@}
@end example

@noindent
@xref{Index}, to see if the above test cases are handled properly.

Finally, we add the above code into the set of work functions:

@<Work functions@>=
@<Print index entry@>
@

@node Necessary stuff
@chapter Necessary Stuff That Isn't Thrilling

This chapter provides some necessary but unexciting elements.

@menu
* Copyright statement::         Copyright info.
* Library functions::           From the @code{gawk} library:
                                @file{ftrans.awk}, @code{join()}.
* Helper functions::            @code{del_array()}, @code{check_split_null()},
                                @code{fatal()}, @dots{}
* I18N::                        Internationalization.
@end menu

@node Copyright statement
@section Copyright Statement

@cindex copyright statement
@cindex GNU General Public License
@cindex License, GNU General Public
@cindex GPL (GNU General Public License)
Every program needs a copyright statement.

@<GPL v3 copyright statement@>=
#
# Copyright 2014-2021 Free Software Foundation, Inc.
# 
# This file is part of GNU Texinfo.
# 
# Texinfo is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# 
# Texinfo is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <https://www.gnu.org/licenses/>.
@

@node Library functions
@section Library Functions: @file{ftrans.awk} and @code{join()}

The program uses several library routines discussed in detail
in the @command{gawk} documentation.  The first sets up the
infrastructure for the @code{beginfile()} and @code{endfile()} functions.
@xref{Filetrans Function,,, gawk, GNU Awk User's Guide},
for an explanation of how this function works.

@cindex @file{ftrans.awk} library file
@cindex @code{beginfile()} function
@cindex @code{endfile()} function
@<Library functions@>=
# ftrans.awk --- handle data file transitions
#
# user supplies beginfile() and endfile() functions
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# November 1992

FNR == 1 {
	if (_filename_ != "")
		endfile(_filename_)
	_filename_ = FILENAME
	beginfile(FILENAME)
}

END { endfile(_filename_) }
@

The next function is @code{join()}, which joins an array of characters
back into a string.  @xref{Join Function,,, gawk, GNU Awk User's Guide},
for an explanation of how this function works.

@cindex @file{join.awk} library file
@cindex @code{join()} function
@<Library functions@>=
# join.awk --- join an array into a string
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# May 1993

function join(array, start, end, sep,    result, i)
{
	if (sep == "")
		sep = " "
	else if (sep == SUBSEP) # magic value
		sep = ""
	result = array[start]
	for (i = start + 1; i <= end; i++)
		result = result sep array[i]
	return result
}
@

@node Helper functions
@section Helper Functions

These helper functions make the main code easier to follow.

@menu
* del_array::            Clearing out an array.
* check_split_null::     Checking if @command{awk} splits on the null string.
* char_split::           Splitting a line into individual characters.
* fatal::                Printing fatal errors.
* is@dots{} functions::  Checking character types.
* make_regexp::          Make a regexp to match @TeX{} control sequences.
* escape::               Escaping backslashes for strings.
* min::                  Get the minimum of two numbers.
@end menu

@node del_array
@subsection @code{del_array()}: Deleting An Array

@code{del_array()} clears out an array.

@cindex @code{del_array()} function
@<Helper functions@>=
function del_array(a)
{
	# Portable and faster than
	#   for (i in a)
	#     delete a[i]
	split("", a)
}
@

@node check_split_null
@subsection @code{check_split_null()}: Checking If @command{awk} Splits On The Null String

@code{check_split_null()} determines whether the @command{awk} running
this program supports using the null string for the separator, splitting
each character off into a separate element.  If so, the return value from @code{split()}
will be the number of elements in the array, and it will be more than
one.  It is called at program startup.

@cindex @code{check_split_null()} function
@<Helper functions@>=
function check_split_null(    n, a)
{
	n = split("abcde", a, "")
	return (n == 5)
}
@

@node char_split
@subsection @code{char_split()}: Splitting A String Into Characters

@code{char_split()} splits a string into separate characters, letting
@command{awk} do the work if possible.  If not, each character is
extracted manually using a loop and @code{substr()}.

@cindex @code{char_split()} function
@cindex @code{Can_split_null} variable
@cindex @code{del_array()} function
@<Helper functions@>=
function char_split(string, array,    n, i)
{
	if (Can_split_null)
		return split(string, array, "")

	# do it the hard way
	del_array(array)
	n = length(string)
	for (i = 1; i <= n; i++)
		array[i] = substr(string, i, 1)

	return n
}
@

@node fatal
@subsection @code{fatal()}: Printing Fatal Error Messages

@cindex @command{cat} command
@cindex stderr
The @code{fatal()} function prints a @code{printf}-formatted message to
standard error and then exits badly.
For maximal portability, it opens a pipeline to @command{cat},
redirected to standard error; not all systems have a @file{/dev/stderr}
file, and not all versions of @command{awk} recognize that name
internally. (Thus, we can't use @samp{print @dots{} > "/dev/stderr"}.)

@cindex @code{EXIT_FAILURE} constant
@cindex @code{fatal()} function
@<Helper functions@>=
function fatal(format, arg1, arg2, arg3, arg4, arg5,
				arg6, arg7, arg8, arg9, arg10, cat)
{
	cat = "cat 1>&2"	# maximal portability
	printf(format, arg1, arg2, arg3, arg4, arg5,
		  arg6, arg7, arg8, arg9, arg10) | cat
	close(cat)

	exit EXIT_FAILURE
}
@

@node is@dots{} functions
@subsection @code{is@dots{}} Functions: Checking Character Types

@cindex @code{isupper()} function
@cindex @code{islower()} function
@cindex @code{isalpha()} function
@cindex @code{isdigit()} function
The following functions help identify what a character is; they are
similar in nature to the various macros in the C @code{<ctype.h>} header
file.  Since most of them return a count, the return value could be used to
compute which character from the set was seen; this turned out not to be
necessary in this program but might be useful in some other context.
By using @code{index()} with lists of letters, these functions will
also work on EBCDIC systems, should that ever be necessary.

@<Helper functions@>=
function isupper(c)
{
	return index("ABCDEFGHIJKLMNOPQRSTUVWXYZ", c)
}

function islower(c)
{
	return index("abcdefghijklmnopqrstuvwxyz", c)
}

function isalpha(c)
{
	return islower(c) || isupper(c)
}

function isdigit(c)
{
	return index("0123456789", c)
}
@

@node make_regexp
@subsection @code{make_regexp()}: Matching @TeX{} Control Sequences

@file{texindex.awk} has to handle input where the command
character may be an @samp{@@} or a @samp{\}. When matching
command strings in regular expressions, if the command character
is a backslash, it must be doubled in order to be treated
literally.  The @code{make_regexp()} function handles this
for us; a @samp{%} in the text of the regexp stands for
the command character and is replaced appropriately.

@cindex @code{make_regexp()} function
@<Helper functions@>=
function make_regexp(regexp,	a, sep, n)
{
	n = split(regexp, a, "%")
	if (Command_char == "\\")
		sep = Command_char Command_char
	else
		sep = Command_char

	return join(a, 1, n, sep)
}
@

@node escape
@subsection @code{escape()}: Escaping Backslashes for Strings

If the command character is a backslash, occurrences of backslash need to be
doubled before the containing string can be used as a regexp. This
function does that job; it's very similar to @code{make_regexp()}
(@pxref{make_regexp}).

@cindex @code{escape()} function
@<Helper functions@>=
function escape(regexp,		a, n)
{
	if (Command_char != "\\")
		return regexp

	n = split(regexp, a, "\\")
	if (n == 1)
		return regexp

	return join(a, 1, n, "\\\\")
}
@

@node min
@subsection @code{min()}: Getting The Minimum of Two Numbers

It'd be nice if @command{awk} had this built-in@enddots{}

@<Helper functions@>=
function min(a, b)
{
	return (a < b ? a : b)
}
@

@node I18N
@section Internationalization

For @command{gawk}, we can arrange for the various messages, e.g., in
the @code{usage()} and @code{version()} functions, to be translated.  We
do this by setting the text domain at startup.  For more information on
internationalization in @command{gawk},
@pxref{Internationalization,,, gawk, GNU Awk User's Guide}.

@cindex @code{TEXTDOMAIN} variable
@<Initial setup@>=
TEXTDOMAIN = "texinfo"
@

@noindent
On non-GNU versions of @command{awk}, this is a harmless
assignment, and the @code{_"..."} construct below is a harmless
concatenation of an unassigned variable @code{_}, i.e., the empty
string, with the following string constant.

The @code{usage()} and @code{version()} functions print the necessary
information and then exit.  The strings that can and should be
translated are prefixed with an underscore.

@cindex @code{Texindex_version} variable
@cindex @code{usage()} function
@cindex @code{version()} function
@cindex @code{EXIT_SUCCESS} constant
@use_smallexample
@<Helper functions@>=
function usage(exit_val)
{
	printf(_"Usage: %s [OPTION]... FILE...\n", Invocation_name)
	print _"Generate a sorted index for each TeX output FILE."
	print _"Usually FILE... is specified as `foo.??' for a document `foo.texi'."
	print ""
	print _"Options:"
	print _" -h, --help   display this help and exit"
	print _" --version    display version information and exit"
	print _" --           end option processing"
	print ""
	print _"Email bug reports to bug-texinfo@gnu.org,"
	print _"general questions and discussion to help-texinfo@gnu.org."
	print _"Texinfo home page: https://www.gnu.org/software/texinfo/"

	exit exit_val
}

function version()
{
	print "texindex (GNU texinfo)", Texindex_version
	print ""
	printf _"Copyright (C) %s Free Software Foundation, Inc.\n", "2019"
	print _"License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>"
	print _"This is free software: you are free to change and redistribute it."
	print _"There is NO WARRANTY, to the extent permitted by law."

	exit EXIT_SUCCESS
}
@
@use_example

@node Index
@unnumbered Index

@printindex cp

@bye