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
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
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-2018 Free Software
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 <https://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
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. */
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
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";
88 # define NDEBUG /* disable assert */
93 /* WIN32_NATIVE is for XEmacs.
94 MSDOS, WINDOWSNT, DOS_NT are for Emacs. */
99 #endif /* WIN32_NATIVE */
104 # include <sys/param.h>
114 /* The WINDOWSNT build doesn't use Gnulib's fcntl.h. */
115 # define O_CLOEXEC O_NOINHERIT
116 #endif /* WINDOWSNT */
123 #include <sysstdio.h>
126 #include <binary-io.h>
127 #include <unlocked-io.h>
129 #include <c-strcase.h>
133 # undef assert /* some systems have a buggy assert.h */
134 # define assert(x) ((void) 0)
140 /* Define CTAGS to make the program "ctags" compatible with the usual one.
141 Leave it undefined to make the program "etags", which makes emacs-style
142 tag tables and tags typedefs, #defines and struct/union/enum by default. */
151 streq (char const *s
, char const *t
)
153 return strcmp (s
, t
) == 0;
157 strcaseeq (char const *s
, char const *t
)
159 return c_strcasecmp (s
, t
) == 0;
163 strneq (char const *s
, char const *t
, size_t n
)
165 return strncmp (s
, t
, n
) == 0;
169 strncaseeq (char const *s
, char const *t
, size_t n
)
171 return c_strncasecmp (s
, t
, n
) == 0;
174 /* C is not in a name. */
176 notinname (unsigned char c
)
178 /* Look at make_tag before modifying! */
179 static bool const table
[UCHAR_MAX
+ 1] = {
180 ['\0']=1, ['\t']=1, ['\n']=1, ['\f']=1, ['\r']=1, [' ']=1,
181 ['(']=1, [')']=1, [',']=1, [';']=1, ['=']=1
186 /* C can start a token. */
188 begtoken (unsigned char c
)
190 static bool const table
[UCHAR_MAX
+ 1] = {
192 ['A']=1, ['B']=1, ['C']=1, ['D']=1, ['E']=1, ['F']=1, ['G']=1, ['H']=1,
193 ['I']=1, ['J']=1, ['K']=1, ['L']=1, ['M']=1, ['N']=1, ['O']=1, ['P']=1,
194 ['Q']=1, ['R']=1, ['S']=1, ['T']=1, ['U']=1, ['V']=1, ['W']=1, ['X']=1,
197 ['a']=1, ['b']=1, ['c']=1, ['d']=1, ['e']=1, ['f']=1, ['g']=1, ['h']=1,
198 ['i']=1, ['j']=1, ['k']=1, ['l']=1, ['m']=1, ['n']=1, ['o']=1, ['p']=1,
199 ['q']=1, ['r']=1, ['s']=1, ['t']=1, ['u']=1, ['v']=1, ['w']=1, ['x']=1,
206 /* C can be in the middle of a token. */
208 intoken (unsigned char c
)
210 static bool const table
[UCHAR_MAX
+ 1] = {
212 ['0']=1, ['1']=1, ['2']=1, ['3']=1, ['4']=1,
213 ['5']=1, ['6']=1, ['7']=1, ['8']=1, ['9']=1,
214 ['A']=1, ['B']=1, ['C']=1, ['D']=1, ['E']=1, ['F']=1, ['G']=1, ['H']=1,
215 ['I']=1, ['J']=1, ['K']=1, ['L']=1, ['M']=1, ['N']=1, ['O']=1, ['P']=1,
216 ['Q']=1, ['R']=1, ['S']=1, ['T']=1, ['U']=1, ['V']=1, ['W']=1, ['X']=1,
219 ['a']=1, ['b']=1, ['c']=1, ['d']=1, ['e']=1, ['f']=1, ['g']=1, ['h']=1,
220 ['i']=1, ['j']=1, ['k']=1, ['l']=1, ['m']=1, ['n']=1, ['o']=1, ['p']=1,
221 ['q']=1, ['r']=1, ['s']=1, ['t']=1, ['u']=1, ['v']=1, ['w']=1, ['x']=1,
227 /* C can end a token. */
229 endtoken (unsigned char c
)
231 static bool const table
[UCHAR_MAX
+ 1] = {
232 ['\0']=1, ['\t']=1, ['\n']=1, ['\r']=1, [' ']=1,
233 ['!']=1, ['"']=1, ['#']=1, ['%']=1, ['&']=1, ['\'']=1, ['(']=1, [')']=1,
234 ['*']=1, ['+']=1, [',']=1, ['-']=1, ['.']=1, ['/']=1, [':']=1, [';']=1,
235 ['<']=1, ['=']=1, ['>']=1, ['?']=1, ['[']=1, [']']=1, ['^']=1,
236 ['{']=1, ['|']=1, ['}']=1, ['~']=1
242 * xnew, xrnew -- allocate, reallocate storage
244 * SYNOPSIS: Type *xnew (int n, Type);
245 * void xrnew (OldPointer, int n, Type);
247 #define xnew(n, Type) ((Type *) xmalloc ((n) * sizeof (Type)))
248 #define xrnew(op, n, Type) ((op) = (Type *) xrealloc (op, (n) * sizeof (Type)))
250 typedef void Lang_function (FILE *);
254 const char *suffix
; /* file name suffix for this compressor */
255 const char *command
; /* takes one arg and decompresses to stdout */
260 const char *name
; /* language name */
261 const char *help
; /* detailed help for the language */
262 Lang_function
*function
; /* parse function */
263 const char **suffixes
; /* name suffixes of this language's files */
264 const char **filenames
; /* names of this language's files */
265 const char **interpreters
; /* interpreters for this language */
266 bool metasource
; /* source used to generate other sources */
271 struct fdesc
*next
; /* for the linked list */
272 char *infname
; /* uncompressed input file name */
273 char *infabsname
; /* absolute uncompressed input file name */
274 char *infabsdir
; /* absolute dir of input file */
275 char *taggedfname
; /* file name to write in tagfile */
276 language
*lang
; /* language of file */
277 char *prop
; /* file properties to write in tagfile */
278 bool usecharno
; /* etags tags shall contain char number */
279 bool written
; /* entry written in the tags file */
282 typedef struct node_st
283 { /* sorting structure */
284 struct node_st
*left
, *right
; /* left and right sons */
285 fdesc
*fdp
; /* description of file to whom tag belongs */
286 char *name
; /* tag name */
287 char *regex
; /* search regexp */
288 bool valid
; /* write this tag on the tag file */
289 bool is_func
; /* function tag: use regexp in CTAGS mode */
290 bool been_warned
; /* warning already given for duplicated tag */
291 int lno
; /* line number tag is on */
292 long cno
; /* character number line starts on */
296 * A `linebuffer' is a structure which holds a line of text.
297 * `readline_internal' reads a line from a stream into a linebuffer
298 * and works regardless of the length of the line.
299 * SIZE is the size of BUFFER, LEN is the length of the string in
300 * BUFFER after readline reads it.
309 /* Used to support mixing of --lang and file names. */
313 at_language
, /* a language specification */
314 at_regexp
, /* a regular expression */
315 at_filename
, /* a file name */
316 at_stdin
, /* read from stdin here */
317 at_end
/* stop parsing the list */
318 } arg_type
; /* argument type */
319 language
*lang
; /* language associated with the argument */
320 char *what
; /* the argument itself */
323 /* Structure defining a regular expression. */
324 typedef struct regexp
326 struct regexp
*p_next
; /* pointer to next in list */
327 language
*lang
; /* if set, use only for this language */
328 char *pattern
; /* the regexp pattern */
329 char *name
; /* tag name */
330 struct re_pattern_buffer
*pat
; /* the compiled pattern */
331 struct re_registers regs
; /* re registers */
332 bool error_signaled
; /* already signaled for this regexp */
333 bool force_explicit_name
; /* do not allow implicit tag name */
334 bool ignore_case
; /* ignore case when matching */
335 bool multi_line
; /* do a multi-line match on the whole file */
339 /* Many compilers barf on this:
340 Lang_function Ada_funcs;
341 so let's write it this way */
342 static void Ada_funcs (FILE *);
343 static void Asm_labels (FILE *);
344 static void C_entries (int c_ext
, FILE *);
345 static void default_C_entries (FILE *);
346 static void plain_C_entries (FILE *);
347 static void Cjava_entries (FILE *);
348 static void Cobol_paragraphs (FILE *);
349 static void Cplusplus_entries (FILE *);
350 static void Cstar_entries (FILE *);
351 static void Erlang_functions (FILE *);
352 static void Forth_words (FILE *);
353 static void Fortran_functions (FILE *);
354 static void Go_functions (FILE *);
355 static void HTML_labels (FILE *);
356 static void Lisp_functions (FILE *);
357 static void Lua_functions (FILE *);
358 static void Makefile_targets (FILE *);
359 static void Pascal_functions (FILE *);
360 static void Perl_functions (FILE *);
361 static void PHP_functions (FILE *);
362 static void PS_functions (FILE *);
363 static void Prolog_functions (FILE *);
364 static void Python_functions (FILE *);
365 static void Ruby_functions (FILE *);
366 static void Scheme_functions (FILE *);
367 static void TeX_commands (FILE *);
368 static void Texinfo_nodes (FILE *);
369 static void Yacc_entries (FILE *);
370 static void just_read_file (FILE *);
372 static language
*get_language_from_langname (const char *);
373 static void readline (linebuffer
*, FILE *);
374 static long readline_internal (linebuffer
*, FILE *, char const *);
375 static bool nocase_tail (const char *);
376 static void get_tag (char *, char **);
377 static void get_lispy_tag (char *);
379 static void analyze_regex (char *);
380 static void free_regexps (void);
381 static void regex_tag_multiline (void);
382 static void error (const char *, ...) ATTRIBUTE_FORMAT_PRINTF (1, 2);
383 static void verror (char const *, va_list) ATTRIBUTE_FORMAT_PRINTF (1, 0);
384 static _Noreturn
void suggest_asking_for_help (void);
385 static _Noreturn
void fatal (char const *, ...) ATTRIBUTE_FORMAT_PRINTF (1, 2);
386 static _Noreturn
void pfatal (const char *);
387 static void add_node (node
*, node
**);
389 static void process_file_name (char *, language
*);
390 static void process_file (FILE *, char *, language
*);
391 static void find_entries (FILE *);
392 static void free_tree (node
*);
393 static void free_fdesc (fdesc
*);
394 static void pfnote (char *, bool, char *, int, int, long);
395 static void invalidate_nodes (fdesc
*, node
**);
396 static void put_entries (node
*);
398 static char *concat (const char *, const char *, const char *);
399 static char *skip_spaces (char *);
400 static char *skip_non_spaces (char *);
401 static char *skip_name (char *);
402 static char *savenstr (const char *, int);
403 static char *savestr (const char *);
404 static char *etags_getcwd (void);
405 static char *relative_filename (char *, char *);
406 static char *absolute_filename (char *, char *);
407 static char *absolute_dirname (char *, char *);
408 static bool filename_is_absolute (char *f
);
409 static void canonicalize_filename (char *);
410 static char *etags_mktmp (void);
411 static void linebuffer_init (linebuffer
*);
412 static void linebuffer_setlen (linebuffer
*, int);
413 static void *xmalloc (size_t);
414 static void *xrealloc (void *, size_t);
417 static char searchar
= '/'; /* use /.../ searches */
419 static char *tagfile
; /* output file */
420 static char *progname
; /* name this program was invoked with */
421 static char *cwd
; /* current working directory */
422 static char *tagfiledir
; /* directory of tagfile */
423 static FILE *tagf
; /* ioptr for tags file */
424 static ptrdiff_t whatlen_max
; /* maximum length of any 'what' member */
426 static fdesc
*fdhead
; /* head of file description list */
427 static fdesc
*curfdp
; /* current file description */
428 static char *infilename
; /* current input file name */
429 static int lineno
; /* line number of current line */
430 static long charno
; /* current character number */
431 static long linecharno
; /* charno of start of current line */
432 static char *dbp
; /* pointer to start of current tag */
434 static const int invalidcharno
= -1;
436 static node
*nodehead
; /* the head of the binary tree of tags */
437 static node
*last_node
; /* the last node created */
439 static linebuffer lb
; /* the current line */
440 static linebuffer filebuf
; /* a buffer containing the whole file */
441 static linebuffer token_name
; /* a buffer containing a tag name */
443 static bool append_to_tagfile
; /* -a: append to tags */
444 /* The next five default to true in C and derived languages. */
445 static bool typedefs
; /* -t: create tags for C and Ada typedefs */
446 static bool typedefs_or_cplusplus
; /* -T: create tags for C typedefs, level */
447 /* 0 struct/enum/union decls, and C++ */
448 /* member functions. */
449 static bool constantypedefs
; /* -d: create tags for C #define, enum */
450 /* constants and variables. */
451 /* -D: opposite of -d. Default under ctags. */
452 static int globals
; /* create tags for global variables */
453 static int members
; /* create tags for C member variables */
454 static int declarations
; /* --declarations: tag them and extern in C&Co*/
455 static int no_line_directive
; /* ignore #line directives (undocumented) */
456 static int no_duplicates
; /* no duplicate tags for ctags (undocumented) */
457 static bool update
; /* -u: update tags */
458 static bool vgrind_style
; /* -v: create vgrind style index output */
459 static bool no_warnings
; /* -w: suppress warnings (undocumented) */
460 static bool cxref_style
; /* -x: create cxref style output */
461 static bool cplusplus
; /* .[hc] means C++, not C (undocumented) */
462 static bool ignoreindent
; /* -I: ignore indentation in C */
463 static int packages_only
; /* --packages-only: in Ada, only tag packages*/
464 static int class_qualify
; /* -Q: produce class-qualified tags in C++/Java */
465 static int debug
; /* --debug */
467 /* STDIN is defined in LynxOS system headers */
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 { "debug", no_argument
, &debug
, 1 },
484 { "declarations", no_argument
, &declarations
, 1 },
485 { "no-line-directive", no_argument
, &no_line_directive
, 1 },
486 { "no-duplicates", no_argument
, &no_duplicates
, 1 },
487 { "help", no_argument
, NULL
, 'h' },
488 { "help", no_argument
, NULL
, 'H' },
489 { "ignore-indentation", no_argument
, NULL
, 'I' },
490 { "language", required_argument
, NULL
, 'l' },
491 { "members", no_argument
, &members
, 1 },
492 { "no-members", no_argument
, &members
, 0 },
493 { "output", required_argument
, NULL
, 'o' },
494 { "class-qualify", no_argument
, &class_qualify
, 'Q' },
495 { "regex", required_argument
, NULL
, 'r' },
496 { "no-regex", no_argument
, NULL
, 'R' },
497 { "ignore-case-regex", required_argument
, NULL
, 'c' },
498 { "parse-stdin", required_argument
, NULL
, STDIN
},
499 { "version", no_argument
, NULL
, 'V' },
501 #if CTAGS /* Ctags options */
502 { "backward-search", no_argument
, NULL
, 'B' },
503 { "cxref", no_argument
, NULL
, 'x' },
504 { "defines", no_argument
, NULL
, 'd' },
505 { "globals", no_argument
, &globals
, 1 },
506 { "typedefs", no_argument
, NULL
, 't' },
507 { "typedefs-and-c++", no_argument
, NULL
, 'T' },
508 { "update", no_argument
, NULL
, 'u' },
509 { "vgrind", no_argument
, NULL
, 'v' },
510 { "no-warn", no_argument
, NULL
, 'w' },
512 #else /* Etags options */
513 { "no-defines", no_argument
, NULL
, 'D' },
514 { "no-globals", no_argument
, &globals
, 0 },
515 { "include", required_argument
, NULL
, 'i' },
520 static compressor compressors
[] =
522 { "z", "gzip -d -c"},
523 { "Z", "gzip -d -c"},
524 { "gz", "gzip -d -c"},
525 { "GZ", "gzip -d -c"},
526 { "bz2", "bzip2 -d -c" },
527 { "xz", "xz -d -c" },
536 static const char *Ada_suffixes
[] =
537 { "ads", "adb", "ada", NULL
};
538 static const char Ada_help
[] =
539 "In Ada code, functions, procedures, packages, tasks and types are\n\
540 tags. Use the '--packages-only' option to create tags for\n\
542 Ada tag names have suffixes indicating the type of entity:\n\
543 Entity type: Qualifier:\n\
544 ------------ ----------\n\
551 Thus, 'M-x find-tag <RET> bidule/b <RET>' will go directly to the\n\
552 body of the package 'bidule', while 'M-x find-tag <RET> bidule <RET>'\n\
553 will just search for any tag 'bidule'.";
556 static const char *Asm_suffixes
[] =
557 { "a", /* Unix assembler */
558 "asm", /* Microcontroller assembly */
559 "def", /* BSO/Tasking definition includes */
560 "inc", /* Microcontroller include files */
561 "ins", /* Microcontroller include files */
562 "s", "sa", /* Unix assembler */
563 "S", /* cpp-processed Unix assembler */
564 "src", /* BSO/Tasking C compiler output */
567 static const char Asm_help
[] =
568 "In assembler code, labels appearing at the beginning of a line,\n\
569 followed by a colon, are tags.";
572 /* Note that .c and .h can be considered C++, if the --c++ flag was
573 given, or if the `class' or `template' keywords are met inside the file.
574 That is why default_C_entries is called for these. */
575 static const char *default_C_suffixes
[] =
577 #if CTAGS /* C help for Ctags */
578 static const char default_C_help
[] =
579 "In C code, any C function is a tag. Use -t to tag typedefs.\n\
580 Use -T to tag definitions of 'struct', 'union' and 'enum'.\n\
581 Use -d to tag '#define' macro definitions and 'enum' constants.\n\
582 Use --globals to tag global variables.\n\
583 You can tag function declarations and external variables by\n\
584 using '--declarations', and struct members by using '--members'.";
585 #else /* C help for Etags */
586 static const char default_C_help
[] =
587 "In C code, any C function or typedef is a tag, and so are\n\
588 definitions of 'struct', 'union' and 'enum'. '#define' macro\n\
589 definitions and 'enum' constants are tags unless you specify\n\
590 '--no-defines'. Global variables are tags unless you specify\n\
591 '--no-globals' and so are struct members unless you specify\n\
592 '--no-members'. Use of '--no-globals', '--no-defines' and\n\
593 '--no-members' can make the tags table file much smaller.\n\
594 You can tag function declarations and external variables by\n\
595 using '--declarations'.";
596 #endif /* C help for Ctags and Etags */
598 static const char *Cplusplus_suffixes
[] =
599 { "C", "c++", "cc", "cpp", "cxx", "H", "h++", "hh", "hpp", "hxx",
600 "M", /* Objective C++ */
601 "pdb", /* PostScript with C syntax */
603 static const char Cplusplus_help
[] =
604 "In C++ code, all the tag constructs of C code are tagged. (Use\n\
605 --help --lang=c --lang=c++ for full help.)\n\
606 In addition to C tags, member functions are also recognized. Member\n\
607 variables are recognized unless you use the '--no-members' option.\n\
608 Tags for variables and functions in classes are named 'CLASS::VARIABLE'\n\
609 and 'CLASS::FUNCTION'. 'operator' definitions have tag names like\n\
612 static const char *Cjava_suffixes
[] =
614 static char Cjava_help
[] =
615 "In Java code, all the tags constructs of C and C++ code are\n\
616 tagged. (Use --help --lang=c --lang=c++ --lang=java for full help.)";
619 static const char *Cobol_suffixes
[] =
620 { "COB", "cob", NULL
};
621 static char Cobol_help
[] =
622 "In Cobol code, tags are paragraph names; that is, any word\n\
623 starting in column 8 and followed by a period.";
625 static const char *Cstar_suffixes
[] =
626 { "cs", "hs", NULL
};
628 static const char *Erlang_suffixes
[] =
629 { "erl", "hrl", NULL
};
630 static const char Erlang_help
[] =
631 "In Erlang code, the tags are the functions, records and macros\n\
632 defined in the file.";
633 static const char *Erlang_interpreters
[] =
636 const char *Forth_suffixes
[] =
637 { "fth", "tok", NULL
};
638 static const char Forth_help
[] =
639 "In Forth code, tags are words defined by ':',\n\
640 constant, code, create, defer, value, variable, buffer:, field.";
642 static const char *Fortran_suffixes
[] =
643 { "F", "f", "f90", "for", NULL
};
644 static const char Fortran_help
[] =
645 "In Fortran code, functions, subroutines and block data are tags.";
647 static const char *Go_suffixes
[] = {"go", NULL
};
648 static const char Go_help
[] =
649 "In Go code, functions, interfaces and packages are tags.";
651 static const char *HTML_suffixes
[] =
652 { "htm", "html", "shtml", NULL
};
653 static const char HTML_help
[] =
654 "In HTML input files, the tags are the 'title' and the 'h1', 'h2',\n\
655 'h3' headers. Also, tags are 'name=' in anchors and all\n\
656 occurrences of 'id='.";
658 static const char *Lisp_suffixes
[] =
659 { "cl", "clisp", "el", "l", "lisp", "LSP", "lsp", "ml", NULL
};
660 static const char Lisp_help
[] =
661 "In Lisp code, any function defined with 'defun', any variable\n\
662 defined with 'defvar' or 'defconst', and in general the first\n\
663 argument of any expression that starts with '(def' in column zero\n\
665 The '--declarations' option tags \"(defvar foo)\" constructs too.";
667 static const char *Lua_suffixes
[] =
668 { "lua", "LUA", NULL
};
669 static const char Lua_help
[] =
670 "In Lua scripts, all functions are tags.";
671 static const char *Lua_interpreters
[] =
674 static const char *Makefile_filenames
[] =
675 { "Makefile", "makefile", "GNUMakefile", "Makefile.in", "Makefile.am", NULL
};
676 static const char Makefile_help
[] =
677 "In makefiles, targets are tags; additionally, variables are tags\n\
678 unless you specify '--no-globals'.";
680 static const char *Objc_suffixes
[] =
681 { "lm", /* Objective lex file */
682 "m", /* Objective C file */
684 static const char Objc_help
[] =
685 "In Objective C code, tags include Objective C definitions for classes,\n\
686 class categories, methods and protocols. Tags for variables and\n\
687 functions in classes are named 'CLASS::VARIABLE' and 'CLASS::FUNCTION'.\
688 \n(Use --help --lang=c --lang=objc --lang=java for full help.)";
690 static const char *Pascal_suffixes
[] =
691 { "p", "pas", NULL
};
692 static const char Pascal_help
[] =
693 "In Pascal code, the tags are the functions and procedures defined\n\
695 /* " // this is for working around an Emacs highlighting bug... */
697 static const char *Perl_suffixes
[] =
698 { "pl", "pm", NULL
};
699 static const char *Perl_interpreters
[] =
700 { "perl", "@PERL@", NULL
};
701 static const char Perl_help
[] =
702 "In Perl code, the tags are the packages, subroutines and variables\n\
703 defined by the 'package', 'sub', 'my' and 'local' keywords. Use\n\
704 '--globals' if you want to tag global variables. Tags for\n\
705 subroutines are named 'PACKAGE::SUB'. The name for subroutines\n\
706 defined in the default package is 'main::SUB'.";
708 static const char *PHP_suffixes
[] =
709 { "php", "php3", "php4", NULL
};
710 static const char PHP_help
[] =
711 "In PHP code, tags are functions, classes and defines. Unless you use\n\
712 the '--no-members' option, vars are tags too.";
714 static const char *plain_C_suffixes
[] =
715 { "pc", /* Pro*C file */
718 static const char *PS_suffixes
[] =
719 { "ps", "psw", NULL
}; /* .psw is for PSWrap */
720 static const char PS_help
[] =
721 "In PostScript code, the tags are the functions.";
723 static const char *Prolog_suffixes
[] =
725 static const char Prolog_help
[] =
726 "In Prolog code, tags are predicates and rules at the beginning of\n\
728 static const char *Prolog_interpreters
[] =
729 { "gprolog", "pl", "yap", "swipl", "prolog", NULL
};
731 static const char *Python_suffixes
[] =
733 static const char Python_help
[] =
734 "In Python code, 'def' or 'class' at the beginning of a line\n\
736 static const char *Python_interpreters
[] =
739 static const char *Ruby_suffixes
[] =
740 { "rb", "ru", "rbw", NULL
};
741 static const char *Ruby_filenames
[] =
742 { "Rakefile", "Thorfile", NULL
};
743 static const char Ruby_help
[] =
744 "In Ruby code, 'def' or 'class' or 'module' at the beginning of\n\
745 a line generate a tag. Constants also generate a tag.";
746 static const char *Ruby_interpreters
[] =
749 /* Can't do the `SCM' or `scm' prefix with a version number. */
750 static const char *Scheme_suffixes
[] =
751 { "oak", "sch", "scheme", "SCM", "scm", "SM", "sm", "ss", "t", NULL
};
752 static const char Scheme_help
[] =
753 "In Scheme code, tags include anything defined with 'def' or with a\n\
754 construct whose name starts with 'def'. They also include\n\
755 variables set with 'set!' at top level in the file.";
757 static const char *TeX_suffixes
[] =
758 { "bib", "clo", "cls", "ltx", "sty", "TeX", "tex", NULL
};
759 static const char TeX_help
[] =
760 "In LaTeX text, the argument of any of the commands '\\chapter',\n\
761 '\\section', '\\subsection', '\\subsubsection', '\\eqno', '\\label',\n\
762 '\\ref', '\\cite', '\\bibitem', '\\part', '\\appendix', '\\entry',\n\
763 '\\index', '\\def', '\\newcommand', '\\renewcommand',\n\
764 '\\newenvironment' or '\\renewenvironment' is a tag.\n\
766 Other commands can be specified by setting the environment variable\n\
767 'TEXTAGS' to a colon-separated list like, for example,\n\
768 TEXTAGS=\"mycommand:myothercommand\".";
771 static const char *Texinfo_suffixes
[] =
772 { "texi", "texinfo", "txi", NULL
};
773 static const char Texinfo_help
[] =
774 "for texinfo files, lines starting with @node are tagged.";
776 static const char *Yacc_suffixes
[] =
777 { "y", "y++", "ym", "yxx", "yy", NULL
}; /* .ym is Objective yacc file */
778 static const char Yacc_help
[] =
779 "In Bison or Yacc input files, each rule defines as a tag the\n\
780 nonterminal it constructs. The portions of the file that contain\n\
781 C code are parsed as C code (use --help --lang=c --lang=yacc\n\
784 static const char auto_help
[] =
785 "'auto' is not a real language, it indicates to use\n\
786 a default language for files base on file name suffix and file contents.";
788 static const char none_help
[] =
789 "'none' is not a real language, it indicates to only do\n\
790 regexp processing on files.";
792 static const char no_lang_help
[] =
793 "No detailed help available for this language.";
797 * Table of languages.
799 * It is ok for a given function to be listed under more than one
800 * name. I just didn't.
803 static language lang_names
[] =
805 { "ada", Ada_help
, Ada_funcs
, Ada_suffixes
},
806 { "asm", Asm_help
, Asm_labels
, Asm_suffixes
},
807 { "c", default_C_help
, default_C_entries
, default_C_suffixes
},
808 { "c++", Cplusplus_help
, Cplusplus_entries
, Cplusplus_suffixes
},
809 { "c*", no_lang_help
, Cstar_entries
, Cstar_suffixes
},
810 { "cobol", Cobol_help
, Cobol_paragraphs
, Cobol_suffixes
},
811 { "erlang", Erlang_help
, Erlang_functions
, Erlang_suffixes
,
812 NULL
, Erlang_interpreters
},
813 { "forth", Forth_help
, Forth_words
, Forth_suffixes
},
814 { "fortran", Fortran_help
, Fortran_functions
, Fortran_suffixes
},
815 { "go", Go_help
, Go_functions
, Go_suffixes
},
816 { "html", HTML_help
, HTML_labels
, HTML_suffixes
},
817 { "java", Cjava_help
, Cjava_entries
, Cjava_suffixes
},
818 { "lisp", Lisp_help
, Lisp_functions
, Lisp_suffixes
},
819 { "lua", Lua_help
,Lua_functions
,Lua_suffixes
,NULL
,Lua_interpreters
},
820 { "makefile", Makefile_help
,Makefile_targets
,NULL
,Makefile_filenames
},
821 { "objc", Objc_help
, plain_C_entries
, Objc_suffixes
},
822 { "pascal", Pascal_help
, Pascal_functions
, Pascal_suffixes
},
823 { "perl",Perl_help
,Perl_functions
,Perl_suffixes
,NULL
,Perl_interpreters
},
824 { "php", PHP_help
, PHP_functions
, PHP_suffixes
},
825 { "postscript",PS_help
, PS_functions
, PS_suffixes
},
826 { "proc", no_lang_help
, plain_C_entries
, plain_C_suffixes
},
827 { "prolog", Prolog_help
, Prolog_functions
, Prolog_suffixes
,
828 NULL
, Prolog_interpreters
},
829 { "python", Python_help
, Python_functions
, Python_suffixes
,
830 NULL
, Python_interpreters
},
831 { "ruby", Ruby_help
, Ruby_functions
, Ruby_suffixes
,
832 Ruby_filenames
, Ruby_interpreters
},
833 { "scheme", Scheme_help
, Scheme_functions
, Scheme_suffixes
},
834 { "tex", TeX_help
, TeX_commands
, TeX_suffixes
},
835 { "texinfo", Texinfo_help
, Texinfo_nodes
, Texinfo_suffixes
},
836 { "yacc", Yacc_help
,Yacc_entries
,Yacc_suffixes
,NULL
,NULL
,true},
837 { "auto", auto_help
}, /* default guessing scheme */
838 { "none", none_help
, just_read_file
}, /* regexp matching only */
839 { NULL
} /* end of list */
844 print_language_names (void)
847 const char **name
, **ext
;
849 puts ("\nThese are the currently supported languages, along with the\n\
850 default file names and dot suffixes:");
851 for (lang
= lang_names
; lang
->name
!= NULL
; lang
++)
853 printf (" %-*s", 10, lang
->name
);
854 if (lang
->filenames
!= NULL
)
855 for (name
= lang
->filenames
; *name
!= NULL
; name
++)
856 printf (" %s", *name
);
857 if (lang
->suffixes
!= NULL
)
858 for (ext
= lang
->suffixes
; *ext
!= NULL
; ext
++)
859 printf (" .%s", *ext
);
862 puts ("where 'auto' means use default language for files based on file\n\
863 name suffix, and 'none' means only do regexp processing on files.\n\
864 If no language is specified and no matching suffix is found,\n\
865 the first line of the file is read for a sharp-bang (#!) sequence\n\
866 followed by the name of an interpreter. If no such sequence is found,\n\
867 Fortran is tried first; if no tags are found, C is tried next.\n\
868 When parsing any C file, a \"class\" or \"template\" keyword\n\
870 puts ("Compressed files are supported using gzip, bzip2, and xz.\n\
872 For detailed help on a given language use, for example,\n\
873 etags --help --lang=ada.");
877 # define EMACS_NAME "standalone"
880 # define VERSION "17.38.1.4"
882 static _Noreturn
void
885 char emacs_copyright
[] = COPYRIGHT
;
887 printf ("%s (%s %s)\n", (CTAGS
) ? "ctags" : "etags", EMACS_NAME
, VERSION
);
888 puts (emacs_copyright
);
889 puts ("This program is distributed under the terms in ETAGS.README");
894 #ifndef PRINT_UNDOCUMENTED_OPTIONS_HELP
895 # define PRINT_UNDOCUMENTED_OPTIONS_HELP false
898 static _Noreturn
void
899 print_help (argument
*argbuffer
)
901 bool help_for_lang
= false;
903 for (; argbuffer
->arg_type
!= at_end
; argbuffer
++)
904 if (argbuffer
->arg_type
== at_language
)
908 puts (argbuffer
->lang
->help
);
909 help_for_lang
= true;
915 printf ("Usage: %s [options] [[regex-option ...] file-name] ...\n\
917 These are the options accepted by %s.\n", progname
, progname
);
918 puts ("You may use unambiguous abbreviations for the long option names.");
919 puts (" A - as file name means read names from stdin (one per line).\n\
920 Absolute names are stored in the output file as they are.\n\
921 Relative ones are stored relative to the output file's directory.\n");
923 puts ("-a, --append\n\
924 Append tag entries to existing tags file.");
926 puts ("--packages-only\n\
927 For Ada files, only generate tags for packages.");
930 puts ("-B, --backward-search\n\
931 Write the search commands for the tag entries using '?', the\n\
932 backward-search command instead of '/', the forward-search command.");
934 /* This option is mostly obsolete, because etags can now automatically
935 detect C++. Retained for backward compatibility and for debugging and
936 experimentation. In principle, we could want to tag as C++ even
937 before any "class" or "template" keyword.
939 Treat files whose name suffix defaults to C language as C++ files.");
942 puts ("--declarations\n\
943 In C and derived languages, create tags for function declarations,");
945 puts ("\tand create tags for extern variables if --globals is used.");
948 ("\tand create tags for extern variables unless --no-globals is used.");
951 puts ("-d, --defines\n\
952 Create tag entries for C #define constants and enum constants, too.");
954 puts ("-D, --no-defines\n\
955 Don't create tag entries for C #define constants and enum constants.\n\
956 This makes the tags file smaller.");
959 puts ("-i FILE, --include=FILE\n\
960 Include a note in tag file indicating that, when searching for\n\
961 a tag, one should also consult the tags file FILE after\n\
962 checking the current file.");
964 puts ("-l LANG, --language=LANG\n\
965 Force the following files to be considered as written in the\n\
966 named language up to the next --language=LANG option.");
970 Create tag entries for global variables in some languages.");
972 puts ("--no-globals\n\
973 Do not create tag entries for global variables in some\n\
974 languages. This makes the tags file smaller.");
976 puts ("--no-line-directive\n\
977 Ignore #line preprocessor directives in C and derived languages.");
981 Create tag entries for members of structures in some languages.");
983 puts ("--no-members\n\
984 Do not create tag entries for members of structures\n\
985 in some languages.");
987 puts ("-Q, --class-qualify\n\
988 Qualify tag names with their class name in C++, ObjC, Java, and Perl.\n\
989 This produces tag names of the form \"class::member\" for C++,\n\
990 \"class(category)\" for Objective C, and \"class.member\" for Java.\n\
991 For Objective C, this also produces class methods qualified with\n\
992 their arguments, as in \"foo:bar:baz:more\".\n\
993 For Perl, this produces \"package::member\".");
994 puts ("-r REGEXP, --regex=REGEXP or --regex=@regexfile\n\
995 Make a tag for each line matching a regular expression pattern\n\
996 in the following files. {LANGUAGE}REGEXP uses REGEXP for LANGUAGE\n\
997 files only. REGEXFILE is a file containing one REGEXP per line.\n\
998 REGEXP takes the form /TAGREGEXP/TAGNAME/MODS, where TAGNAME/ is\n\
999 optional. The TAGREGEXP pattern is anchored (as if preceded by ^).");
1000 puts (" If TAGNAME/ is present, the tags created are named.\n\
1001 For example Tcl named tags can be created with:\n\
1002 --regex=\"/proc[ \\t]+\\([^ \\t]+\\)/\\1/.\".\n\
1003 MODS are optional one-letter modifiers: 'i' means to ignore case,\n\
1004 'm' means to allow multi-line matches, 's' implies 'm' and\n\
1005 causes dot to match any character, including newline.");
1007 puts ("-R, --no-regex\n\
1008 Don't create tags from regexps for the following files.");
1010 puts ("-I, --ignore-indentation\n\
1011 In C and C++ do not assume that a closing brace in the first\n\
1012 column is the final brace of a function or structure definition.");
1014 puts ("-o FILE, --output=FILE\n\
1015 Write the tags to FILE.");
1017 puts ("--parse-stdin=NAME\n\
1018 Read from standard input and record tags as belonging to file NAME.");
1022 puts ("-t, --typedefs\n\
1023 Generate tag entries for C and Ada typedefs.");
1024 puts ("-T, --typedefs-and-c++\n\
1025 Generate tag entries for C typedefs, C struct/enum/union tags,\n\
1026 and C++ member functions.");
1030 puts ("-u, --update\n\
1031 Update the tag entries for the given files, leaving tag\n\
1032 entries for other files in place. Currently, this is\n\
1033 implemented by deleting the existing entries for the given\n\
1034 files and then rewriting the new entries at the end of the\n\
1035 tags file. It is often faster to simply rebuild the entire\n\
1036 tag file than to use this.");
1040 puts ("-v, --vgrind\n\
1041 Print on the standard output an index of items intended for\n\
1042 human consumption, similar to the output of vgrind. The index\n\
1043 is sorted, and gives the page number of each item.");
1045 if (PRINT_UNDOCUMENTED_OPTIONS_HELP
)
1046 puts ("-w, --no-duplicates\n\
1047 Do not create duplicate tag entries, for compatibility with\n\
1048 traditional ctags.");
1050 if (PRINT_UNDOCUMENTED_OPTIONS_HELP
)
1051 puts ("-w, --no-warn\n\
1052 Suppress warning messages about duplicate tag entries.");
1054 puts ("-x, --cxref\n\
1055 Like --vgrind, but in the style of cxref, rather than vgrind.\n\
1056 The output uses line numbers instead of page numbers, but\n\
1057 beyond that the differences are cosmetic; try both to see\n\
1061 puts ("-V, --version\n\
1062 Print the version of the program.\n\
1064 Print this help message.\n\
1065 Followed by one or more '--language' options prints detailed\n\
1066 help about tag generation for the specified languages.");
1068 print_language_names ();
1071 puts ("Report bugs to bug-gnu-emacs@gnu.org");
1073 exit (EXIT_SUCCESS
);
1078 main (int argc
, char **argv
)
1081 unsigned int nincluded_files
;
1082 char **included_files
;
1083 argument
*argbuffer
;
1084 int current_arg
, file_count
;
1085 linebuffer filename_lb
;
1086 bool help_asked
= false;
1092 nincluded_files
= 0;
1093 included_files
= xnew (argc
, char *);
1097 /* Allocate enough no matter what happens. Overkill, but each one
1099 argbuffer
= xnew (argc
, argument
);
1102 * Always find typedefs and structure tags.
1103 * Also default to find macro constants, enum constants, struct
1104 * members and global variables. Do it for both etags and ctags.
1106 typedefs
= typedefs_or_cplusplus
= constantypedefs
= true;
1107 globals
= members
= true;
1109 /* When the optstring begins with a '-' getopt_long does not rearrange the
1110 non-options arguments to be at the end, but leaves them alone. */
1111 optstring
= concat ("-ac:Cf:Il:o:Qr:RSVhH",
1112 (CTAGS
) ? "BxdtTuvw" : "Di:",
1115 while ((opt
= getopt_long (argc
, argv
, optstring
, longopts
, NULL
)) != EOF
)
1119 /* If getopt returns 0, then it has already processed a
1120 long-named option. We should do nothing. */
1124 /* This means that a file name has been seen. Record it. */
1125 argbuffer
[current_arg
].arg_type
= at_filename
;
1126 argbuffer
[current_arg
].what
= optarg
;
1127 len
= strlen (optarg
);
1128 if (whatlen_max
< len
)
1135 /* Parse standard input. Idea by Vivek <vivek@etla.org>. */
1136 argbuffer
[current_arg
].arg_type
= at_stdin
;
1137 argbuffer
[current_arg
].what
= optarg
;
1138 len
= strlen (optarg
);
1139 if (whatlen_max
< len
)
1144 fatal ("cannot parse standard input more than once");
1145 parsing_stdin
= true;
1148 /* Common options. */
1149 case 'a': append_to_tagfile
= true; break;
1150 case 'C': cplusplus
= true; break;
1151 case 'f': /* for compatibility with old makefiles */
1155 error ("-o option may only be given once.");
1156 suggest_asking_for_help ();
1162 case 'S': /* for backward compatibility */
1163 ignoreindent
= true;
1167 language
*lang
= get_language_from_langname (optarg
);
1170 argbuffer
[current_arg
].lang
= lang
;
1171 argbuffer
[current_arg
].arg_type
= at_language
;
1177 /* Backward compatibility: support obsolete --ignore-case-regexp. */
1178 optarg
= concat (optarg
, "i", ""); /* memory leak here */
1181 argbuffer
[current_arg
].arg_type
= at_regexp
;
1182 argbuffer
[current_arg
].what
= optarg
;
1183 len
= strlen (optarg
);
1184 if (whatlen_max
< len
)
1189 argbuffer
[current_arg
].arg_type
= at_regexp
;
1190 argbuffer
[current_arg
].what
= NULL
;
1205 case 'D': constantypedefs
= false; break;
1206 case 'i': included_files
[nincluded_files
++] = optarg
; break;
1208 /* Ctags options. */
1209 case 'B': searchar
= '?'; break;
1210 case 'd': constantypedefs
= true; break;
1211 case 't': typedefs
= true; break;
1212 case 'T': typedefs
= typedefs_or_cplusplus
= true; break;
1213 case 'u': update
= true; break;
1214 case 'v': vgrind_style
= true; FALLTHROUGH
;
1215 case 'x': cxref_style
= true; break;
1216 case 'w': no_warnings
= true; break;
1218 suggest_asking_for_help ();
1222 /* No more options. Store the rest of arguments. */
1223 for (; optind
< argc
; optind
++)
1225 argbuffer
[current_arg
].arg_type
= at_filename
;
1226 argbuffer
[current_arg
].what
= argv
[optind
];
1227 len
= strlen (argv
[optind
]);
1228 if (whatlen_max
< len
)
1234 argbuffer
[current_arg
].arg_type
= at_end
;
1237 print_help (argbuffer
);
1240 if (nincluded_files
== 0 && file_count
== 0)
1242 error ("no input files specified.");
1243 suggest_asking_for_help ();
1247 if (tagfile
== NULL
)
1248 tagfile
= savestr (CTAGS
? "tags" : "TAGS");
1249 cwd
= etags_getcwd (); /* the current working directory */
1250 if (cwd
[strlen (cwd
) - 1] != '/')
1253 cwd
= concat (oldcwd
, "/", "");
1257 /* Compute base directory for relative file names. */
1258 if (streq (tagfile
, "-")
1259 || strneq (tagfile
, "/dev/", 5))
1260 tagfiledir
= cwd
; /* relative file names are relative to cwd */
1263 canonicalize_filename (tagfile
);
1264 tagfiledir
= absolute_dirname (tagfile
, cwd
);
1267 linebuffer_init (&lb
);
1268 linebuffer_init (&filename_lb
);
1269 linebuffer_init (&filebuf
);
1270 linebuffer_init (&token_name
);
1274 if (streq (tagfile
, "-"))
1277 set_binary_mode (STDOUT_FILENO
, O_BINARY
);
1280 tagf
= fopen (tagfile
, append_to_tagfile
? "ab" : "wb");
1286 * Loop through files finding functions.
1288 for (i
= 0; i
< current_arg
; i
++)
1290 static language
*lang
; /* non-NULL if language is forced */
1293 switch (argbuffer
[i
].arg_type
)
1296 lang
= argbuffer
[i
].lang
;
1299 analyze_regex (argbuffer
[i
].what
);
1302 this_file
= argbuffer
[i
].what
;
1303 /* Input file named "-" means read file names from stdin
1304 (one per line) and use them. */
1305 if (streq (this_file
, "-"))
1308 fatal ("cannot parse standard input "
1309 "AND read file names from it");
1310 while (readline_internal (&filename_lb
, stdin
, "-") > 0)
1311 process_file_name (filename_lb
.buffer
, lang
);
1314 process_file_name (this_file
, lang
);
1317 this_file
= argbuffer
[i
].what
;
1318 process_file (stdin
, this_file
, lang
);
1321 error ("internal error: arg_type");
1327 free (filebuf
.buffer
);
1328 free (token_name
.buffer
);
1330 if (!CTAGS
|| cxref_style
)
1332 /* Write the remaining tags to tagf (ETAGS) or stdout (CXREF). */
1333 put_entries (nodehead
);
1334 free_tree (nodehead
);
1340 /* Output file entries that have no tags. */
1341 for (fdp
= fdhead
; fdp
!= NULL
; fdp
= fdp
->next
)
1343 fprintf (tagf
, "\f\n%s,0\n", fdp
->taggedfname
);
1345 while (nincluded_files
-- > 0)
1346 fprintf (tagf
, "\f\n%s,include\n", *included_files
++);
1348 if (fclose (tagf
) == EOF
)
1352 return EXIT_SUCCESS
;
1355 /* From here on, we are in (CTAGS && !cxref_style) */
1359 xmalloc (strlen (tagfile
) + whatlen_max
+
1360 sizeof "mv..OTAGS;grep -Fv '\t\t' OTAGS >;rm OTAGS");
1361 for (i
= 0; i
< current_arg
; ++i
)
1363 switch (argbuffer
[i
].arg_type
)
1369 continue; /* the for loop */
1371 char *z
= stpcpy (cmd
, "mv ");
1372 z
= stpcpy (z
, tagfile
);
1373 z
= stpcpy (z
, " OTAGS;grep -Fv '\t");
1374 z
= stpcpy (z
, argbuffer
[i
].what
);
1375 z
= stpcpy (z
, "\t' OTAGS >");
1376 z
= stpcpy (z
, tagfile
);
1377 strcpy (z
, ";rm OTAGS");
1378 if (system (cmd
) != EXIT_SUCCESS
)
1379 fatal ("failed to execute shell command");
1382 append_to_tagfile
= true;
1385 tagf
= fopen (tagfile
, append_to_tagfile
? "ab" : "wb");
1388 put_entries (nodehead
); /* write all the tags (CTAGS) */
1389 free_tree (nodehead
);
1391 if (fclose (tagf
) == EOF
)
1395 if (append_to_tagfile
|| update
)
1397 char *cmd
= xmalloc (2 * strlen (tagfile
) + sizeof "sort -u -o..");
1398 /* Maybe these should be used:
1399 setenv ("LC_COLLATE", "C", 1);
1400 setenv ("LC_ALL", "C", 1); */
1401 char *z
= stpcpy (cmd
, "sort -u -o ");
1402 z
= stpcpy (z
, tagfile
);
1404 strcpy (z
, tagfile
);
1405 return system (cmd
);
1407 return EXIT_SUCCESS
;
1412 * Return a compressor given the file name. If EXTPTR is non-zero,
1413 * return a pointer into FILE where the compressor-specific
1414 * extension begins. If no compressor is found, NULL is returned
1415 * and EXTPTR is not significant.
1416 * Idea by Vladimir Alexiev <vladimir@cs.ualberta.ca> (1998)
1419 get_compressor_from_suffix (char *file
, char **extptr
)
1422 char *slash
, *suffix
;
1424 /* File has been processed by canonicalize_filename,
1425 so we don't need to consider backslashes on DOS_NT. */
1426 slash
= strrchr (file
, '/');
1427 suffix
= strrchr (file
, '.');
1428 if (suffix
== NULL
|| suffix
< slash
)
1433 /* Let those poor souls who live with DOS 8+3 file name limits get
1434 some solace by treating foo.cgz as if it were foo.c.gz, etc.
1435 Only the first do loop is run if not MSDOS */
1438 for (compr
= compressors
; compr
->suffix
!= NULL
; compr
++)
1439 if (streq (compr
->suffix
, suffix
))
1442 break; /* do it only once: not really a loop */
1445 } while (*suffix
!= '\0');
1452 * Return a language given the name.
1455 get_language_from_langname (const char *name
)
1460 error ("empty language name");
1463 for (lang
= lang_names
; lang
->name
!= NULL
; lang
++)
1464 if (streq (name
, lang
->name
))
1466 error ("unknown language \"%s\"", name
);
1474 * Return a language given the interpreter name.
1477 get_language_from_interpreter (char *interpreter
)
1482 if (interpreter
== NULL
)
1484 for (lang
= lang_names
; lang
->name
!= NULL
; lang
++)
1485 if (lang
->interpreters
!= NULL
)
1486 for (iname
= lang
->interpreters
; *iname
!= NULL
; iname
++)
1487 if (streq (*iname
, interpreter
))
1496 * Return a language given the file name.
1499 get_language_from_filename (char *file
, int case_sensitive
)
1502 const char **name
, **ext
, *suffix
;
1505 /* Try whole file name first. */
1506 slash
= strrchr (file
, '/');
1510 else if (file
[0] && file
[1] == ':')
1513 for (lang
= lang_names
; lang
->name
!= NULL
; lang
++)
1514 if (lang
->filenames
!= NULL
)
1515 for (name
= lang
->filenames
; *name
!= NULL
; name
++)
1516 if ((case_sensitive
)
1517 ? streq (*name
, file
)
1518 : strcaseeq (*name
, file
))
1521 /* If not found, try suffix after last dot. */
1522 suffix
= strrchr (file
, '.');
1526 for (lang
= lang_names
; lang
->name
!= NULL
; lang
++)
1527 if (lang
->suffixes
!= NULL
)
1528 for (ext
= lang
->suffixes
; *ext
!= NULL
; ext
++)
1529 if ((case_sensitive
)
1530 ? streq (*ext
, suffix
)
1531 : strcaseeq (*ext
, suffix
))
1538 * This routine is called on each file argument.
1541 process_file_name (char *file
, language
*lang
)
1546 char *compressed_name
, *uncompressed_name
;
1547 char *ext
, *real_name UNINIT
, *tmp_name UNINIT
;
1550 canonicalize_filename (file
);
1551 if (streq (file
, tagfile
) && !streq (tagfile
, "-"))
1553 error ("skipping inclusion of %s in self.", file
);
1556 compr
= get_compressor_from_suffix (file
, &ext
);
1559 compressed_name
= file
;
1560 uncompressed_name
= savenstr (file
, ext
- file
);
1564 compressed_name
= NULL
;
1565 uncompressed_name
= file
;
1568 /* If the canonicalized uncompressed name
1569 has already been dealt with, skip it silently. */
1570 for (fdp
= fdhead
; fdp
!= NULL
; fdp
= fdp
->next
)
1572 assert (fdp
->infname
!= NULL
);
1573 if (streq (uncompressed_name
, fdp
->infname
))
1577 inf
= fopen (file
, "r" FOPEN_BINARY
);
1582 int file_errno
= errno
;
1583 if (compressed_name
)
1585 /* Try with the given suffix. */
1586 inf
= fopen (uncompressed_name
, "r" FOPEN_BINARY
);
1588 real_name
= uncompressed_name
;
1592 /* Try all possible suffixes. */
1593 for (compr
= compressors
; compr
->suffix
!= NULL
; compr
++)
1595 compressed_name
= concat (file
, ".", compr
->suffix
);
1596 inf
= fopen (compressed_name
, "r" FOPEN_BINARY
);
1599 real_name
= compressed_name
;
1604 char *suf
= compressed_name
+ strlen (file
);
1605 size_t suflen
= strlen (compr
->suffix
) + 1;
1606 for ( ; suf
[1]; suf
++, suflen
--)
1608 memmove (suf
, suf
+ 1, suflen
);
1609 inf
= fopen (compressed_name
, "r" FOPEN_BINARY
);
1612 real_name
= compressed_name
;
1619 free (compressed_name
);
1620 compressed_name
= NULL
;
1631 if (real_name
== compressed_name
)
1634 tmp_name
= etags_mktmp ();
1639 #if MSDOS || defined (DOS_NT)
1640 char *cmd1
= concat (compr
->command
, " \"", real_name
);
1641 char *cmd
= concat (cmd1
, "\" > ", tmp_name
);
1643 char *cmd1
= concat (compr
->command
, " '", real_name
);
1644 char *cmd
= concat (cmd1
, "' > ", tmp_name
);
1648 if (system (cmd
) == -1)
1655 inf
= fopen (tmp_name
, "r" FOPEN_BINARY
);
1669 process_file (inf
, uncompressed_name
, lang
);
1671 retval
= fclose (inf
);
1672 if (real_name
== compressed_name
)
1681 if (compressed_name
!= file
)
1682 free (compressed_name
);
1683 if (uncompressed_name
!= file
)
1684 free (uncompressed_name
);
1691 process_file (FILE *fh
, char *fn
, language
*lang
)
1693 static const fdesc emptyfdesc
;
1697 /* Create a new input file description entry. */
1698 fdp
= xnew (1, fdesc
);
1701 fdp
->infname
= savestr (fn
);
1703 fdp
->infabsname
= absolute_filename (fn
, cwd
);
1704 fdp
->infabsdir
= absolute_dirname (fn
, cwd
);
1705 if (filename_is_absolute (fn
))
1707 /* An absolute file name. Canonicalize it. */
1708 fdp
->taggedfname
= absolute_filename (fn
, NULL
);
1712 /* A file name relative to cwd. Make it relative
1713 to the directory of the tags file. */
1714 fdp
->taggedfname
= relative_filename (fn
, tagfiledir
);
1716 fdp
->usecharno
= true; /* use char position when making tags */
1718 fdp
->written
= false; /* not written on tags file yet */
1721 curfdp
= fdhead
; /* the current file description */
1725 /* If not Ctags, and if this is not metasource and if it contained no #line
1726 directives, we can write the tags and free all nodes pointing to
1729 && curfdp
->usecharno
/* no #line directives in this file */
1730 && !curfdp
->lang
->metasource
)
1734 /* Look for the head of the sublist relative to this file. See add_node
1735 for the structure of the node tree. */
1737 for (np
= nodehead
; np
!= NULL
; prev
= np
, np
= np
->left
)
1738 if (np
->fdp
== curfdp
)
1741 /* If we generated tags for this file, write and delete them. */
1744 /* This is the head of the last sublist, if any. The following
1745 instructions depend on this being true. */
1746 assert (np
->left
== NULL
);
1748 assert (fdhead
== curfdp
);
1749 assert (last_node
->fdp
== curfdp
);
1750 put_entries (np
); /* write tags for file curfdp->taggedfname */
1751 free_tree (np
); /* remove the written nodes */
1753 nodehead
= NULL
; /* no nodes left */
1755 prev
->left
= NULL
; /* delete the pointer to the sublist */
1761 reset_input (FILE *inf
)
1763 if (fseek (inf
, 0, SEEK_SET
) != 0)
1764 perror (infilename
);
1768 * This routine opens the specified file and calls the function
1769 * which finds the function and type definitions.
1772 find_entries (FILE *inf
)
1775 language
*lang
= curfdp
->lang
;
1776 Lang_function
*parser
= NULL
;
1778 /* If user specified a language, use it. */
1779 if (lang
!= NULL
&& lang
->function
!= NULL
)
1781 parser
= lang
->function
;
1784 /* Else try to guess the language given the file name. */
1787 lang
= get_language_from_filename (curfdp
->infname
, true);
1788 if (lang
!= NULL
&& lang
->function
!= NULL
)
1790 curfdp
->lang
= lang
;
1791 parser
= lang
->function
;
1795 /* Else look for sharp-bang as the first two characters. */
1797 && readline_internal (&lb
, inf
, infilename
) > 0
1799 && lb
.buffer
[0] == '#'
1800 && lb
.buffer
[1] == '!')
1804 /* Set lp to point at the first char after the last slash in the
1805 line or, if no slashes, at the first nonblank. Then set cp to
1806 the first successive blank and terminate the string. */
1807 lp
= strrchr (lb
.buffer
+2, '/');
1811 lp
= skip_spaces (lb
.buffer
+ 2);
1812 cp
= skip_non_spaces (lp
);
1813 /* If the "interpreter" turns out to be "env", the real interpreter is
1815 if (cp
> lp
&& strneq (lp
, "env", cp
- lp
))
1817 lp
= skip_spaces (cp
);
1818 cp
= skip_non_spaces (lp
);
1822 if (strlen (lp
) > 0)
1824 lang
= get_language_from_interpreter (lp
);
1825 if (lang
!= NULL
&& lang
->function
!= NULL
)
1827 curfdp
->lang
= lang
;
1828 parser
= lang
->function
;
1835 /* Else try to guess the language given the case insensitive file name. */
1838 lang
= get_language_from_filename (curfdp
->infname
, false);
1839 if (lang
!= NULL
&& lang
->function
!= NULL
)
1841 curfdp
->lang
= lang
;
1842 parser
= lang
->function
;
1846 /* Else try Fortran or C. */
1849 node
*old_last_node
= last_node
;
1851 curfdp
->lang
= get_language_from_langname ("fortran");
1854 if (old_last_node
== last_node
)
1855 /* No Fortran entries found. Try C. */
1858 curfdp
->lang
= get_language_from_langname (cplusplus
? "c++" : "c");
1864 if (!no_line_directive
1865 && curfdp
->lang
!= NULL
&& curfdp
->lang
->metasource
)
1866 /* It may be that this is a bingo.y file, and we already parsed a bingo.c
1867 file, or anyway we parsed a file that is automatically generated from
1868 this one. If this is the case, the bingo.c file contained #line
1869 directives that generated tags pointing to this file. Let's delete
1870 them all before parsing this file, which is the real source. */
1872 fdesc
**fdpp
= &fdhead
;
1873 while (*fdpp
!= NULL
)
1875 && streq ((*fdpp
)->taggedfname
, curfdp
->taggedfname
))
1876 /* We found one of those! We must delete both the file description
1877 and all tags referring to it. */
1879 fdesc
*badfdp
= *fdpp
;
1881 /* Delete the tags referring to badfdp->taggedfname
1882 that were obtained from badfdp->infname. */
1883 invalidate_nodes (badfdp
, &nodehead
);
1885 *fdpp
= badfdp
->next
; /* remove the bad description from the list */
1886 free_fdesc (badfdp
);
1889 fdpp
= &(*fdpp
)->next
; /* advance the list pointer */
1892 assert (parser
!= NULL
);
1894 /* Generic initializations before reading from file. */
1895 linebuffer_setlen (&filebuf
, 0); /* reset the file buffer */
1897 /* Generic initializations before parsing file with readline. */
1898 lineno
= 0; /* reset global line number */
1899 charno
= 0; /* reset global char number */
1900 linecharno
= 0; /* reset global char number of line start */
1904 regex_tag_multiline ();
1909 * Check whether an implicitly named tag should be created,
1910 * then call `pfnote'.
1911 * NAME is a string that is internally copied by this function.
1913 * TAGS format specification
1914 * Idea by Sam Kendall <kendall@mv.mv.com> (1997)
1915 * The following is explained in some more detail in etc/ETAGS.EBNF.
1917 * make_tag creates tags with "implicit tag names" (unnamed tags)
1918 * if the following are all true, assuming NONAM=" \f\t\n\r()=,;":
1919 * 1. NAME does not contain any of the characters in NONAM;
1920 * 2. LINESTART contains name as either a rightmost, or rightmost but
1921 * one character, substring;
1922 * 3. the character, if any, immediately before NAME in LINESTART must
1923 * be a character in NONAM;
1924 * 4. the character, if any, immediately after NAME in LINESTART must
1925 * also be a character in NONAM.
1927 * The implementation uses the notinname() macro, which recognizes the
1928 * characters stored in the string `nonam'.
1929 * etags.el needs to use the same characters that are in NONAM.
1932 make_tag (const char *name
, /* tag name, or NULL if unnamed */
1933 int namelen
, /* tag length */
1934 bool is_func
, /* tag is a function */
1935 char *linestart
, /* start of the line where tag is */
1936 int linelen
, /* length of the line where tag is */
1937 int lno
, /* line number */
1938 long int cno
) /* character number */
1940 bool named
= (name
!= NULL
&& namelen
> 0);
1944 fprintf (stderr
, "%s on %s:%d: %s\n",
1945 named
? name
: "(unnamed)", curfdp
->taggedfname
, lno
, linestart
);
1947 if (!CTAGS
&& named
) /* maybe set named to false */
1948 /* Let's try to make an implicit tag name, that is, create an unnamed tag
1949 such that etags.el can guess a name from it. */
1952 register const char *cp
= name
;
1954 for (i
= 0; i
< namelen
; i
++)
1955 if (notinname (*cp
++))
1957 if (i
== namelen
) /* rule #1 */
1959 cp
= linestart
+ linelen
- namelen
;
1960 if (notinname (linestart
[linelen
-1]))
1961 cp
-= 1; /* rule #4 */
1962 if (cp
>= linestart
/* rule #2 */
1964 || notinname (cp
[-1])) /* rule #3 */
1965 && strneq (name
, cp
, namelen
)) /* rule #2 */
1966 named
= false; /* use implicit tag name */
1971 nname
= savenstr (name
, namelen
);
1973 pfnote (nname
, is_func
, linestart
, linelen
, lno
, cno
);
1978 pfnote (char *name
, bool is_func
, char *linestart
, int linelen
, int lno
,
1980 /* tag name, or NULL if unnamed */
1981 /* tag is a function */
1982 /* start of the line where tag is */
1983 /* length of the line where tag is */
1985 /* character number */
1989 assert (name
== NULL
|| name
[0] != '\0');
1990 if (CTAGS
&& name
== NULL
)
1993 np
= xnew (1, node
);
1995 /* If ctags mode, change name "main" to M<thisfilename>. */
1996 if (CTAGS
&& !cxref_style
&& streq (name
, "main"))
1998 char *fp
= strrchr (curfdp
->taggedfname
, '/');
1999 np
->name
= concat ("M", fp
== NULL
? curfdp
->taggedfname
: fp
+ 1, "");
2000 fp
= strrchr (np
->name
, '.');
2001 if (fp
!= NULL
&& fp
[1] != '\0' && fp
[2] == '\0')
2007 np
->been_warned
= false;
2009 np
->is_func
= is_func
;
2011 if (np
->fdp
->usecharno
)
2012 /* Our char numbers are 0-base, because of C language tradition?
2013 ctags compatibility? old versions compatibility? I don't know.
2014 Anyway, since emacs's are 1-base we expect etags.el to take care
2015 of the difference. If we wanted to have 1-based numbers, we would
2016 uncomment the +1 below. */
2017 np
->cno
= cno
/* + 1 */ ;
2019 np
->cno
= invalidcharno
;
2020 np
->left
= np
->right
= NULL
;
2021 if (CTAGS
&& !cxref_style
)
2023 if (strlen (linestart
) < 50)
2024 np
->regex
= concat (linestart
, "$", "");
2026 np
->regex
= savenstr (linestart
, 50);
2029 np
->regex
= savenstr (linestart
, linelen
);
2031 add_node (np
, &nodehead
);
2035 * Utility functions and data to avoid recursion.
2038 typedef struct stack_entry
{
2040 struct stack_entry
*next
;
2044 push_node (node
*np
, stkentry
**stack_top
)
2048 stkentry
*new = xnew (1, stkentry
);
2051 new->next
= *stack_top
;
2057 pop_node (stkentry
**stack_top
)
2063 stkentry
*old_start
= *stack_top
;
2065 ret
= (*stack_top
)->np
;
2066 *stack_top
= (*stack_top
)->next
;
2074 * emulate recursion on left children, iterate on right children.
2077 free_tree (register node
*np
)
2079 stkentry
*stack
= NULL
;
2083 /* Descent on left children. */
2086 push_node (np
, &stack
);
2089 /* Free node without left children. */
2090 node
*node_right
= np
->right
;
2096 /* Backtrack to find a node with right children, while freeing nodes
2097 that don't have right children. */
2098 while (node_right
== NULL
&& (np
= pop_node (&stack
)) != NULL
)
2100 node_right
= np
->right
;
2106 /* Free right children. */
2113 * delete a file description
2116 free_fdesc (register fdesc
*fdp
)
2118 free (fdp
->infname
);
2119 free (fdp
->infabsname
);
2120 free (fdp
->infabsdir
);
2121 free (fdp
->taggedfname
);
2128 * Adds a node to the tree of nodes. In etags mode, sort by file
2129 * name. In ctags mode, sort by tag name. Make no attempt at
2132 * add_node is the only function allowed to add nodes, so it can
2136 add_node (node
*np
, node
**cur_node_p
)
2138 node
*cur_node
= *cur_node_p
;
2140 /* Make the first node. */
2141 if (cur_node
== NULL
)
2151 /* For each file name, tags are in a linked sublist on the right
2152 pointer. The first tags of different files are a linked list
2153 on the left pointer. last_node points to the end of the last
2155 if (last_node
!= NULL
&& last_node
->fdp
== np
->fdp
)
2157 /* Let's use the same sublist as the last added node. */
2158 assert (last_node
->right
== NULL
);
2159 last_node
->right
= np
;
2164 while (cur_node
->fdp
!= np
->fdp
)
2166 if (cur_node
->left
== NULL
)
2168 /* The head of this sublist is not good for us. Let's try the
2170 cur_node
= cur_node
->left
;
2174 /* Scanning the list we found the head of a sublist which is
2175 good for us. Let's scan this sublist. */
2176 if (cur_node
->right
)
2178 cur_node
= cur_node
->right
;
2179 while (cur_node
->right
)
2180 cur_node
= cur_node
->right
;
2182 /* Make a new node in this sublist. */
2183 cur_node
->right
= np
;
2187 /* Make a new sublist. */
2188 cur_node
->left
= np
;
2192 } /* if ETAGS mode */
2196 node
**next_node
= &cur_node
;
2198 while ((cur_node
= *next_node
) != NULL
)
2200 int dif
= strcmp (np
->name
, cur_node
->name
);
2202 * If this tag name matches an existing one, then
2203 * do not add the node, but maybe print a warning.
2205 if (!dif
&& no_duplicates
)
2207 if (np
->fdp
== cur_node
->fdp
)
2212 "Duplicate entry in file %s, line %d: %s\n",
2213 np
->fdp
->infname
, lineno
, np
->name
);
2214 fprintf (stderr
, "Second entry ignored\n");
2217 else if (!cur_node
->been_warned
&& !no_warnings
)
2221 "Duplicate entry in files %s and %s: %s (Warning only)\n",
2222 np
->fdp
->infname
, cur_node
->fdp
->infname
, np
->name
);
2223 cur_node
->been_warned
= true;
2228 next_node
= dif
< 0 ? &cur_node
->left
: &cur_node
->right
;
2232 } /* if CTAGS mode */
2236 * invalidate_nodes ()
2237 * Scan the node tree and invalidate all nodes pointing to the
2238 * given file description (CTAGS case) or free them (ETAGS case).
2241 invalidate_nodes (fdesc
*badfdp
, node
**npp
)
2244 stkentry
*stack
= NULL
;
2250 /* Push all the left children on the stack. */
2251 while (np
->left
!= NULL
)
2253 push_node (np
, &stack
);
2256 /* Invalidate this node. */
2257 if (np
->fdp
== badfdp
)
2261 /* Pop nodes from stack, invalidating them, until we find one
2262 with a right child. */
2263 while ((np
= pop_node (&stack
)) != NULL
)
2265 if (np
->fdp
== badfdp
)
2267 if (np
->right
!= NULL
)
2271 /* Process the right child, if any. */
2278 node super_root
, *np_parent
= NULL
;
2280 super_root
.left
= np
;
2281 super_root
.fdp
= (fdesc
*) -1;
2286 /* Descent on left children until node with BADFP. */
2287 while (np
&& np
->fdp
!= badfdp
)
2289 assert (np
->fdp
!= NULL
);
2295 np_parent
->left
= np
->left
; /* detach subtree from the tree */
2296 np
->left
= NULL
; /* isolate it */
2297 free_tree (np
); /* free it */
2299 /* Continue with rest of tree. */
2300 np
= np_parent
->left
;
2303 *npp
= super_root
.left
;
2308 static int total_size_of_entries (node
*);
2309 static int number_len (long) ATTRIBUTE_CONST
;
2311 /* Length of a non-negative number's decimal representation. */
2313 number_len (long int num
)
2316 while ((num
/= 10) > 0)
2322 * Return total number of characters that put_entries will output for
2323 * the nodes in the linked list at the right of the specified node.
2324 * This count is irrelevant with etags.el since emacs 19.34 at least,
2325 * but is still supplied for backward compatibility.
2328 total_size_of_entries (register node
*np
)
2330 register int total
= 0;
2332 for (; np
!= NULL
; np
= np
->right
)
2335 total
+= strlen (np
->regex
) + 1; /* pat\177 */
2336 if (np
->name
!= NULL
)
2337 total
+= strlen (np
->name
) + 1; /* name\001 */
2338 total
+= number_len ((long) np
->lno
) + 1; /* lno, */
2339 if (np
->cno
!= invalidcharno
) /* cno */
2340 total
+= number_len (np
->cno
);
2341 total
+= 1; /* newline */
2348 put_entry (node
*np
)
2351 static fdesc
*fdp
= NULL
;
2353 /* Output this entry */
2362 fprintf (tagf
, "\f\n%s,%d\n",
2363 fdp
->taggedfname
, total_size_of_entries (np
));
2364 fdp
->written
= true;
2366 fputs (np
->regex
, tagf
);
2367 fputc ('\177', tagf
);
2368 if (np
->name
!= NULL
)
2370 fputs (np
->name
, tagf
);
2371 fputc ('\001', tagf
);
2373 fprintf (tagf
, "%d,", np
->lno
);
2374 if (np
->cno
!= invalidcharno
)
2375 fprintf (tagf
, "%ld", np
->cno
);
2381 if (np
->name
== NULL
)
2382 error ("internal error: NULL name in ctags mode.");
2387 fprintf (stdout
, "%s %s %d\n",
2388 np
->name
, np
->fdp
->taggedfname
, (np
->lno
+ 63) / 64);
2390 fprintf (stdout
, "%-16s %3d %-16s %s\n",
2391 np
->name
, np
->lno
, np
->fdp
->taggedfname
, np
->regex
);
2395 fprintf (tagf
, "%s\t%s\t", np
->name
, np
->fdp
->taggedfname
);
2398 { /* function or #define macro with args */
2399 putc (searchar
, tagf
);
2402 for (sp
= np
->regex
; *sp
; sp
++)
2404 if (*sp
== '\\' || *sp
== searchar
)
2408 putc (searchar
, tagf
);
2411 { /* anything else; text pattern inadequate */
2412 fprintf (tagf
, "%d", np
->lno
);
2417 } /* if this node contains a valid tag */
2421 put_entries (node
*np
)
2423 stkentry
*stack
= NULL
;
2432 /* Stack subentries that precede this one. */
2435 push_node (np
, &stack
);
2438 /* Output this subentry. */
2440 /* Stack subentries that follow this one. */
2443 /* Output subentries that precede the next one. */
2444 np
= pop_node (&stack
);
2455 push_node (np
, &stack
);
2456 while ((np
= pop_node (&stack
)) != NULL
)
2458 /* Output this subentry. */
2462 /* Output subentries that follow this one. */
2463 put_entry (np
->right
);
2464 /* Stack subentries from the following files. */
2465 push_node (np
->left
, &stack
);
2468 push_node (np
->left
, &stack
);
2475 #define C_EXT 0x00fff /* C extensions */
2476 #define C_PLAIN 0x00000 /* C */
2477 #define C_PLPL 0x00001 /* C++ */
2478 #define C_STAR 0x00003 /* C* */
2479 #define C_JAVA 0x00005 /* JAVA */
2480 #define C_AUTO 0x01000 /* C, but switch to C++ if `class' is met */
2481 #define YACC 0x10000 /* yacc file */
2484 * The C symbol tables.
2489 st_C_objprot
, st_C_objimpl
, st_C_objend
,
2491 st_C_ignore
, st_C_attribute
, st_C_enum_bf
,
2494 st_C_class
, st_C_template
,
2495 st_C_struct
, st_C_extern
, st_C_enum
, st_C_define
, st_C_typedef
2498 /* Feed stuff between (but not including) %[ and %] lines to:
2504 struct C_stab_entry { char *name; int c_ext; enum sym_type type; }
2508 while, 0, st_C_ignore
2509 switch, 0, st_C_ignore
2510 return, 0, st_C_ignore
2511 __attribute__, 0, st_C_attribute
2512 GTY, 0, st_C_attribute
2513 @interface, 0, st_C_objprot
2514 @protocol, 0, st_C_objprot
2515 @implementation,0, st_C_objimpl
2516 @end, 0, st_C_objend
2517 import, (C_JAVA & ~C_PLPL), st_C_ignore
2518 package, (C_JAVA & ~C_PLPL), st_C_ignore
2519 friend, C_PLPL, st_C_ignore
2520 extends, (C_JAVA & ~C_PLPL), st_C_javastruct
2521 implements, (C_JAVA & ~C_PLPL), st_C_javastruct
2522 interface, (C_JAVA & ~C_PLPL), st_C_struct
2523 class, 0, st_C_class
2524 namespace, C_PLPL, st_C_struct
2525 domain, C_STAR, st_C_struct
2526 union, 0, st_C_struct
2527 struct, 0, st_C_struct
2528 extern, 0, st_C_extern
2530 typedef, 0, st_C_typedef
2531 define, 0, st_C_define
2532 undef, 0, st_C_define
2533 operator, C_PLPL, st_C_operator
2534 template, 0, st_C_template
2535 # DEFUN used in emacs, the next three used in glibc (SYSCALL only for mach).
2536 DEFUN, 0, st_C_gnumacro
2537 SYSCALL, 0, st_C_gnumacro
2538 ENTRY, 0, st_C_gnumacro
2539 PSEUDO, 0, st_C_gnumacro
2540 ENUM_BF, 0, st_C_enum_bf
2541 # These are defined inside C functions, so currently they are not met.
2542 # EXFUN used in glibc, DEFVAR_* in emacs.
2543 #EXFUN, 0, st_C_gnumacro
2544 #DEFVAR_, 0, st_C_gnumacro
2546 and replace lines between %< and %> with its output, then:
2547 - remove the #if characterset check
2548 - remove any #line directives
2549 - make in_word_set static and not inline
2550 - remove any 'register' qualifications from variable decls. */
2552 /* C code produced by gperf version 3.0.1 */
2553 /* Command-line: gperf -m 5 */
2554 /* Computed positions: -k'2-3' */
2556 struct C_stab_entry
{ const char *name
; int c_ext
; enum sym_type type
; };
2557 /* maximum key range = 34, duplicates = 0 */
2560 hash (const char *str
, int len
)
2562 static char const asso_values
[] =
2564 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2565 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2566 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2567 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2568 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2569 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2570 36, 36, 36, 36, 36, 36, 36, 36, 36, 3,
2571 27, 36, 36, 36, 36, 36, 36, 36, 26, 36,
2572 36, 36, 36, 25, 0, 0, 36, 36, 36, 0,
2573 36, 36, 36, 36, 36, 1, 36, 16, 36, 6,
2574 23, 0, 0, 36, 22, 0, 36, 36, 5, 0,
2575 0, 15, 1, 36, 6, 36, 8, 19, 36, 16,
2576 4, 5, 36, 36, 36, 36, 36, 36, 36, 36,
2577 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2578 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2579 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2580 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2581 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2582 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2583 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2584 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2585 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2586 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2587 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2588 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
2589 36, 36, 36, 36, 36, 36
2596 hval
+= asso_values
[(unsigned char) str
[2]];
2599 hval
+= asso_values
[(unsigned char) str
[1]];
2605 static struct C_stab_entry
*
2606 in_word_set (register const char *str
, register unsigned int len
)
2610 TOTAL_KEYWORDS
= 34,
2611 MIN_WORD_LENGTH
= 2,
2612 MAX_WORD_LENGTH
= 15,
2617 static struct C_stab_entry wordlist
[] =
2620 {"if", 0, st_C_ignore
},
2621 {"GTY", 0, st_C_attribute
},
2622 {"@end", 0, st_C_objend
},
2623 {"union", 0, st_C_struct
},
2624 {"define", 0, st_C_define
},
2625 {"import", (C_JAVA
& ~C_PLPL
), st_C_ignore
},
2626 {"template", 0, st_C_template
},
2627 {"operator", C_PLPL
, st_C_operator
},
2628 {"@interface", 0, st_C_objprot
},
2629 {"implements", (C_JAVA
& ~C_PLPL
), st_C_javastruct
},
2630 {"friend", C_PLPL
, st_C_ignore
},
2631 {"typedef", 0, st_C_typedef
},
2632 {"return", 0, st_C_ignore
},
2633 {"@implementation",0, st_C_objimpl
},
2634 {"@protocol", 0, st_C_objprot
},
2635 {"interface", (C_JAVA
& ~C_PLPL
), st_C_struct
},
2636 {"extern", 0, st_C_extern
},
2637 {"extends", (C_JAVA
& ~C_PLPL
), st_C_javastruct
},
2638 {"struct", 0, st_C_struct
},
2639 {"domain", C_STAR
, st_C_struct
},
2640 {"switch", 0, st_C_ignore
},
2641 {"enum", 0, st_C_enum
},
2642 {"for", 0, st_C_ignore
},
2643 {"namespace", C_PLPL
, st_C_struct
},
2644 {"class", 0, st_C_class
},
2645 {"while", 0, st_C_ignore
},
2646 {"undef", 0, st_C_define
},
2647 {"package", (C_JAVA
& ~C_PLPL
), st_C_ignore
},
2648 {"__attribute__", 0, st_C_attribute
},
2649 {"ENTRY", 0, st_C_gnumacro
},
2650 {"SYSCALL", 0, st_C_gnumacro
},
2651 {"ENUM_BF", 0, st_C_enum_bf
},
2652 {"PSEUDO", 0, st_C_gnumacro
},
2653 {"DEFUN", 0, st_C_gnumacro
}
2656 if (len
<= MAX_WORD_LENGTH
&& len
>= MIN_WORD_LENGTH
)
2658 int key
= hash (str
, len
);
2660 if (key
<= MAX_HASH_VALUE
&& key
>= 0)
2662 const char *s
= wordlist
[key
].name
;
2664 if (*str
== *s
&& !strncmp (str
+ 1, s
+ 1, len
- 1) && s
[len
] == '\0')
2665 return &wordlist
[key
];
2672 static enum sym_type
2673 C_symtype (char *str
, int len
, int c_ext
)
2675 register struct C_stab_entry
*se
= in_word_set (str
, len
);
2677 if (se
== NULL
|| (se
->c_ext
&& !(c_ext
& se
->c_ext
)))
2684 * Ignoring __attribute__ ((list))
2686 static bool inattribute
; /* looking at an __attribute__ construct */
2688 /* Ignoring ENUM_BF (type)
2691 static bool in_enum_bf
; /* inside parentheses following ENUM_BF */
2694 * C functions and variables are recognized using a simple
2695 * finite automaton. fvdef is its state variable.
2699 fvnone
, /* nothing seen */
2700 fdefunkey
, /* Emacs DEFUN keyword seen */
2701 fdefunname
, /* Emacs DEFUN name seen */
2702 foperator
, /* func: operator keyword seen (cplpl) */
2703 fvnameseen
, /* function or variable name seen */
2704 fstartlist
, /* func: just after open parenthesis */
2705 finlist
, /* func: in parameter list */
2706 flistseen
, /* func: after parameter list */
2707 fignore
, /* func: before open brace */
2708 vignore
/* var-like: ignore until ';' */
2711 static bool fvextern
; /* func or var: extern keyword seen; */
2714 * typedefs are recognized using a simple finite automaton.
2715 * typdef is its state variable.
2719 tnone
, /* nothing seen */
2720 tkeyseen
, /* typedef keyword seen */
2721 ttypeseen
, /* defined type seen */
2722 tinbody
, /* inside typedef body */
2723 tend
, /* just before typedef tag */
2724 tignore
/* junk after typedef tag */
2728 * struct-like structures (enum, struct and union) are recognized
2729 * using another simple finite automaton. `structdef' is its state
2734 snone
, /* nothing seen yet,
2735 or in struct body if bracelev > 0 */
2736 skeyseen
, /* struct-like keyword seen */
2737 stagseen
, /* struct-like tag seen */
2738 scolonseen
/* colon seen after struct-like tag */
2742 * When objdef is different from onone, objtag is the name of the class.
2744 static const char *objtag
= "<uninited>";
2747 * Yet another little state machine to deal with preprocessor lines.
2751 dnone
, /* nothing seen */
2752 dsharpseen
, /* '#' seen as first char on line */
2753 ddefineseen
, /* '#' and 'define' seen */
2754 dignorerest
/* ignore rest of line */
2758 * State machine for Objective C protocols and implementations.
2759 * Idea by Tom R.Hageman <tom@basil.icce.rug.nl> (1995)
2763 onone
, /* nothing seen */
2764 oprotocol
, /* @interface or @protocol seen */
2765 oimplementation
, /* @implementations seen */
2766 otagseen
, /* class name seen */
2767 oparenseen
, /* parenthesis before category seen */
2768 ocatseen
, /* category name seen */
2769 oinbody
, /* in @implementation body */
2770 omethodsign
, /* in @implementation body, after +/- */
2771 omethodtag
, /* after method name */
2772 omethodcolon
, /* after method colon */
2773 omethodparm
, /* after method parameter */
2774 oignore
/* wait for @end */
2779 * Use this structure to keep info about the token read, and how it
2780 * should be tagged. Used by the make_C_tag function to build a tag.
2784 char *line
; /* string containing the token */
2785 int offset
; /* where the token starts in LINE */
2786 int length
; /* token length */
2788 The previous members can be used to pass strings around for generic
2789 purposes. The following ones specifically refer to creating tags. In this
2790 case the token contained here is the pattern that will be used to create a
2793 bool valid
; /* do not create a tag; the token should be
2794 invalidated whenever a state machine is
2795 reset prematurely */
2796 bool named
; /* create a named tag */
2797 int lineno
; /* source line number of tag */
2798 long linepos
; /* source char number of tag */
2799 } token
; /* latest token read */
2802 * Variables and functions for dealing with nested structures.
2803 * Idea by Mykola Dzyuba <mdzyuba@yahoo.com> (2001)
2805 static void pushclass_above (int, char *, int);
2806 static void popclass_above (int);
2807 static void write_classname (linebuffer
*, const char *qualifier
);
2810 char **cname
; /* nested class names */
2811 int *bracelev
; /* nested class brace level */
2812 int nl
; /* class nesting level (elements used) */
2813 int size
; /* length of the array */
2814 } cstack
; /* stack for nested declaration tags */
2815 /* Current struct nesting depth (namespace, class, struct, union, enum). */
2816 #define nestlev (cstack.nl)
2817 /* After struct keyword or in struct body, not inside a nested function. */
2818 #define instruct (structdef == snone && nestlev > 0 \
2819 && bracelev == cstack.bracelev[nestlev-1] + 1)
2822 pushclass_above (int bracelev
, char *str
, int len
)
2826 popclass_above (bracelev
);
2828 if (nl
>= cstack
.size
)
2830 int size
= cstack
.size
*= 2;
2831 xrnew (cstack
.cname
, size
, char *);
2832 xrnew (cstack
.bracelev
, size
, int);
2834 assert (nl
== 0 || cstack
.bracelev
[nl
-1] < bracelev
);
2835 cstack
.cname
[nl
] = (str
== NULL
) ? NULL
: savenstr (str
, len
);
2836 cstack
.bracelev
[nl
] = bracelev
;
2841 popclass_above (int bracelev
)
2845 for (nl
= cstack
.nl
- 1;
2846 nl
>= 0 && cstack
.bracelev
[nl
] >= bracelev
;
2849 free (cstack
.cname
[nl
]);
2855 write_classname (linebuffer
*cn
, const char *qualifier
)
2858 int qlen
= strlen (qualifier
);
2860 if (cstack
.nl
== 0 || cstack
.cname
[0] == NULL
)
2864 cn
->buffer
[0] = '\0';
2868 len
= strlen (cstack
.cname
[0]);
2869 linebuffer_setlen (cn
, len
);
2870 strcpy (cn
->buffer
, cstack
.cname
[0]);
2872 for (i
= 1; i
< cstack
.nl
; i
++)
2874 char *s
= cstack
.cname
[i
];
2877 linebuffer_setlen (cn
, len
+ qlen
+ strlen (s
));
2878 len
+= sprintf (cn
->buffer
+ len
, "%s%s", qualifier
, s
);
2883 static bool consider_token (char *, int, int, int *, int, int, bool *);
2884 static void make_C_tag (bool);
2888 * checks to see if the current token is at the start of a
2889 * function or variable, or corresponds to a typedef, or
2890 * is a struct/union/enum tag, or #define, or an enum constant.
2892 * *IS_FUNC_OR_VAR gets true if the token is a function or #define macro
2893 * with args. C_EXTP points to which language we are looking at.
2904 consider_token (char *str
, int len
, int c
, int *c_extp
,
2905 int bracelev
, int parlev
, bool *is_func_or_var
)
2906 /* IN: token pointer */
2907 /* IN: token length */
2908 /* IN: first char after the token */
2909 /* IN, OUT: C extensions mask */
2910 /* IN: brace level */
2911 /* IN: parenthesis level */
2912 /* OUT: function or variable found */
2914 /* When structdef is stagseen, scolonseen, or snone with bracelev > 0,
2915 structtype is the type of the preceding struct-like keyword, and
2916 structbracelev is the brace level where it has been seen. */
2917 static enum sym_type structtype
;
2918 static int structbracelev
;
2919 static enum sym_type toktype
;
2922 toktype
= C_symtype (str
, len
, *c_extp
);
2925 * Skip __attribute__
2927 if (toktype
== st_C_attribute
)
2936 if (toktype
== st_C_enum_bf
&& definedef
== dnone
)
2943 * Advance the definedef state machine.
2948 /* We're not on a preprocessor line. */
2949 if (toktype
== st_C_gnumacro
)
2956 if (toktype
== st_C_define
)
2958 definedef
= ddefineseen
;
2962 definedef
= dignorerest
;
2967 * Make a tag for any macro, unless it is a constant
2968 * and constantypedefs is false.
2970 definedef
= dignorerest
;
2971 *is_func_or_var
= (c
== '(');
2972 if (!*is_func_or_var
&& !constantypedefs
)
2979 error ("internal error: definedef value.");
2988 if (toktype
== st_C_typedef
)
3011 if (structdef
== snone
&& fvdef
== fvnone
)
3033 case st_C_javastruct
:
3034 if (structdef
== stagseen
)
3035 structdef
= scolonseen
;
3039 if ((*c_extp
& C_AUTO
) /* automatic detection of C++ language */
3041 && definedef
== dnone
&& structdef
== snone
3042 && typdef
== tnone
&& fvdef
== fvnone
)
3043 *c_extp
= (*c_extp
| C_PLPL
) & ~C_AUTO
;
3044 if (toktype
== st_C_template
)
3051 && (typdef
== tkeyseen
3052 || (typedefs_or_cplusplus
&& structdef
== snone
)))
3054 structdef
= skeyseen
;
3055 structtype
= toktype
;
3056 structbracelev
= bracelev
;
3057 if (fvdef
== fvnameseen
)
3065 if (structdef
== skeyseen
)
3067 structdef
= stagseen
;
3071 if (typdef
!= tnone
)
3074 /* Detect Objective C constructs. */
3084 objdef
= oimplementation
;
3090 case oimplementation
:
3091 /* Save the class tag for functions or variables defined inside. */
3092 objtag
= savenstr (str
, len
);
3096 /* Save the class tag for categories. */
3097 objtag
= savenstr (str
, len
);
3099 *is_func_or_var
= true;
3103 *is_func_or_var
= true;
3111 objdef
= omethodtag
;
3112 linebuffer_setlen (&token_name
, len
);
3113 memcpy (token_name
.buffer
, str
, len
);
3114 token_name
.buffer
[len
] = '\0';
3120 objdef
= omethodparm
;
3125 objdef
= omethodtag
;
3128 int oldlen
= token_name
.len
;
3130 linebuffer_setlen (&token_name
, oldlen
+ len
);
3131 memcpy (token_name
.buffer
+ oldlen
, str
, len
);
3132 token_name
.buffer
[oldlen
+ len
] = '\0';
3138 if (toktype
== st_C_objend
)
3140 /* Memory leakage here: the string pointed by objtag is
3141 never released, because many tests would be needed to
3142 avoid breaking on incorrect input code. The amount of
3143 memory leaked here is the sum of the lengths of the
3153 /* A function, variable or enum constant? */
3175 *is_func_or_var
= true;
3179 && structdef
== snone
3180 && structtype
== st_C_enum
&& bracelev
> structbracelev
3181 /* Don't tag tokens in expressions that assign values to enum
3183 && fvdef
!= vignore
)
3184 return true; /* enum constant */
3190 fvdef
= fdefunname
; /* GNU macro */
3191 *is_func_or_var
= true;
3199 if ((strneq (str
, "asm", 3) && endtoken (str
[3]))
3200 || (strneq (str
, "__asm__", 7) && endtoken (str
[7])))
3211 if (len
>= 10 && strneq (str
+len
-10, "::operator", 10))
3213 if (*c_extp
& C_AUTO
) /* automatic detection of C++ */
3214 *c_extp
= (*c_extp
| C_PLPL
) & ~C_AUTO
;
3216 *is_func_or_var
= true;
3219 if (bracelev
> 0 && !instruct
)
3221 fvdef
= fvnameseen
; /* function or variable */
3222 *is_func_or_var
= true;
3237 * C_entries often keeps pointers to tokens or lines which are older than
3238 * the line currently read. By keeping two line buffers, and switching
3239 * them at end of line, it is possible to use those pointers.
3247 #define current_lb_is_new (newndx == curndx)
3248 #define switch_line_buffers() (curndx = 1 - curndx)
3250 #define curlb (lbs[curndx].lb)
3251 #define newlb (lbs[newndx].lb)
3252 #define curlinepos (lbs[curndx].linepos)
3253 #define newlinepos (lbs[newndx].linepos)
3255 #define plainc ((c_ext & C_EXT) == C_PLAIN)
3256 #define cplpl (c_ext & C_PLPL)
3257 #define cjava ((c_ext & C_JAVA) == C_JAVA)
3259 #define CNL_SAVE_DEFINEDEF() \
3261 curlinepos = charno; \
3262 readline (&curlb, inf); \
3263 lp = curlb.buffer; \
3270 CNL_SAVE_DEFINEDEF (); \
3271 if (savetoken.valid) \
3273 token = savetoken; \
3274 savetoken.valid = false; \
3276 definedef = dnone; \
3281 make_C_tag (bool isfun
)
3283 /* This function is never called when token.valid is false, but
3284 we must protect against invalid input or internal errors. */
3286 make_tag (token_name
.buffer
, token_name
.len
, isfun
, token
.line
,
3287 token
.offset
+token
.length
+1, token
.lineno
, token
.linepos
);
3289 { /* this branch is optimized away if !DEBUG */
3290 make_tag (concat ("INVALID TOKEN:-->", token_name
.buffer
, ""),
3291 token_name
.len
+ 17, isfun
, token
.line
,
3292 token
.offset
+token
.length
+1, token
.lineno
, token
.linepos
);
3293 error ("INVALID TOKEN");
3296 token
.valid
= false;
3300 perhaps_more_input (FILE *inf
)
3302 return !feof (inf
) && !ferror (inf
);
3308 * This routine finds functions, variables, typedefs,
3309 * #define's, enum constants and struct/union/enum definitions in
3310 * C syntax and adds them to the list.
3313 C_entries (int c_ext
, FILE *inf
)
3314 /* extension of C */
3317 register char c
; /* latest char read; '\0' for end of line */
3318 register char *lp
; /* pointer one beyond the character `c' */
3319 int curndx
, newndx
; /* indices for current and new lb */
3320 register int tokoff
; /* offset in line of start of current token */
3321 register int toklen
; /* length of current token */
3322 const char *qualifier
; /* string used to qualify names */
3323 int qlen
; /* length of qualifier */
3324 int bracelev
; /* current brace level */
3325 int bracketlev
; /* current bracket level */
3326 int parlev
; /* current parenthesis level */
3327 int attrparlev
; /* __attribute__ parenthesis level */
3328 int templatelev
; /* current template level */
3329 int typdefbracelev
; /* bracelev where a typedef struct body begun */
3330 bool incomm
, inquote
, inchar
, quotednl
, midtoken
;
3331 bool yacc_rules
; /* in the rules part of a yacc file */
3332 struct tok savetoken
= {0}; /* token saved during preprocessor handling */
3335 linebuffer_init (&lbs
[0].lb
);
3336 linebuffer_init (&lbs
[1].lb
);
3337 if (cstack
.size
== 0)
3339 cstack
.size
= (DEBUG
) ? 1 : 4;
3341 cstack
.cname
= xnew (cstack
.size
, char *);
3342 cstack
.bracelev
= xnew (cstack
.size
, int);
3345 tokoff
= toklen
= typdefbracelev
= 0; /* keep compiler quiet */
3346 curndx
= newndx
= 0;
3350 fvdef
= fvnone
; fvextern
= false; typdef
= tnone
;
3351 structdef
= snone
; definedef
= dnone
; objdef
= onone
;
3353 midtoken
= inquote
= inchar
= incomm
= quotednl
= false;
3354 token
.valid
= savetoken
.valid
= false;
3355 bracelev
= bracketlev
= parlev
= attrparlev
= templatelev
= 0;
3357 { qualifier
= "."; qlen
= 1; }
3359 { qualifier
= "::"; qlen
= 2; }
3362 while (perhaps_more_input (inf
))
3367 /* If we are at the end of the line, the next character is a
3368 '\0'; do not skip it, because it is what tells us
3369 to read the next line. */
3390 /* Newlines inside comments do not end macro definitions in
3392 CNL_SAVE_DEFINEDEF ();
3405 /* Newlines inside strings do not end macro definitions
3406 in traditional cpp, even though compilers don't
3407 usually accept them. */
3408 CNL_SAVE_DEFINEDEF ();
3418 /* Hmmm, something went wrong. */
3454 if (fvdef
!= finlist
&& fvdef
!= fignore
&& fvdef
!= vignore
)
3469 else if (/* cplpl && */ *lp
== '/')
3475 if ((c_ext
& YACC
) && *lp
== '%')
3477 /* Entering or exiting rules section in yacc file. */
3479 definedef
= dnone
; fvdef
= fvnone
; fvextern
= false;
3480 typdef
= tnone
; structdef
= snone
;
3481 midtoken
= inquote
= inchar
= incomm
= quotednl
= false;
3483 yacc_rules
= !yacc_rules
;
3489 if (definedef
== dnone
)
3492 bool cpptoken
= true;
3494 /* Look back on this line. If all blanks, or nonblanks
3495 followed by an end of comment, this is a preprocessor
3497 for (cp
= newlb
.buffer
; cp
< lp
-1; cp
++)
3498 if (!c_isspace (*cp
))
3500 if (*cp
== '*' && cp
[1] == '/')
3510 definedef
= dsharpseen
;
3511 /* This is needed for tagging enum values: when there are
3512 preprocessor conditionals inside the enum, we need to
3513 reset the value of fvdef so that the next enum value is
3514 tagged even though the one before it did not end in a
3516 if (fvdef
== vignore
&& instruct
&& parlev
== 0)
3518 if (strneq (cp
, "#if", 3) || strneq (cp
, "#el", 3))
3522 } /* if (definedef == dnone) */
3533 CNL_SAVE_DEFINEDEF ();
3540 /* Consider token only if some involved conditions are satisfied. */
3541 if (typdef
!= tignore
3542 && definedef
!= dignorerest
3545 && (definedef
!= dnone
3546 || structdef
!= scolonseen
)
3554 if (c
== ':' && *lp
== ':' && begtoken (lp
[1]))
3555 /* This handles :: in the middle,
3556 but not at the beginning of an identifier.
3557 Also, space-separated :: is not recognized. */
3559 if (c_ext
& C_AUTO
) /* automatic detection of C++ */
3560 c_ext
= (c_ext
| C_PLPL
) & ~C_AUTO
;
3564 goto still_in_token
;
3568 bool funorvar
= false;
3571 || consider_token (newlb
.buffer
+ tokoff
, toklen
, c
,
3572 &c_ext
, bracelev
, parlev
,
3575 if (fvdef
== foperator
)
3578 lp
= skip_spaces (lp
-1);
3582 && !c_isspace (*lp
) && *lp
!= '(')
3585 toklen
+= lp
- oldlp
;
3587 token
.named
= false;
3589 && nestlev
> 0 && definedef
== dnone
)
3590 /* in struct body */
3595 write_classname (&token_name
, qualifier
);
3596 len
= token_name
.len
;
3597 linebuffer_setlen (&token_name
,
3598 len
+ qlen
+ toklen
);
3599 sprintf (token_name
.buffer
+ len
, "%s%.*s",
3601 newlb
.buffer
+ tokoff
);
3605 linebuffer_setlen (&token_name
, toklen
);
3606 sprintf (token_name
.buffer
, "%.*s",
3607 toklen
, newlb
.buffer
+ tokoff
);
3611 else if (objdef
== ocatseen
)
3612 /* Objective C category */
3616 int len
= strlen (objtag
) + 2 + toklen
;
3617 linebuffer_setlen (&token_name
, len
);
3618 sprintf (token_name
.buffer
, "%s(%.*s)",
3620 newlb
.buffer
+ tokoff
);
3624 linebuffer_setlen (&token_name
, toklen
);
3625 sprintf (token_name
.buffer
, "%.*s",
3626 toklen
, newlb
.buffer
+ tokoff
);
3630 else if (objdef
== omethodtag
3631 || objdef
== omethodparm
)
3632 /* Objective C method */
3636 else if (fvdef
== fdefunname
)
3637 /* GNU DEFUN and similar macros */
3639 bool defun
= (newlb
.buffer
[tokoff
] == 'F');
3648 /* First, tag it as its C name */
3649 linebuffer_setlen (&token_name
, toklen
);
3650 memcpy (token_name
.buffer
,
3651 newlb
.buffer
+ tokoff
, toklen
);
3652 token_name
.buffer
[toklen
] = '\0';
3654 token
.lineno
= lineno
;
3655 token
.offset
= tokoff
;
3656 token
.length
= toklen
;
3657 token
.line
= newlb
.buffer
;
3658 token
.linepos
= newlinepos
;
3660 make_C_tag (funorvar
);
3662 /* Rewrite the tag so that emacs lisp DEFUNs
3663 can be found also by their elisp name */
3664 linebuffer_setlen (&token_name
, len
);
3665 memcpy (token_name
.buffer
,
3666 newlb
.buffer
+ off
, len
);
3667 token_name
.buffer
[len
] = '\0';
3670 if (token_name
.buffer
[len
] == '_')
3671 token_name
.buffer
[len
] = '-';
3672 token
.named
= defun
;
3676 linebuffer_setlen (&token_name
, toklen
);
3677 memcpy (token_name
.buffer
,
3678 newlb
.buffer
+ tokoff
, toklen
);
3679 token_name
.buffer
[toklen
] = '\0';
3680 /* Name macros and members. */
3681 token
.named
= (structdef
== stagseen
3682 || typdef
== ttypeseen
3685 && definedef
== dignorerest
)
3687 && definedef
== dnone
3688 && structdef
== snone
3691 token
.lineno
= lineno
;
3692 token
.offset
= tokoff
;
3693 token
.length
= toklen
;
3694 token
.line
= newlb
.buffer
;
3695 token
.linepos
= newlinepos
;
3698 if (definedef
== dnone
3699 && (fvdef
== fvnameseen
3700 || fvdef
== foperator
3701 || structdef
== stagseen
3703 || typdef
== ttypeseen
3704 || objdef
!= onone
))
3706 if (current_lb_is_new
)
3707 switch_line_buffers ();
3709 else if (definedef
!= dnone
3710 || fvdef
== fdefunname
3712 make_C_tag (funorvar
);
3714 else /* not yacc and consider_token failed */
3716 if (inattribute
&& fvdef
== fignore
)
3718 /* We have just met __attribute__ after a
3719 function parameter list: do not tag the
3726 } /* if (endtoken (c)) */
3727 else if (intoken (c
))
3733 } /* if (midtoken) */
3734 else if (begtoken (c
))
3742 /* This prevents tagging fb in
3743 void (__attribute__((noreturn)) *fb) (void);
3744 Fixing this is not easy and not very important. */
3748 if (plainc
|| declarations
)
3750 make_C_tag (true); /* a function */
3757 if (structdef
== stagseen
&& !cjava
)
3759 popclass_above (bracelev
);
3769 if (!yacc_rules
|| lp
== newlb
.buffer
+ 1)
3771 tokoff
= lp
- 1 - newlb
.buffer
;
3776 } /* if (begtoken) */
3777 } /* if must look at token */
3780 /* Detect end of line, colon, comma, semicolon and various braces
3781 after having handled a token.*/
3787 if (yacc_rules
&& token
.offset
== 0 && token
.valid
)
3789 make_C_tag (false); /* a yacc function */
3792 if (definedef
!= dnone
)
3798 make_C_tag (true); /* an Objective C class */
3802 objdef
= omethodcolon
;
3805 int toklen
= token_name
.len
;
3806 linebuffer_setlen (&token_name
, toklen
+ 1);
3807 strcpy (token_name
.buffer
+ toklen
, ":");
3813 if (structdef
== stagseen
)
3815 structdef
= scolonseen
;
3818 /* Should be useless, but may be work as a safety net. */
3819 if (cplpl
&& fvdef
== flistseen
)
3821 make_C_tag (true); /* a function */
3827 if (definedef
!= dnone
|| inattribute
)
3833 make_C_tag (false); /* a typedef */
3843 if (typdef
== tignore
|| cplpl
)
3847 if ((globals
&& bracelev
== 0 && (!fvextern
|| declarations
))
3848 || (members
&& instruct
))
3849 make_C_tag (false); /* a variable */
3852 token
.valid
= false;
3856 && (cplpl
|| !instruct
)
3857 && (typdef
== tnone
|| (typdef
!= tignore
&& instruct
)))
3859 && plainc
&& instruct
))
3860 make_C_tag (true); /* a function */
3866 && cplpl
&& structdef
== stagseen
)
3867 make_C_tag (false); /* forward declaration */
3869 token
.valid
= false;
3870 } /* switch (fvdef) */
3876 if (structdef
== stagseen
)
3880 if (definedef
!= dnone
|| inattribute
)
3886 make_C_tag (true); /* an Objective C method */
3901 if (instruct
&& parlev
== 0)
3912 && (!fvextern
|| declarations
))
3913 || (members
&& instruct
)))
3914 make_C_tag (false); /* a variable */
3917 if ((declarations
&& typdef
== tnone
&& !instruct
)
3918 || (members
&& typdef
!= tignore
&& instruct
))
3920 make_C_tag (true); /* a function */
3923 else if (!declarations
)
3925 token
.valid
= false;
3930 if (structdef
== stagseen
)
3934 if (definedef
!= dnone
|| inattribute
)
3936 if (structdef
== stagseen
)
3943 make_C_tag (false); /* a typedef */
3955 if ((members
&& bracelev
== 1)
3956 || (globals
&& bracelev
== 0
3957 && (!fvextern
|| declarations
)))
3958 make_C_tag (false); /* a variable */
3974 if (definedef
!= dnone
)
3976 if (objdef
== otagseen
&& parlev
== 0)
3977 objdef
= oparenseen
;
3981 if (typdef
== ttypeseen
3985 /* This handles constructs like:
3986 typedef void OperatorFun (int fun); */
4007 if (--attrparlev
== 0)
4008 inattribute
= false;
4017 if (definedef
!= dnone
)
4019 if (objdef
== ocatseen
&& parlev
== 1)
4021 make_C_tag (true); /* an Objective C category */
4037 || typdef
== ttypeseen
))
4040 make_C_tag (false); /* a typedef */
4043 else if (parlev
< 0) /* can happen due to ill-conceived #if's. */
4047 if (definedef
!= dnone
)
4049 if (typdef
== ttypeseen
)
4051 /* Whenever typdef is set to tinbody (currently only
4052 here), typdefbracelev should be set to bracelev. */
4054 typdefbracelev
= bracelev
;
4059 if (cplpl
&& !class_qualify
)
4061 /* Remove class and namespace qualifiers from the token,
4062 leaving only the method/member name. */
4063 char *cc
, *uqname
= token_name
.buffer
;
4064 char *tok_end
= token_name
.buffer
+ token_name
.len
;
4066 for (cc
= token_name
.buffer
; cc
< tok_end
; cc
++)
4068 if (*cc
== ':' && cc
[1] == ':')
4074 if (uqname
> token_name
.buffer
)
4076 int uqlen
= strlen (uqname
);
4077 linebuffer_setlen (&token_name
, uqlen
);
4078 memmove (token_name
.buffer
, uqname
, uqlen
+ 1);
4081 make_C_tag (true); /* a function */
4090 make_C_tag (true); /* an Objective C class */
4095 make_C_tag (true); /* an Objective C method */
4099 /* Neutralize `extern "C" {' grot. */
4100 if (bracelev
== 0 && structdef
== snone
&& nestlev
== 0
4110 case skeyseen
: /* unnamed struct */
4111 pushclass_above (bracelev
, NULL
, 0);
4114 case stagseen
: /* named struct or enum */
4115 case scolonseen
: /* a class */
4116 pushclass_above (bracelev
,token
.line
+token
.offset
, token
.length
);
4118 make_C_tag (false); /* a struct or enum */
4126 if (definedef
!= dnone
)
4128 if (fvdef
== fstartlist
)
4130 fvdef
= fvnone
; /* avoid tagging `foo' in `foo (*bar()) ()' */
4131 token
.valid
= false;
4135 if (definedef
!= dnone
)
4138 if (!ignoreindent
&& lp
== newlb
.buffer
+ 1)
4141 token
.valid
= false; /* unexpected value, token unreliable */
4142 bracelev
= 0; /* reset brace level if first column */
4143 parlev
= 0; /* also reset paren level, just in case... */
4145 else if (bracelev
< 0)
4147 token
.valid
= false; /* something gone amiss, token unreliable */
4150 if (bracelev
== 0 && fvdef
== vignore
)
4151 fvdef
= fvnone
; /* end of function */
4152 popclass_above (bracelev
);
4154 /* Only if typdef == tinbody is typdefbracelev significant. */
4155 if (typdef
== tinbody
&& bracelev
<= typdefbracelev
)
4157 assert (bracelev
== typdefbracelev
);
4162 if (definedef
!= dnone
)
4172 if ((members
&& bracelev
== 1)
4173 || (globals
&& bracelev
== 0 && (!fvextern
|| declarations
)))
4174 make_C_tag (false); /* a variable */
4182 && (structdef
== stagseen
|| fvdef
== fvnameseen
))
4189 if (templatelev
> 0)
4197 if (objdef
== oinbody
&& bracelev
== 0)
4199 objdef
= omethodsign
;
4204 case '#': case '~': case '&': case '%': case '/':
4205 case '|': case '^': case '!': case '.': case '?':
4206 if (definedef
!= dnone
)
4208 /* These surely cannot follow a function tag in C. */
4221 if (objdef
== otagseen
)
4223 make_C_tag (true); /* an Objective C class */
4226 /* If a macro spans multiple lines don't reset its state. */
4228 CNL_SAVE_DEFINEDEF ();
4234 } /* while not eof */
4236 free (lbs
[0].lb
.buffer
);
4237 free (lbs
[1].lb
.buffer
);
4241 * Process either a C++ file or a C file depending on the setting
4245 default_C_entries (FILE *inf
)
4247 C_entries (cplusplus
? C_PLPL
: C_AUTO
, inf
);
4250 /* Always do plain C. */
4252 plain_C_entries (FILE *inf
)
4257 /* Always do C++. */
4259 Cplusplus_entries (FILE *inf
)
4261 C_entries (C_PLPL
, inf
);
4264 /* Always do Java. */
4266 Cjava_entries (FILE *inf
)
4268 C_entries (C_JAVA
, inf
);
4273 Cstar_entries (FILE *inf
)
4275 C_entries (C_STAR
, inf
);
4278 /* Always do Yacc. */
4280 Yacc_entries (FILE *inf
)
4282 C_entries (YACC
, inf
);
4286 /* Useful macros. */
4287 #define LOOP_ON_INPUT_LINES(file_pointer, line_buffer, char_pointer) \
4288 while (perhaps_more_input (file_pointer) \
4289 && (readline (&(line_buffer), file_pointer), \
4290 (char_pointer) = (line_buffer).buffer, \
4293 #define LOOKING_AT(cp, kw) /* kw is the keyword, a literal string */ \
4294 ((assert ("" kw), true) /* syntax error if not a literal string */ \
4295 && strneq ((cp), kw, sizeof (kw)-1) /* cp points at kw */ \
4296 && notinname ((cp)[sizeof (kw)-1]) /* end of kw */ \
4297 && ((cp) = skip_spaces ((cp) + sizeof (kw) - 1), true)) /* skip spaces */
4299 /* Similar to LOOKING_AT but does not use notinname, does not skip */
4300 #define LOOKING_AT_NOCASE(cp, kw) /* the keyword is a literal string */ \
4301 ((assert ("" kw), true) /* syntax error if not a literal string */ \
4302 && strncaseeq ((cp), kw, sizeof (kw)-1) /* cp points at kw */ \
4303 && ((cp) += sizeof (kw) - 1, true)) /* skip spaces */
4306 * Read a file, but do no processing. This is used to do regexp
4307 * matching on files that have no language defined.
4310 just_read_file (FILE *inf
)
4312 while (perhaps_more_input (inf
))
4313 readline (&lb
, inf
);
4317 /* Fortran parsing */
4319 static void F_takeprec (void);
4320 static void F_getit (FILE *);
4325 dbp
= skip_spaces (dbp
);
4329 dbp
= skip_spaces (dbp
);
4330 if (strneq (dbp
, "(*)", 3))
4335 if (!c_isdigit (*dbp
))
4337 --dbp
; /* force failure */
4342 while (c_isdigit (*dbp
));
4350 dbp
= skip_spaces (dbp
);
4353 readline (&lb
, inf
);
4358 dbp
= skip_spaces (dbp
);
4360 if (!c_isalpha (*dbp
) && *dbp
!= '_' && *dbp
!= '$')
4362 for (cp
= dbp
+ 1; *cp
!= '\0' && intoken (*cp
); cp
++)
4364 make_tag (dbp
, cp
-dbp
, true,
4365 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4370 Fortran_functions (FILE *inf
)
4372 LOOP_ON_INPUT_LINES (inf
, lb
, dbp
)
4375 dbp
++; /* Ratfor escape to fortran */
4376 dbp
= skip_spaces (dbp
);
4380 if (LOOKING_AT_NOCASE (dbp
, "recursive"))
4381 dbp
= skip_spaces (dbp
);
4383 if (LOOKING_AT_NOCASE (dbp
, "pure"))
4384 dbp
= skip_spaces (dbp
);
4386 if (LOOKING_AT_NOCASE (dbp
, "elemental"))
4387 dbp
= skip_spaces (dbp
);
4389 switch (c_tolower (*dbp
))
4392 if (nocase_tail ("integer"))
4396 if (nocase_tail ("real"))
4400 if (nocase_tail ("logical"))
4404 if (nocase_tail ("complex") || nocase_tail ("character"))
4408 if (nocase_tail ("double"))
4410 dbp
= skip_spaces (dbp
);
4413 if (nocase_tail ("precision"))
4419 dbp
= skip_spaces (dbp
);
4422 switch (c_tolower (*dbp
))
4425 if (nocase_tail ("function"))
4429 if (nocase_tail ("subroutine"))
4433 if (nocase_tail ("entry"))
4437 if (nocase_tail ("blockdata") || nocase_tail ("block data"))
4439 dbp
= skip_spaces (dbp
);
4440 if (*dbp
== '\0') /* assume un-named */
4441 make_tag ("blockdata", 9, true,
4442 lb
.buffer
, dbp
- lb
.buffer
, lineno
, linecharno
);
4444 F_getit (inf
); /* look for name */
4453 * Go language support
4454 * Original code by Xi Lu <lx@shellcodes.org> (2016)
4457 Go_functions(FILE *inf
)
4461 LOOP_ON_INPUT_LINES(inf
, lb
, cp
)
4463 cp
= skip_spaces (cp
);
4465 if (LOOKING_AT (cp
, "package"))
4468 while (!notinname (*cp
) && *cp
!= '\0')
4470 make_tag (name
, cp
- name
, false, lb
.buffer
,
4471 cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4473 else if (LOOKING_AT (cp
, "func"))
4475 /* Go implementation of interface, such as:
4476 func (n *Integer) Add(m Integer) ...
4477 skip `(n *Integer)` part.
4483 cp
= skip_spaces (cp
+1);
4490 while (!notinname (*cp
))
4493 make_tag (name
, cp
- name
, true, lb
.buffer
,
4494 cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4497 else if (members
&& LOOKING_AT (cp
, "type"))
4501 /* Ignore the likes of the following:
4509 while (!notinname (*cp
) && *cp
!= '\0')
4512 make_tag (name
, cp
- name
, false, lb
.buffer
,
4513 cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4522 * Philippe Waroquiers (1998)
4525 /* Once we are positioned after an "interesting" keyword, let's get
4526 the real tag value necessary. */
4528 Ada_getit (FILE *inf
, const char *name_qualifier
)
4534 while (perhaps_more_input (inf
))
4536 dbp
= skip_spaces (dbp
);
4538 || (dbp
[0] == '-' && dbp
[1] == '-'))
4540 readline (&lb
, inf
);
4543 switch (c_tolower (*dbp
))
4546 if (nocase_tail ("body"))
4548 /* Skipping body of procedure body or package body or ....
4549 resetting qualifier to body instead of spec. */
4550 name_qualifier
= "/b";
4555 /* Skipping type of task type or protected type ... */
4556 if (nocase_tail ("type"))
4563 for (cp
= dbp
; *cp
!= '\0' && *cp
!= '"'; cp
++)
4568 dbp
= skip_spaces (dbp
);
4570 c_isalnum (*cp
) || *cp
== '_' || *cp
== '.';
4578 name
= concat (dbp
, name_qualifier
, "");
4580 make_tag (name
, strlen (name
), true,
4581 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4590 Ada_funcs (FILE *inf
)
4592 bool inquote
= false;
4593 bool skip_till_semicolumn
= false;
4595 LOOP_ON_INPUT_LINES (inf
, lb
, dbp
)
4597 while (*dbp
!= '\0')
4599 /* Skip a string i.e. "abcd". */
4600 if (inquote
|| (*dbp
== '"'))
4602 dbp
= strchr (dbp
+ !inquote
, '"');
4607 continue; /* advance char */
4612 break; /* advance line */
4616 /* Skip comments. */
4617 if (dbp
[0] == '-' && dbp
[1] == '-')
4618 break; /* advance line */
4620 /* Skip character enclosed in single quote i.e. 'a'
4621 and skip single quote starting an attribute i.e. 'Image. */
4630 if (skip_till_semicolumn
)
4633 skip_till_semicolumn
= false;
4635 continue; /* advance char */
4638 /* Search for beginning of a token. */
4639 if (!begtoken (*dbp
))
4642 continue; /* advance char */
4645 /* We are at the beginning of a token. */
4646 switch (c_tolower (*dbp
))
4649 if (!packages_only
&& nocase_tail ("function"))
4650 Ada_getit (inf
, "/f");
4652 break; /* from switch */
4653 continue; /* advance char */
4655 if (!packages_only
&& nocase_tail ("procedure"))
4656 Ada_getit (inf
, "/p");
4657 else if (nocase_tail ("package"))
4658 Ada_getit (inf
, "/s");
4659 else if (nocase_tail ("protected")) /* protected type */
4660 Ada_getit (inf
, "/t");
4662 break; /* from switch */
4663 continue; /* advance char */
4666 if (typedefs
&& !packages_only
&& nocase_tail ("use"))
4668 /* when tagging types, avoid tagging use type Pack.Typename;
4669 for this, we will skip everything till a ; */
4670 skip_till_semicolumn
= true;
4671 continue; /* advance char */
4675 if (!packages_only
&& nocase_tail ("task"))
4676 Ada_getit (inf
, "/k");
4677 else if (typedefs
&& !packages_only
&& nocase_tail ("type"))
4679 Ada_getit (inf
, "/t");
4680 while (*dbp
!= '\0')
4684 break; /* from switch */
4685 continue; /* advance char */
4688 /* Look for the end of the token. */
4689 while (!endtoken (*dbp
))
4692 } /* advance char */
4693 } /* advance line */
4698 * Unix and microcontroller assembly tag handling
4699 * Labels: /^[a-zA-Z_.$][a-zA_Z0-9_.$]*[: ^I^J]/
4700 * Idea by Bob Weiner, Motorola Inc. (1994)
4703 Asm_labels (FILE *inf
)
4707 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
4709 /* If first char is alphabetic or one of [_.$], test for colon
4710 following identifier. */
4711 if (c_isalpha (*cp
) || *cp
== '_' || *cp
== '.' || *cp
== '$')
4713 /* Read past label. */
4715 while (c_isalnum (*cp
) || *cp
== '_' || *cp
== '.' || *cp
== '$')
4717 if (*cp
== ':' || c_isspace (*cp
))
4718 /* Found end of label, so copy it and add it to the table. */
4719 make_tag (lb
.buffer
, cp
- lb
.buffer
, true,
4720 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4728 * Perl sub names: /^sub[ \t\n]+[^ \t\n{]+/
4729 * /^use constant[ \t\n]+[^ \t\n{=,;]+/
4730 * Perl variable names: /^(my|local).../
4731 * Original code by Bart Robinson <lomew@cs.utah.edu> (1995)
4732 * Additions by Michael Ernst <mernst@alum.mit.edu> (1997)
4733 * Ideas by Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> (2001)
4736 Perl_functions (FILE *inf
)
4738 char *package
= savestr ("main"); /* current package name */
4741 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
4743 cp
= skip_spaces (cp
);
4745 if (LOOKING_AT (cp
, "package"))
4748 get_tag (cp
, &package
);
4750 else if (LOOKING_AT (cp
, "sub"))
4756 while (!notinname (*cp
))
4759 continue; /* nothing found */
4760 pos
= strchr (sp
, ':');
4761 if (pos
&& pos
< cp
&& pos
[1] == ':')
4763 /* The name is already qualified. */
4766 char *q
= pos
+ 2, *qpos
;
4767 while ((qpos
= strchr (q
, ':')) != NULL
4773 make_tag (sp
, cp
- sp
, true,
4774 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4776 else if (class_qualify
)
4779 char savechar
, *name
;
4783 name
= concat (package
, "::", sp
);
4785 make_tag (name
, strlen (name
), true,
4786 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4790 make_tag (sp
, cp
- sp
, true,
4791 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4793 else if (LOOKING_AT (cp
, "use constant")
4794 || LOOKING_AT (cp
, "use constant::defer"))
4796 /* For hash style multi-constant like
4797 use constant { FOO => 123,
4799 only the first FOO is picked up. Parsing across the value
4800 expressions would be difficult in general, due to possible nested
4801 hashes, here-documents, etc. */
4803 cp
= skip_spaces (cp
+1);
4806 else if (globals
) /* only if we are tagging global vars */
4808 /* Skip a qualifier, if any. */
4809 bool qual
= LOOKING_AT (cp
, "my") || LOOKING_AT (cp
, "local");
4810 /* After "my" or "local", but before any following paren or space. */
4811 char *varstart
= cp
;
4813 if (qual
/* should this be removed? If yes, how? */
4814 && (*cp
== '$' || *cp
== '@' || *cp
== '%'))
4819 while (c_isalnum (*cp
) || *cp
== '_');
4823 /* Should be examining a variable list at this point;
4824 could insist on seeing an open parenthesis. */
4825 while (*cp
!= '\0' && *cp
!= ';' && *cp
!= '=' && *cp
!= ')')
4831 make_tag (varstart
, cp
- varstart
, false,
4832 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4841 * Look for /^[\t]*def[ \t\n]+[^ \t\n(:]+/ or /^class[ \t\n]+[^ \t\n(:]+/
4842 * Idea by Eric S. Raymond <esr@thyrsus.com> (1997)
4843 * More ideas by seb bacon <seb@jamkit.com> (2002)
4846 Python_functions (FILE *inf
)
4850 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
4852 cp
= skip_spaces (cp
);
4853 if (LOOKING_AT (cp
, "def") || LOOKING_AT (cp
, "class"))
4856 while (!notinname (*cp
) && *cp
!= ':')
4858 make_tag (name
, cp
- name
, true,
4859 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4866 * Original code by Xi Lu <lx@shellcodes.org> (2015)
4869 Ruby_functions (FILE *inf
)
4872 bool reader
= false, writer
= false, alias
= false, continuation
= false;
4874 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
4876 bool is_class
= false;
4877 bool is_method
= false;
4880 cp
= skip_spaces (cp
);
4883 && c_isalpha (*cp
) && c_isupper (*cp
))
4885 char *bp
, *colon
= NULL
;
4889 for (cp
++; c_isalnum (*cp
) || *cp
== '_' || *cp
== ':'; cp
++)
4896 bp
= skip_spaces (cp
);
4897 if (*bp
== '=' && !(bp
[1] == '=' || bp
[1] == '>'))
4899 if (colon
&& !c_isspace (colon
[1]))
4901 make_tag (name
, cp
- name
, false,
4902 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4906 else if (!continuation
4907 /* Modules, classes, methods. */
4908 && ((is_method
= LOOKING_AT (cp
, "def"))
4909 || (is_class
= LOOKING_AT (cp
, "class"))
4910 || LOOKING_AT (cp
, "module")))
4912 const char self_name
[] = "self.";
4913 const size_t self_size1
= sizeof (self_name
) - 1;
4917 /* Ruby method names can end in a '='. Also, operator overloading can
4918 define operators whose names include '='. */
4919 while (!notinname (*cp
) || *cp
== '=')
4922 /* Remove "self." from the method name. */
4923 if (cp
- name
> self_size1
4924 && strneq (name
, self_name
, self_size1
))
4927 /* Remove the class/module qualifiers from method names. */
4932 for (q
= name
; q
< cp
&& *q
!= '.'; q
++)
4934 if (q
< cp
- 1) /* punt if we see just "FOO." */
4938 /* Don't tag singleton classes. */
4939 if (is_class
&& strneq (name
, "<<", 2) && cp
== name
+ 2)
4942 make_tag (name
, cp
- name
, true,
4943 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4947 /* Tag accessors and aliases. */
4950 reader
= writer
= alias
= false;
4952 while (*cp
&& *cp
!= '#')
4956 reader
= writer
= alias
= false;
4957 if (LOOKING_AT (cp
, "attr_reader"))
4959 else if (LOOKING_AT (cp
, "attr_writer"))
4961 else if (LOOKING_AT (cp
, "attr_accessor"))
4966 else if (LOOKING_AT (cp
, "alias_method"))
4969 if (reader
|| writer
|| alias
)
4974 cp
= skip_spaces (cp
);
4976 cp
= skip_spaces (cp
+ 1);
4978 cp
= skip_name (cp
);
4984 make_tag (np
, cp
- np
, true,
4985 lb
.buffer
, cp
- lb
.buffer
+ 1,
4986 lineno
, linecharno
);
4987 continuation
= false;
4991 size_t name_len
= cp
- np
+ 1;
4992 char *wr_name
= xnew (name_len
+ 1, char);
4994 memcpy (wr_name
, np
, name_len
- 1);
4995 memcpy (wr_name
+ name_len
- 1, "=", 2);
4996 pfnote (wr_name
, true, lb
.buffer
, cp
- lb
.buffer
+ 1,
4997 lineno
, linecharno
);
4999 fprintf (stderr
, "%s on %s:%d: %s\n", wr_name
,
5000 curfdp
->taggedfname
, lineno
, lb
.buffer
);
5001 continuation
= false;
5006 make_tag (np
, cp
- np
, true,
5007 lb
.buffer
, cp
- lb
.buffer
+ 1,
5008 lineno
, linecharno
);
5009 continuation
= false;
5010 while (*cp
&& *cp
!= '#' && *cp
!= ';')
5013 continuation
= true;
5014 else if (!c_isspace (*cp
))
5015 continuation
= false;
5019 continuation
= false;
5021 cp
= skip_spaces (cp
);
5024 : (continuation
= (*cp
== ',')))
5025 && (cp
= skip_spaces (cp
+ 1), *cp
&& *cp
!= '#'));
5028 cp
= skip_name (cp
);
5029 while (*cp
&& *cp
!= '#' && notinname (*cp
))
5040 * - /^[ \t]*function[ \t\n]+[^ \t\n(]+/
5041 * - /^[ \t]*class[ \t\n]+[^ \t\n]+/
5042 * - /^[ \t]*define\(\"[^\"]+/
5043 * Only with --members:
5044 * - /^[ \t]*var[ \t\n]+\$[^ \t\n=;]/
5045 * Idea by Diez B. Roggisch (2001)
5048 PHP_functions (FILE *inf
)
5051 bool search_identifier
= false;
5053 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
5055 cp
= skip_spaces (cp
);
5057 if (search_identifier
5060 while (!notinname (*cp
))
5062 make_tag (name
, cp
- name
, true,
5063 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
5064 search_identifier
= false;
5066 else if (LOOKING_AT (cp
, "function"))
5069 cp
= skip_spaces (cp
+1);
5073 while (!notinname (*cp
))
5075 make_tag (name
, cp
- name
, true,
5076 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
5079 search_identifier
= true;
5081 else if (LOOKING_AT (cp
, "class"))
5086 while (*cp
!= '\0' && !c_isspace (*cp
))
5088 make_tag (name
, cp
- name
, false,
5089 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
5092 search_identifier
= true;
5094 else if (strneq (cp
, "define", 6)
5095 && (cp
= skip_spaces (cp
+6))
5097 && (*cp
== '"' || *cp
== '\''))
5101 while (*cp
!= quote
&& *cp
!= '\0')
5103 make_tag (name
, cp
- name
, false,
5104 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
5107 && LOOKING_AT (cp
, "var")
5111 while (!notinname (*cp
))
5113 make_tag (name
, cp
- name
, false,
5114 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
5121 * Cobol tag functions
5122 * We could look for anything that could be a paragraph name.
5123 * i.e. anything that starts in column 8 is one word and ends in a full stop.
5124 * Idea by Corny de Souza (1993)
5127 Cobol_paragraphs (FILE *inf
)
5129 register char *bp
, *ep
;
5131 LOOP_ON_INPUT_LINES (inf
, lb
, bp
)
5137 /* If eoln, compiler option or comment ignore whole line. */
5138 if (bp
[-1] != ' ' || !c_isalnum (bp
[0]))
5141 for (ep
= bp
; c_isalnum (*ep
) || *ep
== '-'; ep
++)
5144 make_tag (bp
, ep
- bp
, true,
5145 lb
.buffer
, ep
- lb
.buffer
+ 1, lineno
, linecharno
);
5152 * Ideas by Assar Westerlund <assar@sics.se> (2001)
5155 Makefile_targets (FILE *inf
)
5159 LOOP_ON_INPUT_LINES (inf
, lb
, bp
)
5161 if (*bp
== '\t' || *bp
== '#')
5163 while (*bp
!= '\0' && *bp
!= '=' && *bp
!= ':')
5165 if (*bp
== ':' || (globals
&& *bp
== '='))
5167 /* We should detect if there is more than one tag, but we do not.
5168 We just skip initial and final spaces. */
5169 char * namestart
= skip_spaces (lb
.buffer
);
5170 while (--bp
> namestart
)
5171 if (!notinname (*bp
))
5173 make_tag (namestart
, bp
- namestart
+ 1, true,
5174 lb
.buffer
, bp
- lb
.buffer
+ 2, lineno
, linecharno
);
5182 * Original code by Mosur K. Mohan (1989)
5184 * Locates tags for procedures & functions. Doesn't do any type- or
5185 * var-definitions. It does look for the keyword "extern" or
5186 * "forward" immediately following the procedure statement; if found,
5187 * the tag is skipped.
5190 Pascal_functions (FILE *inf
)
5192 linebuffer tline
; /* mostly copied from C_entries */
5194 int save_lineno
, namelen
, taglen
;
5197 bool /* each of these flags is true if: */
5198 incomment
, /* point is inside a comment */
5199 inquote
, /* point is inside '..' string */
5200 get_tagname
, /* point is after PROCEDURE/FUNCTION
5201 keyword, so next item = potential tag */
5202 found_tag
, /* point is after a potential tag */
5203 inparms
, /* point is within parameter-list */
5204 verify_tag
; /* point has passed the parm-list, so the
5205 next token will determine whether this
5206 is a FORWARD/EXTERN to be ignored, or
5207 whether it is a real tag */
5209 save_lcno
= save_lineno
= namelen
= taglen
= 0; /* keep compiler quiet */
5210 name
= NULL
; /* keep compiler quiet */
5213 linebuffer_init (&tline
);
5215 incomment
= inquote
= false;
5216 found_tag
= false; /* have a proc name; check if extern */
5217 get_tagname
= false; /* found "procedure" keyword */
5218 inparms
= false; /* found '(' after "proc" */
5219 verify_tag
= false; /* check if "extern" is ahead */
5222 while (perhaps_more_input (inf
)) /* long main loop to get next char */
5225 if (c
== '\0') /* if end of line */
5227 readline (&lb
, inf
);
5231 if (!((found_tag
&& verify_tag
)
5233 c
= *dbp
++; /* only if don't need *dbp pointing
5234 to the beginning of the name of
5235 the procedure or function */
5239 if (c
== '}') /* within { } comments */
5241 else if (c
== '*' && *dbp
== ')') /* within (* *) comments */
5258 inquote
= true; /* found first quote */
5260 case '{': /* found open { comment */
5264 if (*dbp
== '*') /* found open (* comment */
5269 else if (found_tag
) /* found '(' after tag, i.e., parm-list */
5272 case ')': /* end of parms list */
5277 if (found_tag
&& !inparms
) /* end of proc or fn stmt */
5284 if (found_tag
&& verify_tag
&& (*dbp
!= ' '))
5286 /* Check if this is an "extern" declaration. */
5289 if (c_tolower (*dbp
) == 'e')
5291 if (nocase_tail ("extern")) /* superfluous, really! */
5297 else if (c_tolower (*dbp
) == 'f')
5299 if (nocase_tail ("forward")) /* check for forward reference */
5305 if (found_tag
&& verify_tag
) /* not external proc, so make tag */
5309 make_tag (name
, namelen
, true,
5310 tline
.buffer
, taglen
, save_lineno
, save_lcno
);
5314 if (get_tagname
) /* grab name of proc or fn */
5321 /* Find block name. */
5322 for (cp
= dbp
+ 1; *cp
!= '\0' && !endtoken (*cp
); cp
++)
5325 /* Save all values for later tagging. */
5326 linebuffer_setlen (&tline
, lb
.len
);
5327 strcpy (tline
.buffer
, lb
.buffer
);
5328 save_lineno
= lineno
;
5329 save_lcno
= linecharno
;
5330 name
= tline
.buffer
+ (dbp
- lb
.buffer
);
5332 taglen
= cp
- lb
.buffer
+ 1;
5334 dbp
= cp
; /* set dbp to e-o-token */
5335 get_tagname
= false;
5339 /* And proceed to check for "extern". */
5341 else if (!incomment
&& !inquote
&& !found_tag
)
5343 /* Check for proc/fn keywords. */
5344 switch (c_tolower (c
))
5347 if (nocase_tail ("rocedure")) /* c = 'p', dbp has advanced */
5351 if (nocase_tail ("unction"))
5356 } /* while not eof */
5358 free (tline
.buffer
);
5363 * Lisp tag functions
5364 * look for (def or (DEF, quote or QUOTE
5367 static void L_getit (void);
5372 if (*dbp
== '\'') /* Skip prefix quote */
5374 else if (*dbp
== '(')
5377 /* Try to skip "(quote " */
5378 if (!LOOKING_AT (dbp
, "quote") && !LOOKING_AT (dbp
, "QUOTE"))
5379 /* Ok, then skip "(" before name in (defstruct (foo)) */
5380 dbp
= skip_spaces (dbp
);
5382 get_lispy_tag (dbp
);
5386 Lisp_functions (FILE *inf
)
5388 LOOP_ON_INPUT_LINES (inf
, lb
, dbp
)
5393 /* "(defvar foo)" is a declaration rather than a definition. */
5397 if (LOOKING_AT (p
, "defvar"))
5399 p
= skip_name (p
); /* past var name */
5400 p
= skip_spaces (p
);
5406 if (strneq (dbp
+ 1, "cl-", 3) || strneq (dbp
+ 1, "CL-", 3))
5409 if (strneq (dbp
+1, "def", 3) || strneq (dbp
+1, "DEF", 3))
5411 dbp
= skip_non_spaces (dbp
);
5412 dbp
= skip_spaces (dbp
);
5417 /* Check for (foo::defmumble name-defined ... */
5420 while (!notinname (*dbp
) && *dbp
!= ':');
5425 while (*dbp
== ':');
5427 if (strneq (dbp
, "def", 3) || strneq (dbp
, "DEF", 3))
5429 dbp
= skip_non_spaces (dbp
);
5430 dbp
= skip_spaces (dbp
);
5440 * Lua script language parsing
5441 * Original code by David A. Capello <dacap@users.sourceforge.net> (2004)
5443 * "function" and "local function" are tags if they start at column 1.
5446 Lua_functions (FILE *inf
)
5450 LOOP_ON_INPUT_LINES (inf
, lb
, bp
)
5452 bp
= skip_spaces (bp
);
5453 if (bp
[0] != 'f' && bp
[0] != 'l')
5456 (void)LOOKING_AT (bp
, "local"); /* skip possible "local" */
5458 if (LOOKING_AT (bp
, "function"))
5460 char *tag_name
, *tp_dot
, *tp_colon
;
5462 get_tag (bp
, &tag_name
);
5463 /* If the tag ends with ".foo" or ":foo", make an additional tag for
5465 tp_dot
= strrchr (tag_name
, '.');
5466 tp_colon
= strrchr (tag_name
, ':');
5467 if (tp_dot
|| tp_colon
)
5469 char *p
= tp_dot
> tp_colon
? tp_dot
: tp_colon
;
5470 int len_add
= p
- tag_name
+ 1;
5472 get_tag (bp
+ len_add
, NULL
);
5481 * Just look for lines where the first character is '/'
5482 * Also look at "defineps" for PSWrap
5484 * Richard Mlynarik <mly@adoc.xerox.com> (1997)
5485 * Masatake Yamato <masata-y@is.aist-nara.ac.jp> (1999)
5488 PS_functions (FILE *inf
)
5490 register char *bp
, *ep
;
5492 LOOP_ON_INPUT_LINES (inf
, lb
, bp
)
5497 *ep
!= '\0' && *ep
!= ' ' && *ep
!= '{';
5500 make_tag (bp
, ep
- bp
, true,
5501 lb
.buffer
, ep
- lb
.buffer
+ 1, lineno
, linecharno
);
5503 else if (LOOKING_AT (bp
, "defineps"))
5511 * Ignore anything after \ followed by space or in ( )
5512 * Look for words defined by :
5513 * Look for constant, code, create, defer, value, and variable
5514 * OBP extensions: Look for buffer:, field,
5515 * Ideas by Eduardo Horvath <eeh@netbsd.org> (2004)
5518 Forth_words (FILE *inf
)
5522 LOOP_ON_INPUT_LINES (inf
, lb
, bp
)
5523 while ((bp
= skip_spaces (bp
))[0] != '\0')
5524 if (bp
[0] == '\\' && c_isspace (bp
[1]))
5525 break; /* read next line */
5526 else if (bp
[0] == '(' && c_isspace (bp
[1]))
5527 do /* skip to ) or eol */
5529 while (*bp
!= ')' && *bp
!= '\0');
5530 else if (((bp
[0] == ':' && c_isspace (bp
[1]) && bp
++)
5531 || LOOKING_AT_NOCASE (bp
, "constant")
5532 || LOOKING_AT_NOCASE (bp
, "2constant")
5533 || LOOKING_AT_NOCASE (bp
, "fconstant")
5534 || LOOKING_AT_NOCASE (bp
, "code")
5535 || LOOKING_AT_NOCASE (bp
, "create")
5536 || LOOKING_AT_NOCASE (bp
, "defer")
5537 || LOOKING_AT_NOCASE (bp
, "value")
5538 || LOOKING_AT_NOCASE (bp
, "2value")
5539 || LOOKING_AT_NOCASE (bp
, "fvalue")
5540 || LOOKING_AT_NOCASE (bp
, "variable")
5541 || LOOKING_AT_NOCASE (bp
, "2variable")
5542 || LOOKING_AT_NOCASE (bp
, "fvariable")
5543 || LOOKING_AT_NOCASE (bp
, "buffer:")
5544 || LOOKING_AT_NOCASE (bp
, "field:")
5545 || LOOKING_AT_NOCASE (bp
, "+field")
5546 || LOOKING_AT_NOCASE (bp
, "field") /* not standard? */
5547 || LOOKING_AT_NOCASE (bp
, "begin-structure")
5548 || LOOKING_AT_NOCASE (bp
, "synonym")
5550 && c_isspace (bp
[0]))
5552 /* Yay! A definition! */
5553 char* name_start
= skip_spaces (bp
);
5554 char* name_end
= skip_non_spaces (name_start
);
5555 if (name_start
< name_end
)
5556 make_tag (name_start
, name_end
- name_start
,
5557 true, lb
.buffer
, name_end
- lb
.buffer
,
5558 lineno
, linecharno
);
5562 bp
= skip_non_spaces (bp
);
5567 * Scheme tag functions
5568 * look for (def... xyzzy
5570 * (def ... ((...(xyzzy ....
5572 * Original code by Ken Haase (1985?)
5575 Scheme_functions (FILE *inf
)
5579 LOOP_ON_INPUT_LINES (inf
, lb
, bp
)
5581 if (strneq (bp
, "(def", 4) || strneq (bp
, "(DEF", 4))
5583 bp
= skip_non_spaces (bp
+4);
5584 /* Skip over open parens and white space.
5585 Don't continue past '\0' or '='. */
5586 while (*bp
&& notinname (*bp
) && *bp
!= '=')
5590 if (LOOKING_AT (bp
, "(SET!") || LOOKING_AT (bp
, "(set!"))
5596 /* Find tags in TeX and LaTeX input files. */
5598 /* TEX_toktab is a table of TeX control sequences that define tags.
5599 * Each entry records one such control sequence.
5601 * Original code from who knows whom.
5603 * Stefan Monnier (2002)
5606 static linebuffer
*TEX_toktab
= NULL
; /* Table with tag tokens */
5608 /* Default set of control sequences to put into TEX_toktab.
5609 The value of environment var TEXTAGS is prepended to this. */
5610 static const char *TEX_defenv
= "\
5611 :chapter:section:subsection:subsubsection:eqno:label:ref:cite:bibitem\
5612 :part:appendix:entry:index:def\
5613 :newcommand:renewcommand:newenvironment:renewenvironment";
5615 static void TEX_decode_env (const char *, const char *);
5618 * TeX/LaTeX scanning loop.
5621 TeX_commands (FILE *inf
)
5626 char TEX_esc
= '\0';
5627 char TEX_opgrp UNINIT
, TEX_clgrp UNINIT
;
5629 /* Initialize token table once from environment. */
5630 if (TEX_toktab
== NULL
)
5631 TEX_decode_env ("TEXTAGS", TEX_defenv
);
5633 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
5635 /* Look at each TEX keyword in line. */
5638 /* Look for a TEX escape. */
5642 if (c
== '\0' || c
== '%')
5645 /* Select either \ or ! as escape character, whichever comes
5646 first outside a comment. */
5667 for (key
= TEX_toktab
; key
->buffer
!= NULL
; key
++)
5668 if (strneq (cp
, key
->buffer
, key
->len
))
5671 int namelen
, linelen
;
5674 cp
= skip_spaces (cp
+ key
->len
);
5675 if (*cp
== TEX_opgrp
)
5681 (!c_isspace (*p
) && *p
!= '#' &&
5682 *p
!= TEX_opgrp
&& *p
!= TEX_clgrp
);
5687 if (!opgrp
|| *p
== TEX_clgrp
)
5689 while (*p
!= '\0' && *p
!= TEX_opgrp
&& *p
!= TEX_clgrp
)
5691 linelen
= p
- lb
.buffer
+ 1;
5693 make_tag (cp
, namelen
, true,
5694 lb
.buffer
, linelen
, lineno
, linecharno
);
5695 goto tex_next_line
; /* We only tag a line once */
5703 /* Read environment and prepend it to the default string.
5704 Build token table. */
5706 TEX_decode_env (const char *evarname
, const char *defenv
)
5708 register const char *env
, *p
;
5711 /* Append default string to environment. */
5712 env
= getenv (evarname
);
5716 env
= concat (env
, defenv
, "");
5718 /* Allocate a token table */
5719 for (len
= 1, p
= env
; (p
= strchr (p
, ':')); )
5722 TEX_toktab
= xnew (len
, linebuffer
);
5724 /* Unpack environment string into token table. Be careful about */
5725 /* zero-length strings (leading ':', "::" and trailing ':') */
5726 for (i
= 0; *env
!= '\0';)
5728 p
= strchr (env
, ':');
5729 if (!p
) /* End of environment string. */
5730 p
= env
+ strlen (env
);
5732 { /* Only non-zero strings. */
5733 TEX_toktab
[i
].buffer
= savenstr (env
, p
- env
);
5734 TEX_toktab
[i
].len
= p
- env
;
5741 TEX_toktab
[i
].buffer
= NULL
; /* Mark end of table. */
5742 TEX_toktab
[i
].len
= 0;
5749 /* Texinfo support. Dave Love, Mar. 2000. */
5751 Texinfo_nodes (FILE *inf
)
5754 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
5755 if (LOOKING_AT (cp
, "@node"))
5758 while (*cp
!= '\0' && *cp
!= ',')
5760 make_tag (start
, cp
- start
, true,
5761 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
5768 * Contents of <title>, <h1>, <h2>, <h3> are tags.
5769 * Contents of <a name=xxx> are tags with name xxx.
5771 * Francesco Potortì, 2002.
5774 HTML_labels (FILE *inf
)
5776 bool getnext
= false; /* next text outside of HTML tags is a tag */
5777 bool skiptag
= false; /* skip to the end of the current HTML tag */
5778 bool intag
= false; /* inside an html tag, looking for ID= */
5779 bool inanchor
= false; /* when INTAG, is an anchor, look for NAME= */
5783 linebuffer_setlen (&token_name
, 0); /* no name in buffer */
5785 LOOP_ON_INPUT_LINES (inf
, lb
, dbp
)
5786 for (;;) /* loop on the same line */
5788 if (skiptag
) /* skip HTML tag */
5790 while (*dbp
!= '\0' && *dbp
!= '>')
5796 continue; /* look on the same line */
5798 break; /* go to next line */
5801 else if (intag
) /* look for "name=" or "id=" */
5803 while (*dbp
!= '\0' && *dbp
!= '>'
5804 && c_tolower (*dbp
) != 'n' && c_tolower (*dbp
) != 'i')
5807 break; /* go to next line */
5812 continue; /* look on the same line */
5814 if ((inanchor
&& LOOKING_AT_NOCASE (dbp
, "name="))
5815 || LOOKING_AT_NOCASE (dbp
, "id="))
5817 bool quoted
= (dbp
[0] == '"');
5820 for (end
= ++dbp
; *end
!= '\0' && *end
!= '"'; end
++)
5823 for (end
= dbp
; *end
!= '\0' && intoken (*end
); end
++)
5825 linebuffer_setlen (&token_name
, end
- dbp
);
5826 memcpy (token_name
.buffer
, dbp
, end
- dbp
);
5827 token_name
.buffer
[end
- dbp
] = '\0';
5830 intag
= false; /* we found what we looked for */
5831 skiptag
= true; /* skip to the end of the tag */
5832 getnext
= true; /* then grab the text */
5833 continue; /* look on the same line */
5838 else if (getnext
) /* grab next tokens and tag them */
5840 dbp
= skip_spaces (dbp
);
5842 break; /* go to next line */
5846 inanchor
= (c_tolower (dbp
[1]) == 'a' && !intoken (dbp
[2]));
5847 continue; /* look on the same line */
5850 for (end
= dbp
+ 1; *end
!= '\0' && *end
!= '<'; end
++)
5852 make_tag (token_name
.buffer
, token_name
.len
, true,
5853 dbp
, end
- dbp
, lineno
, linecharno
);
5854 linebuffer_setlen (&token_name
, 0); /* no name in buffer */
5856 break; /* go to next line */
5859 else /* look for an interesting HTML tag */
5861 while (*dbp
!= '\0' && *dbp
!= '<')
5864 break; /* go to next line */
5866 if (c_tolower (dbp
[1]) == 'a' && !intoken (dbp
[2]))
5869 continue; /* look on the same line */
5871 else if (LOOKING_AT_NOCASE (dbp
, "<title>")
5872 || LOOKING_AT_NOCASE (dbp
, "<h1>")
5873 || LOOKING_AT_NOCASE (dbp
, "<h2>")
5874 || LOOKING_AT_NOCASE (dbp
, "<h3>"))
5878 continue; /* look on the same line */
5889 * Assumes that the predicate or rule starts at column 0.
5890 * Only the first clause of a predicate or rule is added.
5891 * Original code by Sunichirou Sugou (1989)
5892 * Rewritten by Anders Lindgren (1996)
5894 static size_t prolog_pr (char *, char *);
5895 static void prolog_skip_comment (linebuffer
*, FILE *);
5896 static size_t prolog_atom (char *, size_t);
5899 Prolog_functions (FILE *inf
)
5909 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
5911 if (cp
[0] == '\0') /* Empty line */
5913 else if (c_isspace (cp
[0])) /* Not a predicate */
5915 else if (cp
[0] == '/' && cp
[1] == '*') /* comment. */
5916 prolog_skip_comment (&lb
, inf
);
5917 else if ((len
= prolog_pr (cp
, last
)) > 0)
5919 /* Predicate or rule. Store the function name so that we
5920 only generate a tag for the first clause. */
5922 last
= xnew (len
+ 1, char);
5923 else if (len
+ 1 > allocated
)
5924 xrnew (last
, len
+ 1, char);
5925 allocated
= len
+ 1;
5926 memcpy (last
, cp
, len
);
5935 prolog_skip_comment (linebuffer
*plb
, FILE *inf
)
5941 for (cp
= plb
->buffer
; *cp
!= '\0'; cp
++)
5942 if (cp
[0] == '*' && cp
[1] == '/')
5944 readline (plb
, inf
);
5946 while (perhaps_more_input (inf
));
5950 * A predicate or rule definition is added if it matches:
5951 * <beginning of line><Prolog Atom><whitespace>(
5952 * or <beginning of line><Prolog Atom><whitespace>:-
5954 * It is added to the tags database if it doesn't match the
5955 * name of the previous clause header.
5957 * Return the size of the name of the predicate or rule, or 0 if no
5961 prolog_pr (char *s
, char *last
)
5963 /* Name of last clause. */
5968 pos
= prolog_atom (s
, 0);
5973 pos
= skip_spaces (s
+ pos
) - s
;
5976 || (s
[pos
] == '(' && (pos
+= 1))
5977 || (s
[pos
] == ':' && s
[pos
+ 1] == '-' && (pos
+= 2)))
5978 && (last
== NULL
/* save only the first clause */
5979 || len
!= strlen (last
)
5980 || !strneq (s
, last
, len
)))
5982 make_tag (s
, len
, true, s
, pos
, lineno
, linecharno
);
5990 * Consume a Prolog atom.
5991 * Return the number of bytes consumed, or 0 if there was an error.
5993 * A prolog atom, in this context, could be one of:
5994 * - An alphanumeric sequence, starting with a lower case letter.
5995 * - A quoted arbitrary string. Single quotes can escape themselves.
5996 * Backslash quotes everything.
5999 prolog_atom (char *s
, size_t pos
)
6005 if (c_islower (s
[pos
]) || s
[pos
] == '_')
6007 /* The atom is unquoted. */
6009 while (c_isalnum (s
[pos
]) || s
[pos
] == '_')
6013 return pos
- origpos
;
6015 else if (s
[pos
] == '\'')
6026 pos
++; /* A double quote */
6028 else if (s
[pos
] == '\0')
6029 /* Multiline quoted atoms are ignored. */
6031 else if (s
[pos
] == '\\')
6033 if (s
[pos
+1] == '\0')
6040 return pos
- origpos
;
6048 * Support for Erlang
6050 * Generates tags for functions, defines, and records.
6051 * Assumes that Erlang functions start at column 0.
6052 * Original code by Anders Lindgren (1996)
6054 static int erlang_func (char *, char *);
6055 static void erlang_attribute (char *);
6056 static int erlang_atom (char *);
6059 Erlang_functions (FILE *inf
)
6069 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
6071 if (cp
[0] == '\0') /* Empty line */
6073 else if (c_isspace (cp
[0])) /* Not function nor attribute */
6075 else if (cp
[0] == '%') /* comment */
6077 else if (cp
[0] == '"') /* Sometimes, strings start in column one */
6079 else if (cp
[0] == '-') /* attribute, e.g. "-define" */
6081 erlang_attribute (cp
);
6088 else if ((len
= erlang_func (cp
, last
)) > 0)
6091 * Function. Store the function name so that we only
6092 * generates a tag for the first clause.
6095 last
= xnew (len
+ 1, char);
6096 else if (len
+ 1 > allocated
)
6097 xrnew (last
, len
+ 1, char);
6098 allocated
= len
+ 1;
6099 memcpy (last
, cp
, len
);
6108 * A function definition is added if it matches:
6109 * <beginning of line><Erlang Atom><whitespace>(
6111 * It is added to the tags database if it doesn't match the
6112 * name of the previous clause header.
6114 * Return the size of the name of the function, or 0 if no function
6118 erlang_func (char *s
, char *last
)
6120 /* Name of last clause. */
6125 pos
= erlang_atom (s
);
6130 pos
= skip_spaces (s
+ pos
) - s
;
6132 /* Save only the first clause. */
6135 || len
!= (int)strlen (last
)
6136 || !strneq (s
, last
, len
)))
6138 make_tag (s
, len
, true, s
, pos
, lineno
, linecharno
);
6147 * Handle attributes. Currently, tags are generated for defines
6150 * They are on the form:
6151 * -define(foo, bar).
6152 * -define(Foo(M, N), M+N).
6153 * -record(graph, {vtab = notable, cyclic = true}).
6156 erlang_attribute (char *s
)
6160 if ((LOOKING_AT (cp
, "-define") || LOOKING_AT (cp
, "-record"))
6163 int len
= erlang_atom (skip_spaces (cp
));
6165 make_tag (cp
, len
, true, s
, cp
+ len
- s
, lineno
, linecharno
);
6172 * Consume an Erlang atom (or variable).
6173 * Return the number of bytes consumed, or -1 if there was an error.
6176 erlang_atom (char *s
)
6180 if (c_isalpha (s
[pos
]) || s
[pos
] == '_')
6182 /* The atom is unquoted. */
6185 while (c_isalnum (s
[pos
]) || s
[pos
] == '_');
6187 else if (s
[pos
] == '\'')
6189 for (pos
++; s
[pos
] != '\''; pos
++)
6190 if (s
[pos
] == '\0' /* multiline quoted atoms are ignored */
6191 || (s
[pos
] == '\\' && s
[++pos
] == '\0'))
6200 static char *scan_separators (char *);
6201 static void add_regex (char *, language
*);
6202 static char *substitute (char *, char *, struct re_registers
*);
6205 * Take a string like "/blah/" and turn it into "blah", verifying
6206 * that the first and last characters are the same, and handling
6207 * quoted separator characters. Actually, stops on the occurrence of
6208 * an unquoted separator. Also process \t, \n, etc. and turn into
6209 * appropriate characters. Works in place. Null terminates name string.
6210 * Returns pointer to terminating separator, or NULL for
6211 * unterminated regexps.
6214 scan_separators (char *name
)
6217 char *copyto
= name
;
6218 bool quoted
= false;
6220 for (++name
; *name
!= '\0'; ++name
)
6226 case 'a': *copyto
++ = '\007'; break; /* BEL (bell) */
6227 case 'b': *copyto
++ = '\b'; break; /* BS (back space) */
6228 case 'd': *copyto
++ = 0177; break; /* DEL (delete) */
6229 case 'e': *copyto
++ = 033; break; /* ESC (delete) */
6230 case 'f': *copyto
++ = '\f'; break; /* FF (form feed) */
6231 case 'n': *copyto
++ = '\n'; break; /* NL (new line) */
6232 case 'r': *copyto
++ = '\r'; break; /* CR (carriage return) */
6233 case 't': *copyto
++ = '\t'; break; /* TAB (horizontal tab) */
6234 case 'v': *copyto
++ = '\v'; break; /* VT (vertical tab) */
6240 /* Something else is quoted, so preserve the quote. */
6248 else if (*name
== '\\')
6250 else if (*name
== sep
)
6256 name
= NULL
; /* signal unterminated regexp */
6258 /* Terminate copied string. */
6263 /* Look at the argument of --regex or --no-regex and do the right
6264 thing. Same for each line of a regexp file. */
6266 analyze_regex (char *regex_arg
)
6268 if (regex_arg
== NULL
)
6270 free_regexps (); /* --no-regex: remove existing regexps */
6274 /* A real --regexp option or a line in a regexp file. */
6275 switch (regex_arg
[0])
6277 /* Comments in regexp file or null arg to --regex. */
6283 /* Read a regex file. This is recursive and may result in a
6284 loop, which will stop when the file descriptors are exhausted. */
6288 linebuffer regexbuf
;
6289 char *regexfile
= regex_arg
+ 1;
6291 /* regexfile is a file containing regexps, one per line. */
6292 regexfp
= fopen (regexfile
, "r" FOPEN_BINARY
);
6293 if (regexfp
== NULL
)
6295 linebuffer_init (®exbuf
);
6296 while (readline_internal (®exbuf
, regexfp
, regexfile
) > 0)
6297 analyze_regex (regexbuf
.buffer
);
6298 free (regexbuf
.buffer
);
6299 if (fclose (regexfp
) != 0)
6304 /* Regexp to be used for a specific language only. */
6308 char *lang_name
= regex_arg
+ 1;
6311 for (cp
= lang_name
; *cp
!= '}'; cp
++)
6314 error ("unterminated language name in regex: %s", regex_arg
);
6318 lang
= get_language_from_langname (lang_name
);
6321 add_regex (cp
, lang
);
6325 /* Regexp to be used for any language. */
6327 add_regex (regex_arg
, NULL
);
6332 /* Separate the regexp pattern, compile it,
6333 and care for optional name and modifiers. */
6335 add_regex (char *regexp_pattern
, language
*lang
)
6337 static struct re_pattern_buffer zeropattern
;
6338 char sep
, *pat
, *name
, *modifiers
;
6341 struct re_pattern_buffer
*patbuf
;
6344 force_explicit_name
= true, /* do not use implicit tag names */
6345 ignore_case
= false, /* case is significant */
6346 multi_line
= false, /* matches are done one line at a time */
6347 single_line
= false; /* dot does not match newline */
6350 if (strlen (regexp_pattern
) < 3)
6352 error ("null regexp");
6355 sep
= regexp_pattern
[0];
6356 name
= scan_separators (regexp_pattern
);
6359 error ("%s: unterminated regexp", regexp_pattern
);
6364 error ("null name for regexp \"%s\"", regexp_pattern
);
6367 modifiers
= scan_separators (name
);
6368 if (modifiers
== NULL
) /* no terminating separator --> no name */
6374 modifiers
+= 1; /* skip separator */
6376 /* Parse regex modifiers. */
6377 for (; modifiers
[0] != '\0'; modifiers
++)
6378 switch (modifiers
[0])
6381 if (modifiers
== name
)
6382 error ("forcing explicit tag name but no name, ignoring");
6383 force_explicit_name
= true;
6393 need_filebuf
= true;
6396 error ("invalid regexp modifier '%c', ignoring", modifiers
[0]);
6400 patbuf
= xnew (1, struct re_pattern_buffer
);
6401 *patbuf
= zeropattern
;
6404 static char lc_trans
[UCHAR_MAX
+ 1];
6406 for (i
= 0; i
< UCHAR_MAX
+ 1; i
++)
6407 lc_trans
[i
] = c_tolower (i
);
6408 patbuf
->translate
= lc_trans
; /* translation table to fold case */
6412 pat
= concat ("^", regexp_pattern
, ""); /* anchor to beginning of line */
6414 pat
= regexp_pattern
;
6417 re_set_syntax (RE_SYNTAX_EMACS
| RE_DOT_NEWLINE
);
6419 re_set_syntax (RE_SYNTAX_EMACS
);
6421 err
= re_compile_pattern (pat
, strlen (pat
), patbuf
);
6426 error ("%s while compiling pattern", err
);
6431 p_head
= xnew (1, regexp
);
6432 p_head
->pattern
= savestr (regexp_pattern
);
6433 p_head
->p_next
= rp
;
6434 p_head
->lang
= lang
;
6435 p_head
->pat
= patbuf
;
6436 p_head
->name
= savestr (name
);
6437 p_head
->error_signaled
= false;
6438 p_head
->force_explicit_name
= force_explicit_name
;
6439 p_head
->ignore_case
= ignore_case
;
6440 p_head
->multi_line
= multi_line
;
6444 * Do the substitutions indicated by the regular expression and
6448 substitute (char *in
, char *out
, struct re_registers
*regs
)
6451 int size
, dig
, diglen
;
6454 size
= strlen (out
);
6456 /* Pass 1: figure out how much to allocate by finding all \N strings. */
6457 if (out
[size
- 1] == '\\')
6458 fatal ("pattern error in \"%s\"", out
);
6459 for (t
= strchr (out
, '\\');
6461 t
= strchr (t
+ 2, '\\'))
6462 if (c_isdigit (t
[1]))
6465 diglen
= regs
->end
[dig
] - regs
->start
[dig
];
6471 /* Allocate space and do the substitutions. */
6473 result
= xnew (size
+ 1, char);
6475 for (t
= result
; *out
!= '\0'; out
++)
6476 if (*out
== '\\' && c_isdigit (*++out
))
6479 diglen
= regs
->end
[dig
] - regs
->start
[dig
];
6480 memcpy (t
, in
+ regs
->start
[dig
], diglen
);
6487 assert (t
<= result
+ size
);
6488 assert (t
- result
== (int)strlen (result
));
6493 /* Deallocate all regexps. */
6498 while (p_head
!= NULL
)
6500 rp
= p_head
->p_next
;
6501 free (p_head
->pattern
);
6502 free (p_head
->name
);
6510 * Reads the whole file as a single string from `filebuf' and looks for
6511 * multi-line regular expressions, creating tags on matches.
6512 * readline already dealt with normal regexps.
6514 * Idea by Ben Wing <ben@666.com> (2002).
6517 regex_tag_multiline (void)
6519 char *buffer
= filebuf
.buffer
;
6523 for (rp
= p_head
; rp
!= NULL
; rp
= rp
->p_next
)
6527 if (!rp
->multi_line
)
6528 continue; /* skip normal regexps */
6530 /* Generic initializations before parsing file from memory. */
6531 lineno
= 1; /* reset global line number */
6532 charno
= 0; /* reset global char number */
6533 linecharno
= 0; /* reset global char number of line start */
6535 /* Only use generic regexps or those for the current language. */
6536 if (rp
->lang
!= NULL
&& rp
->lang
!= curfdp
->lang
)
6539 while (match
>= 0 && match
< filebuf
.len
)
6541 match
= re_search (rp
->pat
, buffer
, filebuf
.len
, charno
,
6542 filebuf
.len
- match
, &rp
->regs
);
6547 if (!rp
->error_signaled
)
6549 error ("regexp stack overflow while matching \"%s\"",
6551 rp
->error_signaled
= true;
6558 if (match
== rp
->regs
.end
[0])
6560 if (!rp
->error_signaled
)
6562 error ("regexp matches the empty string: \"%s\"",
6564 rp
->error_signaled
= true;
6566 match
= -3; /* exit from while loop */
6570 /* Match occurred. Construct a tag. */
6571 while (charno
< rp
->regs
.end
[0])
6572 if (buffer
[charno
++] == '\n')
6573 lineno
++, linecharno
= charno
;
6575 if (name
[0] == '\0')
6577 else /* make a named tag */
6578 name
= substitute (buffer
, rp
->name
, &rp
->regs
);
6579 if (rp
->force_explicit_name
)
6581 /* Force explicit tag name, if a name is there. */
6582 pfnote (name
, true, buffer
+ linecharno
,
6583 charno
- linecharno
+ 1, lineno
, linecharno
);
6586 fprintf (stderr
, "%s on %s:%d: %s\n",
6587 name
? name
: "(unnamed)", curfdp
->taggedfname
,
6588 lineno
, buffer
+ linecharno
);
6591 make_tag (name
, strlen (name
), true, buffer
+ linecharno
,
6592 charno
- linecharno
+ 1, lineno
, linecharno
);
6601 nocase_tail (const char *cp
)
6605 while (*cp
!= '\0' && c_tolower (*cp
) == c_tolower (dbp
[len
]))
6607 if (*cp
== '\0' && !intoken (dbp
[len
]))
6616 get_tag (register char *bp
, char **namepp
)
6618 register char *cp
= bp
;
6622 /* Go till you get to white space or a syntactic break */
6623 for (cp
= bp
+ 1; !notinname (*cp
); cp
++)
6625 make_tag (bp
, cp
- bp
, true,
6626 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
6630 *namepp
= savenstr (bp
, cp
- bp
);
6633 /* Similar to get_tag, but include '=' as part of the tag. */
6635 get_lispy_tag (register char *bp
)
6637 register char *cp
= bp
;
6641 /* Go till you get to white space or a syntactic break */
6642 for (cp
= bp
+ 1; !notinname (*cp
) || *cp
== '='; cp
++)
6644 make_tag (bp
, cp
- bp
, true,
6645 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
6650 * Read a line of text from `stream' into `lbp', excluding the
6651 * newline or CR-NL, if any. Return the number of characters read from
6652 * `stream', which is the length of the line including the newline.
6654 * On DOS or Windows we do not count the CR character, if any before the
6655 * NL, in the returned length; this mirrors the behavior of Emacs on those
6656 * platforms (for text files, it translates CR-NL to NL as it reads in the
6659 * If multi-line regular expressions are requested, each line read is
6660 * appended to `filebuf'.
6663 readline_internal (linebuffer
*lbp
, FILE *stream
, char const *filename
)
6665 char *buffer
= lbp
->buffer
;
6666 char *p
= lbp
->buffer
;
6670 pend
= p
+ lbp
->size
; /* Separate to avoid 386/IX compiler bug. */
6674 register int c
= getc (stream
);
6677 /* We're at the end of linebuffer: expand it. */
6679 xrnew (buffer
, lbp
->size
, char);
6680 p
+= buffer
- lbp
->buffer
;
6681 pend
= buffer
+ lbp
->size
;
6682 lbp
->buffer
= buffer
;
6686 if (ferror (stream
))
6694 if (p
> buffer
&& p
[-1] == '\r')
6708 lbp
->len
= p
- buffer
;
6710 if (need_filebuf
/* we need filebuf for multi-line regexps */
6711 && chars_deleted
> 0) /* not at EOF */
6713 while (filebuf
.size
<= filebuf
.len
+ lbp
->len
+ 1) /* +1 for \n */
6715 /* Expand filebuf. */
6717 xrnew (filebuf
.buffer
, filebuf
.size
, char);
6719 memcpy (filebuf
.buffer
+ filebuf
.len
, lbp
->buffer
, lbp
->len
);
6720 filebuf
.len
+= lbp
->len
;
6721 filebuf
.buffer
[filebuf
.len
++] = '\n';
6722 filebuf
.buffer
[filebuf
.len
] = '\0';
6725 return lbp
->len
+ chars_deleted
;
6729 * Like readline_internal, above, but in addition try to match the
6730 * input line against relevant regular expressions and manage #line
6734 readline (linebuffer
*lbp
, FILE *stream
)
6738 linecharno
= charno
; /* update global char number of line start */
6739 result
= readline_internal (lbp
, stream
, infilename
); /* read line */
6740 lineno
+= 1; /* increment global line number */
6741 charno
+= result
; /* increment global char number */
6743 /* Honor #line directives. */
6744 if (!no_line_directive
)
6746 static bool discard_until_line_directive
;
6748 /* Check whether this is a #line directive. */
6749 if (result
> 12 && strneq (lbp
->buffer
, "#line ", 6))
6754 if (sscanf (lbp
->buffer
, "#line %u \"%n", &lno
, &start
) >= 1
6755 && start
> 0) /* double quote character found */
6757 char *endp
= lbp
->buffer
+ start
;
6759 while ((endp
= strchr (endp
, '"')) != NULL
6760 && endp
[-1] == '\\')
6763 /* Ok, this is a real #line directive. Let's deal with it. */
6765 char *taggedabsname
; /* absolute name of original file */
6766 char *taggedfname
; /* name of original file as given */
6767 char *name
; /* temp var */
6769 discard_until_line_directive
= false; /* found it */
6770 name
= lbp
->buffer
+ start
;
6772 canonicalize_filename (name
);
6773 taggedabsname
= absolute_filename (name
, tagfiledir
);
6774 if (filename_is_absolute (name
)
6775 || filename_is_absolute (curfdp
->infname
))
6776 taggedfname
= savestr (taggedabsname
);
6778 taggedfname
= relative_filename (taggedabsname
,tagfiledir
);
6780 if (streq (curfdp
->taggedfname
, taggedfname
))
6781 /* The #line directive is only a line number change. We
6782 deal with this afterwards. */
6785 /* The tags following this #line directive should be
6786 attributed to taggedfname. In order to do this, set
6787 curfdp accordingly. */
6789 fdesc
*fdp
; /* file description pointer */
6791 /* Go look for a file description already set up for the
6792 file indicated in the #line directive. If there is
6793 one, use it from now until the next #line
6795 for (fdp
= fdhead
; fdp
!= NULL
; fdp
= fdp
->next
)
6796 if (streq (fdp
->infname
, curfdp
->infname
)
6797 && streq (fdp
->taggedfname
, taggedfname
))
6798 /* If we remove the second test above (after the &&)
6799 then all entries pertaining to the same file are
6800 coalesced in the tags file. If we use it, then
6801 entries pertaining to the same file but generated
6802 from different files (via #line directives) will
6803 go into separate sections in the tags file. These
6804 alternatives look equivalent. The first one
6805 destroys some apparently useless information. */
6811 /* Else, if we already tagged the real file, skip all
6812 input lines until the next #line directive. */
6813 if (fdp
== NULL
) /* not found */
6814 for (fdp
= fdhead
; fdp
!= NULL
; fdp
= fdp
->next
)
6815 if (streq (fdp
->infabsname
, taggedabsname
))
6817 discard_until_line_directive
= true;
6821 /* Else create a new file description and use that from
6822 now on, until the next #line directive. */
6823 if (fdp
== NULL
) /* not found */
6826 fdhead
= xnew (1, fdesc
);
6827 *fdhead
= *curfdp
; /* copy curr. file description */
6829 fdhead
->infname
= savestr (curfdp
->infname
);
6830 fdhead
->infabsname
= savestr (curfdp
->infabsname
);
6831 fdhead
->infabsdir
= savestr (curfdp
->infabsdir
);
6832 fdhead
->taggedfname
= taggedfname
;
6833 fdhead
->usecharno
= false;
6834 fdhead
->prop
= NULL
;
6835 fdhead
->written
= false;
6839 free (taggedabsname
);
6841 readline (lbp
, stream
);
6843 } /* if a real #line directive */
6844 } /* if #line is followed by a number */
6845 } /* if line begins with "#line " */
6847 /* If we are here, no #line directive was found. */
6848 if (discard_until_line_directive
)
6852 /* Do a tail recursion on ourselves, thus discarding the contents
6853 of the line buffer. */
6854 readline (lbp
, stream
);
6858 discard_until_line_directive
= false;
6861 } /* if #line directives should be considered */
6868 /* Match against relevant regexps. */
6870 for (rp
= p_head
; rp
!= NULL
; rp
= rp
->p_next
)
6872 /* Only use generic regexps or those for the current language.
6873 Also do not use multiline regexps, which is the job of
6874 regex_tag_multiline. */
6875 if ((rp
->lang
!= NULL
&& rp
->lang
!= fdhead
->lang
)
6879 match
= re_match (rp
->pat
, lbp
->buffer
, lbp
->len
, 0, &rp
->regs
);
6884 if (!rp
->error_signaled
)
6886 error ("regexp stack overflow while matching \"%s\"",
6888 rp
->error_signaled
= true;
6895 /* Empty string matched. */
6896 if (!rp
->error_signaled
)
6898 error ("regexp matches the empty string: \"%s\"", rp
->pattern
);
6899 rp
->error_signaled
= true;
6903 /* Match occurred. Construct a tag. */
6905 if (name
[0] == '\0')
6907 else /* make a named tag */
6908 name
= substitute (lbp
->buffer
, rp
->name
, &rp
->regs
);
6909 if (rp
->force_explicit_name
)
6911 /* Force explicit tag name, if a name is there. */
6912 pfnote (name
, true, lbp
->buffer
, match
, lineno
, linecharno
);
6914 fprintf (stderr
, "%s on %s:%d: %s\n",
6915 name
? name
: "(unnamed)", curfdp
->taggedfname
,
6916 lineno
, lbp
->buffer
);
6919 make_tag (name
, strlen (name
), true,
6920 lbp
->buffer
, match
, lineno
, linecharno
);
6929 * Return a pointer to a space of size strlen(cp)+1 allocated
6930 * with xnew where the string CP has been copied.
6933 savestr (const char *cp
)
6935 return savenstr (cp
, strlen (cp
));
6939 * Return a pointer to a space of size LEN+1 allocated with xnew where
6940 * the string CP has been copied for at most the first LEN characters.
6943 savenstr (const char *cp
, int len
)
6945 char *dp
= xnew (len
+ 1, char);
6947 return memcpy (dp
, cp
, len
);
6950 /* Skip spaces (end of string is not space), return new pointer. */
6952 skip_spaces (char *cp
)
6954 while (c_isspace (*cp
))
6959 /* Skip non spaces, except end of string, return new pointer. */
6961 skip_non_spaces (char *cp
)
6963 while (*cp
!= '\0' && !c_isspace (*cp
))
6968 /* Skip any chars in the "name" class.*/
6970 skip_name (char *cp
)
6972 /* '\0' is a notinname() so loop stops there too */
6973 while (! notinname (*cp
))
6978 /* Print error message and exit. */
6980 fatal (char const *format
, ...)
6983 va_start (ap
, format
);
6984 verror (format
, ap
);
6986 exit (EXIT_FAILURE
);
6990 pfatal (const char *s1
)
6993 exit (EXIT_FAILURE
);
6997 suggest_asking_for_help (void)
6999 fprintf (stderr
, "\tTry '%s --help' for a complete list of options.\n",
7001 exit (EXIT_FAILURE
);
7004 /* Output a diagnostic with printf-style FORMAT and args. */
7006 error (const char *format
, ...)
7009 va_start (ap
, format
);
7010 verror (format
, ap
);
7015 verror (char const *format
, va_list ap
)
7017 fprintf (stderr
, "%s: ", progname
);
7018 vfprintf (stderr
, format
, ap
);
7019 fprintf (stderr
, "\n");
7022 /* Return a newly-allocated string whose contents
7023 concatenate those of s1, s2, s3. */
7025 concat (const char *s1
, const char *s2
, const char *s3
)
7027 int len1
= strlen (s1
), len2
= strlen (s2
), len3
= strlen (s3
);
7028 char *result
= xnew (len1
+ len2
+ len3
+ 1, char);
7030 strcpy (result
, s1
);
7031 strcpy (result
+ len1
, s2
);
7032 strcpy (result
+ len1
+ len2
, s3
);
7038 /* Does the same work as the system V getcwd, but does not need to
7039 guess the buffer size in advance. */
7044 char *path
= xnew (bufsize
, char);
7046 while (getcwd (path
, bufsize
) == NULL
)
7048 if (errno
!= ERANGE
)
7052 path
= xnew (bufsize
, char);
7055 canonicalize_filename (path
);
7059 /* Return a newly allocated string containing a name of a temporary file. */
7063 const char *tmpdir
= getenv ("TMPDIR");
7064 const char *slash
= "/";
7066 #if MSDOS || defined (DOS_NT)
7068 tmpdir
= getenv ("TEMP");
7070 tmpdir
= getenv ("TMP");
7073 if (tmpdir
[strlen (tmpdir
) - 1] == '/'
7074 || tmpdir
[strlen (tmpdir
) - 1] == '\\')
7079 if (tmpdir
[strlen (tmpdir
) - 1] == '/')
7083 char *templt
= concat (tmpdir
, slash
, "etXXXXXX");
7084 int fd
= mkostemp (templt
, O_CLOEXEC
);
7085 if (fd
< 0 || close (fd
) != 0)
7087 int temp_errno
= errno
;
7092 #if defined (DOS_NT)
7095 /* The file name will be used in shell redirection, so it needs to have
7096 DOS-style backslashes, or else the Windows shell will barf. */
7098 for (p
= templt
; *p
; p
++)
7107 /* Return a newly allocated string containing the file name of FILE
7108 relative to the absolute directory DIR (which should end with a slash). */
7110 relative_filename (char *file
, char *dir
)
7112 char *fp
, *dp
, *afn
, *res
;
7115 /* Find the common root of file and dir (with a trailing slash). */
7116 afn
= absolute_filename (file
, cwd
);
7119 while (*fp
++ == *dp
++)
7121 fp
--, dp
--; /* back to the first differing char */
7123 if (fp
== afn
&& afn
[0] != '/') /* cannot build a relative name */
7126 do /* look at the equal chars until '/' */
7130 /* Build a sequence of "../" strings for the resulting relative file name. */
7132 while ((dp
= strchr (dp
+ 1, '/')) != NULL
)
7134 res
= xnew (3*i
+ strlen (fp
+ 1) + 1, char);
7137 z
= stpcpy (z
, "../");
7139 /* Add the file name relative to the common root of file and dir. */
7146 /* Return a newly allocated string containing the absolute file name
7147 of FILE given DIR (which should end with a slash). */
7149 absolute_filename (char *file
, char *dir
)
7151 char *slashp
, *cp
, *res
;
7153 if (filename_is_absolute (file
))
7154 res
= savestr (file
);
7156 /* We don't support non-absolute file names with a drive
7157 letter, like `d:NAME' (it's too much hassle). */
7158 else if (file
[1] == ':')
7159 fatal ("%s: relative file names with drive letters not supported", file
);
7162 res
= concat (dir
, file
, "");
7164 /* Delete the "/dirname/.." and "/." substrings. */
7165 slashp
= strchr (res
, '/');
7166 while (slashp
!= NULL
&& slashp
[0] != '\0')
7168 if (slashp
[1] == '.')
7170 if (slashp
[2] == '.'
7171 && (slashp
[3] == '/' || slashp
[3] == '\0'))
7176 while (cp
>= res
&& !filename_is_absolute (cp
));
7178 cp
= slashp
; /* the absolute name begins with "/.." */
7180 /* Under MSDOS and NT we get `d:/NAME' as absolute
7181 file name, so the luser could say `d:/../NAME'.
7182 We silently treat this as `d:/NAME'. */
7183 else if (cp
[0] != '/')
7186 memmove (cp
, slashp
+ 3, strlen (slashp
+ 2));
7190 else if (slashp
[2] == '/' || slashp
[2] == '\0')
7192 memmove (slashp
, slashp
+ 2, strlen (slashp
+ 1));
7197 slashp
= strchr (slashp
+ 1, '/');
7200 if (res
[0] == '\0') /* just a safety net: should never happen */
7203 return savestr ("/");
7209 /* Return a newly allocated string containing the absolute
7210 file name of dir where FILE resides given DIR (which should
7211 end with a slash). */
7213 absolute_dirname (char *file
, char *dir
)
7218 slashp
= strrchr (file
, '/');
7220 return savestr (dir
);
7223 res
= absolute_filename (file
, dir
);
7229 /* Whether the argument string is an absolute file name. The argument
7230 string must have been canonicalized with canonicalize_filename. */
7232 filename_is_absolute (char *fn
)
7234 return (fn
[0] == '/'
7236 || (c_isalpha (fn
[0]) && fn
[1] == ':' && fn
[2] == '/')
7241 /* Downcase DOS drive letter and collapse separators into single slashes.
7244 canonicalize_filename (register char *fn
)
7249 /* Canonicalize drive letter case. */
7250 if (c_isupper (fn
[0]) && fn
[1] == ':')
7251 fn
[0] = c_tolower (fn
[0]);
7253 /* Collapse multiple forward- and back-slashes into a single forward
7255 for (cp
= fn
; *cp
!= '\0'; cp
++, fn
++)
7256 if (*cp
== '/' || *cp
== '\\')
7259 while (cp
[1] == '/' || cp
[1] == '\\')
7267 /* Collapse multiple slashes into a single slash. */
7268 for (cp
= fn
; *cp
!= '\0'; cp
++, fn
++)
7272 while (cp
[1] == '/')
7278 #endif /* !DOS_NT */
7284 /* Initialize a linebuffer for use. */
7286 linebuffer_init (linebuffer
*lbp
)
7288 lbp
->size
= (DEBUG
) ? 3 : 200;
7289 lbp
->buffer
= xnew (lbp
->size
, char);
7290 lbp
->buffer
[0] = '\0';
7294 /* Set the minimum size of a string contained in a linebuffer. */
7296 linebuffer_setlen (linebuffer
*lbp
, int toksize
)
7298 while (lbp
->size
<= toksize
)
7301 xrnew (lbp
->buffer
, lbp
->size
, char);
7306 /* Like malloc but get fatal error if memory is exhausted. */
7308 xmalloc (size_t size
)
7310 void *result
= malloc (size
);
7312 fatal ("virtual memory exhausted");
7317 xrealloc (void *ptr
, size_t size
)
7319 void *result
= realloc (ptr
, size
);
7321 fatal ("virtual memory exhausted");
7327 * indent-tabs-mode: t
7330 * c-font-lock-extra-types: ("FILE" "bool" "language" "linebuffer" "fdesc" "node" "regexp")
7331 * c-file-style: "gnu"
7335 /* etags.c ends here */