]> code.delx.au - gnu-emacs/blob - lib-src/etags.c
Update copyright year to 2016
[gnu-emacs] / lib-src / etags.c
1 /* Tags file maker to go with GNU Emacs -*- coding: utf-8 -*-
2
3 Copyright (C) 1984 The Regents of the University of California
4
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are
7 met:
8 1. Redistributions of source code must retain the above copyright
9 notice, this list of conditions and the following disclaimer.
10 2. Redistributions in binary form must reproduce the above copyright
11 notice, this list of conditions and the following disclaimer in the
12 documentation and/or other materials provided with the
13 distribution.
14 3. Neither the name of the University nor the names of its
15 contributors may be used to endorse or promote products derived
16 from this software without specific prior written permission.
17
18 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS''
19 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
20 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS
22 BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
25 BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
27 OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
28 IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30
31 Copyright (C) 1984, 1987-1989, 1993-1995, 1998-2016 Free Software
32 Foundation, Inc.
33
34 This file is not considered part of GNU Emacs.
35
36 This program is free software: you can redistribute it and/or modify
37 it under the terms of the GNU General Public License as published by
38 the Free Software Foundation, either version 3 of the License, or
39 (at your option) any later version.
40
41 This program is distributed in the hope that it will be useful,
42 but WITHOUT ANY WARRANTY; without even the implied warranty of
43 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
44 GNU General Public License for more details.
45
46 You should have received a copy of the GNU General Public License
47 along with this program. If not, see <http://www.gnu.org/licenses/>. */
48
49
50 /* NB To comply with the above BSD license, copyright information is
51 reproduced in etc/ETAGS.README. That file should be updated when the
52 above notices are.
53
54 To the best of our knowledge, this code was originally based on the
55 ctags.c distributed with BSD4.2, which was copyrighted by the
56 University of California, as described above. */
57
58
59 /*
60 * Authors:
61 * 1983 Ctags originally by Ken Arnold.
62 * 1984 Fortran added by Jim Kleckner.
63 * 1984 Ed Pelegri-Llopart added C typedefs.
64 * 1985 Emacs TAGS format by Richard Stallman.
65 * 1989 Sam Kendall added C++.
66 * 1992 Joseph B. Wells improved C and C++ parsing.
67 * 1993 Francesco Potortì reorganized C and C++.
68 * 1994 Line-by-line regexp tags by Tom Tromey.
69 * 2001 Nested classes by Francesco Potortì (concept by Mykola Dzyuba).
70 * 2002 #line directives by Francesco Potortì.
71 * Francesco Potortì maintained and improved it for many years
72 starting in 1993.
73 */
74
75 /*
76 * If you want to add support for a new language, start by looking at the LUA
77 * language, which is the simplest. Alternatively, consider distributing etags
78 * together with a configuration file containing regexp definitions for etags.
79 */
80
81 char pot_etags_version[] = "@(#) pot revision number is 17.38.1.4";
82
83 #ifdef DEBUG
84 # undef DEBUG
85 # define DEBUG true
86 #else
87 # define DEBUG false
88 # define NDEBUG /* disable assert */
89 #endif
90
91 #include <config.h>
92
93 #ifndef _GNU_SOURCE
94 # define _GNU_SOURCE 1 /* enables some compiler checks on GNU */
95 #endif
96
97 /* WIN32_NATIVE is for XEmacs.
98 MSDOS, WINDOWSNT, DOS_NT are for Emacs. */
99 #ifdef WIN32_NATIVE
100 # undef MSDOS
101 # undef WINDOWSNT
102 # define WINDOWSNT
103 #endif /* WIN32_NATIVE */
104
105 #ifdef MSDOS
106 # undef MSDOS
107 # define MSDOS true
108 # include <sys/param.h>
109 #else
110 # define MSDOS false
111 #endif /* MSDOS */
112
113 #ifdef WINDOWSNT
114 # include <direct.h>
115 # define MAXPATHLEN _MAX_PATH
116 # undef HAVE_NTGUI
117 # undef DOS_NT
118 # define DOS_NT
119 # define O_CLOEXEC O_NOINHERIT
120 #endif /* WINDOWSNT */
121
122 #include <limits.h>
123 #include <unistd.h>
124 #include <stdarg.h>
125 #include <stdlib.h>
126 #include <string.h>
127 #include <sysstdio.h>
128 #include <errno.h>
129 #include <fcntl.h>
130 #include <binary-io.h>
131 #include <c-ctype.h>
132 #include <c-strcase.h>
133
134 #include <assert.h>
135 #ifdef NDEBUG
136 # undef assert /* some systems have a buggy assert.h */
137 # define assert(x) ((void) 0)
138 #endif
139
140 #include <getopt.h>
141 #include <regex.h>
142
143 /* Define CTAGS to make the program "ctags" compatible with the usual one.
144 Leave it undefined to make the program "etags", which makes emacs-style
145 tag tables and tags typedefs, #defines and struct/union/enum by default. */
146 #ifdef CTAGS
147 # undef CTAGS
148 # define CTAGS true
149 #else
150 # define CTAGS false
151 #endif
152
153 static bool
154 streq (char const *s, char const *t)
155 {
156 return strcmp (s, t) == 0;
157 }
158
159 static bool
160 strcaseeq (char const *s, char const *t)
161 {
162 return c_strcasecmp (s, t) == 0;
163 }
164
165 static bool
166 strneq (char const *s, char const *t, size_t n)
167 {
168 return strncmp (s, t, n) == 0;
169 }
170
171 static bool
172 strncaseeq (char const *s, char const *t, size_t n)
173 {
174 return c_strncasecmp (s, t, n) == 0;
175 }
176
177 /* C is not in a name. */
178 static bool
179 notinname (unsigned char c)
180 {
181 /* Look at make_tag before modifying! */
182 static bool const table[UCHAR_MAX + 1] = {
183 ['\0']=1, ['\t']=1, ['\n']=1, ['\f']=1, ['\r']=1, [' ']=1,
184 ['(']=1, [')']=1, [',']=1, [';']=1, ['=']=1
185 };
186 return table[c];
187 }
188
189 /* C can start a token. */
190 static bool
191 begtoken (unsigned char c)
192 {
193 static bool const table[UCHAR_MAX + 1] = {
194 ['$']=1, ['@']=1,
195 ['A']=1, ['B']=1, ['C']=1, ['D']=1, ['E']=1, ['F']=1, ['G']=1, ['H']=1,
196 ['I']=1, ['J']=1, ['K']=1, ['L']=1, ['M']=1, ['N']=1, ['O']=1, ['P']=1,
197 ['Q']=1, ['R']=1, ['S']=1, ['T']=1, ['U']=1, ['V']=1, ['W']=1, ['X']=1,
198 ['Y']=1, ['Z']=1,
199 ['_']=1,
200 ['a']=1, ['b']=1, ['c']=1, ['d']=1, ['e']=1, ['f']=1, ['g']=1, ['h']=1,
201 ['i']=1, ['j']=1, ['k']=1, ['l']=1, ['m']=1, ['n']=1, ['o']=1, ['p']=1,
202 ['q']=1, ['r']=1, ['s']=1, ['t']=1, ['u']=1, ['v']=1, ['w']=1, ['x']=1,
203 ['y']=1, ['z']=1,
204 ['~']=1
205 };
206 return table[c];
207 }
208
209 /* C can be in the middle of a token. */
210 static bool
211 intoken (unsigned char c)
212 {
213 static bool const table[UCHAR_MAX + 1] = {
214 ['$']=1,
215 ['0']=1, ['1']=1, ['2']=1, ['3']=1, ['4']=1,
216 ['5']=1, ['6']=1, ['7']=1, ['8']=1, ['9']=1,
217 ['A']=1, ['B']=1, ['C']=1, ['D']=1, ['E']=1, ['F']=1, ['G']=1, ['H']=1,
218 ['I']=1, ['J']=1, ['K']=1, ['L']=1, ['M']=1, ['N']=1, ['O']=1, ['P']=1,
219 ['Q']=1, ['R']=1, ['S']=1, ['T']=1, ['U']=1, ['V']=1, ['W']=1, ['X']=1,
220 ['Y']=1, ['Z']=1,
221 ['_']=1,
222 ['a']=1, ['b']=1, ['c']=1, ['d']=1, ['e']=1, ['f']=1, ['g']=1, ['h']=1,
223 ['i']=1, ['j']=1, ['k']=1, ['l']=1, ['m']=1, ['n']=1, ['o']=1, ['p']=1,
224 ['q']=1, ['r']=1, ['s']=1, ['t']=1, ['u']=1, ['v']=1, ['w']=1, ['x']=1,
225 ['y']=1, ['z']=1
226 };
227 return table[c];
228 }
229
230 /* C can end a token. */
231 static bool
232 endtoken (unsigned char c)
233 {
234 static bool const table[UCHAR_MAX + 1] = {
235 ['\0']=1, ['\t']=1, ['\n']=1, ['\r']=1, [' ']=1,
236 ['!']=1, ['"']=1, ['#']=1, ['%']=1, ['&']=1, ['\'']=1, ['(']=1, [')']=1,
237 ['*']=1, ['+']=1, [',']=1, ['-']=1, ['.']=1, ['/']=1, [':']=1, [';']=1,
238 ['<']=1, ['=']=1, ['>']=1, ['?']=1, ['[']=1, [']']=1, ['^']=1,
239 ['{']=1, ['|']=1, ['}']=1, ['~']=1
240 };
241 return table[c];
242 }
243
244 /*
245 * xnew, xrnew -- allocate, reallocate storage
246 *
247 * SYNOPSIS: Type *xnew (int n, Type);
248 * void xrnew (OldPointer, int n, Type);
249 */
250 #define xnew(n, Type) ((Type *) xmalloc ((n) * sizeof (Type)))
251 #define xrnew(op, n, Type) ((op) = (Type *) xrealloc (op, (n) * sizeof (Type)))
252
253 typedef void Lang_function (FILE *);
254
255 typedef struct
256 {
257 const char *suffix; /* file name suffix for this compressor */
258 const char *command; /* takes one arg and decompresses to stdout */
259 } compressor;
260
261 typedef struct
262 {
263 const char *name; /* language name */
264 const char *help; /* detailed help for the language */
265 Lang_function *function; /* parse function */
266 const char **suffixes; /* name suffixes of this language's files */
267 const char **filenames; /* names of this language's files */
268 const char **interpreters; /* interpreters for this language */
269 bool metasource; /* source used to generate other sources */
270 } language;
271
272 typedef struct fdesc
273 {
274 struct fdesc *next; /* for the linked list */
275 char *infname; /* uncompressed input file name */
276 char *infabsname; /* absolute uncompressed input file name */
277 char *infabsdir; /* absolute dir of input file */
278 char *taggedfname; /* file name to write in tagfile */
279 language *lang; /* language of file */
280 char *prop; /* file properties to write in tagfile */
281 bool usecharno; /* etags tags shall contain char number */
282 bool written; /* entry written in the tags file */
283 } fdesc;
284
285 typedef struct node_st
286 { /* sorting structure */
287 struct node_st *left, *right; /* left and right sons */
288 fdesc *fdp; /* description of file to whom tag belongs */
289 char *name; /* tag name */
290 char *regex; /* search regexp */
291 bool valid; /* write this tag on the tag file */
292 bool is_func; /* function tag: use regexp in CTAGS mode */
293 bool been_warned; /* warning already given for duplicated tag */
294 int lno; /* line number tag is on */
295 long cno; /* character number line starts on */
296 } node;
297
298 /*
299 * A `linebuffer' is a structure which holds a line of text.
300 * `readline_internal' reads a line from a stream into a linebuffer
301 * and works regardless of the length of the line.
302 * SIZE is the size of BUFFER, LEN is the length of the string in
303 * BUFFER after readline reads it.
304 */
305 typedef struct
306 {
307 long size;
308 int len;
309 char *buffer;
310 } linebuffer;
311
312 /* Used to support mixing of --lang and file names. */
313 typedef struct
314 {
315 enum {
316 at_language, /* a language specification */
317 at_regexp, /* a regular expression */
318 at_filename, /* a file name */
319 at_stdin, /* read from stdin here */
320 at_end /* stop parsing the list */
321 } arg_type; /* argument type */
322 language *lang; /* language associated with the argument */
323 char *what; /* the argument itself */
324 } argument;
325
326 /* Structure defining a regular expression. */
327 typedef struct regexp
328 {
329 struct regexp *p_next; /* pointer to next in list */
330 language *lang; /* if set, use only for this language */
331 char *pattern; /* the regexp pattern */
332 char *name; /* tag name */
333 struct re_pattern_buffer *pat; /* the compiled pattern */
334 struct re_registers regs; /* re registers */
335 bool error_signaled; /* already signaled for this regexp */
336 bool force_explicit_name; /* do not allow implicit tag name */
337 bool ignore_case; /* ignore case when matching */
338 bool multi_line; /* do a multi-line match on the whole file */
339 } regexp;
340
341
342 /* Many compilers barf on this:
343 Lang_function Ada_funcs;
344 so let's write it this way */
345 static void Ada_funcs (FILE *);
346 static void Asm_labels (FILE *);
347 static void C_entries (int c_ext, FILE *);
348 static void default_C_entries (FILE *);
349 static void plain_C_entries (FILE *);
350 static void Cjava_entries (FILE *);
351 static void Cobol_paragraphs (FILE *);
352 static void Cplusplus_entries (FILE *);
353 static void Cstar_entries (FILE *);
354 static void Erlang_functions (FILE *);
355 static void Forth_words (FILE *);
356 static void Fortran_functions (FILE *);
357 static void HTML_labels (FILE *);
358 static void Lisp_functions (FILE *);
359 static void Lua_functions (FILE *);
360 static void Makefile_targets (FILE *);
361 static void Pascal_functions (FILE *);
362 static void Perl_functions (FILE *);
363 static void PHP_functions (FILE *);
364 static void PS_functions (FILE *);
365 static void Prolog_functions (FILE *);
366 static void Python_functions (FILE *);
367 static void Ruby_functions (FILE *);
368 static void Scheme_functions (FILE *);
369 static void TeX_commands (FILE *);
370 static void Texinfo_nodes (FILE *);
371 static void Yacc_entries (FILE *);
372 static void just_read_file (FILE *);
373
374 static language *get_language_from_langname (const char *);
375 static void readline (linebuffer *, FILE *);
376 static long readline_internal (linebuffer *, FILE *, char const *);
377 static bool nocase_tail (const char *);
378 static void get_tag (char *, char **);
379
380 static void analyze_regex (char *);
381 static void free_regexps (void);
382 static void regex_tag_multiline (void);
383 static void error (const char *, ...) ATTRIBUTE_FORMAT_PRINTF (1, 2);
384 static void verror (char const *, va_list) ATTRIBUTE_FORMAT_PRINTF (1, 0);
385 static _Noreturn void suggest_asking_for_help (void);
386 static _Noreturn void fatal (char const *, ...) ATTRIBUTE_FORMAT_PRINTF (1, 2);
387 static _Noreturn void pfatal (const char *);
388 static void add_node (node *, node **);
389
390 static void process_file_name (char *, language *);
391 static void process_file (FILE *, char *, language *);
392 static void find_entries (FILE *);
393 static void free_tree (node *);
394 static void free_fdesc (fdesc *);
395 static void pfnote (char *, bool, char *, int, int, long);
396 static void invalidate_nodes (fdesc *, node **);
397 static void put_entries (node *);
398
399 static char *concat (const char *, const char *, const char *);
400 static char *skip_spaces (char *);
401 static char *skip_non_spaces (char *);
402 static char *skip_name (char *);
403 static char *savenstr (const char *, int);
404 static char *savestr (const char *);
405 static char *etags_getcwd (void);
406 static char *relative_filename (char *, char *);
407 static char *absolute_filename (char *, char *);
408 static char *absolute_dirname (char *, char *);
409 static bool filename_is_absolute (char *f);
410 static void canonicalize_filename (char *);
411 static char *etags_mktmp (void);
412 static void linebuffer_init (linebuffer *);
413 static void linebuffer_setlen (linebuffer *, int);
414 static void *xmalloc (size_t);
415 static void *xrealloc (void *, size_t);
416
417 \f
418 static char searchar = '/'; /* use /.../ searches */
419
420 static char *tagfile; /* output file */
421 static char *progname; /* name this program was invoked with */
422 static char *cwd; /* current working directory */
423 static char *tagfiledir; /* directory of tagfile */
424 static FILE *tagf; /* ioptr for tags file */
425 static ptrdiff_t whatlen_max; /* maximum length of any 'what' member */
426
427 static fdesc *fdhead; /* head of file description list */
428 static fdesc *curfdp; /* current file description */
429 static char *infilename; /* current input file name */
430 static int lineno; /* line number of current line */
431 static long charno; /* current character number */
432 static long linecharno; /* charno of start of current line */
433 static char *dbp; /* pointer to start of current tag */
434
435 static const int invalidcharno = -1;
436
437 static node *nodehead; /* the head of the binary tree of tags */
438 static node *last_node; /* the last node created */
439
440 static linebuffer lb; /* the current line */
441 static linebuffer filebuf; /* a buffer containing the whole file */
442 static linebuffer token_name; /* a buffer containing a tag name */
443
444 static bool append_to_tagfile; /* -a: append to tags */
445 /* The next five default to true in C and derived languages. */
446 static bool typedefs; /* -t: create tags for C and Ada typedefs */
447 static bool typedefs_or_cplusplus; /* -T: create tags for C typedefs, level */
448 /* 0 struct/enum/union decls, and C++ */
449 /* member functions. */
450 static bool constantypedefs; /* -d: create tags for C #define, enum */
451 /* constants and variables. */
452 /* -D: opposite of -d. Default under ctags. */
453 static int globals; /* create tags for global variables */
454 static int members; /* create tags for C member variables */
455 static int declarations; /* --declarations: tag them and extern in C&Co*/
456 static int no_line_directive; /* ignore #line directives (undocumented) */
457 static int no_duplicates; /* no duplicate tags for ctags (undocumented) */
458 static bool update; /* -u: update tags */
459 static bool vgrind_style; /* -v: create vgrind style index output */
460 static bool no_warnings; /* -w: suppress warnings (undocumented) */
461 static bool cxref_style; /* -x: create cxref style output */
462 static bool cplusplus; /* .[hc] means C++, not C (undocumented) */
463 static bool ignoreindent; /* -I: ignore indentation in C */
464 static int packages_only; /* --packages-only: in Ada, only tag packages*/
465 static int class_qualify; /* -Q: produce class-qualified tags in C++/Java */
466
467 /* STDIN is defined in LynxOS system headers */
468 #ifdef STDIN
469 # undef STDIN
470 #endif
471
472 #define STDIN 0x1001 /* returned by getopt_long on --parse-stdin */
473 static bool parsing_stdin; /* --parse-stdin used */
474
475 static regexp *p_head; /* list of all regexps */
476 static bool need_filebuf; /* some regexes are multi-line */
477
478 static struct option longopts[] =
479 {
480 { "append", no_argument, NULL, 'a' },
481 { "packages-only", no_argument, &packages_only, 1 },
482 { "c++", no_argument, NULL, 'C' },
483 { "declarations", no_argument, &declarations, 1 },
484 { "no-line-directive", no_argument, &no_line_directive, 1 },
485 { "no-duplicates", no_argument, &no_duplicates, 1 },
486 { "help", no_argument, NULL, 'h' },
487 { "help", no_argument, NULL, 'H' },
488 { "ignore-indentation", no_argument, NULL, 'I' },
489 { "language", required_argument, NULL, 'l' },
490 { "members", no_argument, &members, 1 },
491 { "no-members", no_argument, &members, 0 },
492 { "output", required_argument, NULL, 'o' },
493 { "class-qualify", no_argument, &class_qualify, 'Q' },
494 { "regex", required_argument, NULL, 'r' },
495 { "no-regex", no_argument, NULL, 'R' },
496 { "ignore-case-regex", required_argument, NULL, 'c' },
497 { "parse-stdin", required_argument, NULL, STDIN },
498 { "version", no_argument, NULL, 'V' },
499
500 #if CTAGS /* Ctags options */
501 { "backward-search", no_argument, NULL, 'B' },
502 { "cxref", no_argument, NULL, 'x' },
503 { "defines", no_argument, NULL, 'd' },
504 { "globals", no_argument, &globals, 1 },
505 { "typedefs", no_argument, NULL, 't' },
506 { "typedefs-and-c++", no_argument, NULL, 'T' },
507 { "update", no_argument, NULL, 'u' },
508 { "vgrind", no_argument, NULL, 'v' },
509 { "no-warn", no_argument, NULL, 'w' },
510
511 #else /* Etags options */
512 { "no-defines", no_argument, NULL, 'D' },
513 { "no-globals", no_argument, &globals, 0 },
514 { "include", required_argument, NULL, 'i' },
515 #endif
516 { NULL }
517 };
518
519 static compressor compressors[] =
520 {
521 { "z", "gzip -d -c"},
522 { "Z", "gzip -d -c"},
523 { "gz", "gzip -d -c"},
524 { "GZ", "gzip -d -c"},
525 { "bz2", "bzip2 -d -c" },
526 { "xz", "xz -d -c" },
527 { NULL }
528 };
529
530 /*
531 * Language stuff.
532 */
533
534 /* Ada code */
535 static const char *Ada_suffixes [] =
536 { "ads", "adb", "ada", NULL };
537 static const char Ada_help [] =
538 "In Ada code, functions, procedures, packages, tasks and types are\n\
539 tags. Use the '--packages-only' option to create tags for\n\
540 packages only.\n\
541 Ada tag names have suffixes indicating the type of entity:\n\
542 Entity type: Qualifier:\n\
543 ------------ ----------\n\
544 function /f\n\
545 procedure /p\n\
546 package spec /s\n\
547 package body /b\n\
548 type /t\n\
549 task /k\n\
550 Thus, 'M-x find-tag <RET> bidule/b <RET>' will go directly to the\n\
551 body of the package 'bidule', while 'M-x find-tag <RET> bidule <RET>'\n\
552 will just search for any tag 'bidule'.";
553
554 /* Assembly code */
555 static const char *Asm_suffixes [] =
556 { "a", /* Unix assembler */
557 "asm", /* Microcontroller assembly */
558 "def", /* BSO/Tasking definition includes */
559 "inc", /* Microcontroller include files */
560 "ins", /* Microcontroller include files */
561 "s", "sa", /* Unix assembler */
562 "S", /* cpp-processed Unix assembler */
563 "src", /* BSO/Tasking C compiler output */
564 NULL
565 };
566 static const char Asm_help [] =
567 "In assembler code, labels appearing at the beginning of a line,\n\
568 followed by a colon, are tags.";
569
570
571 /* Note that .c and .h can be considered C++, if the --c++ flag was
572 given, or if the `class' or `template' keywords are met inside the file.
573 That is why default_C_entries is called for these. */
574 static const char *default_C_suffixes [] =
575 { "c", "h", NULL };
576 #if CTAGS /* C help for Ctags */
577 static const char default_C_help [] =
578 "In C code, any C function is a tag. Use -t to tag typedefs.\n\
579 Use -T to tag definitions of 'struct', 'union' and 'enum'.\n\
580 Use -d to tag '#define' macro definitions and 'enum' constants.\n\
581 Use --globals to tag global variables.\n\
582 You can tag function declarations and external variables by\n\
583 using '--declarations', and struct members by using '--members'.";
584 #else /* C help for Etags */
585 static const char default_C_help [] =
586 "In C code, any C function or typedef is a tag, and so are\n\
587 definitions of 'struct', 'union' and 'enum'. '#define' macro\n\
588 definitions and 'enum' constants are tags unless you specify\n\
589 '--no-defines'. Global variables are tags unless you specify\n\
590 '--no-globals' and so are struct members unless you specify\n\
591 '--no-members'. Use of '--no-globals', '--no-defines' and\n\
592 '--no-members' can make the tags table file much smaller.\n\
593 You can tag function declarations and external variables by\n\
594 using '--declarations'.";
595 #endif /* C help for Ctags and Etags */
596
597 static const char *Cplusplus_suffixes [] =
598 { "C", "c++", "cc", "cpp", "cxx", "H", "h++", "hh", "hpp", "hxx",
599 "M", /* Objective C++ */
600 "pdb", /* PostScript with C syntax */
601 NULL };
602 static const char Cplusplus_help [] =
603 "In C++ code, all the tag constructs of C code are tagged. (Use\n\
604 --help --lang=c --lang=c++ for full help.)\n\
605 In addition to C tags, member functions are also recognized. Member\n\
606 variables are recognized unless you use the '--no-members' option.\n\
607 Tags for variables and functions in classes are named 'CLASS::VARIABLE'\n\
608 and 'CLASS::FUNCTION'. 'operator' definitions have tag names like\n\
609 'operator+'.";
610
611 static const char *Cjava_suffixes [] =
612 { "java", NULL };
613 static char Cjava_help [] =
614 "In Java code, all the tags constructs of C and C++ code are\n\
615 tagged. (Use --help --lang=c --lang=c++ --lang=java for full help.)";
616
617
618 static const char *Cobol_suffixes [] =
619 { "COB", "cob", NULL };
620 static char Cobol_help [] =
621 "In Cobol code, tags are paragraph names; that is, any word\n\
622 starting in column 8 and followed by a period.";
623
624 static const char *Cstar_suffixes [] =
625 { "cs", "hs", NULL };
626
627 static const char *Erlang_suffixes [] =
628 { "erl", "hrl", NULL };
629 static const char Erlang_help [] =
630 "In Erlang code, the tags are the functions, records and macros\n\
631 defined in the file.";
632
633 const char *Forth_suffixes [] =
634 { "fth", "tok", NULL };
635 static const char Forth_help [] =
636 "In Forth code, tags are words defined by ':',\n\
637 constant, code, create, defer, value, variable, buffer:, field.";
638
639 static const char *Fortran_suffixes [] =
640 { "F", "f", "f90", "for", NULL };
641 static const char Fortran_help [] =
642 "In Fortran code, functions, subroutines and block data are tags.";
643
644 static const char *HTML_suffixes [] =
645 { "htm", "html", "shtml", NULL };
646 static const char HTML_help [] =
647 "In HTML input files, the tags are the 'title' and the 'h1', 'h2',\n\
648 'h3' headers. Also, tags are 'name=' in anchors and all\n\
649 occurrences of 'id='.";
650
651 static const char *Lisp_suffixes [] =
652 { "cl", "clisp", "el", "l", "lisp", "LSP", "lsp", "ml", NULL };
653 static const char Lisp_help [] =
654 "In Lisp code, any function defined with 'defun', any variable\n\
655 defined with 'defvar' or 'defconst', and in general the first\n\
656 argument of any expression that starts with '(def' in column zero\n\
657 is a tag.\n\
658 The '--declarations' option tags \"(defvar foo)\" constructs too.";
659
660 static const char *Lua_suffixes [] =
661 { "lua", "LUA", NULL };
662 static const char Lua_help [] =
663 "In Lua scripts, all functions are tags.";
664
665 static const char *Makefile_filenames [] =
666 { "Makefile", "makefile", "GNUMakefile", "Makefile.in", "Makefile.am", NULL};
667 static const char Makefile_help [] =
668 "In makefiles, targets are tags; additionally, variables are tags\n\
669 unless you specify '--no-globals'.";
670
671 static const char *Objc_suffixes [] =
672 { "lm", /* Objective lex file */
673 "m", /* Objective C file */
674 NULL };
675 static const char Objc_help [] =
676 "In Objective C code, tags include Objective C definitions for classes,\n\
677 class categories, methods and protocols. Tags for variables and\n\
678 functions in classes are named 'CLASS::VARIABLE' and 'CLASS::FUNCTION'.\n\
679 (Use --help --lang=c --lang=objc --lang=java for full help.)";
680
681 static const char *Pascal_suffixes [] =
682 { "p", "pas", NULL };
683 static const char Pascal_help [] =
684 "In Pascal code, the tags are the functions and procedures defined\n\
685 in the file.";
686 /* " // this is for working around an Emacs highlighting bug... */
687
688 static const char *Perl_suffixes [] =
689 { "pl", "pm", NULL };
690 static const char *Perl_interpreters [] =
691 { "perl", "@PERL@", NULL };
692 static const char Perl_help [] =
693 "In Perl code, the tags are the packages, subroutines and variables\n\
694 defined by the 'package', 'sub', 'my' and 'local' keywords. Use\n\
695 '--globals' if you want to tag global variables. Tags for\n\
696 subroutines are named 'PACKAGE::SUB'. The name for subroutines\n\
697 defined in the default package is 'main::SUB'.";
698
699 static const char *PHP_suffixes [] =
700 { "php", "php3", "php4", NULL };
701 static const char PHP_help [] =
702 "In PHP code, tags are functions, classes and defines. Unless you use\n\
703 the '--no-members' option, vars are tags too.";
704
705 static const char *plain_C_suffixes [] =
706 { "pc", /* Pro*C file */
707 NULL };
708
709 static const char *PS_suffixes [] =
710 { "ps", "psw", NULL }; /* .psw is for PSWrap */
711 static const char PS_help [] =
712 "In PostScript code, the tags are the functions.";
713
714 static const char *Prolog_suffixes [] =
715 { "prolog", NULL };
716 static const char Prolog_help [] =
717 "In Prolog code, tags are predicates and rules at the beginning of\n\
718 line.";
719
720 static const char *Python_suffixes [] =
721 { "py", NULL };
722 static const char Python_help [] =
723 "In Python code, 'def' or 'class' at the beginning of a line\n\
724 generate a tag.";
725
726 static const char *Ruby_suffixes [] =
727 { "rb", "ruby", NULL };
728 static const char Ruby_help [] =
729 "In Ruby code, 'def' or 'class' or 'module' at the beginning of\n\
730 a line generate a tag.";
731
732 /* Can't do the `SCM' or `scm' prefix with a version number. */
733 static const char *Scheme_suffixes [] =
734 { "oak", "sch", "scheme", "SCM", "scm", "SM", "sm", "ss", "t", NULL };
735 static const char Scheme_help [] =
736 "In Scheme code, tags include anything defined with 'def' or with a\n\
737 construct whose name starts with 'def'. They also include\n\
738 variables set with 'set!' at top level in the file.";
739
740 static const char *TeX_suffixes [] =
741 { "bib", "clo", "cls", "ltx", "sty", "TeX", "tex", NULL };
742 static const char TeX_help [] =
743 "In LaTeX text, the argument of any of the commands '\\chapter',\n\
744 '\\section', '\\subsection', '\\subsubsection', '\\eqno', '\\label',\n\
745 '\\ref', '\\cite', '\\bibitem', '\\part', '\\appendix', '\\entry',\n\
746 '\\index', '\\def', '\\newcommand', '\\renewcommand',\n\
747 '\\newenvironment' or '\\renewenvironment' is a tag.\n\
748 \n\
749 Other commands can be specified by setting the environment variable\n\
750 'TEXTAGS' to a colon-separated list like, for example,\n\
751 TEXTAGS=\"mycommand:myothercommand\".";
752
753
754 static const char *Texinfo_suffixes [] =
755 { "texi", "texinfo", "txi", NULL };
756 static const char Texinfo_help [] =
757 "for texinfo files, lines starting with @node are tagged.";
758
759 static const char *Yacc_suffixes [] =
760 { "y", "y++", "ym", "yxx", "yy", NULL }; /* .ym is Objective yacc file */
761 static const char Yacc_help [] =
762 "In Bison or Yacc input files, each rule defines as a tag the\n\
763 nonterminal it constructs. The portions of the file that contain\n\
764 C code are parsed as C code (use --help --lang=c --lang=yacc\n\
765 for full help).";
766
767 static const char auto_help [] =
768 "'auto' is not a real language, it indicates to use\n\
769 a default language for files base on file name suffix and file contents.";
770
771 static const char none_help [] =
772 "'none' is not a real language, it indicates to only do\n\
773 regexp processing on files.";
774
775 static const char no_lang_help [] =
776 "No detailed help available for this language.";
777
778
779 /*
780 * Table of languages.
781 *
782 * It is ok for a given function to be listed under more than one
783 * name. I just didn't.
784 */
785
786 static language lang_names [] =
787 {
788 { "ada", Ada_help, Ada_funcs, Ada_suffixes },
789 { "asm", Asm_help, Asm_labels, Asm_suffixes },
790 { "c", default_C_help, default_C_entries, default_C_suffixes },
791 { "c++", Cplusplus_help, Cplusplus_entries, Cplusplus_suffixes },
792 { "c*", no_lang_help, Cstar_entries, Cstar_suffixes },
793 { "cobol", Cobol_help, Cobol_paragraphs, Cobol_suffixes },
794 { "erlang", Erlang_help, Erlang_functions, Erlang_suffixes },
795 { "forth", Forth_help, Forth_words, Forth_suffixes },
796 { "fortran", Fortran_help, Fortran_functions, Fortran_suffixes },
797 { "html", HTML_help, HTML_labels, HTML_suffixes },
798 { "java", Cjava_help, Cjava_entries, Cjava_suffixes },
799 { "lisp", Lisp_help, Lisp_functions, Lisp_suffixes },
800 { "lua", Lua_help, Lua_functions, Lua_suffixes },
801 { "makefile", Makefile_help,Makefile_targets,NULL,Makefile_filenames},
802 { "objc", Objc_help, plain_C_entries, Objc_suffixes },
803 { "pascal", Pascal_help, Pascal_functions, Pascal_suffixes },
804 { "perl",Perl_help,Perl_functions,Perl_suffixes,NULL,Perl_interpreters},
805 { "php", PHP_help, PHP_functions, PHP_suffixes },
806 { "postscript",PS_help, PS_functions, PS_suffixes },
807 { "proc", no_lang_help, plain_C_entries, plain_C_suffixes },
808 { "prolog", Prolog_help, Prolog_functions, Prolog_suffixes },
809 { "python", Python_help, Python_functions, Python_suffixes },
810 { "ruby", Ruby_help, Ruby_functions, Ruby_suffixes },
811 { "scheme", Scheme_help, Scheme_functions, Scheme_suffixes },
812 { "tex", TeX_help, TeX_commands, TeX_suffixes },
813 { "texinfo", Texinfo_help, Texinfo_nodes, Texinfo_suffixes },
814 { "yacc", Yacc_help,Yacc_entries,Yacc_suffixes,NULL,NULL,true},
815 { "auto", auto_help }, /* default guessing scheme */
816 { "none", none_help, just_read_file }, /* regexp matching only */
817 { NULL } /* end of list */
818 };
819
820 \f
821 static void
822 print_language_names (void)
823 {
824 language *lang;
825 const char **name, **ext;
826
827 puts ("\nThese are the currently supported languages, along with the\n\
828 default file names and dot suffixes:");
829 for (lang = lang_names; lang->name != NULL; lang++)
830 {
831 printf (" %-*s", 10, lang->name);
832 if (lang->filenames != NULL)
833 for (name = lang->filenames; *name != NULL; name++)
834 printf (" %s", *name);
835 if (lang->suffixes != NULL)
836 for (ext = lang->suffixes; *ext != NULL; ext++)
837 printf (" .%s", *ext);
838 puts ("");
839 }
840 puts ("where 'auto' means use default language for files based on file\n\
841 name suffix, and 'none' means only do regexp processing on files.\n\
842 If no language is specified and no matching suffix is found,\n\
843 the first line of the file is read for a sharp-bang (#!) sequence\n\
844 followed by the name of an interpreter. If no such sequence is found,\n\
845 Fortran is tried first; if no tags are found, C is tried next.\n\
846 When parsing any C file, a \"class\" or \"template\" keyword\n\
847 switches to C++.");
848 puts ("Compressed files are supported using gzip, bzip2, and xz.\n\
849 \n\
850 For detailed help on a given language use, for example,\n\
851 etags --help --lang=ada.");
852 }
853
854 #ifndef EMACS_NAME
855 # define EMACS_NAME "standalone"
856 #endif
857 #ifndef VERSION
858 # define VERSION "17.38.1.4"
859 #endif
860 static _Noreturn void
861 print_version (void)
862 {
863 char emacs_copyright[] = COPYRIGHT;
864
865 printf ("%s (%s %s)\n", (CTAGS) ? "ctags" : "etags", EMACS_NAME, VERSION);
866 puts (emacs_copyright);
867 puts ("This program is distributed under the terms in ETAGS.README");
868
869 exit (EXIT_SUCCESS);
870 }
871
872 #ifndef PRINT_UNDOCUMENTED_OPTIONS_HELP
873 # define PRINT_UNDOCUMENTED_OPTIONS_HELP false
874 #endif
875
876 static _Noreturn void
877 print_help (argument *argbuffer)
878 {
879 bool help_for_lang = false;
880
881 for (; argbuffer->arg_type != at_end; argbuffer++)
882 if (argbuffer->arg_type == at_language)
883 {
884 if (help_for_lang)
885 puts ("");
886 puts (argbuffer->lang->help);
887 help_for_lang = true;
888 }
889
890 if (help_for_lang)
891 exit (EXIT_SUCCESS);
892
893 printf ("Usage: %s [options] [[regex-option ...] file-name] ...\n\
894 \n\
895 These are the options accepted by %s.\n", progname, progname);
896 puts ("You may use unambiguous abbreviations for the long option names.");
897 puts (" A - as file name means read names from stdin (one per line).\n\
898 Absolute names are stored in the output file as they are.\n\
899 Relative ones are stored relative to the output file's directory.\n");
900
901 puts ("-a, --append\n\
902 Append tag entries to existing tags file.");
903
904 puts ("--packages-only\n\
905 For Ada files, only generate tags for packages.");
906
907 if (CTAGS)
908 puts ("-B, --backward-search\n\
909 Write the search commands for the tag entries using '?', the\n\
910 backward-search command instead of '/', the forward-search command.");
911
912 /* This option is mostly obsolete, because etags can now automatically
913 detect C++. Retained for backward compatibility and for debugging and
914 experimentation. In principle, we could want to tag as C++ even
915 before any "class" or "template" keyword.
916 puts ("-C, --c++\n\
917 Treat files whose name suffix defaults to C language as C++ files.");
918 */
919
920 puts ("--declarations\n\
921 In C and derived languages, create tags for function declarations,");
922 if (CTAGS)
923 puts ("\tand create tags for extern variables if --globals is used.");
924 else
925 puts
926 ("\tand create tags for extern variables unless --no-globals is used.");
927
928 if (CTAGS)
929 puts ("-d, --defines\n\
930 Create tag entries for C #define constants and enum constants, too.");
931 else
932 puts ("-D, --no-defines\n\
933 Don't create tag entries for C #define constants and enum constants.\n\
934 This makes the tags file smaller.");
935
936 if (!CTAGS)
937 puts ("-i FILE, --include=FILE\n\
938 Include a note in tag file indicating that, when searching for\n\
939 a tag, one should also consult the tags file FILE after\n\
940 checking the current file.");
941
942 puts ("-l LANG, --language=LANG\n\
943 Force the following files to be considered as written in the\n\
944 named language up to the next --language=LANG option.");
945
946 if (CTAGS)
947 puts ("--globals\n\
948 Create tag entries for global variables in some languages.");
949 else
950 puts ("--no-globals\n\
951 Do not create tag entries for global variables in some\n\
952 languages. This makes the tags file smaller.");
953
954 if (PRINT_UNDOCUMENTED_OPTIONS_HELP)
955 puts ("--no-line-directive\n\
956 Ignore #line preprocessor directives in C and derived languages.");
957
958 if (CTAGS)
959 puts ("--members\n\
960 Create tag entries for members of structures in some languages.");
961 else
962 puts ("--no-members\n\
963 Do not create tag entries for members of structures\n\
964 in some languages.");
965
966 puts ("-Q, --class-qualify\n\
967 Qualify tag names with their class name in C++, ObjC, and Java.\n\
968 This produces tag names of the form \"class::member\" for C++,\n\
969 \"class(category)\" for Objective C, and \"class.member\" for Java.\n\
970 For Objective C, this also produces class methods qualified with\n\
971 their arguments, as in \"foo:bar:baz:more\".");
972 puts ("-r REGEXP, --regex=REGEXP or --regex=@regexfile\n\
973 Make a tag for each line matching a regular expression pattern\n\
974 in the following files. {LANGUAGE}REGEXP uses REGEXP for LANGUAGE\n\
975 files only. REGEXFILE is a file containing one REGEXP per line.\n\
976 REGEXP takes the form /TAGREGEXP/TAGNAME/MODS, where TAGNAME/ is\n\
977 optional. The TAGREGEXP pattern is anchored (as if preceded by ^).");
978 puts (" If TAGNAME/ is present, the tags created are named.\n\
979 For example Tcl named tags can be created with:\n\
980 --regex=\"/proc[ \\t]+\\([^ \\t]+\\)/\\1/.\".\n\
981 MODS are optional one-letter modifiers: 'i' means to ignore case,\n\
982 'm' means to allow multi-line matches, 's' implies 'm' and\n\
983 causes dot to match any character, including newline.");
984
985 puts ("-R, --no-regex\n\
986 Don't create tags from regexps for the following files.");
987
988 puts ("-I, --ignore-indentation\n\
989 In C and C++ do not assume that a closing brace in the first\n\
990 column is the final brace of a function or structure definition.");
991
992 puts ("-o FILE, --output=FILE\n\
993 Write the tags to FILE.");
994
995 puts ("--parse-stdin=NAME\n\
996 Read from standard input and record tags as belonging to file NAME.");
997
998 if (CTAGS)
999 {
1000 puts ("-t, --typedefs\n\
1001 Generate tag entries for C and Ada typedefs.");
1002 puts ("-T, --typedefs-and-c++\n\
1003 Generate tag entries for C typedefs, C struct/enum/union tags,\n\
1004 and C++ member functions.");
1005 }
1006
1007 if (CTAGS)
1008 puts ("-u, --update\n\
1009 Update the tag entries for the given files, leaving tag\n\
1010 entries for other files in place. Currently, this is\n\
1011 implemented by deleting the existing entries for the given\n\
1012 files and then rewriting the new entries at the end of the\n\
1013 tags file. It is often faster to simply rebuild the entire\n\
1014 tag file than to use this.");
1015
1016 if (CTAGS)
1017 {
1018 puts ("-v, --vgrind\n\
1019 Print on the standard output an index of items intended for\n\
1020 human consumption, similar to the output of vgrind. The index\n\
1021 is sorted, and gives the page number of each item.");
1022
1023 if (PRINT_UNDOCUMENTED_OPTIONS_HELP)
1024 puts ("-w, --no-duplicates\n\
1025 Do not create duplicate tag entries, for compatibility with\n\
1026 traditional ctags.");
1027
1028 if (PRINT_UNDOCUMENTED_OPTIONS_HELP)
1029 puts ("-w, --no-warn\n\
1030 Suppress warning messages about duplicate tag entries.");
1031
1032 puts ("-x, --cxref\n\
1033 Like --vgrind, but in the style of cxref, rather than vgrind.\n\
1034 The output uses line numbers instead of page numbers, but\n\
1035 beyond that the differences are cosmetic; try both to see\n\
1036 which you like.");
1037 }
1038
1039 puts ("-V, --version\n\
1040 Print the version of the program.\n\
1041 -h, --help\n\
1042 Print this help message.\n\
1043 Followed by one or more '--language' options prints detailed\n\
1044 help about tag generation for the specified languages.");
1045
1046 print_language_names ();
1047
1048 puts ("");
1049 puts ("Report bugs to bug-gnu-emacs@gnu.org");
1050
1051 exit (EXIT_SUCCESS);
1052 }
1053
1054 \f
1055 int
1056 main (int argc, char **argv)
1057 {
1058 int i;
1059 unsigned int nincluded_files;
1060 char **included_files;
1061 argument *argbuffer;
1062 int current_arg, file_count;
1063 linebuffer filename_lb;
1064 bool help_asked = false;
1065 ptrdiff_t len;
1066 char *optstring;
1067 int opt;
1068
1069 progname = argv[0];
1070 nincluded_files = 0;
1071 included_files = xnew (argc, char *);
1072 current_arg = 0;
1073 file_count = 0;
1074
1075 /* Allocate enough no matter what happens. Overkill, but each one
1076 is small. */
1077 argbuffer = xnew (argc, argument);
1078
1079 /*
1080 * Always find typedefs and structure tags.
1081 * Also default to find macro constants, enum constants, struct
1082 * members and global variables. Do it for both etags and ctags.
1083 */
1084 typedefs = typedefs_or_cplusplus = constantypedefs = true;
1085 globals = members = true;
1086
1087 /* When the optstring begins with a '-' getopt_long does not rearrange the
1088 non-options arguments to be at the end, but leaves them alone. */
1089 optstring = concat ("-ac:Cf:Il:o:Qr:RSVhH",
1090 (CTAGS) ? "BxdtTuvw" : "Di:",
1091 "");
1092
1093 while ((opt = getopt_long (argc, argv, optstring, longopts, NULL)) != EOF)
1094 switch (opt)
1095 {
1096 case 0:
1097 /* If getopt returns 0, then it has already processed a
1098 long-named option. We should do nothing. */
1099 break;
1100
1101 case 1:
1102 /* This means that a file name has been seen. Record it. */
1103 argbuffer[current_arg].arg_type = at_filename;
1104 argbuffer[current_arg].what = optarg;
1105 len = strlen (optarg);
1106 if (whatlen_max < len)
1107 whatlen_max = len;
1108 ++current_arg;
1109 ++file_count;
1110 break;
1111
1112 case STDIN:
1113 /* Parse standard input. Idea by Vivek <vivek@etla.org>. */
1114 argbuffer[current_arg].arg_type = at_stdin;
1115 argbuffer[current_arg].what = optarg;
1116 len = strlen (optarg);
1117 if (whatlen_max < len)
1118 whatlen_max = len;
1119 ++current_arg;
1120 ++file_count;
1121 if (parsing_stdin)
1122 fatal ("cannot parse standard input more than once");
1123 parsing_stdin = true;
1124 break;
1125
1126 /* Common options. */
1127 case 'a': append_to_tagfile = true; break;
1128 case 'C': cplusplus = true; break;
1129 case 'f': /* for compatibility with old makefiles */
1130 case 'o':
1131 if (tagfile)
1132 {
1133 error ("-o option may only be given once.");
1134 suggest_asking_for_help ();
1135 /* NOTREACHED */
1136 }
1137 tagfile = optarg;
1138 break;
1139 case 'I':
1140 case 'S': /* for backward compatibility */
1141 ignoreindent = true;
1142 break;
1143 case 'l':
1144 {
1145 language *lang = get_language_from_langname (optarg);
1146 if (lang != NULL)
1147 {
1148 argbuffer[current_arg].lang = lang;
1149 argbuffer[current_arg].arg_type = at_language;
1150 ++current_arg;
1151 }
1152 }
1153 break;
1154 case 'c':
1155 /* Backward compatibility: support obsolete --ignore-case-regexp. */
1156 optarg = concat (optarg, "i", ""); /* memory leak here */
1157 /* FALLTHRU */
1158 case 'r':
1159 argbuffer[current_arg].arg_type = at_regexp;
1160 argbuffer[current_arg].what = optarg;
1161 len = strlen (optarg);
1162 if (whatlen_max < len)
1163 whatlen_max = len;
1164 ++current_arg;
1165 break;
1166 case 'R':
1167 argbuffer[current_arg].arg_type = at_regexp;
1168 argbuffer[current_arg].what = NULL;
1169 ++current_arg;
1170 break;
1171 case 'V':
1172 print_version ();
1173 break;
1174 case 'h':
1175 case 'H':
1176 help_asked = true;
1177 break;
1178 case 'Q':
1179 class_qualify = 1;
1180 break;
1181
1182 /* Etags options */
1183 case 'D': constantypedefs = false; break;
1184 case 'i': included_files[nincluded_files++] = optarg; break;
1185
1186 /* Ctags options. */
1187 case 'B': searchar = '?'; break;
1188 case 'd': constantypedefs = true; break;
1189 case 't': typedefs = true; break;
1190 case 'T': typedefs = typedefs_or_cplusplus = true; break;
1191 case 'u': update = true; break;
1192 case 'v': vgrind_style = true; /*FALLTHRU*/
1193 case 'x': cxref_style = true; break;
1194 case 'w': no_warnings = true; break;
1195 default:
1196 suggest_asking_for_help ();
1197 /* NOTREACHED */
1198 }
1199
1200 /* No more options. Store the rest of arguments. */
1201 for (; optind < argc; optind++)
1202 {
1203 argbuffer[current_arg].arg_type = at_filename;
1204 argbuffer[current_arg].what = argv[optind];
1205 len = strlen (argv[optind]);
1206 if (whatlen_max < len)
1207 whatlen_max = len;
1208 ++current_arg;
1209 ++file_count;
1210 }
1211
1212 argbuffer[current_arg].arg_type = at_end;
1213
1214 if (help_asked)
1215 print_help (argbuffer);
1216 /* NOTREACHED */
1217
1218 if (nincluded_files == 0 && file_count == 0)
1219 {
1220 error ("no input files specified.");
1221 suggest_asking_for_help ();
1222 /* NOTREACHED */
1223 }
1224
1225 if (tagfile == NULL)
1226 tagfile = savestr (CTAGS ? "tags" : "TAGS");
1227 cwd = etags_getcwd (); /* the current working directory */
1228 if (cwd[strlen (cwd) - 1] != '/')
1229 {
1230 char *oldcwd = cwd;
1231 cwd = concat (oldcwd, "/", "");
1232 free (oldcwd);
1233 }
1234
1235 /* Compute base directory for relative file names. */
1236 if (streq (tagfile, "-")
1237 || strneq (tagfile, "/dev/", 5))
1238 tagfiledir = cwd; /* relative file names are relative to cwd */
1239 else
1240 {
1241 canonicalize_filename (tagfile);
1242 tagfiledir = absolute_dirname (tagfile, cwd);
1243 }
1244
1245 linebuffer_init (&lb);
1246 linebuffer_init (&filename_lb);
1247 linebuffer_init (&filebuf);
1248 linebuffer_init (&token_name);
1249
1250 if (!CTAGS)
1251 {
1252 if (streq (tagfile, "-"))
1253 {
1254 tagf = stdout;
1255 SET_BINARY (fileno (stdout));
1256 }
1257 else
1258 tagf = fopen (tagfile, append_to_tagfile ? "ab" : "wb");
1259 if (tagf == NULL)
1260 pfatal (tagfile);
1261 }
1262
1263 /*
1264 * Loop through files finding functions.
1265 */
1266 for (i = 0; i < current_arg; i++)
1267 {
1268 static language *lang; /* non-NULL if language is forced */
1269 char *this_file;
1270
1271 switch (argbuffer[i].arg_type)
1272 {
1273 case at_language:
1274 lang = argbuffer[i].lang;
1275 break;
1276 case at_regexp:
1277 analyze_regex (argbuffer[i].what);
1278 break;
1279 case at_filename:
1280 this_file = argbuffer[i].what;
1281 /* Input file named "-" means read file names from stdin
1282 (one per line) and use them. */
1283 if (streq (this_file, "-"))
1284 {
1285 if (parsing_stdin)
1286 fatal ("cannot parse standard input "
1287 "AND read file names from it");
1288 while (readline_internal (&filename_lb, stdin, "-") > 0)
1289 process_file_name (filename_lb.buffer, lang);
1290 }
1291 else
1292 process_file_name (this_file, lang);
1293 break;
1294 case at_stdin:
1295 this_file = argbuffer[i].what;
1296 process_file (stdin, this_file, lang);
1297 break;
1298 default:
1299 error ("internal error: arg_type");
1300 }
1301 }
1302
1303 free_regexps ();
1304 free (lb.buffer);
1305 free (filebuf.buffer);
1306 free (token_name.buffer);
1307
1308 if (!CTAGS || cxref_style)
1309 {
1310 /* Write the remaining tags to tagf (ETAGS) or stdout (CXREF). */
1311 put_entries (nodehead);
1312 free_tree (nodehead);
1313 nodehead = NULL;
1314 if (!CTAGS)
1315 {
1316 fdesc *fdp;
1317
1318 /* Output file entries that have no tags. */
1319 for (fdp = fdhead; fdp != NULL; fdp = fdp->next)
1320 if (!fdp->written)
1321 fprintf (tagf, "\f\n%s,0\n", fdp->taggedfname);
1322
1323 while (nincluded_files-- > 0)
1324 fprintf (tagf, "\f\n%s,include\n", *included_files++);
1325
1326 if (fclose (tagf) == EOF)
1327 pfatal (tagfile);
1328 }
1329
1330 exit (EXIT_SUCCESS);
1331 }
1332
1333 /* From here on, we are in (CTAGS && !cxref_style) */
1334 if (update)
1335 {
1336 char *cmd =
1337 xmalloc (strlen (tagfile) + whatlen_max +
1338 sizeof "mv..OTAGS;fgrep -v '\t\t' OTAGS >;rm OTAGS");
1339 for (i = 0; i < current_arg; ++i)
1340 {
1341 switch (argbuffer[i].arg_type)
1342 {
1343 case at_filename:
1344 case at_stdin:
1345 break;
1346 default:
1347 continue; /* the for loop */
1348 }
1349 char *z = stpcpy (cmd, "mv ");
1350 z = stpcpy (z, tagfile);
1351 z = stpcpy (z, " OTAGS;fgrep -v '\t");
1352 z = stpcpy (z, argbuffer[i].what);
1353 z = stpcpy (z, "\t' OTAGS >");
1354 z = stpcpy (z, tagfile);
1355 strcpy (z, ";rm OTAGS");
1356 if (system (cmd) != EXIT_SUCCESS)
1357 fatal ("failed to execute shell command");
1358 }
1359 free (cmd);
1360 append_to_tagfile = true;
1361 }
1362
1363 tagf = fopen (tagfile, append_to_tagfile ? "ab" : "wb");
1364 if (tagf == NULL)
1365 pfatal (tagfile);
1366 put_entries (nodehead); /* write all the tags (CTAGS) */
1367 free_tree (nodehead);
1368 nodehead = NULL;
1369 if (fclose (tagf) == EOF)
1370 pfatal (tagfile);
1371
1372 if (CTAGS)
1373 if (append_to_tagfile || update)
1374 {
1375 char *cmd = xmalloc (2 * strlen (tagfile) + sizeof "sort -u -o..");
1376 /* Maybe these should be used:
1377 setenv ("LC_COLLATE", "C", 1);
1378 setenv ("LC_ALL", "C", 1); */
1379 char *z = stpcpy (cmd, "sort -u -o ");
1380 z = stpcpy (z, tagfile);
1381 *z++ = ' ';
1382 strcpy (z, tagfile);
1383 exit (system (cmd));
1384 }
1385 return EXIT_SUCCESS;
1386 }
1387
1388
1389 /*
1390 * Return a compressor given the file name. If EXTPTR is non-zero,
1391 * return a pointer into FILE where the compressor-specific
1392 * extension begins. If no compressor is found, NULL is returned
1393 * and EXTPTR is not significant.
1394 * Idea by Vladimir Alexiev <vladimir@cs.ualberta.ca> (1998)
1395 */
1396 static compressor *
1397 get_compressor_from_suffix (char *file, char **extptr)
1398 {
1399 compressor *compr;
1400 char *slash, *suffix;
1401
1402 /* File has been processed by canonicalize_filename,
1403 so we don't need to consider backslashes on DOS_NT. */
1404 slash = strrchr (file, '/');
1405 suffix = strrchr (file, '.');
1406 if (suffix == NULL || suffix < slash)
1407 return NULL;
1408 if (extptr != NULL)
1409 *extptr = suffix;
1410 suffix += 1;
1411 /* Let those poor souls who live with DOS 8+3 file name limits get
1412 some solace by treating foo.cgz as if it were foo.c.gz, etc.
1413 Only the first do loop is run if not MSDOS */
1414 do
1415 {
1416 for (compr = compressors; compr->suffix != NULL; compr++)
1417 if (streq (compr->suffix, suffix))
1418 return compr;
1419 if (!MSDOS)
1420 break; /* do it only once: not really a loop */
1421 if (extptr != NULL)
1422 *extptr = ++suffix;
1423 } while (*suffix != '\0');
1424 return NULL;
1425 }
1426
1427
1428
1429 /*
1430 * Return a language given the name.
1431 */
1432 static language *
1433 get_language_from_langname (const char *name)
1434 {
1435 language *lang;
1436
1437 if (name == NULL)
1438 error ("empty language name");
1439 else
1440 {
1441 for (lang = lang_names; lang->name != NULL; lang++)
1442 if (streq (name, lang->name))
1443 return lang;
1444 error ("unknown language \"%s\"", name);
1445 }
1446
1447 return NULL;
1448 }
1449
1450
1451 /*
1452 * Return a language given the interpreter name.
1453 */
1454 static language *
1455 get_language_from_interpreter (char *interpreter)
1456 {
1457 language *lang;
1458 const char **iname;
1459
1460 if (interpreter == NULL)
1461 return NULL;
1462 for (lang = lang_names; lang->name != NULL; lang++)
1463 if (lang->interpreters != NULL)
1464 for (iname = lang->interpreters; *iname != NULL; iname++)
1465 if (streq (*iname, interpreter))
1466 return lang;
1467
1468 return NULL;
1469 }
1470
1471
1472
1473 /*
1474 * Return a language given the file name.
1475 */
1476 static language *
1477 get_language_from_filename (char *file, int case_sensitive)
1478 {
1479 language *lang;
1480 const char **name, **ext, *suffix;
1481
1482 /* Try whole file name first. */
1483 for (lang = lang_names; lang->name != NULL; lang++)
1484 if (lang->filenames != NULL)
1485 for (name = lang->filenames; *name != NULL; name++)
1486 if ((case_sensitive)
1487 ? streq (*name, file)
1488 : strcaseeq (*name, file))
1489 return lang;
1490
1491 /* If not found, try suffix after last dot. */
1492 suffix = strrchr (file, '.');
1493 if (suffix == NULL)
1494 return NULL;
1495 suffix += 1;
1496 for (lang = lang_names; lang->name != NULL; lang++)
1497 if (lang->suffixes != NULL)
1498 for (ext = lang->suffixes; *ext != NULL; ext++)
1499 if ((case_sensitive)
1500 ? streq (*ext, suffix)
1501 : strcaseeq (*ext, suffix))
1502 return lang;
1503 return NULL;
1504 }
1505
1506 \f
1507 /*
1508 * This routine is called on each file argument.
1509 */
1510 static void
1511 process_file_name (char *file, language *lang)
1512 {
1513 FILE *inf;
1514 fdesc *fdp;
1515 compressor *compr;
1516 char *compressed_name, *uncompressed_name;
1517 char *ext, *real_name, *tmp_name;
1518 int retval;
1519
1520 canonicalize_filename (file);
1521 if (streq (file, tagfile) && !streq (tagfile, "-"))
1522 {
1523 error ("skipping inclusion of %s in self.", file);
1524 return;
1525 }
1526 compr = get_compressor_from_suffix (file, &ext);
1527 if (compr)
1528 {
1529 compressed_name = file;
1530 uncompressed_name = savenstr (file, ext - file);
1531 }
1532 else
1533 {
1534 compressed_name = NULL;
1535 uncompressed_name = file;
1536 }
1537
1538 /* If the canonicalized uncompressed name
1539 has already been dealt with, skip it silently. */
1540 for (fdp = fdhead; fdp != NULL; fdp = fdp->next)
1541 {
1542 assert (fdp->infname != NULL);
1543 if (streq (uncompressed_name, fdp->infname))
1544 goto cleanup;
1545 }
1546
1547 inf = fopen (file, "r" FOPEN_BINARY);
1548 if (inf)
1549 real_name = file;
1550 else
1551 {
1552 int file_errno = errno;
1553 if (compressed_name)
1554 {
1555 /* Try with the given suffix. */
1556 inf = fopen (uncompressed_name, "r" FOPEN_BINARY);
1557 if (inf)
1558 real_name = uncompressed_name;
1559 }
1560 else
1561 {
1562 /* Try all possible suffixes. */
1563 for (compr = compressors; compr->suffix != NULL; compr++)
1564 {
1565 compressed_name = concat (file, ".", compr->suffix);
1566 inf = fopen (compressed_name, "r" FOPEN_BINARY);
1567 if (inf)
1568 {
1569 real_name = compressed_name;
1570 break;
1571 }
1572 if (MSDOS)
1573 {
1574 char *suf = compressed_name + strlen (file);
1575 size_t suflen = strlen (compr->suffix) + 1;
1576 for ( ; suf[1]; suf++, suflen--)
1577 {
1578 memmove (suf, suf + 1, suflen);
1579 inf = fopen (compressed_name, "r" FOPEN_BINARY);
1580 if (inf)
1581 {
1582 real_name = compressed_name;
1583 break;
1584 }
1585 }
1586 if (inf)
1587 break;
1588 }
1589 free (compressed_name);
1590 compressed_name = NULL;
1591 }
1592 }
1593 if (! inf)
1594 {
1595 errno = file_errno;
1596 perror (file);
1597 goto cleanup;
1598 }
1599 }
1600
1601 if (real_name == compressed_name)
1602 {
1603 fclose (inf);
1604 tmp_name = etags_mktmp ();
1605 if (!tmp_name)
1606 inf = NULL;
1607 else
1608 {
1609 #if MSDOS || defined (DOS_NT)
1610 char *cmd1 = concat (compr->command, " \"", real_name);
1611 char *cmd = concat (cmd1, "\" > ", tmp_name);
1612 #else
1613 char *cmd1 = concat (compr->command, " '", real_name);
1614 char *cmd = concat (cmd1, "' > ", tmp_name);
1615 #endif
1616 free (cmd1);
1617 int tmp_errno;
1618 if (system (cmd) == -1)
1619 {
1620 inf = NULL;
1621 tmp_errno = EINVAL;
1622 }
1623 else
1624 {
1625 inf = fopen (tmp_name, "r" FOPEN_BINARY);
1626 tmp_errno = errno;
1627 }
1628 free (cmd);
1629 errno = tmp_errno;
1630 }
1631
1632 if (!inf)
1633 {
1634 perror (real_name);
1635 goto cleanup;
1636 }
1637 }
1638
1639 process_file (inf, uncompressed_name, lang);
1640
1641 retval = fclose (inf);
1642 if (real_name == compressed_name)
1643 {
1644 remove (tmp_name);
1645 free (tmp_name);
1646 }
1647 if (retval < 0)
1648 pfatal (file);
1649
1650 cleanup:
1651 if (compressed_name != file)
1652 free (compressed_name);
1653 if (uncompressed_name != file)
1654 free (uncompressed_name);
1655 last_node = NULL;
1656 curfdp = NULL;
1657 return;
1658 }
1659
1660 static void
1661 process_file (FILE *fh, char *fn, language *lang)
1662 {
1663 static const fdesc emptyfdesc;
1664 fdesc *fdp;
1665
1666 infilename = fn;
1667 /* Create a new input file description entry. */
1668 fdp = xnew (1, fdesc);
1669 *fdp = emptyfdesc;
1670 fdp->next = fdhead;
1671 fdp->infname = savestr (fn);
1672 fdp->lang = lang;
1673 fdp->infabsname = absolute_filename (fn, cwd);
1674 fdp->infabsdir = absolute_dirname (fn, cwd);
1675 if (filename_is_absolute (fn))
1676 {
1677 /* An absolute file name. Canonicalize it. */
1678 fdp->taggedfname = absolute_filename (fn, NULL);
1679 }
1680 else
1681 {
1682 /* A file name relative to cwd. Make it relative
1683 to the directory of the tags file. */
1684 fdp->taggedfname = relative_filename (fn, tagfiledir);
1685 }
1686 fdp->usecharno = true; /* use char position when making tags */
1687 fdp->prop = NULL;
1688 fdp->written = false; /* not written on tags file yet */
1689
1690 fdhead = fdp;
1691 curfdp = fdhead; /* the current file description */
1692
1693 find_entries (fh);
1694
1695 /* If not Ctags, and if this is not metasource and if it contained no #line
1696 directives, we can write the tags and free all nodes pointing to
1697 curfdp. */
1698 if (!CTAGS
1699 && curfdp->usecharno /* no #line directives in this file */
1700 && !curfdp->lang->metasource)
1701 {
1702 node *np, *prev;
1703
1704 /* Look for the head of the sublist relative to this file. See add_node
1705 for the structure of the node tree. */
1706 prev = NULL;
1707 for (np = nodehead; np != NULL; prev = np, np = np->left)
1708 if (np->fdp == curfdp)
1709 break;
1710
1711 /* If we generated tags for this file, write and delete them. */
1712 if (np != NULL)
1713 {
1714 /* This is the head of the last sublist, if any. The following
1715 instructions depend on this being true. */
1716 assert (np->left == NULL);
1717
1718 assert (fdhead == curfdp);
1719 assert (last_node->fdp == curfdp);
1720 put_entries (np); /* write tags for file curfdp->taggedfname */
1721 free_tree (np); /* remove the written nodes */
1722 if (prev == NULL)
1723 nodehead = NULL; /* no nodes left */
1724 else
1725 prev->left = NULL; /* delete the pointer to the sublist */
1726 }
1727 }
1728 }
1729
1730 static void
1731 reset_input (FILE *inf)
1732 {
1733 if (fseek (inf, 0, SEEK_SET) != 0)
1734 perror (infilename);
1735 }
1736
1737 /*
1738 * This routine opens the specified file and calls the function
1739 * which finds the function and type definitions.
1740 */
1741 static void
1742 find_entries (FILE *inf)
1743 {
1744 char *cp;
1745 language *lang = curfdp->lang;
1746 Lang_function *parser = NULL;
1747
1748 /* If user specified a language, use it. */
1749 if (lang != NULL && lang->function != NULL)
1750 {
1751 parser = lang->function;
1752 }
1753
1754 /* Else try to guess the language given the file name. */
1755 if (parser == NULL)
1756 {
1757 lang = get_language_from_filename (curfdp->infname, true);
1758 if (lang != NULL && lang->function != NULL)
1759 {
1760 curfdp->lang = lang;
1761 parser = lang->function;
1762 }
1763 }
1764
1765 /* Else look for sharp-bang as the first two characters. */
1766 if (parser == NULL
1767 && readline_internal (&lb, inf, infilename) > 0
1768 && lb.len >= 2
1769 && lb.buffer[0] == '#'
1770 && lb.buffer[1] == '!')
1771 {
1772 char *lp;
1773
1774 /* Set lp to point at the first char after the last slash in the
1775 line or, if no slashes, at the first nonblank. Then set cp to
1776 the first successive blank and terminate the string. */
1777 lp = strrchr (lb.buffer+2, '/');
1778 if (lp != NULL)
1779 lp += 1;
1780 else
1781 lp = skip_spaces (lb.buffer + 2);
1782 cp = skip_non_spaces (lp);
1783 *cp = '\0';
1784
1785 if (strlen (lp) > 0)
1786 {
1787 lang = get_language_from_interpreter (lp);
1788 if (lang != NULL && lang->function != NULL)
1789 {
1790 curfdp->lang = lang;
1791 parser = lang->function;
1792 }
1793 }
1794 }
1795
1796 reset_input (inf);
1797
1798 /* Else try to guess the language given the case insensitive file name. */
1799 if (parser == NULL)
1800 {
1801 lang = get_language_from_filename (curfdp->infname, false);
1802 if (lang != NULL && lang->function != NULL)
1803 {
1804 curfdp->lang = lang;
1805 parser = lang->function;
1806 }
1807 }
1808
1809 /* Else try Fortran or C. */
1810 if (parser == NULL)
1811 {
1812 node *old_last_node = last_node;
1813
1814 curfdp->lang = get_language_from_langname ("fortran");
1815 find_entries (inf);
1816
1817 if (old_last_node == last_node)
1818 /* No Fortran entries found. Try C. */
1819 {
1820 reset_input (inf);
1821 curfdp->lang = get_language_from_langname (cplusplus ? "c++" : "c");
1822 find_entries (inf);
1823 }
1824 return;
1825 }
1826
1827 if (!no_line_directive
1828 && curfdp->lang != NULL && curfdp->lang->metasource)
1829 /* It may be that this is a bingo.y file, and we already parsed a bingo.c
1830 file, or anyway we parsed a file that is automatically generated from
1831 this one. If this is the case, the bingo.c file contained #line
1832 directives that generated tags pointing to this file. Let's delete
1833 them all before parsing this file, which is the real source. */
1834 {
1835 fdesc **fdpp = &fdhead;
1836 while (*fdpp != NULL)
1837 if (*fdpp != curfdp
1838 && streq ((*fdpp)->taggedfname, curfdp->taggedfname))
1839 /* We found one of those! We must delete both the file description
1840 and all tags referring to it. */
1841 {
1842 fdesc *badfdp = *fdpp;
1843
1844 /* Delete the tags referring to badfdp->taggedfname
1845 that were obtained from badfdp->infname. */
1846 invalidate_nodes (badfdp, &nodehead);
1847
1848 *fdpp = badfdp->next; /* remove the bad description from the list */
1849 free_fdesc (badfdp);
1850 }
1851 else
1852 fdpp = &(*fdpp)->next; /* advance the list pointer */
1853 }
1854
1855 assert (parser != NULL);
1856
1857 /* Generic initializations before reading from file. */
1858 linebuffer_setlen (&filebuf, 0); /* reset the file buffer */
1859
1860 /* Generic initializations before parsing file with readline. */
1861 lineno = 0; /* reset global line number */
1862 charno = 0; /* reset global char number */
1863 linecharno = 0; /* reset global char number of line start */
1864
1865 parser (inf);
1866
1867 regex_tag_multiline ();
1868 }
1869
1870 \f
1871 /*
1872 * Check whether an implicitly named tag should be created,
1873 * then call `pfnote'.
1874 * NAME is a string that is internally copied by this function.
1875 *
1876 * TAGS format specification
1877 * Idea by Sam Kendall <kendall@mv.mv.com> (1997)
1878 * The following is explained in some more detail in etc/ETAGS.EBNF.
1879 *
1880 * make_tag creates tags with "implicit tag names" (unnamed tags)
1881 * if the following are all true, assuming NONAM=" \f\t\n\r()=,;":
1882 * 1. NAME does not contain any of the characters in NONAM;
1883 * 2. LINESTART contains name as either a rightmost, or rightmost but
1884 * one character, substring;
1885 * 3. the character, if any, immediately before NAME in LINESTART must
1886 * be a character in NONAM;
1887 * 4. the character, if any, immediately after NAME in LINESTART must
1888 * also be a character in NONAM.
1889 *
1890 * The implementation uses the notinname() macro, which recognizes the
1891 * characters stored in the string `nonam'.
1892 * etags.el needs to use the same characters that are in NONAM.
1893 */
1894 static void
1895 make_tag (const char *name, /* tag name, or NULL if unnamed */
1896 int namelen, /* tag length */
1897 bool is_func, /* tag is a function */
1898 char *linestart, /* start of the line where tag is */
1899 int linelen, /* length of the line where tag is */
1900 int lno, /* line number */
1901 long int cno) /* character number */
1902 {
1903 bool named = (name != NULL && namelen > 0);
1904 char *nname = NULL;
1905
1906 if (!CTAGS && named) /* maybe set named to false */
1907 /* Let's try to make an implicit tag name, that is, create an unnamed tag
1908 such that etags.el can guess a name from it. */
1909 {
1910 int i;
1911 register const char *cp = name;
1912
1913 for (i = 0; i < namelen; i++)
1914 if (notinname (*cp++))
1915 break;
1916 if (i == namelen) /* rule #1 */
1917 {
1918 cp = linestart + linelen - namelen;
1919 if (notinname (linestart[linelen-1]))
1920 cp -= 1; /* rule #4 */
1921 if (cp >= linestart /* rule #2 */
1922 && (cp == linestart
1923 || notinname (cp[-1])) /* rule #3 */
1924 && strneq (name, cp, namelen)) /* rule #2 */
1925 named = false; /* use implicit tag name */
1926 }
1927 }
1928
1929 if (named)
1930 nname = savenstr (name, namelen);
1931
1932 pfnote (nname, is_func, linestart, linelen, lno, cno);
1933 }
1934
1935 /* Record a tag. */
1936 static void
1937 pfnote (char *name, bool is_func, char *linestart, int linelen, int lno,
1938 long int cno)
1939 /* tag name, or NULL if unnamed */
1940 /* tag is a function */
1941 /* start of the line where tag is */
1942 /* length of the line where tag is */
1943 /* line number */
1944 /* character number */
1945 {
1946 register node *np;
1947
1948 assert (name == NULL || name[0] != '\0');
1949 if (CTAGS && name == NULL)
1950 return;
1951
1952 np = xnew (1, node);
1953
1954 /* If ctags mode, change name "main" to M<thisfilename>. */
1955 if (CTAGS && !cxref_style && streq (name, "main"))
1956 {
1957 char *fp = strrchr (curfdp->taggedfname, '/');
1958 np->name = concat ("M", fp == NULL ? curfdp->taggedfname : fp + 1, "");
1959 fp = strrchr (np->name, '.');
1960 if (fp != NULL && fp[1] != '\0' && fp[2] == '\0')
1961 fp[0] = '\0';
1962 }
1963 else
1964 np->name = name;
1965 np->valid = true;
1966 np->been_warned = false;
1967 np->fdp = curfdp;
1968 np->is_func = is_func;
1969 np->lno = lno;
1970 if (np->fdp->usecharno)
1971 /* Our char numbers are 0-base, because of C language tradition?
1972 ctags compatibility? old versions compatibility? I don't know.
1973 Anyway, since emacs's are 1-base we expect etags.el to take care
1974 of the difference. If we wanted to have 1-based numbers, we would
1975 uncomment the +1 below. */
1976 np->cno = cno /* + 1 */ ;
1977 else
1978 np->cno = invalidcharno;
1979 np->left = np->right = NULL;
1980 if (CTAGS && !cxref_style)
1981 {
1982 if (strlen (linestart) < 50)
1983 np->regex = concat (linestart, "$", "");
1984 else
1985 np->regex = savenstr (linestart, 50);
1986 }
1987 else
1988 np->regex = savenstr (linestart, linelen);
1989
1990 add_node (np, &nodehead);
1991 }
1992
1993 /*
1994 * free_tree ()
1995 * recurse on left children, iterate on right children.
1996 */
1997 static void
1998 free_tree (register node *np)
1999 {
2000 while (np)
2001 {
2002 register node *node_right = np->right;
2003 free_tree (np->left);
2004 free (np->name);
2005 free (np->regex);
2006 free (np);
2007 np = node_right;
2008 }
2009 }
2010
2011 /*
2012 * free_fdesc ()
2013 * delete a file description
2014 */
2015 static void
2016 free_fdesc (register fdesc *fdp)
2017 {
2018 free (fdp->infname);
2019 free (fdp->infabsname);
2020 free (fdp->infabsdir);
2021 free (fdp->taggedfname);
2022 free (fdp->prop);
2023 free (fdp);
2024 }
2025
2026 /*
2027 * add_node ()
2028 * Adds a node to the tree of nodes. In etags mode, sort by file
2029 * name. In ctags mode, sort by tag name. Make no attempt at
2030 * balancing.
2031 *
2032 * add_node is the only function allowed to add nodes, so it can
2033 * maintain state.
2034 */
2035 static void
2036 add_node (node *np, node **cur_node_p)
2037 {
2038 register int dif;
2039 register node *cur_node = *cur_node_p;
2040
2041 if (cur_node == NULL)
2042 {
2043 *cur_node_p = np;
2044 last_node = np;
2045 return;
2046 }
2047
2048 if (!CTAGS)
2049 /* Etags Mode */
2050 {
2051 /* For each file name, tags are in a linked sublist on the right
2052 pointer. The first tags of different files are a linked list
2053 on the left pointer. last_node points to the end of the last
2054 used sublist. */
2055 if (last_node != NULL && last_node->fdp == np->fdp)
2056 {
2057 /* Let's use the same sublist as the last added node. */
2058 assert (last_node->right == NULL);
2059 last_node->right = np;
2060 last_node = np;
2061 }
2062 else if (cur_node->fdp == np->fdp)
2063 {
2064 /* Scanning the list we found the head of a sublist which is
2065 good for us. Let's scan this sublist. */
2066 add_node (np, &cur_node->right);
2067 }
2068 else
2069 /* The head of this sublist is not good for us. Let's try the
2070 next one. */
2071 add_node (np, &cur_node->left);
2072 } /* if ETAGS mode */
2073
2074 else
2075 {
2076 /* Ctags Mode */
2077 dif = strcmp (np->name, cur_node->name);
2078
2079 /*
2080 * If this tag name matches an existing one, then
2081 * do not add the node, but maybe print a warning.
2082 */
2083 if (no_duplicates && !dif)
2084 {
2085 if (np->fdp == cur_node->fdp)
2086 {
2087 if (!no_warnings)
2088 {
2089 fprintf (stderr, "Duplicate entry in file %s, line %d: %s\n",
2090 np->fdp->infname, lineno, np->name);
2091 fprintf (stderr, "Second entry ignored\n");
2092 }
2093 }
2094 else if (!cur_node->been_warned && !no_warnings)
2095 {
2096 fprintf
2097 (stderr,
2098 "Duplicate entry in files %s and %s: %s (Warning only)\n",
2099 np->fdp->infname, cur_node->fdp->infname, np->name);
2100 cur_node->been_warned = true;
2101 }
2102 return;
2103 }
2104
2105 /* Actually add the node */
2106 add_node (np, dif < 0 ? &cur_node->left : &cur_node->right);
2107 } /* if CTAGS mode */
2108 }
2109
2110 /*
2111 * invalidate_nodes ()
2112 * Scan the node tree and invalidate all nodes pointing to the
2113 * given file description (CTAGS case) or free them (ETAGS case).
2114 */
2115 static void
2116 invalidate_nodes (fdesc *badfdp, node **npp)
2117 {
2118 node *np = *npp;
2119
2120 if (np == NULL)
2121 return;
2122
2123 if (CTAGS)
2124 {
2125 if (np->left != NULL)
2126 invalidate_nodes (badfdp, &np->left);
2127 if (np->fdp == badfdp)
2128 np->valid = false;
2129 if (np->right != NULL)
2130 invalidate_nodes (badfdp, &np->right);
2131 }
2132 else
2133 {
2134 assert (np->fdp != NULL);
2135 if (np->fdp == badfdp)
2136 {
2137 *npp = np->left; /* detach the sublist from the list */
2138 np->left = NULL; /* isolate it */
2139 free_tree (np); /* free it */
2140 invalidate_nodes (badfdp, npp);
2141 }
2142 else
2143 invalidate_nodes (badfdp, &np->left);
2144 }
2145 }
2146
2147 \f
2148 static int total_size_of_entries (node *);
2149 static int number_len (long) ATTRIBUTE_CONST;
2150
2151 /* Length of a non-negative number's decimal representation. */
2152 static int
2153 number_len (long int num)
2154 {
2155 int len = 1;
2156 while ((num /= 10) > 0)
2157 len += 1;
2158 return len;
2159 }
2160
2161 /*
2162 * Return total number of characters that put_entries will output for
2163 * the nodes in the linked list at the right of the specified node.
2164 * This count is irrelevant with etags.el since emacs 19.34 at least,
2165 * but is still supplied for backward compatibility.
2166 */
2167 static int
2168 total_size_of_entries (register node *np)
2169 {
2170 register int total = 0;
2171
2172 for (; np != NULL; np = np->right)
2173 if (np->valid)
2174 {
2175 total += strlen (np->regex) + 1; /* pat\177 */
2176 if (np->name != NULL)
2177 total += strlen (np->name) + 1; /* name\001 */
2178 total += number_len ((long) np->lno) + 1; /* lno, */
2179 if (np->cno != invalidcharno) /* cno */
2180 total += number_len (np->cno);
2181 total += 1; /* newline */
2182 }
2183
2184 return total;
2185 }
2186
2187 static void
2188 put_entries (register node *np)
2189 {
2190 register char *sp;
2191 static fdesc *fdp = NULL;
2192
2193 if (np == NULL)
2194 return;
2195
2196 /* Output subentries that precede this one */
2197 if (CTAGS)
2198 put_entries (np->left);
2199
2200 /* Output this entry */
2201 if (np->valid)
2202 {
2203 if (!CTAGS)
2204 {
2205 /* Etags mode */
2206 if (fdp != np->fdp)
2207 {
2208 fdp = np->fdp;
2209 fprintf (tagf, "\f\n%s,%d\n",
2210 fdp->taggedfname, total_size_of_entries (np));
2211 fdp->written = true;
2212 }
2213 fputs (np->regex, tagf);
2214 fputc ('\177', tagf);
2215 if (np->name != NULL)
2216 {
2217 fputs (np->name, tagf);
2218 fputc ('\001', tagf);
2219 }
2220 fprintf (tagf, "%d,", np->lno);
2221 if (np->cno != invalidcharno)
2222 fprintf (tagf, "%ld", np->cno);
2223 fputs ("\n", tagf);
2224 }
2225 else
2226 {
2227 /* Ctags mode */
2228 if (np->name == NULL)
2229 error ("internal error: NULL name in ctags mode.");
2230
2231 if (cxref_style)
2232 {
2233 if (vgrind_style)
2234 fprintf (stdout, "%s %s %d\n",
2235 np->name, np->fdp->taggedfname, (np->lno + 63) / 64);
2236 else
2237 fprintf (stdout, "%-16s %3d %-16s %s\n",
2238 np->name, np->lno, np->fdp->taggedfname, np->regex);
2239 }
2240 else
2241 {
2242 fprintf (tagf, "%s\t%s\t", np->name, np->fdp->taggedfname);
2243
2244 if (np->is_func)
2245 { /* function or #define macro with args */
2246 putc (searchar, tagf);
2247 putc ('^', tagf);
2248
2249 for (sp = np->regex; *sp; sp++)
2250 {
2251 if (*sp == '\\' || *sp == searchar)
2252 putc ('\\', tagf);
2253 putc (*sp, tagf);
2254 }
2255 putc (searchar, tagf);
2256 }
2257 else
2258 { /* anything else; text pattern inadequate */
2259 fprintf (tagf, "%d", np->lno);
2260 }
2261 putc ('\n', tagf);
2262 }
2263 }
2264 } /* if this node contains a valid tag */
2265
2266 /* Output subentries that follow this one */
2267 put_entries (np->right);
2268 if (!CTAGS)
2269 put_entries (np->left);
2270 }
2271
2272 \f
2273 /* C extensions. */
2274 #define C_EXT 0x00fff /* C extensions */
2275 #define C_PLAIN 0x00000 /* C */
2276 #define C_PLPL 0x00001 /* C++ */
2277 #define C_STAR 0x00003 /* C* */
2278 #define C_JAVA 0x00005 /* JAVA */
2279 #define C_AUTO 0x01000 /* C, but switch to C++ if `class' is met */
2280 #define YACC 0x10000 /* yacc file */
2281
2282 /*
2283 * The C symbol tables.
2284 */
2285 enum sym_type
2286 {
2287 st_none,
2288 st_C_objprot, st_C_objimpl, st_C_objend,
2289 st_C_gnumacro,
2290 st_C_ignore, st_C_attribute,
2291 st_C_javastruct,
2292 st_C_operator,
2293 st_C_class, st_C_template,
2294 st_C_struct, st_C_extern, st_C_enum, st_C_define, st_C_typedef
2295 };
2296
2297 /* Feed stuff between (but not including) %[ and %] lines to:
2298 gperf -m 5
2299 %[
2300 %compare-strncmp
2301 %enum
2302 %struct-type
2303 struct C_stab_entry { char *name; int c_ext; enum sym_type type; }
2304 %%
2305 if, 0, st_C_ignore
2306 for, 0, st_C_ignore
2307 while, 0, st_C_ignore
2308 switch, 0, st_C_ignore
2309 return, 0, st_C_ignore
2310 __attribute__, 0, st_C_attribute
2311 GTY, 0, st_C_attribute
2312 @interface, 0, st_C_objprot
2313 @protocol, 0, st_C_objprot
2314 @implementation,0, st_C_objimpl
2315 @end, 0, st_C_objend
2316 import, (C_JAVA & ~C_PLPL), st_C_ignore
2317 package, (C_JAVA & ~C_PLPL), st_C_ignore
2318 friend, C_PLPL, st_C_ignore
2319 extends, (C_JAVA & ~C_PLPL), st_C_javastruct
2320 implements, (C_JAVA & ~C_PLPL), st_C_javastruct
2321 interface, (C_JAVA & ~C_PLPL), st_C_struct
2322 class, 0, st_C_class
2323 namespace, C_PLPL, st_C_struct
2324 domain, C_STAR, st_C_struct
2325 union, 0, st_C_struct
2326 struct, 0, st_C_struct
2327 extern, 0, st_C_extern
2328 enum, 0, st_C_enum
2329 typedef, 0, st_C_typedef
2330 define, 0, st_C_define
2331 undef, 0, st_C_define
2332 operator, C_PLPL, st_C_operator
2333 template, 0, st_C_template
2334 # DEFUN used in emacs, the next three used in glibc (SYSCALL only for mach).
2335 DEFUN, 0, st_C_gnumacro
2336 SYSCALL, 0, st_C_gnumacro
2337 ENTRY, 0, st_C_gnumacro
2338 PSEUDO, 0, st_C_gnumacro
2339 # These are defined inside C functions, so currently they are not met.
2340 # EXFUN used in glibc, DEFVAR_* in emacs.
2341 #EXFUN, 0, st_C_gnumacro
2342 #DEFVAR_, 0, st_C_gnumacro
2343 %]
2344 and replace lines between %< and %> with its output, then:
2345 - remove the #if characterset check
2346 - make in_word_set static and not inline. */
2347 /*%<*/
2348 /* C code produced by gperf version 3.0.1 */
2349 /* Command-line: gperf -m 5 */
2350 /* Computed positions: -k'2-3' */
2351
2352 struct C_stab_entry { const char *name; int c_ext; enum sym_type type; };
2353 /* maximum key range = 33, duplicates = 0 */
2354
2355 static int
2356 hash (const char *str, int len)
2357 {
2358 static char const asso_values[] =
2359 {
2360 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2361 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2362 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2363 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2364 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2365 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2366 35, 35, 35, 35, 35, 35, 35, 35, 35, 3,
2367 26, 35, 35, 35, 35, 35, 35, 35, 27, 35,
2368 35, 35, 35, 24, 0, 35, 35, 35, 35, 0,
2369 35, 35, 35, 35, 35, 1, 35, 16, 35, 6,
2370 23, 0, 0, 35, 22, 0, 35, 35, 5, 0,
2371 0, 15, 1, 35, 6, 35, 8, 19, 35, 16,
2372 4, 5, 35, 35, 35, 35, 35, 35, 35, 35,
2373 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2374 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2375 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2376 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2377 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2378 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2379 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2380 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2381 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2382 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2383 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2384 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2385 35, 35, 35, 35, 35, 35
2386 };
2387 int hval = len;
2388
2389 switch (hval)
2390 {
2391 default:
2392 hval += asso_values[(unsigned char) str[2]];
2393 /*FALLTHROUGH*/
2394 case 2:
2395 hval += asso_values[(unsigned char) str[1]];
2396 break;
2397 }
2398 return hval;
2399 }
2400
2401 static struct C_stab_entry *
2402 in_word_set (register const char *str, register unsigned int len)
2403 {
2404 enum
2405 {
2406 TOTAL_KEYWORDS = 33,
2407 MIN_WORD_LENGTH = 2,
2408 MAX_WORD_LENGTH = 15,
2409 MIN_HASH_VALUE = 2,
2410 MAX_HASH_VALUE = 34
2411 };
2412
2413 static struct C_stab_entry wordlist[] =
2414 {
2415 {""}, {""},
2416 {"if", 0, st_C_ignore},
2417 {"GTY", 0, st_C_attribute},
2418 {"@end", 0, st_C_objend},
2419 {"union", 0, st_C_struct},
2420 {"define", 0, st_C_define},
2421 {"import", (C_JAVA & ~C_PLPL), st_C_ignore},
2422 {"template", 0, st_C_template},
2423 {"operator", C_PLPL, st_C_operator},
2424 {"@interface", 0, st_C_objprot},
2425 {"implements", (C_JAVA & ~C_PLPL), st_C_javastruct},
2426 {"friend", C_PLPL, st_C_ignore},
2427 {"typedef", 0, st_C_typedef},
2428 {"return", 0, st_C_ignore},
2429 {"@implementation",0, st_C_objimpl},
2430 {"@protocol", 0, st_C_objprot},
2431 {"interface", (C_JAVA & ~C_PLPL), st_C_struct},
2432 {"extern", 0, st_C_extern},
2433 {"extends", (C_JAVA & ~C_PLPL), st_C_javastruct},
2434 {"struct", 0, st_C_struct},
2435 {"domain", C_STAR, st_C_struct},
2436 {"switch", 0, st_C_ignore},
2437 {"enum", 0, st_C_enum},
2438 {"for", 0, st_C_ignore},
2439 {"namespace", C_PLPL, st_C_struct},
2440 {"class", 0, st_C_class},
2441 {"while", 0, st_C_ignore},
2442 {"undef", 0, st_C_define},
2443 {"package", (C_JAVA & ~C_PLPL), st_C_ignore},
2444 {"__attribute__", 0, st_C_attribute},
2445 {"SYSCALL", 0, st_C_gnumacro},
2446 {"ENTRY", 0, st_C_gnumacro},
2447 {"PSEUDO", 0, st_C_gnumacro},
2448 {"DEFUN", 0, st_C_gnumacro}
2449 };
2450
2451 if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH)
2452 {
2453 int key = hash (str, len);
2454
2455 if (key <= MAX_HASH_VALUE && key >= 0)
2456 {
2457 const char *s = wordlist[key].name;
2458
2459 if (*str == *s && !strncmp (str + 1, s + 1, len - 1) && s[len] == '\0')
2460 return &wordlist[key];
2461 }
2462 }
2463 return 0;
2464 }
2465 /*%>*/
2466
2467 static enum sym_type
2468 C_symtype (char *str, int len, int c_ext)
2469 {
2470 register struct C_stab_entry *se = in_word_set (str, len);
2471
2472 if (se == NULL || (se->c_ext && !(c_ext & se->c_ext)))
2473 return st_none;
2474 return se->type;
2475 }
2476
2477 \f
2478 /*
2479 * Ignoring __attribute__ ((list))
2480 */
2481 static bool inattribute; /* looking at an __attribute__ construct */
2482
2483 /*
2484 * C functions and variables are recognized using a simple
2485 * finite automaton. fvdef is its state variable.
2486 */
2487 static enum
2488 {
2489 fvnone, /* nothing seen */
2490 fdefunkey, /* Emacs DEFUN keyword seen */
2491 fdefunname, /* Emacs DEFUN name seen */
2492 foperator, /* func: operator keyword seen (cplpl) */
2493 fvnameseen, /* function or variable name seen */
2494 fstartlist, /* func: just after open parenthesis */
2495 finlist, /* func: in parameter list */
2496 flistseen, /* func: after parameter list */
2497 fignore, /* func: before open brace */
2498 vignore /* var-like: ignore until ';' */
2499 } fvdef;
2500
2501 static bool fvextern; /* func or var: extern keyword seen; */
2502
2503 /*
2504 * typedefs are recognized using a simple finite automaton.
2505 * typdef is its state variable.
2506 */
2507 static enum
2508 {
2509 tnone, /* nothing seen */
2510 tkeyseen, /* typedef keyword seen */
2511 ttypeseen, /* defined type seen */
2512 tinbody, /* inside typedef body */
2513 tend, /* just before typedef tag */
2514 tignore /* junk after typedef tag */
2515 } typdef;
2516
2517 /*
2518 * struct-like structures (enum, struct and union) are recognized
2519 * using another simple finite automaton. `structdef' is its state
2520 * variable.
2521 */
2522 static enum
2523 {
2524 snone, /* nothing seen yet,
2525 or in struct body if bracelev > 0 */
2526 skeyseen, /* struct-like keyword seen */
2527 stagseen, /* struct-like tag seen */
2528 scolonseen /* colon seen after struct-like tag */
2529 } structdef;
2530
2531 /*
2532 * When objdef is different from onone, objtag is the name of the class.
2533 */
2534 static const char *objtag = "<uninited>";
2535
2536 /*
2537 * Yet another little state machine to deal with preprocessor lines.
2538 */
2539 static enum
2540 {
2541 dnone, /* nothing seen */
2542 dsharpseen, /* '#' seen as first char on line */
2543 ddefineseen, /* '#' and 'define' seen */
2544 dignorerest /* ignore rest of line */
2545 } definedef;
2546
2547 /*
2548 * State machine for Objective C protocols and implementations.
2549 * Idea by Tom R.Hageman <tom@basil.icce.rug.nl> (1995)
2550 */
2551 static enum
2552 {
2553 onone, /* nothing seen */
2554 oprotocol, /* @interface or @protocol seen */
2555 oimplementation, /* @implementations seen */
2556 otagseen, /* class name seen */
2557 oparenseen, /* parenthesis before category seen */
2558 ocatseen, /* category name seen */
2559 oinbody, /* in @implementation body */
2560 omethodsign, /* in @implementation body, after +/- */
2561 omethodtag, /* after method name */
2562 omethodcolon, /* after method colon */
2563 omethodparm, /* after method parameter */
2564 oignore /* wait for @end */
2565 } objdef;
2566
2567
2568 /*
2569 * Use this structure to keep info about the token read, and how it
2570 * should be tagged. Used by the make_C_tag function to build a tag.
2571 */
2572 static struct tok
2573 {
2574 char *line; /* string containing the token */
2575 int offset; /* where the token starts in LINE */
2576 int length; /* token length */
2577 /*
2578 The previous members can be used to pass strings around for generic
2579 purposes. The following ones specifically refer to creating tags. In this
2580 case the token contained here is the pattern that will be used to create a
2581 tag.
2582 */
2583 bool valid; /* do not create a tag; the token should be
2584 invalidated whenever a state machine is
2585 reset prematurely */
2586 bool named; /* create a named tag */
2587 int lineno; /* source line number of tag */
2588 long linepos; /* source char number of tag */
2589 } token; /* latest token read */
2590
2591 /*
2592 * Variables and functions for dealing with nested structures.
2593 * Idea by Mykola Dzyuba <mdzyuba@yahoo.com> (2001)
2594 */
2595 static void pushclass_above (int, char *, int);
2596 static void popclass_above (int);
2597 static void write_classname (linebuffer *, const char *qualifier);
2598
2599 static struct {
2600 char **cname; /* nested class names */
2601 int *bracelev; /* nested class brace level */
2602 int nl; /* class nesting level (elements used) */
2603 int size; /* length of the array */
2604 } cstack; /* stack for nested declaration tags */
2605 /* Current struct nesting depth (namespace, class, struct, union, enum). */
2606 #define nestlev (cstack.nl)
2607 /* After struct keyword or in struct body, not inside a nested function. */
2608 #define instruct (structdef == snone && nestlev > 0 \
2609 && bracelev == cstack.bracelev[nestlev-1] + 1)
2610
2611 static void
2612 pushclass_above (int bracelev, char *str, int len)
2613 {
2614 int nl;
2615
2616 popclass_above (bracelev);
2617 nl = cstack.nl;
2618 if (nl >= cstack.size)
2619 {
2620 int size = cstack.size *= 2;
2621 xrnew (cstack.cname, size, char *);
2622 xrnew (cstack.bracelev, size, int);
2623 }
2624 assert (nl == 0 || cstack.bracelev[nl-1] < bracelev);
2625 cstack.cname[nl] = (str == NULL) ? NULL : savenstr (str, len);
2626 cstack.bracelev[nl] = bracelev;
2627 cstack.nl = nl + 1;
2628 }
2629
2630 static void
2631 popclass_above (int bracelev)
2632 {
2633 int nl;
2634
2635 for (nl = cstack.nl - 1;
2636 nl >= 0 && cstack.bracelev[nl] >= bracelev;
2637 nl--)
2638 {
2639 free (cstack.cname[nl]);
2640 cstack.nl = nl;
2641 }
2642 }
2643
2644 static void
2645 write_classname (linebuffer *cn, const char *qualifier)
2646 {
2647 int i, len;
2648 int qlen = strlen (qualifier);
2649
2650 if (cstack.nl == 0 || cstack.cname[0] == NULL)
2651 {
2652 len = 0;
2653 cn->len = 0;
2654 cn->buffer[0] = '\0';
2655 }
2656 else
2657 {
2658 len = strlen (cstack.cname[0]);
2659 linebuffer_setlen (cn, len);
2660 strcpy (cn->buffer, cstack.cname[0]);
2661 }
2662 for (i = 1; i < cstack.nl; i++)
2663 {
2664 char *s = cstack.cname[i];
2665 if (s == NULL)
2666 continue;
2667 linebuffer_setlen (cn, len + qlen + strlen (s));
2668 len += sprintf (cn->buffer + len, "%s%s", qualifier, s);
2669 }
2670 }
2671
2672 \f
2673 static bool consider_token (char *, int, int, int *, int, int, bool *);
2674 static void make_C_tag (bool);
2675
2676 /*
2677 * consider_token ()
2678 * checks to see if the current token is at the start of a
2679 * function or variable, or corresponds to a typedef, or
2680 * is a struct/union/enum tag, or #define, or an enum constant.
2681 *
2682 * *IS_FUNC_OR_VAR gets true if the token is a function or #define macro
2683 * with args. C_EXTP points to which language we are looking at.
2684 *
2685 * Globals
2686 * fvdef IN OUT
2687 * structdef IN OUT
2688 * definedef IN OUT
2689 * typdef IN OUT
2690 * objdef IN OUT
2691 */
2692
2693 static bool
2694 consider_token (char *str, int len, int c, int *c_extp,
2695 int bracelev, int parlev, bool *is_func_or_var)
2696 /* IN: token pointer */
2697 /* IN: token length */
2698 /* IN: first char after the token */
2699 /* IN, OUT: C extensions mask */
2700 /* IN: brace level */
2701 /* IN: parenthesis level */
2702 /* OUT: function or variable found */
2703 {
2704 /* When structdef is stagseen, scolonseen, or snone with bracelev > 0,
2705 structtype is the type of the preceding struct-like keyword, and
2706 structbracelev is the brace level where it has been seen. */
2707 static enum sym_type structtype;
2708 static int structbracelev;
2709 static enum sym_type toktype;
2710
2711
2712 toktype = C_symtype (str, len, *c_extp);
2713
2714 /*
2715 * Skip __attribute__
2716 */
2717 if (toktype == st_C_attribute)
2718 {
2719 inattribute = true;
2720 return false;
2721 }
2722
2723 /*
2724 * Advance the definedef state machine.
2725 */
2726 switch (definedef)
2727 {
2728 case dnone:
2729 /* We're not on a preprocessor line. */
2730 if (toktype == st_C_gnumacro)
2731 {
2732 fvdef = fdefunkey;
2733 return false;
2734 }
2735 break;
2736 case dsharpseen:
2737 if (toktype == st_C_define)
2738 {
2739 definedef = ddefineseen;
2740 }
2741 else
2742 {
2743 definedef = dignorerest;
2744 }
2745 return false;
2746 case ddefineseen:
2747 /*
2748 * Make a tag for any macro, unless it is a constant
2749 * and constantypedefs is false.
2750 */
2751 definedef = dignorerest;
2752 *is_func_or_var = (c == '(');
2753 if (!*is_func_or_var && !constantypedefs)
2754 return false;
2755 else
2756 return true;
2757 case dignorerest:
2758 return false;
2759 default:
2760 error ("internal error: definedef value.");
2761 }
2762
2763 /*
2764 * Now typedefs
2765 */
2766 switch (typdef)
2767 {
2768 case tnone:
2769 if (toktype == st_C_typedef)
2770 {
2771 if (typedefs)
2772 typdef = tkeyseen;
2773 fvextern = false;
2774 fvdef = fvnone;
2775 return false;
2776 }
2777 break;
2778 case tkeyseen:
2779 switch (toktype)
2780 {
2781 case st_none:
2782 case st_C_class:
2783 case st_C_struct:
2784 case st_C_enum:
2785 typdef = ttypeseen;
2786 break;
2787 default:
2788 break;
2789 }
2790 break;
2791 case ttypeseen:
2792 if (structdef == snone && fvdef == fvnone)
2793 {
2794 fvdef = fvnameseen;
2795 return true;
2796 }
2797 break;
2798 case tend:
2799 switch (toktype)
2800 {
2801 case st_C_class:
2802 case st_C_struct:
2803 case st_C_enum:
2804 return false;
2805 default:
2806 return true;
2807 }
2808 default:
2809 break;
2810 }
2811
2812 switch (toktype)
2813 {
2814 case st_C_javastruct:
2815 if (structdef == stagseen)
2816 structdef = scolonseen;
2817 return false;
2818 case st_C_template:
2819 case st_C_class:
2820 if ((*c_extp & C_AUTO) /* automatic detection of C++ language */
2821 && bracelev == 0
2822 && definedef == dnone && structdef == snone
2823 && typdef == tnone && fvdef == fvnone)
2824 *c_extp = (*c_extp | C_PLPL) & ~C_AUTO;
2825 if (toktype == st_C_template)
2826 break;
2827 /* FALLTHRU */
2828 case st_C_struct:
2829 case st_C_enum:
2830 if (parlev == 0
2831 && fvdef != vignore
2832 && (typdef == tkeyseen
2833 || (typedefs_or_cplusplus && structdef == snone)))
2834 {
2835 structdef = skeyseen;
2836 structtype = toktype;
2837 structbracelev = bracelev;
2838 if (fvdef == fvnameseen)
2839 fvdef = fvnone;
2840 }
2841 return false;
2842 default:
2843 break;
2844 }
2845
2846 if (structdef == skeyseen)
2847 {
2848 structdef = stagseen;
2849 return true;
2850 }
2851
2852 if (typdef != tnone)
2853 definedef = dnone;
2854
2855 /* Detect Objective C constructs. */
2856 switch (objdef)
2857 {
2858 case onone:
2859 switch (toktype)
2860 {
2861 case st_C_objprot:
2862 objdef = oprotocol;
2863 return false;
2864 case st_C_objimpl:
2865 objdef = oimplementation;
2866 return false;
2867 default:
2868 break;
2869 }
2870 break;
2871 case oimplementation:
2872 /* Save the class tag for functions or variables defined inside. */
2873 objtag = savenstr (str, len);
2874 objdef = oinbody;
2875 return false;
2876 case oprotocol:
2877 /* Save the class tag for categories. */
2878 objtag = savenstr (str, len);
2879 objdef = otagseen;
2880 *is_func_or_var = true;
2881 return true;
2882 case oparenseen:
2883 objdef = ocatseen;
2884 *is_func_or_var = true;
2885 return true;
2886 case oinbody:
2887 break;
2888 case omethodsign:
2889 if (parlev == 0)
2890 {
2891 fvdef = fvnone;
2892 objdef = omethodtag;
2893 linebuffer_setlen (&token_name, len);
2894 memcpy (token_name.buffer, str, len);
2895 token_name.buffer[len] = '\0';
2896 return true;
2897 }
2898 return false;
2899 case omethodcolon:
2900 if (parlev == 0)
2901 objdef = omethodparm;
2902 return false;
2903 case omethodparm:
2904 if (parlev == 0)
2905 {
2906 objdef = omethodtag;
2907 if (class_qualify)
2908 {
2909 int oldlen = token_name.len;
2910 fvdef = fvnone;
2911 linebuffer_setlen (&token_name, oldlen + len);
2912 memcpy (token_name.buffer + oldlen, str, len);
2913 token_name.buffer[oldlen + len] = '\0';
2914 }
2915 return true;
2916 }
2917 return false;
2918 case oignore:
2919 if (toktype == st_C_objend)
2920 {
2921 /* Memory leakage here: the string pointed by objtag is
2922 never released, because many tests would be needed to
2923 avoid breaking on incorrect input code. The amount of
2924 memory leaked here is the sum of the lengths of the
2925 class tags.
2926 free (objtag); */
2927 objdef = onone;
2928 }
2929 return false;
2930 default:
2931 break;
2932 }
2933
2934 /* A function, variable or enum constant? */
2935 switch (toktype)
2936 {
2937 case st_C_extern:
2938 fvextern = true;
2939 switch (fvdef)
2940 {
2941 case finlist:
2942 case flistseen:
2943 case fignore:
2944 case vignore:
2945 break;
2946 default:
2947 fvdef = fvnone;
2948 }
2949 return false;
2950 case st_C_ignore:
2951 fvextern = false;
2952 fvdef = vignore;
2953 return false;
2954 case st_C_operator:
2955 fvdef = foperator;
2956 *is_func_or_var = true;
2957 return true;
2958 case st_none:
2959 if (constantypedefs
2960 && structdef == snone
2961 && structtype == st_C_enum && bracelev > structbracelev
2962 /* Don't tag tokens in expressions that assign values to enum
2963 constants. */
2964 && fvdef != vignore)
2965 return true; /* enum constant */
2966 switch (fvdef)
2967 {
2968 case fdefunkey:
2969 if (bracelev > 0)
2970 break;
2971 fvdef = fdefunname; /* GNU macro */
2972 *is_func_or_var = true;
2973 return true;
2974 case fvnone:
2975 switch (typdef)
2976 {
2977 case ttypeseen:
2978 return false;
2979 case tnone:
2980 if ((strneq (str, "asm", 3) && endtoken (str[3]))
2981 || (strneq (str, "__asm__", 7) && endtoken (str[7])))
2982 {
2983 fvdef = vignore;
2984 return false;
2985 }
2986 break;
2987 default:
2988 break;
2989 }
2990 /* FALLTHRU */
2991 case fvnameseen:
2992 if (len >= 10 && strneq (str+len-10, "::operator", 10))
2993 {
2994 if (*c_extp & C_AUTO) /* automatic detection of C++ */
2995 *c_extp = (*c_extp | C_PLPL) & ~C_AUTO;
2996 fvdef = foperator;
2997 *is_func_or_var = true;
2998 return true;
2999 }
3000 if (bracelev > 0 && !instruct)
3001 break;
3002 fvdef = fvnameseen; /* function or variable */
3003 *is_func_or_var = true;
3004 return true;
3005 default:
3006 break;
3007 }
3008 break;
3009 default:
3010 break;
3011 }
3012
3013 return false;
3014 }
3015
3016 \f
3017 /*
3018 * C_entries often keeps pointers to tokens or lines which are older than
3019 * the line currently read. By keeping two line buffers, and switching
3020 * them at end of line, it is possible to use those pointers.
3021 */
3022 static struct
3023 {
3024 long linepos;
3025 linebuffer lb;
3026 } lbs[2];
3027
3028 #define current_lb_is_new (newndx == curndx)
3029 #define switch_line_buffers() (curndx = 1 - curndx)
3030
3031 #define curlb (lbs[curndx].lb)
3032 #define newlb (lbs[newndx].lb)
3033 #define curlinepos (lbs[curndx].linepos)
3034 #define newlinepos (lbs[newndx].linepos)
3035
3036 #define plainc ((c_ext & C_EXT) == C_PLAIN)
3037 #define cplpl (c_ext & C_PLPL)
3038 #define cjava ((c_ext & C_JAVA) == C_JAVA)
3039
3040 #define CNL_SAVE_DEFINEDEF() \
3041 do { \
3042 curlinepos = charno; \
3043 readline (&curlb, inf); \
3044 lp = curlb.buffer; \
3045 quotednl = false; \
3046 newndx = curndx; \
3047 } while (0)
3048
3049 #define CNL() \
3050 do { \
3051 CNL_SAVE_DEFINEDEF (); \
3052 if (savetoken.valid) \
3053 { \
3054 token = savetoken; \
3055 savetoken.valid = false; \
3056 } \
3057 definedef = dnone; \
3058 } while (0)
3059
3060
3061 static void
3062 make_C_tag (bool isfun)
3063 {
3064 /* This function is never called when token.valid is false, but
3065 we must protect against invalid input or internal errors. */
3066 if (token.valid)
3067 make_tag (token_name.buffer, token_name.len, isfun, token.line,
3068 token.offset+token.length+1, token.lineno, token.linepos);
3069 else if (DEBUG)
3070 { /* this branch is optimized away if !DEBUG */
3071 make_tag (concat ("INVALID TOKEN:-->", token_name.buffer, ""),
3072 token_name.len + 17, isfun, token.line,
3073 token.offset+token.length+1, token.lineno, token.linepos);
3074 error ("INVALID TOKEN");
3075 }
3076
3077 token.valid = false;
3078 }
3079
3080 static bool
3081 perhaps_more_input (FILE *inf)
3082 {
3083 return !feof (inf) && !ferror (inf);
3084 }
3085
3086
3087 /*
3088 * C_entries ()
3089 * This routine finds functions, variables, typedefs,
3090 * #define's, enum constants and struct/union/enum definitions in
3091 * C syntax and adds them to the list.
3092 */
3093 static void
3094 C_entries (int c_ext, FILE *inf)
3095 /* extension of C */
3096 /* input file */
3097 {
3098 register char c; /* latest char read; '\0' for end of line */
3099 register char *lp; /* pointer one beyond the character `c' */
3100 int curndx, newndx; /* indices for current and new lb */
3101 register int tokoff; /* offset in line of start of current token */
3102 register int toklen; /* length of current token */
3103 const char *qualifier; /* string used to qualify names */
3104 int qlen; /* length of qualifier */
3105 int bracelev; /* current brace level */
3106 int bracketlev; /* current bracket level */
3107 int parlev; /* current parenthesis level */
3108 int attrparlev; /* __attribute__ parenthesis level */
3109 int templatelev; /* current template level */
3110 int typdefbracelev; /* bracelev where a typedef struct body begun */
3111 bool incomm, inquote, inchar, quotednl, midtoken;
3112 bool yacc_rules; /* in the rules part of a yacc file */
3113 struct tok savetoken = {0}; /* token saved during preprocessor handling */
3114
3115
3116 linebuffer_init (&lbs[0].lb);
3117 linebuffer_init (&lbs[1].lb);
3118 if (cstack.size == 0)
3119 {
3120 cstack.size = (DEBUG) ? 1 : 4;
3121 cstack.nl = 0;
3122 cstack.cname = xnew (cstack.size, char *);
3123 cstack.bracelev = xnew (cstack.size, int);
3124 }
3125
3126 tokoff = toklen = typdefbracelev = 0; /* keep compiler quiet */
3127 curndx = newndx = 0;
3128 lp = curlb.buffer;
3129 *lp = 0;
3130
3131 fvdef = fvnone; fvextern = false; typdef = tnone;
3132 structdef = snone; definedef = dnone; objdef = onone;
3133 yacc_rules = false;
3134 midtoken = inquote = inchar = incomm = quotednl = false;
3135 token.valid = savetoken.valid = false;
3136 bracelev = bracketlev = parlev = attrparlev = templatelev = 0;
3137 if (cjava)
3138 { qualifier = "."; qlen = 1; }
3139 else
3140 { qualifier = "::"; qlen = 2; }
3141
3142
3143 while (perhaps_more_input (inf))
3144 {
3145 c = *lp++;
3146 if (c == '\\')
3147 {
3148 /* If we are at the end of the line, the next character is a
3149 '\0'; do not skip it, because it is what tells us
3150 to read the next line. */
3151 if (*lp == '\0')
3152 {
3153 quotednl = true;
3154 continue;
3155 }
3156 lp++;
3157 c = ' ';
3158 }
3159 else if (incomm)
3160 {
3161 switch (c)
3162 {
3163 case '*':
3164 if (*lp == '/')
3165 {
3166 c = *lp++;
3167 incomm = false;
3168 }
3169 break;
3170 case '\0':
3171 /* Newlines inside comments do not end macro definitions in
3172 traditional cpp. */
3173 CNL_SAVE_DEFINEDEF ();
3174 break;
3175 }
3176 continue;
3177 }
3178 else if (inquote)
3179 {
3180 switch (c)
3181 {
3182 case '"':
3183 inquote = false;
3184 break;
3185 case '\0':
3186 /* Newlines inside strings do not end macro definitions
3187 in traditional cpp, even though compilers don't
3188 usually accept them. */
3189 CNL_SAVE_DEFINEDEF ();
3190 break;
3191 }
3192 continue;
3193 }
3194 else if (inchar)
3195 {
3196 switch (c)
3197 {
3198 case '\0':
3199 /* Hmmm, something went wrong. */
3200 CNL ();
3201 /* FALLTHRU */
3202 case '\'':
3203 inchar = false;
3204 break;
3205 }
3206 continue;
3207 }
3208 else switch (c)
3209 {
3210 case '"':
3211 inquote = true;
3212 if (bracketlev > 0)
3213 continue;
3214 if (inattribute)
3215 break;
3216 switch (fvdef)
3217 {
3218 case fdefunkey:
3219 case fstartlist:
3220 case finlist:
3221 case fignore:
3222 case vignore:
3223 break;
3224 default:
3225 fvextern = false;
3226 fvdef = fvnone;
3227 }
3228 continue;
3229 case '\'':
3230 inchar = true;
3231 if (bracketlev > 0)
3232 continue;
3233 if (inattribute)
3234 break;
3235 if (fvdef != finlist && fvdef != fignore && fvdef != vignore)
3236 {
3237 fvextern = false;
3238 fvdef = fvnone;
3239 }
3240 continue;
3241 case '/':
3242 if (*lp == '*')
3243 {
3244 incomm = true;
3245 lp++;
3246 c = ' ';
3247 if (bracketlev > 0)
3248 continue;
3249 }
3250 else if (/* cplpl && */ *lp == '/')
3251 {
3252 c = '\0';
3253 }
3254 break;
3255 case '%':
3256 if ((c_ext & YACC) && *lp == '%')
3257 {
3258 /* Entering or exiting rules section in yacc file. */
3259 lp++;
3260 definedef = dnone; fvdef = fvnone; fvextern = false;
3261 typdef = tnone; structdef = snone;
3262 midtoken = inquote = inchar = incomm = quotednl = false;
3263 bracelev = 0;
3264 yacc_rules = !yacc_rules;
3265 continue;
3266 }
3267 else
3268 break;
3269 case '#':
3270 if (definedef == dnone)
3271 {
3272 char *cp;
3273 bool cpptoken = true;
3274
3275 /* Look back on this line. If all blanks, or nonblanks
3276 followed by an end of comment, this is a preprocessor
3277 token. */
3278 for (cp = newlb.buffer; cp < lp-1; cp++)
3279 if (!c_isspace (*cp))
3280 {
3281 if (*cp == '*' && cp[1] == '/')
3282 {
3283 cp++;
3284 cpptoken = true;
3285 }
3286 else
3287 cpptoken = false;
3288 }
3289 if (cpptoken)
3290 {
3291 definedef = dsharpseen;
3292 /* This is needed for tagging enum values: when there are
3293 preprocessor conditionals inside the enum, we need to
3294 reset the value of fvdef so that the next enum value is
3295 tagged even though the one before it did not end in a
3296 comma. */
3297 if (fvdef == vignore && instruct && parlev == 0)
3298 {
3299 if (strneq (cp, "#if", 3) || strneq (cp, "#el", 3))
3300 fvdef = fvnone;
3301 }
3302 }
3303 } /* if (definedef == dnone) */
3304 continue;
3305 case '[':
3306 bracketlev++;
3307 continue;
3308 default:
3309 if (bracketlev > 0)
3310 {
3311 if (c == ']')
3312 --bracketlev;
3313 else if (c == '\0')
3314 CNL_SAVE_DEFINEDEF ();
3315 continue;
3316 }
3317 break;
3318 } /* switch (c) */
3319
3320
3321 /* Consider token only if some involved conditions are satisfied. */
3322 if (typdef != tignore
3323 && definedef != dignorerest
3324 && fvdef != finlist
3325 && templatelev == 0
3326 && (definedef != dnone
3327 || structdef != scolonseen)
3328 && !inattribute)
3329 {
3330 if (midtoken)
3331 {
3332 if (endtoken (c))
3333 {
3334 if (c == ':' && *lp == ':' && begtoken (lp[1]))
3335 /* This handles :: in the middle,
3336 but not at the beginning of an identifier.
3337 Also, space-separated :: is not recognized. */
3338 {
3339 if (c_ext & C_AUTO) /* automatic detection of C++ */
3340 c_ext = (c_ext | C_PLPL) & ~C_AUTO;
3341 lp += 2;
3342 toklen += 2;
3343 c = lp[-1];
3344 goto still_in_token;
3345 }
3346 else
3347 {
3348 bool funorvar = false;
3349
3350 if (yacc_rules
3351 || consider_token (newlb.buffer + tokoff, toklen, c,
3352 &c_ext, bracelev, parlev,
3353 &funorvar))
3354 {
3355 if (fvdef == foperator)
3356 {
3357 char *oldlp = lp;
3358 lp = skip_spaces (lp-1);
3359 if (*lp != '\0')
3360 lp += 1;
3361 while (*lp != '\0'
3362 && !c_isspace (*lp) && *lp != '(')
3363 lp += 1;
3364 c = *lp++;
3365 toklen += lp - oldlp;
3366 }
3367 token.named = false;
3368 if (!plainc
3369 && nestlev > 0 && definedef == dnone)
3370 /* in struct body */
3371 {
3372 if (class_qualify)
3373 {
3374 int len;
3375 write_classname (&token_name, qualifier);
3376 len = token_name.len;
3377 linebuffer_setlen (&token_name,
3378 len + qlen + toklen);
3379 sprintf (token_name.buffer + len, "%s%.*s",
3380 qualifier, toklen,
3381 newlb.buffer + tokoff);
3382 }
3383 else
3384 {
3385 linebuffer_setlen (&token_name, toklen);
3386 sprintf (token_name.buffer, "%.*s",
3387 toklen, newlb.buffer + tokoff);
3388 }
3389 token.named = true;
3390 }
3391 else if (objdef == ocatseen)
3392 /* Objective C category */
3393 {
3394 if (class_qualify)
3395 {
3396 int len = strlen (objtag) + 2 + toklen;
3397 linebuffer_setlen (&token_name, len);
3398 sprintf (token_name.buffer, "%s(%.*s)",
3399 objtag, toklen,
3400 newlb.buffer + tokoff);
3401 }
3402 else
3403 {
3404 linebuffer_setlen (&token_name, toklen);
3405 sprintf (token_name.buffer, "%.*s",
3406 toklen, newlb.buffer + tokoff);
3407 }
3408 token.named = true;
3409 }
3410 else if (objdef == omethodtag
3411 || objdef == omethodparm)
3412 /* Objective C method */
3413 {
3414 token.named = true;
3415 }
3416 else if (fvdef == fdefunname)
3417 /* GNU DEFUN and similar macros */
3418 {
3419 bool defun = (newlb.buffer[tokoff] == 'F');
3420 int off = tokoff;
3421 int len = toklen;
3422
3423 /* Rewrite the tag so that emacs lisp DEFUNs
3424 can be found by their elisp name */
3425 if (defun)
3426 {
3427 off += 1;
3428 len -= 1;
3429 }
3430 linebuffer_setlen (&token_name, len);
3431 memcpy (token_name.buffer,
3432 newlb.buffer + off, len);
3433 token_name.buffer[len] = '\0';
3434 if (defun)
3435 while (--len >= 0)
3436 if (token_name.buffer[len] == '_')
3437 token_name.buffer[len] = '-';
3438 token.named = defun;
3439 }
3440 else
3441 {
3442 linebuffer_setlen (&token_name, toklen);
3443 memcpy (token_name.buffer,
3444 newlb.buffer + tokoff, toklen);
3445 token_name.buffer[toklen] = '\0';
3446 /* Name macros and members. */
3447 token.named = (structdef == stagseen
3448 || typdef == ttypeseen
3449 || typdef == tend
3450 || (funorvar
3451 && definedef == dignorerest)
3452 || (funorvar
3453 && definedef == dnone
3454 && structdef == snone
3455 && bracelev > 0));
3456 }
3457 token.lineno = lineno;
3458 token.offset = tokoff;
3459 token.length = toklen;
3460 token.line = newlb.buffer;
3461 token.linepos = newlinepos;
3462 token.valid = true;
3463
3464 if (definedef == dnone
3465 && (fvdef == fvnameseen
3466 || fvdef == foperator
3467 || structdef == stagseen
3468 || typdef == tend
3469 || typdef == ttypeseen
3470 || objdef != onone))
3471 {
3472 if (current_lb_is_new)
3473 switch_line_buffers ();
3474 }
3475 else if (definedef != dnone
3476 || fvdef == fdefunname
3477 || instruct)
3478 make_C_tag (funorvar);
3479 }
3480 else /* not yacc and consider_token failed */
3481 {
3482 if (inattribute && fvdef == fignore)
3483 {
3484 /* We have just met __attribute__ after a
3485 function parameter list: do not tag the
3486 function again. */
3487 fvdef = fvnone;
3488 }
3489 }
3490 midtoken = false;
3491 }
3492 } /* if (endtoken (c)) */
3493 else if (intoken (c))
3494 still_in_token:
3495 {
3496 toklen++;
3497 continue;
3498 }
3499 } /* if (midtoken) */
3500 else if (begtoken (c))
3501 {
3502 switch (definedef)
3503 {
3504 case dnone:
3505 switch (fvdef)
3506 {
3507 case fstartlist:
3508 /* This prevents tagging fb in
3509 void (__attribute__((noreturn)) *fb) (void);
3510 Fixing this is not easy and not very important. */
3511 fvdef = finlist;
3512 continue;
3513 case flistseen:
3514 if (plainc || declarations)
3515 {
3516 make_C_tag (true); /* a function */
3517 fvdef = fignore;
3518 }
3519 break;
3520 default:
3521 break;
3522 }
3523 if (structdef == stagseen && !cjava)
3524 {
3525 popclass_above (bracelev);
3526 structdef = snone;
3527 }
3528 break;
3529 case dsharpseen:
3530 savetoken = token;
3531 break;
3532 default:
3533 break;
3534 }
3535 if (!yacc_rules || lp == newlb.buffer + 1)
3536 {
3537 tokoff = lp - 1 - newlb.buffer;
3538 toklen = 1;
3539 midtoken = true;
3540 }
3541 continue;
3542 } /* if (begtoken) */
3543 } /* if must look at token */
3544
3545
3546 /* Detect end of line, colon, comma, semicolon and various braces
3547 after having handled a token.*/
3548 switch (c)
3549 {
3550 case ':':
3551 if (inattribute)
3552 break;
3553 if (yacc_rules && token.offset == 0 && token.valid)
3554 {
3555 make_C_tag (false); /* a yacc function */
3556 break;
3557 }
3558 if (definedef != dnone)
3559 break;
3560 switch (objdef)
3561 {
3562 case otagseen:
3563 objdef = oignore;
3564 make_C_tag (true); /* an Objective C class */
3565 break;
3566 case omethodtag:
3567 case omethodparm:
3568 objdef = omethodcolon;
3569 if (class_qualify)
3570 {
3571 int toklen = token_name.len;
3572 linebuffer_setlen (&token_name, toklen + 1);
3573 strcpy (token_name.buffer + toklen, ":");
3574 }
3575 break;
3576 default:
3577 break;
3578 }
3579 if (structdef == stagseen)
3580 {
3581 structdef = scolonseen;
3582 break;
3583 }
3584 /* Should be useless, but may be work as a safety net. */
3585 if (cplpl && fvdef == flistseen)
3586 {
3587 make_C_tag (true); /* a function */
3588 fvdef = fignore;
3589 break;
3590 }
3591 break;
3592 case ';':
3593 if (definedef != dnone || inattribute)
3594 break;
3595 switch (typdef)
3596 {
3597 case tend:
3598 case ttypeseen:
3599 make_C_tag (false); /* a typedef */
3600 typdef = tnone;
3601 fvdef = fvnone;
3602 break;
3603 case tnone:
3604 case tinbody:
3605 case tignore:
3606 switch (fvdef)
3607 {
3608 case fignore:
3609 if (typdef == tignore || cplpl)
3610 fvdef = fvnone;
3611 break;
3612 case fvnameseen:
3613 if ((globals && bracelev == 0 && (!fvextern || declarations))
3614 || (members && instruct))
3615 make_C_tag (false); /* a variable */
3616 fvextern = false;
3617 fvdef = fvnone;
3618 token.valid = false;
3619 break;
3620 case flistseen:
3621 if ((declarations
3622 && (cplpl || !instruct)
3623 && (typdef == tnone || (typdef != tignore && instruct)))
3624 || (members
3625 && plainc && instruct))
3626 make_C_tag (true); /* a function */
3627 /* FALLTHRU */
3628 default:
3629 fvextern = false;
3630 fvdef = fvnone;
3631 if (declarations
3632 && cplpl && structdef == stagseen)
3633 make_C_tag (false); /* forward declaration */
3634 else
3635 token.valid = false;
3636 } /* switch (fvdef) */
3637 /* FALLTHRU */
3638 default:
3639 if (!instruct)
3640 typdef = tnone;
3641 }
3642 if (structdef == stagseen)
3643 structdef = snone;
3644 break;
3645 case ',':
3646 if (definedef != dnone || inattribute)
3647 break;
3648 switch (objdef)
3649 {
3650 case omethodtag:
3651 case omethodparm:
3652 make_C_tag (true); /* an Objective C method */
3653 objdef = oinbody;
3654 break;
3655 default:
3656 break;
3657 }
3658 switch (fvdef)
3659 {
3660 case fdefunkey:
3661 case foperator:
3662 case fstartlist:
3663 case finlist:
3664 case fignore:
3665 break;
3666 case vignore:
3667 if (instruct && parlev == 0)
3668 fvdef = fvnone;
3669 break;
3670 case fdefunname:
3671 fvdef = fignore;
3672 break;
3673 case fvnameseen:
3674 if (parlev == 0
3675 && ((globals
3676 && bracelev == 0
3677 && templatelev == 0
3678 && (!fvextern || declarations))
3679 || (members && instruct)))
3680 make_C_tag (false); /* a variable */
3681 break;
3682 case flistseen:
3683 if ((declarations && typdef == tnone && !instruct)
3684 || (members && typdef != tignore && instruct))
3685 {
3686 make_C_tag (true); /* a function */
3687 fvdef = fvnameseen;
3688 }
3689 else if (!declarations)
3690 fvdef = fvnone;
3691 token.valid = false;
3692 break;
3693 default:
3694 fvdef = fvnone;
3695 }
3696 if (structdef == stagseen)
3697 structdef = snone;
3698 break;
3699 case ']':
3700 if (definedef != dnone || inattribute)
3701 break;
3702 if (structdef == stagseen)
3703 structdef = snone;
3704 switch (typdef)
3705 {
3706 case ttypeseen:
3707 case tend:
3708 typdef = tignore;
3709 make_C_tag (false); /* a typedef */
3710 break;
3711 case tnone:
3712 case tinbody:
3713 switch (fvdef)
3714 {
3715 case foperator:
3716 case finlist:
3717 case fignore:
3718 case vignore:
3719 break;
3720 case fvnameseen:
3721 if ((members && bracelev == 1)
3722 || (globals && bracelev == 0
3723 && (!fvextern || declarations)))
3724 make_C_tag (false); /* a variable */
3725 /* FALLTHRU */
3726 default:
3727 fvdef = fvnone;
3728 }
3729 break;
3730 default:
3731 break;
3732 }
3733 break;
3734 case '(':
3735 if (inattribute)
3736 {
3737 attrparlev++;
3738 break;
3739 }
3740 if (definedef != dnone)
3741 break;
3742 if (objdef == otagseen && parlev == 0)
3743 objdef = oparenseen;
3744 switch (fvdef)
3745 {
3746 case fvnameseen:
3747 if (typdef == ttypeseen
3748 && *lp != '*'
3749 && !instruct)
3750 {
3751 /* This handles constructs like:
3752 typedef void OperatorFun (int fun); */
3753 make_C_tag (false);
3754 typdef = tignore;
3755 fvdef = fignore;
3756 break;
3757 }
3758 /* FALLTHRU */
3759 case foperator:
3760 fvdef = fstartlist;
3761 break;
3762 case flistseen:
3763 fvdef = finlist;
3764 break;
3765 default:
3766 break;
3767 }
3768 parlev++;
3769 break;
3770 case ')':
3771 if (inattribute)
3772 {
3773 if (--attrparlev == 0)
3774 inattribute = false;
3775 break;
3776 }
3777 if (definedef != dnone)
3778 break;
3779 if (objdef == ocatseen && parlev == 1)
3780 {
3781 make_C_tag (true); /* an Objective C category */
3782 objdef = oignore;
3783 }
3784 if (--parlev == 0)
3785 {
3786 switch (fvdef)
3787 {
3788 case fstartlist:
3789 case finlist:
3790 fvdef = flistseen;
3791 break;
3792 default:
3793 break;
3794 }
3795 if (!instruct
3796 && (typdef == tend
3797 || typdef == ttypeseen))
3798 {
3799 typdef = tignore;
3800 make_C_tag (false); /* a typedef */
3801 }
3802 }
3803 else if (parlev < 0) /* can happen due to ill-conceived #if's. */
3804 parlev = 0;
3805 break;
3806 case '{':
3807 if (definedef != dnone)
3808 break;
3809 if (typdef == ttypeseen)
3810 {
3811 /* Whenever typdef is set to tinbody (currently only
3812 here), typdefbracelev should be set to bracelev. */
3813 typdef = tinbody;
3814 typdefbracelev = bracelev;
3815 }
3816 switch (fvdef)
3817 {
3818 case flistseen:
3819 if (cplpl && !class_qualify)
3820 {
3821 /* Remove class and namespace qualifiers from the token,
3822 leaving only the method/member name. */
3823 char *cc, *uqname = token_name.buffer;
3824 char *tok_end = token_name.buffer + token_name.len;
3825
3826 for (cc = token_name.buffer; cc < tok_end; cc++)
3827 {
3828 if (*cc == ':' && cc[1] == ':')
3829 {
3830 uqname = cc + 2;
3831 cc++;
3832 }
3833 }
3834 if (uqname > token_name.buffer)
3835 {
3836 int uqlen = strlen (uqname);
3837 linebuffer_setlen (&token_name, uqlen);
3838 memmove (token_name.buffer, uqname, uqlen + 1);
3839 }
3840 }
3841 make_C_tag (true); /* a function */
3842 /* FALLTHRU */
3843 case fignore:
3844 fvdef = fvnone;
3845 break;
3846 case fvnone:
3847 switch (objdef)
3848 {
3849 case otagseen:
3850 make_C_tag (true); /* an Objective C class */
3851 objdef = oignore;
3852 break;
3853 case omethodtag:
3854 case omethodparm:
3855 make_C_tag (true); /* an Objective C method */
3856 objdef = oinbody;
3857 break;
3858 default:
3859 /* Neutralize `extern "C" {' grot. */
3860 if (bracelev == 0 && structdef == snone && nestlev == 0
3861 && typdef == tnone)
3862 bracelev = -1;
3863 }
3864 break;
3865 default:
3866 break;
3867 }
3868 switch (structdef)
3869 {
3870 case skeyseen: /* unnamed struct */
3871 pushclass_above (bracelev, NULL, 0);
3872 structdef = snone;
3873 break;
3874 case stagseen: /* named struct or enum */
3875 case scolonseen: /* a class */
3876 pushclass_above (bracelev,token.line+token.offset, token.length);
3877 structdef = snone;
3878 make_C_tag (false); /* a struct or enum */
3879 break;
3880 default:
3881 break;
3882 }
3883 bracelev += 1;
3884 break;
3885 case '*':
3886 if (definedef != dnone)
3887 break;
3888 if (fvdef == fstartlist)
3889 {
3890 fvdef = fvnone; /* avoid tagging `foo' in `foo (*bar()) ()' */
3891 token.valid = false;
3892 }
3893 break;
3894 case '}':
3895 if (definedef != dnone)
3896 break;
3897 bracelev -= 1;
3898 if (!ignoreindent && lp == newlb.buffer + 1)
3899 {
3900 if (bracelev != 0)
3901 token.valid = false; /* unexpected value, token unreliable */
3902 bracelev = 0; /* reset brace level if first column */
3903 parlev = 0; /* also reset paren level, just in case... */
3904 }
3905 else if (bracelev < 0)
3906 {
3907 token.valid = false; /* something gone amiss, token unreliable */
3908 bracelev = 0;
3909 }
3910 if (bracelev == 0 && fvdef == vignore)
3911 fvdef = fvnone; /* end of function */
3912 popclass_above (bracelev);
3913 structdef = snone;
3914 /* Only if typdef == tinbody is typdefbracelev significant. */
3915 if (typdef == tinbody && bracelev <= typdefbracelev)
3916 {
3917 assert (bracelev == typdefbracelev);
3918 typdef = tend;
3919 }
3920 break;
3921 case '=':
3922 if (definedef != dnone)
3923 break;
3924 switch (fvdef)
3925 {
3926 case foperator:
3927 case finlist:
3928 case fignore:
3929 case vignore:
3930 break;
3931 case fvnameseen:
3932 if ((members && bracelev == 1)
3933 || (globals && bracelev == 0 && (!fvextern || declarations)))
3934 make_C_tag (false); /* a variable */
3935 /* FALLTHRU */
3936 default:
3937 fvdef = vignore;
3938 }
3939 break;
3940 case '<':
3941 if (cplpl
3942 && (structdef == stagseen || fvdef == fvnameseen))
3943 {
3944 templatelev++;
3945 break;
3946 }
3947 goto resetfvdef;
3948 case '>':
3949 if (templatelev > 0)
3950 {
3951 templatelev--;
3952 break;
3953 }
3954 goto resetfvdef;
3955 case '+':
3956 case '-':
3957 if (objdef == oinbody && bracelev == 0)
3958 {
3959 objdef = omethodsign;
3960 break;
3961 }
3962 /* FALLTHRU */
3963 resetfvdef:
3964 case '#': case '~': case '&': case '%': case '/':
3965 case '|': case '^': case '!': case '.': case '?':
3966 if (definedef != dnone)
3967 break;
3968 /* These surely cannot follow a function tag in C. */
3969 switch (fvdef)
3970 {
3971 case foperator:
3972 case finlist:
3973 case fignore:
3974 case vignore:
3975 break;
3976 default:
3977 fvdef = fvnone;
3978 }
3979 break;
3980 case '\0':
3981 if (objdef == otagseen)
3982 {
3983 make_C_tag (true); /* an Objective C class */
3984 objdef = oignore;
3985 }
3986 /* If a macro spans multiple lines don't reset its state. */
3987 if (quotednl)
3988 CNL_SAVE_DEFINEDEF ();
3989 else
3990 CNL ();
3991 break;
3992 } /* switch (c) */
3993
3994 } /* while not eof */
3995
3996 free (lbs[0].lb.buffer);
3997 free (lbs[1].lb.buffer);
3998 }
3999
4000 /*
4001 * Process either a C++ file or a C file depending on the setting
4002 * of a global flag.
4003 */
4004 static void
4005 default_C_entries (FILE *inf)
4006 {
4007 C_entries (cplusplus ? C_PLPL : C_AUTO, inf);
4008 }
4009
4010 /* Always do plain C. */
4011 static void
4012 plain_C_entries (FILE *inf)
4013 {
4014 C_entries (0, inf);
4015 }
4016
4017 /* Always do C++. */
4018 static void
4019 Cplusplus_entries (FILE *inf)
4020 {
4021 C_entries (C_PLPL, inf);
4022 }
4023
4024 /* Always do Java. */
4025 static void
4026 Cjava_entries (FILE *inf)
4027 {
4028 C_entries (C_JAVA, inf);
4029 }
4030
4031 /* Always do C*. */
4032 static void
4033 Cstar_entries (FILE *inf)
4034 {
4035 C_entries (C_STAR, inf);
4036 }
4037
4038 /* Always do Yacc. */
4039 static void
4040 Yacc_entries (FILE *inf)
4041 {
4042 C_entries (YACC, inf);
4043 }
4044
4045 \f
4046 /* Useful macros. */
4047 #define LOOP_ON_INPUT_LINES(file_pointer, line_buffer, char_pointer) \
4048 while (perhaps_more_input (file_pointer) \
4049 && (readline (&(line_buffer), file_pointer), \
4050 (char_pointer) = (line_buffer).buffer, \
4051 true)) \
4052
4053 #define LOOKING_AT(cp, kw) /* kw is the keyword, a literal string */ \
4054 ((assert ("" kw), true) /* syntax error if not a literal string */ \
4055 && strneq ((cp), kw, sizeof (kw)-1) /* cp points at kw */ \
4056 && notinname ((cp)[sizeof (kw)-1]) /* end of kw */ \
4057 && ((cp) = skip_spaces ((cp)+sizeof (kw)-1))) /* skip spaces */
4058
4059 /* Similar to LOOKING_AT but does not use notinname, does not skip */
4060 #define LOOKING_AT_NOCASE(cp, kw) /* the keyword is a literal string */ \
4061 ((assert ("" kw), true) /* syntax error if not a literal string */ \
4062 && strncaseeq ((cp), kw, sizeof (kw)-1) /* cp points at kw */ \
4063 && ((cp) += sizeof (kw)-1)) /* skip spaces */
4064
4065 /*
4066 * Read a file, but do no processing. This is used to do regexp
4067 * matching on files that have no language defined.
4068 */
4069 static void
4070 just_read_file (FILE *inf)
4071 {
4072 while (perhaps_more_input (inf))
4073 readline (&lb, inf);
4074 }
4075
4076 \f
4077 /* Fortran parsing */
4078
4079 static void F_takeprec (void);
4080 static void F_getit (FILE *);
4081
4082 static void
4083 F_takeprec (void)
4084 {
4085 dbp = skip_spaces (dbp);
4086 if (*dbp != '*')
4087 return;
4088 dbp++;
4089 dbp = skip_spaces (dbp);
4090 if (strneq (dbp, "(*)", 3))
4091 {
4092 dbp += 3;
4093 return;
4094 }
4095 if (!c_isdigit (*dbp))
4096 {
4097 --dbp; /* force failure */
4098 return;
4099 }
4100 do
4101 dbp++;
4102 while (c_isdigit (*dbp));
4103 }
4104
4105 static void
4106 F_getit (FILE *inf)
4107 {
4108 register char *cp;
4109
4110 dbp = skip_spaces (dbp);
4111 if (*dbp == '\0')
4112 {
4113 readline (&lb, inf);
4114 dbp = lb.buffer;
4115 if (dbp[5] != '&')
4116 return;
4117 dbp += 6;
4118 dbp = skip_spaces (dbp);
4119 }
4120 if (!c_isalpha (*dbp) && *dbp != '_' && *dbp != '$')
4121 return;
4122 for (cp = dbp + 1; *cp != '\0' && intoken (*cp); cp++)
4123 continue;
4124 make_tag (dbp, cp-dbp, true,
4125 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4126 }
4127
4128
4129 static void
4130 Fortran_functions (FILE *inf)
4131 {
4132 LOOP_ON_INPUT_LINES (inf, lb, dbp)
4133 {
4134 if (*dbp == '%')
4135 dbp++; /* Ratfor escape to fortran */
4136 dbp = skip_spaces (dbp);
4137 if (*dbp == '\0')
4138 continue;
4139
4140 if (LOOKING_AT_NOCASE (dbp, "recursive"))
4141 dbp = skip_spaces (dbp);
4142
4143 if (LOOKING_AT_NOCASE (dbp, "pure"))
4144 dbp = skip_spaces (dbp);
4145
4146 if (LOOKING_AT_NOCASE (dbp, "elemental"))
4147 dbp = skip_spaces (dbp);
4148
4149 switch (c_tolower (*dbp))
4150 {
4151 case 'i':
4152 if (nocase_tail ("integer"))
4153 F_takeprec ();
4154 break;
4155 case 'r':
4156 if (nocase_tail ("real"))
4157 F_takeprec ();
4158 break;
4159 case 'l':
4160 if (nocase_tail ("logical"))
4161 F_takeprec ();
4162 break;
4163 case 'c':
4164 if (nocase_tail ("complex") || nocase_tail ("character"))
4165 F_takeprec ();
4166 break;
4167 case 'd':
4168 if (nocase_tail ("double"))
4169 {
4170 dbp = skip_spaces (dbp);
4171 if (*dbp == '\0')
4172 continue;
4173 if (nocase_tail ("precision"))
4174 break;
4175 continue;
4176 }
4177 break;
4178 }
4179 dbp = skip_spaces (dbp);
4180 if (*dbp == '\0')
4181 continue;
4182 switch (c_tolower (*dbp))
4183 {
4184 case 'f':
4185 if (nocase_tail ("function"))
4186 F_getit (inf);
4187 continue;
4188 case 's':
4189 if (nocase_tail ("subroutine"))
4190 F_getit (inf);
4191 continue;
4192 case 'e':
4193 if (nocase_tail ("entry"))
4194 F_getit (inf);
4195 continue;
4196 case 'b':
4197 if (nocase_tail ("blockdata") || nocase_tail ("block data"))
4198 {
4199 dbp = skip_spaces (dbp);
4200 if (*dbp == '\0') /* assume un-named */
4201 make_tag ("blockdata", 9, true,
4202 lb.buffer, dbp - lb.buffer, lineno, linecharno);
4203 else
4204 F_getit (inf); /* look for name */
4205 }
4206 continue;
4207 }
4208 }
4209 }
4210
4211 \f
4212 /*
4213 * Ada parsing
4214 * Original code by
4215 * Philippe Waroquiers (1998)
4216 */
4217
4218 /* Once we are positioned after an "interesting" keyword, let's get
4219 the real tag value necessary. */
4220 static void
4221 Ada_getit (FILE *inf, const char *name_qualifier)
4222 {
4223 register char *cp;
4224 char *name;
4225 char c;
4226
4227 while (perhaps_more_input (inf))
4228 {
4229 dbp = skip_spaces (dbp);
4230 if (*dbp == '\0'
4231 || (dbp[0] == '-' && dbp[1] == '-'))
4232 {
4233 readline (&lb, inf);
4234 dbp = lb.buffer;
4235 }
4236 switch (c_tolower (*dbp))
4237 {
4238 case 'b':
4239 if (nocase_tail ("body"))
4240 {
4241 /* Skipping body of procedure body or package body or ....
4242 resetting qualifier to body instead of spec. */
4243 name_qualifier = "/b";
4244 continue;
4245 }
4246 break;
4247 case 't':
4248 /* Skipping type of task type or protected type ... */
4249 if (nocase_tail ("type"))
4250 continue;
4251 break;
4252 }
4253 if (*dbp == '"')
4254 {
4255 dbp += 1;
4256 for (cp = dbp; *cp != '\0' && *cp != '"'; cp++)
4257 continue;
4258 }
4259 else
4260 {
4261 dbp = skip_spaces (dbp);
4262 for (cp = dbp;
4263 c_isalnum (*cp) || *cp == '_' || *cp == '.';
4264 cp++)
4265 continue;
4266 if (cp == dbp)
4267 return;
4268 }
4269 c = *cp;
4270 *cp = '\0';
4271 name = concat (dbp, name_qualifier, "");
4272 *cp = c;
4273 make_tag (name, strlen (name), true,
4274 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4275 free (name);
4276 if (c == '"')
4277 dbp = cp + 1;
4278 return;
4279 }
4280 }
4281
4282 static void
4283 Ada_funcs (FILE *inf)
4284 {
4285 bool inquote = false;
4286 bool skip_till_semicolumn = false;
4287
4288 LOOP_ON_INPUT_LINES (inf, lb, dbp)
4289 {
4290 while (*dbp != '\0')
4291 {
4292 /* Skip a string i.e. "abcd". */
4293 if (inquote || (*dbp == '"'))
4294 {
4295 dbp = strchr (dbp + !inquote, '"');
4296 if (dbp != NULL)
4297 {
4298 inquote = false;
4299 dbp += 1;
4300 continue; /* advance char */
4301 }
4302 else
4303 {
4304 inquote = true;
4305 break; /* advance line */
4306 }
4307 }
4308
4309 /* Skip comments. */
4310 if (dbp[0] == '-' && dbp[1] == '-')
4311 break; /* advance line */
4312
4313 /* Skip character enclosed in single quote i.e. 'a'
4314 and skip single quote starting an attribute i.e. 'Image. */
4315 if (*dbp == '\'')
4316 {
4317 dbp++ ;
4318 if (*dbp != '\0')
4319 dbp++;
4320 continue;
4321 }
4322
4323 if (skip_till_semicolumn)
4324 {
4325 if (*dbp == ';')
4326 skip_till_semicolumn = false;
4327 dbp++;
4328 continue; /* advance char */
4329 }
4330
4331 /* Search for beginning of a token. */
4332 if (!begtoken (*dbp))
4333 {
4334 dbp++;
4335 continue; /* advance char */
4336 }
4337
4338 /* We are at the beginning of a token. */
4339 switch (c_tolower (*dbp))
4340 {
4341 case 'f':
4342 if (!packages_only && nocase_tail ("function"))
4343 Ada_getit (inf, "/f");
4344 else
4345 break; /* from switch */
4346 continue; /* advance char */
4347 case 'p':
4348 if (!packages_only && nocase_tail ("procedure"))
4349 Ada_getit (inf, "/p");
4350 else if (nocase_tail ("package"))
4351 Ada_getit (inf, "/s");
4352 else if (nocase_tail ("protected")) /* protected type */
4353 Ada_getit (inf, "/t");
4354 else
4355 break; /* from switch */
4356 continue; /* advance char */
4357
4358 case 'u':
4359 if (typedefs && !packages_only && nocase_tail ("use"))
4360 {
4361 /* when tagging types, avoid tagging use type Pack.Typename;
4362 for this, we will skip everything till a ; */
4363 skip_till_semicolumn = true;
4364 continue; /* advance char */
4365 }
4366
4367 case 't':
4368 if (!packages_only && nocase_tail ("task"))
4369 Ada_getit (inf, "/k");
4370 else if (typedefs && !packages_only && nocase_tail ("type"))
4371 {
4372 Ada_getit (inf, "/t");
4373 while (*dbp != '\0')
4374 dbp += 1;
4375 }
4376 else
4377 break; /* from switch */
4378 continue; /* advance char */
4379 }
4380
4381 /* Look for the end of the token. */
4382 while (!endtoken (*dbp))
4383 dbp++;
4384
4385 } /* advance char */
4386 } /* advance line */
4387 }
4388
4389 \f
4390 /*
4391 * Unix and microcontroller assembly tag handling
4392 * Labels: /^[a-zA-Z_.$][a-zA_Z0-9_.$]*[: ^I^J]/
4393 * Idea by Bob Weiner, Motorola Inc. (1994)
4394 */
4395 static void
4396 Asm_labels (FILE *inf)
4397 {
4398 register char *cp;
4399
4400 LOOP_ON_INPUT_LINES (inf, lb, cp)
4401 {
4402 /* If first char is alphabetic or one of [_.$], test for colon
4403 following identifier. */
4404 if (c_isalpha (*cp) || *cp == '_' || *cp == '.' || *cp == '$')
4405 {
4406 /* Read past label. */
4407 cp++;
4408 while (c_isalnum (*cp) || *cp == '_' || *cp == '.' || *cp == '$')
4409 cp++;
4410 if (*cp == ':' || c_isspace (*cp))
4411 /* Found end of label, so copy it and add it to the table. */
4412 make_tag (lb.buffer, cp - lb.buffer, true,
4413 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4414 }
4415 }
4416 }
4417
4418 \f
4419 /*
4420 * Perl support
4421 * Perl sub names: /^sub[ \t\n]+[^ \t\n{]+/
4422 * /^use constant[ \t\n]+[^ \t\n{=,;]+/
4423 * Perl variable names: /^(my|local).../
4424 * Original code by Bart Robinson <lomew@cs.utah.edu> (1995)
4425 * Additions by Michael Ernst <mernst@alum.mit.edu> (1997)
4426 * Ideas by Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> (2001)
4427 */
4428 static void
4429 Perl_functions (FILE *inf)
4430 {
4431 char *package = savestr ("main"); /* current package name */
4432 register char *cp;
4433
4434 LOOP_ON_INPUT_LINES (inf, lb, cp)
4435 {
4436 cp = skip_spaces (cp);
4437
4438 if (LOOKING_AT (cp, "package"))
4439 {
4440 free (package);
4441 get_tag (cp, &package);
4442 }
4443 else if (LOOKING_AT (cp, "sub"))
4444 {
4445 char *pos, *sp;
4446
4447 subr:
4448 sp = cp;
4449 while (!notinname (*cp))
4450 cp++;
4451 if (cp == sp)
4452 continue; /* nothing found */
4453 pos = strchr (sp, ':');
4454 if (pos && pos < cp && pos[1] == ':')
4455 /* The name is already qualified. */
4456 make_tag (sp, cp - sp, true,
4457 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4458 else
4459 /* Qualify it. */
4460 {
4461 char savechar, *name;
4462
4463 savechar = *cp;
4464 *cp = '\0';
4465 name = concat (package, "::", sp);
4466 *cp = savechar;
4467 make_tag (name, strlen (name), true,
4468 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4469 free (name);
4470 }
4471 }
4472 else if (LOOKING_AT (cp, "use constant")
4473 || LOOKING_AT (cp, "use constant::defer"))
4474 {
4475 /* For hash style multi-constant like
4476 use constant { FOO => 123,
4477 BAR => 456 };
4478 only the first FOO is picked up. Parsing across the value
4479 expressions would be difficult in general, due to possible nested
4480 hashes, here-documents, etc. */
4481 if (*cp == '{')
4482 cp = skip_spaces (cp+1);
4483 goto subr;
4484 }
4485 else if (globals) /* only if we are tagging global vars */
4486 {
4487 /* Skip a qualifier, if any. */
4488 bool qual = LOOKING_AT (cp, "my") || LOOKING_AT (cp, "local");
4489 /* After "my" or "local", but before any following paren or space. */
4490 char *varstart = cp;
4491
4492 if (qual /* should this be removed? If yes, how? */
4493 && (*cp == '$' || *cp == '@' || *cp == '%'))
4494 {
4495 varstart += 1;
4496 do
4497 cp++;
4498 while (c_isalnum (*cp) || *cp == '_');
4499 }
4500 else if (qual)
4501 {
4502 /* Should be examining a variable list at this point;
4503 could insist on seeing an open parenthesis. */
4504 while (*cp != '\0' && *cp != ';' && *cp != '=' && *cp != ')')
4505 cp++;
4506 }
4507 else
4508 continue;
4509
4510 make_tag (varstart, cp - varstart, false,
4511 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4512 }
4513 }
4514 free (package);
4515 }
4516
4517
4518 /*
4519 * Python support
4520 * Look for /^[\t]*def[ \t\n]+[^ \t\n(:]+/ or /^class[ \t\n]+[^ \t\n(:]+/
4521 * Idea by Eric S. Raymond <esr@thyrsus.com> (1997)
4522 * More ideas by seb bacon <seb@jamkit.com> (2002)
4523 */
4524 static void
4525 Python_functions (FILE *inf)
4526 {
4527 register char *cp;
4528
4529 LOOP_ON_INPUT_LINES (inf, lb, cp)
4530 {
4531 cp = skip_spaces (cp);
4532 if (LOOKING_AT (cp, "def") || LOOKING_AT (cp, "class"))
4533 {
4534 char *name = cp;
4535 while (!notinname (*cp) && *cp != ':')
4536 cp++;
4537 make_tag (name, cp - name, true,
4538 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4539 }
4540 }
4541 }
4542
4543 /*
4544 * Ruby support
4545 * Original code by Xi Lu <lx@shellcodes.org> (2015)
4546 */
4547 static void
4548 Ruby_functions (FILE *inf)
4549 {
4550 char *cp = NULL;
4551
4552 LOOP_ON_INPUT_LINES (inf, lb, cp)
4553 {
4554 cp = skip_spaces (cp);
4555 if (LOOKING_AT (cp, "def")
4556 || LOOKING_AT (cp, "class")
4557 || LOOKING_AT (cp, "module"))
4558 {
4559 char *name = cp;
4560
4561 /* Ruby method names can end in a '='. Also, operator overloading can
4562 define operators whose names include '='. */
4563 while (!notinname (*cp) || *cp == '=')
4564 cp++;
4565
4566 make_tag (name, cp - name, true,
4567 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4568 }
4569 }
4570 }
4571
4572 \f
4573 /*
4574 * PHP support
4575 * Look for:
4576 * - /^[ \t]*function[ \t\n]+[^ \t\n(]+/
4577 * - /^[ \t]*class[ \t\n]+[^ \t\n]+/
4578 * - /^[ \t]*define\(\"[^\"]+/
4579 * Only with --members:
4580 * - /^[ \t]*var[ \t\n]+\$[^ \t\n=;]/
4581 * Idea by Diez B. Roggisch (2001)
4582 */
4583 static void
4584 PHP_functions (FILE *inf)
4585 {
4586 char *cp, *name;
4587 bool search_identifier = false;
4588
4589 LOOP_ON_INPUT_LINES (inf, lb, cp)
4590 {
4591 cp = skip_spaces (cp);
4592 name = cp;
4593 if (search_identifier
4594 && *cp != '\0')
4595 {
4596 while (!notinname (*cp))
4597 cp++;
4598 make_tag (name, cp - name, true,
4599 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4600 search_identifier = false;
4601 }
4602 else if (LOOKING_AT (cp, "function"))
4603 {
4604 if (*cp == '&')
4605 cp = skip_spaces (cp+1);
4606 if (*cp != '\0')
4607 {
4608 name = cp;
4609 while (!notinname (*cp))
4610 cp++;
4611 make_tag (name, cp - name, true,
4612 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4613 }
4614 else
4615 search_identifier = true;
4616 }
4617 else if (LOOKING_AT (cp, "class"))
4618 {
4619 if (*cp != '\0')
4620 {
4621 name = cp;
4622 while (*cp != '\0' && !c_isspace (*cp))
4623 cp++;
4624 make_tag (name, cp - name, false,
4625 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4626 }
4627 else
4628 search_identifier = true;
4629 }
4630 else if (strneq (cp, "define", 6)
4631 && (cp = skip_spaces (cp+6))
4632 && *cp++ == '('
4633 && (*cp == '"' || *cp == '\''))
4634 {
4635 char quote = *cp++;
4636 name = cp;
4637 while (*cp != quote && *cp != '\0')
4638 cp++;
4639 make_tag (name, cp - name, false,
4640 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4641 }
4642 else if (members
4643 && LOOKING_AT (cp, "var")
4644 && *cp == '$')
4645 {
4646 name = cp;
4647 while (!notinname (*cp))
4648 cp++;
4649 make_tag (name, cp - name, false,
4650 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4651 }
4652 }
4653 }
4654
4655 \f
4656 /*
4657 * Cobol tag functions
4658 * We could look for anything that could be a paragraph name.
4659 * i.e. anything that starts in column 8 is one word and ends in a full stop.
4660 * Idea by Corny de Souza (1993)
4661 */
4662 static void
4663 Cobol_paragraphs (FILE *inf)
4664 {
4665 register char *bp, *ep;
4666
4667 LOOP_ON_INPUT_LINES (inf, lb, bp)
4668 {
4669 if (lb.len < 9)
4670 continue;
4671 bp += 8;
4672
4673 /* If eoln, compiler option or comment ignore whole line. */
4674 if (bp[-1] != ' ' || !c_isalnum (bp[0]))
4675 continue;
4676
4677 for (ep = bp; c_isalnum (*ep) || *ep == '-'; ep++)
4678 continue;
4679 if (*ep++ == '.')
4680 make_tag (bp, ep - bp, true,
4681 lb.buffer, ep - lb.buffer + 1, lineno, linecharno);
4682 }
4683 }
4684
4685 \f
4686 /*
4687 * Makefile support
4688 * Ideas by Assar Westerlund <assar@sics.se> (2001)
4689 */
4690 static void
4691 Makefile_targets (FILE *inf)
4692 {
4693 register char *bp;
4694
4695 LOOP_ON_INPUT_LINES (inf, lb, bp)
4696 {
4697 if (*bp == '\t' || *bp == '#')
4698 continue;
4699 while (*bp != '\0' && *bp != '=' && *bp != ':')
4700 bp++;
4701 if (*bp == ':' || (globals && *bp == '='))
4702 {
4703 /* We should detect if there is more than one tag, but we do not.
4704 We just skip initial and final spaces. */
4705 char * namestart = skip_spaces (lb.buffer);
4706 while (--bp > namestart)
4707 if (!notinname (*bp))
4708 break;
4709 make_tag (namestart, bp - namestart + 1, true,
4710 lb.buffer, bp - lb.buffer + 2, lineno, linecharno);
4711 }
4712 }
4713 }
4714
4715 \f
4716 /*
4717 * Pascal parsing
4718 * Original code by Mosur K. Mohan (1989)
4719 *
4720 * Locates tags for procedures & functions. Doesn't do any type- or
4721 * var-definitions. It does look for the keyword "extern" or
4722 * "forward" immediately following the procedure statement; if found,
4723 * the tag is skipped.
4724 */
4725 static void
4726 Pascal_functions (FILE *inf)
4727 {
4728 linebuffer tline; /* mostly copied from C_entries */
4729 long save_lcno;
4730 int save_lineno, namelen, taglen;
4731 char c, *name;
4732
4733 bool /* each of these flags is true if: */
4734 incomment, /* point is inside a comment */
4735 inquote, /* point is inside '..' string */
4736 get_tagname, /* point is after PROCEDURE/FUNCTION
4737 keyword, so next item = potential tag */
4738 found_tag, /* point is after a potential tag */
4739 inparms, /* point is within parameter-list */
4740 verify_tag; /* point has passed the parm-list, so the
4741 next token will determine whether this
4742 is a FORWARD/EXTERN to be ignored, or
4743 whether it is a real tag */
4744
4745 save_lcno = save_lineno = namelen = taglen = 0; /* keep compiler quiet */
4746 name = NULL; /* keep compiler quiet */
4747 dbp = lb.buffer;
4748 *dbp = '\0';
4749 linebuffer_init (&tline);
4750
4751 incomment = inquote = false;
4752 found_tag = false; /* have a proc name; check if extern */
4753 get_tagname = false; /* found "procedure" keyword */
4754 inparms = false; /* found '(' after "proc" */
4755 verify_tag = false; /* check if "extern" is ahead */
4756
4757
4758 while (perhaps_more_input (inf)) /* long main loop to get next char */
4759 {
4760 c = *dbp++;
4761 if (c == '\0') /* if end of line */
4762 {
4763 readline (&lb, inf);
4764 dbp = lb.buffer;
4765 if (*dbp == '\0')
4766 continue;
4767 if (!((found_tag && verify_tag)
4768 || get_tagname))
4769 c = *dbp++; /* only if don't need *dbp pointing
4770 to the beginning of the name of
4771 the procedure or function */
4772 }
4773 if (incomment)
4774 {
4775 if (c == '}') /* within { } comments */
4776 incomment = false;
4777 else if (c == '*' && *dbp == ')') /* within (* *) comments */
4778 {
4779 dbp++;
4780 incomment = false;
4781 }
4782 continue;
4783 }
4784 else if (inquote)
4785 {
4786 if (c == '\'')
4787 inquote = false;
4788 continue;
4789 }
4790 else
4791 switch (c)
4792 {
4793 case '\'':
4794 inquote = true; /* found first quote */
4795 continue;
4796 case '{': /* found open { comment */
4797 incomment = true;
4798 continue;
4799 case '(':
4800 if (*dbp == '*') /* found open (* comment */
4801 {
4802 incomment = true;
4803 dbp++;
4804 }
4805 else if (found_tag) /* found '(' after tag, i.e., parm-list */
4806 inparms = true;
4807 continue;
4808 case ')': /* end of parms list */
4809 if (inparms)
4810 inparms = false;
4811 continue;
4812 case ';':
4813 if (found_tag && !inparms) /* end of proc or fn stmt */
4814 {
4815 verify_tag = true;
4816 break;
4817 }
4818 continue;
4819 }
4820 if (found_tag && verify_tag && (*dbp != ' '))
4821 {
4822 /* Check if this is an "extern" declaration. */
4823 if (*dbp == '\0')
4824 continue;
4825 if (c_tolower (*dbp) == 'e')
4826 {
4827 if (nocase_tail ("extern")) /* superfluous, really! */
4828 {
4829 found_tag = false;
4830 verify_tag = false;
4831 }
4832 }
4833 else if (c_tolower (*dbp) == 'f')
4834 {
4835 if (nocase_tail ("forward")) /* check for forward reference */
4836 {
4837 found_tag = false;
4838 verify_tag = false;
4839 }
4840 }
4841 if (found_tag && verify_tag) /* not external proc, so make tag */
4842 {
4843 found_tag = false;
4844 verify_tag = false;
4845 make_tag (name, namelen, true,
4846 tline.buffer, taglen, save_lineno, save_lcno);
4847 continue;
4848 }
4849 }
4850 if (get_tagname) /* grab name of proc or fn */
4851 {
4852 char *cp;
4853
4854 if (*dbp == '\0')
4855 continue;
4856
4857 /* Find block name. */
4858 for (cp = dbp + 1; *cp != '\0' && !endtoken (*cp); cp++)
4859 continue;
4860
4861 /* Save all values for later tagging. */
4862 linebuffer_setlen (&tline, lb.len);
4863 strcpy (tline.buffer, lb.buffer);
4864 save_lineno = lineno;
4865 save_lcno = linecharno;
4866 name = tline.buffer + (dbp - lb.buffer);
4867 namelen = cp - dbp;
4868 taglen = cp - lb.buffer + 1;
4869
4870 dbp = cp; /* set dbp to e-o-token */
4871 get_tagname = false;
4872 found_tag = true;
4873 continue;
4874
4875 /* And proceed to check for "extern". */
4876 }
4877 else if (!incomment && !inquote && !found_tag)
4878 {
4879 /* Check for proc/fn keywords. */
4880 switch (c_tolower (c))
4881 {
4882 case 'p':
4883 if (nocase_tail ("rocedure")) /* c = 'p', dbp has advanced */
4884 get_tagname = true;
4885 continue;
4886 case 'f':
4887 if (nocase_tail ("unction"))
4888 get_tagname = true;
4889 continue;
4890 }
4891 }
4892 } /* while not eof */
4893
4894 free (tline.buffer);
4895 }
4896
4897 \f
4898 /*
4899 * Lisp tag functions
4900 * look for (def or (DEF, quote or QUOTE
4901 */
4902
4903 static void L_getit (void);
4904
4905 static void
4906 L_getit (void)
4907 {
4908 if (*dbp == '\'') /* Skip prefix quote */
4909 dbp++;
4910 else if (*dbp == '(')
4911 {
4912 dbp++;
4913 /* Try to skip "(quote " */
4914 if (!LOOKING_AT (dbp, "quote") && !LOOKING_AT (dbp, "QUOTE"))
4915 /* Ok, then skip "(" before name in (defstruct (foo)) */
4916 dbp = skip_spaces (dbp);
4917 }
4918 get_tag (dbp, NULL);
4919 }
4920
4921 static void
4922 Lisp_functions (FILE *inf)
4923 {
4924 LOOP_ON_INPUT_LINES (inf, lb, dbp)
4925 {
4926 if (dbp[0] != '(')
4927 continue;
4928
4929 /* "(defvar foo)" is a declaration rather than a definition. */
4930 if (! declarations)
4931 {
4932 char *p = dbp + 1;
4933 if (LOOKING_AT (p, "defvar"))
4934 {
4935 p = skip_name (p); /* past var name */
4936 p = skip_spaces (p);
4937 if (*p == ')')
4938 continue;
4939 }
4940 }
4941
4942 if (strneq (dbp + 1, "cl-", 3) || strneq (dbp + 1, "CL-", 3))
4943 dbp += 3;
4944
4945 if (strneq (dbp+1, "def", 3) || strneq (dbp+1, "DEF", 3))
4946 {
4947 dbp = skip_non_spaces (dbp);
4948 dbp = skip_spaces (dbp);
4949 L_getit ();
4950 }
4951 else
4952 {
4953 /* Check for (foo::defmumble name-defined ... */
4954 do
4955 dbp++;
4956 while (!notinname (*dbp) && *dbp != ':');
4957 if (*dbp == ':')
4958 {
4959 do
4960 dbp++;
4961 while (*dbp == ':');
4962
4963 if (strneq (dbp, "def", 3) || strneq (dbp, "DEF", 3))
4964 {
4965 dbp = skip_non_spaces (dbp);
4966 dbp = skip_spaces (dbp);
4967 L_getit ();
4968 }
4969 }
4970 }
4971 }
4972 }
4973
4974 \f
4975 /*
4976 * Lua script language parsing
4977 * Original code by David A. Capello <dacap@users.sourceforge.net> (2004)
4978 *
4979 * "function" and "local function" are tags if they start at column 1.
4980 */
4981 static void
4982 Lua_functions (FILE *inf)
4983 {
4984 register char *bp;
4985
4986 LOOP_ON_INPUT_LINES (inf, lb, bp)
4987 {
4988 bp = skip_spaces (bp);
4989 if (bp[0] != 'f' && bp[0] != 'l')
4990 continue;
4991
4992 (void)LOOKING_AT (bp, "local"); /* skip possible "local" */
4993
4994 if (LOOKING_AT (bp, "function"))
4995 {
4996 char *tag_name, *tp_dot, *tp_colon;
4997
4998 get_tag (bp, &tag_name);
4999 /* If the tag ends with ".foo" or ":foo", make an additional tag for
5000 "foo". */
5001 tp_dot = strrchr (tag_name, '.');
5002 tp_colon = strrchr (tag_name, ':');
5003 if (tp_dot || tp_colon)
5004 {
5005 char *p = tp_dot > tp_colon ? tp_dot : tp_colon;
5006 int len_add = p - tag_name + 1;
5007
5008 get_tag (bp + len_add, NULL);
5009 }
5010 }
5011 }
5012 }
5013
5014 \f
5015 /*
5016 * PostScript tags
5017 * Just look for lines where the first character is '/'
5018 * Also look at "defineps" for PSWrap
5019 * Ideas by:
5020 * Richard Mlynarik <mly@adoc.xerox.com> (1997)
5021 * Masatake Yamato <masata-y@is.aist-nara.ac.jp> (1999)
5022 */
5023 static void
5024 PS_functions (FILE *inf)
5025 {
5026 register char *bp, *ep;
5027
5028 LOOP_ON_INPUT_LINES (inf, lb, bp)
5029 {
5030 if (bp[0] == '/')
5031 {
5032 for (ep = bp+1;
5033 *ep != '\0' && *ep != ' ' && *ep != '{';
5034 ep++)
5035 continue;
5036 make_tag (bp, ep - bp, true,
5037 lb.buffer, ep - lb.buffer + 1, lineno, linecharno);
5038 }
5039 else if (LOOKING_AT (bp, "defineps"))
5040 get_tag (bp, NULL);
5041 }
5042 }
5043
5044 \f
5045 /*
5046 * Forth tags
5047 * Ignore anything after \ followed by space or in ( )
5048 * Look for words defined by :
5049 * Look for constant, code, create, defer, value, and variable
5050 * OBP extensions: Look for buffer:, field,
5051 * Ideas by Eduardo Horvath <eeh@netbsd.org> (2004)
5052 */
5053 static void
5054 Forth_words (FILE *inf)
5055 {
5056 register char *bp;
5057
5058 LOOP_ON_INPUT_LINES (inf, lb, bp)
5059 while ((bp = skip_spaces (bp))[0] != '\0')
5060 if (bp[0] == '\\' && c_isspace (bp[1]))
5061 break; /* read next line */
5062 else if (bp[0] == '(' && c_isspace (bp[1]))
5063 do /* skip to ) or eol */
5064 bp++;
5065 while (*bp != ')' && *bp != '\0');
5066 else if ((bp[0] == ':' && c_isspace (bp[1]) && bp++)
5067 || LOOKING_AT_NOCASE (bp, "constant")
5068 || LOOKING_AT_NOCASE (bp, "code")
5069 || LOOKING_AT_NOCASE (bp, "create")
5070 || LOOKING_AT_NOCASE (bp, "defer")
5071 || LOOKING_AT_NOCASE (bp, "value")
5072 || LOOKING_AT_NOCASE (bp, "variable")
5073 || LOOKING_AT_NOCASE (bp, "buffer:")
5074 || LOOKING_AT_NOCASE (bp, "field"))
5075 get_tag (skip_spaces (bp), NULL); /* Yay! A definition! */
5076 else
5077 bp = skip_non_spaces (bp);
5078 }
5079
5080 \f
5081 /*
5082 * Scheme tag functions
5083 * look for (def... xyzzy
5084 * (def... (xyzzy
5085 * (def ... ((...(xyzzy ....
5086 * (set! xyzzy
5087 * Original code by Ken Haase (1985?)
5088 */
5089 static void
5090 Scheme_functions (FILE *inf)
5091 {
5092 register char *bp;
5093
5094 LOOP_ON_INPUT_LINES (inf, lb, bp)
5095 {
5096 if (strneq (bp, "(def", 4) || strneq (bp, "(DEF", 4))
5097 {
5098 bp = skip_non_spaces (bp+4);
5099 /* Skip over open parens and white space. Don't continue past
5100 '\0'. */
5101 while (*bp && notinname (*bp))
5102 bp++;
5103 get_tag (bp, NULL);
5104 }
5105 if (LOOKING_AT (bp, "(SET!") || LOOKING_AT (bp, "(set!"))
5106 get_tag (bp, NULL);
5107 }
5108 }
5109
5110 \f
5111 /* Find tags in TeX and LaTeX input files. */
5112
5113 /* TEX_toktab is a table of TeX control sequences that define tags.
5114 * Each entry records one such control sequence.
5115 *
5116 * Original code from who knows whom.
5117 * Ideas by:
5118 * Stefan Monnier (2002)
5119 */
5120
5121 static linebuffer *TEX_toktab = NULL; /* Table with tag tokens */
5122
5123 /* Default set of control sequences to put into TEX_toktab.
5124 The value of environment var TEXTAGS is prepended to this. */
5125 static const char *TEX_defenv = "\
5126 :chapter:section:subsection:subsubsection:eqno:label:ref:cite:bibitem\
5127 :part:appendix:entry:index:def\
5128 :newcommand:renewcommand:newenvironment:renewenvironment";
5129
5130 static void TEX_decode_env (const char *, const char *);
5131
5132 /*
5133 * TeX/LaTeX scanning loop.
5134 */
5135 static void
5136 TeX_commands (FILE *inf)
5137 {
5138 char *cp;
5139 linebuffer *key;
5140
5141 char TEX_esc = '\0';
5142 char TEX_opgrp, TEX_clgrp;
5143
5144 /* Initialize token table once from environment. */
5145 if (TEX_toktab == NULL)
5146 TEX_decode_env ("TEXTAGS", TEX_defenv);
5147
5148 LOOP_ON_INPUT_LINES (inf, lb, cp)
5149 {
5150 /* Look at each TEX keyword in line. */
5151 for (;;)
5152 {
5153 /* Look for a TEX escape. */
5154 while (true)
5155 {
5156 char c = *cp++;
5157 if (c == '\0' || c == '%')
5158 goto tex_next_line;
5159
5160 /* Select either \ or ! as escape character, whichever comes
5161 first outside a comment. */
5162 if (!TEX_esc)
5163 switch (c)
5164 {
5165 case '\\':
5166 TEX_esc = c;
5167 TEX_opgrp = '{';
5168 TEX_clgrp = '}';
5169 break;
5170
5171 case '!':
5172 TEX_esc = c;
5173 TEX_opgrp = '<';
5174 TEX_clgrp = '>';
5175 break;
5176 }
5177
5178 if (c == TEX_esc)
5179 break;
5180 }
5181
5182 for (key = TEX_toktab; key->buffer != NULL; key++)
5183 if (strneq (cp, key->buffer, key->len))
5184 {
5185 char *p;
5186 int namelen, linelen;
5187 bool opgrp = false;
5188
5189 cp = skip_spaces (cp + key->len);
5190 if (*cp == TEX_opgrp)
5191 {
5192 opgrp = true;
5193 cp++;
5194 }
5195 for (p = cp;
5196 (!c_isspace (*p) && *p != '#' &&
5197 *p != TEX_opgrp && *p != TEX_clgrp);
5198 p++)
5199 continue;
5200 namelen = p - cp;
5201 linelen = lb.len;
5202 if (!opgrp || *p == TEX_clgrp)
5203 {
5204 while (*p != '\0' && *p != TEX_opgrp && *p != TEX_clgrp)
5205 p++;
5206 linelen = p - lb.buffer + 1;
5207 }
5208 make_tag (cp, namelen, true,
5209 lb.buffer, linelen, lineno, linecharno);
5210 goto tex_next_line; /* We only tag a line once */
5211 }
5212 }
5213 tex_next_line:
5214 ;
5215 }
5216 }
5217
5218 /* Read environment and prepend it to the default string.
5219 Build token table. */
5220 static void
5221 TEX_decode_env (const char *evarname, const char *defenv)
5222 {
5223 register const char *env, *p;
5224 int i, len;
5225
5226 /* Append default string to environment. */
5227 env = getenv (evarname);
5228 if (!env)
5229 env = defenv;
5230 else
5231 env = concat (env, defenv, "");
5232
5233 /* Allocate a token table */
5234 for (len = 1, p = env; (p = strchr (p, ':')); )
5235 if (*++p)
5236 len++;
5237 TEX_toktab = xnew (len, linebuffer);
5238
5239 /* Unpack environment string into token table. Be careful about */
5240 /* zero-length strings (leading ':', "::" and trailing ':') */
5241 for (i = 0; *env != '\0';)
5242 {
5243 p = strchr (env, ':');
5244 if (!p) /* End of environment string. */
5245 p = env + strlen (env);
5246 if (p - env > 0)
5247 { /* Only non-zero strings. */
5248 TEX_toktab[i].buffer = savenstr (env, p - env);
5249 TEX_toktab[i].len = p - env;
5250 i++;
5251 }
5252 if (*p)
5253 env = p + 1;
5254 else
5255 {
5256 TEX_toktab[i].buffer = NULL; /* Mark end of table. */
5257 TEX_toktab[i].len = 0;
5258 break;
5259 }
5260 }
5261 }
5262
5263 \f
5264 /* Texinfo support. Dave Love, Mar. 2000. */
5265 static void
5266 Texinfo_nodes (FILE *inf)
5267 {
5268 char *cp, *start;
5269 LOOP_ON_INPUT_LINES (inf, lb, cp)
5270 if (LOOKING_AT (cp, "@node"))
5271 {
5272 start = cp;
5273 while (*cp != '\0' && *cp != ',')
5274 cp++;
5275 make_tag (start, cp - start, true,
5276 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
5277 }
5278 }
5279
5280 \f
5281 /*
5282 * HTML support.
5283 * Contents of <title>, <h1>, <h2>, <h3> are tags.
5284 * Contents of <a name=xxx> are tags with name xxx.
5285 *
5286 * Francesco Potortì, 2002.
5287 */
5288 static void
5289 HTML_labels (FILE *inf)
5290 {
5291 bool getnext = false; /* next text outside of HTML tags is a tag */
5292 bool skiptag = false; /* skip to the end of the current HTML tag */
5293 bool intag = false; /* inside an html tag, looking for ID= */
5294 bool inanchor = false; /* when INTAG, is an anchor, look for NAME= */
5295 char *end;
5296
5297
5298 linebuffer_setlen (&token_name, 0); /* no name in buffer */
5299
5300 LOOP_ON_INPUT_LINES (inf, lb, dbp)
5301 for (;;) /* loop on the same line */
5302 {
5303 if (skiptag) /* skip HTML tag */
5304 {
5305 while (*dbp != '\0' && *dbp != '>')
5306 dbp++;
5307 if (*dbp == '>')
5308 {
5309 dbp += 1;
5310 skiptag = false;
5311 continue; /* look on the same line */
5312 }
5313 break; /* go to next line */
5314 }
5315
5316 else if (intag) /* look for "name=" or "id=" */
5317 {
5318 while (*dbp != '\0' && *dbp != '>'
5319 && c_tolower (*dbp) != 'n' && c_tolower (*dbp) != 'i')
5320 dbp++;
5321 if (*dbp == '\0')
5322 break; /* go to next line */
5323 if (*dbp == '>')
5324 {
5325 dbp += 1;
5326 intag = false;
5327 continue; /* look on the same line */
5328 }
5329 if ((inanchor && LOOKING_AT_NOCASE (dbp, "name="))
5330 || LOOKING_AT_NOCASE (dbp, "id="))
5331 {
5332 bool quoted = (dbp[0] == '"');
5333
5334 if (quoted)
5335 for (end = ++dbp; *end != '\0' && *end != '"'; end++)
5336 continue;
5337 else
5338 for (end = dbp; *end != '\0' && intoken (*end); end++)
5339 continue;
5340 linebuffer_setlen (&token_name, end - dbp);
5341 memcpy (token_name.buffer, dbp, end - dbp);
5342 token_name.buffer[end - dbp] = '\0';
5343
5344 dbp = end;
5345 intag = false; /* we found what we looked for */
5346 skiptag = true; /* skip to the end of the tag */
5347 getnext = true; /* then grab the text */
5348 continue; /* look on the same line */
5349 }
5350 dbp += 1;
5351 }
5352
5353 else if (getnext) /* grab next tokens and tag them */
5354 {
5355 dbp = skip_spaces (dbp);
5356 if (*dbp == '\0')
5357 break; /* go to next line */
5358 if (*dbp == '<')
5359 {
5360 intag = true;
5361 inanchor = (c_tolower (dbp[1]) == 'a' && !intoken (dbp[2]));
5362 continue; /* look on the same line */
5363 }
5364
5365 for (end = dbp + 1; *end != '\0' && *end != '<'; end++)
5366 continue;
5367 make_tag (token_name.buffer, token_name.len, true,
5368 dbp, end - dbp, lineno, linecharno);
5369 linebuffer_setlen (&token_name, 0); /* no name in buffer */
5370 getnext = false;
5371 break; /* go to next line */
5372 }
5373
5374 else /* look for an interesting HTML tag */
5375 {
5376 while (*dbp != '\0' && *dbp != '<')
5377 dbp++;
5378 if (*dbp == '\0')
5379 break; /* go to next line */
5380 intag = true;
5381 if (c_tolower (dbp[1]) == 'a' && !intoken (dbp[2]))
5382 {
5383 inanchor = true;
5384 continue; /* look on the same line */
5385 }
5386 else if (LOOKING_AT_NOCASE (dbp, "<title>")
5387 || LOOKING_AT_NOCASE (dbp, "<h1>")
5388 || LOOKING_AT_NOCASE (dbp, "<h2>")
5389 || LOOKING_AT_NOCASE (dbp, "<h3>"))
5390 {
5391 intag = false;
5392 getnext = true;
5393 continue; /* look on the same line */
5394 }
5395 dbp += 1;
5396 }
5397 }
5398 }
5399
5400 \f
5401 /*
5402 * Prolog support
5403 *
5404 * Assumes that the predicate or rule starts at column 0.
5405 * Only the first clause of a predicate or rule is added.
5406 * Original code by Sunichirou Sugou (1989)
5407 * Rewritten by Anders Lindgren (1996)
5408 */
5409 static size_t prolog_pr (char *, char *);
5410 static void prolog_skip_comment (linebuffer *, FILE *);
5411 static size_t prolog_atom (char *, size_t);
5412
5413 static void
5414 Prolog_functions (FILE *inf)
5415 {
5416 char *cp, *last;
5417 size_t len;
5418 size_t allocated;
5419
5420 allocated = 0;
5421 len = 0;
5422 last = NULL;
5423
5424 LOOP_ON_INPUT_LINES (inf, lb, cp)
5425 {
5426 if (cp[0] == '\0') /* Empty line */
5427 continue;
5428 else if (c_isspace (cp[0])) /* Not a predicate */
5429 continue;
5430 else if (cp[0] == '/' && cp[1] == '*') /* comment. */
5431 prolog_skip_comment (&lb, inf);
5432 else if ((len = prolog_pr (cp, last)) > 0)
5433 {
5434 /* Predicate or rule. Store the function name so that we
5435 only generate a tag for the first clause. */
5436 if (last == NULL)
5437 last = xnew (len + 1, char);
5438 else if (len + 1 > allocated)
5439 xrnew (last, len + 1, char);
5440 allocated = len + 1;
5441 memcpy (last, cp, len);
5442 last[len] = '\0';
5443 }
5444 }
5445 free (last);
5446 }
5447
5448
5449 static void
5450 prolog_skip_comment (linebuffer *plb, FILE *inf)
5451 {
5452 char *cp;
5453
5454 do
5455 {
5456 for (cp = plb->buffer; *cp != '\0'; cp++)
5457 if (cp[0] == '*' && cp[1] == '/')
5458 return;
5459 readline (plb, inf);
5460 }
5461 while (perhaps_more_input (inf));
5462 }
5463
5464 /*
5465 * A predicate or rule definition is added if it matches:
5466 * <beginning of line><Prolog Atom><whitespace>(
5467 * or <beginning of line><Prolog Atom><whitespace>:-
5468 *
5469 * It is added to the tags database if it doesn't match the
5470 * name of the previous clause header.
5471 *
5472 * Return the size of the name of the predicate or rule, or 0 if no
5473 * header was found.
5474 */
5475 static size_t
5476 prolog_pr (char *s, char *last)
5477
5478 /* Name of last clause. */
5479 {
5480 size_t pos;
5481 size_t len;
5482
5483 pos = prolog_atom (s, 0);
5484 if (! pos)
5485 return 0;
5486
5487 len = pos;
5488 pos = skip_spaces (s + pos) - s;
5489
5490 if ((s[pos] == '.'
5491 || (s[pos] == '(' && (pos += 1))
5492 || (s[pos] == ':' && s[pos + 1] == '-' && (pos += 2)))
5493 && (last == NULL /* save only the first clause */
5494 || len != strlen (last)
5495 || !strneq (s, last, len)))
5496 {
5497 make_tag (s, len, true, s, pos, lineno, linecharno);
5498 return len;
5499 }
5500 else
5501 return 0;
5502 }
5503
5504 /*
5505 * Consume a Prolog atom.
5506 * Return the number of bytes consumed, or 0 if there was an error.
5507 *
5508 * A prolog atom, in this context, could be one of:
5509 * - An alphanumeric sequence, starting with a lower case letter.
5510 * - A quoted arbitrary string. Single quotes can escape themselves.
5511 * Backslash quotes everything.
5512 */
5513 static size_t
5514 prolog_atom (char *s, size_t pos)
5515 {
5516 size_t origpos;
5517
5518 origpos = pos;
5519
5520 if (c_islower (s[pos]) || s[pos] == '_')
5521 {
5522 /* The atom is unquoted. */
5523 pos++;
5524 while (c_isalnum (s[pos]) || s[pos] == '_')
5525 {
5526 pos++;
5527 }
5528 return pos - origpos;
5529 }
5530 else if (s[pos] == '\'')
5531 {
5532 pos++;
5533
5534 for (;;)
5535 {
5536 if (s[pos] == '\'')
5537 {
5538 pos++;
5539 if (s[pos] != '\'')
5540 break;
5541 pos++; /* A double quote */
5542 }
5543 else if (s[pos] == '\0')
5544 /* Multiline quoted atoms are ignored. */
5545 return 0;
5546 else if (s[pos] == '\\')
5547 {
5548 if (s[pos+1] == '\0')
5549 return 0;
5550 pos += 2;
5551 }
5552 else
5553 pos++;
5554 }
5555 return pos - origpos;
5556 }
5557 else
5558 return 0;
5559 }
5560
5561 \f
5562 /*
5563 * Support for Erlang
5564 *
5565 * Generates tags for functions, defines, and records.
5566 * Assumes that Erlang functions start at column 0.
5567 * Original code by Anders Lindgren (1996)
5568 */
5569 static int erlang_func (char *, char *);
5570 static void erlang_attribute (char *);
5571 static int erlang_atom (char *);
5572
5573 static void
5574 Erlang_functions (FILE *inf)
5575 {
5576 char *cp, *last;
5577 int len;
5578 int allocated;
5579
5580 allocated = 0;
5581 len = 0;
5582 last = NULL;
5583
5584 LOOP_ON_INPUT_LINES (inf, lb, cp)
5585 {
5586 if (cp[0] == '\0') /* Empty line */
5587 continue;
5588 else if (c_isspace (cp[0])) /* Not function nor attribute */
5589 continue;
5590 else if (cp[0] == '%') /* comment */
5591 continue;
5592 else if (cp[0] == '"') /* Sometimes, strings start in column one */
5593 continue;
5594 else if (cp[0] == '-') /* attribute, e.g. "-define" */
5595 {
5596 erlang_attribute (cp);
5597 if (last != NULL)
5598 {
5599 free (last);
5600 last = NULL;
5601 }
5602 }
5603 else if ((len = erlang_func (cp, last)) > 0)
5604 {
5605 /*
5606 * Function. Store the function name so that we only
5607 * generates a tag for the first clause.
5608 */
5609 if (last == NULL)
5610 last = xnew (len + 1, char);
5611 else if (len + 1 > allocated)
5612 xrnew (last, len + 1, char);
5613 allocated = len + 1;
5614 memcpy (last, cp, len);
5615 last[len] = '\0';
5616 }
5617 }
5618 free (last);
5619 }
5620
5621
5622 /*
5623 * A function definition is added if it matches:
5624 * <beginning of line><Erlang Atom><whitespace>(
5625 *
5626 * It is added to the tags database if it doesn't match the
5627 * name of the previous clause header.
5628 *
5629 * Return the size of the name of the function, or 0 if no function
5630 * was found.
5631 */
5632 static int
5633 erlang_func (char *s, char *last)
5634
5635 /* Name of last clause. */
5636 {
5637 int pos;
5638 int len;
5639
5640 pos = erlang_atom (s);
5641 if (pos < 1)
5642 return 0;
5643
5644 len = pos;
5645 pos = skip_spaces (s + pos) - s;
5646
5647 /* Save only the first clause. */
5648 if (s[pos++] == '('
5649 && (last == NULL
5650 || len != (int)strlen (last)
5651 || !strneq (s, last, len)))
5652 {
5653 make_tag (s, len, true, s, pos, lineno, linecharno);
5654 return len;
5655 }
5656
5657 return 0;
5658 }
5659
5660
5661 /*
5662 * Handle attributes. Currently, tags are generated for defines
5663 * and records.
5664 *
5665 * They are on the form:
5666 * -define(foo, bar).
5667 * -define(Foo(M, N), M+N).
5668 * -record(graph, {vtab = notable, cyclic = true}).
5669 */
5670 static void
5671 erlang_attribute (char *s)
5672 {
5673 char *cp = s;
5674
5675 if ((LOOKING_AT (cp, "-define") || LOOKING_AT (cp, "-record"))
5676 && *cp++ == '(')
5677 {
5678 int len = erlang_atom (skip_spaces (cp));
5679 if (len > 0)
5680 make_tag (cp, len, true, s, cp + len - s, lineno, linecharno);
5681 }
5682 return;
5683 }
5684
5685
5686 /*
5687 * Consume an Erlang atom (or variable).
5688 * Return the number of bytes consumed, or -1 if there was an error.
5689 */
5690 static int
5691 erlang_atom (char *s)
5692 {
5693 int pos = 0;
5694
5695 if (c_isalpha (s[pos]) || s[pos] == '_')
5696 {
5697 /* The atom is unquoted. */
5698 do
5699 pos++;
5700 while (c_isalnum (s[pos]) || s[pos] == '_');
5701 }
5702 else if (s[pos] == '\'')
5703 {
5704 for (pos++; s[pos] != '\''; pos++)
5705 if (s[pos] == '\0' /* multiline quoted atoms are ignored */
5706 || (s[pos] == '\\' && s[++pos] == '\0'))
5707 return 0;
5708 pos++;
5709 }
5710
5711 return pos;
5712 }
5713
5714 \f
5715 static char *scan_separators (char *);
5716 static void add_regex (char *, language *);
5717 static char *substitute (char *, char *, struct re_registers *);
5718
5719 /*
5720 * Take a string like "/blah/" and turn it into "blah", verifying
5721 * that the first and last characters are the same, and handling
5722 * quoted separator characters. Actually, stops on the occurrence of
5723 * an unquoted separator. Also process \t, \n, etc. and turn into
5724 * appropriate characters. Works in place. Null terminates name string.
5725 * Returns pointer to terminating separator, or NULL for
5726 * unterminated regexps.
5727 */
5728 static char *
5729 scan_separators (char *name)
5730 {
5731 char sep = name[0];
5732 char *copyto = name;
5733 bool quoted = false;
5734
5735 for (++name; *name != '\0'; ++name)
5736 {
5737 if (quoted)
5738 {
5739 switch (*name)
5740 {
5741 case 'a': *copyto++ = '\007'; break; /* BEL (bell) */
5742 case 'b': *copyto++ = '\b'; break; /* BS (back space) */
5743 case 'd': *copyto++ = 0177; break; /* DEL (delete) */
5744 case 'e': *copyto++ = 033; break; /* ESC (delete) */
5745 case 'f': *copyto++ = '\f'; break; /* FF (form feed) */
5746 case 'n': *copyto++ = '\n'; break; /* NL (new line) */
5747 case 'r': *copyto++ = '\r'; break; /* CR (carriage return) */
5748 case 't': *copyto++ = '\t'; break; /* TAB (horizontal tab) */
5749 case 'v': *copyto++ = '\v'; break; /* VT (vertical tab) */
5750 default:
5751 if (*name == sep)
5752 *copyto++ = sep;
5753 else
5754 {
5755 /* Something else is quoted, so preserve the quote. */
5756 *copyto++ = '\\';
5757 *copyto++ = *name;
5758 }
5759 break;
5760 }
5761 quoted = false;
5762 }
5763 else if (*name == '\\')
5764 quoted = true;
5765 else if (*name == sep)
5766 break;
5767 else
5768 *copyto++ = *name;
5769 }
5770 if (*name != sep)
5771 name = NULL; /* signal unterminated regexp */
5772
5773 /* Terminate copied string. */
5774 *copyto = '\0';
5775 return name;
5776 }
5777
5778 /* Look at the argument of --regex or --no-regex and do the right
5779 thing. Same for each line of a regexp file. */
5780 static void
5781 analyze_regex (char *regex_arg)
5782 {
5783 if (regex_arg == NULL)
5784 {
5785 free_regexps (); /* --no-regex: remove existing regexps */
5786 return;
5787 }
5788
5789 /* A real --regexp option or a line in a regexp file. */
5790 switch (regex_arg[0])
5791 {
5792 /* Comments in regexp file or null arg to --regex. */
5793 case '\0':
5794 case ' ':
5795 case '\t':
5796 break;
5797
5798 /* Read a regex file. This is recursive and may result in a
5799 loop, which will stop when the file descriptors are exhausted. */
5800 case '@':
5801 {
5802 FILE *regexfp;
5803 linebuffer regexbuf;
5804 char *regexfile = regex_arg + 1;
5805
5806 /* regexfile is a file containing regexps, one per line. */
5807 regexfp = fopen (regexfile, "r" FOPEN_BINARY);
5808 if (regexfp == NULL)
5809 pfatal (regexfile);
5810 linebuffer_init (&regexbuf);
5811 while (readline_internal (&regexbuf, regexfp, regexfile) > 0)
5812 analyze_regex (regexbuf.buffer);
5813 free (regexbuf.buffer);
5814 if (fclose (regexfp) != 0)
5815 pfatal (regexfile);
5816 }
5817 break;
5818
5819 /* Regexp to be used for a specific language only. */
5820 case '{':
5821 {
5822 language *lang;
5823 char *lang_name = regex_arg + 1;
5824 char *cp;
5825
5826 for (cp = lang_name; *cp != '}'; cp++)
5827 if (*cp == '\0')
5828 {
5829 error ("unterminated language name in regex: %s", regex_arg);
5830 return;
5831 }
5832 *cp++ = '\0';
5833 lang = get_language_from_langname (lang_name);
5834 if (lang == NULL)
5835 return;
5836 add_regex (cp, lang);
5837 }
5838 break;
5839
5840 /* Regexp to be used for any language. */
5841 default:
5842 add_regex (regex_arg, NULL);
5843 break;
5844 }
5845 }
5846
5847 /* Separate the regexp pattern, compile it,
5848 and care for optional name and modifiers. */
5849 static void
5850 add_regex (char *regexp_pattern, language *lang)
5851 {
5852 static struct re_pattern_buffer zeropattern;
5853 char sep, *pat, *name, *modifiers;
5854 char empty = '\0';
5855 const char *err;
5856 struct re_pattern_buffer *patbuf;
5857 regexp *rp;
5858 bool
5859 force_explicit_name = true, /* do not use implicit tag names */
5860 ignore_case = false, /* case is significant */
5861 multi_line = false, /* matches are done one line at a time */
5862 single_line = false; /* dot does not match newline */
5863
5864
5865 if (strlen (regexp_pattern) < 3)
5866 {
5867 error ("null regexp");
5868 return;
5869 }
5870 sep = regexp_pattern[0];
5871 name = scan_separators (regexp_pattern);
5872 if (name == NULL)
5873 {
5874 error ("%s: unterminated regexp", regexp_pattern);
5875 return;
5876 }
5877 if (name[1] == sep)
5878 {
5879 error ("null name for regexp \"%s\"", regexp_pattern);
5880 return;
5881 }
5882 modifiers = scan_separators (name);
5883 if (modifiers == NULL) /* no terminating separator --> no name */
5884 {
5885 modifiers = name;
5886 name = &empty;
5887 }
5888 else
5889 modifiers += 1; /* skip separator */
5890
5891 /* Parse regex modifiers. */
5892 for (; modifiers[0] != '\0'; modifiers++)
5893 switch (modifiers[0])
5894 {
5895 case 'N':
5896 if (modifiers == name)
5897 error ("forcing explicit tag name but no name, ignoring");
5898 force_explicit_name = true;
5899 break;
5900 case 'i':
5901 ignore_case = true;
5902 break;
5903 case 's':
5904 single_line = true;
5905 /* FALLTHRU */
5906 case 'm':
5907 multi_line = true;
5908 need_filebuf = true;
5909 break;
5910 default:
5911 error ("invalid regexp modifier '%c', ignoring", modifiers[0]);
5912 break;
5913 }
5914
5915 patbuf = xnew (1, struct re_pattern_buffer);
5916 *patbuf = zeropattern;
5917 if (ignore_case)
5918 {
5919 static char lc_trans[UCHAR_MAX + 1];
5920 int i;
5921 for (i = 0; i < UCHAR_MAX + 1; i++)
5922 lc_trans[i] = c_tolower (i);
5923 patbuf->translate = lc_trans; /* translation table to fold case */
5924 }
5925
5926 if (multi_line)
5927 pat = concat ("^", regexp_pattern, ""); /* anchor to beginning of line */
5928 else
5929 pat = regexp_pattern;
5930
5931 if (single_line)
5932 re_set_syntax (RE_SYNTAX_EMACS | RE_DOT_NEWLINE);
5933 else
5934 re_set_syntax (RE_SYNTAX_EMACS);
5935
5936 err = re_compile_pattern (pat, strlen (pat), patbuf);
5937 if (multi_line)
5938 free (pat);
5939 if (err != NULL)
5940 {
5941 error ("%s while compiling pattern", err);
5942 return;
5943 }
5944
5945 rp = p_head;
5946 p_head = xnew (1, regexp);
5947 p_head->pattern = savestr (regexp_pattern);
5948 p_head->p_next = rp;
5949 p_head->lang = lang;
5950 p_head->pat = patbuf;
5951 p_head->name = savestr (name);
5952 p_head->error_signaled = false;
5953 p_head->force_explicit_name = force_explicit_name;
5954 p_head->ignore_case = ignore_case;
5955 p_head->multi_line = multi_line;
5956 }
5957
5958 /*
5959 * Do the substitutions indicated by the regular expression and
5960 * arguments.
5961 */
5962 static char *
5963 substitute (char *in, char *out, struct re_registers *regs)
5964 {
5965 char *result, *t;
5966 int size, dig, diglen;
5967
5968 result = NULL;
5969 size = strlen (out);
5970
5971 /* Pass 1: figure out how much to allocate by finding all \N strings. */
5972 if (out[size - 1] == '\\')
5973 fatal ("pattern error in \"%s\"", out);
5974 for (t = strchr (out, '\\');
5975 t != NULL;
5976 t = strchr (t + 2, '\\'))
5977 if (c_isdigit (t[1]))
5978 {
5979 dig = t[1] - '0';
5980 diglen = regs->end[dig] - regs->start[dig];
5981 size += diglen - 2;
5982 }
5983 else
5984 size -= 1;
5985
5986 /* Allocate space and do the substitutions. */
5987 assert (size >= 0);
5988 result = xnew (size + 1, char);
5989
5990 for (t = result; *out != '\0'; out++)
5991 if (*out == '\\' && c_isdigit (*++out))
5992 {
5993 dig = *out - '0';
5994 diglen = regs->end[dig] - regs->start[dig];
5995 memcpy (t, in + regs->start[dig], diglen);
5996 t += diglen;
5997 }
5998 else
5999 *t++ = *out;
6000 *t = '\0';
6001
6002 assert (t <= result + size);
6003 assert (t - result == (int)strlen (result));
6004
6005 return result;
6006 }
6007
6008 /* Deallocate all regexps. */
6009 static void
6010 free_regexps (void)
6011 {
6012 regexp *rp;
6013 while (p_head != NULL)
6014 {
6015 rp = p_head->p_next;
6016 free (p_head->pattern);
6017 free (p_head->name);
6018 free (p_head);
6019 p_head = rp;
6020 }
6021 return;
6022 }
6023
6024 /*
6025 * Reads the whole file as a single string from `filebuf' and looks for
6026 * multi-line regular expressions, creating tags on matches.
6027 * readline already dealt with normal regexps.
6028 *
6029 * Idea by Ben Wing <ben@666.com> (2002).
6030 */
6031 static void
6032 regex_tag_multiline (void)
6033 {
6034 char *buffer = filebuf.buffer;
6035 regexp *rp;
6036 char *name;
6037
6038 for (rp = p_head; rp != NULL; rp = rp->p_next)
6039 {
6040 int match = 0;
6041
6042 if (!rp->multi_line)
6043 continue; /* skip normal regexps */
6044
6045 /* Generic initializations before parsing file from memory. */
6046 lineno = 1; /* reset global line number */
6047 charno = 0; /* reset global char number */
6048 linecharno = 0; /* reset global char number of line start */
6049
6050 /* Only use generic regexps or those for the current language. */
6051 if (rp->lang != NULL && rp->lang != curfdp->lang)
6052 continue;
6053
6054 while (match >= 0 && match < filebuf.len)
6055 {
6056 match = re_search (rp->pat, buffer, filebuf.len, charno,
6057 filebuf.len - match, &rp->regs);
6058 switch (match)
6059 {
6060 case -2:
6061 /* Some error. */
6062 if (!rp->error_signaled)
6063 {
6064 error ("regexp stack overflow while matching \"%s\"",
6065 rp->pattern);
6066 rp->error_signaled = true;
6067 }
6068 break;
6069 case -1:
6070 /* No match. */
6071 break;
6072 default:
6073 if (match == rp->regs.end[0])
6074 {
6075 if (!rp->error_signaled)
6076 {
6077 error ("regexp matches the empty string: \"%s\"",
6078 rp->pattern);
6079 rp->error_signaled = true;
6080 }
6081 match = -3; /* exit from while loop */
6082 break;
6083 }
6084
6085 /* Match occurred. Construct a tag. */
6086 while (charno < rp->regs.end[0])
6087 if (buffer[charno++] == '\n')
6088 lineno++, linecharno = charno;
6089 name = rp->name;
6090 if (name[0] == '\0')
6091 name = NULL;
6092 else /* make a named tag */
6093 name = substitute (buffer, rp->name, &rp->regs);
6094 if (rp->force_explicit_name)
6095 /* Force explicit tag name, if a name is there. */
6096 pfnote (name, true, buffer + linecharno,
6097 charno - linecharno + 1, lineno, linecharno);
6098 else
6099 make_tag (name, strlen (name), true, buffer + linecharno,
6100 charno - linecharno + 1, lineno, linecharno);
6101 break;
6102 }
6103 }
6104 }
6105 }
6106
6107 \f
6108 static bool
6109 nocase_tail (const char *cp)
6110 {
6111 int len = 0;
6112
6113 while (*cp != '\0' && c_tolower (*cp) == c_tolower (dbp[len]))
6114 cp++, len++;
6115 if (*cp == '\0' && !intoken (dbp[len]))
6116 {
6117 dbp += len;
6118 return true;
6119 }
6120 return false;
6121 }
6122
6123 static void
6124 get_tag (register char *bp, char **namepp)
6125 {
6126 register char *cp = bp;
6127
6128 if (*bp != '\0')
6129 {
6130 /* Go till you get to white space or a syntactic break */
6131 for (cp = bp + 1; !notinname (*cp); cp++)
6132 continue;
6133 make_tag (bp, cp - bp, true,
6134 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
6135 }
6136
6137 if (namepp != NULL)
6138 *namepp = savenstr (bp, cp - bp);
6139 }
6140
6141 /*
6142 * Read a line of text from `stream' into `lbp', excluding the
6143 * newline or CR-NL, if any. Return the number of characters read from
6144 * `stream', which is the length of the line including the newline.
6145 *
6146 * On DOS or Windows we do not count the CR character, if any before the
6147 * NL, in the returned length; this mirrors the behavior of Emacs on those
6148 * platforms (for text files, it translates CR-NL to NL as it reads in the
6149 * file).
6150 *
6151 * If multi-line regular expressions are requested, each line read is
6152 * appended to `filebuf'.
6153 */
6154 static long
6155 readline_internal (linebuffer *lbp, FILE *stream, char const *filename)
6156 {
6157 char *buffer = lbp->buffer;
6158 char *p = lbp->buffer;
6159 char *pend;
6160 int chars_deleted;
6161
6162 pend = p + lbp->size; /* Separate to avoid 386/IX compiler bug. */
6163
6164 for (;;)
6165 {
6166 register int c = getc (stream);
6167 if (p == pend)
6168 {
6169 /* We're at the end of linebuffer: expand it. */
6170 lbp->size *= 2;
6171 xrnew (buffer, lbp->size, char);
6172 p += buffer - lbp->buffer;
6173 pend = buffer + lbp->size;
6174 lbp->buffer = buffer;
6175 }
6176 if (c == EOF)
6177 {
6178 if (ferror (stream))
6179 perror (filename);
6180 *p = '\0';
6181 chars_deleted = 0;
6182 break;
6183 }
6184 if (c == '\n')
6185 {
6186 if (p > buffer && p[-1] == '\r')
6187 {
6188 p -= 1;
6189 chars_deleted = 2;
6190 }
6191 else
6192 {
6193 chars_deleted = 1;
6194 }
6195 *p = '\0';
6196 break;
6197 }
6198 *p++ = c;
6199 }
6200 lbp->len = p - buffer;
6201
6202 if (need_filebuf /* we need filebuf for multi-line regexps */
6203 && chars_deleted > 0) /* not at EOF */
6204 {
6205 while (filebuf.size <= filebuf.len + lbp->len + 1) /* +1 for \n */
6206 {
6207 /* Expand filebuf. */
6208 filebuf.size *= 2;
6209 xrnew (filebuf.buffer, filebuf.size, char);
6210 }
6211 memcpy (filebuf.buffer + filebuf.len, lbp->buffer, lbp->len);
6212 filebuf.len += lbp->len;
6213 filebuf.buffer[filebuf.len++] = '\n';
6214 filebuf.buffer[filebuf.len] = '\0';
6215 }
6216
6217 return lbp->len + chars_deleted;
6218 }
6219
6220 /*
6221 * Like readline_internal, above, but in addition try to match the
6222 * input line against relevant regular expressions and manage #line
6223 * directives.
6224 */
6225 static void
6226 readline (linebuffer *lbp, FILE *stream)
6227 {
6228 long result;
6229
6230 linecharno = charno; /* update global char number of line start */
6231 result = readline_internal (lbp, stream, infilename); /* read line */
6232 lineno += 1; /* increment global line number */
6233 charno += result; /* increment global char number */
6234
6235 /* Honor #line directives. */
6236 if (!no_line_directive)
6237 {
6238 static bool discard_until_line_directive;
6239
6240 /* Check whether this is a #line directive. */
6241 if (result > 12 && strneq (lbp->buffer, "#line ", 6))
6242 {
6243 unsigned int lno;
6244 int start = 0;
6245
6246 if (sscanf (lbp->buffer, "#line %u \"%n", &lno, &start) >= 1
6247 && start > 0) /* double quote character found */
6248 {
6249 char *endp = lbp->buffer + start;
6250
6251 while ((endp = strchr (endp, '"')) != NULL
6252 && endp[-1] == '\\')
6253 endp++;
6254 if (endp != NULL)
6255 /* Ok, this is a real #line directive. Let's deal with it. */
6256 {
6257 char *taggedabsname; /* absolute name of original file */
6258 char *taggedfname; /* name of original file as given */
6259 char *name; /* temp var */
6260
6261 discard_until_line_directive = false; /* found it */
6262 name = lbp->buffer + start;
6263 *endp = '\0';
6264 canonicalize_filename (name);
6265 taggedabsname = absolute_filename (name, tagfiledir);
6266 if (filename_is_absolute (name)
6267 || filename_is_absolute (curfdp->infname))
6268 taggedfname = savestr (taggedabsname);
6269 else
6270 taggedfname = relative_filename (taggedabsname,tagfiledir);
6271
6272 if (streq (curfdp->taggedfname, taggedfname))
6273 /* The #line directive is only a line number change. We
6274 deal with this afterwards. */
6275 free (taggedfname);
6276 else
6277 /* The tags following this #line directive should be
6278 attributed to taggedfname. In order to do this, set
6279 curfdp accordingly. */
6280 {
6281 fdesc *fdp; /* file description pointer */
6282
6283 /* Go look for a file description already set up for the
6284 file indicated in the #line directive. If there is
6285 one, use it from now until the next #line
6286 directive. */
6287 for (fdp = fdhead; fdp != NULL; fdp = fdp->next)
6288 if (streq (fdp->infname, curfdp->infname)
6289 && streq (fdp->taggedfname, taggedfname))
6290 /* If we remove the second test above (after the &&)
6291 then all entries pertaining to the same file are
6292 coalesced in the tags file. If we use it, then
6293 entries pertaining to the same file but generated
6294 from different files (via #line directives) will
6295 go into separate sections in the tags file. These
6296 alternatives look equivalent. The first one
6297 destroys some apparently useless information. */
6298 {
6299 curfdp = fdp;
6300 free (taggedfname);
6301 break;
6302 }
6303 /* Else, if we already tagged the real file, skip all
6304 input lines until the next #line directive. */
6305 if (fdp == NULL) /* not found */
6306 for (fdp = fdhead; fdp != NULL; fdp = fdp->next)
6307 if (streq (fdp->infabsname, taggedabsname))
6308 {
6309 discard_until_line_directive = true;
6310 free (taggedfname);
6311 break;
6312 }
6313 /* Else create a new file description and use that from
6314 now on, until the next #line directive. */
6315 if (fdp == NULL) /* not found */
6316 {
6317 fdp = fdhead;
6318 fdhead = xnew (1, fdesc);
6319 *fdhead = *curfdp; /* copy curr. file description */
6320 fdhead->next = fdp;
6321 fdhead->infname = savestr (curfdp->infname);
6322 fdhead->infabsname = savestr (curfdp->infabsname);
6323 fdhead->infabsdir = savestr (curfdp->infabsdir);
6324 fdhead->taggedfname = taggedfname;
6325 fdhead->usecharno = false;
6326 fdhead->prop = NULL;
6327 fdhead->written = false;
6328 curfdp = fdhead;
6329 }
6330 }
6331 free (taggedabsname);
6332 lineno = lno - 1;
6333 readline (lbp, stream);
6334 return;
6335 } /* if a real #line directive */
6336 } /* if #line is followed by a number */
6337 } /* if line begins with "#line " */
6338
6339 /* If we are here, no #line directive was found. */
6340 if (discard_until_line_directive)
6341 {
6342 if (result > 0)
6343 {
6344 /* Do a tail recursion on ourselves, thus discarding the contents
6345 of the line buffer. */
6346 readline (lbp, stream);
6347 return;
6348 }
6349 /* End of file. */
6350 discard_until_line_directive = false;
6351 return;
6352 }
6353 } /* if #line directives should be considered */
6354
6355 {
6356 int match;
6357 regexp *rp;
6358 char *name;
6359
6360 /* Match against relevant regexps. */
6361 if (lbp->len > 0)
6362 for (rp = p_head; rp != NULL; rp = rp->p_next)
6363 {
6364 /* Only use generic regexps or those for the current language.
6365 Also do not use multiline regexps, which is the job of
6366 regex_tag_multiline. */
6367 if ((rp->lang != NULL && rp->lang != fdhead->lang)
6368 || rp->multi_line)
6369 continue;
6370
6371 match = re_match (rp->pat, lbp->buffer, lbp->len, 0, &rp->regs);
6372 switch (match)
6373 {
6374 case -2:
6375 /* Some error. */
6376 if (!rp->error_signaled)
6377 {
6378 error ("regexp stack overflow while matching \"%s\"",
6379 rp->pattern);
6380 rp->error_signaled = true;
6381 }
6382 break;
6383 case -1:
6384 /* No match. */
6385 break;
6386 case 0:
6387 /* Empty string matched. */
6388 if (!rp->error_signaled)
6389 {
6390 error ("regexp matches the empty string: \"%s\"", rp->pattern);
6391 rp->error_signaled = true;
6392 }
6393 break;
6394 default:
6395 /* Match occurred. Construct a tag. */
6396 name = rp->name;
6397 if (name[0] == '\0')
6398 name = NULL;
6399 else /* make a named tag */
6400 name = substitute (lbp->buffer, rp->name, &rp->regs);
6401 if (rp->force_explicit_name)
6402 /* Force explicit tag name, if a name is there. */
6403 pfnote (name, true, lbp->buffer, match, lineno, linecharno);
6404 else
6405 make_tag (name, strlen (name), true,
6406 lbp->buffer, match, lineno, linecharno);
6407 break;
6408 }
6409 }
6410 }
6411 }
6412
6413 \f
6414 /*
6415 * Return a pointer to a space of size strlen(cp)+1 allocated
6416 * with xnew where the string CP has been copied.
6417 */
6418 static char *
6419 savestr (const char *cp)
6420 {
6421 return savenstr (cp, strlen (cp));
6422 }
6423
6424 /*
6425 * Return a pointer to a space of size LEN+1 allocated with xnew where
6426 * the string CP has been copied for at most the first LEN characters.
6427 */
6428 static char *
6429 savenstr (const char *cp, int len)
6430 {
6431 char *dp = xnew (len + 1, char);
6432 dp[len] = '\0';
6433 return memcpy (dp, cp, len);
6434 }
6435
6436 /* Skip spaces (end of string is not space), return new pointer. */
6437 static char *
6438 skip_spaces (char *cp)
6439 {
6440 while (c_isspace (*cp))
6441 cp++;
6442 return cp;
6443 }
6444
6445 /* Skip non spaces, except end of string, return new pointer. */
6446 static char *
6447 skip_non_spaces (char *cp)
6448 {
6449 while (*cp != '\0' && !c_isspace (*cp))
6450 cp++;
6451 return cp;
6452 }
6453
6454 /* Skip any chars in the "name" class.*/
6455 static char *
6456 skip_name (char *cp)
6457 {
6458 /* '\0' is a notinname() so loop stops there too */
6459 while (! notinname (*cp))
6460 cp++;
6461 return cp;
6462 }
6463
6464 /* Print error message and exit. */
6465 static void
6466 fatal (char const *format, ...)
6467 {
6468 va_list ap;
6469 va_start (ap, format);
6470 verror (format, ap);
6471 va_end (ap);
6472 exit (EXIT_FAILURE);
6473 }
6474
6475 static void
6476 pfatal (const char *s1)
6477 {
6478 perror (s1);
6479 exit (EXIT_FAILURE);
6480 }
6481
6482 static void
6483 suggest_asking_for_help (void)
6484 {
6485 fprintf (stderr, "\tTry '%s --help' for a complete list of options.\n",
6486 progname);
6487 exit (EXIT_FAILURE);
6488 }
6489
6490 /* Output a diagnostic with printf-style FORMAT and args. */
6491 static void
6492 error (const char *format, ...)
6493 {
6494 va_list ap;
6495 va_start (ap, format);
6496 verror (format, ap);
6497 va_end (ap);
6498 }
6499
6500 static void
6501 verror (char const *format, va_list ap)
6502 {
6503 fprintf (stderr, "%s: ", progname);
6504 vfprintf (stderr, format, ap);
6505 fprintf (stderr, "\n");
6506 }
6507
6508 /* Return a newly-allocated string whose contents
6509 concatenate those of s1, s2, s3. */
6510 static char *
6511 concat (const char *s1, const char *s2, const char *s3)
6512 {
6513 int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3);
6514 char *result = xnew (len1 + len2 + len3 + 1, char);
6515
6516 strcpy (result, s1);
6517 strcpy (result + len1, s2);
6518 strcpy (result + len1 + len2, s3);
6519
6520 return result;
6521 }
6522
6523 \f
6524 /* Does the same work as the system V getcwd, but does not need to
6525 guess the buffer size in advance. */
6526 static char *
6527 etags_getcwd (void)
6528 {
6529 int bufsize = 200;
6530 char *path = xnew (bufsize, char);
6531
6532 while (getcwd (path, bufsize) == NULL)
6533 {
6534 if (errno != ERANGE)
6535 pfatal ("getcwd");
6536 bufsize *= 2;
6537 free (path);
6538 path = xnew (bufsize, char);
6539 }
6540
6541 canonicalize_filename (path);
6542 return path;
6543 }
6544
6545 /* Return a newly allocated string containing a name of a temporary file. */
6546 static char *
6547 etags_mktmp (void)
6548 {
6549 const char *tmpdir = getenv ("TMPDIR");
6550 const char *slash = "/";
6551
6552 #if MSDOS || defined (DOS_NT)
6553 if (!tmpdir)
6554 tmpdir = getenv ("TEMP");
6555 if (!tmpdir)
6556 tmpdir = getenv ("TMP");
6557 if (!tmpdir)
6558 tmpdir = ".";
6559 if (tmpdir[strlen (tmpdir) - 1] == '/'
6560 || tmpdir[strlen (tmpdir) - 1] == '\\')
6561 slash = "";
6562 #else
6563 if (!tmpdir)
6564 tmpdir = "/tmp";
6565 if (tmpdir[strlen (tmpdir) - 1] == '/')
6566 slash = "";
6567 #endif
6568
6569 char *templt = concat (tmpdir, slash, "etXXXXXX");
6570 int fd = mkostemp (templt, O_CLOEXEC);
6571 if (fd < 0 || close (fd) != 0)
6572 {
6573 int temp_errno = errno;
6574 free (templt);
6575 errno = temp_errno;
6576 templt = NULL;
6577 }
6578
6579 #if defined (DOS_NT)
6580 /* The file name will be used in shell redirection, so it needs to have
6581 DOS-style backslashes, or else the Windows shell will barf. */
6582 char *p;
6583 for (p = templt; *p; p++)
6584 if (*p == '/')
6585 *p = '\\';
6586 #endif
6587
6588 return templt;
6589 }
6590
6591 /* Return a newly allocated string containing the file name of FILE
6592 relative to the absolute directory DIR (which should end with a slash). */
6593 static char *
6594 relative_filename (char *file, char *dir)
6595 {
6596 char *fp, *dp, *afn, *res;
6597 int i;
6598
6599 /* Find the common root of file and dir (with a trailing slash). */
6600 afn = absolute_filename (file, cwd);
6601 fp = afn;
6602 dp = dir;
6603 while (*fp++ == *dp++)
6604 continue;
6605 fp--, dp--; /* back to the first differing char */
6606 #ifdef DOS_NT
6607 if (fp == afn && afn[0] != '/') /* cannot build a relative name */
6608 return afn;
6609 #endif
6610 do /* look at the equal chars until '/' */
6611 fp--, dp--;
6612 while (*fp != '/');
6613
6614 /* Build a sequence of "../" strings for the resulting relative file name. */
6615 i = 0;
6616 while ((dp = strchr (dp + 1, '/')) != NULL)
6617 i += 1;
6618 res = xnew (3*i + strlen (fp + 1) + 1, char);
6619 char *z = res;
6620 while (i-- > 0)
6621 z = stpcpy (z, "../");
6622
6623 /* Add the file name relative to the common root of file and dir. */
6624 strcpy (z, fp + 1);
6625 free (afn);
6626
6627 return res;
6628 }
6629
6630 /* Return a newly allocated string containing the absolute file name
6631 of FILE given DIR (which should end with a slash). */
6632 static char *
6633 absolute_filename (char *file, char *dir)
6634 {
6635 char *slashp, *cp, *res;
6636
6637 if (filename_is_absolute (file))
6638 res = savestr (file);
6639 #ifdef DOS_NT
6640 /* We don't support non-absolute file names with a drive
6641 letter, like `d:NAME' (it's too much hassle). */
6642 else if (file[1] == ':')
6643 fatal ("%s: relative file names with drive letters not supported", file);
6644 #endif
6645 else
6646 res = concat (dir, file, "");
6647
6648 /* Delete the "/dirname/.." and "/." substrings. */
6649 slashp = strchr (res, '/');
6650 while (slashp != NULL && slashp[0] != '\0')
6651 {
6652 if (slashp[1] == '.')
6653 {
6654 if (slashp[2] == '.'
6655 && (slashp[3] == '/' || slashp[3] == '\0'))
6656 {
6657 cp = slashp;
6658 do
6659 cp--;
6660 while (cp >= res && !filename_is_absolute (cp));
6661 if (cp < res)
6662 cp = slashp; /* the absolute name begins with "/.." */
6663 #ifdef DOS_NT
6664 /* Under MSDOS and NT we get `d:/NAME' as absolute
6665 file name, so the luser could say `d:/../NAME'.
6666 We silently treat this as `d:/NAME'. */
6667 else if (cp[0] != '/')
6668 cp = slashp;
6669 #endif
6670 memmove (cp, slashp + 3, strlen (slashp + 2));
6671 slashp = cp;
6672 continue;
6673 }
6674 else if (slashp[2] == '/' || slashp[2] == '\0')
6675 {
6676 memmove (slashp, slashp + 2, strlen (slashp + 1));
6677 continue;
6678 }
6679 }
6680
6681 slashp = strchr (slashp + 1, '/');
6682 }
6683
6684 if (res[0] == '\0') /* just a safety net: should never happen */
6685 {
6686 free (res);
6687 return savestr ("/");
6688 }
6689 else
6690 return res;
6691 }
6692
6693 /* Return a newly allocated string containing the absolute
6694 file name of dir where FILE resides given DIR (which should
6695 end with a slash). */
6696 static char *
6697 absolute_dirname (char *file, char *dir)
6698 {
6699 char *slashp, *res;
6700 char save;
6701
6702 slashp = strrchr (file, '/');
6703 if (slashp == NULL)
6704 return savestr (dir);
6705 save = slashp[1];
6706 slashp[1] = '\0';
6707 res = absolute_filename (file, dir);
6708 slashp[1] = save;
6709
6710 return res;
6711 }
6712
6713 /* Whether the argument string is an absolute file name. The argument
6714 string must have been canonicalized with canonicalize_filename. */
6715 static bool
6716 filename_is_absolute (char *fn)
6717 {
6718 return (fn[0] == '/'
6719 #ifdef DOS_NT
6720 || (c_isalpha (fn[0]) && fn[1] == ':' && fn[2] == '/')
6721 #endif
6722 );
6723 }
6724
6725 /* Downcase DOS drive letter and collapse separators into single slashes.
6726 Works in place. */
6727 static void
6728 canonicalize_filename (register char *fn)
6729 {
6730 register char* cp;
6731
6732 #ifdef DOS_NT
6733 /* Canonicalize drive letter case. */
6734 if (c_isupper (fn[0]) && fn[1] == ':')
6735 fn[0] = c_tolower (fn[0]);
6736
6737 /* Collapse multiple forward- and back-slashes into a single forward
6738 slash. */
6739 for (cp = fn; *cp != '\0'; cp++, fn++)
6740 if (*cp == '/' || *cp == '\\')
6741 {
6742 *fn = '/';
6743 while (cp[1] == '/' || cp[1] == '\\')
6744 cp++;
6745 }
6746 else
6747 *fn = *cp;
6748
6749 #else /* !DOS_NT */
6750
6751 /* Collapse multiple slashes into a single slash. */
6752 for (cp = fn; *cp != '\0'; cp++, fn++)
6753 if (*cp == '/')
6754 {
6755 *fn = '/';
6756 while (cp[1] == '/')
6757 cp++;
6758 }
6759 else
6760 *fn = *cp;
6761
6762 #endif /* !DOS_NT */
6763
6764 *fn = '\0';
6765 }
6766
6767 \f
6768 /* Initialize a linebuffer for use. */
6769 static void
6770 linebuffer_init (linebuffer *lbp)
6771 {
6772 lbp->size = (DEBUG) ? 3 : 200;
6773 lbp->buffer = xnew (lbp->size, char);
6774 lbp->buffer[0] = '\0';
6775 lbp->len = 0;
6776 }
6777
6778 /* Set the minimum size of a string contained in a linebuffer. */
6779 static void
6780 linebuffer_setlen (linebuffer *lbp, int toksize)
6781 {
6782 while (lbp->size <= toksize)
6783 {
6784 lbp->size *= 2;
6785 xrnew (lbp->buffer, lbp->size, char);
6786 }
6787 lbp->len = toksize;
6788 }
6789
6790 /* Like malloc but get fatal error if memory is exhausted. */
6791 static void *
6792 xmalloc (size_t size)
6793 {
6794 void *result = malloc (size);
6795 if (result == NULL)
6796 fatal ("virtual memory exhausted");
6797 return result;
6798 }
6799
6800 static void *
6801 xrealloc (void *ptr, size_t size)
6802 {
6803 void *result = realloc (ptr, size);
6804 if (result == NULL)
6805 fatal ("virtual memory exhausted");
6806 return result;
6807 }
6808
6809 /*
6810 * Local Variables:
6811 * indent-tabs-mode: t
6812 * tab-width: 8
6813 * fill-column: 79
6814 * c-font-lock-extra-types: ("FILE" "bool" "language" "linebuffer" "fdesc" "node" "regexp")
6815 * c-file-style: "gnu"
6816 * End:
6817 */
6818
6819 /* etags.c ends here */