Fix c-declaration-limits to return correct limits in all cases.
[emacs.git] / lib-src / etags.c
blob3620b0fd321f9d3a6ddfb1863100cea23d9b9f88
1 /* Tags file maker to go with GNU Emacs -*- coding: utf-8 -*-
3 Copyright (C) 1984 The Regents of the University of California
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.
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.
31 Copyright (C) 1984, 1987-1989, 1993-1995, 1998-2016 Free Software
32 Foundation, Inc.
34 This file is not considered part of GNU Emacs.
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 (at
39 your option) any later version.
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.
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/>. */
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.
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. */
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.
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.
81 char pot_etags_version[] = "@(#) pot revision number is 17.38.1.4";
83 #ifdef DEBUG
84 # undef DEBUG
85 # define DEBUG true
86 #else
87 # define DEBUG false
88 # define NDEBUG /* disable assert */
89 #endif
91 #include <config.h>
93 #ifndef _GNU_SOURCE
94 # define _GNU_SOURCE 1 /* enables some compiler checks on GNU */
95 #endif
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 */
105 #ifdef MSDOS
106 # undef MSDOS
107 # define MSDOS true
108 # include <sys/param.h>
109 #else
110 # define MSDOS false
111 #endif /* MSDOS */
113 #ifdef WINDOWSNT
114 # include <direct.h>
115 # undef HAVE_NTGUI
116 # undef DOS_NT
117 # define DOS_NT
118 # define O_CLOEXEC O_NOINHERIT
119 #endif /* WINDOWSNT */
121 #include <limits.h>
122 #include <unistd.h>
123 #include <stdarg.h>
124 #include <stdlib.h>
125 #include <string.h>
126 #include <sysstdio.h>
127 #include <errno.h>
128 #include <fcntl.h>
129 #include <binary-io.h>
130 #include <c-ctype.h>
131 #include <c-strcase.h>
133 #include <assert.h>
134 #ifdef NDEBUG
135 # undef assert /* some systems have a buggy assert.h */
136 # define assert(x) ((void) 0)
137 #endif
139 #include <getopt.h>
140 #include <regex.h>
142 /* Define CTAGS to make the program "ctags" compatible with the usual one.
143 Leave it undefined to make the program "etags", which makes emacs-style
144 tag tables and tags typedefs, #defines and struct/union/enum by default. */
145 #ifdef CTAGS
146 # undef CTAGS
147 # define CTAGS true
148 #else
149 # define CTAGS false
150 #endif
152 static bool
153 streq (char const *s, char const *t)
155 return strcmp (s, t) == 0;
158 static bool
159 strcaseeq (char const *s, char const *t)
161 return c_strcasecmp (s, t) == 0;
164 static bool
165 strneq (char const *s, char const *t, size_t n)
167 return strncmp (s, t, n) == 0;
170 static bool
171 strncaseeq (char const *s, char const *t, size_t n)
173 return c_strncasecmp (s, t, n) == 0;
176 /* C is not in a name. */
177 static bool
178 notinname (unsigned char c)
180 /* Look at make_tag before modifying! */
181 static bool const table[UCHAR_MAX + 1] = {
182 ['\0']=1, ['\t']=1, ['\n']=1, ['\f']=1, ['\r']=1, [' ']=1,
183 ['(']=1, [')']=1, [',']=1, [';']=1, ['=']=1
185 return table[c];
188 /* C can start a token. */
189 static bool
190 begtoken (unsigned char c)
192 static bool const table[UCHAR_MAX + 1] = {
193 ['$']=1, ['@']=1,
194 ['A']=1, ['B']=1, ['C']=1, ['D']=1, ['E']=1, ['F']=1, ['G']=1, ['H']=1,
195 ['I']=1, ['J']=1, ['K']=1, ['L']=1, ['M']=1, ['N']=1, ['O']=1, ['P']=1,
196 ['Q']=1, ['R']=1, ['S']=1, ['T']=1, ['U']=1, ['V']=1, ['W']=1, ['X']=1,
197 ['Y']=1, ['Z']=1,
198 ['_']=1,
199 ['a']=1, ['b']=1, ['c']=1, ['d']=1, ['e']=1, ['f']=1, ['g']=1, ['h']=1,
200 ['i']=1, ['j']=1, ['k']=1, ['l']=1, ['m']=1, ['n']=1, ['o']=1, ['p']=1,
201 ['q']=1, ['r']=1, ['s']=1, ['t']=1, ['u']=1, ['v']=1, ['w']=1, ['x']=1,
202 ['y']=1, ['z']=1,
203 ['~']=1
205 return table[c];
208 /* C can be in the middle of a token. */
209 static bool
210 intoken (unsigned char c)
212 static bool const table[UCHAR_MAX + 1] = {
213 ['$']=1,
214 ['0']=1, ['1']=1, ['2']=1, ['3']=1, ['4']=1,
215 ['5']=1, ['6']=1, ['7']=1, ['8']=1, ['9']=1,
216 ['A']=1, ['B']=1, ['C']=1, ['D']=1, ['E']=1, ['F']=1, ['G']=1, ['H']=1,
217 ['I']=1, ['J']=1, ['K']=1, ['L']=1, ['M']=1, ['N']=1, ['O']=1, ['P']=1,
218 ['Q']=1, ['R']=1, ['S']=1, ['T']=1, ['U']=1, ['V']=1, ['W']=1, ['X']=1,
219 ['Y']=1, ['Z']=1,
220 ['_']=1,
221 ['a']=1, ['b']=1, ['c']=1, ['d']=1, ['e']=1, ['f']=1, ['g']=1, ['h']=1,
222 ['i']=1, ['j']=1, ['k']=1, ['l']=1, ['m']=1, ['n']=1, ['o']=1, ['p']=1,
223 ['q']=1, ['r']=1, ['s']=1, ['t']=1, ['u']=1, ['v']=1, ['w']=1, ['x']=1,
224 ['y']=1, ['z']=1
226 return table[c];
229 /* C can end a token. */
230 static bool
231 endtoken (unsigned char c)
233 static bool const table[UCHAR_MAX + 1] = {
234 ['\0']=1, ['\t']=1, ['\n']=1, ['\r']=1, [' ']=1,
235 ['!']=1, ['"']=1, ['#']=1, ['%']=1, ['&']=1, ['\'']=1, ['(']=1, [')']=1,
236 ['*']=1, ['+']=1, [',']=1, ['-']=1, ['.']=1, ['/']=1, [':']=1, [';']=1,
237 ['<']=1, ['=']=1, ['>']=1, ['?']=1, ['[']=1, [']']=1, ['^']=1,
238 ['{']=1, ['|']=1, ['}']=1, ['~']=1
240 return table[c];
244 * xnew, xrnew -- allocate, reallocate storage
246 * SYNOPSIS: Type *xnew (int n, Type);
247 * void xrnew (OldPointer, int n, Type);
249 #define xnew(n, Type) ((Type *) xmalloc ((n) * sizeof (Type)))
250 #define xrnew(op, n, Type) ((op) = (Type *) xrealloc (op, (n) * sizeof (Type)))
252 typedef void Lang_function (FILE *);
254 typedef struct
256 const char *suffix; /* file name suffix for this compressor */
257 const char *command; /* takes one arg and decompresses to stdout */
258 } compressor;
260 typedef struct
262 const char *name; /* language name */
263 const char *help; /* detailed help for the language */
264 Lang_function *function; /* parse function */
265 const char **suffixes; /* name suffixes of this language's files */
266 const char **filenames; /* names of this language's files */
267 const char **interpreters; /* interpreters for this language */
268 bool metasource; /* source used to generate other sources */
269 } language;
271 typedef struct fdesc
273 struct fdesc *next; /* for the linked list */
274 char *infname; /* uncompressed input file name */
275 char *infabsname; /* absolute uncompressed input file name */
276 char *infabsdir; /* absolute dir of input file */
277 char *taggedfname; /* file name to write in tagfile */
278 language *lang; /* language of file */
279 char *prop; /* file properties to write in tagfile */
280 bool usecharno; /* etags tags shall contain char number */
281 bool written; /* entry written in the tags file */
282 } fdesc;
284 typedef struct node_st
285 { /* sorting structure */
286 struct node_st *left, *right; /* left and right sons */
287 fdesc *fdp; /* description of file to whom tag belongs */
288 char *name; /* tag name */
289 char *regex; /* search regexp */
290 bool valid; /* write this tag on the tag file */
291 bool is_func; /* function tag: use regexp in CTAGS mode */
292 bool been_warned; /* warning already given for duplicated tag */
293 int lno; /* line number tag is on */
294 long cno; /* character number line starts on */
295 } node;
298 * A `linebuffer' is a structure which holds a line of text.
299 * `readline_internal' reads a line from a stream into a linebuffer
300 * and works regardless of the length of the line.
301 * SIZE is the size of BUFFER, LEN is the length of the string in
302 * BUFFER after readline reads it.
304 typedef struct
306 long size;
307 int len;
308 char *buffer;
309 } linebuffer;
311 /* Used to support mixing of --lang and file names. */
312 typedef struct
314 enum {
315 at_language, /* a language specification */
316 at_regexp, /* a regular expression */
317 at_filename, /* a file name */
318 at_stdin, /* read from stdin here */
319 at_end /* stop parsing the list */
320 } arg_type; /* argument type */
321 language *lang; /* language associated with the argument */
322 char *what; /* the argument itself */
323 } argument;
325 /* Structure defining a regular expression. */
326 typedef struct regexp
328 struct regexp *p_next; /* pointer to next in list */
329 language *lang; /* if set, use only for this language */
330 char *pattern; /* the regexp pattern */
331 char *name; /* tag name */
332 struct re_pattern_buffer *pat; /* the compiled pattern */
333 struct re_registers regs; /* re registers */
334 bool error_signaled; /* already signaled for this regexp */
335 bool force_explicit_name; /* do not allow implicit tag name */
336 bool ignore_case; /* ignore case when matching */
337 bool multi_line; /* do a multi-line match on the whole file */
338 } regexp;
341 /* Many compilers barf on this:
342 Lang_function Ada_funcs;
343 so let's write it this way */
344 static void Ada_funcs (FILE *);
345 static void Asm_labels (FILE *);
346 static void C_entries (int c_ext, FILE *);
347 static void default_C_entries (FILE *);
348 static void plain_C_entries (FILE *);
349 static void Cjava_entries (FILE *);
350 static void Cobol_paragraphs (FILE *);
351 static void Cplusplus_entries (FILE *);
352 static void Cstar_entries (FILE *);
353 static void Erlang_functions (FILE *);
354 static void Forth_words (FILE *);
355 static void Fortran_functions (FILE *);
356 static void Go_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 *);
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 **);
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 **);
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 *);
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);
418 static char searchar = '/'; /* use /.../ searches */
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 */
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 */
435 static const int invalidcharno = -1;
437 static node *nodehead; /* the head of the binary tree of tags */
438 static node *last_node; /* the last node created */
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 */
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 */
467 /* STDIN is defined in LynxOS system headers */
468 #ifdef STDIN
469 # undef STDIN
470 #endif
472 #define STDIN 0x1001 /* returned by getopt_long on --parse-stdin */
473 static bool parsing_stdin; /* --parse-stdin used */
475 static regexp *p_head; /* list of all regexps */
476 static bool need_filebuf; /* some regexes are multi-line */
478 static struct option longopts[] =
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' },
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' },
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 }
519 static compressor compressors[] =
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 }
531 * Language stuff.
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'.";
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
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.";
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 */
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+'.";
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.)";
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.";
624 static const char *Cstar_suffixes [] =
625 { "cs", "hs", NULL };
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.";
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.";
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.";
644 static const char *Go_suffixes [] = {"go", NULL};
645 static const char Go_help [] =
646 "In Go code, functions, interfaces and packages are tags.";
648 static const char *HTML_suffixes [] =
649 { "htm", "html", "shtml", NULL };
650 static const char HTML_help [] =
651 "In HTML input files, the tags are the 'title' and the 'h1', 'h2',\n\
652 'h3' headers. Also, tags are 'name=' in anchors and all\n\
653 occurrences of 'id='.";
655 static const char *Lisp_suffixes [] =
656 { "cl", "clisp", "el", "l", "lisp", "LSP", "lsp", "ml", NULL };
657 static const char Lisp_help [] =
658 "In Lisp code, any function defined with 'defun', any variable\n\
659 defined with 'defvar' or 'defconst', and in general the first\n\
660 argument of any expression that starts with '(def' in column zero\n\
661 is a tag.\n\
662 The '--declarations' option tags \"(defvar foo)\" constructs too.";
664 static const char *Lua_suffixes [] =
665 { "lua", "LUA", NULL };
666 static const char Lua_help [] =
667 "In Lua scripts, all functions are tags.";
669 static const char *Makefile_filenames [] =
670 { "Makefile", "makefile", "GNUMakefile", "Makefile.in", "Makefile.am", NULL};
671 static const char Makefile_help [] =
672 "In makefiles, targets are tags; additionally, variables are tags\n\
673 unless you specify '--no-globals'.";
675 static const char *Objc_suffixes [] =
676 { "lm", /* Objective lex file */
677 "m", /* Objective C file */
678 NULL };
679 static const char Objc_help [] =
680 "In Objective C code, tags include Objective C definitions for classes,\n\
681 class categories, methods and protocols. Tags for variables and\n\
682 functions in classes are named 'CLASS::VARIABLE' and 'CLASS::FUNCTION'.\
683 \n(Use --help --lang=c --lang=objc --lang=java for full help.)";
685 static const char *Pascal_suffixes [] =
686 { "p", "pas", NULL };
687 static const char Pascal_help [] =
688 "In Pascal code, the tags are the functions and procedures defined\n\
689 in the file.";
690 /* " // this is for working around an Emacs highlighting bug... */
692 static const char *Perl_suffixes [] =
693 { "pl", "pm", NULL };
694 static const char *Perl_interpreters [] =
695 { "perl", "@PERL@", NULL };
696 static const char Perl_help [] =
697 "In Perl code, the tags are the packages, subroutines and variables\n\
698 defined by the 'package', 'sub', 'my' and 'local' keywords. Use\n\
699 '--globals' if you want to tag global variables. Tags for\n\
700 subroutines are named 'PACKAGE::SUB'. The name for subroutines\n\
701 defined in the default package is 'main::SUB'.";
703 static const char *PHP_suffixes [] =
704 { "php", "php3", "php4", NULL };
705 static const char PHP_help [] =
706 "In PHP code, tags are functions, classes and defines. Unless you use\n\
707 the '--no-members' option, vars are tags too.";
709 static const char *plain_C_suffixes [] =
710 { "pc", /* Pro*C file */
711 NULL };
713 static const char *PS_suffixes [] =
714 { "ps", "psw", NULL }; /* .psw is for PSWrap */
715 static const char PS_help [] =
716 "In PostScript code, the tags are the functions.";
718 static const char *Prolog_suffixes [] =
719 { "prolog", NULL };
720 static const char Prolog_help [] =
721 "In Prolog code, tags are predicates and rules at the beginning of\n\
722 line.";
724 static const char *Python_suffixes [] =
725 { "py", NULL };
726 static const char Python_help [] =
727 "In Python code, 'def' or 'class' at the beginning of a line\n\
728 generate a tag.";
730 static const char *Ruby_suffixes [] =
731 { "rb", "ru", "rbw", NULL };
732 static const char *Ruby_filenames [] =
733 { "Rakefile", "Thorfile", NULL };
734 static const char Ruby_help [] =
735 "In Ruby code, 'def' or 'class' or 'module' at the beginning of\n\
736 a line generate a tag. Constants also generate a tag.";
738 /* Can't do the `SCM' or `scm' prefix with a version number. */
739 static const char *Scheme_suffixes [] =
740 { "oak", "sch", "scheme", "SCM", "scm", "SM", "sm", "ss", "t", NULL };
741 static const char Scheme_help [] =
742 "In Scheme code, tags include anything defined with 'def' or with a\n\
743 construct whose name starts with 'def'. They also include\n\
744 variables set with 'set!' at top level in the file.";
746 static const char *TeX_suffixes [] =
747 { "bib", "clo", "cls", "ltx", "sty", "TeX", "tex", NULL };
748 static const char TeX_help [] =
749 "In LaTeX text, the argument of any of the commands '\\chapter',\n\
750 '\\section', '\\subsection', '\\subsubsection', '\\eqno', '\\label',\n\
751 '\\ref', '\\cite', '\\bibitem', '\\part', '\\appendix', '\\entry',\n\
752 '\\index', '\\def', '\\newcommand', '\\renewcommand',\n\
753 '\\newenvironment' or '\\renewenvironment' is a tag.\n\
755 Other commands can be specified by setting the environment variable\n\
756 'TEXTAGS' to a colon-separated list like, for example,\n\
757 TEXTAGS=\"mycommand:myothercommand\".";
760 static const char *Texinfo_suffixes [] =
761 { "texi", "texinfo", "txi", NULL };
762 static const char Texinfo_help [] =
763 "for texinfo files, lines starting with @node are tagged.";
765 static const char *Yacc_suffixes [] =
766 { "y", "y++", "ym", "yxx", "yy", NULL }; /* .ym is Objective yacc file */
767 static const char Yacc_help [] =
768 "In Bison or Yacc input files, each rule defines as a tag the\n\
769 nonterminal it constructs. The portions of the file that contain\n\
770 C code are parsed as C code (use --help --lang=c --lang=yacc\n\
771 for full help).";
773 static const char auto_help [] =
774 "'auto' is not a real language, it indicates to use\n\
775 a default language for files base on file name suffix and file contents.";
777 static const char none_help [] =
778 "'none' is not a real language, it indicates to only do\n\
779 regexp processing on files.";
781 static const char no_lang_help [] =
782 "No detailed help available for this language.";
786 * Table of languages.
788 * It is ok for a given function to be listed under more than one
789 * name. I just didn't.
792 static language lang_names [] =
794 { "ada", Ada_help, Ada_funcs, Ada_suffixes },
795 { "asm", Asm_help, Asm_labels, Asm_suffixes },
796 { "c", default_C_help, default_C_entries, default_C_suffixes },
797 { "c++", Cplusplus_help, Cplusplus_entries, Cplusplus_suffixes },
798 { "c*", no_lang_help, Cstar_entries, Cstar_suffixes },
799 { "cobol", Cobol_help, Cobol_paragraphs, Cobol_suffixes },
800 { "erlang", Erlang_help, Erlang_functions, Erlang_suffixes },
801 { "forth", Forth_help, Forth_words, Forth_suffixes },
802 { "fortran", Fortran_help, Fortran_functions, Fortran_suffixes },
803 { "go", Go_help, Go_functions, Go_suffixes },
804 { "html", HTML_help, HTML_labels, HTML_suffixes },
805 { "java", Cjava_help, Cjava_entries, Cjava_suffixes },
806 { "lisp", Lisp_help, Lisp_functions, Lisp_suffixes },
807 { "lua", Lua_help, Lua_functions, Lua_suffixes },
808 { "makefile", Makefile_help,Makefile_targets,NULL,Makefile_filenames},
809 { "objc", Objc_help, plain_C_entries, Objc_suffixes },
810 { "pascal", Pascal_help, Pascal_functions, Pascal_suffixes },
811 { "perl",Perl_help,Perl_functions,Perl_suffixes,NULL,Perl_interpreters},
812 { "php", PHP_help, PHP_functions, PHP_suffixes },
813 { "postscript",PS_help, PS_functions, PS_suffixes },
814 { "proc", no_lang_help, plain_C_entries, plain_C_suffixes },
815 { "prolog", Prolog_help, Prolog_functions, Prolog_suffixes },
816 { "python", Python_help, Python_functions, Python_suffixes },
817 { "ruby", Ruby_help,Ruby_functions,Ruby_suffixes,Ruby_filenames },
818 { "scheme", Scheme_help, Scheme_functions, Scheme_suffixes },
819 { "tex", TeX_help, TeX_commands, TeX_suffixes },
820 { "texinfo", Texinfo_help, Texinfo_nodes, Texinfo_suffixes },
821 { "yacc", Yacc_help,Yacc_entries,Yacc_suffixes,NULL,NULL,true},
822 { "auto", auto_help }, /* default guessing scheme */
823 { "none", none_help, just_read_file }, /* regexp matching only */
824 { NULL } /* end of list */
828 static void
829 print_language_names (void)
831 language *lang;
832 const char **name, **ext;
834 puts ("\nThese are the currently supported languages, along with the\n\
835 default file names and dot suffixes:");
836 for (lang = lang_names; lang->name != NULL; lang++)
838 printf (" %-*s", 10, lang->name);
839 if (lang->filenames != NULL)
840 for (name = lang->filenames; *name != NULL; name++)
841 printf (" %s", *name);
842 if (lang->suffixes != NULL)
843 for (ext = lang->suffixes; *ext != NULL; ext++)
844 printf (" .%s", *ext);
845 puts ("");
847 puts ("where 'auto' means use default language for files based on file\n\
848 name suffix, and 'none' means only do regexp processing on files.\n\
849 If no language is specified and no matching suffix is found,\n\
850 the first line of the file is read for a sharp-bang (#!) sequence\n\
851 followed by the name of an interpreter. If no such sequence is found,\n\
852 Fortran is tried first; if no tags are found, C is tried next.\n\
853 When parsing any C file, a \"class\" or \"template\" keyword\n\
854 switches to C++.");
855 puts ("Compressed files are supported using gzip, bzip2, and xz.\n\
857 For detailed help on a given language use, for example,\n\
858 etags --help --lang=ada.");
861 #ifndef EMACS_NAME
862 # define EMACS_NAME "standalone"
863 #endif
864 #ifndef VERSION
865 # define VERSION "17.38.1.4"
866 #endif
867 static _Noreturn void
868 print_version (void)
870 char emacs_copyright[] = COPYRIGHT;
872 printf ("%s (%s %s)\n", (CTAGS) ? "ctags" : "etags", EMACS_NAME, VERSION);
873 puts (emacs_copyright);
874 puts ("This program is distributed under the terms in ETAGS.README");
876 exit (EXIT_SUCCESS);
879 #ifndef PRINT_UNDOCUMENTED_OPTIONS_HELP
880 # define PRINT_UNDOCUMENTED_OPTIONS_HELP false
881 #endif
883 static _Noreturn void
884 print_help (argument *argbuffer)
886 bool help_for_lang = false;
888 for (; argbuffer->arg_type != at_end; argbuffer++)
889 if (argbuffer->arg_type == at_language)
891 if (help_for_lang)
892 puts ("");
893 puts (argbuffer->lang->help);
894 help_for_lang = true;
897 if (help_for_lang)
898 exit (EXIT_SUCCESS);
900 printf ("Usage: %s [options] [[regex-option ...] file-name] ...\n\
902 These are the options accepted by %s.\n", progname, progname);
903 puts ("You may use unambiguous abbreviations for the long option names.");
904 puts (" A - as file name means read names from stdin (one per line).\n\
905 Absolute names are stored in the output file as they are.\n\
906 Relative ones are stored relative to the output file's directory.\n");
908 puts ("-a, --append\n\
909 Append tag entries to existing tags file.");
911 puts ("--packages-only\n\
912 For Ada files, only generate tags for packages.");
914 if (CTAGS)
915 puts ("-B, --backward-search\n\
916 Write the search commands for the tag entries using '?', the\n\
917 backward-search command instead of '/', the forward-search command.");
919 /* This option is mostly obsolete, because etags can now automatically
920 detect C++. Retained for backward compatibility and for debugging and
921 experimentation. In principle, we could want to tag as C++ even
922 before any "class" or "template" keyword.
923 puts ("-C, --c++\n\
924 Treat files whose name suffix defaults to C language as C++ files.");
927 puts ("--declarations\n\
928 In C and derived languages, create tags for function declarations,");
929 if (CTAGS)
930 puts ("\tand create tags for extern variables if --globals is used.");
931 else
932 puts
933 ("\tand create tags for extern variables unless --no-globals is used.");
935 if (CTAGS)
936 puts ("-d, --defines\n\
937 Create tag entries for C #define constants and enum constants, too.");
938 else
939 puts ("-D, --no-defines\n\
940 Don't create tag entries for C #define constants and enum constants.\n\
941 This makes the tags file smaller.");
943 if (!CTAGS)
944 puts ("-i FILE, --include=FILE\n\
945 Include a note in tag file indicating that, when searching for\n\
946 a tag, one should also consult the tags file FILE after\n\
947 checking the current file.");
949 puts ("-l LANG, --language=LANG\n\
950 Force the following files to be considered as written in the\n\
951 named language up to the next --language=LANG option.");
953 if (CTAGS)
954 puts ("--globals\n\
955 Create tag entries for global variables in some languages.");
956 else
957 puts ("--no-globals\n\
958 Do not create tag entries for global variables in some\n\
959 languages. This makes the tags file smaller.");
961 puts ("--no-line-directive\n\
962 Ignore #line preprocessor directives in C and derived languages.");
964 if (CTAGS)
965 puts ("--members\n\
966 Create tag entries for members of structures in some languages.");
967 else
968 puts ("--no-members\n\
969 Do not create tag entries for members of structures\n\
970 in some languages.");
972 puts ("-Q, --class-qualify\n\
973 Qualify tag names with their class name in C++, ObjC, Java, and Perl.\n\
974 This produces tag names of the form \"class::member\" for C++,\n\
975 \"class(category)\" for Objective C, and \"class.member\" for Java.\n\
976 For Objective C, this also produces class methods qualified with\n\
977 their arguments, as in \"foo:bar:baz:more\".\n\
978 For Perl, this produces \"package::member\".");
979 puts ("-r REGEXP, --regex=REGEXP or --regex=@regexfile\n\
980 Make a tag for each line matching a regular expression pattern\n\
981 in the following files. {LANGUAGE}REGEXP uses REGEXP for LANGUAGE\n\
982 files only. REGEXFILE is a file containing one REGEXP per line.\n\
983 REGEXP takes the form /TAGREGEXP/TAGNAME/MODS, where TAGNAME/ is\n\
984 optional. The TAGREGEXP pattern is anchored (as if preceded by ^).");
985 puts (" If TAGNAME/ is present, the tags created are named.\n\
986 For example Tcl named tags can be created with:\n\
987 --regex=\"/proc[ \\t]+\\([^ \\t]+\\)/\\1/.\".\n\
988 MODS are optional one-letter modifiers: 'i' means to ignore case,\n\
989 'm' means to allow multi-line matches, 's' implies 'm' and\n\
990 causes dot to match any character, including newline.");
992 puts ("-R, --no-regex\n\
993 Don't create tags from regexps for the following files.");
995 puts ("-I, --ignore-indentation\n\
996 In C and C++ do not assume that a closing brace in the first\n\
997 column is the final brace of a function or structure definition.");
999 puts ("-o FILE, --output=FILE\n\
1000 Write the tags to FILE.");
1002 puts ("--parse-stdin=NAME\n\
1003 Read from standard input and record tags as belonging to file NAME.");
1005 if (CTAGS)
1007 puts ("-t, --typedefs\n\
1008 Generate tag entries for C and Ada typedefs.");
1009 puts ("-T, --typedefs-and-c++\n\
1010 Generate tag entries for C typedefs, C struct/enum/union tags,\n\
1011 and C++ member functions.");
1014 if (CTAGS)
1015 puts ("-u, --update\n\
1016 Update the tag entries for the given files, leaving tag\n\
1017 entries for other files in place. Currently, this is\n\
1018 implemented by deleting the existing entries for the given\n\
1019 files and then rewriting the new entries at the end of the\n\
1020 tags file. It is often faster to simply rebuild the entire\n\
1021 tag file than to use this.");
1023 if (CTAGS)
1025 puts ("-v, --vgrind\n\
1026 Print on the standard output an index of items intended for\n\
1027 human consumption, similar to the output of vgrind. The index\n\
1028 is sorted, and gives the page number of each item.");
1030 if (PRINT_UNDOCUMENTED_OPTIONS_HELP)
1031 puts ("-w, --no-duplicates\n\
1032 Do not create duplicate tag entries, for compatibility with\n\
1033 traditional ctags.");
1035 if (PRINT_UNDOCUMENTED_OPTIONS_HELP)
1036 puts ("-w, --no-warn\n\
1037 Suppress warning messages about duplicate tag entries.");
1039 puts ("-x, --cxref\n\
1040 Like --vgrind, but in the style of cxref, rather than vgrind.\n\
1041 The output uses line numbers instead of page numbers, but\n\
1042 beyond that the differences are cosmetic; try both to see\n\
1043 which you like.");
1046 puts ("-V, --version\n\
1047 Print the version of the program.\n\
1048 -h, --help\n\
1049 Print this help message.\n\
1050 Followed by one or more '--language' options prints detailed\n\
1051 help about tag generation for the specified languages.");
1053 print_language_names ();
1055 puts ("");
1056 puts ("Report bugs to bug-gnu-emacs@gnu.org");
1058 exit (EXIT_SUCCESS);
1063 main (int argc, char **argv)
1065 int i;
1066 unsigned int nincluded_files;
1067 char **included_files;
1068 argument *argbuffer;
1069 int current_arg, file_count;
1070 linebuffer filename_lb;
1071 bool help_asked = false;
1072 ptrdiff_t len;
1073 char *optstring;
1074 int opt;
1076 progname = argv[0];
1077 nincluded_files = 0;
1078 included_files = xnew (argc, char *);
1079 current_arg = 0;
1080 file_count = 0;
1082 /* Allocate enough no matter what happens. Overkill, but each one
1083 is small. */
1084 argbuffer = xnew (argc, argument);
1087 * Always find typedefs and structure tags.
1088 * Also default to find macro constants, enum constants, struct
1089 * members and global variables. Do it for both etags and ctags.
1091 typedefs = typedefs_or_cplusplus = constantypedefs = true;
1092 globals = members = true;
1094 /* When the optstring begins with a '-' getopt_long does not rearrange the
1095 non-options arguments to be at the end, but leaves them alone. */
1096 optstring = concat ("-ac:Cf:Il:o:Qr:RSVhH",
1097 (CTAGS) ? "BxdtTuvw" : "Di:",
1098 "");
1100 while ((opt = getopt_long (argc, argv, optstring, longopts, NULL)) != EOF)
1101 switch (opt)
1103 case 0:
1104 /* If getopt returns 0, then it has already processed a
1105 long-named option. We should do nothing. */
1106 break;
1108 case 1:
1109 /* This means that a file name has been seen. Record it. */
1110 argbuffer[current_arg].arg_type = at_filename;
1111 argbuffer[current_arg].what = optarg;
1112 len = strlen (optarg);
1113 if (whatlen_max < len)
1114 whatlen_max = len;
1115 ++current_arg;
1116 ++file_count;
1117 break;
1119 case STDIN:
1120 /* Parse standard input. Idea by Vivek <vivek@etla.org>. */
1121 argbuffer[current_arg].arg_type = at_stdin;
1122 argbuffer[current_arg].what = optarg;
1123 len = strlen (optarg);
1124 if (whatlen_max < len)
1125 whatlen_max = len;
1126 ++current_arg;
1127 ++file_count;
1128 if (parsing_stdin)
1129 fatal ("cannot parse standard input more than once");
1130 parsing_stdin = true;
1131 break;
1133 /* Common options. */
1134 case 'a': append_to_tagfile = true; break;
1135 case 'C': cplusplus = true; break;
1136 case 'f': /* for compatibility with old makefiles */
1137 case 'o':
1138 if (tagfile)
1140 error ("-o option may only be given once.");
1141 suggest_asking_for_help ();
1142 /* NOTREACHED */
1144 tagfile = optarg;
1145 break;
1146 case 'I':
1147 case 'S': /* for backward compatibility */
1148 ignoreindent = true;
1149 break;
1150 case 'l':
1152 language *lang = get_language_from_langname (optarg);
1153 if (lang != NULL)
1155 argbuffer[current_arg].lang = lang;
1156 argbuffer[current_arg].arg_type = at_language;
1157 ++current_arg;
1160 break;
1161 case 'c':
1162 /* Backward compatibility: support obsolete --ignore-case-regexp. */
1163 optarg = concat (optarg, "i", ""); /* memory leak here */
1164 /* FALLTHRU */
1165 case 'r':
1166 argbuffer[current_arg].arg_type = at_regexp;
1167 argbuffer[current_arg].what = optarg;
1168 len = strlen (optarg);
1169 if (whatlen_max < len)
1170 whatlen_max = len;
1171 ++current_arg;
1172 break;
1173 case 'R':
1174 argbuffer[current_arg].arg_type = at_regexp;
1175 argbuffer[current_arg].what = NULL;
1176 ++current_arg;
1177 break;
1178 case 'V':
1179 print_version ();
1180 break;
1181 case 'h':
1182 case 'H':
1183 help_asked = true;
1184 break;
1185 case 'Q':
1186 class_qualify = 1;
1187 break;
1189 /* Etags options */
1190 case 'D': constantypedefs = false; break;
1191 case 'i': included_files[nincluded_files++] = optarg; break;
1193 /* Ctags options. */
1194 case 'B': searchar = '?'; break;
1195 case 'd': constantypedefs = true; break;
1196 case 't': typedefs = true; break;
1197 case 'T': typedefs = typedefs_or_cplusplus = true; break;
1198 case 'u': update = true; break;
1199 case 'v': vgrind_style = true; /*FALLTHRU*/
1200 case 'x': cxref_style = true; break;
1201 case 'w': no_warnings = true; break;
1202 default:
1203 suggest_asking_for_help ();
1204 /* NOTREACHED */
1207 /* No more options. Store the rest of arguments. */
1208 for (; optind < argc; optind++)
1210 argbuffer[current_arg].arg_type = at_filename;
1211 argbuffer[current_arg].what = argv[optind];
1212 len = strlen (argv[optind]);
1213 if (whatlen_max < len)
1214 whatlen_max = len;
1215 ++current_arg;
1216 ++file_count;
1219 argbuffer[current_arg].arg_type = at_end;
1221 if (help_asked)
1222 print_help (argbuffer);
1223 /* NOTREACHED */
1225 if (nincluded_files == 0 && file_count == 0)
1227 error ("no input files specified.");
1228 suggest_asking_for_help ();
1229 /* NOTREACHED */
1232 if (tagfile == NULL)
1233 tagfile = savestr (CTAGS ? "tags" : "TAGS");
1234 cwd = etags_getcwd (); /* the current working directory */
1235 if (cwd[strlen (cwd) - 1] != '/')
1237 char *oldcwd = cwd;
1238 cwd = concat (oldcwd, "/", "");
1239 free (oldcwd);
1242 /* Compute base directory for relative file names. */
1243 if (streq (tagfile, "-")
1244 || strneq (tagfile, "/dev/", 5))
1245 tagfiledir = cwd; /* relative file names are relative to cwd */
1246 else
1248 canonicalize_filename (tagfile);
1249 tagfiledir = absolute_dirname (tagfile, cwd);
1252 linebuffer_init (&lb);
1253 linebuffer_init (&filename_lb);
1254 linebuffer_init (&filebuf);
1255 linebuffer_init (&token_name);
1257 if (!CTAGS)
1259 if (streq (tagfile, "-"))
1261 tagf = stdout;
1262 SET_BINARY (fileno (stdout));
1264 else
1265 tagf = fopen (tagfile, append_to_tagfile ? "ab" : "wb");
1266 if (tagf == NULL)
1267 pfatal (tagfile);
1271 * Loop through files finding functions.
1273 for (i = 0; i < current_arg; i++)
1275 static language *lang; /* non-NULL if language is forced */
1276 char *this_file;
1278 switch (argbuffer[i].arg_type)
1280 case at_language:
1281 lang = argbuffer[i].lang;
1282 break;
1283 case at_regexp:
1284 analyze_regex (argbuffer[i].what);
1285 break;
1286 case at_filename:
1287 this_file = argbuffer[i].what;
1288 /* Input file named "-" means read file names from stdin
1289 (one per line) and use them. */
1290 if (streq (this_file, "-"))
1292 if (parsing_stdin)
1293 fatal ("cannot parse standard input "
1294 "AND read file names from it");
1295 while (readline_internal (&filename_lb, stdin, "-") > 0)
1296 process_file_name (filename_lb.buffer, lang);
1298 else
1299 process_file_name (this_file, lang);
1300 break;
1301 case at_stdin:
1302 this_file = argbuffer[i].what;
1303 process_file (stdin, this_file, lang);
1304 break;
1305 default:
1306 error ("internal error: arg_type");
1310 free_regexps ();
1311 free (lb.buffer);
1312 free (filebuf.buffer);
1313 free (token_name.buffer);
1315 if (!CTAGS || cxref_style)
1317 /* Write the remaining tags to tagf (ETAGS) or stdout (CXREF). */
1318 put_entries (nodehead);
1319 free_tree (nodehead);
1320 nodehead = NULL;
1321 if (!CTAGS)
1323 fdesc *fdp;
1325 /* Output file entries that have no tags. */
1326 for (fdp = fdhead; fdp != NULL; fdp = fdp->next)
1327 if (!fdp->written)
1328 fprintf (tagf, "\f\n%s,0\n", fdp->taggedfname);
1330 while (nincluded_files-- > 0)
1331 fprintf (tagf, "\f\n%s,include\n", *included_files++);
1333 if (fclose (tagf) == EOF)
1334 pfatal (tagfile);
1337 exit (EXIT_SUCCESS);
1340 /* From here on, we are in (CTAGS && !cxref_style) */
1341 if (update)
1343 char *cmd =
1344 xmalloc (strlen (tagfile) + whatlen_max +
1345 sizeof "mv..OTAGS;grep -Fv '\t\t' OTAGS >;rm OTAGS");
1346 for (i = 0; i < current_arg; ++i)
1348 switch (argbuffer[i].arg_type)
1350 case at_filename:
1351 case at_stdin:
1352 break;
1353 default:
1354 continue; /* the for loop */
1356 char *z = stpcpy (cmd, "mv ");
1357 z = stpcpy (z, tagfile);
1358 z = stpcpy (z, " OTAGS;grep -Fv '\t");
1359 z = stpcpy (z, argbuffer[i].what);
1360 z = stpcpy (z, "\t' OTAGS >");
1361 z = stpcpy (z, tagfile);
1362 strcpy (z, ";rm OTAGS");
1363 if (system (cmd) != EXIT_SUCCESS)
1364 fatal ("failed to execute shell command");
1366 free (cmd);
1367 append_to_tagfile = true;
1370 tagf = fopen (tagfile, append_to_tagfile ? "ab" : "wb");
1371 if (tagf == NULL)
1372 pfatal (tagfile);
1373 put_entries (nodehead); /* write all the tags (CTAGS) */
1374 free_tree (nodehead);
1375 nodehead = NULL;
1376 if (fclose (tagf) == EOF)
1377 pfatal (tagfile);
1379 if (CTAGS)
1380 if (append_to_tagfile || update)
1382 char *cmd = xmalloc (2 * strlen (tagfile) + sizeof "sort -u -o..");
1383 /* Maybe these should be used:
1384 setenv ("LC_COLLATE", "C", 1);
1385 setenv ("LC_ALL", "C", 1); */
1386 char *z = stpcpy (cmd, "sort -u -o ");
1387 z = stpcpy (z, tagfile);
1388 *z++ = ' ';
1389 strcpy (z, tagfile);
1390 exit (system (cmd));
1392 return EXIT_SUCCESS;
1397 * Return a compressor given the file name. If EXTPTR is non-zero,
1398 * return a pointer into FILE where the compressor-specific
1399 * extension begins. If no compressor is found, NULL is returned
1400 * and EXTPTR is not significant.
1401 * Idea by Vladimir Alexiev <vladimir@cs.ualberta.ca> (1998)
1403 static compressor *
1404 get_compressor_from_suffix (char *file, char **extptr)
1406 compressor *compr;
1407 char *slash, *suffix;
1409 /* File has been processed by canonicalize_filename,
1410 so we don't need to consider backslashes on DOS_NT. */
1411 slash = strrchr (file, '/');
1412 suffix = strrchr (file, '.');
1413 if (suffix == NULL || suffix < slash)
1414 return NULL;
1415 if (extptr != NULL)
1416 *extptr = suffix;
1417 suffix += 1;
1418 /* Let those poor souls who live with DOS 8+3 file name limits get
1419 some solace by treating foo.cgz as if it were foo.c.gz, etc.
1420 Only the first do loop is run if not MSDOS */
1423 for (compr = compressors; compr->suffix != NULL; compr++)
1424 if (streq (compr->suffix, suffix))
1425 return compr;
1426 if (!MSDOS)
1427 break; /* do it only once: not really a loop */
1428 if (extptr != NULL)
1429 *extptr = ++suffix;
1430 } while (*suffix != '\0');
1431 return NULL;
1437 * Return a language given the name.
1439 static language *
1440 get_language_from_langname (const char *name)
1442 language *lang;
1444 if (name == NULL)
1445 error ("empty language name");
1446 else
1448 for (lang = lang_names; lang->name != NULL; lang++)
1449 if (streq (name, lang->name))
1450 return lang;
1451 error ("unknown language \"%s\"", name);
1454 return NULL;
1459 * Return a language given the interpreter name.
1461 static language *
1462 get_language_from_interpreter (char *interpreter)
1464 language *lang;
1465 const char **iname;
1467 if (interpreter == NULL)
1468 return NULL;
1469 for (lang = lang_names; lang->name != NULL; lang++)
1470 if (lang->interpreters != NULL)
1471 for (iname = lang->interpreters; *iname != NULL; iname++)
1472 if (streq (*iname, interpreter))
1473 return lang;
1475 return NULL;
1481 * Return a language given the file name.
1483 static language *
1484 get_language_from_filename (char *file, int case_sensitive)
1486 language *lang;
1487 const char **name, **ext, *suffix;
1488 char *slash;
1490 /* Try whole file name first. */
1491 slash = strrchr (file, '/');
1492 if (slash != NULL)
1493 file = slash + 1;
1494 #ifdef DOS_NT
1495 else if (file[0] && file[1] == ':')
1496 file += 2;
1497 #endif
1498 for (lang = lang_names; lang->name != NULL; lang++)
1499 if (lang->filenames != NULL)
1500 for (name = lang->filenames; *name != NULL; name++)
1501 if ((case_sensitive)
1502 ? streq (*name, file)
1503 : strcaseeq (*name, file))
1504 return lang;
1506 /* If not found, try suffix after last dot. */
1507 suffix = strrchr (file, '.');
1508 if (suffix == NULL)
1509 return NULL;
1510 suffix += 1;
1511 for (lang = lang_names; lang->name != NULL; lang++)
1512 if (lang->suffixes != NULL)
1513 for (ext = lang->suffixes; *ext != NULL; ext++)
1514 if ((case_sensitive)
1515 ? streq (*ext, suffix)
1516 : strcaseeq (*ext, suffix))
1517 return lang;
1518 return NULL;
1523 * This routine is called on each file argument.
1525 static void
1526 process_file_name (char *file, language *lang)
1528 FILE *inf;
1529 fdesc *fdp;
1530 compressor *compr;
1531 char *compressed_name, *uncompressed_name;
1532 char *ext, *real_name, *tmp_name;
1533 int retval;
1535 canonicalize_filename (file);
1536 if (streq (file, tagfile) && !streq (tagfile, "-"))
1538 error ("skipping inclusion of %s in self.", file);
1539 return;
1541 compr = get_compressor_from_suffix (file, &ext);
1542 if (compr)
1544 compressed_name = file;
1545 uncompressed_name = savenstr (file, ext - file);
1547 else
1549 compressed_name = NULL;
1550 uncompressed_name = file;
1553 /* If the canonicalized uncompressed name
1554 has already been dealt with, skip it silently. */
1555 for (fdp = fdhead; fdp != NULL; fdp = fdp->next)
1557 assert (fdp->infname != NULL);
1558 if (streq (uncompressed_name, fdp->infname))
1559 goto cleanup;
1562 inf = fopen (file, "r" FOPEN_BINARY);
1563 if (inf)
1564 real_name = file;
1565 else
1567 int file_errno = errno;
1568 if (compressed_name)
1570 /* Try with the given suffix. */
1571 inf = fopen (uncompressed_name, "r" FOPEN_BINARY);
1572 if (inf)
1573 real_name = uncompressed_name;
1575 else
1577 /* Try all possible suffixes. */
1578 for (compr = compressors; compr->suffix != NULL; compr++)
1580 compressed_name = concat (file, ".", compr->suffix);
1581 inf = fopen (compressed_name, "r" FOPEN_BINARY);
1582 if (inf)
1584 real_name = compressed_name;
1585 break;
1587 if (MSDOS)
1589 char *suf = compressed_name + strlen (file);
1590 size_t suflen = strlen (compr->suffix) + 1;
1591 for ( ; suf[1]; suf++, suflen--)
1593 memmove (suf, suf + 1, suflen);
1594 inf = fopen (compressed_name, "r" FOPEN_BINARY);
1595 if (inf)
1597 real_name = compressed_name;
1598 break;
1601 if (inf)
1602 break;
1604 free (compressed_name);
1605 compressed_name = NULL;
1608 if (! inf)
1610 errno = file_errno;
1611 perror (file);
1612 goto cleanup;
1616 if (real_name == compressed_name)
1618 fclose (inf);
1619 tmp_name = etags_mktmp ();
1620 if (!tmp_name)
1621 inf = NULL;
1622 else
1624 #if MSDOS || defined (DOS_NT)
1625 char *cmd1 = concat (compr->command, " \"", real_name);
1626 char *cmd = concat (cmd1, "\" > ", tmp_name);
1627 #else
1628 char *cmd1 = concat (compr->command, " '", real_name);
1629 char *cmd = concat (cmd1, "' > ", tmp_name);
1630 #endif
1631 free (cmd1);
1632 int tmp_errno;
1633 if (system (cmd) == -1)
1635 inf = NULL;
1636 tmp_errno = EINVAL;
1638 else
1640 inf = fopen (tmp_name, "r" FOPEN_BINARY);
1641 tmp_errno = errno;
1643 free (cmd);
1644 errno = tmp_errno;
1647 if (!inf)
1649 perror (real_name);
1650 goto cleanup;
1654 process_file (inf, uncompressed_name, lang);
1656 retval = fclose (inf);
1657 if (real_name == compressed_name)
1659 remove (tmp_name);
1660 free (tmp_name);
1662 if (retval < 0)
1663 pfatal (file);
1665 cleanup:
1666 if (compressed_name != file)
1667 free (compressed_name);
1668 if (uncompressed_name != file)
1669 free (uncompressed_name);
1670 last_node = NULL;
1671 curfdp = NULL;
1672 return;
1675 static void
1676 process_file (FILE *fh, char *fn, language *lang)
1678 static const fdesc emptyfdesc;
1679 fdesc *fdp;
1681 infilename = fn;
1682 /* Create a new input file description entry. */
1683 fdp = xnew (1, fdesc);
1684 *fdp = emptyfdesc;
1685 fdp->next = fdhead;
1686 fdp->infname = savestr (fn);
1687 fdp->lang = lang;
1688 fdp->infabsname = absolute_filename (fn, cwd);
1689 fdp->infabsdir = absolute_dirname (fn, cwd);
1690 if (filename_is_absolute (fn))
1692 /* An absolute file name. Canonicalize it. */
1693 fdp->taggedfname = absolute_filename (fn, NULL);
1695 else
1697 /* A file name relative to cwd. Make it relative
1698 to the directory of the tags file. */
1699 fdp->taggedfname = relative_filename (fn, tagfiledir);
1701 fdp->usecharno = true; /* use char position when making tags */
1702 fdp->prop = NULL;
1703 fdp->written = false; /* not written on tags file yet */
1705 fdhead = fdp;
1706 curfdp = fdhead; /* the current file description */
1708 find_entries (fh);
1710 /* If not Ctags, and if this is not metasource and if it contained no #line
1711 directives, we can write the tags and free all nodes pointing to
1712 curfdp. */
1713 if (!CTAGS
1714 && curfdp->usecharno /* no #line directives in this file */
1715 && !curfdp->lang->metasource)
1717 node *np, *prev;
1719 /* Look for the head of the sublist relative to this file. See add_node
1720 for the structure of the node tree. */
1721 prev = NULL;
1722 for (np = nodehead; np != NULL; prev = np, np = np->left)
1723 if (np->fdp == curfdp)
1724 break;
1726 /* If we generated tags for this file, write and delete them. */
1727 if (np != NULL)
1729 /* This is the head of the last sublist, if any. The following
1730 instructions depend on this being true. */
1731 assert (np->left == NULL);
1733 assert (fdhead == curfdp);
1734 assert (last_node->fdp == curfdp);
1735 put_entries (np); /* write tags for file curfdp->taggedfname */
1736 free_tree (np); /* remove the written nodes */
1737 if (prev == NULL)
1738 nodehead = NULL; /* no nodes left */
1739 else
1740 prev->left = NULL; /* delete the pointer to the sublist */
1745 static void
1746 reset_input (FILE *inf)
1748 if (fseek (inf, 0, SEEK_SET) != 0)
1749 perror (infilename);
1753 * This routine opens the specified file and calls the function
1754 * which finds the function and type definitions.
1756 static void
1757 find_entries (FILE *inf)
1759 char *cp;
1760 language *lang = curfdp->lang;
1761 Lang_function *parser = NULL;
1763 /* If user specified a language, use it. */
1764 if (lang != NULL && lang->function != NULL)
1766 parser = lang->function;
1769 /* Else try to guess the language given the file name. */
1770 if (parser == NULL)
1772 lang = get_language_from_filename (curfdp->infname, true);
1773 if (lang != NULL && lang->function != NULL)
1775 curfdp->lang = lang;
1776 parser = lang->function;
1780 /* Else look for sharp-bang as the first two characters. */
1781 if (parser == NULL
1782 && readline_internal (&lb, inf, infilename) > 0
1783 && lb.len >= 2
1784 && lb.buffer[0] == '#'
1785 && lb.buffer[1] == '!')
1787 char *lp;
1789 /* Set lp to point at the first char after the last slash in the
1790 line or, if no slashes, at the first nonblank. Then set cp to
1791 the first successive blank and terminate the string. */
1792 lp = strrchr (lb.buffer+2, '/');
1793 if (lp != NULL)
1794 lp += 1;
1795 else
1796 lp = skip_spaces (lb.buffer + 2);
1797 cp = skip_non_spaces (lp);
1798 *cp = '\0';
1800 if (strlen (lp) > 0)
1802 lang = get_language_from_interpreter (lp);
1803 if (lang != NULL && lang->function != NULL)
1805 curfdp->lang = lang;
1806 parser = lang->function;
1811 reset_input (inf);
1813 /* Else try to guess the language given the case insensitive file name. */
1814 if (parser == NULL)
1816 lang = get_language_from_filename (curfdp->infname, false);
1817 if (lang != NULL && lang->function != NULL)
1819 curfdp->lang = lang;
1820 parser = lang->function;
1824 /* Else try Fortran or C. */
1825 if (parser == NULL)
1827 node *old_last_node = last_node;
1829 curfdp->lang = get_language_from_langname ("fortran");
1830 find_entries (inf);
1832 if (old_last_node == last_node)
1833 /* No Fortran entries found. Try C. */
1835 reset_input (inf);
1836 curfdp->lang = get_language_from_langname (cplusplus ? "c++" : "c");
1837 find_entries (inf);
1839 return;
1842 if (!no_line_directive
1843 && curfdp->lang != NULL && curfdp->lang->metasource)
1844 /* It may be that this is a bingo.y file, and we already parsed a bingo.c
1845 file, or anyway we parsed a file that is automatically generated from
1846 this one. If this is the case, the bingo.c file contained #line
1847 directives that generated tags pointing to this file. Let's delete
1848 them all before parsing this file, which is the real source. */
1850 fdesc **fdpp = &fdhead;
1851 while (*fdpp != NULL)
1852 if (*fdpp != curfdp
1853 && streq ((*fdpp)->taggedfname, curfdp->taggedfname))
1854 /* We found one of those! We must delete both the file description
1855 and all tags referring to it. */
1857 fdesc *badfdp = *fdpp;
1859 /* Delete the tags referring to badfdp->taggedfname
1860 that were obtained from badfdp->infname. */
1861 invalidate_nodes (badfdp, &nodehead);
1863 *fdpp = badfdp->next; /* remove the bad description from the list */
1864 free_fdesc (badfdp);
1866 else
1867 fdpp = &(*fdpp)->next; /* advance the list pointer */
1870 assert (parser != NULL);
1872 /* Generic initializations before reading from file. */
1873 linebuffer_setlen (&filebuf, 0); /* reset the file buffer */
1875 /* Generic initializations before parsing file with readline. */
1876 lineno = 0; /* reset global line number */
1877 charno = 0; /* reset global char number */
1878 linecharno = 0; /* reset global char number of line start */
1880 parser (inf);
1882 regex_tag_multiline ();
1887 * Check whether an implicitly named tag should be created,
1888 * then call `pfnote'.
1889 * NAME is a string that is internally copied by this function.
1891 * TAGS format specification
1892 * Idea by Sam Kendall <kendall@mv.mv.com> (1997)
1893 * The following is explained in some more detail in etc/ETAGS.EBNF.
1895 * make_tag creates tags with "implicit tag names" (unnamed tags)
1896 * if the following are all true, assuming NONAM=" \f\t\n\r()=,;":
1897 * 1. NAME does not contain any of the characters in NONAM;
1898 * 2. LINESTART contains name as either a rightmost, or rightmost but
1899 * one character, substring;
1900 * 3. the character, if any, immediately before NAME in LINESTART must
1901 * be a character in NONAM;
1902 * 4. the character, if any, immediately after NAME in LINESTART must
1903 * also be a character in NONAM.
1905 * The implementation uses the notinname() macro, which recognizes the
1906 * characters stored in the string `nonam'.
1907 * etags.el needs to use the same characters that are in NONAM.
1909 static void
1910 make_tag (const char *name, /* tag name, or NULL if unnamed */
1911 int namelen, /* tag length */
1912 bool is_func, /* tag is a function */
1913 char *linestart, /* start of the line where tag is */
1914 int linelen, /* length of the line where tag is */
1915 int lno, /* line number */
1916 long int cno) /* character number */
1918 bool named = (name != NULL && namelen > 0);
1919 char *nname = NULL;
1921 if (!CTAGS && named) /* maybe set named to false */
1922 /* Let's try to make an implicit tag name, that is, create an unnamed tag
1923 such that etags.el can guess a name from it. */
1925 int i;
1926 register const char *cp = name;
1928 for (i = 0; i < namelen; i++)
1929 if (notinname (*cp++))
1930 break;
1931 if (i == namelen) /* rule #1 */
1933 cp = linestart + linelen - namelen;
1934 if (notinname (linestart[linelen-1]))
1935 cp -= 1; /* rule #4 */
1936 if (cp >= linestart /* rule #2 */
1937 && (cp == linestart
1938 || notinname (cp[-1])) /* rule #3 */
1939 && strneq (name, cp, namelen)) /* rule #2 */
1940 named = false; /* use implicit tag name */
1944 if (named)
1945 nname = savenstr (name, namelen);
1947 pfnote (nname, is_func, linestart, linelen, lno, cno);
1950 /* Record a tag. */
1951 static void
1952 pfnote (char *name, bool is_func, char *linestart, int linelen, int lno,
1953 long int cno)
1954 /* tag name, or NULL if unnamed */
1955 /* tag is a function */
1956 /* start of the line where tag is */
1957 /* length of the line where tag is */
1958 /* line number */
1959 /* character number */
1961 register node *np;
1963 assert (name == NULL || name[0] != '\0');
1964 if (CTAGS && name == NULL)
1965 return;
1967 np = xnew (1, node);
1969 /* If ctags mode, change name "main" to M<thisfilename>. */
1970 if (CTAGS && !cxref_style && streq (name, "main"))
1972 char *fp = strrchr (curfdp->taggedfname, '/');
1973 np->name = concat ("M", fp == NULL ? curfdp->taggedfname : fp + 1, "");
1974 fp = strrchr (np->name, '.');
1975 if (fp != NULL && fp[1] != '\0' && fp[2] == '\0')
1976 fp[0] = '\0';
1978 else
1979 np->name = name;
1980 np->valid = true;
1981 np->been_warned = false;
1982 np->fdp = curfdp;
1983 np->is_func = is_func;
1984 np->lno = lno;
1985 if (np->fdp->usecharno)
1986 /* Our char numbers are 0-base, because of C language tradition?
1987 ctags compatibility? old versions compatibility? I don't know.
1988 Anyway, since emacs's are 1-base we expect etags.el to take care
1989 of the difference. If we wanted to have 1-based numbers, we would
1990 uncomment the +1 below. */
1991 np->cno = cno /* + 1 */ ;
1992 else
1993 np->cno = invalidcharno;
1994 np->left = np->right = NULL;
1995 if (CTAGS && !cxref_style)
1997 if (strlen (linestart) < 50)
1998 np->regex = concat (linestart, "$", "");
1999 else
2000 np->regex = savenstr (linestart, 50);
2002 else
2003 np->regex = savenstr (linestart, linelen);
2005 add_node (np, &nodehead);
2009 * Utility functions and data to avoid recursion.
2012 typedef struct stack_entry {
2013 node *np;
2014 struct stack_entry *next;
2015 } stkentry;
2017 static void
2018 push_node (node *np, stkentry **stack_top)
2020 if (np)
2022 stkentry *new = xnew (1, stkentry);
2024 new->np = np;
2025 new->next = *stack_top;
2026 *stack_top = new;
2030 static node *
2031 pop_node (stkentry **stack_top)
2033 node *ret = NULL;
2035 if (*stack_top)
2037 stkentry *old_start = *stack_top;
2039 ret = (*stack_top)->np;
2040 *stack_top = (*stack_top)->next;
2041 free (old_start);
2043 return ret;
2047 * free_tree ()
2048 * emulate recursion on left children, iterate on right children.
2050 static void
2051 free_tree (register node *np)
2053 stkentry *stack = NULL;
2055 while (np)
2057 /* Descent on left children. */
2058 while (np->left)
2060 push_node (np, &stack);
2061 np = np->left;
2063 /* Free node without left children. */
2064 node *node_right = np->right;
2065 free (np->name);
2066 free (np->regex);
2067 free (np);
2068 if (!node_right)
2070 /* Backtrack to find a node with right children, while freeing nodes
2071 that don't have right children. */
2072 while (node_right == NULL && (np = pop_node (&stack)) != NULL)
2074 node_right = np->right;
2075 free (np->name);
2076 free (np->regex);
2077 free (np);
2080 /* Free right children. */
2081 np = node_right;
2086 * free_fdesc ()
2087 * delete a file description
2089 static void
2090 free_fdesc (register fdesc *fdp)
2092 free (fdp->infname);
2093 free (fdp->infabsname);
2094 free (fdp->infabsdir);
2095 free (fdp->taggedfname);
2096 free (fdp->prop);
2097 free (fdp);
2101 * add_node ()
2102 * Adds a node to the tree of nodes. In etags mode, sort by file
2103 * name. In ctags mode, sort by tag name. Make no attempt at
2104 * balancing.
2106 * add_node is the only function allowed to add nodes, so it can
2107 * maintain state.
2109 static void
2110 add_node (node *np, node **cur_node_p)
2112 node *cur_node = *cur_node_p;
2114 /* Make the first node. */
2115 if (cur_node == NULL)
2117 *cur_node_p = np;
2118 last_node = np;
2119 return;
2122 if (!CTAGS)
2123 /* Etags Mode */
2125 /* For each file name, tags are in a linked sublist on the right
2126 pointer. The first tags of different files are a linked list
2127 on the left pointer. last_node points to the end of the last
2128 used sublist. */
2129 if (last_node != NULL && last_node->fdp == np->fdp)
2131 /* Let's use the same sublist as the last added node. */
2132 assert (last_node->right == NULL);
2133 last_node->right = np;
2134 last_node = np;
2136 else
2138 while (cur_node->fdp != np->fdp)
2140 if (cur_node->left == NULL)
2141 break;
2142 /* The head of this sublist is not good for us. Let's try the
2143 next one. */
2144 cur_node = cur_node->left;
2146 if (cur_node->left)
2148 /* Scanning the list we found the head of a sublist which is
2149 good for us. Let's scan this sublist. */
2150 if (cur_node->right)
2152 cur_node = cur_node->right;
2153 while (cur_node->right)
2154 cur_node = cur_node->right;
2156 /* Make a new node in this sublist. */
2157 cur_node->right = np;
2159 else
2161 /* Make a new sublist. */
2162 cur_node->left = np;
2164 last_node = np;
2166 } /* if ETAGS mode */
2167 else
2169 /* Ctags Mode */
2170 node **next_node = &cur_node;
2172 while ((cur_node = *next_node) != NULL)
2174 int dif = strcmp (np->name, cur_node->name);
2176 * If this tag name matches an existing one, then
2177 * do not add the node, but maybe print a warning.
2179 if (!dif && no_duplicates)
2181 if (np->fdp == cur_node->fdp)
2183 if (!no_warnings)
2185 fprintf (stderr,
2186 "Duplicate entry in file %s, line %d: %s\n",
2187 np->fdp->infname, lineno, np->name);
2188 fprintf (stderr, "Second entry ignored\n");
2191 else if (!cur_node->been_warned && !no_warnings)
2193 fprintf
2194 (stderr,
2195 "Duplicate entry in files %s and %s: %s (Warning only)\n",
2196 np->fdp->infname, cur_node->fdp->infname, np->name);
2197 cur_node->been_warned = true;
2199 return;
2201 else
2202 next_node = dif < 0 ? &cur_node->left : &cur_node->right;
2204 *next_node = np;
2205 last_node = np;
2206 } /* if CTAGS mode */
2210 * invalidate_nodes ()
2211 * Scan the node tree and invalidate all nodes pointing to the
2212 * given file description (CTAGS case) or free them (ETAGS case).
2214 static void
2215 invalidate_nodes (fdesc *badfdp, node **npp)
2217 node *np = *npp;
2218 stkentry *stack = NULL;
2220 if (CTAGS)
2222 while (np)
2224 /* Push all the left children on the stack. */
2225 while (np->left != NULL)
2227 push_node (np, &stack);
2228 np = np->left;
2230 /* Invalidate this node. */
2231 if (np->fdp == badfdp)
2232 np->valid = false;
2233 if (!np->right)
2235 /* Pop nodes from stack, invalidating them, until we find one
2236 with a right child. */
2237 while ((np = pop_node (&stack)) != NULL)
2239 if (np->fdp == badfdp)
2240 np->valid = false;
2241 if (np->right != NULL)
2242 break;
2245 /* Process the right child, if any. */
2246 if (np)
2247 np = np->right;
2250 else
2252 node super_root, *np_parent = NULL;
2254 super_root.left = np;
2255 super_root.fdp = (fdesc *) -1;
2256 np = &super_root;
2258 while (np)
2260 /* Descent on left children until node with BADFP. */
2261 while (np && np->fdp != badfdp)
2263 assert (np->fdp != NULL);
2264 np_parent = np;
2265 np = np->left;
2267 if (np)
2269 np_parent->left = np->left; /* detach subtree from the tree */
2270 np->left = NULL; /* isolate it */
2271 free_tree (np); /* free it */
2273 /* Continue with rest of tree. */
2274 np = np_parent ? np_parent->left : NULL;
2277 *npp = super_root.left;
2282 static int total_size_of_entries (node *);
2283 static int number_len (long) ATTRIBUTE_CONST;
2285 /* Length of a non-negative number's decimal representation. */
2286 static int
2287 number_len (long int num)
2289 int len = 1;
2290 while ((num /= 10) > 0)
2291 len += 1;
2292 return len;
2296 * Return total number of characters that put_entries will output for
2297 * the nodes in the linked list at the right of the specified node.
2298 * This count is irrelevant with etags.el since emacs 19.34 at least,
2299 * but is still supplied for backward compatibility.
2301 static int
2302 total_size_of_entries (register node *np)
2304 register int total = 0;
2306 for (; np != NULL; np = np->right)
2307 if (np->valid)
2309 total += strlen (np->regex) + 1; /* pat\177 */
2310 if (np->name != NULL)
2311 total += strlen (np->name) + 1; /* name\001 */
2312 total += number_len ((long) np->lno) + 1; /* lno, */
2313 if (np->cno != invalidcharno) /* cno */
2314 total += number_len (np->cno);
2315 total += 1; /* newline */
2318 return total;
2321 static void
2322 put_entry (node *np)
2324 register char *sp;
2325 static fdesc *fdp = NULL;
2327 /* Output this entry */
2328 if (np->valid)
2330 if (!CTAGS)
2332 /* Etags mode */
2333 if (fdp != np->fdp)
2335 fdp = np->fdp;
2336 fprintf (tagf, "\f\n%s,%d\n",
2337 fdp->taggedfname, total_size_of_entries (np));
2338 fdp->written = true;
2340 fputs (np->regex, tagf);
2341 fputc ('\177', tagf);
2342 if (np->name != NULL)
2344 fputs (np->name, tagf);
2345 fputc ('\001', tagf);
2347 fprintf (tagf, "%d,", np->lno);
2348 if (np->cno != invalidcharno)
2349 fprintf (tagf, "%ld", np->cno);
2350 fputs ("\n", tagf);
2352 else
2354 /* Ctags mode */
2355 if (np->name == NULL)
2356 error ("internal error: NULL name in ctags mode.");
2358 if (cxref_style)
2360 if (vgrind_style)
2361 fprintf (stdout, "%s %s %d\n",
2362 np->name, np->fdp->taggedfname, (np->lno + 63) / 64);
2363 else
2364 fprintf (stdout, "%-16s %3d %-16s %s\n",
2365 np->name, np->lno, np->fdp->taggedfname, np->regex);
2367 else
2369 fprintf (tagf, "%s\t%s\t", np->name, np->fdp->taggedfname);
2371 if (np->is_func)
2372 { /* function or #define macro with args */
2373 putc (searchar, tagf);
2374 putc ('^', tagf);
2376 for (sp = np->regex; *sp; sp++)
2378 if (*sp == '\\' || *sp == searchar)
2379 putc ('\\', tagf);
2380 putc (*sp, tagf);
2382 putc (searchar, tagf);
2384 else
2385 { /* anything else; text pattern inadequate */
2386 fprintf (tagf, "%d", np->lno);
2388 putc ('\n', tagf);
2391 } /* if this node contains a valid tag */
2394 static void
2395 put_entries (node *np)
2397 stkentry *stack = NULL;
2399 if (np == NULL)
2400 return;
2402 if (CTAGS)
2404 while (np)
2406 /* Stack subentries that precede this one. */
2407 while (np->left)
2409 push_node (np, &stack);
2410 np = np->left;
2412 /* Output this subentry. */
2413 put_entry (np);
2414 /* Stack subentries that follow this one. */
2415 while (!np->right)
2417 /* Output subentries that precede the next one. */
2418 np = pop_node (&stack);
2419 if (!np)
2420 break;
2421 put_entry (np);
2423 if (np)
2424 np = np->right;
2427 else
2429 push_node (np, &stack);
2430 while ((np = pop_node (&stack)) != NULL)
2432 /* Output this subentry. */
2433 put_entry (np);
2434 while (np->right)
2436 /* Output subentries that follow this one. */
2437 put_entry (np->right);
2438 /* Stack subentries from the following files. */
2439 push_node (np->left, &stack);
2440 np = np->right;
2442 push_node (np->left, &stack);
2448 /* C extensions. */
2449 #define C_EXT 0x00fff /* C extensions */
2450 #define C_PLAIN 0x00000 /* C */
2451 #define C_PLPL 0x00001 /* C++ */
2452 #define C_STAR 0x00003 /* C* */
2453 #define C_JAVA 0x00005 /* JAVA */
2454 #define C_AUTO 0x01000 /* C, but switch to C++ if `class' is met */
2455 #define YACC 0x10000 /* yacc file */
2458 * The C symbol tables.
2460 enum sym_type
2462 st_none,
2463 st_C_objprot, st_C_objimpl, st_C_objend,
2464 st_C_gnumacro,
2465 st_C_ignore, st_C_attribute,
2466 st_C_javastruct,
2467 st_C_operator,
2468 st_C_class, st_C_template,
2469 st_C_struct, st_C_extern, st_C_enum, st_C_define, st_C_typedef
2472 /* Feed stuff between (but not including) %[ and %] lines to:
2473 gperf -m 5
2475 %compare-strncmp
2476 %enum
2477 %struct-type
2478 struct C_stab_entry { char *name; int c_ext; enum sym_type type; }
2480 if, 0, st_C_ignore
2481 for, 0, st_C_ignore
2482 while, 0, st_C_ignore
2483 switch, 0, st_C_ignore
2484 return, 0, st_C_ignore
2485 __attribute__, 0, st_C_attribute
2486 GTY, 0, st_C_attribute
2487 @interface, 0, st_C_objprot
2488 @protocol, 0, st_C_objprot
2489 @implementation,0, st_C_objimpl
2490 @end, 0, st_C_objend
2491 import, (C_JAVA & ~C_PLPL), st_C_ignore
2492 package, (C_JAVA & ~C_PLPL), st_C_ignore
2493 friend, C_PLPL, st_C_ignore
2494 extends, (C_JAVA & ~C_PLPL), st_C_javastruct
2495 implements, (C_JAVA & ~C_PLPL), st_C_javastruct
2496 interface, (C_JAVA & ~C_PLPL), st_C_struct
2497 class, 0, st_C_class
2498 namespace, C_PLPL, st_C_struct
2499 domain, C_STAR, st_C_struct
2500 union, 0, st_C_struct
2501 struct, 0, st_C_struct
2502 extern, 0, st_C_extern
2503 enum, 0, st_C_enum
2504 typedef, 0, st_C_typedef
2505 define, 0, st_C_define
2506 undef, 0, st_C_define
2507 operator, C_PLPL, st_C_operator
2508 template, 0, st_C_template
2509 # DEFUN used in emacs, the next three used in glibc (SYSCALL only for mach).
2510 DEFUN, 0, st_C_gnumacro
2511 SYSCALL, 0, st_C_gnumacro
2512 ENTRY, 0, st_C_gnumacro
2513 PSEUDO, 0, st_C_gnumacro
2514 # These are defined inside C functions, so currently they are not met.
2515 # EXFUN used in glibc, DEFVAR_* in emacs.
2516 #EXFUN, 0, st_C_gnumacro
2517 #DEFVAR_, 0, st_C_gnumacro
2519 and replace lines between %< and %> with its output, then:
2520 - remove the #if characterset check
2521 - make in_word_set static and not inline. */
2522 /*%<*/
2523 /* C code produced by gperf version 3.0.1 */
2524 /* Command-line: gperf -m 5 */
2525 /* Computed positions: -k'2-3' */
2527 struct C_stab_entry { const char *name; int c_ext; enum sym_type type; };
2528 /* maximum key range = 33, duplicates = 0 */
2530 static int
2531 hash (const char *str, int len)
2533 static char const asso_values[] =
2535 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2536 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2537 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2538 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2539 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2540 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2541 35, 35, 35, 35, 35, 35, 35, 35, 35, 3,
2542 26, 35, 35, 35, 35, 35, 35, 35, 27, 35,
2543 35, 35, 35, 24, 0, 35, 35, 35, 35, 0,
2544 35, 35, 35, 35, 35, 1, 35, 16, 35, 6,
2545 23, 0, 0, 35, 22, 0, 35, 35, 5, 0,
2546 0, 15, 1, 35, 6, 35, 8, 19, 35, 16,
2547 4, 5, 35, 35, 35, 35, 35, 35, 35, 35,
2548 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2549 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2550 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2551 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2552 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2553 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2554 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2555 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2556 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2557 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2558 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2559 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2560 35, 35, 35, 35, 35, 35
2562 int hval = len;
2564 switch (hval)
2566 default:
2567 hval += asso_values[(unsigned char) str[2]];
2568 /*FALLTHROUGH*/
2569 case 2:
2570 hval += asso_values[(unsigned char) str[1]];
2571 break;
2573 return hval;
2576 static struct C_stab_entry *
2577 in_word_set (register const char *str, register unsigned int len)
2579 enum
2581 TOTAL_KEYWORDS = 33,
2582 MIN_WORD_LENGTH = 2,
2583 MAX_WORD_LENGTH = 15,
2584 MIN_HASH_VALUE = 2,
2585 MAX_HASH_VALUE = 34
2588 static struct C_stab_entry wordlist[] =
2590 {""}, {""},
2591 {"if", 0, st_C_ignore},
2592 {"GTY", 0, st_C_attribute},
2593 {"@end", 0, st_C_objend},
2594 {"union", 0, st_C_struct},
2595 {"define", 0, st_C_define},
2596 {"import", (C_JAVA & ~C_PLPL), st_C_ignore},
2597 {"template", 0, st_C_template},
2598 {"operator", C_PLPL, st_C_operator},
2599 {"@interface", 0, st_C_objprot},
2600 {"implements", (C_JAVA & ~C_PLPL), st_C_javastruct},
2601 {"friend", C_PLPL, st_C_ignore},
2602 {"typedef", 0, st_C_typedef},
2603 {"return", 0, st_C_ignore},
2604 {"@implementation",0, st_C_objimpl},
2605 {"@protocol", 0, st_C_objprot},
2606 {"interface", (C_JAVA & ~C_PLPL), st_C_struct},
2607 {"extern", 0, st_C_extern},
2608 {"extends", (C_JAVA & ~C_PLPL), st_C_javastruct},
2609 {"struct", 0, st_C_struct},
2610 {"domain", C_STAR, st_C_struct},
2611 {"switch", 0, st_C_ignore},
2612 {"enum", 0, st_C_enum},
2613 {"for", 0, st_C_ignore},
2614 {"namespace", C_PLPL, st_C_struct},
2615 {"class", 0, st_C_class},
2616 {"while", 0, st_C_ignore},
2617 {"undef", 0, st_C_define},
2618 {"package", (C_JAVA & ~C_PLPL), st_C_ignore},
2619 {"__attribute__", 0, st_C_attribute},
2620 {"SYSCALL", 0, st_C_gnumacro},
2621 {"ENTRY", 0, st_C_gnumacro},
2622 {"PSEUDO", 0, st_C_gnumacro},
2623 {"DEFUN", 0, st_C_gnumacro}
2626 if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH)
2628 int key = hash (str, len);
2630 if (key <= MAX_HASH_VALUE && key >= 0)
2632 const char *s = wordlist[key].name;
2634 if (*str == *s && !strncmp (str + 1, s + 1, len - 1) && s[len] == '\0')
2635 return &wordlist[key];
2638 return 0;
2640 /*%>*/
2642 static enum sym_type
2643 C_symtype (char *str, int len, int c_ext)
2645 register struct C_stab_entry *se = in_word_set (str, len);
2647 if (se == NULL || (se->c_ext && !(c_ext & se->c_ext)))
2648 return st_none;
2649 return se->type;
2654 * Ignoring __attribute__ ((list))
2656 static bool inattribute; /* looking at an __attribute__ construct */
2659 * C functions and variables are recognized using a simple
2660 * finite automaton. fvdef is its state variable.
2662 static enum
2664 fvnone, /* nothing seen */
2665 fdefunkey, /* Emacs DEFUN keyword seen */
2666 fdefunname, /* Emacs DEFUN name seen */
2667 foperator, /* func: operator keyword seen (cplpl) */
2668 fvnameseen, /* function or variable name seen */
2669 fstartlist, /* func: just after open parenthesis */
2670 finlist, /* func: in parameter list */
2671 flistseen, /* func: after parameter list */
2672 fignore, /* func: before open brace */
2673 vignore /* var-like: ignore until ';' */
2674 } fvdef;
2676 static bool fvextern; /* func or var: extern keyword seen; */
2679 * typedefs are recognized using a simple finite automaton.
2680 * typdef is its state variable.
2682 static enum
2684 tnone, /* nothing seen */
2685 tkeyseen, /* typedef keyword seen */
2686 ttypeseen, /* defined type seen */
2687 tinbody, /* inside typedef body */
2688 tend, /* just before typedef tag */
2689 tignore /* junk after typedef tag */
2690 } typdef;
2693 * struct-like structures (enum, struct and union) are recognized
2694 * using another simple finite automaton. `structdef' is its state
2695 * variable.
2697 static enum
2699 snone, /* nothing seen yet,
2700 or in struct body if bracelev > 0 */
2701 skeyseen, /* struct-like keyword seen */
2702 stagseen, /* struct-like tag seen */
2703 scolonseen /* colon seen after struct-like tag */
2704 } structdef;
2707 * When objdef is different from onone, objtag is the name of the class.
2709 static const char *objtag = "<uninited>";
2712 * Yet another little state machine to deal with preprocessor lines.
2714 static enum
2716 dnone, /* nothing seen */
2717 dsharpseen, /* '#' seen as first char on line */
2718 ddefineseen, /* '#' and 'define' seen */
2719 dignorerest /* ignore rest of line */
2720 } definedef;
2723 * State machine for Objective C protocols and implementations.
2724 * Idea by Tom R.Hageman <tom@basil.icce.rug.nl> (1995)
2726 static enum
2728 onone, /* nothing seen */
2729 oprotocol, /* @interface or @protocol seen */
2730 oimplementation, /* @implementations seen */
2731 otagseen, /* class name seen */
2732 oparenseen, /* parenthesis before category seen */
2733 ocatseen, /* category name seen */
2734 oinbody, /* in @implementation body */
2735 omethodsign, /* in @implementation body, after +/- */
2736 omethodtag, /* after method name */
2737 omethodcolon, /* after method colon */
2738 omethodparm, /* after method parameter */
2739 oignore /* wait for @end */
2740 } objdef;
2744 * Use this structure to keep info about the token read, and how it
2745 * should be tagged. Used by the make_C_tag function to build a tag.
2747 static struct tok
2749 char *line; /* string containing the token */
2750 int offset; /* where the token starts in LINE */
2751 int length; /* token length */
2753 The previous members can be used to pass strings around for generic
2754 purposes. The following ones specifically refer to creating tags. In this
2755 case the token contained here is the pattern that will be used to create a
2756 tag.
2758 bool valid; /* do not create a tag; the token should be
2759 invalidated whenever a state machine is
2760 reset prematurely */
2761 bool named; /* create a named tag */
2762 int lineno; /* source line number of tag */
2763 long linepos; /* source char number of tag */
2764 } token; /* latest token read */
2767 * Variables and functions for dealing with nested structures.
2768 * Idea by Mykola Dzyuba <mdzyuba@yahoo.com> (2001)
2770 static void pushclass_above (int, char *, int);
2771 static void popclass_above (int);
2772 static void write_classname (linebuffer *, const char *qualifier);
2774 static struct {
2775 char **cname; /* nested class names */
2776 int *bracelev; /* nested class brace level */
2777 int nl; /* class nesting level (elements used) */
2778 int size; /* length of the array */
2779 } cstack; /* stack for nested declaration tags */
2780 /* Current struct nesting depth (namespace, class, struct, union, enum). */
2781 #define nestlev (cstack.nl)
2782 /* After struct keyword or in struct body, not inside a nested function. */
2783 #define instruct (structdef == snone && nestlev > 0 \
2784 && bracelev == cstack.bracelev[nestlev-1] + 1)
2786 static void
2787 pushclass_above (int bracelev, char *str, int len)
2789 int nl;
2791 popclass_above (bracelev);
2792 nl = cstack.nl;
2793 if (nl >= cstack.size)
2795 int size = cstack.size *= 2;
2796 xrnew (cstack.cname, size, char *);
2797 xrnew (cstack.bracelev, size, int);
2799 assert (nl == 0 || cstack.bracelev[nl-1] < bracelev);
2800 cstack.cname[nl] = (str == NULL) ? NULL : savenstr (str, len);
2801 cstack.bracelev[nl] = bracelev;
2802 cstack.nl = nl + 1;
2805 static void
2806 popclass_above (int bracelev)
2808 int nl;
2810 for (nl = cstack.nl - 1;
2811 nl >= 0 && cstack.bracelev[nl] >= bracelev;
2812 nl--)
2814 free (cstack.cname[nl]);
2815 cstack.nl = nl;
2819 static void
2820 write_classname (linebuffer *cn, const char *qualifier)
2822 int i, len;
2823 int qlen = strlen (qualifier);
2825 if (cstack.nl == 0 || cstack.cname[0] == NULL)
2827 len = 0;
2828 cn->len = 0;
2829 cn->buffer[0] = '\0';
2831 else
2833 len = strlen (cstack.cname[0]);
2834 linebuffer_setlen (cn, len);
2835 strcpy (cn->buffer, cstack.cname[0]);
2837 for (i = 1; i < cstack.nl; i++)
2839 char *s = cstack.cname[i];
2840 if (s == NULL)
2841 continue;
2842 linebuffer_setlen (cn, len + qlen + strlen (s));
2843 len += sprintf (cn->buffer + len, "%s%s", qualifier, s);
2848 static bool consider_token (char *, int, int, int *, int, int, bool *);
2849 static void make_C_tag (bool);
2852 * consider_token ()
2853 * checks to see if the current token is at the start of a
2854 * function or variable, or corresponds to a typedef, or
2855 * is a struct/union/enum tag, or #define, or an enum constant.
2857 * *IS_FUNC_OR_VAR gets true if the token is a function or #define macro
2858 * with args. C_EXTP points to which language we are looking at.
2860 * Globals
2861 * fvdef IN OUT
2862 * structdef IN OUT
2863 * definedef IN OUT
2864 * typdef IN OUT
2865 * objdef IN OUT
2868 static bool
2869 consider_token (char *str, int len, int c, int *c_extp,
2870 int bracelev, int parlev, bool *is_func_or_var)
2871 /* IN: token pointer */
2872 /* IN: token length */
2873 /* IN: first char after the token */
2874 /* IN, OUT: C extensions mask */
2875 /* IN: brace level */
2876 /* IN: parenthesis level */
2877 /* OUT: function or variable found */
2879 /* When structdef is stagseen, scolonseen, or snone with bracelev > 0,
2880 structtype is the type of the preceding struct-like keyword, and
2881 structbracelev is the brace level where it has been seen. */
2882 static enum sym_type structtype;
2883 static int structbracelev;
2884 static enum sym_type toktype;
2887 toktype = C_symtype (str, len, *c_extp);
2890 * Skip __attribute__
2892 if (toktype == st_C_attribute)
2894 inattribute = true;
2895 return false;
2899 * Advance the definedef state machine.
2901 switch (definedef)
2903 case dnone:
2904 /* We're not on a preprocessor line. */
2905 if (toktype == st_C_gnumacro)
2907 fvdef = fdefunkey;
2908 return false;
2910 break;
2911 case dsharpseen:
2912 if (toktype == st_C_define)
2914 definedef = ddefineseen;
2916 else
2918 definedef = dignorerest;
2920 return false;
2921 case ddefineseen:
2923 * Make a tag for any macro, unless it is a constant
2924 * and constantypedefs is false.
2926 definedef = dignorerest;
2927 *is_func_or_var = (c == '(');
2928 if (!*is_func_or_var && !constantypedefs)
2929 return false;
2930 else
2931 return true;
2932 case dignorerest:
2933 return false;
2934 default:
2935 error ("internal error: definedef value.");
2939 * Now typedefs
2941 switch (typdef)
2943 case tnone:
2944 if (toktype == st_C_typedef)
2946 if (typedefs)
2947 typdef = tkeyseen;
2948 fvextern = false;
2949 fvdef = fvnone;
2950 return false;
2952 break;
2953 case tkeyseen:
2954 switch (toktype)
2956 case st_none:
2957 case st_C_class:
2958 case st_C_struct:
2959 case st_C_enum:
2960 typdef = ttypeseen;
2961 break;
2962 default:
2963 break;
2965 break;
2966 case ttypeseen:
2967 if (structdef == snone && fvdef == fvnone)
2969 fvdef = fvnameseen;
2970 return true;
2972 break;
2973 case tend:
2974 switch (toktype)
2976 case st_C_class:
2977 case st_C_struct:
2978 case st_C_enum:
2979 return false;
2980 default:
2981 return true;
2983 default:
2984 break;
2987 switch (toktype)
2989 case st_C_javastruct:
2990 if (structdef == stagseen)
2991 structdef = scolonseen;
2992 return false;
2993 case st_C_template:
2994 case st_C_class:
2995 if ((*c_extp & C_AUTO) /* automatic detection of C++ language */
2996 && bracelev == 0
2997 && definedef == dnone && structdef == snone
2998 && typdef == tnone && fvdef == fvnone)
2999 *c_extp = (*c_extp | C_PLPL) & ~C_AUTO;
3000 if (toktype == st_C_template)
3001 break;
3002 /* FALLTHRU */
3003 case st_C_struct:
3004 case st_C_enum:
3005 if (parlev == 0
3006 && fvdef != vignore
3007 && (typdef == tkeyseen
3008 || (typedefs_or_cplusplus && structdef == snone)))
3010 structdef = skeyseen;
3011 structtype = toktype;
3012 structbracelev = bracelev;
3013 if (fvdef == fvnameseen)
3014 fvdef = fvnone;
3016 return false;
3017 default:
3018 break;
3021 if (structdef == skeyseen)
3023 structdef = stagseen;
3024 return true;
3027 if (typdef != tnone)
3028 definedef = dnone;
3030 /* Detect Objective C constructs. */
3031 switch (objdef)
3033 case onone:
3034 switch (toktype)
3036 case st_C_objprot:
3037 objdef = oprotocol;
3038 return false;
3039 case st_C_objimpl:
3040 objdef = oimplementation;
3041 return false;
3042 default:
3043 break;
3045 break;
3046 case oimplementation:
3047 /* Save the class tag for functions or variables defined inside. */
3048 objtag = savenstr (str, len);
3049 objdef = oinbody;
3050 return false;
3051 case oprotocol:
3052 /* Save the class tag for categories. */
3053 objtag = savenstr (str, len);
3054 objdef = otagseen;
3055 *is_func_or_var = true;
3056 return true;
3057 case oparenseen:
3058 objdef = ocatseen;
3059 *is_func_or_var = true;
3060 return true;
3061 case oinbody:
3062 break;
3063 case omethodsign:
3064 if (parlev == 0)
3066 fvdef = fvnone;
3067 objdef = omethodtag;
3068 linebuffer_setlen (&token_name, len);
3069 memcpy (token_name.buffer, str, len);
3070 token_name.buffer[len] = '\0';
3071 return true;
3073 return false;
3074 case omethodcolon:
3075 if (parlev == 0)
3076 objdef = omethodparm;
3077 return false;
3078 case omethodparm:
3079 if (parlev == 0)
3081 objdef = omethodtag;
3082 if (class_qualify)
3084 int oldlen = token_name.len;
3085 fvdef = fvnone;
3086 linebuffer_setlen (&token_name, oldlen + len);
3087 memcpy (token_name.buffer + oldlen, str, len);
3088 token_name.buffer[oldlen + len] = '\0';
3090 return true;
3092 return false;
3093 case oignore:
3094 if (toktype == st_C_objend)
3096 /* Memory leakage here: the string pointed by objtag is
3097 never released, because many tests would be needed to
3098 avoid breaking on incorrect input code. The amount of
3099 memory leaked here is the sum of the lengths of the
3100 class tags.
3101 free (objtag); */
3102 objdef = onone;
3104 return false;
3105 default:
3106 break;
3109 /* A function, variable or enum constant? */
3110 switch (toktype)
3112 case st_C_extern:
3113 fvextern = true;
3114 switch (fvdef)
3116 case finlist:
3117 case flistseen:
3118 case fignore:
3119 case vignore:
3120 break;
3121 default:
3122 fvdef = fvnone;
3124 return false;
3125 case st_C_ignore:
3126 fvextern = false;
3127 fvdef = vignore;
3128 return false;
3129 case st_C_operator:
3130 fvdef = foperator;
3131 *is_func_or_var = true;
3132 return true;
3133 case st_none:
3134 if (constantypedefs
3135 && structdef == snone
3136 && structtype == st_C_enum && bracelev > structbracelev
3137 /* Don't tag tokens in expressions that assign values to enum
3138 constants. */
3139 && fvdef != vignore)
3140 return true; /* enum constant */
3141 switch (fvdef)
3143 case fdefunkey:
3144 if (bracelev > 0)
3145 break;
3146 fvdef = fdefunname; /* GNU macro */
3147 *is_func_or_var = true;
3148 return true;
3149 case fvnone:
3150 switch (typdef)
3152 case ttypeseen:
3153 return false;
3154 case tnone:
3155 if ((strneq (str, "asm", 3) && endtoken (str[3]))
3156 || (strneq (str, "__asm__", 7) && endtoken (str[7])))
3158 fvdef = vignore;
3159 return false;
3161 break;
3162 default:
3163 break;
3165 /* FALLTHRU */
3166 case fvnameseen:
3167 if (len >= 10 && strneq (str+len-10, "::operator", 10))
3169 if (*c_extp & C_AUTO) /* automatic detection of C++ */
3170 *c_extp = (*c_extp | C_PLPL) & ~C_AUTO;
3171 fvdef = foperator;
3172 *is_func_or_var = true;
3173 return true;
3175 if (bracelev > 0 && !instruct)
3176 break;
3177 fvdef = fvnameseen; /* function or variable */
3178 *is_func_or_var = true;
3179 return true;
3180 default:
3181 break;
3183 break;
3184 default:
3185 break;
3188 return false;
3193 * C_entries often keeps pointers to tokens or lines which are older than
3194 * the line currently read. By keeping two line buffers, and switching
3195 * them at end of line, it is possible to use those pointers.
3197 static struct
3199 long linepos;
3200 linebuffer lb;
3201 } lbs[2];
3203 #define current_lb_is_new (newndx == curndx)
3204 #define switch_line_buffers() (curndx = 1 - curndx)
3206 #define curlb (lbs[curndx].lb)
3207 #define newlb (lbs[newndx].lb)
3208 #define curlinepos (lbs[curndx].linepos)
3209 #define newlinepos (lbs[newndx].linepos)
3211 #define plainc ((c_ext & C_EXT) == C_PLAIN)
3212 #define cplpl (c_ext & C_PLPL)
3213 #define cjava ((c_ext & C_JAVA) == C_JAVA)
3215 #define CNL_SAVE_DEFINEDEF() \
3216 do { \
3217 curlinepos = charno; \
3218 readline (&curlb, inf); \
3219 lp = curlb.buffer; \
3220 quotednl = false; \
3221 newndx = curndx; \
3222 } while (0)
3224 #define CNL() \
3225 do { \
3226 CNL_SAVE_DEFINEDEF (); \
3227 if (savetoken.valid) \
3229 token = savetoken; \
3230 savetoken.valid = false; \
3232 definedef = dnone; \
3233 } while (0)
3236 static void
3237 make_C_tag (bool isfun)
3239 /* This function is never called when token.valid is false, but
3240 we must protect against invalid input or internal errors. */
3241 if (token.valid)
3242 make_tag (token_name.buffer, token_name.len, isfun, token.line,
3243 token.offset+token.length+1, token.lineno, token.linepos);
3244 else if (DEBUG)
3245 { /* this branch is optimized away if !DEBUG */
3246 make_tag (concat ("INVALID TOKEN:-->", token_name.buffer, ""),
3247 token_name.len + 17, isfun, token.line,
3248 token.offset+token.length+1, token.lineno, token.linepos);
3249 error ("INVALID TOKEN");
3252 token.valid = false;
3255 static bool
3256 perhaps_more_input (FILE *inf)
3258 return !feof (inf) && !ferror (inf);
3263 * C_entries ()
3264 * This routine finds functions, variables, typedefs,
3265 * #define's, enum constants and struct/union/enum definitions in
3266 * C syntax and adds them to the list.
3268 static void
3269 C_entries (int c_ext, FILE *inf)
3270 /* extension of C */
3271 /* input file */
3273 register char c; /* latest char read; '\0' for end of line */
3274 register char *lp; /* pointer one beyond the character `c' */
3275 int curndx, newndx; /* indices for current and new lb */
3276 register int tokoff; /* offset in line of start of current token */
3277 register int toklen; /* length of current token */
3278 const char *qualifier; /* string used to qualify names */
3279 int qlen; /* length of qualifier */
3280 int bracelev; /* current brace level */
3281 int bracketlev; /* current bracket level */
3282 int parlev; /* current parenthesis level */
3283 int attrparlev; /* __attribute__ parenthesis level */
3284 int templatelev; /* current template level */
3285 int typdefbracelev; /* bracelev where a typedef struct body begun */
3286 bool incomm, inquote, inchar, quotednl, midtoken;
3287 bool yacc_rules; /* in the rules part of a yacc file */
3288 struct tok savetoken = {0}; /* token saved during preprocessor handling */
3291 linebuffer_init (&lbs[0].lb);
3292 linebuffer_init (&lbs[1].lb);
3293 if (cstack.size == 0)
3295 cstack.size = (DEBUG) ? 1 : 4;
3296 cstack.nl = 0;
3297 cstack.cname = xnew (cstack.size, char *);
3298 cstack.bracelev = xnew (cstack.size, int);
3301 tokoff = toklen = typdefbracelev = 0; /* keep compiler quiet */
3302 curndx = newndx = 0;
3303 lp = curlb.buffer;
3304 *lp = 0;
3306 fvdef = fvnone; fvextern = false; typdef = tnone;
3307 structdef = snone; definedef = dnone; objdef = onone;
3308 yacc_rules = false;
3309 midtoken = inquote = inchar = incomm = quotednl = false;
3310 token.valid = savetoken.valid = false;
3311 bracelev = bracketlev = parlev = attrparlev = templatelev = 0;
3312 if (cjava)
3313 { qualifier = "."; qlen = 1; }
3314 else
3315 { qualifier = "::"; qlen = 2; }
3318 while (perhaps_more_input (inf))
3320 c = *lp++;
3321 if (c == '\\')
3323 /* If we are at the end of the line, the next character is a
3324 '\0'; do not skip it, because it is what tells us
3325 to read the next line. */
3326 if (*lp == '\0')
3328 quotednl = true;
3329 continue;
3331 lp++;
3332 c = ' ';
3334 else if (incomm)
3336 switch (c)
3338 case '*':
3339 if (*lp == '/')
3341 c = *lp++;
3342 incomm = false;
3344 break;
3345 case '\0':
3346 /* Newlines inside comments do not end macro definitions in
3347 traditional cpp. */
3348 CNL_SAVE_DEFINEDEF ();
3349 break;
3351 continue;
3353 else if (inquote)
3355 switch (c)
3357 case '"':
3358 inquote = false;
3359 break;
3360 case '\0':
3361 /* Newlines inside strings do not end macro definitions
3362 in traditional cpp, even though compilers don't
3363 usually accept them. */
3364 CNL_SAVE_DEFINEDEF ();
3365 break;
3367 continue;
3369 else if (inchar)
3371 switch (c)
3373 case '\0':
3374 /* Hmmm, something went wrong. */
3375 CNL ();
3376 /* FALLTHRU */
3377 case '\'':
3378 inchar = false;
3379 break;
3381 continue;
3383 else switch (c)
3385 case '"':
3386 inquote = true;
3387 if (bracketlev > 0)
3388 continue;
3389 if (inattribute)
3390 break;
3391 switch (fvdef)
3393 case fdefunkey:
3394 case fstartlist:
3395 case finlist:
3396 case fignore:
3397 case vignore:
3398 break;
3399 default:
3400 fvextern = false;
3401 fvdef = fvnone;
3403 continue;
3404 case '\'':
3405 inchar = true;
3406 if (bracketlev > 0)
3407 continue;
3408 if (inattribute)
3409 break;
3410 if (fvdef != finlist && fvdef != fignore && fvdef != vignore)
3412 fvextern = false;
3413 fvdef = fvnone;
3415 continue;
3416 case '/':
3417 if (*lp == '*')
3419 incomm = true;
3420 lp++;
3421 c = ' ';
3422 if (bracketlev > 0)
3423 continue;
3425 else if (/* cplpl && */ *lp == '/')
3427 c = '\0';
3429 break;
3430 case '%':
3431 if ((c_ext & YACC) && *lp == '%')
3433 /* Entering or exiting rules section in yacc file. */
3434 lp++;
3435 definedef = dnone; fvdef = fvnone; fvextern = false;
3436 typdef = tnone; structdef = snone;
3437 midtoken = inquote = inchar = incomm = quotednl = false;
3438 bracelev = 0;
3439 yacc_rules = !yacc_rules;
3440 continue;
3442 else
3443 break;
3444 case '#':
3445 if (definedef == dnone)
3447 char *cp;
3448 bool cpptoken = true;
3450 /* Look back on this line. If all blanks, or nonblanks
3451 followed by an end of comment, this is a preprocessor
3452 token. */
3453 for (cp = newlb.buffer; cp < lp-1; cp++)
3454 if (!c_isspace (*cp))
3456 if (*cp == '*' && cp[1] == '/')
3458 cp++;
3459 cpptoken = true;
3461 else
3462 cpptoken = false;
3464 if (cpptoken)
3466 definedef = dsharpseen;
3467 /* This is needed for tagging enum values: when there are
3468 preprocessor conditionals inside the enum, we need to
3469 reset the value of fvdef so that the next enum value is
3470 tagged even though the one before it did not end in a
3471 comma. */
3472 if (fvdef == vignore && instruct && parlev == 0)
3474 if (strneq (cp, "#if", 3) || strneq (cp, "#el", 3))
3475 fvdef = fvnone;
3478 } /* if (definedef == dnone) */
3479 continue;
3480 case '[':
3481 bracketlev++;
3482 continue;
3483 default:
3484 if (bracketlev > 0)
3486 if (c == ']')
3487 --bracketlev;
3488 else if (c == '\0')
3489 CNL_SAVE_DEFINEDEF ();
3490 continue;
3492 break;
3493 } /* switch (c) */
3496 /* Consider token only if some involved conditions are satisfied. */
3497 if (typdef != tignore
3498 && definedef != dignorerest
3499 && fvdef != finlist
3500 && templatelev == 0
3501 && (definedef != dnone
3502 || structdef != scolonseen)
3503 && !inattribute)
3505 if (midtoken)
3507 if (endtoken (c))
3509 if (c == ':' && *lp == ':' && begtoken (lp[1]))
3510 /* This handles :: in the middle,
3511 but not at the beginning of an identifier.
3512 Also, space-separated :: is not recognized. */
3514 if (c_ext & C_AUTO) /* automatic detection of C++ */
3515 c_ext = (c_ext | C_PLPL) & ~C_AUTO;
3516 lp += 2;
3517 toklen += 2;
3518 c = lp[-1];
3519 goto still_in_token;
3521 else
3523 bool funorvar = false;
3525 if (yacc_rules
3526 || consider_token (newlb.buffer + tokoff, toklen, c,
3527 &c_ext, bracelev, parlev,
3528 &funorvar))
3530 if (fvdef == foperator)
3532 char *oldlp = lp;
3533 lp = skip_spaces (lp-1);
3534 if (*lp != '\0')
3535 lp += 1;
3536 while (*lp != '\0'
3537 && !c_isspace (*lp) && *lp != '(')
3538 lp += 1;
3539 c = *lp++;
3540 toklen += lp - oldlp;
3542 token.named = false;
3543 if (!plainc
3544 && nestlev > 0 && definedef == dnone)
3545 /* in struct body */
3547 if (class_qualify)
3549 int len;
3550 write_classname (&token_name, qualifier);
3551 len = token_name.len;
3552 linebuffer_setlen (&token_name,
3553 len + qlen + toklen);
3554 sprintf (token_name.buffer + len, "%s%.*s",
3555 qualifier, toklen,
3556 newlb.buffer + tokoff);
3558 else
3560 linebuffer_setlen (&token_name, toklen);
3561 sprintf (token_name.buffer, "%.*s",
3562 toklen, newlb.buffer + tokoff);
3564 token.named = true;
3566 else if (objdef == ocatseen)
3567 /* Objective C category */
3569 if (class_qualify)
3571 int len = strlen (objtag) + 2 + toklen;
3572 linebuffer_setlen (&token_name, len);
3573 sprintf (token_name.buffer, "%s(%.*s)",
3574 objtag, toklen,
3575 newlb.buffer + tokoff);
3577 else
3579 linebuffer_setlen (&token_name, toklen);
3580 sprintf (token_name.buffer, "%.*s",
3581 toklen, newlb.buffer + tokoff);
3583 token.named = true;
3585 else if (objdef == omethodtag
3586 || objdef == omethodparm)
3587 /* Objective C method */
3589 token.named = true;
3591 else if (fvdef == fdefunname)
3592 /* GNU DEFUN and similar macros */
3594 bool defun = (newlb.buffer[tokoff] == 'F');
3595 int off = tokoff;
3596 int len = toklen;
3598 /* Rewrite the tag so that emacs lisp DEFUNs
3599 can be found by their elisp name */
3600 if (defun)
3602 off += 1;
3603 len -= 1;
3605 linebuffer_setlen (&token_name, len);
3606 memcpy (token_name.buffer,
3607 newlb.buffer + off, len);
3608 token_name.buffer[len] = '\0';
3609 if (defun)
3610 while (--len >= 0)
3611 if (token_name.buffer[len] == '_')
3612 token_name.buffer[len] = '-';
3613 token.named = defun;
3615 else
3617 linebuffer_setlen (&token_name, toklen);
3618 memcpy (token_name.buffer,
3619 newlb.buffer + tokoff, toklen);
3620 token_name.buffer[toklen] = '\0';
3621 /* Name macros and members. */
3622 token.named = (structdef == stagseen
3623 || typdef == ttypeseen
3624 || typdef == tend
3625 || (funorvar
3626 && definedef == dignorerest)
3627 || (funorvar
3628 && definedef == dnone
3629 && structdef == snone
3630 && bracelev > 0));
3632 token.lineno = lineno;
3633 token.offset = tokoff;
3634 token.length = toklen;
3635 token.line = newlb.buffer;
3636 token.linepos = newlinepos;
3637 token.valid = true;
3639 if (definedef == dnone
3640 && (fvdef == fvnameseen
3641 || fvdef == foperator
3642 || structdef == stagseen
3643 || typdef == tend
3644 || typdef == ttypeseen
3645 || objdef != onone))
3647 if (current_lb_is_new)
3648 switch_line_buffers ();
3650 else if (definedef != dnone
3651 || fvdef == fdefunname
3652 || instruct)
3653 make_C_tag (funorvar);
3655 else /* not yacc and consider_token failed */
3657 if (inattribute && fvdef == fignore)
3659 /* We have just met __attribute__ after a
3660 function parameter list: do not tag the
3661 function again. */
3662 fvdef = fvnone;
3665 midtoken = false;
3667 } /* if (endtoken (c)) */
3668 else if (intoken (c))
3669 still_in_token:
3671 toklen++;
3672 continue;
3674 } /* if (midtoken) */
3675 else if (begtoken (c))
3677 switch (definedef)
3679 case dnone:
3680 switch (fvdef)
3682 case fstartlist:
3683 /* This prevents tagging fb in
3684 void (__attribute__((noreturn)) *fb) (void);
3685 Fixing this is not easy and not very important. */
3686 fvdef = finlist;
3687 continue;
3688 case flistseen:
3689 if (plainc || declarations)
3691 make_C_tag (true); /* a function */
3692 fvdef = fignore;
3694 break;
3695 default:
3696 break;
3698 if (structdef == stagseen && !cjava)
3700 popclass_above (bracelev);
3701 structdef = snone;
3703 break;
3704 case dsharpseen:
3705 savetoken = token;
3706 break;
3707 default:
3708 break;
3710 if (!yacc_rules || lp == newlb.buffer + 1)
3712 tokoff = lp - 1 - newlb.buffer;
3713 toklen = 1;
3714 midtoken = true;
3716 continue;
3717 } /* if (begtoken) */
3718 } /* if must look at token */
3721 /* Detect end of line, colon, comma, semicolon and various braces
3722 after having handled a token.*/
3723 switch (c)
3725 case ':':
3726 if (inattribute)
3727 break;
3728 if (yacc_rules && token.offset == 0 && token.valid)
3730 make_C_tag (false); /* a yacc function */
3731 break;
3733 if (definedef != dnone)
3734 break;
3735 switch (objdef)
3737 case otagseen:
3738 objdef = oignore;
3739 make_C_tag (true); /* an Objective C class */
3740 break;
3741 case omethodtag:
3742 case omethodparm:
3743 objdef = omethodcolon;
3744 if (class_qualify)
3746 int toklen = token_name.len;
3747 linebuffer_setlen (&token_name, toklen + 1);
3748 strcpy (token_name.buffer + toklen, ":");
3750 break;
3751 default:
3752 break;
3754 if (structdef == stagseen)
3756 structdef = scolonseen;
3757 break;
3759 /* Should be useless, but may be work as a safety net. */
3760 if (cplpl && fvdef == flistseen)
3762 make_C_tag (true); /* a function */
3763 fvdef = fignore;
3764 break;
3766 break;
3767 case ';':
3768 if (definedef != dnone || inattribute)
3769 break;
3770 switch (typdef)
3772 case tend:
3773 case ttypeseen:
3774 make_C_tag (false); /* a typedef */
3775 typdef = tnone;
3776 fvdef = fvnone;
3777 break;
3778 case tnone:
3779 case tinbody:
3780 case tignore:
3781 switch (fvdef)
3783 case fignore:
3784 if (typdef == tignore || cplpl)
3785 fvdef = fvnone;
3786 break;
3787 case fvnameseen:
3788 if ((globals && bracelev == 0 && (!fvextern || declarations))
3789 || (members && instruct))
3790 make_C_tag (false); /* a variable */
3791 fvextern = false;
3792 fvdef = fvnone;
3793 token.valid = false;
3794 break;
3795 case flistseen:
3796 if ((declarations
3797 && (cplpl || !instruct)
3798 && (typdef == tnone || (typdef != tignore && instruct)))
3799 || (members
3800 && plainc && instruct))
3801 make_C_tag (true); /* a function */
3802 /* FALLTHRU */
3803 default:
3804 fvextern = false;
3805 fvdef = fvnone;
3806 if (declarations
3807 && cplpl && structdef == stagseen)
3808 make_C_tag (false); /* forward declaration */
3809 else
3810 token.valid = false;
3811 } /* switch (fvdef) */
3812 /* FALLTHRU */
3813 default:
3814 if (!instruct)
3815 typdef = tnone;
3817 if (structdef == stagseen)
3818 structdef = snone;
3819 break;
3820 case ',':
3821 if (definedef != dnone || inattribute)
3822 break;
3823 switch (objdef)
3825 case omethodtag:
3826 case omethodparm:
3827 make_C_tag (true); /* an Objective C method */
3828 objdef = oinbody;
3829 break;
3830 default:
3831 break;
3833 switch (fvdef)
3835 case fdefunkey:
3836 case foperator:
3837 case fstartlist:
3838 case finlist:
3839 case fignore:
3840 break;
3841 case vignore:
3842 if (instruct && parlev == 0)
3843 fvdef = fvnone;
3844 break;
3845 case fdefunname:
3846 fvdef = fignore;
3847 break;
3848 case fvnameseen:
3849 if (parlev == 0
3850 && ((globals
3851 && bracelev == 0
3852 && templatelev == 0
3853 && (!fvextern || declarations))
3854 || (members && instruct)))
3855 make_C_tag (false); /* a variable */
3856 break;
3857 case flistseen:
3858 if ((declarations && typdef == tnone && !instruct)
3859 || (members && typdef != tignore && instruct))
3861 make_C_tag (true); /* a function */
3862 fvdef = fvnameseen;
3864 else if (!declarations)
3865 fvdef = fvnone;
3866 token.valid = false;
3867 break;
3868 default:
3869 fvdef = fvnone;
3871 if (structdef == stagseen)
3872 structdef = snone;
3873 break;
3874 case ']':
3875 if (definedef != dnone || inattribute)
3876 break;
3877 if (structdef == stagseen)
3878 structdef = snone;
3879 switch (typdef)
3881 case ttypeseen:
3882 case tend:
3883 typdef = tignore;
3884 make_C_tag (false); /* a typedef */
3885 break;
3886 case tnone:
3887 case tinbody:
3888 switch (fvdef)
3890 case foperator:
3891 case finlist:
3892 case fignore:
3893 case vignore:
3894 break;
3895 case fvnameseen:
3896 if ((members && bracelev == 1)
3897 || (globals && bracelev == 0
3898 && (!fvextern || declarations)))
3899 make_C_tag (false); /* a variable */
3900 /* FALLTHRU */
3901 default:
3902 fvdef = fvnone;
3904 break;
3905 default:
3906 break;
3908 break;
3909 case '(':
3910 if (inattribute)
3912 attrparlev++;
3913 break;
3915 if (definedef != dnone)
3916 break;
3917 if (objdef == otagseen && parlev == 0)
3918 objdef = oparenseen;
3919 switch (fvdef)
3921 case fvnameseen:
3922 if (typdef == ttypeseen
3923 && *lp != '*'
3924 && !instruct)
3926 /* This handles constructs like:
3927 typedef void OperatorFun (int fun); */
3928 make_C_tag (false);
3929 typdef = tignore;
3930 fvdef = fignore;
3931 break;
3933 /* FALLTHRU */
3934 case foperator:
3935 fvdef = fstartlist;
3936 break;
3937 case flistseen:
3938 fvdef = finlist;
3939 break;
3940 default:
3941 break;
3943 parlev++;
3944 break;
3945 case ')':
3946 if (inattribute)
3948 if (--attrparlev == 0)
3949 inattribute = false;
3950 break;
3952 if (definedef != dnone)
3953 break;
3954 if (objdef == ocatseen && parlev == 1)
3956 make_C_tag (true); /* an Objective C category */
3957 objdef = oignore;
3959 if (--parlev == 0)
3961 switch (fvdef)
3963 case fstartlist:
3964 case finlist:
3965 fvdef = flistseen;
3966 break;
3967 default:
3968 break;
3970 if (!instruct
3971 && (typdef == tend
3972 || typdef == ttypeseen))
3974 typdef = tignore;
3975 make_C_tag (false); /* a typedef */
3978 else if (parlev < 0) /* can happen due to ill-conceived #if's. */
3979 parlev = 0;
3980 break;
3981 case '{':
3982 if (definedef != dnone)
3983 break;
3984 if (typdef == ttypeseen)
3986 /* Whenever typdef is set to tinbody (currently only
3987 here), typdefbracelev should be set to bracelev. */
3988 typdef = tinbody;
3989 typdefbracelev = bracelev;
3991 switch (fvdef)
3993 case flistseen:
3994 if (cplpl && !class_qualify)
3996 /* Remove class and namespace qualifiers from the token,
3997 leaving only the method/member name. */
3998 char *cc, *uqname = token_name.buffer;
3999 char *tok_end = token_name.buffer + token_name.len;
4001 for (cc = token_name.buffer; cc < tok_end; cc++)
4003 if (*cc == ':' && cc[1] == ':')
4005 uqname = cc + 2;
4006 cc++;
4009 if (uqname > token_name.buffer)
4011 int uqlen = strlen (uqname);
4012 linebuffer_setlen (&token_name, uqlen);
4013 memmove (token_name.buffer, uqname, uqlen + 1);
4016 make_C_tag (true); /* a function */
4017 /* FALLTHRU */
4018 case fignore:
4019 fvdef = fvnone;
4020 break;
4021 case fvnone:
4022 switch (objdef)
4024 case otagseen:
4025 make_C_tag (true); /* an Objective C class */
4026 objdef = oignore;
4027 break;
4028 case omethodtag:
4029 case omethodparm:
4030 make_C_tag (true); /* an Objective C method */
4031 objdef = oinbody;
4032 break;
4033 default:
4034 /* Neutralize `extern "C" {' grot. */
4035 if (bracelev == 0 && structdef == snone && nestlev == 0
4036 && typdef == tnone)
4037 bracelev = -1;
4039 break;
4040 default:
4041 break;
4043 switch (structdef)
4045 case skeyseen: /* unnamed struct */
4046 pushclass_above (bracelev, NULL, 0);
4047 structdef = snone;
4048 break;
4049 case stagseen: /* named struct or enum */
4050 case scolonseen: /* a class */
4051 pushclass_above (bracelev,token.line+token.offset, token.length);
4052 structdef = snone;
4053 make_C_tag (false); /* a struct or enum */
4054 break;
4055 default:
4056 break;
4058 bracelev += 1;
4059 break;
4060 case '*':
4061 if (definedef != dnone)
4062 break;
4063 if (fvdef == fstartlist)
4065 fvdef = fvnone; /* avoid tagging `foo' in `foo (*bar()) ()' */
4066 token.valid = false;
4068 break;
4069 case '}':
4070 if (definedef != dnone)
4071 break;
4072 bracelev -= 1;
4073 if (!ignoreindent && lp == newlb.buffer + 1)
4075 if (bracelev != 0)
4076 token.valid = false; /* unexpected value, token unreliable */
4077 bracelev = 0; /* reset brace level if first column */
4078 parlev = 0; /* also reset paren level, just in case... */
4080 else if (bracelev < 0)
4082 token.valid = false; /* something gone amiss, token unreliable */
4083 bracelev = 0;
4085 if (bracelev == 0 && fvdef == vignore)
4086 fvdef = fvnone; /* end of function */
4087 popclass_above (bracelev);
4088 structdef = snone;
4089 /* Only if typdef == tinbody is typdefbracelev significant. */
4090 if (typdef == tinbody && bracelev <= typdefbracelev)
4092 assert (bracelev == typdefbracelev);
4093 typdef = tend;
4095 break;
4096 case '=':
4097 if (definedef != dnone)
4098 break;
4099 switch (fvdef)
4101 case foperator:
4102 case finlist:
4103 case fignore:
4104 case vignore:
4105 break;
4106 case fvnameseen:
4107 if ((members && bracelev == 1)
4108 || (globals && bracelev == 0 && (!fvextern || declarations)))
4109 make_C_tag (false); /* a variable */
4110 /* FALLTHRU */
4111 default:
4112 fvdef = vignore;
4114 break;
4115 case '<':
4116 if (cplpl
4117 && (structdef == stagseen || fvdef == fvnameseen))
4119 templatelev++;
4120 break;
4122 goto resetfvdef;
4123 case '>':
4124 if (templatelev > 0)
4126 templatelev--;
4127 break;
4129 goto resetfvdef;
4130 case '+':
4131 case '-':
4132 if (objdef == oinbody && bracelev == 0)
4134 objdef = omethodsign;
4135 break;
4137 /* FALLTHRU */
4138 resetfvdef:
4139 case '#': case '~': case '&': case '%': case '/':
4140 case '|': case '^': case '!': case '.': case '?':
4141 if (definedef != dnone)
4142 break;
4143 /* These surely cannot follow a function tag in C. */
4144 switch (fvdef)
4146 case foperator:
4147 case finlist:
4148 case fignore:
4149 case vignore:
4150 break;
4151 default:
4152 fvdef = fvnone;
4154 break;
4155 case '\0':
4156 if (objdef == otagseen)
4158 make_C_tag (true); /* an Objective C class */
4159 objdef = oignore;
4161 /* If a macro spans multiple lines don't reset its state. */
4162 if (quotednl)
4163 CNL_SAVE_DEFINEDEF ();
4164 else
4165 CNL ();
4166 break;
4167 } /* switch (c) */
4169 } /* while not eof */
4171 free (lbs[0].lb.buffer);
4172 free (lbs[1].lb.buffer);
4176 * Process either a C++ file or a C file depending on the setting
4177 * of a global flag.
4179 static void
4180 default_C_entries (FILE *inf)
4182 C_entries (cplusplus ? C_PLPL : C_AUTO, inf);
4185 /* Always do plain C. */
4186 static void
4187 plain_C_entries (FILE *inf)
4189 C_entries (0, inf);
4192 /* Always do C++. */
4193 static void
4194 Cplusplus_entries (FILE *inf)
4196 C_entries (C_PLPL, inf);
4199 /* Always do Java. */
4200 static void
4201 Cjava_entries (FILE *inf)
4203 C_entries (C_JAVA, inf);
4206 /* Always do C*. */
4207 static void
4208 Cstar_entries (FILE *inf)
4210 C_entries (C_STAR, inf);
4213 /* Always do Yacc. */
4214 static void
4215 Yacc_entries (FILE *inf)
4217 C_entries (YACC, inf);
4221 /* Useful macros. */
4222 #define LOOP_ON_INPUT_LINES(file_pointer, line_buffer, char_pointer) \
4223 while (perhaps_more_input (file_pointer) \
4224 && (readline (&(line_buffer), file_pointer), \
4225 (char_pointer) = (line_buffer).buffer, \
4226 true)) \
4228 #define LOOKING_AT(cp, kw) /* kw is the keyword, a literal string */ \
4229 ((assert ("" kw), true) /* syntax error if not a literal string */ \
4230 && strneq ((cp), kw, sizeof (kw)-1) /* cp points at kw */ \
4231 && notinname ((cp)[sizeof (kw)-1]) /* end of kw */ \
4232 && ((cp) = skip_spaces ((cp) + sizeof (kw) - 1), true)) /* skip spaces */
4234 /* Similar to LOOKING_AT but does not use notinname, does not skip */
4235 #define LOOKING_AT_NOCASE(cp, kw) /* the keyword is a literal string */ \
4236 ((assert ("" kw), true) /* syntax error if not a literal string */ \
4237 && strncaseeq ((cp), kw, sizeof (kw)-1) /* cp points at kw */ \
4238 && ((cp) += sizeof (kw) - 1, true)) /* skip spaces */
4241 * Read a file, but do no processing. This is used to do regexp
4242 * matching on files that have no language defined.
4244 static void
4245 just_read_file (FILE *inf)
4247 while (perhaps_more_input (inf))
4248 readline (&lb, inf);
4252 /* Fortran parsing */
4254 static void F_takeprec (void);
4255 static void F_getit (FILE *);
4257 static void
4258 F_takeprec (void)
4260 dbp = skip_spaces (dbp);
4261 if (*dbp != '*')
4262 return;
4263 dbp++;
4264 dbp = skip_spaces (dbp);
4265 if (strneq (dbp, "(*)", 3))
4267 dbp += 3;
4268 return;
4270 if (!c_isdigit (*dbp))
4272 --dbp; /* force failure */
4273 return;
4276 dbp++;
4277 while (c_isdigit (*dbp));
4280 static void
4281 F_getit (FILE *inf)
4283 register char *cp;
4285 dbp = skip_spaces (dbp);
4286 if (*dbp == '\0')
4288 readline (&lb, inf);
4289 dbp = lb.buffer;
4290 if (dbp[5] != '&')
4291 return;
4292 dbp += 6;
4293 dbp = skip_spaces (dbp);
4295 if (!c_isalpha (*dbp) && *dbp != '_' && *dbp != '$')
4296 return;
4297 for (cp = dbp + 1; *cp != '\0' && intoken (*cp); cp++)
4298 continue;
4299 make_tag (dbp, cp-dbp, true,
4300 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4304 static void
4305 Fortran_functions (FILE *inf)
4307 LOOP_ON_INPUT_LINES (inf, lb, dbp)
4309 if (*dbp == '%')
4310 dbp++; /* Ratfor escape to fortran */
4311 dbp = skip_spaces (dbp);
4312 if (*dbp == '\0')
4313 continue;
4315 if (LOOKING_AT_NOCASE (dbp, "recursive"))
4316 dbp = skip_spaces (dbp);
4318 if (LOOKING_AT_NOCASE (dbp, "pure"))
4319 dbp = skip_spaces (dbp);
4321 if (LOOKING_AT_NOCASE (dbp, "elemental"))
4322 dbp = skip_spaces (dbp);
4324 switch (c_tolower (*dbp))
4326 case 'i':
4327 if (nocase_tail ("integer"))
4328 F_takeprec ();
4329 break;
4330 case 'r':
4331 if (nocase_tail ("real"))
4332 F_takeprec ();
4333 break;
4334 case 'l':
4335 if (nocase_tail ("logical"))
4336 F_takeprec ();
4337 break;
4338 case 'c':
4339 if (nocase_tail ("complex") || nocase_tail ("character"))
4340 F_takeprec ();
4341 break;
4342 case 'd':
4343 if (nocase_tail ("double"))
4345 dbp = skip_spaces (dbp);
4346 if (*dbp == '\0')
4347 continue;
4348 if (nocase_tail ("precision"))
4349 break;
4350 continue;
4352 break;
4354 dbp = skip_spaces (dbp);
4355 if (*dbp == '\0')
4356 continue;
4357 switch (c_tolower (*dbp))
4359 case 'f':
4360 if (nocase_tail ("function"))
4361 F_getit (inf);
4362 continue;
4363 case 's':
4364 if (nocase_tail ("subroutine"))
4365 F_getit (inf);
4366 continue;
4367 case 'e':
4368 if (nocase_tail ("entry"))
4369 F_getit (inf);
4370 continue;
4371 case 'b':
4372 if (nocase_tail ("blockdata") || nocase_tail ("block data"))
4374 dbp = skip_spaces (dbp);
4375 if (*dbp == '\0') /* assume un-named */
4376 make_tag ("blockdata", 9, true,
4377 lb.buffer, dbp - lb.buffer, lineno, linecharno);
4378 else
4379 F_getit (inf); /* look for name */
4381 continue;
4388 * Go language support
4389 * Original code by Xi Lu <lx@shellcodes.org> (2016)
4391 static void
4392 Go_functions(FILE *inf)
4394 char *cp, *name;
4396 LOOP_ON_INPUT_LINES(inf, lb, cp)
4398 cp = skip_spaces (cp);
4400 if (LOOKING_AT (cp, "package"))
4402 name = cp;
4403 while (!notinname (*cp) && *cp != '\0')
4404 cp++;
4405 make_tag (name, cp - name, false, lb.buffer,
4406 cp - lb.buffer + 1, lineno, linecharno);
4408 else if (LOOKING_AT (cp, "func"))
4410 /* Go implementation of interface, such as:
4411 func (n *Integer) Add(m Integer) ...
4412 skip `(n *Integer)` part.
4414 if (*cp == '(')
4416 while (*cp != ')')
4417 cp++;
4418 cp = skip_spaces (cp+1);
4421 if (*cp)
4423 name = cp;
4425 while (!notinname (*cp))
4426 cp++;
4428 make_tag (name, cp - name, true, lb.buffer,
4429 cp - lb.buffer + 1, lineno, linecharno);
4432 else if (members && LOOKING_AT (cp, "type"))
4434 name = cp;
4436 /* Ignore the likes of the following:
4437 type (
4441 if (*cp == '(')
4442 return;
4444 while (!notinname (*cp) && *cp != '\0')
4445 cp++;
4447 make_tag (name, cp - name, false, lb.buffer,
4448 cp - lb.buffer + 1, lineno, linecharno);
4455 * Ada parsing
4456 * Original code by
4457 * Philippe Waroquiers (1998)
4460 /* Once we are positioned after an "interesting" keyword, let's get
4461 the real tag value necessary. */
4462 static void
4463 Ada_getit (FILE *inf, const char *name_qualifier)
4465 register char *cp;
4466 char *name;
4467 char c;
4469 while (perhaps_more_input (inf))
4471 dbp = skip_spaces (dbp);
4472 if (*dbp == '\0'
4473 || (dbp[0] == '-' && dbp[1] == '-'))
4475 readline (&lb, inf);
4476 dbp = lb.buffer;
4478 switch (c_tolower (*dbp))
4480 case 'b':
4481 if (nocase_tail ("body"))
4483 /* Skipping body of procedure body or package body or ....
4484 resetting qualifier to body instead of spec. */
4485 name_qualifier = "/b";
4486 continue;
4488 break;
4489 case 't':
4490 /* Skipping type of task type or protected type ... */
4491 if (nocase_tail ("type"))
4492 continue;
4493 break;
4495 if (*dbp == '"')
4497 dbp += 1;
4498 for (cp = dbp; *cp != '\0' && *cp != '"'; cp++)
4499 continue;
4501 else
4503 dbp = skip_spaces (dbp);
4504 for (cp = dbp;
4505 c_isalnum (*cp) || *cp == '_' || *cp == '.';
4506 cp++)
4507 continue;
4508 if (cp == dbp)
4509 return;
4511 c = *cp;
4512 *cp = '\0';
4513 name = concat (dbp, name_qualifier, "");
4514 *cp = c;
4515 make_tag (name, strlen (name), true,
4516 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4517 free (name);
4518 if (c == '"')
4519 dbp = cp + 1;
4520 return;
4524 static void
4525 Ada_funcs (FILE *inf)
4527 bool inquote = false;
4528 bool skip_till_semicolumn = false;
4530 LOOP_ON_INPUT_LINES (inf, lb, dbp)
4532 while (*dbp != '\0')
4534 /* Skip a string i.e. "abcd". */
4535 if (inquote || (*dbp == '"'))
4537 dbp = strchr (dbp + !inquote, '"');
4538 if (dbp != NULL)
4540 inquote = false;
4541 dbp += 1;
4542 continue; /* advance char */
4544 else
4546 inquote = true;
4547 break; /* advance line */
4551 /* Skip comments. */
4552 if (dbp[0] == '-' && dbp[1] == '-')
4553 break; /* advance line */
4555 /* Skip character enclosed in single quote i.e. 'a'
4556 and skip single quote starting an attribute i.e. 'Image. */
4557 if (*dbp == '\'')
4559 dbp++ ;
4560 if (*dbp != '\0')
4561 dbp++;
4562 continue;
4565 if (skip_till_semicolumn)
4567 if (*dbp == ';')
4568 skip_till_semicolumn = false;
4569 dbp++;
4570 continue; /* advance char */
4573 /* Search for beginning of a token. */
4574 if (!begtoken (*dbp))
4576 dbp++;
4577 continue; /* advance char */
4580 /* We are at the beginning of a token. */
4581 switch (c_tolower (*dbp))
4583 case 'f':
4584 if (!packages_only && nocase_tail ("function"))
4585 Ada_getit (inf, "/f");
4586 else
4587 break; /* from switch */
4588 continue; /* advance char */
4589 case 'p':
4590 if (!packages_only && nocase_tail ("procedure"))
4591 Ada_getit (inf, "/p");
4592 else if (nocase_tail ("package"))
4593 Ada_getit (inf, "/s");
4594 else if (nocase_tail ("protected")) /* protected type */
4595 Ada_getit (inf, "/t");
4596 else
4597 break; /* from switch */
4598 continue; /* advance char */
4600 case 'u':
4601 if (typedefs && !packages_only && nocase_tail ("use"))
4603 /* when tagging types, avoid tagging use type Pack.Typename;
4604 for this, we will skip everything till a ; */
4605 skip_till_semicolumn = true;
4606 continue; /* advance char */
4609 case 't':
4610 if (!packages_only && nocase_tail ("task"))
4611 Ada_getit (inf, "/k");
4612 else if (typedefs && !packages_only && nocase_tail ("type"))
4614 Ada_getit (inf, "/t");
4615 while (*dbp != '\0')
4616 dbp += 1;
4618 else
4619 break; /* from switch */
4620 continue; /* advance char */
4623 /* Look for the end of the token. */
4624 while (!endtoken (*dbp))
4625 dbp++;
4627 } /* advance char */
4628 } /* advance line */
4633 * Unix and microcontroller assembly tag handling
4634 * Labels: /^[a-zA-Z_.$][a-zA_Z0-9_.$]*[: ^I^J]/
4635 * Idea by Bob Weiner, Motorola Inc. (1994)
4637 static void
4638 Asm_labels (FILE *inf)
4640 register char *cp;
4642 LOOP_ON_INPUT_LINES (inf, lb, cp)
4644 /* If first char is alphabetic or one of [_.$], test for colon
4645 following identifier. */
4646 if (c_isalpha (*cp) || *cp == '_' || *cp == '.' || *cp == '$')
4648 /* Read past label. */
4649 cp++;
4650 while (c_isalnum (*cp) || *cp == '_' || *cp == '.' || *cp == '$')
4651 cp++;
4652 if (*cp == ':' || c_isspace (*cp))
4653 /* Found end of label, so copy it and add it to the table. */
4654 make_tag (lb.buffer, cp - lb.buffer, true,
4655 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4662 * Perl support
4663 * Perl sub names: /^sub[ \t\n]+[^ \t\n{]+/
4664 * /^use constant[ \t\n]+[^ \t\n{=,;]+/
4665 * Perl variable names: /^(my|local).../
4666 * Original code by Bart Robinson <lomew@cs.utah.edu> (1995)
4667 * Additions by Michael Ernst <mernst@alum.mit.edu> (1997)
4668 * Ideas by Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> (2001)
4670 static void
4671 Perl_functions (FILE *inf)
4673 char *package = savestr ("main"); /* current package name */
4674 register char *cp;
4676 LOOP_ON_INPUT_LINES (inf, lb, cp)
4678 cp = skip_spaces (cp);
4680 if (LOOKING_AT (cp, "package"))
4682 free (package);
4683 get_tag (cp, &package);
4685 else if (LOOKING_AT (cp, "sub"))
4687 char *pos, *sp;
4689 subr:
4690 sp = cp;
4691 while (!notinname (*cp))
4692 cp++;
4693 if (cp == sp)
4694 continue; /* nothing found */
4695 pos = strchr (sp, ':');
4696 if (pos && pos < cp && pos[1] == ':')
4698 /* The name is already qualified. */
4699 if (!class_qualify)
4701 char *q = pos + 2, *qpos;
4702 while ((qpos = strchr (q, ':')) != NULL
4703 && qpos < cp
4704 && qpos[1] == ':')
4705 q = qpos + 2;
4706 sp = q;
4708 make_tag (sp, cp - sp, true,
4709 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4711 else if (class_qualify)
4712 /* Qualify it. */
4714 char savechar, *name;
4716 savechar = *cp;
4717 *cp = '\0';
4718 name = concat (package, "::", sp);
4719 *cp = savechar;
4720 make_tag (name, strlen (name), true,
4721 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4722 free (name);
4724 else
4725 make_tag (sp, cp - sp, true,
4726 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4728 else if (LOOKING_AT (cp, "use constant")
4729 || LOOKING_AT (cp, "use constant::defer"))
4731 /* For hash style multi-constant like
4732 use constant { FOO => 123,
4733 BAR => 456 };
4734 only the first FOO is picked up. Parsing across the value
4735 expressions would be difficult in general, due to possible nested
4736 hashes, here-documents, etc. */
4737 if (*cp == '{')
4738 cp = skip_spaces (cp+1);
4739 goto subr;
4741 else if (globals) /* only if we are tagging global vars */
4743 /* Skip a qualifier, if any. */
4744 bool qual = LOOKING_AT (cp, "my") || LOOKING_AT (cp, "local");
4745 /* After "my" or "local", but before any following paren or space. */
4746 char *varstart = cp;
4748 if (qual /* should this be removed? If yes, how? */
4749 && (*cp == '$' || *cp == '@' || *cp == '%'))
4751 varstart += 1;
4753 cp++;
4754 while (c_isalnum (*cp) || *cp == '_');
4756 else if (qual)
4758 /* Should be examining a variable list at this point;
4759 could insist on seeing an open parenthesis. */
4760 while (*cp != '\0' && *cp != ';' && *cp != '=' && *cp != ')')
4761 cp++;
4763 else
4764 continue;
4766 make_tag (varstart, cp - varstart, false,
4767 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4770 free (package);
4775 * Python support
4776 * Look for /^[\t]*def[ \t\n]+[^ \t\n(:]+/ or /^class[ \t\n]+[^ \t\n(:]+/
4777 * Idea by Eric S. Raymond <esr@thyrsus.com> (1997)
4778 * More ideas by seb bacon <seb@jamkit.com> (2002)
4780 static void
4781 Python_functions (FILE *inf)
4783 register char *cp;
4785 LOOP_ON_INPUT_LINES (inf, lb, cp)
4787 cp = skip_spaces (cp);
4788 if (LOOKING_AT (cp, "def") || LOOKING_AT (cp, "class"))
4790 char *name = cp;
4791 while (!notinname (*cp) && *cp != ':')
4792 cp++;
4793 make_tag (name, cp - name, true,
4794 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4800 * Ruby support
4801 * Original code by Xi Lu <lx@shellcodes.org> (2015)
4803 static void
4804 Ruby_functions (FILE *inf)
4806 char *cp = NULL;
4807 bool reader = false, writer = false, alias = false, continuation = false;
4809 LOOP_ON_INPUT_LINES (inf, lb, cp)
4811 bool is_class = false;
4812 bool is_method = false;
4813 char *name;
4815 cp = skip_spaces (cp);
4816 if (!continuation
4817 /* Constants. */
4818 && c_isalpha (*cp) && c_isupper (*cp))
4820 char *bp, *colon = NULL;
4822 name = cp;
4824 for (cp++; c_isalnum (*cp) || *cp == '_' || *cp == ':'; cp++)
4826 if (*cp == ':')
4827 colon = cp;
4829 if (cp > name + 1)
4831 bp = skip_spaces (cp);
4832 if (*bp == '=' && !(bp[1] == '=' || bp[1] == '>'))
4834 if (colon && !c_isspace (colon[1]))
4835 name = colon + 1;
4836 make_tag (name, cp - name, false,
4837 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4841 else if (!continuation
4842 /* Modules, classes, methods. */
4843 && ((is_method = LOOKING_AT (cp, "def"))
4844 || (is_class = LOOKING_AT (cp, "class"))
4845 || LOOKING_AT (cp, "module")))
4847 const char self_name[] = "self.";
4848 const size_t self_size1 = sizeof (self_name) - 1;
4850 name = cp;
4852 /* Ruby method names can end in a '='. Also, operator overloading can
4853 define operators whose names include '='. */
4854 while (!notinname (*cp) || *cp == '=')
4855 cp++;
4857 /* Remove "self." from the method name. */
4858 if (cp - name > self_size1
4859 && strneq (name, self_name, self_size1))
4860 name += self_size1;
4862 /* Remove the class/module qualifiers from method names. */
4863 if (is_method)
4865 char *q;
4867 for (q = name; q < cp && *q != '.'; q++)
4869 if (q < cp - 1) /* punt if we see just "FOO." */
4870 name = q + 1;
4873 /* Don't tag singleton classes. */
4874 if (is_class && strneq (name, "<<", 2) && cp == name + 2)
4875 continue;
4877 make_tag (name, cp - name, true,
4878 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4880 else
4882 /* Tag accessors and aliases. */
4884 if (!continuation)
4885 reader = writer = alias = false;
4887 while (*cp && *cp != '#')
4889 if (!continuation)
4891 reader = writer = alias = false;
4892 if (LOOKING_AT (cp, "attr_reader"))
4893 reader = true;
4894 else if (LOOKING_AT (cp, "attr_writer"))
4895 writer = true;
4896 else if (LOOKING_AT (cp, "attr_accessor"))
4898 reader = true;
4899 writer = true;
4901 else if (LOOKING_AT (cp, "alias_method"))
4902 alias = true;
4904 if (reader || writer || alias)
4906 do {
4907 char *np;
4909 cp = skip_spaces (cp);
4910 if (*cp == '(')
4911 cp = skip_spaces (cp + 1);
4912 np = cp;
4913 cp = skip_name (cp);
4914 if (*np != ':')
4915 continue;
4916 np++;
4917 if (reader)
4919 make_tag (np, cp - np, true,
4920 lb.buffer, cp - lb.buffer + 1,
4921 lineno, linecharno);
4922 continuation = false;
4924 if (writer)
4926 size_t name_len = cp - np + 1;
4927 char *wr_name = xnew (name_len + 1, char);
4929 memcpy (wr_name, np, name_len - 1);
4930 memcpy (wr_name + name_len - 1, "=", 2);
4931 pfnote (wr_name, true, lb.buffer, cp - lb.buffer + 1,
4932 lineno, linecharno);
4933 continuation = false;
4935 if (alias)
4937 if (!continuation)
4938 make_tag (np, cp - np, true,
4939 lb.buffer, cp - lb.buffer + 1,
4940 lineno, linecharno);
4941 continuation = false;
4942 while (*cp && *cp != '#' && *cp != ';')
4944 if (*cp == ',')
4945 continuation = true;
4946 else if (!c_isspace (*cp))
4947 continuation = false;
4948 cp++;
4950 if (*cp == ';')
4951 continuation = false;
4953 cp = skip_spaces (cp);
4954 } while ((alias
4955 ? (*cp == ',')
4956 : (continuation = (*cp == ',')))
4957 && (cp = skip_spaces (cp + 1), *cp && *cp != '#'));
4959 if (*cp != '#')
4960 cp = skip_name (cp);
4961 while (*cp && *cp != '#' && notinname (*cp))
4962 cp++;
4970 * PHP support
4971 * Look for:
4972 * - /^[ \t]*function[ \t\n]+[^ \t\n(]+/
4973 * - /^[ \t]*class[ \t\n]+[^ \t\n]+/
4974 * - /^[ \t]*define\(\"[^\"]+/
4975 * Only with --members:
4976 * - /^[ \t]*var[ \t\n]+\$[^ \t\n=;]/
4977 * Idea by Diez B. Roggisch (2001)
4979 static void
4980 PHP_functions (FILE *inf)
4982 char *cp, *name;
4983 bool search_identifier = false;
4985 LOOP_ON_INPUT_LINES (inf, lb, cp)
4987 cp = skip_spaces (cp);
4988 name = cp;
4989 if (search_identifier
4990 && *cp != '\0')
4992 while (!notinname (*cp))
4993 cp++;
4994 make_tag (name, cp - name, true,
4995 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
4996 search_identifier = false;
4998 else if (LOOKING_AT (cp, "function"))
5000 if (*cp == '&')
5001 cp = skip_spaces (cp+1);
5002 if (*cp != '\0')
5004 name = cp;
5005 while (!notinname (*cp))
5006 cp++;
5007 make_tag (name, cp - name, true,
5008 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
5010 else
5011 search_identifier = true;
5013 else if (LOOKING_AT (cp, "class"))
5015 if (*cp != '\0')
5017 name = cp;
5018 while (*cp != '\0' && !c_isspace (*cp))
5019 cp++;
5020 make_tag (name, cp - name, false,
5021 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
5023 else
5024 search_identifier = true;
5026 else if (strneq (cp, "define", 6)
5027 && (cp = skip_spaces (cp+6))
5028 && *cp++ == '('
5029 && (*cp == '"' || *cp == '\''))
5031 char quote = *cp++;
5032 name = cp;
5033 while (*cp != quote && *cp != '\0')
5034 cp++;
5035 make_tag (name, cp - name, false,
5036 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
5038 else if (members
5039 && LOOKING_AT (cp, "var")
5040 && *cp == '$')
5042 name = cp;
5043 while (!notinname (*cp))
5044 cp++;
5045 make_tag (name, cp - name, false,
5046 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
5053 * Cobol tag functions
5054 * We could look for anything that could be a paragraph name.
5055 * i.e. anything that starts in column 8 is one word and ends in a full stop.
5056 * Idea by Corny de Souza (1993)
5058 static void
5059 Cobol_paragraphs (FILE *inf)
5061 register char *bp, *ep;
5063 LOOP_ON_INPUT_LINES (inf, lb, bp)
5065 if (lb.len < 9)
5066 continue;
5067 bp += 8;
5069 /* If eoln, compiler option or comment ignore whole line. */
5070 if (bp[-1] != ' ' || !c_isalnum (bp[0]))
5071 continue;
5073 for (ep = bp; c_isalnum (*ep) || *ep == '-'; ep++)
5074 continue;
5075 if (*ep++ == '.')
5076 make_tag (bp, ep - bp, true,
5077 lb.buffer, ep - lb.buffer + 1, lineno, linecharno);
5083 * Makefile support
5084 * Ideas by Assar Westerlund <assar@sics.se> (2001)
5086 static void
5087 Makefile_targets (FILE *inf)
5089 register char *bp;
5091 LOOP_ON_INPUT_LINES (inf, lb, bp)
5093 if (*bp == '\t' || *bp == '#')
5094 continue;
5095 while (*bp != '\0' && *bp != '=' && *bp != ':')
5096 bp++;
5097 if (*bp == ':' || (globals && *bp == '='))
5099 /* We should detect if there is more than one tag, but we do not.
5100 We just skip initial and final spaces. */
5101 char * namestart = skip_spaces (lb.buffer);
5102 while (--bp > namestart)
5103 if (!notinname (*bp))
5104 break;
5105 make_tag (namestart, bp - namestart + 1, true,
5106 lb.buffer, bp - lb.buffer + 2, lineno, linecharno);
5113 * Pascal parsing
5114 * Original code by Mosur K. Mohan (1989)
5116 * Locates tags for procedures & functions. Doesn't do any type- or
5117 * var-definitions. It does look for the keyword "extern" or
5118 * "forward" immediately following the procedure statement; if found,
5119 * the tag is skipped.
5121 static void
5122 Pascal_functions (FILE *inf)
5124 linebuffer tline; /* mostly copied from C_entries */
5125 long save_lcno;
5126 int save_lineno, namelen, taglen;
5127 char c, *name;
5129 bool /* each of these flags is true if: */
5130 incomment, /* point is inside a comment */
5131 inquote, /* point is inside '..' string */
5132 get_tagname, /* point is after PROCEDURE/FUNCTION
5133 keyword, so next item = potential tag */
5134 found_tag, /* point is after a potential tag */
5135 inparms, /* point is within parameter-list */
5136 verify_tag; /* point has passed the parm-list, so the
5137 next token will determine whether this
5138 is a FORWARD/EXTERN to be ignored, or
5139 whether it is a real tag */
5141 save_lcno = save_lineno = namelen = taglen = 0; /* keep compiler quiet */
5142 name = NULL; /* keep compiler quiet */
5143 dbp = lb.buffer;
5144 *dbp = '\0';
5145 linebuffer_init (&tline);
5147 incomment = inquote = false;
5148 found_tag = false; /* have a proc name; check if extern */
5149 get_tagname = false; /* found "procedure" keyword */
5150 inparms = false; /* found '(' after "proc" */
5151 verify_tag = false; /* check if "extern" is ahead */
5154 while (perhaps_more_input (inf)) /* long main loop to get next char */
5156 c = *dbp++;
5157 if (c == '\0') /* if end of line */
5159 readline (&lb, inf);
5160 dbp = lb.buffer;
5161 if (*dbp == '\0')
5162 continue;
5163 if (!((found_tag && verify_tag)
5164 || get_tagname))
5165 c = *dbp++; /* only if don't need *dbp pointing
5166 to the beginning of the name of
5167 the procedure or function */
5169 if (incomment)
5171 if (c == '}') /* within { } comments */
5172 incomment = false;
5173 else if (c == '*' && *dbp == ')') /* within (* *) comments */
5175 dbp++;
5176 incomment = false;
5178 continue;
5180 else if (inquote)
5182 if (c == '\'')
5183 inquote = false;
5184 continue;
5186 else
5187 switch (c)
5189 case '\'':
5190 inquote = true; /* found first quote */
5191 continue;
5192 case '{': /* found open { comment */
5193 incomment = true;
5194 continue;
5195 case '(':
5196 if (*dbp == '*') /* found open (* comment */
5198 incomment = true;
5199 dbp++;
5201 else if (found_tag) /* found '(' after tag, i.e., parm-list */
5202 inparms = true;
5203 continue;
5204 case ')': /* end of parms list */
5205 if (inparms)
5206 inparms = false;
5207 continue;
5208 case ';':
5209 if (found_tag && !inparms) /* end of proc or fn stmt */
5211 verify_tag = true;
5212 break;
5214 continue;
5216 if (found_tag && verify_tag && (*dbp != ' '))
5218 /* Check if this is an "extern" declaration. */
5219 if (*dbp == '\0')
5220 continue;
5221 if (c_tolower (*dbp) == 'e')
5223 if (nocase_tail ("extern")) /* superfluous, really! */
5225 found_tag = false;
5226 verify_tag = false;
5229 else if (c_tolower (*dbp) == 'f')
5231 if (nocase_tail ("forward")) /* check for forward reference */
5233 found_tag = false;
5234 verify_tag = false;
5237 if (found_tag && verify_tag) /* not external proc, so make tag */
5239 found_tag = false;
5240 verify_tag = false;
5241 make_tag (name, namelen, true,
5242 tline.buffer, taglen, save_lineno, save_lcno);
5243 continue;
5246 if (get_tagname) /* grab name of proc or fn */
5248 char *cp;
5250 if (*dbp == '\0')
5251 continue;
5253 /* Find block name. */
5254 for (cp = dbp + 1; *cp != '\0' && !endtoken (*cp); cp++)
5255 continue;
5257 /* Save all values for later tagging. */
5258 linebuffer_setlen (&tline, lb.len);
5259 strcpy (tline.buffer, lb.buffer);
5260 save_lineno = lineno;
5261 save_lcno = linecharno;
5262 name = tline.buffer + (dbp - lb.buffer);
5263 namelen = cp - dbp;
5264 taglen = cp - lb.buffer + 1;
5266 dbp = cp; /* set dbp to e-o-token */
5267 get_tagname = false;
5268 found_tag = true;
5269 continue;
5271 /* And proceed to check for "extern". */
5273 else if (!incomment && !inquote && !found_tag)
5275 /* Check for proc/fn keywords. */
5276 switch (c_tolower (c))
5278 case 'p':
5279 if (nocase_tail ("rocedure")) /* c = 'p', dbp has advanced */
5280 get_tagname = true;
5281 continue;
5282 case 'f':
5283 if (nocase_tail ("unction"))
5284 get_tagname = true;
5285 continue;
5288 } /* while not eof */
5290 free (tline.buffer);
5295 * Lisp tag functions
5296 * look for (def or (DEF, quote or QUOTE
5299 static void L_getit (void);
5301 static void
5302 L_getit (void)
5304 if (*dbp == '\'') /* Skip prefix quote */
5305 dbp++;
5306 else if (*dbp == '(')
5308 dbp++;
5309 /* Try to skip "(quote " */
5310 if (!LOOKING_AT (dbp, "quote") && !LOOKING_AT (dbp, "QUOTE"))
5311 /* Ok, then skip "(" before name in (defstruct (foo)) */
5312 dbp = skip_spaces (dbp);
5314 get_tag (dbp, NULL);
5317 static void
5318 Lisp_functions (FILE *inf)
5320 LOOP_ON_INPUT_LINES (inf, lb, dbp)
5322 if (dbp[0] != '(')
5323 continue;
5325 /* "(defvar foo)" is a declaration rather than a definition. */
5326 if (! declarations)
5328 char *p = dbp + 1;
5329 if (LOOKING_AT (p, "defvar"))
5331 p = skip_name (p); /* past var name */
5332 p = skip_spaces (p);
5333 if (*p == ')')
5334 continue;
5338 if (strneq (dbp + 1, "cl-", 3) || strneq (dbp + 1, "CL-", 3))
5339 dbp += 3;
5341 if (strneq (dbp+1, "def", 3) || strneq (dbp+1, "DEF", 3))
5343 dbp = skip_non_spaces (dbp);
5344 dbp = skip_spaces (dbp);
5345 L_getit ();
5347 else
5349 /* Check for (foo::defmumble name-defined ... */
5351 dbp++;
5352 while (!notinname (*dbp) && *dbp != ':');
5353 if (*dbp == ':')
5356 dbp++;
5357 while (*dbp == ':');
5359 if (strneq (dbp, "def", 3) || strneq (dbp, "DEF", 3))
5361 dbp = skip_non_spaces (dbp);
5362 dbp = skip_spaces (dbp);
5363 L_getit ();
5372 * Lua script language parsing
5373 * Original code by David A. Capello <dacap@users.sourceforge.net> (2004)
5375 * "function" and "local function" are tags if they start at column 1.
5377 static void
5378 Lua_functions (FILE *inf)
5380 register char *bp;
5382 LOOP_ON_INPUT_LINES (inf, lb, bp)
5384 bp = skip_spaces (bp);
5385 if (bp[0] != 'f' && bp[0] != 'l')
5386 continue;
5388 (void)LOOKING_AT (bp, "local"); /* skip possible "local" */
5390 if (LOOKING_AT (bp, "function"))
5392 char *tag_name, *tp_dot, *tp_colon;
5394 get_tag (bp, &tag_name);
5395 /* If the tag ends with ".foo" or ":foo", make an additional tag for
5396 "foo". */
5397 tp_dot = strrchr (tag_name, '.');
5398 tp_colon = strrchr (tag_name, ':');
5399 if (tp_dot || tp_colon)
5401 char *p = tp_dot > tp_colon ? tp_dot : tp_colon;
5402 int len_add = p - tag_name + 1;
5404 get_tag (bp + len_add, NULL);
5412 * PostScript tags
5413 * Just look for lines where the first character is '/'
5414 * Also look at "defineps" for PSWrap
5415 * Ideas by:
5416 * Richard Mlynarik <mly@adoc.xerox.com> (1997)
5417 * Masatake Yamato <masata-y@is.aist-nara.ac.jp> (1999)
5419 static void
5420 PS_functions (FILE *inf)
5422 register char *bp, *ep;
5424 LOOP_ON_INPUT_LINES (inf, lb, bp)
5426 if (bp[0] == '/')
5428 for (ep = bp+1;
5429 *ep != '\0' && *ep != ' ' && *ep != '{';
5430 ep++)
5431 continue;
5432 make_tag (bp, ep - bp, true,
5433 lb.buffer, ep - lb.buffer + 1, lineno, linecharno);
5435 else if (LOOKING_AT (bp, "defineps"))
5436 get_tag (bp, NULL);
5442 * Forth tags
5443 * Ignore anything after \ followed by space or in ( )
5444 * Look for words defined by :
5445 * Look for constant, code, create, defer, value, and variable
5446 * OBP extensions: Look for buffer:, field,
5447 * Ideas by Eduardo Horvath <eeh@netbsd.org> (2004)
5449 static void
5450 Forth_words (FILE *inf)
5452 register char *bp;
5454 LOOP_ON_INPUT_LINES (inf, lb, bp)
5455 while ((bp = skip_spaces (bp))[0] != '\0')
5456 if (bp[0] == '\\' && c_isspace (bp[1]))
5457 break; /* read next line */
5458 else if (bp[0] == '(' && c_isspace (bp[1]))
5459 do /* skip to ) or eol */
5460 bp++;
5461 while (*bp != ')' && *bp != '\0');
5462 else if ((bp[0] == ':' && c_isspace (bp[1]) && bp++)
5463 || LOOKING_AT_NOCASE (bp, "constant")
5464 || LOOKING_AT_NOCASE (bp, "code")
5465 || LOOKING_AT_NOCASE (bp, "create")
5466 || LOOKING_AT_NOCASE (bp, "defer")
5467 || LOOKING_AT_NOCASE (bp, "value")
5468 || LOOKING_AT_NOCASE (bp, "variable")
5469 || LOOKING_AT_NOCASE (bp, "buffer:")
5470 || LOOKING_AT_NOCASE (bp, "field"))
5471 get_tag (skip_spaces (bp), NULL); /* Yay! A definition! */
5472 else
5473 bp = skip_non_spaces (bp);
5478 * Scheme tag functions
5479 * look for (def... xyzzy
5480 * (def... (xyzzy
5481 * (def ... ((...(xyzzy ....
5482 * (set! xyzzy
5483 * Original code by Ken Haase (1985?)
5485 static void
5486 Scheme_functions (FILE *inf)
5488 register char *bp;
5490 LOOP_ON_INPUT_LINES (inf, lb, bp)
5492 if (strneq (bp, "(def", 4) || strneq (bp, "(DEF", 4))
5494 bp = skip_non_spaces (bp+4);
5495 /* Skip over open parens and white space. Don't continue past
5496 '\0'. */
5497 while (*bp && notinname (*bp))
5498 bp++;
5499 get_tag (bp, NULL);
5501 if (LOOKING_AT (bp, "(SET!") || LOOKING_AT (bp, "(set!"))
5502 get_tag (bp, NULL);
5507 /* Find tags in TeX and LaTeX input files. */
5509 /* TEX_toktab is a table of TeX control sequences that define tags.
5510 * Each entry records one such control sequence.
5512 * Original code from who knows whom.
5513 * Ideas by:
5514 * Stefan Monnier (2002)
5517 static linebuffer *TEX_toktab = NULL; /* Table with tag tokens */
5519 /* Default set of control sequences to put into TEX_toktab.
5520 The value of environment var TEXTAGS is prepended to this. */
5521 static const char *TEX_defenv = "\
5522 :chapter:section:subsection:subsubsection:eqno:label:ref:cite:bibitem\
5523 :part:appendix:entry:index:def\
5524 :newcommand:renewcommand:newenvironment:renewenvironment";
5526 static void TEX_decode_env (const char *, const char *);
5529 * TeX/LaTeX scanning loop.
5531 static void
5532 TeX_commands (FILE *inf)
5534 char *cp;
5535 linebuffer *key;
5537 char TEX_esc = '\0';
5538 char TEX_opgrp, TEX_clgrp;
5540 /* Initialize token table once from environment. */
5541 if (TEX_toktab == NULL)
5542 TEX_decode_env ("TEXTAGS", TEX_defenv);
5544 LOOP_ON_INPUT_LINES (inf, lb, cp)
5546 /* Look at each TEX keyword in line. */
5547 for (;;)
5549 /* Look for a TEX escape. */
5550 while (true)
5552 char c = *cp++;
5553 if (c == '\0' || c == '%')
5554 goto tex_next_line;
5556 /* Select either \ or ! as escape character, whichever comes
5557 first outside a comment. */
5558 if (!TEX_esc)
5559 switch (c)
5561 case '\\':
5562 TEX_esc = c;
5563 TEX_opgrp = '{';
5564 TEX_clgrp = '}';
5565 break;
5567 case '!':
5568 TEX_esc = c;
5569 TEX_opgrp = '<';
5570 TEX_clgrp = '>';
5571 break;
5574 if (c == TEX_esc)
5575 break;
5578 for (key = TEX_toktab; key->buffer != NULL; key++)
5579 if (strneq (cp, key->buffer, key->len))
5581 char *p;
5582 int namelen, linelen;
5583 bool opgrp = false;
5585 cp = skip_spaces (cp + key->len);
5586 if (*cp == TEX_opgrp)
5588 opgrp = true;
5589 cp++;
5591 for (p = cp;
5592 (!c_isspace (*p) && *p != '#' &&
5593 *p != TEX_opgrp && *p != TEX_clgrp);
5594 p++)
5595 continue;
5596 namelen = p - cp;
5597 linelen = lb.len;
5598 if (!opgrp || *p == TEX_clgrp)
5600 while (*p != '\0' && *p != TEX_opgrp && *p != TEX_clgrp)
5601 p++;
5602 linelen = p - lb.buffer + 1;
5604 make_tag (cp, namelen, true,
5605 lb.buffer, linelen, lineno, linecharno);
5606 goto tex_next_line; /* We only tag a line once */
5609 tex_next_line:
5614 /* Read environment and prepend it to the default string.
5615 Build token table. */
5616 static void
5617 TEX_decode_env (const char *evarname, const char *defenv)
5619 register const char *env, *p;
5620 int i, len;
5622 /* Append default string to environment. */
5623 env = getenv (evarname);
5624 if (!env)
5625 env = defenv;
5626 else
5627 env = concat (env, defenv, "");
5629 /* Allocate a token table */
5630 for (len = 1, p = env; (p = strchr (p, ':')); )
5631 if (*++p)
5632 len++;
5633 TEX_toktab = xnew (len, linebuffer);
5635 /* Unpack environment string into token table. Be careful about */
5636 /* zero-length strings (leading ':', "::" and trailing ':') */
5637 for (i = 0; *env != '\0';)
5639 p = strchr (env, ':');
5640 if (!p) /* End of environment string. */
5641 p = env + strlen (env);
5642 if (p - env > 0)
5643 { /* Only non-zero strings. */
5644 TEX_toktab[i].buffer = savenstr (env, p - env);
5645 TEX_toktab[i].len = p - env;
5646 i++;
5648 if (*p)
5649 env = p + 1;
5650 else
5652 TEX_toktab[i].buffer = NULL; /* Mark end of table. */
5653 TEX_toktab[i].len = 0;
5654 break;
5660 /* Texinfo support. Dave Love, Mar. 2000. */
5661 static void
5662 Texinfo_nodes (FILE *inf)
5664 char *cp, *start;
5665 LOOP_ON_INPUT_LINES (inf, lb, cp)
5666 if (LOOKING_AT (cp, "@node"))
5668 start = cp;
5669 while (*cp != '\0' && *cp != ',')
5670 cp++;
5671 make_tag (start, cp - start, true,
5672 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
5678 * HTML support.
5679 * Contents of <title>, <h1>, <h2>, <h3> are tags.
5680 * Contents of <a name=xxx> are tags with name xxx.
5682 * Francesco Potortì, 2002.
5684 static void
5685 HTML_labels (FILE *inf)
5687 bool getnext = false; /* next text outside of HTML tags is a tag */
5688 bool skiptag = false; /* skip to the end of the current HTML tag */
5689 bool intag = false; /* inside an html tag, looking for ID= */
5690 bool inanchor = false; /* when INTAG, is an anchor, look for NAME= */
5691 char *end;
5694 linebuffer_setlen (&token_name, 0); /* no name in buffer */
5696 LOOP_ON_INPUT_LINES (inf, lb, dbp)
5697 for (;;) /* loop on the same line */
5699 if (skiptag) /* skip HTML tag */
5701 while (*dbp != '\0' && *dbp != '>')
5702 dbp++;
5703 if (*dbp == '>')
5705 dbp += 1;
5706 skiptag = false;
5707 continue; /* look on the same line */
5709 break; /* go to next line */
5712 else if (intag) /* look for "name=" or "id=" */
5714 while (*dbp != '\0' && *dbp != '>'
5715 && c_tolower (*dbp) != 'n' && c_tolower (*dbp) != 'i')
5716 dbp++;
5717 if (*dbp == '\0')
5718 break; /* go to next line */
5719 if (*dbp == '>')
5721 dbp += 1;
5722 intag = false;
5723 continue; /* look on the same line */
5725 if ((inanchor && LOOKING_AT_NOCASE (dbp, "name="))
5726 || LOOKING_AT_NOCASE (dbp, "id="))
5728 bool quoted = (dbp[0] == '"');
5730 if (quoted)
5731 for (end = ++dbp; *end != '\0' && *end != '"'; end++)
5732 continue;
5733 else
5734 for (end = dbp; *end != '\0' && intoken (*end); end++)
5735 continue;
5736 linebuffer_setlen (&token_name, end - dbp);
5737 memcpy (token_name.buffer, dbp, end - dbp);
5738 token_name.buffer[end - dbp] = '\0';
5740 dbp = end;
5741 intag = false; /* we found what we looked for */
5742 skiptag = true; /* skip to the end of the tag */
5743 getnext = true; /* then grab the text */
5744 continue; /* look on the same line */
5746 dbp += 1;
5749 else if (getnext) /* grab next tokens and tag them */
5751 dbp = skip_spaces (dbp);
5752 if (*dbp == '\0')
5753 break; /* go to next line */
5754 if (*dbp == '<')
5756 intag = true;
5757 inanchor = (c_tolower (dbp[1]) == 'a' && !intoken (dbp[2]));
5758 continue; /* look on the same line */
5761 for (end = dbp + 1; *end != '\0' && *end != '<'; end++)
5762 continue;
5763 make_tag (token_name.buffer, token_name.len, true,
5764 dbp, end - dbp, lineno, linecharno);
5765 linebuffer_setlen (&token_name, 0); /* no name in buffer */
5766 getnext = false;
5767 break; /* go to next line */
5770 else /* look for an interesting HTML tag */
5772 while (*dbp != '\0' && *dbp != '<')
5773 dbp++;
5774 if (*dbp == '\0')
5775 break; /* go to next line */
5776 intag = true;
5777 if (c_tolower (dbp[1]) == 'a' && !intoken (dbp[2]))
5779 inanchor = true;
5780 continue; /* look on the same line */
5782 else if (LOOKING_AT_NOCASE (dbp, "<title>")
5783 || LOOKING_AT_NOCASE (dbp, "<h1>")
5784 || LOOKING_AT_NOCASE (dbp, "<h2>")
5785 || LOOKING_AT_NOCASE (dbp, "<h3>"))
5787 intag = false;
5788 getnext = true;
5789 continue; /* look on the same line */
5791 dbp += 1;
5798 * Prolog support
5800 * Assumes that the predicate or rule starts at column 0.
5801 * Only the first clause of a predicate or rule is added.
5802 * Original code by Sunichirou Sugou (1989)
5803 * Rewritten by Anders Lindgren (1996)
5805 static size_t prolog_pr (char *, char *);
5806 static void prolog_skip_comment (linebuffer *, FILE *);
5807 static size_t prolog_atom (char *, size_t);
5809 static void
5810 Prolog_functions (FILE *inf)
5812 char *cp, *last;
5813 size_t len;
5814 size_t allocated;
5816 allocated = 0;
5817 len = 0;
5818 last = NULL;
5820 LOOP_ON_INPUT_LINES (inf, lb, cp)
5822 if (cp[0] == '\0') /* Empty line */
5823 continue;
5824 else if (c_isspace (cp[0])) /* Not a predicate */
5825 continue;
5826 else if (cp[0] == '/' && cp[1] == '*') /* comment. */
5827 prolog_skip_comment (&lb, inf);
5828 else if ((len = prolog_pr (cp, last)) > 0)
5830 /* Predicate or rule. Store the function name so that we
5831 only generate a tag for the first clause. */
5832 if (last == NULL)
5833 last = xnew (len + 1, char);
5834 else if (len + 1 > allocated)
5835 xrnew (last, len + 1, char);
5836 allocated = len + 1;
5837 memcpy (last, cp, len);
5838 last[len] = '\0';
5841 free (last);
5845 static void
5846 prolog_skip_comment (linebuffer *plb, FILE *inf)
5848 char *cp;
5852 for (cp = plb->buffer; *cp != '\0'; cp++)
5853 if (cp[0] == '*' && cp[1] == '/')
5854 return;
5855 readline (plb, inf);
5857 while (perhaps_more_input (inf));
5861 * A predicate or rule definition is added if it matches:
5862 * <beginning of line><Prolog Atom><whitespace>(
5863 * or <beginning of line><Prolog Atom><whitespace>:-
5865 * It is added to the tags database if it doesn't match the
5866 * name of the previous clause header.
5868 * Return the size of the name of the predicate or rule, or 0 if no
5869 * header was found.
5871 static size_t
5872 prolog_pr (char *s, char *last)
5874 /* Name of last clause. */
5876 size_t pos;
5877 size_t len;
5879 pos = prolog_atom (s, 0);
5880 if (! pos)
5881 return 0;
5883 len = pos;
5884 pos = skip_spaces (s + pos) - s;
5886 if ((s[pos] == '.'
5887 || (s[pos] == '(' && (pos += 1))
5888 || (s[pos] == ':' && s[pos + 1] == '-' && (pos += 2)))
5889 && (last == NULL /* save only the first clause */
5890 || len != strlen (last)
5891 || !strneq (s, last, len)))
5893 make_tag (s, len, true, s, pos, lineno, linecharno);
5894 return len;
5896 else
5897 return 0;
5901 * Consume a Prolog atom.
5902 * Return the number of bytes consumed, or 0 if there was an error.
5904 * A prolog atom, in this context, could be one of:
5905 * - An alphanumeric sequence, starting with a lower case letter.
5906 * - A quoted arbitrary string. Single quotes can escape themselves.
5907 * Backslash quotes everything.
5909 static size_t
5910 prolog_atom (char *s, size_t pos)
5912 size_t origpos;
5914 origpos = pos;
5916 if (c_islower (s[pos]) || s[pos] == '_')
5918 /* The atom is unquoted. */
5919 pos++;
5920 while (c_isalnum (s[pos]) || s[pos] == '_')
5922 pos++;
5924 return pos - origpos;
5926 else if (s[pos] == '\'')
5928 pos++;
5930 for (;;)
5932 if (s[pos] == '\'')
5934 pos++;
5935 if (s[pos] != '\'')
5936 break;
5937 pos++; /* A double quote */
5939 else if (s[pos] == '\0')
5940 /* Multiline quoted atoms are ignored. */
5941 return 0;
5942 else if (s[pos] == '\\')
5944 if (s[pos+1] == '\0')
5945 return 0;
5946 pos += 2;
5948 else
5949 pos++;
5951 return pos - origpos;
5953 else
5954 return 0;
5959 * Support for Erlang
5961 * Generates tags for functions, defines, and records.
5962 * Assumes that Erlang functions start at column 0.
5963 * Original code by Anders Lindgren (1996)
5965 static int erlang_func (char *, char *);
5966 static void erlang_attribute (char *);
5967 static int erlang_atom (char *);
5969 static void
5970 Erlang_functions (FILE *inf)
5972 char *cp, *last;
5973 int len;
5974 int allocated;
5976 allocated = 0;
5977 len = 0;
5978 last = NULL;
5980 LOOP_ON_INPUT_LINES (inf, lb, cp)
5982 if (cp[0] == '\0') /* Empty line */
5983 continue;
5984 else if (c_isspace (cp[0])) /* Not function nor attribute */
5985 continue;
5986 else if (cp[0] == '%') /* comment */
5987 continue;
5988 else if (cp[0] == '"') /* Sometimes, strings start in column one */
5989 continue;
5990 else if (cp[0] == '-') /* attribute, e.g. "-define" */
5992 erlang_attribute (cp);
5993 if (last != NULL)
5995 free (last);
5996 last = NULL;
5999 else if ((len = erlang_func (cp, last)) > 0)
6002 * Function. Store the function name so that we only
6003 * generates a tag for the first clause.
6005 if (last == NULL)
6006 last = xnew (len + 1, char);
6007 else if (len + 1 > allocated)
6008 xrnew (last, len + 1, char);
6009 allocated = len + 1;
6010 memcpy (last, cp, len);
6011 last[len] = '\0';
6014 free (last);
6019 * A function definition is added if it matches:
6020 * <beginning of line><Erlang Atom><whitespace>(
6022 * It is added to the tags database if it doesn't match the
6023 * name of the previous clause header.
6025 * Return the size of the name of the function, or 0 if no function
6026 * was found.
6028 static int
6029 erlang_func (char *s, char *last)
6031 /* Name of last clause. */
6033 int pos;
6034 int len;
6036 pos = erlang_atom (s);
6037 if (pos < 1)
6038 return 0;
6040 len = pos;
6041 pos = skip_spaces (s + pos) - s;
6043 /* Save only the first clause. */
6044 if (s[pos++] == '('
6045 && (last == NULL
6046 || len != (int)strlen (last)
6047 || !strneq (s, last, len)))
6049 make_tag (s, len, true, s, pos, lineno, linecharno);
6050 return len;
6053 return 0;
6058 * Handle attributes. Currently, tags are generated for defines
6059 * and records.
6061 * They are on the form:
6062 * -define(foo, bar).
6063 * -define(Foo(M, N), M+N).
6064 * -record(graph, {vtab = notable, cyclic = true}).
6066 static void
6067 erlang_attribute (char *s)
6069 char *cp = s;
6071 if ((LOOKING_AT (cp, "-define") || LOOKING_AT (cp, "-record"))
6072 && *cp++ == '(')
6074 int len = erlang_atom (skip_spaces (cp));
6075 if (len > 0)
6076 make_tag (cp, len, true, s, cp + len - s, lineno, linecharno);
6078 return;
6083 * Consume an Erlang atom (or variable).
6084 * Return the number of bytes consumed, or -1 if there was an error.
6086 static int
6087 erlang_atom (char *s)
6089 int pos = 0;
6091 if (c_isalpha (s[pos]) || s[pos] == '_')
6093 /* The atom is unquoted. */
6095 pos++;
6096 while (c_isalnum (s[pos]) || s[pos] == '_');
6098 else if (s[pos] == '\'')
6100 for (pos++; s[pos] != '\''; pos++)
6101 if (s[pos] == '\0' /* multiline quoted atoms are ignored */
6102 || (s[pos] == '\\' && s[++pos] == '\0'))
6103 return 0;
6104 pos++;
6107 return pos;
6111 static char *scan_separators (char *);
6112 static void add_regex (char *, language *);
6113 static char *substitute (char *, char *, struct re_registers *);
6116 * Take a string like "/blah/" and turn it into "blah", verifying
6117 * that the first and last characters are the same, and handling
6118 * quoted separator characters. Actually, stops on the occurrence of
6119 * an unquoted separator. Also process \t, \n, etc. and turn into
6120 * appropriate characters. Works in place. Null terminates name string.
6121 * Returns pointer to terminating separator, or NULL for
6122 * unterminated regexps.
6124 static char *
6125 scan_separators (char *name)
6127 char sep = name[0];
6128 char *copyto = name;
6129 bool quoted = false;
6131 for (++name; *name != '\0'; ++name)
6133 if (quoted)
6135 switch (*name)
6137 case 'a': *copyto++ = '\007'; break; /* BEL (bell) */
6138 case 'b': *copyto++ = '\b'; break; /* BS (back space) */
6139 case 'd': *copyto++ = 0177; break; /* DEL (delete) */
6140 case 'e': *copyto++ = 033; break; /* ESC (delete) */
6141 case 'f': *copyto++ = '\f'; break; /* FF (form feed) */
6142 case 'n': *copyto++ = '\n'; break; /* NL (new line) */
6143 case 'r': *copyto++ = '\r'; break; /* CR (carriage return) */
6144 case 't': *copyto++ = '\t'; break; /* TAB (horizontal tab) */
6145 case 'v': *copyto++ = '\v'; break; /* VT (vertical tab) */
6146 default:
6147 if (*name == sep)
6148 *copyto++ = sep;
6149 else
6151 /* Something else is quoted, so preserve the quote. */
6152 *copyto++ = '\\';
6153 *copyto++ = *name;
6155 break;
6157 quoted = false;
6159 else if (*name == '\\')
6160 quoted = true;
6161 else if (*name == sep)
6162 break;
6163 else
6164 *copyto++ = *name;
6166 if (*name != sep)
6167 name = NULL; /* signal unterminated regexp */
6169 /* Terminate copied string. */
6170 *copyto = '\0';
6171 return name;
6174 /* Look at the argument of --regex or --no-regex and do the right
6175 thing. Same for each line of a regexp file. */
6176 static void
6177 analyze_regex (char *regex_arg)
6179 if (regex_arg == NULL)
6181 free_regexps (); /* --no-regex: remove existing regexps */
6182 return;
6185 /* A real --regexp option or a line in a regexp file. */
6186 switch (regex_arg[0])
6188 /* Comments in regexp file or null arg to --regex. */
6189 case '\0':
6190 case ' ':
6191 case '\t':
6192 break;
6194 /* Read a regex file. This is recursive and may result in a
6195 loop, which will stop when the file descriptors are exhausted. */
6196 case '@':
6198 FILE *regexfp;
6199 linebuffer regexbuf;
6200 char *regexfile = regex_arg + 1;
6202 /* regexfile is a file containing regexps, one per line. */
6203 regexfp = fopen (regexfile, "r" FOPEN_BINARY);
6204 if (regexfp == NULL)
6205 pfatal (regexfile);
6206 linebuffer_init (&regexbuf);
6207 while (readline_internal (&regexbuf, regexfp, regexfile) > 0)
6208 analyze_regex (regexbuf.buffer);
6209 free (regexbuf.buffer);
6210 if (fclose (regexfp) != 0)
6211 pfatal (regexfile);
6213 break;
6215 /* Regexp to be used for a specific language only. */
6216 case '{':
6218 language *lang;
6219 char *lang_name = regex_arg + 1;
6220 char *cp;
6222 for (cp = lang_name; *cp != '}'; cp++)
6223 if (*cp == '\0')
6225 error ("unterminated language name in regex: %s", regex_arg);
6226 return;
6228 *cp++ = '\0';
6229 lang = get_language_from_langname (lang_name);
6230 if (lang == NULL)
6231 return;
6232 add_regex (cp, lang);
6234 break;
6236 /* Regexp to be used for any language. */
6237 default:
6238 add_regex (regex_arg, NULL);
6239 break;
6243 /* Separate the regexp pattern, compile it,
6244 and care for optional name and modifiers. */
6245 static void
6246 add_regex (char *regexp_pattern, language *lang)
6248 static struct re_pattern_buffer zeropattern;
6249 char sep, *pat, *name, *modifiers;
6250 char empty = '\0';
6251 const char *err;
6252 struct re_pattern_buffer *patbuf;
6253 regexp *rp;
6254 bool
6255 force_explicit_name = true, /* do not use implicit tag names */
6256 ignore_case = false, /* case is significant */
6257 multi_line = false, /* matches are done one line at a time */
6258 single_line = false; /* dot does not match newline */
6261 if (strlen (regexp_pattern) < 3)
6263 error ("null regexp");
6264 return;
6266 sep = regexp_pattern[0];
6267 name = scan_separators (regexp_pattern);
6268 if (name == NULL)
6270 error ("%s: unterminated regexp", regexp_pattern);
6271 return;
6273 if (name[1] == sep)
6275 error ("null name for regexp \"%s\"", regexp_pattern);
6276 return;
6278 modifiers = scan_separators (name);
6279 if (modifiers == NULL) /* no terminating separator --> no name */
6281 modifiers = name;
6282 name = &empty;
6284 else
6285 modifiers += 1; /* skip separator */
6287 /* Parse regex modifiers. */
6288 for (; modifiers[0] != '\0'; modifiers++)
6289 switch (modifiers[0])
6291 case 'N':
6292 if (modifiers == name)
6293 error ("forcing explicit tag name but no name, ignoring");
6294 force_explicit_name = true;
6295 break;
6296 case 'i':
6297 ignore_case = true;
6298 break;
6299 case 's':
6300 single_line = true;
6301 /* FALLTHRU */
6302 case 'm':
6303 multi_line = true;
6304 need_filebuf = true;
6305 break;
6306 default:
6307 error ("invalid regexp modifier '%c', ignoring", modifiers[0]);
6308 break;
6311 patbuf = xnew (1, struct re_pattern_buffer);
6312 *patbuf = zeropattern;
6313 if (ignore_case)
6315 static char lc_trans[UCHAR_MAX + 1];
6316 int i;
6317 for (i = 0; i < UCHAR_MAX + 1; i++)
6318 lc_trans[i] = c_tolower (i);
6319 patbuf->translate = lc_trans; /* translation table to fold case */
6322 if (multi_line)
6323 pat = concat ("^", regexp_pattern, ""); /* anchor to beginning of line */
6324 else
6325 pat = regexp_pattern;
6327 if (single_line)
6328 re_set_syntax (RE_SYNTAX_EMACS | RE_DOT_NEWLINE);
6329 else
6330 re_set_syntax (RE_SYNTAX_EMACS);
6332 err = re_compile_pattern (pat, strlen (pat), patbuf);
6333 if (multi_line)
6334 free (pat);
6335 if (err != NULL)
6337 error ("%s while compiling pattern", err);
6338 return;
6341 rp = p_head;
6342 p_head = xnew (1, regexp);
6343 p_head->pattern = savestr (regexp_pattern);
6344 p_head->p_next = rp;
6345 p_head->lang = lang;
6346 p_head->pat = patbuf;
6347 p_head->name = savestr (name);
6348 p_head->error_signaled = false;
6349 p_head->force_explicit_name = force_explicit_name;
6350 p_head->ignore_case = ignore_case;
6351 p_head->multi_line = multi_line;
6355 * Do the substitutions indicated by the regular expression and
6356 * arguments.
6358 static char *
6359 substitute (char *in, char *out, struct re_registers *regs)
6361 char *result, *t;
6362 int size, dig, diglen;
6364 result = NULL;
6365 size = strlen (out);
6367 /* Pass 1: figure out how much to allocate by finding all \N strings. */
6368 if (out[size - 1] == '\\')
6369 fatal ("pattern error in \"%s\"", out);
6370 for (t = strchr (out, '\\');
6371 t != NULL;
6372 t = strchr (t + 2, '\\'))
6373 if (c_isdigit (t[1]))
6375 dig = t[1] - '0';
6376 diglen = regs->end[dig] - regs->start[dig];
6377 size += diglen - 2;
6379 else
6380 size -= 1;
6382 /* Allocate space and do the substitutions. */
6383 assert (size >= 0);
6384 result = xnew (size + 1, char);
6386 for (t = result; *out != '\0'; out++)
6387 if (*out == '\\' && c_isdigit (*++out))
6389 dig = *out - '0';
6390 diglen = regs->end[dig] - regs->start[dig];
6391 memcpy (t, in + regs->start[dig], diglen);
6392 t += diglen;
6394 else
6395 *t++ = *out;
6396 *t = '\0';
6398 assert (t <= result + size);
6399 assert (t - result == (int)strlen (result));
6401 return result;
6404 /* Deallocate all regexps. */
6405 static void
6406 free_regexps (void)
6408 regexp *rp;
6409 while (p_head != NULL)
6411 rp = p_head->p_next;
6412 free (p_head->pattern);
6413 free (p_head->name);
6414 free (p_head);
6415 p_head = rp;
6417 return;
6421 * Reads the whole file as a single string from `filebuf' and looks for
6422 * multi-line regular expressions, creating tags on matches.
6423 * readline already dealt with normal regexps.
6425 * Idea by Ben Wing <ben@666.com> (2002).
6427 static void
6428 regex_tag_multiline (void)
6430 char *buffer = filebuf.buffer;
6431 regexp *rp;
6432 char *name;
6434 for (rp = p_head; rp != NULL; rp = rp->p_next)
6436 int match = 0;
6438 if (!rp->multi_line)
6439 continue; /* skip normal regexps */
6441 /* Generic initializations before parsing file from memory. */
6442 lineno = 1; /* reset global line number */
6443 charno = 0; /* reset global char number */
6444 linecharno = 0; /* reset global char number of line start */
6446 /* Only use generic regexps or those for the current language. */
6447 if (rp->lang != NULL && rp->lang != curfdp->lang)
6448 continue;
6450 while (match >= 0 && match < filebuf.len)
6452 match = re_search (rp->pat, buffer, filebuf.len, charno,
6453 filebuf.len - match, &rp->regs);
6454 switch (match)
6456 case -2:
6457 /* Some error. */
6458 if (!rp->error_signaled)
6460 error ("regexp stack overflow while matching \"%s\"",
6461 rp->pattern);
6462 rp->error_signaled = true;
6464 break;
6465 case -1:
6466 /* No match. */
6467 break;
6468 default:
6469 if (match == rp->regs.end[0])
6471 if (!rp->error_signaled)
6473 error ("regexp matches the empty string: \"%s\"",
6474 rp->pattern);
6475 rp->error_signaled = true;
6477 match = -3; /* exit from while loop */
6478 break;
6481 /* Match occurred. Construct a tag. */
6482 while (charno < rp->regs.end[0])
6483 if (buffer[charno++] == '\n')
6484 lineno++, linecharno = charno;
6485 name = rp->name;
6486 if (name[0] == '\0')
6487 name = NULL;
6488 else /* make a named tag */
6489 name = substitute (buffer, rp->name, &rp->regs);
6490 if (rp->force_explicit_name)
6491 /* Force explicit tag name, if a name is there. */
6492 pfnote (name, true, buffer + linecharno,
6493 charno - linecharno + 1, lineno, linecharno);
6494 else
6495 make_tag (name, strlen (name), true, buffer + linecharno,
6496 charno - linecharno + 1, lineno, linecharno);
6497 break;
6504 static bool
6505 nocase_tail (const char *cp)
6507 int len = 0;
6509 while (*cp != '\0' && c_tolower (*cp) == c_tolower (dbp[len]))
6510 cp++, len++;
6511 if (*cp == '\0' && !intoken (dbp[len]))
6513 dbp += len;
6514 return true;
6516 return false;
6519 static void
6520 get_tag (register char *bp, char **namepp)
6522 register char *cp = bp;
6524 if (*bp != '\0')
6526 /* Go till you get to white space or a syntactic break */
6527 for (cp = bp + 1; !notinname (*cp); cp++)
6528 continue;
6529 make_tag (bp, cp - bp, true,
6530 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
6533 if (namepp != NULL)
6534 *namepp = savenstr (bp, cp - bp);
6538 * Read a line of text from `stream' into `lbp', excluding the
6539 * newline or CR-NL, if any. Return the number of characters read from
6540 * `stream', which is the length of the line including the newline.
6542 * On DOS or Windows we do not count the CR character, if any before the
6543 * NL, in the returned length; this mirrors the behavior of Emacs on those
6544 * platforms (for text files, it translates CR-NL to NL as it reads in the
6545 * file).
6547 * If multi-line regular expressions are requested, each line read is
6548 * appended to `filebuf'.
6550 static long
6551 readline_internal (linebuffer *lbp, FILE *stream, char const *filename)
6553 char *buffer = lbp->buffer;
6554 char *p = lbp->buffer;
6555 char *pend;
6556 int chars_deleted;
6558 pend = p + lbp->size; /* Separate to avoid 386/IX compiler bug. */
6560 for (;;)
6562 register int c = getc (stream);
6563 if (p == pend)
6565 /* We're at the end of linebuffer: expand it. */
6566 lbp->size *= 2;
6567 xrnew (buffer, lbp->size, char);
6568 p += buffer - lbp->buffer;
6569 pend = buffer + lbp->size;
6570 lbp->buffer = buffer;
6572 if (c == EOF)
6574 if (ferror (stream))
6575 perror (filename);
6576 *p = '\0';
6577 chars_deleted = 0;
6578 break;
6580 if (c == '\n')
6582 if (p > buffer && p[-1] == '\r')
6584 p -= 1;
6585 chars_deleted = 2;
6587 else
6589 chars_deleted = 1;
6591 *p = '\0';
6592 break;
6594 *p++ = c;
6596 lbp->len = p - buffer;
6598 if (need_filebuf /* we need filebuf for multi-line regexps */
6599 && chars_deleted > 0) /* not at EOF */
6601 while (filebuf.size <= filebuf.len + lbp->len + 1) /* +1 for \n */
6603 /* Expand filebuf. */
6604 filebuf.size *= 2;
6605 xrnew (filebuf.buffer, filebuf.size, char);
6607 memcpy (filebuf.buffer + filebuf.len, lbp->buffer, lbp->len);
6608 filebuf.len += lbp->len;
6609 filebuf.buffer[filebuf.len++] = '\n';
6610 filebuf.buffer[filebuf.len] = '\0';
6613 return lbp->len + chars_deleted;
6617 * Like readline_internal, above, but in addition try to match the
6618 * input line against relevant regular expressions and manage #line
6619 * directives.
6621 static void
6622 readline (linebuffer *lbp, FILE *stream)
6624 long result;
6626 linecharno = charno; /* update global char number of line start */
6627 result = readline_internal (lbp, stream, infilename); /* read line */
6628 lineno += 1; /* increment global line number */
6629 charno += result; /* increment global char number */
6631 /* Honor #line directives. */
6632 if (!no_line_directive)
6634 static bool discard_until_line_directive;
6636 /* Check whether this is a #line directive. */
6637 if (result > 12 && strneq (lbp->buffer, "#line ", 6))
6639 unsigned int lno;
6640 int start = 0;
6642 if (sscanf (lbp->buffer, "#line %u \"%n", &lno, &start) >= 1
6643 && start > 0) /* double quote character found */
6645 char *endp = lbp->buffer + start;
6647 while ((endp = strchr (endp, '"')) != NULL
6648 && endp[-1] == '\\')
6649 endp++;
6650 if (endp != NULL)
6651 /* Ok, this is a real #line directive. Let's deal with it. */
6653 char *taggedabsname; /* absolute name of original file */
6654 char *taggedfname; /* name of original file as given */
6655 char *name; /* temp var */
6657 discard_until_line_directive = false; /* found it */
6658 name = lbp->buffer + start;
6659 *endp = '\0';
6660 canonicalize_filename (name);
6661 taggedabsname = absolute_filename (name, tagfiledir);
6662 if (filename_is_absolute (name)
6663 || filename_is_absolute (curfdp->infname))
6664 taggedfname = savestr (taggedabsname);
6665 else
6666 taggedfname = relative_filename (taggedabsname,tagfiledir);
6668 if (streq (curfdp->taggedfname, taggedfname))
6669 /* The #line directive is only a line number change. We
6670 deal with this afterwards. */
6671 free (taggedfname);
6672 else
6673 /* The tags following this #line directive should be
6674 attributed to taggedfname. In order to do this, set
6675 curfdp accordingly. */
6677 fdesc *fdp; /* file description pointer */
6679 /* Go look for a file description already set up for the
6680 file indicated in the #line directive. If there is
6681 one, use it from now until the next #line
6682 directive. */
6683 for (fdp = fdhead; fdp != NULL; fdp = fdp->next)
6684 if (streq (fdp->infname, curfdp->infname)
6685 && streq (fdp->taggedfname, taggedfname))
6686 /* If we remove the second test above (after the &&)
6687 then all entries pertaining to the same file are
6688 coalesced in the tags file. If we use it, then
6689 entries pertaining to the same file but generated
6690 from different files (via #line directives) will
6691 go into separate sections in the tags file. These
6692 alternatives look equivalent. The first one
6693 destroys some apparently useless information. */
6695 curfdp = fdp;
6696 free (taggedfname);
6697 break;
6699 /* Else, if we already tagged the real file, skip all
6700 input lines until the next #line directive. */
6701 if (fdp == NULL) /* not found */
6702 for (fdp = fdhead; fdp != NULL; fdp = fdp->next)
6703 if (streq (fdp->infabsname, taggedabsname))
6705 discard_until_line_directive = true;
6706 free (taggedfname);
6707 break;
6709 /* Else create a new file description and use that from
6710 now on, until the next #line directive. */
6711 if (fdp == NULL) /* not found */
6713 fdp = fdhead;
6714 fdhead = xnew (1, fdesc);
6715 *fdhead = *curfdp; /* copy curr. file description */
6716 fdhead->next = fdp;
6717 fdhead->infname = savestr (curfdp->infname);
6718 fdhead->infabsname = savestr (curfdp->infabsname);
6719 fdhead->infabsdir = savestr (curfdp->infabsdir);
6720 fdhead->taggedfname = taggedfname;
6721 fdhead->usecharno = false;
6722 fdhead->prop = NULL;
6723 fdhead->written = false;
6724 curfdp = fdhead;
6727 free (taggedabsname);
6728 lineno = lno - 1;
6729 readline (lbp, stream);
6730 return;
6731 } /* if a real #line directive */
6732 } /* if #line is followed by a number */
6733 } /* if line begins with "#line " */
6735 /* If we are here, no #line directive was found. */
6736 if (discard_until_line_directive)
6738 if (result > 0)
6740 /* Do a tail recursion on ourselves, thus discarding the contents
6741 of the line buffer. */
6742 readline (lbp, stream);
6743 return;
6745 /* End of file. */
6746 discard_until_line_directive = false;
6747 return;
6749 } /* if #line directives should be considered */
6752 int match;
6753 regexp *rp;
6754 char *name;
6756 /* Match against relevant regexps. */
6757 if (lbp->len > 0)
6758 for (rp = p_head; rp != NULL; rp = rp->p_next)
6760 /* Only use generic regexps or those for the current language.
6761 Also do not use multiline regexps, which is the job of
6762 regex_tag_multiline. */
6763 if ((rp->lang != NULL && rp->lang != fdhead->lang)
6764 || rp->multi_line)
6765 continue;
6767 match = re_match (rp->pat, lbp->buffer, lbp->len, 0, &rp->regs);
6768 switch (match)
6770 case -2:
6771 /* Some error. */
6772 if (!rp->error_signaled)
6774 error ("regexp stack overflow while matching \"%s\"",
6775 rp->pattern);
6776 rp->error_signaled = true;
6778 break;
6779 case -1:
6780 /* No match. */
6781 break;
6782 case 0:
6783 /* Empty string matched. */
6784 if (!rp->error_signaled)
6786 error ("regexp matches the empty string: \"%s\"", rp->pattern);
6787 rp->error_signaled = true;
6789 break;
6790 default:
6791 /* Match occurred. Construct a tag. */
6792 name = rp->name;
6793 if (name[0] == '\0')
6794 name = NULL;
6795 else /* make a named tag */
6796 name = substitute (lbp->buffer, rp->name, &rp->regs);
6797 if (rp->force_explicit_name)
6798 /* Force explicit tag name, if a name is there. */
6799 pfnote (name, true, lbp->buffer, match, lineno, linecharno);
6800 else
6801 make_tag (name, strlen (name), true,
6802 lbp->buffer, match, lineno, linecharno);
6803 break;
6811 * Return a pointer to a space of size strlen(cp)+1 allocated
6812 * with xnew where the string CP has been copied.
6814 static char *
6815 savestr (const char *cp)
6817 return savenstr (cp, strlen (cp));
6821 * Return a pointer to a space of size LEN+1 allocated with xnew where
6822 * the string CP has been copied for at most the first LEN characters.
6824 static char *
6825 savenstr (const char *cp, int len)
6827 char *dp = xnew (len + 1, char);
6828 dp[len] = '\0';
6829 return memcpy (dp, cp, len);
6832 /* Skip spaces (end of string is not space), return new pointer. */
6833 static char *
6834 skip_spaces (char *cp)
6836 while (c_isspace (*cp))
6837 cp++;
6838 return cp;
6841 /* Skip non spaces, except end of string, return new pointer. */
6842 static char *
6843 skip_non_spaces (char *cp)
6845 while (*cp != '\0' && !c_isspace (*cp))
6846 cp++;
6847 return cp;
6850 /* Skip any chars in the "name" class.*/
6851 static char *
6852 skip_name (char *cp)
6854 /* '\0' is a notinname() so loop stops there too */
6855 while (! notinname (*cp))
6856 cp++;
6857 return cp;
6860 /* Print error message and exit. */
6861 static void
6862 fatal (char const *format, ...)
6864 va_list ap;
6865 va_start (ap, format);
6866 verror (format, ap);
6867 va_end (ap);
6868 exit (EXIT_FAILURE);
6871 static void
6872 pfatal (const char *s1)
6874 perror (s1);
6875 exit (EXIT_FAILURE);
6878 static void
6879 suggest_asking_for_help (void)
6881 fprintf (stderr, "\tTry '%s --help' for a complete list of options.\n",
6882 progname);
6883 exit (EXIT_FAILURE);
6886 /* Output a diagnostic with printf-style FORMAT and args. */
6887 static void
6888 error (const char *format, ...)
6890 va_list ap;
6891 va_start (ap, format);
6892 verror (format, ap);
6893 va_end (ap);
6896 static void
6897 verror (char const *format, va_list ap)
6899 fprintf (stderr, "%s: ", progname);
6900 vfprintf (stderr, format, ap);
6901 fprintf (stderr, "\n");
6904 /* Return a newly-allocated string whose contents
6905 concatenate those of s1, s2, s3. */
6906 static char *
6907 concat (const char *s1, const char *s2, const char *s3)
6909 int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3);
6910 char *result = xnew (len1 + len2 + len3 + 1, char);
6912 strcpy (result, s1);
6913 strcpy (result + len1, s2);
6914 strcpy (result + len1 + len2, s3);
6916 return result;
6920 /* Does the same work as the system V getcwd, but does not need to
6921 guess the buffer size in advance. */
6922 static char *
6923 etags_getcwd (void)
6925 int bufsize = 200;
6926 char *path = xnew (bufsize, char);
6928 while (getcwd (path, bufsize) == NULL)
6930 if (errno != ERANGE)
6931 pfatal ("getcwd");
6932 bufsize *= 2;
6933 free (path);
6934 path = xnew (bufsize, char);
6937 canonicalize_filename (path);
6938 return path;
6941 /* Return a newly allocated string containing a name of a temporary file. */
6942 static char *
6943 etags_mktmp (void)
6945 const char *tmpdir = getenv ("TMPDIR");
6946 const char *slash = "/";
6948 #if MSDOS || defined (DOS_NT)
6949 if (!tmpdir)
6950 tmpdir = getenv ("TEMP");
6951 if (!tmpdir)
6952 tmpdir = getenv ("TMP");
6953 if (!tmpdir)
6954 tmpdir = ".";
6955 if (tmpdir[strlen (tmpdir) - 1] == '/'
6956 || tmpdir[strlen (tmpdir) - 1] == '\\')
6957 slash = "";
6958 #else
6959 if (!tmpdir)
6960 tmpdir = "/tmp";
6961 if (tmpdir[strlen (tmpdir) - 1] == '/')
6962 slash = "";
6963 #endif
6965 char *templt = concat (tmpdir, slash, "etXXXXXX");
6966 int fd = mkostemp (templt, O_CLOEXEC);
6967 if (fd < 0 || close (fd) != 0)
6969 int temp_errno = errno;
6970 free (templt);
6971 errno = temp_errno;
6972 templt = NULL;
6975 #if defined (DOS_NT)
6976 /* The file name will be used in shell redirection, so it needs to have
6977 DOS-style backslashes, or else the Windows shell will barf. */
6978 char *p;
6979 for (p = templt; *p; p++)
6980 if (*p == '/')
6981 *p = '\\';
6982 #endif
6984 return templt;
6987 /* Return a newly allocated string containing the file name of FILE
6988 relative to the absolute directory DIR (which should end with a slash). */
6989 static char *
6990 relative_filename (char *file, char *dir)
6992 char *fp, *dp, *afn, *res;
6993 int i;
6995 /* Find the common root of file and dir (with a trailing slash). */
6996 afn = absolute_filename (file, cwd);
6997 fp = afn;
6998 dp = dir;
6999 while (*fp++ == *dp++)
7000 continue;
7001 fp--, dp--; /* back to the first differing char */
7002 #ifdef DOS_NT
7003 if (fp == afn && afn[0] != '/') /* cannot build a relative name */
7004 return afn;
7005 #endif
7006 do /* look at the equal chars until '/' */
7007 fp--, dp--;
7008 while (*fp != '/');
7010 /* Build a sequence of "../" strings for the resulting relative file name. */
7011 i = 0;
7012 while ((dp = strchr (dp + 1, '/')) != NULL)
7013 i += 1;
7014 res = xnew (3*i + strlen (fp + 1) + 1, char);
7015 char *z = res;
7016 while (i-- > 0)
7017 z = stpcpy (z, "../");
7019 /* Add the file name relative to the common root of file and dir. */
7020 strcpy (z, fp + 1);
7021 free (afn);
7023 return res;
7026 /* Return a newly allocated string containing the absolute file name
7027 of FILE given DIR (which should end with a slash). */
7028 static char *
7029 absolute_filename (char *file, char *dir)
7031 char *slashp, *cp, *res;
7033 if (filename_is_absolute (file))
7034 res = savestr (file);
7035 #ifdef DOS_NT
7036 /* We don't support non-absolute file names with a drive
7037 letter, like `d:NAME' (it's too much hassle). */
7038 else if (file[1] == ':')
7039 fatal ("%s: relative file names with drive letters not supported", file);
7040 #endif
7041 else
7042 res = concat (dir, file, "");
7044 /* Delete the "/dirname/.." and "/." substrings. */
7045 slashp = strchr (res, '/');
7046 while (slashp != NULL && slashp[0] != '\0')
7048 if (slashp[1] == '.')
7050 if (slashp[2] == '.'
7051 && (slashp[3] == '/' || slashp[3] == '\0'))
7053 cp = slashp;
7055 cp--;
7056 while (cp >= res && !filename_is_absolute (cp));
7057 if (cp < res)
7058 cp = slashp; /* the absolute name begins with "/.." */
7059 #ifdef DOS_NT
7060 /* Under MSDOS and NT we get `d:/NAME' as absolute
7061 file name, so the luser could say `d:/../NAME'.
7062 We silently treat this as `d:/NAME'. */
7063 else if (cp[0] != '/')
7064 cp = slashp;
7065 #endif
7066 memmove (cp, slashp + 3, strlen (slashp + 2));
7067 slashp = cp;
7068 continue;
7070 else if (slashp[2] == '/' || slashp[2] == '\0')
7072 memmove (slashp, slashp + 2, strlen (slashp + 1));
7073 continue;
7077 slashp = strchr (slashp + 1, '/');
7080 if (res[0] == '\0') /* just a safety net: should never happen */
7082 free (res);
7083 return savestr ("/");
7085 else
7086 return res;
7089 /* Return a newly allocated string containing the absolute
7090 file name of dir where FILE resides given DIR (which should
7091 end with a slash). */
7092 static char *
7093 absolute_dirname (char *file, char *dir)
7095 char *slashp, *res;
7096 char save;
7098 slashp = strrchr (file, '/');
7099 if (slashp == NULL)
7100 return savestr (dir);
7101 save = slashp[1];
7102 slashp[1] = '\0';
7103 res = absolute_filename (file, dir);
7104 slashp[1] = save;
7106 return res;
7109 /* Whether the argument string is an absolute file name. The argument
7110 string must have been canonicalized with canonicalize_filename. */
7111 static bool
7112 filename_is_absolute (char *fn)
7114 return (fn[0] == '/'
7115 #ifdef DOS_NT
7116 || (c_isalpha (fn[0]) && fn[1] == ':' && fn[2] == '/')
7117 #endif
7121 /* Downcase DOS drive letter and collapse separators into single slashes.
7122 Works in place. */
7123 static void
7124 canonicalize_filename (register char *fn)
7126 register char* cp;
7128 #ifdef DOS_NT
7129 /* Canonicalize drive letter case. */
7130 if (c_isupper (fn[0]) && fn[1] == ':')
7131 fn[0] = c_tolower (fn[0]);
7133 /* Collapse multiple forward- and back-slashes into a single forward
7134 slash. */
7135 for (cp = fn; *cp != '\0'; cp++, fn++)
7136 if (*cp == '/' || *cp == '\\')
7138 *fn = '/';
7139 while (cp[1] == '/' || cp[1] == '\\')
7140 cp++;
7142 else
7143 *fn = *cp;
7145 #else /* !DOS_NT */
7147 /* Collapse multiple slashes into a single slash. */
7148 for (cp = fn; *cp != '\0'; cp++, fn++)
7149 if (*cp == '/')
7151 *fn = '/';
7152 while (cp[1] == '/')
7153 cp++;
7155 else
7156 *fn = *cp;
7158 #endif /* !DOS_NT */
7160 *fn = '\0';
7164 /* Initialize a linebuffer for use. */
7165 static void
7166 linebuffer_init (linebuffer *lbp)
7168 lbp->size = (DEBUG) ? 3 : 200;
7169 lbp->buffer = xnew (lbp->size, char);
7170 lbp->buffer[0] = '\0';
7171 lbp->len = 0;
7174 /* Set the minimum size of a string contained in a linebuffer. */
7175 static void
7176 linebuffer_setlen (linebuffer *lbp, int toksize)
7178 while (lbp->size <= toksize)
7180 lbp->size *= 2;
7181 xrnew (lbp->buffer, lbp->size, char);
7183 lbp->len = toksize;
7186 /* Like malloc but get fatal error if memory is exhausted. */
7187 static void *
7188 xmalloc (size_t size)
7190 void *result = malloc (size);
7191 if (result == NULL)
7192 fatal ("virtual memory exhausted");
7193 return result;
7196 static void *
7197 xrealloc (void *ptr, size_t size)
7199 void *result = realloc (ptr, size);
7200 if (result == NULL)
7201 fatal ("virtual memory exhausted");
7202 return result;
7206 * Local Variables:
7207 * indent-tabs-mode: t
7208 * tab-width: 8
7209 * fill-column: 79
7210 * c-font-lock-extra-types: ("FILE" "bool" "language" "linebuffer" "fdesc" "node" "regexp")
7211 * c-file-style: "gnu"
7212 * End:
7215 /* etags.c ends here */