Explain the difference between the per-file log maintained by the
[emacs.git] / lib-src / sorted-doc.c
blobd0c160b8ad8f31e036c1e5fccf0d27f51fa5860b
1 /* Give this program DOC-mm.nn.oo as standard input and it outputs to
2 standard output a file of texinfo input containing the doc strings.
4 Copyright (C) 1989, 1992, 1994, 1996, 1999, 2000, 2001
5 Free Software Foundation Inc.
7 This file is part of GNU Emacs.
9 GNU Emacs is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
14 GNU Emacs is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GNU Emacs; see the file COPYING. If not, write to the
21 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA.
24 This version sorts the output by function name. */
26 #include "config.h"
27 #include <stdio.h>
28 #include <ctype.h>
29 #ifndef HAVE_STDLIB_H /* config.h includes stdlib. */
30 extern char *malloc ();
31 #endif
33 #define NUL '\0'
34 #define MARKER '\037'
36 #define DEBUG 0
38 typedef struct line LINE;
40 struct line
42 LINE *next; /* ptr to next or NULL */
43 char *line; /* text of the line */
46 typedef struct docstr DOCSTR;
48 struct docstr /* Allocated thing for an entry. */
50 DOCSTR *next; /* next in the chain */
51 char *name; /* name of the function or var */
52 LINE *first; /* first line of doc text. */
53 char type; /* 'F' for function, 'V' for variable */
57 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
59 void
60 error (s1, s2)
61 char *s1, *s2;
63 fprintf (stderr, "sorted-doc: ");
64 fprintf (stderr, s1, s2);
65 fprintf (stderr, "\n");
68 /* Print error message and exit. */
70 void
71 fatal (s1, s2)
72 char *s1, *s2;
74 error (s1, s2);
75 exit (1);
78 /* Like malloc but get fatal error if memory is exhausted. */
80 char *
81 xmalloc (size)
82 int size;
84 char *result = malloc ((unsigned)size);
85 if (result == NULL)
86 fatal ("%s", "virtual memory exhausted");
87 return result;
90 char *
91 xstrdup (str)
92 char * str;
94 char *buf = xmalloc (strlen (str) + 1);
95 (void) strcpy (buf, str);
96 return (buf);
99 /* Comparison function for qsort to call. */
102 cmpdoc (a, b)
103 DOCSTR **a;
104 DOCSTR **b;
106 register int val = strcmp ((*a)->name, (*b)->name);
107 if (val) return val;
108 return (*a)->type - (*b)->type;
112 enum state
114 WAITING, BEG_NAME, NAME_GET, BEG_DESC, DESC_GET
117 char *states[] =
119 "WAITING", "BEG_NAME", "NAME_GET", "BEG_DESC", "DESC_GET"
123 main ()
125 register DOCSTR *dp = NULL; /* allocated DOCSTR */
126 register LINE *lp = NULL; /* allocated line */
127 register char *bp; /* ptr inside line buffer */
128 register enum state state = WAITING; /* state at start */
129 int cnt = 0; /* number of DOCSTRs read */
131 DOCSTR *docs; /* chain of allocated DOCSTRS */
132 char buf[512]; /* line buffer */
134 while (1) /* process one char at a time */
136 /* this char from the DOCSTR file */
137 register int ch = getchar ();
139 /* Beginnings */
141 if (state == WAITING)
143 if (ch == MARKER)
144 state = BEG_NAME;
146 else if (state == BEG_NAME)
148 cnt++;
149 if (dp == NULL) /* first dp allocated */
151 docs = dp = (DOCSTR*) xmalloc (sizeof (DOCSTR));
153 else /* all the rest */
155 dp->next = (DOCSTR*) xmalloc (sizeof (DOCSTR));
156 dp = dp->next;
158 lp = NULL;
159 dp->next = NULL;
160 bp = buf;
161 state = NAME_GET;
162 /* Record whether function or variable. */
163 dp->type = ch;
164 ch = getchar ();
166 else if (state == BEG_DESC)
168 if (lp == NULL) /* first line for dp */
170 dp->first = lp = (LINE*)xmalloc (sizeof (LINE));
172 else /* continuing lines */
174 lp->next = (LINE*)xmalloc (sizeof (LINE));
175 lp = lp->next;
177 lp->next = NULL;
178 bp = buf;
179 state = DESC_GET;
182 /* process gets */
184 if (state == NAME_GET || state == DESC_GET)
186 if (ch != MARKER && ch != '\n' && ch != EOF)
188 *bp++ = ch;
190 else /* saving and changing state */
192 *bp = NUL;
193 bp = xstrdup (buf);
195 if (state == NAME_GET)
196 dp->name = bp;
197 else
198 lp->line = bp;
200 bp = buf;
201 state = (ch == MARKER) ? BEG_NAME : BEG_DESC;
203 } /* NAME_GET || DESC_GET */
204 if (ch == EOF)
205 break;
209 DOCSTR **array;
210 register int i; /* counter */
212 /* build array of ptrs to DOCSTRs */
214 array = (DOCSTR**)xmalloc (cnt * sizeof (*array));
215 for (dp = docs, i = 0; dp != NULL ; dp = dp->next)
216 array[i++] = dp;
218 /* sort the array by name; within each name, by type */
220 qsort ((char*)array, cnt, sizeof (DOCSTR*), cmpdoc);
222 /* write the output header */
224 printf ("\\input texinfo @c -*-texinfo-*-\n");
225 printf ("@setfilename ../info/summary\n");
226 printf ("@settitle Command Summary for GNU Emacs\n");
227 printf ("@finalout\n");
228 printf ("@unnumbered Command Summary for GNU Emacs\n");
229 printf ("@table @asis\n");
230 printf ("\n");
231 printf ("@iftex\n");
232 printf ("@global@let@ITEM@item\n");
233 printf ("@def@item{@filbreak@vskip5pt@ITEM}\n");
234 printf ("@font@tensy cmsy10 scaled @magstephalf\n");
235 printf ("@font@teni cmmi10 scaled @magstephalf\n");
236 printf ("@def\\{{@tensy@char110}}\n"); /* this backslash goes with cmr10 */
237 printf ("@def|{{@tensy@char106}}\n");
238 printf ("@def@{{{@tensy@char102}}\n");
239 printf ("@def@}{{@tensy@char103}}\n");
240 printf ("@def<{{@teni@char62}}\n");
241 printf ("@def>{{@teni@char60}}\n");
242 printf ("@chardef@@64\n");
243 printf ("@catcode43=12\n");
244 printf ("@tableindent-0.2in\n");
245 printf ("@end iftex\n");
247 /* print each function from the array */
249 for (i = 0; i < cnt; i++)
251 printf ("\n@item %s @code{%s}\n@display\n",
252 array[i]->type == 'F' ? "Function" : "Variable",
253 array[i]->name);
255 for (lp = array[i]->first; lp != NULL ; lp = lp->next)
257 for (bp = lp->line; *bp; bp++)
259 /* the characters "@{}" need special treatment */
260 if (*bp == '@' || *bp == '{' || *bp == '}')
262 putchar('@');
264 putchar(*bp);
266 putchar ('\n');
268 printf("@end display\n");
269 /* Try to avoid a save size overflow in the TeX output
270 routine. */
271 if (i%100 == 0 && i > 0 && i != cnt)
272 printf("\n@end table\n@table @asis\n");
275 printf ("@end table\n");
276 printf ("@bye\n");
279 return 0;