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-2014 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
39 (at your option) any later version.
41 This program is distributed in the hope that it will be useful,
42 but WITHOUT ANY WARRANTY; without even the implied warranty of
43 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
44 GNU General Public License for more details.
46 You should have received a copy of the GNU General Public License
47 along with this program. If not, see <http://www.gnu.org/licenses/>. */
50 /* NB To comply with the above BSD license, copyright information is
51 reproduced in etc/ETAGS.README. That file should be updated when the
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ì.
72 * Francesco Potortì <pot@gnu.org> has maintained and improved it since 1993.
76 * If you want to add support for a new language, start by looking at the LUA
77 * language, which is the simplest. Alternatively, consider distributing etags
78 * together with a configuration file containing regexp definitions for etags.
81 char pot_etags_version
[] = "@(#) pot revision number is 17.38.1.4";
88 # define NDEBUG /* disable assert */
94 # define _GNU_SOURCE 1 /* enables some compiler checks on GNU */
97 /* WIN32_NATIVE is for XEmacs.
98 MSDOS, WINDOWSNT, DOS_NT are for Emacs. */
103 #endif /* WIN32_NATIVE */
109 # include <sys/param.h>
119 # define MAXPATHLEN _MAX_PATH
123 #endif /* WINDOWSNT */
132 #include <sys/types.h>
133 #include <sys/stat.h>
134 #include <c-strcase.h>
138 # undef assert /* some systems have a buggy assert.h */
139 # define assert(x) ((void) 0)
145 /* Define CTAGS to make the program "ctags" compatible with the usual one.
146 Leave it undefined to make the program "etags", which makes emacs-style
147 tag tables and tags typedefs, #defines and struct/union/enum by default. */
155 #define streq(s,t) (assert ((s)!=NULL || (t)!=NULL), !strcmp (s, t))
156 #define strcaseeq(s,t) (assert ((s)!=NULL && (t)!=NULL), !c_strcasecmp (s, t))
157 #define strneq(s,t,n) (assert ((s)!=NULL || (t)!=NULL), !strncmp (s, t, n))
158 #define strncaseeq(s,t,n) (assert ((s)!=NULL && (t)!=NULL), !c_strncasecmp (s, t, n))
160 #define CHARS 256 /* 2^sizeof(char) */
161 #define CHAR(x) ((unsigned int)(x) & (CHARS - 1))
162 #define iswhite(c) (_wht[CHAR (c)]) /* c is white (see white) */
163 #define notinname(c) (_nin[CHAR (c)]) /* c is not in a name (see nonam) */
164 #define begtoken(c) (_btk[CHAR (c)]) /* c can start token (see begtk) */
165 #define intoken(c) (_itk[CHAR (c)]) /* c can be in token (see midtk) */
166 #define endtoken(c) (_etk[CHAR (c)]) /* c ends tokens (see endtk) */
168 #define ISALNUM(c) isalnum (CHAR (c))
169 #define ISALPHA(c) isalpha (CHAR (c))
170 #define ISDIGIT(c) isdigit (CHAR (c))
171 #define ISLOWER(c) islower (CHAR (c))
173 #define lowcase(c) tolower (CHAR (c))
177 * xnew, xrnew -- allocate, reallocate storage
179 * SYNOPSIS: Type *xnew (int n, Type);
180 * void xrnew (OldPointer, int n, Type);
183 # include "chkmalloc.h"
184 # define xnew(n,Type) ((Type *) trace_malloc (__FILE__, __LINE__, \
185 (n) * sizeof (Type)))
186 # define xrnew(op,n,Type) ((op) = (Type *) trace_realloc (__FILE__, __LINE__, \
187 (char *) (op), (n) * sizeof (Type)))
189 # define xnew(n,Type) ((Type *) xmalloc ((n) * sizeof (Type)))
190 # define xrnew(op,n,Type) ((op) = (Type *) xrealloc ( \
191 (char *) (op), (n) * sizeof (Type)))
194 typedef void Lang_function (FILE *);
198 const char *suffix
; /* file name suffix for this compressor */
199 const char *command
; /* takes one arg and decompresses to stdout */
204 const char *name
; /* language name */
205 const char *help
; /* detailed help for the language */
206 Lang_function
*function
; /* parse function */
207 const char **suffixes
; /* name suffixes of this language's files */
208 const char **filenames
; /* names of this language's files */
209 const char **interpreters
; /* interpreters for this language */
210 bool metasource
; /* source used to generate other sources */
215 struct fdesc
*next
; /* for the linked list */
216 char *infname
; /* uncompressed input file name */
217 char *infabsname
; /* absolute uncompressed input file name */
218 char *infabsdir
; /* absolute dir of input file */
219 char *taggedfname
; /* file name to write in tagfile */
220 language
*lang
; /* language of file */
221 char *prop
; /* file properties to write in tagfile */
222 bool usecharno
; /* etags tags shall contain char number */
223 bool written
; /* entry written in the tags file */
226 typedef struct node_st
227 { /* sorting structure */
228 struct node_st
*left
, *right
; /* left and right sons */
229 fdesc
*fdp
; /* description of file to whom tag belongs */
230 char *name
; /* tag name */
231 char *regex
; /* search regexp */
232 bool valid
; /* write this tag on the tag file */
233 bool is_func
; /* function tag: use regexp in CTAGS mode */
234 bool been_warned
; /* warning already given for duplicated tag */
235 int lno
; /* line number tag is on */
236 long cno
; /* character number line starts on */
240 * A `linebuffer' is a structure which holds a line of text.
241 * `readline_internal' reads a line from a stream into a linebuffer
242 * and works regardless of the length of the line.
243 * SIZE is the size of BUFFER, LEN is the length of the string in
244 * BUFFER after readline reads it.
253 /* Used to support mixing of --lang and file names. */
257 at_language
, /* a language specification */
258 at_regexp
, /* a regular expression */
259 at_filename
, /* a file name */
260 at_stdin
, /* read from stdin here */
261 at_end
/* stop parsing the list */
262 } arg_type
; /* argument type */
263 language
*lang
; /* language associated with the argument */
264 char *what
; /* the argument itself */
267 /* Structure defining a regular expression. */
268 typedef struct regexp
270 struct regexp
*p_next
; /* pointer to next in list */
271 language
*lang
; /* if set, use only for this language */
272 char *pattern
; /* the regexp pattern */
273 char *name
; /* tag name */
274 struct re_pattern_buffer
*pat
; /* the compiled pattern */
275 struct re_registers regs
; /* re registers */
276 bool error_signaled
; /* already signaled for this regexp */
277 bool force_explicit_name
; /* do not allow implicit tag name */
278 bool ignore_case
; /* ignore case when matching */
279 bool multi_line
; /* do a multi-line match on the whole file */
283 /* Many compilers barf on this:
284 Lang_function Ada_funcs;
285 so let's write it this way */
286 static void Ada_funcs (FILE *);
287 static void Asm_labels (FILE *);
288 static void C_entries (int c_ext
, FILE *);
289 static void default_C_entries (FILE *);
290 static void plain_C_entries (FILE *);
291 static void Cjava_entries (FILE *);
292 static void Cobol_paragraphs (FILE *);
293 static void Cplusplus_entries (FILE *);
294 static void Cstar_entries (FILE *);
295 static void Erlang_functions (FILE *);
296 static void Forth_words (FILE *);
297 static void Fortran_functions (FILE *);
298 static void HTML_labels (FILE *);
299 static void Lisp_functions (FILE *);
300 static void Lua_functions (FILE *);
301 static void Makefile_targets (FILE *);
302 static void Pascal_functions (FILE *);
303 static void Perl_functions (FILE *);
304 static void PHP_functions (FILE *);
305 static void PS_functions (FILE *);
306 static void Prolog_functions (FILE *);
307 static void Python_functions (FILE *);
308 static void Scheme_functions (FILE *);
309 static void TeX_commands (FILE *);
310 static void Texinfo_nodes (FILE *);
311 static void Yacc_entries (FILE *);
312 static void just_read_file (FILE *);
314 static language
*get_language_from_langname (const char *);
315 static void readline (linebuffer
*, FILE *);
316 static long readline_internal (linebuffer
*, FILE *);
317 static bool nocase_tail (const char *);
318 static void get_tag (char *, char **);
320 static void analyse_regex (char *);
321 static void free_regexps (void);
322 static void regex_tag_multiline (void);
323 static void error (const char *, ...) ATTRIBUTE_FORMAT_PRINTF (1, 2);
324 static _Noreturn
void suggest_asking_for_help (void);
325 _Noreturn
void fatal (const char *, const char *);
326 static _Noreturn
void pfatal (const char *);
327 static void add_node (node
*, node
**);
329 static void init (void);
330 static void process_file_name (char *, language
*);
331 static void process_file (FILE *, char *, language
*);
332 static void find_entries (FILE *);
333 static void free_tree (node
*);
334 static void free_fdesc (fdesc
*);
335 static void pfnote (char *, bool, char *, int, int, long);
336 static void invalidate_nodes (fdesc
*, node
**);
337 static void put_entries (node
*);
339 static char *concat (const char *, const char *, const char *);
340 static char *skip_spaces (char *);
341 static char *skip_non_spaces (char *);
342 static char *skip_name (char *);
343 static char *savenstr (const char *, int);
344 static char *savestr (const char *);
345 static char *etags_strchr (const char *, int);
346 static char *etags_strrchr (const char *, int);
347 static char *etags_getcwd (void);
348 static char *relative_filename (char *, char *);
349 static char *absolute_filename (char *, char *);
350 static char *absolute_dirname (char *, char *);
351 static bool filename_is_absolute (char *f
);
352 static void canonicalize_filename (char *);
353 static void linebuffer_init (linebuffer
*);
354 static void linebuffer_setlen (linebuffer
*, int);
355 static void *xmalloc (size_t);
356 static void *xrealloc (char *, size_t);
359 static char searchar
= '/'; /* use /.../ searches */
361 static char *tagfile
; /* output file */
362 static char *progname
; /* name this program was invoked with */
363 static char *cwd
; /* current working directory */
364 static char *tagfiledir
; /* directory of tagfile */
365 static FILE *tagf
; /* ioptr for tags file */
366 static ptrdiff_t whatlen_max
; /* maximum length of any 'what' member */
368 static fdesc
*fdhead
; /* head of file description list */
369 static fdesc
*curfdp
; /* current file description */
370 static int lineno
; /* line number of current line */
371 static long charno
; /* current character number */
372 static long linecharno
; /* charno of start of current line */
373 static char *dbp
; /* pointer to start of current tag */
375 static const int invalidcharno
= -1;
377 static node
*nodehead
; /* the head of the binary tree of tags */
378 static node
*last_node
; /* the last node created */
380 static linebuffer lb
; /* the current line */
381 static linebuffer filebuf
; /* a buffer containing the whole file */
382 static linebuffer token_name
; /* a buffer containing a tag name */
384 /* boolean "functions" (see init) */
385 static bool _wht
[CHARS
], _nin
[CHARS
], _itk
[CHARS
], _btk
[CHARS
], _etk
[CHARS
];
388 *white
= " \f\t\n\r\v",
390 *nonam
= " \f\t\n\r()=,;", /* look at make_tag before modifying! */
391 /* token ending chars */
392 *endtk
= " \t\n\r\"'#()[]{}=-+%*/&|^~!<>;,.:?",
393 /* token starting chars */
394 *begtk
= "ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz$~@",
395 /* valid in-token chars */
396 *midtk
= "ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz$0123456789";
398 static bool append_to_tagfile
; /* -a: append to tags */
399 /* The next five default to true in C and derived languages. */
400 static bool typedefs
; /* -t: create tags for C and Ada typedefs */
401 static bool typedefs_or_cplusplus
; /* -T: create tags for C typedefs, level */
402 /* 0 struct/enum/union decls, and C++ */
403 /* member functions. */
404 static bool constantypedefs
; /* -d: create tags for C #define, enum */
405 /* constants and variables. */
406 /* -D: opposite of -d. Default under ctags. */
407 static int globals
; /* create tags for global variables */
408 static int members
; /* create tags for C member variables */
409 static int declarations
; /* --declarations: tag them and extern in C&Co*/
410 static int no_line_directive
; /* ignore #line directives (undocumented) */
411 static int no_duplicates
; /* no duplicate tags for ctags (undocumented) */
412 static bool update
; /* -u: update tags */
413 static bool vgrind_style
; /* -v: create vgrind style index output */
414 static bool no_warnings
; /* -w: suppress warnings (undocumented) */
415 static bool cxref_style
; /* -x: create cxref style output */
416 static bool cplusplus
; /* .[hc] means C++, not C (undocumented) */
417 static bool ignoreindent
; /* -I: ignore indentation in C */
418 static int packages_only
; /* --packages-only: in Ada, only tag packages*/
420 /* STDIN is defined in LynxOS system headers */
425 #define STDIN 0x1001 /* returned by getopt_long on --parse-stdin */
426 static bool parsing_stdin
; /* --parse-stdin used */
428 static regexp
*p_head
; /* list of all regexps */
429 static bool need_filebuf
; /* some regexes are multi-line */
431 static struct option longopts
[] =
433 { "append", no_argument
, NULL
, 'a' },
434 { "packages-only", no_argument
, &packages_only
, 1 },
435 { "c++", no_argument
, NULL
, 'C' },
436 { "declarations", no_argument
, &declarations
, 1 },
437 { "no-line-directive", no_argument
, &no_line_directive
, 1 },
438 { "no-duplicates", no_argument
, &no_duplicates
, 1 },
439 { "help", no_argument
, NULL
, 'h' },
440 { "help", no_argument
, NULL
, 'H' },
441 { "ignore-indentation", no_argument
, NULL
, 'I' },
442 { "language", required_argument
, NULL
, 'l' },
443 { "members", no_argument
, &members
, 1 },
444 { "no-members", no_argument
, &members
, 0 },
445 { "output", required_argument
, NULL
, 'o' },
446 { "regex", required_argument
, NULL
, 'r' },
447 { "no-regex", no_argument
, NULL
, 'R' },
448 { "ignore-case-regex", required_argument
, NULL
, 'c' },
449 { "parse-stdin", required_argument
, NULL
, STDIN
},
450 { "version", no_argument
, NULL
, 'V' },
452 #if CTAGS /* Ctags options */
453 { "backward-search", no_argument
, NULL
, 'B' },
454 { "cxref", no_argument
, NULL
, 'x' },
455 { "defines", no_argument
, NULL
, 'd' },
456 { "globals", no_argument
, &globals
, 1 },
457 { "typedefs", no_argument
, NULL
, 't' },
458 { "typedefs-and-c++", no_argument
, NULL
, 'T' },
459 { "update", no_argument
, NULL
, 'u' },
460 { "vgrind", no_argument
, NULL
, 'v' },
461 { "no-warn", no_argument
, NULL
, 'w' },
463 #else /* Etags options */
464 { "no-defines", no_argument
, NULL
, 'D' },
465 { "no-globals", no_argument
, &globals
, 0 },
466 { "include", required_argument
, NULL
, 'i' },
471 static compressor compressors
[] =
473 { "z", "gzip -d -c"},
474 { "Z", "gzip -d -c"},
475 { "gz", "gzip -d -c"},
476 { "GZ", "gzip -d -c"},
477 { "bz2", "bzip2 -d -c" },
478 { "xz", "xz -d -c" },
487 static const char *Ada_suffixes
[] =
488 { "ads", "adb", "ada", NULL
};
489 static const char Ada_help
[] =
490 "In Ada code, functions, procedures, packages, tasks and types are\n\
491 tags. Use the `--packages-only' option to create tags for\n\
493 Ada tag names have suffixes indicating the type of entity:\n\
494 Entity type: Qualifier:\n\
495 ------------ ----------\n\
502 Thus, `M-x find-tag <RET> bidule/b <RET>' will go directly to the\n\
503 body of the package `bidule', while `M-x find-tag <RET> bidule <RET>'\n\
504 will just search for any tag `bidule'.";
507 static const char *Asm_suffixes
[] =
508 { "a", /* Unix assembler */
509 "asm", /* Microcontroller assembly */
510 "def", /* BSO/Tasking definition includes */
511 "inc", /* Microcontroller include files */
512 "ins", /* Microcontroller include files */
513 "s", "sa", /* Unix assembler */
514 "S", /* cpp-processed Unix assembler */
515 "src", /* BSO/Tasking C compiler output */
518 static const char Asm_help
[] =
519 "In assembler code, labels appearing at the beginning of a line,\n\
520 followed by a colon, are tags.";
523 /* Note that .c and .h can be considered C++, if the --c++ flag was
524 given, or if the `class' or `template' keywords are met inside the file.
525 That is why default_C_entries is called for these. */
526 static const char *default_C_suffixes
[] =
528 #if CTAGS /* C help for Ctags */
529 static const char default_C_help
[] =
530 "In C code, any C function is a tag. Use -t to tag typedefs.\n\
531 Use -T to tag definitions of `struct', `union' and `enum'.\n\
532 Use -d to tag `#define' macro definitions and `enum' constants.\n\
533 Use --globals to tag global variables.\n\
534 You can tag function declarations and external variables by\n\
535 using `--declarations', and struct members by using `--members'.";
536 #else /* C help for Etags */
537 static const char default_C_help
[] =
538 "In C code, any C function or typedef is a tag, and so are\n\
539 definitions of `struct', `union' and `enum'. `#define' macro\n\
540 definitions and `enum' constants are tags unless you specify\n\
541 `--no-defines'. Global variables are tags unless you specify\n\
542 `--no-globals' and so are struct members unless you specify\n\
543 `--no-members'. Use of `--no-globals', `--no-defines' and\n\
544 `--no-members' can make the tags table file much smaller.\n\
545 You can tag function declarations and external variables by\n\
546 using `--declarations'.";
547 #endif /* C help for Ctags and Etags */
549 static const char *Cplusplus_suffixes
[] =
550 { "C", "c++", "cc", "cpp", "cxx", "H", "h++", "hh", "hpp", "hxx",
551 "M", /* Objective C++ */
552 "pdb", /* PostScript with C syntax */
554 static const char Cplusplus_help
[] =
555 "In C++ code, all the tag constructs of C code are tagged. (Use\n\
556 --help --lang=c --lang=c++ for full help.)\n\
557 In addition to C tags, member functions are also recognized. Member\n\
558 variables are recognized unless you use the `--no-members' option.\n\
559 Tags for variables and functions in classes are named `CLASS::VARIABLE'\n\
560 and `CLASS::FUNCTION'. `operator' definitions have tag names like\n\
563 static const char *Cjava_suffixes
[] =
565 static char Cjava_help
[] =
566 "In Java code, all the tags constructs of C and C++ code are\n\
567 tagged. (Use --help --lang=c --lang=c++ --lang=java for full help.)";
570 static const char *Cobol_suffixes
[] =
571 { "COB", "cob", NULL
};
572 static char Cobol_help
[] =
573 "In Cobol code, tags are paragraph names; that is, any word\n\
574 starting in column 8 and followed by a period.";
576 static const char *Cstar_suffixes
[] =
577 { "cs", "hs", NULL
};
579 static const char *Erlang_suffixes
[] =
580 { "erl", "hrl", NULL
};
581 static const char Erlang_help
[] =
582 "In Erlang code, the tags are the functions, records and macros\n\
583 defined in the file.";
585 const char *Forth_suffixes
[] =
586 { "fth", "tok", NULL
};
587 static const char Forth_help
[] =
588 "In Forth code, tags are words defined by `:',\n\
589 constant, code, create, defer, value, variable, buffer:, field.";
591 static const char *Fortran_suffixes
[] =
592 { "F", "f", "f90", "for", NULL
};
593 static const char Fortran_help
[] =
594 "In Fortran code, functions, subroutines and block data are tags.";
596 static const char *HTML_suffixes
[] =
597 { "htm", "html", "shtml", NULL
};
598 static const char HTML_help
[] =
599 "In HTML input files, the tags are the `title' and the `h1', `h2',\n\
600 `h3' headers. Also, tags are `name=' in anchors and all\n\
601 occurrences of `id='.";
603 static const char *Lisp_suffixes
[] =
604 { "cl", "clisp", "el", "l", "lisp", "LSP", "lsp", "ml", NULL
};
605 static const char Lisp_help
[] =
606 "In Lisp code, any function defined with `defun', any variable\n\
607 defined with `defvar' or `defconst', and in general the first\n\
608 argument of any expression that starts with `(def' in column zero\n\
610 The `--declarations' option tags \"(defvar foo)\" constructs too.";
612 static const char *Lua_suffixes
[] =
613 { "lua", "LUA", NULL
};
614 static const char Lua_help
[] =
615 "In Lua scripts, all functions are tags.";
617 static const char *Makefile_filenames
[] =
618 { "Makefile", "makefile", "GNUMakefile", "Makefile.in", "Makefile.am", NULL
};
619 static const char Makefile_help
[] =
620 "In makefiles, targets are tags; additionally, variables are tags\n\
621 unless you specify `--no-globals'.";
623 static const char *Objc_suffixes
[] =
624 { "lm", /* Objective lex file */
625 "m", /* Objective C file */
627 static const char Objc_help
[] =
628 "In Objective C code, tags include Objective C definitions for classes,\n\
629 class categories, methods and protocols. Tags for variables and\n\
630 functions in classes are named `CLASS::VARIABLE' and `CLASS::FUNCTION'.\n\
631 (Use --help --lang=c --lang=objc --lang=java for full help.)";
633 static const char *Pascal_suffixes
[] =
634 { "p", "pas", NULL
};
635 static const char Pascal_help
[] =
636 "In Pascal code, the tags are the functions and procedures defined\n\
638 /* " // this is for working around an Emacs highlighting bug... */
640 static const char *Perl_suffixes
[] =
641 { "pl", "pm", NULL
};
642 static const char *Perl_interpreters
[] =
643 { "perl", "@PERL@", NULL
};
644 static const char Perl_help
[] =
645 "In Perl code, the tags are the packages, subroutines and variables\n\
646 defined by the `package', `sub', `my' and `local' keywords. Use\n\
647 `--globals' if you want to tag global variables. Tags for\n\
648 subroutines are named `PACKAGE::SUB'. The name for subroutines\n\
649 defined in the default package is `main::SUB'.";
651 static const char *PHP_suffixes
[] =
652 { "php", "php3", "php4", NULL
};
653 static const char PHP_help
[] =
654 "In PHP code, tags are functions, classes and defines. Unless you use\n\
655 the `--no-members' option, vars are tags too.";
657 static const char *plain_C_suffixes
[] =
658 { "pc", /* Pro*C file */
661 static const char *PS_suffixes
[] =
662 { "ps", "psw", NULL
}; /* .psw is for PSWrap */
663 static const char PS_help
[] =
664 "In PostScript code, the tags are the functions.";
666 static const char *Prolog_suffixes
[] =
668 static const char Prolog_help
[] =
669 "In Prolog code, tags are predicates and rules at the beginning of\n\
672 static const char *Python_suffixes
[] =
674 static const char Python_help
[] =
675 "In Python code, `def' or `class' at the beginning of a line\n\
678 /* Can't do the `SCM' or `scm' prefix with a version number. */
679 static const char *Scheme_suffixes
[] =
680 { "oak", "sch", "scheme", "SCM", "scm", "SM", "sm", "ss", "t", NULL
};
681 static const char Scheme_help
[] =
682 "In Scheme code, tags include anything defined with `def' or with a\n\
683 construct whose name starts with `def'. They also include\n\
684 variables set with `set!' at top level in the file.";
686 static const char *TeX_suffixes
[] =
687 { "bib", "clo", "cls", "ltx", "sty", "TeX", "tex", NULL
};
688 static const char TeX_help
[] =
689 "In LaTeX text, the argument of any of the commands `\\chapter',\n\
690 `\\section', `\\subsection', `\\subsubsection', `\\eqno', `\\label',\n\
691 `\\ref', `\\cite', `\\bibitem', `\\part', `\\appendix', `\\entry',\n\
692 `\\index', `\\def', `\\newcommand', `\\renewcommand',\n\
693 `\\newenvironment' or `\\renewenvironment' is a tag.\n\
695 Other commands can be specified by setting the environment variable\n\
696 `TEXTAGS' to a colon-separated list like, for example,\n\
697 TEXTAGS=\"mycommand:myothercommand\".";
700 static const char *Texinfo_suffixes
[] =
701 { "texi", "texinfo", "txi", NULL
};
702 static const char Texinfo_help
[] =
703 "for texinfo files, lines starting with @node are tagged.";
705 static const char *Yacc_suffixes
[] =
706 { "y", "y++", "ym", "yxx", "yy", NULL
}; /* .ym is Objective yacc file */
707 static const char Yacc_help
[] =
708 "In Bison or Yacc input files, each rule defines as a tag the\n\
709 nonterminal it constructs. The portions of the file that contain\n\
710 C code are parsed as C code (use --help --lang=c --lang=yacc\n\
713 static const char auto_help
[] =
714 "`auto' is not a real language, it indicates to use\n\
715 a default language for files base on file name suffix and file contents.";
717 static const char none_help
[] =
718 "`none' is not a real language, it indicates to only do\n\
719 regexp processing on files.";
721 static const char no_lang_help
[] =
722 "No detailed help available for this language.";
726 * Table of languages.
728 * It is ok for a given function to be listed under more than one
729 * name. I just didn't.
732 static language lang_names
[] =
734 { "ada", Ada_help
, Ada_funcs
, Ada_suffixes
},
735 { "asm", Asm_help
, Asm_labels
, Asm_suffixes
},
736 { "c", default_C_help
, default_C_entries
, default_C_suffixes
},
737 { "c++", Cplusplus_help
, Cplusplus_entries
, Cplusplus_suffixes
},
738 { "c*", no_lang_help
, Cstar_entries
, Cstar_suffixes
},
739 { "cobol", Cobol_help
, Cobol_paragraphs
, Cobol_suffixes
},
740 { "erlang", Erlang_help
, Erlang_functions
, Erlang_suffixes
},
741 { "forth", Forth_help
, Forth_words
, Forth_suffixes
},
742 { "fortran", Fortran_help
, Fortran_functions
, Fortran_suffixes
},
743 { "html", HTML_help
, HTML_labels
, HTML_suffixes
},
744 { "java", Cjava_help
, Cjava_entries
, Cjava_suffixes
},
745 { "lisp", Lisp_help
, Lisp_functions
, Lisp_suffixes
},
746 { "lua", Lua_help
, Lua_functions
, Lua_suffixes
},
747 { "makefile", Makefile_help
,Makefile_targets
,NULL
,Makefile_filenames
},
748 { "objc", Objc_help
, plain_C_entries
, Objc_suffixes
},
749 { "pascal", Pascal_help
, Pascal_functions
, Pascal_suffixes
},
750 { "perl",Perl_help
,Perl_functions
,Perl_suffixes
,NULL
,Perl_interpreters
},
751 { "php", PHP_help
, PHP_functions
, PHP_suffixes
},
752 { "postscript",PS_help
, PS_functions
, PS_suffixes
},
753 { "proc", no_lang_help
, plain_C_entries
, plain_C_suffixes
},
754 { "prolog", Prolog_help
, Prolog_functions
, Prolog_suffixes
},
755 { "python", Python_help
, Python_functions
, Python_suffixes
},
756 { "scheme", Scheme_help
, Scheme_functions
, Scheme_suffixes
},
757 { "tex", TeX_help
, TeX_commands
, TeX_suffixes
},
758 { "texinfo", Texinfo_help
, Texinfo_nodes
, Texinfo_suffixes
},
759 { "yacc", Yacc_help
,Yacc_entries
,Yacc_suffixes
,NULL
,NULL
,true},
760 { "auto", auto_help
}, /* default guessing scheme */
761 { "none", none_help
, just_read_file
}, /* regexp matching only */
762 { NULL
} /* end of list */
767 print_language_names (void)
770 const char **name
, **ext
;
772 puts ("\nThese are the currently supported languages, along with the\n\
773 default file names and dot suffixes:");
774 for (lang
= lang_names
; lang
->name
!= NULL
; lang
++)
776 printf (" %-*s", 10, lang
->name
);
777 if (lang
->filenames
!= NULL
)
778 for (name
= lang
->filenames
; *name
!= NULL
; name
++)
779 printf (" %s", *name
);
780 if (lang
->suffixes
!= NULL
)
781 for (ext
= lang
->suffixes
; *ext
!= NULL
; ext
++)
782 printf (" .%s", *ext
);
785 puts ("where `auto' means use default language for files based on file\n\
786 name suffix, and `none' means only do regexp processing on files.\n\
787 If no language is specified and no matching suffix is found,\n\
788 the first line of the file is read for a sharp-bang (#!) sequence\n\
789 followed by the name of an interpreter. If no such sequence is found,\n\
790 Fortran is tried first; if no tags are found, C is tried next.\n\
791 When parsing any C file, a \"class\" or \"template\" keyword\n\
793 puts ("Compressed files are supported using gzip, bzip2, and xz.\n\
795 For detailed help on a given language use, for example,\n\
796 etags --help --lang=ada.");
800 # define EMACS_NAME "standalone"
803 # define VERSION "17.38.1.4"
805 static _Noreturn
void
808 char emacs_copyright
[] = COPYRIGHT
;
810 printf ("%s (%s %s)\n", (CTAGS
) ? "ctags" : "etags", EMACS_NAME
, VERSION
);
811 puts (emacs_copyright
);
812 puts ("This program is distributed under the terms in ETAGS.README");
817 #ifndef PRINT_UNDOCUMENTED_OPTIONS_HELP
818 # define PRINT_UNDOCUMENTED_OPTIONS_HELP false
821 static _Noreturn
void
822 print_help (argument
*argbuffer
)
824 bool help_for_lang
= false;
826 for (; argbuffer
->arg_type
!= at_end
; argbuffer
++)
827 if (argbuffer
->arg_type
== at_language
)
831 puts (argbuffer
->lang
->help
);
832 help_for_lang
= true;
838 printf ("Usage: %s [options] [[regex-option ...] file-name] ...\n\
840 These are the options accepted by %s.\n", progname
, progname
);
841 puts ("You may use unambiguous abbreviations for the long option names.");
842 puts (" A - as file name means read names from stdin (one per line).\n\
843 Absolute names are stored in the output file as they are.\n\
844 Relative ones are stored relative to the output file's directory.\n");
846 puts ("-a, --append\n\
847 Append tag entries to existing tags file.");
849 puts ("--packages-only\n\
850 For Ada files, only generate tags for packages.");
853 puts ("-B, --backward-search\n\
854 Write the search commands for the tag entries using '?', the\n\
855 backward-search command instead of '/', the forward-search command.");
857 /* This option is mostly obsolete, because etags can now automatically
858 detect C++. Retained for backward compatibility and for debugging and
859 experimentation. In principle, we could want to tag as C++ even
860 before any "class" or "template" keyword.
862 Treat files whose name suffix defaults to C language as C++ files.");
865 puts ("--declarations\n\
866 In C and derived languages, create tags for function declarations,");
868 puts ("\tand create tags for extern variables if --globals is used.");
871 ("\tand create tags for extern variables unless --no-globals is used.");
874 puts ("-d, --defines\n\
875 Create tag entries for C #define constants and enum constants, too.");
877 puts ("-D, --no-defines\n\
878 Don't create tag entries for C #define constants and enum constants.\n\
879 This makes the tags file smaller.");
882 puts ("-i FILE, --include=FILE\n\
883 Include a note in tag file indicating that, when searching for\n\
884 a tag, one should also consult the tags file FILE after\n\
885 checking the current file.");
887 puts ("-l LANG, --language=LANG\n\
888 Force the following files to be considered as written in the\n\
889 named language up to the next --language=LANG option.");
893 Create tag entries for global variables in some languages.");
895 puts ("--no-globals\n\
896 Do not create tag entries for global variables in some\n\
897 languages. This makes the tags file smaller.");
899 if (PRINT_UNDOCUMENTED_OPTIONS_HELP
)
900 puts ("--no-line-directive\n\
901 Ignore #line preprocessor directives in C and derived languages.");
905 Create tag entries for members of structures in some languages.");
907 puts ("--no-members\n\
908 Do not create tag entries for members of structures\n\
909 in some languages.");
911 puts ("-r REGEXP, --regex=REGEXP or --regex=@regexfile\n\
912 Make a tag for each line matching a regular expression pattern\n\
913 in the following files. {LANGUAGE}REGEXP uses REGEXP for LANGUAGE\n\
914 files only. REGEXFILE is a file containing one REGEXP per line.\n\
915 REGEXP takes the form /TAGREGEXP/TAGNAME/MODS, where TAGNAME/ is\n\
916 optional. The TAGREGEXP pattern is anchored (as if preceded by ^).");
917 puts (" If TAGNAME/ is present, the tags created are named.\n\
918 For example Tcl named tags can be created with:\n\
919 --regex=\"/proc[ \\t]+\\([^ \\t]+\\)/\\1/.\".\n\
920 MODS are optional one-letter modifiers: `i' means to ignore case,\n\
921 `m' means to allow multi-line matches, `s' implies `m' and\n\
922 causes dot to match any character, including newline.");
924 puts ("-R, --no-regex\n\
925 Don't create tags from regexps for the following files.");
927 puts ("-I, --ignore-indentation\n\
928 In C and C++ do not assume that a closing brace in the first\n\
929 column is the final brace of a function or structure definition.");
931 puts ("-o FILE, --output=FILE\n\
932 Write the tags to FILE.");
934 puts ("--parse-stdin=NAME\n\
935 Read from standard input and record tags as belonging to file NAME.");
939 puts ("-t, --typedefs\n\
940 Generate tag entries for C and Ada typedefs.");
941 puts ("-T, --typedefs-and-c++\n\
942 Generate tag entries for C typedefs, C struct/enum/union tags,\n\
943 and C++ member functions.");
947 puts ("-u, --update\n\
948 Update the tag entries for the given files, leaving tag\n\
949 entries for other files in place. Currently, this is\n\
950 implemented by deleting the existing entries for the given\n\
951 files and then rewriting the new entries at the end of the\n\
952 tags file. It is often faster to simply rebuild the entire\n\
953 tag file than to use this.");
957 puts ("-v, --vgrind\n\
958 Print on the standard output an index of items intended for\n\
959 human consumption, similar to the output of vgrind. The index\n\
960 is sorted, and gives the page number of each item.");
962 if (PRINT_UNDOCUMENTED_OPTIONS_HELP
)
963 puts ("-w, --no-duplicates\n\
964 Do not create duplicate tag entries, for compatibility with\n\
965 traditional ctags.");
967 if (PRINT_UNDOCUMENTED_OPTIONS_HELP
)
968 puts ("-w, --no-warn\n\
969 Suppress warning messages about duplicate tag entries.");
971 puts ("-x, --cxref\n\
972 Like --vgrind, but in the style of cxref, rather than vgrind.\n\
973 The output uses line numbers instead of page numbers, but\n\
974 beyond that the differences are cosmetic; try both to see\n\
978 puts ("-V, --version\n\
979 Print the version of the program.\n\
981 Print this help message.\n\
982 Followed by one or more `--language' options prints detailed\n\
983 help about tag generation for the specified languages.");
985 print_language_names ();
988 puts ("Report bugs to bug-gnu-emacs@gnu.org");
995 main (int argc
, char **argv
)
998 unsigned int nincluded_files
;
999 char **included_files
;
1000 argument
*argbuffer
;
1001 int current_arg
, file_count
;
1002 linebuffer filename_lb
;
1003 bool help_asked
= false;
1010 _fmode
= O_BINARY
; /* all of files are treated as binary files */
1014 nincluded_files
= 0;
1015 included_files
= xnew (argc
, char *);
1019 /* Allocate enough no matter what happens. Overkill, but each one
1021 argbuffer
= xnew (argc
, argument
);
1024 * Always find typedefs and structure tags.
1025 * Also default to find macro constants, enum constants, struct
1026 * members and global variables. Do it for both etags and ctags.
1028 typedefs
= typedefs_or_cplusplus
= constantypedefs
= true;
1029 globals
= members
= true;
1031 /* When the optstring begins with a '-' getopt_long does not rearrange the
1032 non-options arguments to be at the end, but leaves them alone. */
1033 optstring
= concat ("-ac:Cf:Il:o:r:RSVhH",
1034 (CTAGS
) ? "BxdtTuvw" : "Di:",
1037 while ((opt
= getopt_long (argc
, argv
, optstring
, longopts
, NULL
)) != EOF
)
1041 /* If getopt returns 0, then it has already processed a
1042 long-named option. We should do nothing. */
1046 /* This means that a file name has been seen. Record it. */
1047 argbuffer
[current_arg
].arg_type
= at_filename
;
1048 argbuffer
[current_arg
].what
= optarg
;
1049 len
= strlen (optarg
);
1050 if (whatlen_max
< len
)
1057 /* Parse standard input. Idea by Vivek <vivek@etla.org>. */
1058 argbuffer
[current_arg
].arg_type
= at_stdin
;
1059 argbuffer
[current_arg
].what
= optarg
;
1060 len
= strlen (optarg
);
1061 if (whatlen_max
< len
)
1066 fatal ("cannot parse standard input more than once", (char *)NULL
);
1067 parsing_stdin
= true;
1070 /* Common options. */
1071 case 'a': append_to_tagfile
= true; break;
1072 case 'C': cplusplus
= true; break;
1073 case 'f': /* for compatibility with old makefiles */
1077 error ("-o option may only be given once.");
1078 suggest_asking_for_help ();
1084 case 'S': /* for backward compatibility */
1085 ignoreindent
= true;
1089 language
*lang
= get_language_from_langname (optarg
);
1092 argbuffer
[current_arg
].lang
= lang
;
1093 argbuffer
[current_arg
].arg_type
= at_language
;
1099 /* Backward compatibility: support obsolete --ignore-case-regexp. */
1100 optarg
= concat (optarg
, "i", ""); /* memory leak here */
1103 argbuffer
[current_arg
].arg_type
= at_regexp
;
1104 argbuffer
[current_arg
].what
= optarg
;
1105 len
= strlen (optarg
);
1106 if (whatlen_max
< len
)
1111 argbuffer
[current_arg
].arg_type
= at_regexp
;
1112 argbuffer
[current_arg
].what
= NULL
;
1124 case 'D': constantypedefs
= false; break;
1125 case 'i': included_files
[nincluded_files
++] = optarg
; break;
1127 /* Ctags options. */
1128 case 'B': searchar
= '?'; break;
1129 case 'd': constantypedefs
= true; break;
1130 case 't': typedefs
= true; break;
1131 case 'T': typedefs
= typedefs_or_cplusplus
= true; break;
1132 case 'u': update
= true; break;
1133 case 'v': vgrind_style
= true; /*FALLTHRU*/
1134 case 'x': cxref_style
= true; break;
1135 case 'w': no_warnings
= true; break;
1137 suggest_asking_for_help ();
1141 /* No more options. Store the rest of arguments. */
1142 for (; optind
< argc
; optind
++)
1144 argbuffer
[current_arg
].arg_type
= at_filename
;
1145 argbuffer
[current_arg
].what
= argv
[optind
];
1146 len
= strlen (argv
[optind
]);
1147 if (whatlen_max
< len
)
1153 argbuffer
[current_arg
].arg_type
= at_end
;
1156 print_help (argbuffer
);
1159 if (nincluded_files
== 0 && file_count
== 0)
1161 error ("no input files specified.");
1162 suggest_asking_for_help ();
1166 if (tagfile
== NULL
)
1167 tagfile
= savestr (CTAGS
? "tags" : "TAGS");
1168 cwd
= etags_getcwd (); /* the current working directory */
1169 if (cwd
[strlen (cwd
) - 1] != '/')
1172 cwd
= concat (oldcwd
, "/", "");
1176 /* Compute base directory for relative file names. */
1177 if (streq (tagfile
, "-")
1178 || strneq (tagfile
, "/dev/", 5))
1179 tagfiledir
= cwd
; /* relative file names are relative to cwd */
1182 canonicalize_filename (tagfile
);
1183 tagfiledir
= absolute_dirname (tagfile
, cwd
);
1186 init (); /* set up boolean "functions" */
1188 linebuffer_init (&lb
);
1189 linebuffer_init (&filename_lb
);
1190 linebuffer_init (&filebuf
);
1191 linebuffer_init (&token_name
);
1195 if (streq (tagfile
, "-"))
1199 /* Switch redirected `stdout' to binary mode (setting `_fmode'
1200 doesn't take effect until after `stdout' is already open). */
1201 if (!isatty (fileno (stdout
)))
1202 setmode (fileno (stdout
), O_BINARY
);
1206 tagf
= fopen (tagfile
, append_to_tagfile
? "a" : "w");
1212 * Loop through files finding functions.
1214 for (i
= 0; i
< current_arg
; i
++)
1216 static language
*lang
; /* non-NULL if language is forced */
1219 switch (argbuffer
[i
].arg_type
)
1222 lang
= argbuffer
[i
].lang
;
1225 analyse_regex (argbuffer
[i
].what
);
1228 this_file
= argbuffer
[i
].what
;
1229 /* Input file named "-" means read file names from stdin
1230 (one per line) and use them. */
1231 if (streq (this_file
, "-"))
1234 fatal ("cannot parse standard input AND read file names from it",
1236 while (readline_internal (&filename_lb
, stdin
) > 0)
1237 process_file_name (filename_lb
.buffer
, lang
);
1240 process_file_name (this_file
, lang
);
1243 this_file
= argbuffer
[i
].what
;
1244 process_file (stdin
, this_file
, lang
);
1251 free (filebuf
.buffer
);
1252 free (token_name
.buffer
);
1254 if (!CTAGS
|| cxref_style
)
1256 /* Write the remaining tags to tagf (ETAGS) or stdout (CXREF). */
1257 put_entries (nodehead
);
1258 free_tree (nodehead
);
1264 /* Output file entries that have no tags. */
1265 for (fdp
= fdhead
; fdp
!= NULL
; fdp
= fdp
->next
)
1267 fprintf (tagf
, "\f\n%s,0\n", fdp
->taggedfname
);
1269 while (nincluded_files
-- > 0)
1270 fprintf (tagf
, "\f\n%s,include\n", *included_files
++);
1272 if (fclose (tagf
) == EOF
)
1276 exit (EXIT_SUCCESS
);
1279 /* From here on, we are in (CTAGS && !cxref_style) */
1283 xmalloc (strlen (tagfile
) + whatlen_max
+
1284 sizeof "mv..OTAGS;fgrep -v '\t\t' OTAGS >;rm OTAGS");
1285 for (i
= 0; i
< current_arg
; ++i
)
1287 switch (argbuffer
[i
].arg_type
)
1293 continue; /* the for loop */
1295 strcpy (cmd
, "mv ");
1296 strcat (cmd
, tagfile
);
1297 strcat (cmd
, " OTAGS;fgrep -v '\t");
1298 strcat (cmd
, argbuffer
[i
].what
);
1299 strcat (cmd
, "\t' OTAGS >");
1300 strcat (cmd
, tagfile
);
1301 strcat (cmd
, ";rm OTAGS");
1302 if (system (cmd
) != EXIT_SUCCESS
)
1303 fatal ("failed to execute shell command", (char *)NULL
);
1306 append_to_tagfile
= true;
1309 tagf
= fopen (tagfile
, append_to_tagfile
? "a" : "w");
1312 put_entries (nodehead
); /* write all the tags (CTAGS) */
1313 free_tree (nodehead
);
1315 if (fclose (tagf
) == EOF
)
1319 if (append_to_tagfile
|| update
)
1321 char *cmd
= xmalloc (2 * strlen (tagfile
) + sizeof "sort -u -o..");
1322 /* Maybe these should be used:
1323 setenv ("LC_COLLATE", "C", 1);
1324 setenv ("LC_ALL", "C", 1); */
1325 strcpy (cmd
, "sort -u -o ");
1326 strcat (cmd
, tagfile
);
1328 strcat (cmd
, tagfile
);
1329 exit (system (cmd
));
1331 return EXIT_SUCCESS
;
1336 * Return a compressor given the file name. If EXTPTR is non-zero,
1337 * return a pointer into FILE where the compressor-specific
1338 * extension begins. If no compressor is found, NULL is returned
1339 * and EXTPTR is not significant.
1340 * Idea by Vladimir Alexiev <vladimir@cs.ualberta.ca> (1998)
1343 get_compressor_from_suffix (char *file
, char **extptr
)
1346 char *slash
, *suffix
;
1348 /* File has been processed by canonicalize_filename,
1349 so we don't need to consider backslashes on DOS_NT. */
1350 slash
= etags_strrchr (file
, '/');
1351 suffix
= etags_strrchr (file
, '.');
1352 if (suffix
== NULL
|| suffix
< slash
)
1357 /* Let those poor souls who live with DOS 8+3 file name limits get
1358 some solace by treating foo.cgz as if it were foo.c.gz, etc.
1359 Only the first do loop is run if not MSDOS */
1362 for (compr
= compressors
; compr
->suffix
!= NULL
; compr
++)
1363 if (streq (compr
->suffix
, suffix
))
1366 break; /* do it only once: not really a loop */
1369 } while (*suffix
!= '\0');
1376 * Return a language given the name.
1379 get_language_from_langname (const char *name
)
1384 error ("empty language name");
1387 for (lang
= lang_names
; lang
->name
!= NULL
; lang
++)
1388 if (streq (name
, lang
->name
))
1390 error ("unknown language \"%s\"", name
);
1398 * Return a language given the interpreter name.
1401 get_language_from_interpreter (char *interpreter
)
1406 if (interpreter
== NULL
)
1408 for (lang
= lang_names
; lang
->name
!= NULL
; lang
++)
1409 if (lang
->interpreters
!= NULL
)
1410 for (iname
= lang
->interpreters
; *iname
!= NULL
; iname
++)
1411 if (streq (*iname
, interpreter
))
1420 * Return a language given the file name.
1423 get_language_from_filename (char *file
, int case_sensitive
)
1426 const char **name
, **ext
, *suffix
;
1428 /* Try whole file name first. */
1429 for (lang
= lang_names
; lang
->name
!= NULL
; lang
++)
1430 if (lang
->filenames
!= NULL
)
1431 for (name
= lang
->filenames
; *name
!= NULL
; name
++)
1432 if ((case_sensitive
)
1433 ? streq (*name
, file
)
1434 : strcaseeq (*name
, file
))
1437 /* If not found, try suffix after last dot. */
1438 suffix
= etags_strrchr (file
, '.');
1442 for (lang
= lang_names
; lang
->name
!= NULL
; lang
++)
1443 if (lang
->suffixes
!= NULL
)
1444 for (ext
= lang
->suffixes
; *ext
!= NULL
; ext
++)
1445 if ((case_sensitive
)
1446 ? streq (*ext
, suffix
)
1447 : strcaseeq (*ext
, suffix
))
1454 * This routine is called on each file argument.
1457 process_file_name (char *file
, language
*lang
)
1459 struct stat stat_buf
;
1463 char *compressed_name
, *uncompressed_name
;
1464 char *ext
, *real_name
;
1467 canonicalize_filename (file
);
1468 if (streq (file
, tagfile
) && !streq (tagfile
, "-"))
1470 error ("skipping inclusion of %s in self.", file
);
1473 if ((compr
= get_compressor_from_suffix (file
, &ext
)) == NULL
)
1475 compressed_name
= NULL
;
1476 real_name
= uncompressed_name
= savestr (file
);
1480 real_name
= compressed_name
= savestr (file
);
1481 uncompressed_name
= savenstr (file
, ext
- file
);
1484 /* If the canonicalized uncompressed name
1485 has already been dealt with, skip it silently. */
1486 for (fdp
= fdhead
; fdp
!= NULL
; fdp
= fdp
->next
)
1488 assert (fdp
->infname
!= NULL
);
1489 if (streq (uncompressed_name
, fdp
->infname
))
1493 if (stat (real_name
, &stat_buf
) != 0)
1495 /* Reset real_name and try with a different name. */
1497 if (compressed_name
!= NULL
) /* try with the given suffix */
1499 if (stat (uncompressed_name
, &stat_buf
) == 0)
1500 real_name
= uncompressed_name
;
1502 else /* try all possible suffixes */
1504 for (compr
= compressors
; compr
->suffix
!= NULL
; compr
++)
1506 compressed_name
= concat (file
, ".", compr
->suffix
);
1507 if (stat (compressed_name
, &stat_buf
) != 0)
1511 char *suf
= compressed_name
+ strlen (file
);
1512 size_t suflen
= strlen (compr
->suffix
) + 1;
1513 for ( ; suf
[1]; suf
++, suflen
--)
1515 memmove (suf
, suf
+ 1, suflen
);
1516 if (stat (compressed_name
, &stat_buf
) == 0)
1518 real_name
= compressed_name
;
1522 if (real_name
!= NULL
)
1525 free (compressed_name
);
1526 compressed_name
= NULL
;
1530 real_name
= compressed_name
;
1535 if (real_name
== NULL
)
1540 } /* try with a different name */
1542 if (!S_ISREG (stat_buf
.st_mode
))
1544 error ("skipping %s: it is not a regular file.", real_name
);
1547 if (real_name
== compressed_name
)
1549 char *cmd
= concat (compr
->command
, " ", real_name
);
1550 inf
= (FILE *) popen (cmd
, "r");
1554 inf
= fopen (real_name
, "r");
1561 process_file (inf
, uncompressed_name
, lang
);
1563 if (real_name
== compressed_name
)
1564 retval
= pclose (inf
);
1566 retval
= fclose (inf
);
1571 free (compressed_name
);
1572 free (uncompressed_name
);
1579 process_file (FILE *fh
, char *fn
, language
*lang
)
1581 static const fdesc emptyfdesc
;
1584 /* Create a new input file description entry. */
1585 fdp
= xnew (1, fdesc
);
1588 fdp
->infname
= savestr (fn
);
1590 fdp
->infabsname
= absolute_filename (fn
, cwd
);
1591 fdp
->infabsdir
= absolute_dirname (fn
, cwd
);
1592 if (filename_is_absolute (fn
))
1594 /* An absolute file name. Canonicalize it. */
1595 fdp
->taggedfname
= absolute_filename (fn
, NULL
);
1599 /* A file name relative to cwd. Make it relative
1600 to the directory of the tags file. */
1601 fdp
->taggedfname
= relative_filename (fn
, tagfiledir
);
1603 fdp
->usecharno
= true; /* use char position when making tags */
1605 fdp
->written
= false; /* not written on tags file yet */
1608 curfdp
= fdhead
; /* the current file description */
1612 /* If not Ctags, and if this is not metasource and if it contained no #line
1613 directives, we can write the tags and free all nodes pointing to
1616 && curfdp
->usecharno
/* no #line directives in this file */
1617 && !curfdp
->lang
->metasource
)
1621 /* Look for the head of the sublist relative to this file. See add_node
1622 for the structure of the node tree. */
1624 for (np
= nodehead
; np
!= NULL
; prev
= np
, np
= np
->left
)
1625 if (np
->fdp
== curfdp
)
1628 /* If we generated tags for this file, write and delete them. */
1631 /* This is the head of the last sublist, if any. The following
1632 instructions depend on this being true. */
1633 assert (np
->left
== NULL
);
1635 assert (fdhead
== curfdp
);
1636 assert (last_node
->fdp
== curfdp
);
1637 put_entries (np
); /* write tags for file curfdp->taggedfname */
1638 free_tree (np
); /* remove the written nodes */
1640 nodehead
= NULL
; /* no nodes left */
1642 prev
->left
= NULL
; /* delete the pointer to the sublist */
1648 * This routine sets up the boolean pseudo-functions which work
1649 * by setting boolean flags dependent upon the corresponding character.
1650 * Every char which is NOT in that string is not a white char. Therefore,
1651 * all of the array "_wht" is set to false, and then the elements
1652 * subscripted by the chars in "white" are set to true. Thus "_wht"
1653 * of a char is true if it is the string "white", else false.
1661 for (i
= 0; i
< CHARS
; i
++)
1662 iswhite (i
) = notinname (i
) = begtoken (i
) = intoken (i
) = endtoken (i
)
1664 for (sp
= white
; *sp
!= '\0'; sp
++) iswhite (*sp
) = true;
1665 for (sp
= nonam
; *sp
!= '\0'; sp
++) notinname (*sp
) = true;
1666 notinname ('\0') = notinname ('\n');
1667 for (sp
= begtk
; *sp
!= '\0'; sp
++) begtoken (*sp
) = true;
1668 begtoken ('\0') = begtoken ('\n');
1669 for (sp
= midtk
; *sp
!= '\0'; sp
++) intoken (*sp
) = true;
1670 intoken ('\0') = intoken ('\n');
1671 for (sp
= endtk
; *sp
!= '\0'; sp
++) endtoken (*sp
) = true;
1672 endtoken ('\0') = endtoken ('\n');
1676 * This routine opens the specified file and calls the function
1677 * which finds the function and type definitions.
1680 find_entries (FILE *inf
)
1683 language
*lang
= curfdp
->lang
;
1684 Lang_function
*parser
= NULL
;
1686 /* If user specified a language, use it. */
1687 if (lang
!= NULL
&& lang
->function
!= NULL
)
1689 parser
= lang
->function
;
1692 /* Else try to guess the language given the file name. */
1695 lang
= get_language_from_filename (curfdp
->infname
, true);
1696 if (lang
!= NULL
&& lang
->function
!= NULL
)
1698 curfdp
->lang
= lang
;
1699 parser
= lang
->function
;
1703 /* Else look for sharp-bang as the first two characters. */
1705 && readline_internal (&lb
, inf
) > 0
1707 && lb
.buffer
[0] == '#'
1708 && lb
.buffer
[1] == '!')
1712 /* Set lp to point at the first char after the last slash in the
1713 line or, if no slashes, at the first nonblank. Then set cp to
1714 the first successive blank and terminate the string. */
1715 lp
= etags_strrchr (lb
.buffer
+2, '/');
1719 lp
= skip_spaces (lb
.buffer
+ 2);
1720 cp
= skip_non_spaces (lp
);
1723 if (strlen (lp
) > 0)
1725 lang
= get_language_from_interpreter (lp
);
1726 if (lang
!= NULL
&& lang
->function
!= NULL
)
1728 curfdp
->lang
= lang
;
1729 parser
= lang
->function
;
1734 /* We rewind here, even if inf may be a pipe. We fail if the
1735 length of the first line is longer than the pipe block size,
1736 which is unlikely. */
1739 /* Else try to guess the language given the case insensitive file name. */
1742 lang
= get_language_from_filename (curfdp
->infname
, false);
1743 if (lang
!= NULL
&& lang
->function
!= NULL
)
1745 curfdp
->lang
= lang
;
1746 parser
= lang
->function
;
1750 /* Else try Fortran or C. */
1753 node
*old_last_node
= last_node
;
1755 curfdp
->lang
= get_language_from_langname ("fortran");
1758 if (old_last_node
== last_node
)
1759 /* No Fortran entries found. Try C. */
1761 /* We do not tag if rewind fails.
1762 Only the file name will be recorded in the tags file. */
1764 curfdp
->lang
= get_language_from_langname (cplusplus
? "c++" : "c");
1770 if (!no_line_directive
1771 && curfdp
->lang
!= NULL
&& curfdp
->lang
->metasource
)
1772 /* It may be that this is a bingo.y file, and we already parsed a bingo.c
1773 file, or anyway we parsed a file that is automatically generated from
1774 this one. If this is the case, the bingo.c file contained #line
1775 directives that generated tags pointing to this file. Let's delete
1776 them all before parsing this file, which is the real source. */
1778 fdesc
**fdpp
= &fdhead
;
1779 while (*fdpp
!= NULL
)
1781 && streq ((*fdpp
)->taggedfname
, curfdp
->taggedfname
))
1782 /* We found one of those! We must delete both the file description
1783 and all tags referring to it. */
1785 fdesc
*badfdp
= *fdpp
;
1787 /* Delete the tags referring to badfdp->taggedfname
1788 that were obtained from badfdp->infname. */
1789 invalidate_nodes (badfdp
, &nodehead
);
1791 *fdpp
= badfdp
->next
; /* remove the bad description from the list */
1792 free_fdesc (badfdp
);
1795 fdpp
= &(*fdpp
)->next
; /* advance the list pointer */
1798 assert (parser
!= NULL
);
1800 /* Generic initializations before reading from file. */
1801 linebuffer_setlen (&filebuf
, 0); /* reset the file buffer */
1803 /* Generic initializations before parsing file with readline. */
1804 lineno
= 0; /* reset global line number */
1805 charno
= 0; /* reset global char number */
1806 linecharno
= 0; /* reset global char number of line start */
1810 regex_tag_multiline ();
1815 * Check whether an implicitly named tag should be created,
1816 * then call `pfnote'.
1817 * NAME is a string that is internally copied by this function.
1819 * TAGS format specification
1820 * Idea by Sam Kendall <kendall@mv.mv.com> (1997)
1821 * The following is explained in some more detail in etc/ETAGS.EBNF.
1823 * make_tag creates tags with "implicit tag names" (unnamed tags)
1824 * if the following are all true, assuming NONAM=" \f\t\n\r()=,;":
1825 * 1. NAME does not contain any of the characters in NONAM;
1826 * 2. LINESTART contains name as either a rightmost, or rightmost but
1827 * one character, substring;
1828 * 3. the character, if any, immediately before NAME in LINESTART must
1829 * be a character in NONAM;
1830 * 4. the character, if any, immediately after NAME in LINESTART must
1831 * also be a character in NONAM.
1833 * The implementation uses the notinname() macro, which recognizes the
1834 * characters stored in the string `nonam'.
1835 * etags.el needs to use the same characters that are in NONAM.
1838 make_tag (const char *name
, /* tag name, or NULL if unnamed */
1839 int namelen
, /* tag length */
1840 bool is_func
, /* tag is a function */
1841 char *linestart
, /* start of the line where tag is */
1842 int linelen
, /* length of the line where tag is */
1843 int lno
, /* line number */
1844 long int cno
) /* character number */
1846 bool named
= (name
!= NULL
&& namelen
> 0);
1849 if (!CTAGS
&& named
) /* maybe set named to false */
1850 /* Let's try to make an implicit tag name, that is, create an unnamed tag
1851 such that etags.el can guess a name from it. */
1854 register const char *cp
= name
;
1856 for (i
= 0; i
< namelen
; i
++)
1857 if (notinname (*cp
++))
1859 if (i
== namelen
) /* rule #1 */
1861 cp
= linestart
+ linelen
- namelen
;
1862 if (notinname (linestart
[linelen
-1]))
1863 cp
-= 1; /* rule #4 */
1864 if (cp
>= linestart
/* rule #2 */
1866 || notinname (cp
[-1])) /* rule #3 */
1867 && strneq (name
, cp
, namelen
)) /* rule #2 */
1868 named
= false; /* use implicit tag name */
1873 nname
= savenstr (name
, namelen
);
1875 pfnote (nname
, is_func
, linestart
, linelen
, lno
, cno
);
1880 pfnote (char *name
, bool is_func
, char *linestart
, int linelen
, int lno
,
1882 /* tag name, or NULL if unnamed */
1883 /* tag is a function */
1884 /* start of the line where tag is */
1885 /* length of the line where tag is */
1887 /* character number */
1891 assert (name
== NULL
|| name
[0] != '\0');
1892 if (CTAGS
&& name
== NULL
)
1895 np
= xnew (1, node
);
1897 /* If ctags mode, change name "main" to M<thisfilename>. */
1898 if (CTAGS
&& !cxref_style
&& streq (name
, "main"))
1900 register char *fp
= etags_strrchr (curfdp
->taggedfname
, '/');
1901 np
->name
= concat ("M", fp
== NULL
? curfdp
->taggedfname
: fp
+ 1, "");
1902 fp
= etags_strrchr (np
->name
, '.');
1903 if (fp
!= NULL
&& fp
[1] != '\0' && fp
[2] == '\0')
1909 np
->been_warned
= false;
1911 np
->is_func
= is_func
;
1913 if (np
->fdp
->usecharno
)
1914 /* Our char numbers are 0-base, because of C language tradition?
1915 ctags compatibility? old versions compatibility? I don't know.
1916 Anyway, since emacs's are 1-base we expect etags.el to take care
1917 of the difference. If we wanted to have 1-based numbers, we would
1918 uncomment the +1 below. */
1919 np
->cno
= cno
/* + 1 */ ;
1921 np
->cno
= invalidcharno
;
1922 np
->left
= np
->right
= NULL
;
1923 if (CTAGS
&& !cxref_style
)
1925 if (strlen (linestart
) < 50)
1926 np
->regex
= concat (linestart
, "$", "");
1928 np
->regex
= savenstr (linestart
, 50);
1931 np
->regex
= savenstr (linestart
, linelen
);
1933 add_node (np
, &nodehead
);
1938 * recurse on left children, iterate on right children.
1941 free_tree (register node
*np
)
1945 register node
*node_right
= np
->right
;
1946 free_tree (np
->left
);
1956 * delete a file description
1959 free_fdesc (register fdesc
*fdp
)
1961 free (fdp
->infname
);
1962 free (fdp
->infabsname
);
1963 free (fdp
->infabsdir
);
1964 free (fdp
->taggedfname
);
1971 * Adds a node to the tree of nodes. In etags mode, sort by file
1972 * name. In ctags mode, sort by tag name. Make no attempt at
1975 * add_node is the only function allowed to add nodes, so it can
1979 add_node (node
*np
, node
**cur_node_p
)
1982 register node
*cur_node
= *cur_node_p
;
1984 if (cur_node
== NULL
)
1994 /* For each file name, tags are in a linked sublist on the right
1995 pointer. The first tags of different files are a linked list
1996 on the left pointer. last_node points to the end of the last
1998 if (last_node
!= NULL
&& last_node
->fdp
== np
->fdp
)
2000 /* Let's use the same sublist as the last added node. */
2001 assert (last_node
->right
== NULL
);
2002 last_node
->right
= np
;
2005 else if (cur_node
->fdp
== np
->fdp
)
2007 /* Scanning the list we found the head of a sublist which is
2008 good for us. Let's scan this sublist. */
2009 add_node (np
, &cur_node
->right
);
2012 /* The head of this sublist is not good for us. Let's try the
2014 add_node (np
, &cur_node
->left
);
2015 } /* if ETAGS mode */
2020 dif
= strcmp (np
->name
, cur_node
->name
);
2023 * If this tag name matches an existing one, then
2024 * do not add the node, but maybe print a warning.
2026 if (no_duplicates
&& !dif
)
2028 if (np
->fdp
== cur_node
->fdp
)
2032 fprintf (stderr
, "Duplicate entry in file %s, line %d: %s\n",
2033 np
->fdp
->infname
, lineno
, np
->name
);
2034 fprintf (stderr
, "Second entry ignored\n");
2037 else if (!cur_node
->been_warned
&& !no_warnings
)
2041 "Duplicate entry in files %s and %s: %s (Warning only)\n",
2042 np
->fdp
->infname
, cur_node
->fdp
->infname
, np
->name
);
2043 cur_node
->been_warned
= true;
2048 /* Actually add the node */
2049 add_node (np
, dif
< 0 ? &cur_node
->left
: &cur_node
->right
);
2050 } /* if CTAGS mode */
2054 * invalidate_nodes ()
2055 * Scan the node tree and invalidate all nodes pointing to the
2056 * given file description (CTAGS case) or free them (ETAGS case).
2059 invalidate_nodes (fdesc
*badfdp
, node
**npp
)
2068 if (np
->left
!= NULL
)
2069 invalidate_nodes (badfdp
, &np
->left
);
2070 if (np
->fdp
== badfdp
)
2072 if (np
->right
!= NULL
)
2073 invalidate_nodes (badfdp
, &np
->right
);
2077 assert (np
->fdp
!= NULL
);
2078 if (np
->fdp
== badfdp
)
2080 *npp
= np
->left
; /* detach the sublist from the list */
2081 np
->left
= NULL
; /* isolate it */
2082 free_tree (np
); /* free it */
2083 invalidate_nodes (badfdp
, npp
);
2086 invalidate_nodes (badfdp
, &np
->left
);
2091 static int total_size_of_entries (node
*);
2092 static int number_len (long) ATTRIBUTE_CONST
;
2094 /* Length of a non-negative number's decimal representation. */
2096 number_len (long int num
)
2099 while ((num
/= 10) > 0)
2105 * Return total number of characters that put_entries will output for
2106 * the nodes in the linked list at the right of the specified node.
2107 * This count is irrelevant with etags.el since emacs 19.34 at least,
2108 * but is still supplied for backward compatibility.
2111 total_size_of_entries (register node
*np
)
2113 register int total
= 0;
2115 for (; np
!= NULL
; np
= np
->right
)
2118 total
+= strlen (np
->regex
) + 1; /* pat\177 */
2119 if (np
->name
!= NULL
)
2120 total
+= strlen (np
->name
) + 1; /* name\001 */
2121 total
+= number_len ((long) np
->lno
) + 1; /* lno, */
2122 if (np
->cno
!= invalidcharno
) /* cno */
2123 total
+= number_len (np
->cno
);
2124 total
+= 1; /* newline */
2131 put_entries (register node
*np
)
2134 static fdesc
*fdp
= NULL
;
2139 /* Output subentries that precede this one */
2141 put_entries (np
->left
);
2143 /* Output this entry */
2152 fprintf (tagf
, "\f\n%s,%d\n",
2153 fdp
->taggedfname
, total_size_of_entries (np
));
2154 fdp
->written
= true;
2156 fputs (np
->regex
, tagf
);
2157 fputc ('\177', tagf
);
2158 if (np
->name
!= NULL
)
2160 fputs (np
->name
, tagf
);
2161 fputc ('\001', tagf
);
2163 fprintf (tagf
, "%d,", np
->lno
);
2164 if (np
->cno
!= invalidcharno
)
2165 fprintf (tagf
, "%ld", np
->cno
);
2171 if (np
->name
== NULL
)
2172 error ("internal error: NULL name in ctags mode.");
2177 fprintf (stdout
, "%s %s %d\n",
2178 np
->name
, np
->fdp
->taggedfname
, (np
->lno
+ 63) / 64);
2180 fprintf (stdout
, "%-16s %3d %-16s %s\n",
2181 np
->name
, np
->lno
, np
->fdp
->taggedfname
, np
->regex
);
2185 fprintf (tagf
, "%s\t%s\t", np
->name
, np
->fdp
->taggedfname
);
2188 { /* function or #define macro with args */
2189 putc (searchar
, tagf
);
2192 for (sp
= np
->regex
; *sp
; sp
++)
2194 if (*sp
== '\\' || *sp
== searchar
)
2198 putc (searchar
, tagf
);
2201 { /* anything else; text pattern inadequate */
2202 fprintf (tagf
, "%d", np
->lno
);
2207 } /* if this node contains a valid tag */
2209 /* Output subentries that follow this one */
2210 put_entries (np
->right
);
2212 put_entries (np
->left
);
2217 #define C_EXT 0x00fff /* C extensions */
2218 #define C_PLAIN 0x00000 /* C */
2219 #define C_PLPL 0x00001 /* C++ */
2220 #define C_STAR 0x00003 /* C* */
2221 #define C_JAVA 0x00005 /* JAVA */
2222 #define C_AUTO 0x01000 /* C, but switch to C++ if `class' is met */
2223 #define YACC 0x10000 /* yacc file */
2226 * The C symbol tables.
2231 st_C_objprot
, st_C_objimpl
, st_C_objend
,
2233 st_C_ignore
, st_C_attribute
,
2236 st_C_class
, st_C_template
,
2237 st_C_struct
, st_C_extern
, st_C_enum
, st_C_define
, st_C_typedef
2240 /* Feed stuff between (but not including) %[ and %] lines to:
2246 struct C_stab_entry { char *name; int c_ext; enum sym_type type; }
2250 while, 0, st_C_ignore
2251 switch, 0, st_C_ignore
2252 return, 0, st_C_ignore
2253 __attribute__, 0, st_C_attribute
2254 GTY, 0, st_C_attribute
2255 @interface, 0, st_C_objprot
2256 @protocol, 0, st_C_objprot
2257 @implementation,0, st_C_objimpl
2258 @end, 0, st_C_objend
2259 import, (C_JAVA & ~C_PLPL), st_C_ignore
2260 package, (C_JAVA & ~C_PLPL), st_C_ignore
2261 friend, C_PLPL, st_C_ignore
2262 extends, (C_JAVA & ~C_PLPL), st_C_javastruct
2263 implements, (C_JAVA & ~C_PLPL), st_C_javastruct
2264 interface, (C_JAVA & ~C_PLPL), st_C_struct
2265 class, 0, st_C_class
2266 namespace, C_PLPL, st_C_struct
2267 domain, C_STAR, st_C_struct
2268 union, 0, st_C_struct
2269 struct, 0, st_C_struct
2270 extern, 0, st_C_extern
2272 typedef, 0, st_C_typedef
2273 define, 0, st_C_define
2274 undef, 0, st_C_define
2275 operator, C_PLPL, st_C_operator
2276 template, 0, st_C_template
2277 # DEFUN used in emacs, the next three used in glibc (SYSCALL only for mach).
2278 DEFUN, 0, st_C_gnumacro
2279 SYSCALL, 0, st_C_gnumacro
2280 ENTRY, 0, st_C_gnumacro
2281 PSEUDO, 0, st_C_gnumacro
2282 # These are defined inside C functions, so currently they are not met.
2283 # EXFUN used in glibc, DEFVAR_* in emacs.
2284 #EXFUN, 0, st_C_gnumacro
2285 #DEFVAR_, 0, st_C_gnumacro
2287 and replace lines between %< and %> with its output, then:
2288 - remove the #if characterset check
2289 - make in_word_set static and not inline. */
2291 /* C code produced by gperf version 3.0.1 */
2292 /* Command-line: gperf -m 5 */
2293 /* Computed positions: -k'2-3' */
2295 struct C_stab_entry
{ const char *name
; int c_ext
; enum sym_type type
; };
2296 /* maximum key range = 33, duplicates = 0 */
2299 hash (const char *str
, int len
)
2301 static char const asso_values
[] =
2303 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2304 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2305 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2306 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2307 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2308 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2309 35, 35, 35, 35, 35, 35, 35, 35, 35, 3,
2310 26, 35, 35, 35, 35, 35, 35, 35, 27, 35,
2311 35, 35, 35, 24, 0, 35, 35, 35, 35, 0,
2312 35, 35, 35, 35, 35, 1, 35, 16, 35, 6,
2313 23, 0, 0, 35, 22, 0, 35, 35, 5, 0,
2314 0, 15, 1, 35, 6, 35, 8, 19, 35, 16,
2315 4, 5, 35, 35, 35, 35, 35, 35, 35, 35,
2316 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2317 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2318 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2319 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2320 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2321 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2322 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2323 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2324 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2325 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2326 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2327 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2328 35, 35, 35, 35, 35, 35
2335 hval
+= asso_values
[(unsigned char) str
[2]];
2338 hval
+= asso_values
[(unsigned char) str
[1]];
2344 static struct C_stab_entry
*
2345 in_word_set (register const char *str
, register unsigned int len
)
2349 TOTAL_KEYWORDS
= 33,
2350 MIN_WORD_LENGTH
= 2,
2351 MAX_WORD_LENGTH
= 15,
2356 static struct C_stab_entry wordlist
[] =
2359 {"if", 0, st_C_ignore
},
2360 {"GTY", 0, st_C_attribute
},
2361 {"@end", 0, st_C_objend
},
2362 {"union", 0, st_C_struct
},
2363 {"define", 0, st_C_define
},
2364 {"import", (C_JAVA
& ~C_PLPL
), st_C_ignore
},
2365 {"template", 0, st_C_template
},
2366 {"operator", C_PLPL
, st_C_operator
},
2367 {"@interface", 0, st_C_objprot
},
2368 {"implements", (C_JAVA
& ~C_PLPL
), st_C_javastruct
},
2369 {"friend", C_PLPL
, st_C_ignore
},
2370 {"typedef", 0, st_C_typedef
},
2371 {"return", 0, st_C_ignore
},
2372 {"@implementation",0, st_C_objimpl
},
2373 {"@protocol", 0, st_C_objprot
},
2374 {"interface", (C_JAVA
& ~C_PLPL
), st_C_struct
},
2375 {"extern", 0, st_C_extern
},
2376 {"extends", (C_JAVA
& ~C_PLPL
), st_C_javastruct
},
2377 {"struct", 0, st_C_struct
},
2378 {"domain", C_STAR
, st_C_struct
},
2379 {"switch", 0, st_C_ignore
},
2380 {"enum", 0, st_C_enum
},
2381 {"for", 0, st_C_ignore
},
2382 {"namespace", C_PLPL
, st_C_struct
},
2383 {"class", 0, st_C_class
},
2384 {"while", 0, st_C_ignore
},
2385 {"undef", 0, st_C_define
},
2386 {"package", (C_JAVA
& ~C_PLPL
), st_C_ignore
},
2387 {"__attribute__", 0, st_C_attribute
},
2388 {"SYSCALL", 0, st_C_gnumacro
},
2389 {"ENTRY", 0, st_C_gnumacro
},
2390 {"PSEUDO", 0, st_C_gnumacro
},
2391 {"DEFUN", 0, st_C_gnumacro
}
2394 if (len
<= MAX_WORD_LENGTH
&& len
>= MIN_WORD_LENGTH
)
2396 int key
= hash (str
, len
);
2398 if (key
<= MAX_HASH_VALUE
&& key
>= 0)
2400 const char *s
= wordlist
[key
].name
;
2402 if (*str
== *s
&& !strncmp (str
+ 1, s
+ 1, len
- 1) && s
[len
] == '\0')
2403 return &wordlist
[key
];
2410 static enum sym_type
2411 C_symtype (char *str
, int len
, int c_ext
)
2413 register struct C_stab_entry
*se
= in_word_set (str
, len
);
2415 if (se
== NULL
|| (se
->c_ext
&& !(c_ext
& se
->c_ext
)))
2422 * Ignoring __attribute__ ((list))
2424 static bool inattribute
; /* looking at an __attribute__ construct */
2427 * C functions and variables are recognized using a simple
2428 * finite automaton. fvdef is its state variable.
2432 fvnone
, /* nothing seen */
2433 fdefunkey
, /* Emacs DEFUN keyword seen */
2434 fdefunname
, /* Emacs DEFUN name seen */
2435 foperator
, /* func: operator keyword seen (cplpl) */
2436 fvnameseen
, /* function or variable name seen */
2437 fstartlist
, /* func: just after open parenthesis */
2438 finlist
, /* func: in parameter list */
2439 flistseen
, /* func: after parameter list */
2440 fignore
, /* func: before open brace */
2441 vignore
/* var-like: ignore until ';' */
2444 static bool fvextern
; /* func or var: extern keyword seen; */
2447 * typedefs are recognized using a simple finite automaton.
2448 * typdef is its state variable.
2452 tnone
, /* nothing seen */
2453 tkeyseen
, /* typedef keyword seen */
2454 ttypeseen
, /* defined type seen */
2455 tinbody
, /* inside typedef body */
2456 tend
, /* just before typedef tag */
2457 tignore
/* junk after typedef tag */
2461 * struct-like structures (enum, struct and union) are recognized
2462 * using another simple finite automaton. `structdef' is its state
2467 snone
, /* nothing seen yet,
2468 or in struct body if bracelev > 0 */
2469 skeyseen
, /* struct-like keyword seen */
2470 stagseen
, /* struct-like tag seen */
2471 scolonseen
/* colon seen after struct-like tag */
2475 * When objdef is different from onone, objtag is the name of the class.
2477 static const char *objtag
= "<uninited>";
2480 * Yet another little state machine to deal with preprocessor lines.
2484 dnone
, /* nothing seen */
2485 dsharpseen
, /* '#' seen as first char on line */
2486 ddefineseen
, /* '#' and 'define' seen */
2487 dignorerest
/* ignore rest of line */
2491 * State machine for Objective C protocols and implementations.
2492 * Idea by Tom R.Hageman <tom@basil.icce.rug.nl> (1995)
2496 onone
, /* nothing seen */
2497 oprotocol
, /* @interface or @protocol seen */
2498 oimplementation
, /* @implementations seen */
2499 otagseen
, /* class name seen */
2500 oparenseen
, /* parenthesis before category seen */
2501 ocatseen
, /* category name seen */
2502 oinbody
, /* in @implementation body */
2503 omethodsign
, /* in @implementation body, after +/- */
2504 omethodtag
, /* after method name */
2505 omethodcolon
, /* after method colon */
2506 omethodparm
, /* after method parameter */
2507 oignore
/* wait for @end */
2512 * Use this structure to keep info about the token read, and how it
2513 * should be tagged. Used by the make_C_tag function to build a tag.
2517 char *line
; /* string containing the token */
2518 int offset
; /* where the token starts in LINE */
2519 int length
; /* token length */
2521 The previous members can be used to pass strings around for generic
2522 purposes. The following ones specifically refer to creating tags. In this
2523 case the token contained here is the pattern that will be used to create a
2526 bool valid
; /* do not create a tag; the token should be
2527 invalidated whenever a state machine is
2528 reset prematurely */
2529 bool named
; /* create a named tag */
2530 int lineno
; /* source line number of tag */
2531 long linepos
; /* source char number of tag */
2532 } token
; /* latest token read */
2535 * Variables and functions for dealing with nested structures.
2536 * Idea by Mykola Dzyuba <mdzyuba@yahoo.com> (2001)
2538 static void pushclass_above (int, char *, int);
2539 static void popclass_above (int);
2540 static void write_classname (linebuffer
*, const char *qualifier
);
2543 char **cname
; /* nested class names */
2544 int *bracelev
; /* nested class brace level */
2545 int nl
; /* class nesting level (elements used) */
2546 int size
; /* length of the array */
2547 } cstack
; /* stack for nested declaration tags */
2548 /* Current struct nesting depth (namespace, class, struct, union, enum). */
2549 #define nestlev (cstack.nl)
2550 /* After struct keyword or in struct body, not inside a nested function. */
2551 #define instruct (structdef == snone && nestlev > 0 \
2552 && bracelev == cstack.bracelev[nestlev-1] + 1)
2555 pushclass_above (int bracelev
, char *str
, int len
)
2559 popclass_above (bracelev
);
2561 if (nl
>= cstack
.size
)
2563 int size
= cstack
.size
*= 2;
2564 xrnew (cstack
.cname
, size
, char *);
2565 xrnew (cstack
.bracelev
, size
, int);
2567 assert (nl
== 0 || cstack
.bracelev
[nl
-1] < bracelev
);
2568 cstack
.cname
[nl
] = (str
== NULL
) ? NULL
: savenstr (str
, len
);
2569 cstack
.bracelev
[nl
] = bracelev
;
2574 popclass_above (int bracelev
)
2578 for (nl
= cstack
.nl
- 1;
2579 nl
>= 0 && cstack
.bracelev
[nl
] >= bracelev
;
2582 free (cstack
.cname
[nl
]);
2588 write_classname (linebuffer
*cn
, const char *qualifier
)
2591 int qlen
= strlen (qualifier
);
2593 if (cstack
.nl
== 0 || cstack
.cname
[0] == NULL
)
2597 cn
->buffer
[0] = '\0';
2601 len
= strlen (cstack
.cname
[0]);
2602 linebuffer_setlen (cn
, len
);
2603 strcpy (cn
->buffer
, cstack
.cname
[0]);
2605 for (i
= 1; i
< cstack
.nl
; i
++)
2607 char *s
= cstack
.cname
[i
];
2610 linebuffer_setlen (cn
, len
+ qlen
+ strlen (s
));
2611 len
+= sprintf (cn
->buffer
+ len
, "%s%s", qualifier
, s
);
2616 static bool consider_token (char *, int, int, int *, int, int, bool *);
2617 static void make_C_tag (bool);
2621 * checks to see if the current token is at the start of a
2622 * function or variable, or corresponds to a typedef, or
2623 * is a struct/union/enum tag, or #define, or an enum constant.
2625 * *IS_FUNC_OR_VAR gets true if the token is a function or #define macro
2626 * with args. C_EXTP points to which language we are looking at.
2637 consider_token (char *str
, int len
, int c
, int *c_extp
,
2638 int bracelev
, int parlev
, bool *is_func_or_var
)
2639 /* IN: token pointer */
2640 /* IN: token length */
2641 /* IN: first char after the token */
2642 /* IN, OUT: C extensions mask */
2643 /* IN: brace level */
2644 /* IN: parenthesis level */
2645 /* OUT: function or variable found */
2647 /* When structdef is stagseen, scolonseen, or snone with bracelev > 0,
2648 structtype is the type of the preceding struct-like keyword, and
2649 structbracelev is the brace level where it has been seen. */
2650 static enum sym_type structtype
;
2651 static int structbracelev
;
2652 static enum sym_type toktype
;
2655 toktype
= C_symtype (str
, len
, *c_extp
);
2658 * Skip __attribute__
2660 if (toktype
== st_C_attribute
)
2667 * Advance the definedef state machine.
2672 /* We're not on a preprocessor line. */
2673 if (toktype
== st_C_gnumacro
)
2680 if (toktype
== st_C_define
)
2682 definedef
= ddefineseen
;
2686 definedef
= dignorerest
;
2691 * Make a tag for any macro, unless it is a constant
2692 * and constantypedefs is false.
2694 definedef
= dignorerest
;
2695 *is_func_or_var
= (c
== '(');
2696 if (!*is_func_or_var
&& !constantypedefs
)
2703 error ("internal error: definedef value.");
2712 if (toktype
== st_C_typedef
)
2732 if (structdef
== snone
&& fvdef
== fvnone
)
2751 case st_C_javastruct
:
2752 if (structdef
== stagseen
)
2753 structdef
= scolonseen
;
2757 if ((*c_extp
& C_AUTO
) /* automatic detection of C++ language */
2759 && definedef
== dnone
&& structdef
== snone
2760 && typdef
== tnone
&& fvdef
== fvnone
)
2761 *c_extp
= (*c_extp
| C_PLPL
) & ~C_AUTO
;
2762 if (toktype
== st_C_template
)
2769 && (typdef
== tkeyseen
2770 || (typedefs_or_cplusplus
&& structdef
== snone
)))
2772 structdef
= skeyseen
;
2773 structtype
= toktype
;
2774 structbracelev
= bracelev
;
2775 if (fvdef
== fvnameseen
)
2781 if (structdef
== skeyseen
)
2783 structdef
= stagseen
;
2787 if (typdef
!= tnone
)
2790 /* Detect Objective C constructs. */
2800 objdef
= oimplementation
;
2804 case oimplementation
:
2805 /* Save the class tag for functions or variables defined inside. */
2806 objtag
= savenstr (str
, len
);
2810 /* Save the class tag for categories. */
2811 objtag
= savenstr (str
, len
);
2813 *is_func_or_var
= true;
2817 *is_func_or_var
= true;
2825 objdef
= omethodtag
;
2826 linebuffer_setlen (&token_name
, len
);
2827 memcpy (token_name
.buffer
, str
, len
);
2828 token_name
.buffer
[len
] = '\0';
2834 objdef
= omethodparm
;
2839 int oldlen
= token_name
.len
;
2841 objdef
= omethodtag
;
2842 linebuffer_setlen (&token_name
, oldlen
+ len
);
2843 memcpy (token_name
.buffer
+ oldlen
, str
, len
);
2844 token_name
.buffer
[oldlen
+ len
] = '\0';
2849 if (toktype
== st_C_objend
)
2851 /* Memory leakage here: the string pointed by objtag is
2852 never released, because many tests would be needed to
2853 avoid breaking on incorrect input code. The amount of
2854 memory leaked here is the sum of the lengths of the
2862 /* A function, variable or enum constant? */
2884 *is_func_or_var
= true;
2888 && structdef
== snone
2889 && structtype
== st_C_enum
&& bracelev
> structbracelev
)
2890 return true; /* enum constant */
2896 fvdef
= fdefunname
; /* GNU macro */
2897 *is_func_or_var
= true;
2905 if ((strneq (str
, "asm", 3) && endtoken (str
[3]))
2906 || (strneq (str
, "__asm__", 7) && endtoken (str
[7])))
2915 if (len
>= 10 && strneq (str
+len
-10, "::operator", 10))
2917 if (*c_extp
& C_AUTO
) /* automatic detection of C++ */
2918 *c_extp
= (*c_extp
| C_PLPL
) & ~C_AUTO
;
2920 *is_func_or_var
= true;
2923 if (bracelev
> 0 && !instruct
)
2925 fvdef
= fvnameseen
; /* function or variable */
2926 *is_func_or_var
= true;
2937 * C_entries often keeps pointers to tokens or lines which are older than
2938 * the line currently read. By keeping two line buffers, and switching
2939 * them at end of line, it is possible to use those pointers.
2947 #define current_lb_is_new (newndx == curndx)
2948 #define switch_line_buffers() (curndx = 1 - curndx)
2950 #define curlb (lbs[curndx].lb)
2951 #define newlb (lbs[newndx].lb)
2952 #define curlinepos (lbs[curndx].linepos)
2953 #define newlinepos (lbs[newndx].linepos)
2955 #define plainc ((c_ext & C_EXT) == C_PLAIN)
2956 #define cplpl (c_ext & C_PLPL)
2957 #define cjava ((c_ext & C_JAVA) == C_JAVA)
2959 #define CNL_SAVE_DEFINEDEF() \
2961 curlinepos = charno; \
2962 readline (&curlb, inf); \
2963 lp = curlb.buffer; \
2970 CNL_SAVE_DEFINEDEF(); \
2971 if (savetoken.valid) \
2973 token = savetoken; \
2974 savetoken.valid = false; \
2976 definedef = dnone; \
2981 make_C_tag (bool isfun
)
2983 /* This function is never called when token.valid is false, but
2984 we must protect against invalid input or internal errors. */
2986 make_tag (token_name
.buffer
, token_name
.len
, isfun
, token
.line
,
2987 token
.offset
+token
.length
+1, token
.lineno
, token
.linepos
);
2989 { /* this branch is optimized away if !DEBUG */
2990 make_tag (concat ("INVALID TOKEN:-->", token_name
.buffer
, ""),
2991 token_name
.len
+ 17, isfun
, token
.line
,
2992 token
.offset
+token
.length
+1, token
.lineno
, token
.linepos
);
2993 error ("INVALID TOKEN");
2996 token
.valid
= false;
3002 * This routine finds functions, variables, typedefs,
3003 * #define's, enum constants and struct/union/enum definitions in
3004 * C syntax and adds them to the list.
3007 C_entries (int c_ext
, FILE *inf
)
3008 /* extension of C */
3011 register char c
; /* latest char read; '\0' for end of line */
3012 register char *lp
; /* pointer one beyond the character `c' */
3013 int curndx
, newndx
; /* indices for current and new lb */
3014 register int tokoff
; /* offset in line of start of current token */
3015 register int toklen
; /* length of current token */
3016 const char *qualifier
; /* string used to qualify names */
3017 int qlen
; /* length of qualifier */
3018 int bracelev
; /* current brace level */
3019 int bracketlev
; /* current bracket level */
3020 int parlev
; /* current parenthesis level */
3021 int attrparlev
; /* __attribute__ parenthesis level */
3022 int templatelev
; /* current template level */
3023 int typdefbracelev
; /* bracelev where a typedef struct body begun */
3024 bool incomm
, inquote
, inchar
, quotednl
, midtoken
;
3025 bool yacc_rules
; /* in the rules part of a yacc file */
3026 struct tok savetoken
= {0}; /* token saved during preprocessor handling */
3029 linebuffer_init (&lbs
[0].lb
);
3030 linebuffer_init (&lbs
[1].lb
);
3031 if (cstack
.size
== 0)
3033 cstack
.size
= (DEBUG
) ? 1 : 4;
3035 cstack
.cname
= xnew (cstack
.size
, char *);
3036 cstack
.bracelev
= xnew (cstack
.size
, int);
3039 tokoff
= toklen
= typdefbracelev
= 0; /* keep compiler quiet */
3040 curndx
= newndx
= 0;
3044 fvdef
= fvnone
; fvextern
= false; typdef
= tnone
;
3045 structdef
= snone
; definedef
= dnone
; objdef
= onone
;
3047 midtoken
= inquote
= inchar
= incomm
= quotednl
= false;
3048 token
.valid
= savetoken
.valid
= false;
3049 bracelev
= bracketlev
= parlev
= attrparlev
= templatelev
= 0;
3051 { qualifier
= "."; qlen
= 1; }
3053 { qualifier
= "::"; qlen
= 2; }
3061 /* If we are at the end of the line, the next character is a
3062 '\0'; do not skip it, because it is what tells us
3063 to read the next line. */
3084 /* Newlines inside comments do not end macro definitions in
3086 CNL_SAVE_DEFINEDEF ();
3099 /* Newlines inside strings do not end macro definitions
3100 in traditional cpp, even though compilers don't
3101 usually accept them. */
3102 CNL_SAVE_DEFINEDEF ();
3112 /* Hmmm, something went wrong. */
3148 if (fvdef
!= finlist
&& fvdef
!= fignore
&& fvdef
!= vignore
)
3163 else if (/* cplpl && */ *lp
== '/')
3169 if ((c_ext
& YACC
) && *lp
== '%')
3171 /* Entering or exiting rules section in yacc file. */
3173 definedef
= dnone
; fvdef
= fvnone
; fvextern
= false;
3174 typdef
= tnone
; structdef
= snone
;
3175 midtoken
= inquote
= inchar
= incomm
= quotednl
= false;
3177 yacc_rules
= !yacc_rules
;
3183 if (definedef
== dnone
)
3186 bool cpptoken
= true;
3188 /* Look back on this line. If all blanks, or nonblanks
3189 followed by an end of comment, this is a preprocessor
3191 for (cp
= newlb
.buffer
; cp
< lp
-1; cp
++)
3194 if (*cp
== '*' && cp
[1] == '/')
3203 definedef
= dsharpseen
;
3204 } /* if (definedef == dnone) */
3215 CNL_SAVE_DEFINEDEF ();
3222 /* Consider token only if some involved conditions are satisfied. */
3223 if (typdef
!= tignore
3224 && definedef
!= dignorerest
3227 && (definedef
!= dnone
3228 || structdef
!= scolonseen
)
3235 if (c
== ':' && *lp
== ':' && begtoken (lp
[1]))
3236 /* This handles :: in the middle,
3237 but not at the beginning of an identifier.
3238 Also, space-separated :: is not recognized. */
3240 if (c_ext
& C_AUTO
) /* automatic detection of C++ */
3241 c_ext
= (c_ext
| C_PLPL
) & ~C_AUTO
;
3245 goto still_in_token
;
3249 bool funorvar
= false;
3252 || consider_token (newlb
.buffer
+ tokoff
, toklen
, c
,
3253 &c_ext
, bracelev
, parlev
,
3256 if (fvdef
== foperator
)
3259 lp
= skip_spaces (lp
-1);
3263 && !iswhite (*lp
) && *lp
!= '(')
3266 toklen
+= lp
- oldlp
;
3268 token
.named
= false;
3270 && nestlev
> 0 && definedef
== dnone
)
3271 /* in struct body */
3274 write_classname (&token_name
, qualifier
);
3275 len
= token_name
.len
;
3276 linebuffer_setlen (&token_name
, len
+qlen
+toklen
);
3277 sprintf (token_name
.buffer
+ len
, "%s%.*s",
3278 qualifier
, toklen
, newlb
.buffer
+ tokoff
);
3281 else if (objdef
== ocatseen
)
3282 /* Objective C category */
3284 int len
= strlen (objtag
) + 2 + toklen
;
3285 linebuffer_setlen (&token_name
, len
);
3286 sprintf (token_name
.buffer
, "%s(%.*s)",
3287 objtag
, toklen
, newlb
.buffer
+ tokoff
);
3290 else if (objdef
== omethodtag
3291 || objdef
== omethodparm
)
3292 /* Objective C method */
3296 else if (fvdef
== fdefunname
)
3297 /* GNU DEFUN and similar macros */
3299 bool defun
= (newlb
.buffer
[tokoff
] == 'F');
3303 /* Rewrite the tag so that emacs lisp DEFUNs
3304 can be found by their elisp name */
3310 linebuffer_setlen (&token_name
, len
);
3311 memcpy (token_name
.buffer
,
3312 newlb
.buffer
+ off
, len
);
3313 token_name
.buffer
[len
] = '\0';
3316 if (token_name
.buffer
[len
] == '_')
3317 token_name
.buffer
[len
] = '-';
3318 token
.named
= defun
;
3322 linebuffer_setlen (&token_name
, toklen
);
3323 memcpy (token_name
.buffer
,
3324 newlb
.buffer
+ tokoff
, toklen
);
3325 token_name
.buffer
[toklen
] = '\0';
3326 /* Name macros and members. */
3327 token
.named
= (structdef
== stagseen
3328 || typdef
== ttypeseen
3331 && definedef
== dignorerest
)
3333 && definedef
== dnone
3334 && structdef
== snone
3337 token
.lineno
= lineno
;
3338 token
.offset
= tokoff
;
3339 token
.length
= toklen
;
3340 token
.line
= newlb
.buffer
;
3341 token
.linepos
= newlinepos
;
3344 if (definedef
== dnone
3345 && (fvdef
== fvnameseen
3346 || fvdef
== foperator
3347 || structdef
== stagseen
3349 || typdef
== ttypeseen
3350 || objdef
!= onone
))
3352 if (current_lb_is_new
)
3353 switch_line_buffers ();
3355 else if (definedef
!= dnone
3356 || fvdef
== fdefunname
3358 make_C_tag (funorvar
);
3360 else /* not yacc and consider_token failed */
3362 if (inattribute
&& fvdef
== fignore
)
3364 /* We have just met __attribute__ after a
3365 function parameter list: do not tag the
3372 } /* if (endtoken (c)) */
3373 else if (intoken (c
))
3379 } /* if (midtoken) */
3380 else if (begtoken (c
))
3388 /* This prevents tagging fb in
3389 void (__attribute__((noreturn)) *fb) (void);
3390 Fixing this is not easy and not very important. */
3394 if (plainc
|| declarations
)
3396 make_C_tag (true); /* a function */
3401 if (structdef
== stagseen
&& !cjava
)
3403 popclass_above (bracelev
);
3411 if (!yacc_rules
|| lp
== newlb
.buffer
+ 1)
3413 tokoff
= lp
- 1 - newlb
.buffer
;
3418 } /* if (begtoken) */
3419 } /* if must look at token */
3422 /* Detect end of line, colon, comma, semicolon and various braces
3423 after having handled a token.*/
3429 if (yacc_rules
&& token
.offset
== 0 && token
.valid
)
3431 make_C_tag (false); /* a yacc function */
3434 if (definedef
!= dnone
)
3440 make_C_tag (true); /* an Objective C class */
3444 objdef
= omethodcolon
;
3445 linebuffer_setlen (&token_name
, token_name
.len
+ 1);
3446 strcat (token_name
.buffer
, ":");
3449 if (structdef
== stagseen
)
3451 structdef
= scolonseen
;
3454 /* Should be useless, but may be work as a safety net. */
3455 if (cplpl
&& fvdef
== flistseen
)
3457 make_C_tag (true); /* a function */
3463 if (definedef
!= dnone
|| inattribute
)
3469 make_C_tag (false); /* a typedef */
3479 if (typdef
== tignore
|| cplpl
)
3483 if ((globals
&& bracelev
== 0 && (!fvextern
|| declarations
))
3484 || (members
&& instruct
))
3485 make_C_tag (false); /* a variable */
3488 token
.valid
= false;
3492 && (cplpl
|| !instruct
)
3493 && (typdef
== tnone
|| (typdef
!= tignore
&& instruct
)))
3495 && plainc
&& instruct
))
3496 make_C_tag (true); /* a function */
3502 && cplpl
&& structdef
== stagseen
)
3503 make_C_tag (false); /* forward declaration */
3505 token
.valid
= false;
3506 } /* switch (fvdef) */
3512 if (structdef
== stagseen
)
3516 if (definedef
!= dnone
|| inattribute
)
3522 make_C_tag (true); /* an Objective C method */
3543 && (!fvextern
|| declarations
))
3544 || (members
&& instruct
)))
3545 make_C_tag (false); /* a variable */
3548 if ((declarations
&& typdef
== tnone
&& !instruct
)
3549 || (members
&& typdef
!= tignore
&& instruct
))
3551 make_C_tag (true); /* a function */
3554 else if (!declarations
)
3556 token
.valid
= false;
3561 if (structdef
== stagseen
)
3565 if (definedef
!= dnone
|| inattribute
)
3567 if (structdef
== stagseen
)
3574 make_C_tag (false); /* a typedef */
3586 if ((members
&& bracelev
== 1)
3587 || (globals
&& bracelev
== 0
3588 && (!fvextern
|| declarations
)))
3589 make_C_tag (false); /* a variable */
3603 if (definedef
!= dnone
)
3605 if (objdef
== otagseen
&& parlev
== 0)
3606 objdef
= oparenseen
;
3610 if (typdef
== ttypeseen
3614 /* This handles constructs like:
3615 typedef void OperatorFun (int fun); */
3634 if (--attrparlev
== 0)
3635 inattribute
= false;
3638 if (definedef
!= dnone
)
3640 if (objdef
== ocatseen
&& parlev
== 1)
3642 make_C_tag (true); /* an Objective C category */
3656 || typdef
== ttypeseen
))
3659 make_C_tag (false); /* a typedef */
3662 else if (parlev
< 0) /* can happen due to ill-conceived #if's. */
3666 if (definedef
!= dnone
)
3668 if (typdef
== ttypeseen
)
3670 /* Whenever typdef is set to tinbody (currently only
3671 here), typdefbracelev should be set to bracelev. */
3673 typdefbracelev
= bracelev
;
3678 make_C_tag (true); /* a function */
3687 make_C_tag (true); /* an Objective C class */
3692 make_C_tag (true); /* an Objective C method */
3696 /* Neutralize `extern "C" {' grot. */
3697 if (bracelev
== 0 && structdef
== snone
&& nestlev
== 0
3705 case skeyseen
: /* unnamed struct */
3706 pushclass_above (bracelev
, NULL
, 0);
3709 case stagseen
: /* named struct or enum */
3710 case scolonseen
: /* a class */
3711 pushclass_above (bracelev
,token
.line
+token
.offset
, token
.length
);
3713 make_C_tag (false); /* a struct or enum */
3719 if (definedef
!= dnone
)
3721 if (fvdef
== fstartlist
)
3723 fvdef
= fvnone
; /* avoid tagging `foo' in `foo (*bar()) ()' */
3724 token
.valid
= false;
3728 if (definedef
!= dnone
)
3731 if (!ignoreindent
&& lp
== newlb
.buffer
+ 1)
3734 token
.valid
= false; /* unexpected value, token unreliable */
3735 bracelev
= 0; /* reset brace level if first column */
3736 parlev
= 0; /* also reset paren level, just in case... */
3738 else if (bracelev
< 0)
3740 token
.valid
= false; /* something gone amiss, token unreliable */
3743 if (bracelev
== 0 && fvdef
== vignore
)
3744 fvdef
= fvnone
; /* end of function */
3745 popclass_above (bracelev
);
3747 /* Only if typdef == tinbody is typdefbracelev significant. */
3748 if (typdef
== tinbody
&& bracelev
<= typdefbracelev
)
3750 assert (bracelev
== typdefbracelev
);
3755 if (definedef
!= dnone
)
3765 if ((members
&& bracelev
== 1)
3766 || (globals
&& bracelev
== 0 && (!fvextern
|| declarations
)))
3767 make_C_tag (false); /* a variable */
3775 && (structdef
== stagseen
|| fvdef
== fvnameseen
))
3782 if (templatelev
> 0)
3790 if (objdef
== oinbody
&& bracelev
== 0)
3792 objdef
= omethodsign
;
3797 case '#': case '~': case '&': case '%': case '/':
3798 case '|': case '^': case '!': case '.': case '?':
3799 if (definedef
!= dnone
)
3801 /* These surely cannot follow a function tag in C. */
3814 if (objdef
== otagseen
)
3816 make_C_tag (true); /* an Objective C class */
3819 /* If a macro spans multiple lines don't reset its state. */
3821 CNL_SAVE_DEFINEDEF ();
3827 } /* while not eof */
3829 free (lbs
[0].lb
.buffer
);
3830 free (lbs
[1].lb
.buffer
);
3834 * Process either a C++ file or a C file depending on the setting
3838 default_C_entries (FILE *inf
)
3840 C_entries (cplusplus
? C_PLPL
: C_AUTO
, inf
);
3843 /* Always do plain C. */
3845 plain_C_entries (FILE *inf
)
3850 /* Always do C++. */
3852 Cplusplus_entries (FILE *inf
)
3854 C_entries (C_PLPL
, inf
);
3857 /* Always do Java. */
3859 Cjava_entries (FILE *inf
)
3861 C_entries (C_JAVA
, inf
);
3866 Cstar_entries (FILE *inf
)
3868 C_entries (C_STAR
, inf
);
3871 /* Always do Yacc. */
3873 Yacc_entries (FILE *inf
)
3875 C_entries (YACC
, inf
);
3879 /* Useful macros. */
3880 #define LOOP_ON_INPUT_LINES(file_pointer, line_buffer, char_pointer) \
3881 for (; /* loop initialization */ \
3882 !feof (file_pointer) /* loop test */ \
3883 && /* instructions at start of loop */ \
3884 (readline (&line_buffer, file_pointer), \
3885 char_pointer = line_buffer.buffer, \
3889 #define LOOKING_AT(cp, kw) /* kw is the keyword, a literal string */ \
3890 ((assert ("" kw), true) /* syntax error if not a literal string */ \
3891 && strneq ((cp), kw, sizeof (kw)-1) /* cp points at kw */ \
3892 && notinname ((cp)[sizeof (kw)-1]) /* end of kw */ \
3893 && ((cp) = skip_spaces ((cp)+sizeof (kw)-1))) /* skip spaces */
3895 /* Similar to LOOKING_AT but does not use notinname, does not skip */
3896 #define LOOKING_AT_NOCASE(cp, kw) /* the keyword is a literal string */ \
3897 ((assert ("" kw), true) /* syntax error if not a literal string */ \
3898 && strncaseeq ((cp), kw, sizeof (kw)-1) /* cp points at kw */ \
3899 && ((cp) += sizeof (kw)-1)) /* skip spaces */
3902 * Read a file, but do no processing. This is used to do regexp
3903 * matching on files that have no language defined.
3906 just_read_file (FILE *inf
)
3909 readline (&lb
, inf
);
3913 /* Fortran parsing */
3915 static void F_takeprec (void);
3916 static void F_getit (FILE *);
3921 dbp
= skip_spaces (dbp
);
3925 dbp
= skip_spaces (dbp
);
3926 if (strneq (dbp
, "(*)", 3))
3931 if (!ISDIGIT (*dbp
))
3933 --dbp
; /* force failure */
3938 while (ISDIGIT (*dbp
));
3946 dbp
= skip_spaces (dbp
);
3949 readline (&lb
, inf
);
3954 dbp
= skip_spaces (dbp
);
3956 if (!ISALPHA (*dbp
) && *dbp
!= '_' && *dbp
!= '$')
3958 for (cp
= dbp
+ 1; *cp
!= '\0' && intoken (*cp
); cp
++)
3960 make_tag (dbp
, cp
-dbp
, true,
3961 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
3966 Fortran_functions (FILE *inf
)
3968 LOOP_ON_INPUT_LINES (inf
, lb
, dbp
)
3971 dbp
++; /* Ratfor escape to fortran */
3972 dbp
= skip_spaces (dbp
);
3976 if (LOOKING_AT_NOCASE (dbp
, "recursive"))
3977 dbp
= skip_spaces (dbp
);
3979 if (LOOKING_AT_NOCASE (dbp
, "pure"))
3980 dbp
= skip_spaces (dbp
);
3982 if (LOOKING_AT_NOCASE (dbp
, "elemental"))
3983 dbp
= skip_spaces (dbp
);
3985 switch (lowcase (*dbp
))
3988 if (nocase_tail ("integer"))
3992 if (nocase_tail ("real"))
3996 if (nocase_tail ("logical"))
4000 if (nocase_tail ("complex") || nocase_tail ("character"))
4004 if (nocase_tail ("double"))
4006 dbp
= skip_spaces (dbp
);
4009 if (nocase_tail ("precision"))
4015 dbp
= skip_spaces (dbp
);
4018 switch (lowcase (*dbp
))
4021 if (nocase_tail ("function"))
4025 if (nocase_tail ("subroutine"))
4029 if (nocase_tail ("entry"))
4033 if (nocase_tail ("blockdata") || nocase_tail ("block data"))
4035 dbp
= skip_spaces (dbp
);
4036 if (*dbp
== '\0') /* assume un-named */
4037 make_tag ("blockdata", 9, true,
4038 lb
.buffer
, dbp
- lb
.buffer
, lineno
, linecharno
);
4040 F_getit (inf
); /* look for name */
4051 * Philippe Waroquiers (1998)
4054 /* Once we are positioned after an "interesting" keyword, let's get
4055 the real tag value necessary. */
4057 Ada_getit (FILE *inf
, const char *name_qualifier
)
4065 dbp
= skip_spaces (dbp
);
4067 || (dbp
[0] == '-' && dbp
[1] == '-'))
4069 readline (&lb
, inf
);
4072 switch (lowcase (*dbp
))
4075 if (nocase_tail ("body"))
4077 /* Skipping body of procedure body or package body or ....
4078 resetting qualifier to body instead of spec. */
4079 name_qualifier
= "/b";
4084 /* Skipping type of task type or protected type ... */
4085 if (nocase_tail ("type"))
4092 for (cp
= dbp
; *cp
!= '\0' && *cp
!= '"'; cp
++)
4097 dbp
= skip_spaces (dbp
);
4100 && (ISALPHA (*cp
) || ISDIGIT (*cp
) || *cp
== '_' || *cp
== '.'));
4108 name
= concat (dbp
, name_qualifier
, "");
4110 make_tag (name
, strlen (name
), true,
4111 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4120 Ada_funcs (FILE *inf
)
4122 bool inquote
= false;
4123 bool skip_till_semicolumn
= false;
4125 LOOP_ON_INPUT_LINES (inf
, lb
, dbp
)
4127 while (*dbp
!= '\0')
4129 /* Skip a string i.e. "abcd". */
4130 if (inquote
|| (*dbp
== '"'))
4132 dbp
= etags_strchr (dbp
+ !inquote
, '"');
4137 continue; /* advance char */
4142 break; /* advance line */
4146 /* Skip comments. */
4147 if (dbp
[0] == '-' && dbp
[1] == '-')
4148 break; /* advance line */
4150 /* Skip character enclosed in single quote i.e. 'a'
4151 and skip single quote starting an attribute i.e. 'Image. */
4160 if (skip_till_semicolumn
)
4163 skip_till_semicolumn
= false;
4165 continue; /* advance char */
4168 /* Search for beginning of a token. */
4169 if (!begtoken (*dbp
))
4172 continue; /* advance char */
4175 /* We are at the beginning of a token. */
4176 switch (lowcase (*dbp
))
4179 if (!packages_only
&& nocase_tail ("function"))
4180 Ada_getit (inf
, "/f");
4182 break; /* from switch */
4183 continue; /* advance char */
4185 if (!packages_only
&& nocase_tail ("procedure"))
4186 Ada_getit (inf
, "/p");
4187 else if (nocase_tail ("package"))
4188 Ada_getit (inf
, "/s");
4189 else if (nocase_tail ("protected")) /* protected type */
4190 Ada_getit (inf
, "/t");
4192 break; /* from switch */
4193 continue; /* advance char */
4196 if (typedefs
&& !packages_only
&& nocase_tail ("use"))
4198 /* when tagging types, avoid tagging use type Pack.Typename;
4199 for this, we will skip everything till a ; */
4200 skip_till_semicolumn
= true;
4201 continue; /* advance char */
4205 if (!packages_only
&& nocase_tail ("task"))
4206 Ada_getit (inf
, "/k");
4207 else if (typedefs
&& !packages_only
&& nocase_tail ("type"))
4209 Ada_getit (inf
, "/t");
4210 while (*dbp
!= '\0')
4214 break; /* from switch */
4215 continue; /* advance char */
4218 /* Look for the end of the token. */
4219 while (!endtoken (*dbp
))
4222 } /* advance char */
4223 } /* advance line */
4228 * Unix and microcontroller assembly tag handling
4229 * Labels: /^[a-zA-Z_.$][a-zA_Z0-9_.$]*[: ^I^J]/
4230 * Idea by Bob Weiner, Motorola Inc. (1994)
4233 Asm_labels (FILE *inf
)
4237 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
4239 /* If first char is alphabetic or one of [_.$], test for colon
4240 following identifier. */
4241 if (ISALPHA (*cp
) || *cp
== '_' || *cp
== '.' || *cp
== '$')
4243 /* Read past label. */
4245 while (ISALNUM (*cp
) || *cp
== '_' || *cp
== '.' || *cp
== '$')
4247 if (*cp
== ':' || iswhite (*cp
))
4248 /* Found end of label, so copy it and add it to the table. */
4249 make_tag (lb
.buffer
, cp
- lb
.buffer
, true,
4250 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4258 * Perl sub names: /^sub[ \t\n]+[^ \t\n{]+/
4259 * /^use constant[ \t\n]+[^ \t\n{=,;]+/
4260 * Perl variable names: /^(my|local).../
4261 * Original code by Bart Robinson <lomew@cs.utah.edu> (1995)
4262 * Additions by Michael Ernst <mernst@alum.mit.edu> (1997)
4263 * Ideas by Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> (2001)
4266 Perl_functions (FILE *inf
)
4268 char *package
= savestr ("main"); /* current package name */
4271 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
4273 cp
= skip_spaces (cp
);
4275 if (LOOKING_AT (cp
, "package"))
4278 get_tag (cp
, &package
);
4280 else if (LOOKING_AT (cp
, "sub"))
4286 while (!notinname (*cp
))
4289 continue; /* nothing found */
4290 if ((pos
= etags_strchr (sp
, ':')) != NULL
4291 && pos
< cp
&& pos
[1] == ':')
4292 /* The name is already qualified. */
4293 make_tag (sp
, cp
- sp
, true,
4294 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4298 char savechar
, *name
;
4302 name
= concat (package
, "::", sp
);
4304 make_tag (name
, strlen (name
), true,
4305 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4309 else if (LOOKING_AT (cp
, "use constant")
4310 || LOOKING_AT (cp
, "use constant::defer"))
4312 /* For hash style multi-constant like
4313 use constant { FOO => 123,
4315 only the first FOO is picked up. Parsing across the value
4316 expressions would be difficult in general, due to possible nested
4317 hashes, here-documents, etc. */
4319 cp
= skip_spaces (cp
+1);
4322 else if (globals
) /* only if we are tagging global vars */
4324 /* Skip a qualifier, if any. */
4325 bool qual
= LOOKING_AT (cp
, "my") || LOOKING_AT (cp
, "local");
4326 /* After "my" or "local", but before any following paren or space. */
4327 char *varstart
= cp
;
4329 if (qual
/* should this be removed? If yes, how? */
4330 && (*cp
== '$' || *cp
== '@' || *cp
== '%'))
4335 while (ISALNUM (*cp
) || *cp
== '_');
4339 /* Should be examining a variable list at this point;
4340 could insist on seeing an open parenthesis. */
4341 while (*cp
!= '\0' && *cp
!= ';' && *cp
!= '=' && *cp
!= ')')
4347 make_tag (varstart
, cp
- varstart
, false,
4348 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4357 * Look for /^[\t]*def[ \t\n]+[^ \t\n(:]+/ or /^class[ \t\n]+[^ \t\n(:]+/
4358 * Idea by Eric S. Raymond <esr@thyrsus.com> (1997)
4359 * More ideas by seb bacon <seb@jamkit.com> (2002)
4362 Python_functions (FILE *inf
)
4366 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
4368 cp
= skip_spaces (cp
);
4369 if (LOOKING_AT (cp
, "def") || LOOKING_AT (cp
, "class"))
4372 while (!notinname (*cp
) && *cp
!= ':')
4374 make_tag (name
, cp
- name
, true,
4375 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4384 * - /^[ \t]*function[ \t\n]+[^ \t\n(]+/
4385 * - /^[ \t]*class[ \t\n]+[^ \t\n]+/
4386 * - /^[ \t]*define\(\"[^\"]+/
4387 * Only with --members:
4388 * - /^[ \t]*var[ \t\n]+\$[^ \t\n=;]/
4389 * Idea by Diez B. Roggisch (2001)
4392 PHP_functions (FILE *inf
)
4395 bool search_identifier
= false;
4397 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
4399 cp
= skip_spaces (cp
);
4401 if (search_identifier
4404 while (!notinname (*cp
))
4406 make_tag (name
, cp
- name
, true,
4407 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4408 search_identifier
= false;
4410 else if (LOOKING_AT (cp
, "function"))
4413 cp
= skip_spaces (cp
+1);
4417 while (!notinname (*cp
))
4419 make_tag (name
, cp
- name
, true,
4420 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4423 search_identifier
= true;
4425 else if (LOOKING_AT (cp
, "class"))
4430 while (*cp
!= '\0' && !iswhite (*cp
))
4432 make_tag (name
, cp
- name
, false,
4433 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4436 search_identifier
= true;
4438 else if (strneq (cp
, "define", 6)
4439 && (cp
= skip_spaces (cp
+6))
4441 && (*cp
== '"' || *cp
== '\''))
4445 while (*cp
!= quote
&& *cp
!= '\0')
4447 make_tag (name
, cp
- name
, false,
4448 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4451 && LOOKING_AT (cp
, "var")
4455 while (!notinname (*cp
))
4457 make_tag (name
, cp
- name
, false,
4458 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
4465 * Cobol tag functions
4466 * We could look for anything that could be a paragraph name.
4467 * i.e. anything that starts in column 8 is one word and ends in a full stop.
4468 * Idea by Corny de Souza (1993)
4471 Cobol_paragraphs (FILE *inf
)
4473 register char *bp
, *ep
;
4475 LOOP_ON_INPUT_LINES (inf
, lb
, bp
)
4481 /* If eoln, compiler option or comment ignore whole line. */
4482 if (bp
[-1] != ' ' || !ISALNUM (bp
[0]))
4485 for (ep
= bp
; ISALNUM (*ep
) || *ep
== '-'; ep
++)
4488 make_tag (bp
, ep
- bp
, true,
4489 lb
.buffer
, ep
- lb
.buffer
+ 1, lineno
, linecharno
);
4496 * Ideas by Assar Westerlund <assar@sics.se> (2001)
4499 Makefile_targets (FILE *inf
)
4503 LOOP_ON_INPUT_LINES (inf
, lb
, bp
)
4505 if (*bp
== '\t' || *bp
== '#')
4507 while (*bp
!= '\0' && *bp
!= '=' && *bp
!= ':')
4509 if (*bp
== ':' || (globals
&& *bp
== '='))
4511 /* We should detect if there is more than one tag, but we do not.
4512 We just skip initial and final spaces. */
4513 char * namestart
= skip_spaces (lb
.buffer
);
4514 while (--bp
> namestart
)
4515 if (!notinname (*bp
))
4517 make_tag (namestart
, bp
- namestart
+ 1, true,
4518 lb
.buffer
, bp
- lb
.buffer
+ 2, lineno
, linecharno
);
4526 * Original code by Mosur K. Mohan (1989)
4528 * Locates tags for procedures & functions. Doesn't do any type- or
4529 * var-definitions. It does look for the keyword "extern" or
4530 * "forward" immediately following the procedure statement; if found,
4531 * the tag is skipped.
4534 Pascal_functions (FILE *inf
)
4536 linebuffer tline
; /* mostly copied from C_entries */
4538 int save_lineno
, namelen
, taglen
;
4541 bool /* each of these flags is true if: */
4542 incomment
, /* point is inside a comment */
4543 inquote
, /* point is inside '..' string */
4544 get_tagname
, /* point is after PROCEDURE/FUNCTION
4545 keyword, so next item = potential tag */
4546 found_tag
, /* point is after a potential tag */
4547 inparms
, /* point is within parameter-list */
4548 verify_tag
; /* point has passed the parm-list, so the
4549 next token will determine whether this
4550 is a FORWARD/EXTERN to be ignored, or
4551 whether it is a real tag */
4553 save_lcno
= save_lineno
= namelen
= taglen
= 0; /* keep compiler quiet */
4554 name
= NULL
; /* keep compiler quiet */
4557 linebuffer_init (&tline
);
4559 incomment
= inquote
= false;
4560 found_tag
= false; /* have a proc name; check if extern */
4561 get_tagname
= false; /* found "procedure" keyword */
4562 inparms
= false; /* found '(' after "proc" */
4563 verify_tag
= false; /* check if "extern" is ahead */
4566 while (!feof (inf
)) /* long main loop to get next char */
4569 if (c
== '\0') /* if end of line */
4571 readline (&lb
, inf
);
4575 if (!((found_tag
&& verify_tag
)
4577 c
= *dbp
++; /* only if don't need *dbp pointing
4578 to the beginning of the name of
4579 the procedure or function */
4583 if (c
== '}') /* within { } comments */
4585 else if (c
== '*' && *dbp
== ')') /* within (* *) comments */
4602 inquote
= true; /* found first quote */
4604 case '{': /* found open { comment */
4608 if (*dbp
== '*') /* found open (* comment */
4613 else if (found_tag
) /* found '(' after tag, i.e., parm-list */
4616 case ')': /* end of parms list */
4621 if (found_tag
&& !inparms
) /* end of proc or fn stmt */
4628 if (found_tag
&& verify_tag
&& (*dbp
!= ' '))
4630 /* Check if this is an "extern" declaration. */
4633 if (lowcase (*dbp
) == 'e')
4635 if (nocase_tail ("extern")) /* superfluous, really! */
4641 else if (lowcase (*dbp
) == 'f')
4643 if (nocase_tail ("forward")) /* check for forward reference */
4649 if (found_tag
&& verify_tag
) /* not external proc, so make tag */
4653 make_tag (name
, namelen
, true,
4654 tline
.buffer
, taglen
, save_lineno
, save_lcno
);
4658 if (get_tagname
) /* grab name of proc or fn */
4665 /* Find block name. */
4666 for (cp
= dbp
+ 1; *cp
!= '\0' && !endtoken (*cp
); cp
++)
4669 /* Save all values for later tagging. */
4670 linebuffer_setlen (&tline
, lb
.len
);
4671 strcpy (tline
.buffer
, lb
.buffer
);
4672 save_lineno
= lineno
;
4673 save_lcno
= linecharno
;
4674 name
= tline
.buffer
+ (dbp
- lb
.buffer
);
4676 taglen
= cp
- lb
.buffer
+ 1;
4678 dbp
= cp
; /* set dbp to e-o-token */
4679 get_tagname
= false;
4683 /* And proceed to check for "extern". */
4685 else if (!incomment
&& !inquote
&& !found_tag
)
4687 /* Check for proc/fn keywords. */
4688 switch (lowcase (c
))
4691 if (nocase_tail ("rocedure")) /* c = 'p', dbp has advanced */
4695 if (nocase_tail ("unction"))
4700 } /* while not eof */
4702 free (tline
.buffer
);
4707 * Lisp tag functions
4708 * look for (def or (DEF, quote or QUOTE
4711 static void L_getit (void);
4716 if (*dbp
== '\'') /* Skip prefix quote */
4718 else if (*dbp
== '(')
4721 /* Try to skip "(quote " */
4722 if (!LOOKING_AT (dbp
, "quote") && !LOOKING_AT (dbp
, "QUOTE"))
4723 /* Ok, then skip "(" before name in (defstruct (foo)) */
4724 dbp
= skip_spaces (dbp
);
4726 get_tag (dbp
, NULL
);
4730 Lisp_functions (FILE *inf
)
4732 LOOP_ON_INPUT_LINES (inf
, lb
, dbp
)
4737 /* "(defvar foo)" is a declaration rather than a definition. */
4741 if (LOOKING_AT (p
, "defvar"))
4743 p
= skip_name (p
); /* past var name */
4744 p
= skip_spaces (p
);
4750 if (strneq (dbp
+ 1, "cl-", 3) || strneq (dbp
+ 1, "CL-", 3))
4753 if (strneq (dbp
+1, "def", 3) || strneq (dbp
+1, "DEF", 3))
4755 dbp
= skip_non_spaces (dbp
);
4756 dbp
= skip_spaces (dbp
);
4761 /* Check for (foo::defmumble name-defined ... */
4764 while (!notinname (*dbp
) && *dbp
!= ':');
4769 while (*dbp
== ':');
4771 if (strneq (dbp
, "def", 3) || strneq (dbp
, "DEF", 3))
4773 dbp
= skip_non_spaces (dbp
);
4774 dbp
= skip_spaces (dbp
);
4784 * Lua script language parsing
4785 * Original code by David A. Capello <dacap@users.sourceforge.net> (2004)
4787 * "function" and "local function" are tags if they start at column 1.
4790 Lua_functions (FILE *inf
)
4794 LOOP_ON_INPUT_LINES (inf
, lb
, bp
)
4796 if (bp
[0] != 'f' && bp
[0] != 'l')
4799 (void)LOOKING_AT (bp
, "local"); /* skip possible "local" */
4801 if (LOOKING_AT (bp
, "function"))
4809 * Just look for lines where the first character is '/'
4810 * Also look at "defineps" for PSWrap
4812 * Richard Mlynarik <mly@adoc.xerox.com> (1997)
4813 * Masatake Yamato <masata-y@is.aist-nara.ac.jp> (1999)
4816 PS_functions (FILE *inf
)
4818 register char *bp
, *ep
;
4820 LOOP_ON_INPUT_LINES (inf
, lb
, bp
)
4825 *ep
!= '\0' && *ep
!= ' ' && *ep
!= '{';
4828 make_tag (bp
, ep
- bp
, true,
4829 lb
.buffer
, ep
- lb
.buffer
+ 1, lineno
, linecharno
);
4831 else if (LOOKING_AT (bp
, "defineps"))
4839 * Ignore anything after \ followed by space or in ( )
4840 * Look for words defined by :
4841 * Look for constant, code, create, defer, value, and variable
4842 * OBP extensions: Look for buffer:, field,
4843 * Ideas by Eduardo Horvath <eeh@netbsd.org> (2004)
4846 Forth_words (FILE *inf
)
4850 LOOP_ON_INPUT_LINES (inf
, lb
, bp
)
4851 while ((bp
= skip_spaces (bp
))[0] != '\0')
4852 if (bp
[0] == '\\' && iswhite (bp
[1]))
4853 break; /* read next line */
4854 else if (bp
[0] == '(' && iswhite (bp
[1]))
4855 do /* skip to ) or eol */
4857 while (*bp
!= ')' && *bp
!= '\0');
4858 else if ((bp
[0] == ':' && iswhite (bp
[1]) && bp
++)
4859 || LOOKING_AT_NOCASE (bp
, "constant")
4860 || LOOKING_AT_NOCASE (bp
, "code")
4861 || LOOKING_AT_NOCASE (bp
, "create")
4862 || LOOKING_AT_NOCASE (bp
, "defer")
4863 || LOOKING_AT_NOCASE (bp
, "value")
4864 || LOOKING_AT_NOCASE (bp
, "variable")
4865 || LOOKING_AT_NOCASE (bp
, "buffer:")
4866 || LOOKING_AT_NOCASE (bp
, "field"))
4867 get_tag (skip_spaces (bp
), NULL
); /* Yay! A definition! */
4869 bp
= skip_non_spaces (bp
);
4874 * Scheme tag functions
4875 * look for (def... xyzzy
4877 * (def ... ((...(xyzzy ....
4879 * Original code by Ken Haase (1985?)
4882 Scheme_functions (FILE *inf
)
4886 LOOP_ON_INPUT_LINES (inf
, lb
, bp
)
4888 if (strneq (bp
, "(def", 4) || strneq (bp
, "(DEF", 4))
4890 bp
= skip_non_spaces (bp
+4);
4891 /* Skip over open parens and white space. Don't continue past
4893 while (*bp
&& notinname (*bp
))
4897 if (LOOKING_AT (bp
, "(SET!") || LOOKING_AT (bp
, "(set!"))
4903 /* Find tags in TeX and LaTeX input files. */
4905 /* TEX_toktab is a table of TeX control sequences that define tags.
4906 * Each entry records one such control sequence.
4908 * Original code from who knows whom.
4910 * Stefan Monnier (2002)
4913 static linebuffer
*TEX_toktab
= NULL
; /* Table with tag tokens */
4915 /* Default set of control sequences to put into TEX_toktab.
4916 The value of environment var TEXTAGS is prepended to this. */
4917 static const char *TEX_defenv
= "\
4918 :chapter:section:subsection:subsubsection:eqno:label:ref:cite:bibitem\
4919 :part:appendix:entry:index:def\
4920 :newcommand:renewcommand:newenvironment:renewenvironment";
4922 static void TEX_mode (FILE *);
4923 static void TEX_decode_env (const char *, const char *);
4925 static char TEX_esc
= '\\';
4926 static char TEX_opgrp
= '{';
4927 static char TEX_clgrp
= '}';
4930 * TeX/LaTeX scanning loop.
4933 TeX_commands (FILE *inf
)
4938 /* Select either \ or ! as escape character. */
4941 /* Initialize token table once from environment. */
4942 if (TEX_toktab
== NULL
)
4943 TEX_decode_env ("TEXTAGS", TEX_defenv
);
4945 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
4947 /* Look at each TEX keyword in line. */
4950 /* Look for a TEX escape. */
4951 while (*cp
++ != TEX_esc
)
4952 if (cp
[-1] == '\0' || cp
[-1] == '%')
4955 for (key
= TEX_toktab
; key
->buffer
!= NULL
; key
++)
4956 if (strneq (cp
, key
->buffer
, key
->len
))
4959 int namelen
, linelen
;
4962 cp
= skip_spaces (cp
+ key
->len
);
4963 if (*cp
== TEX_opgrp
)
4969 (!iswhite (*p
) && *p
!= '#' &&
4970 *p
!= TEX_opgrp
&& *p
!= TEX_clgrp
);
4975 if (!opgrp
|| *p
== TEX_clgrp
)
4977 while (*p
!= '\0' && *p
!= TEX_opgrp
&& *p
!= TEX_clgrp
)
4979 linelen
= p
- lb
.buffer
+ 1;
4981 make_tag (cp
, namelen
, true,
4982 lb
.buffer
, linelen
, lineno
, linecharno
);
4983 goto tex_next_line
; /* We only tag a line once */
4991 #define TEX_LESC '\\'
4992 #define TEX_SESC '!'
4994 /* Figure out whether TeX's escapechar is '\\' or '!' and set grouping
4995 chars accordingly. */
4997 TEX_mode (FILE *inf
)
5001 while ((c
= getc (inf
)) != EOF
)
5003 /* Skip to next line if we hit the TeX comment char. */
5005 while (c
!= '\n' && c
!= EOF
)
5007 else if (c
== TEX_LESC
|| c
== TEX_SESC
)
5023 /* If the input file is compressed, inf is a pipe, and rewind may fail.
5024 No attempt is made to correct the situation. */
5028 /* Read environment and prepend it to the default string.
5029 Build token table. */
5031 TEX_decode_env (const char *evarname
, const char *defenv
)
5033 register const char *env
, *p
;
5036 /* Append default string to environment. */
5037 env
= getenv (evarname
);
5041 env
= concat (env
, defenv
, "");
5043 /* Allocate a token table */
5044 for (len
= 1, p
= env
; p
;)
5045 if ((p
= etags_strchr (p
, ':')) && *++p
!= '\0')
5047 TEX_toktab
= xnew (len
, linebuffer
);
5049 /* Unpack environment string into token table. Be careful about */
5050 /* zero-length strings (leading ':', "::" and trailing ':') */
5051 for (i
= 0; *env
!= '\0';)
5053 p
= etags_strchr (env
, ':');
5054 if (!p
) /* End of environment string. */
5055 p
= env
+ strlen (env
);
5057 { /* Only non-zero strings. */
5058 TEX_toktab
[i
].buffer
= savenstr (env
, p
- env
);
5059 TEX_toktab
[i
].len
= p
- env
;
5066 TEX_toktab
[i
].buffer
= NULL
; /* Mark end of table. */
5067 TEX_toktab
[i
].len
= 0;
5074 /* Texinfo support. Dave Love, Mar. 2000. */
5076 Texinfo_nodes (FILE *inf
)
5079 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
5080 if (LOOKING_AT (cp
, "@node"))
5083 while (*cp
!= '\0' && *cp
!= ',')
5085 make_tag (start
, cp
- start
, true,
5086 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
5093 * Contents of <title>, <h1>, <h2>, <h3> are tags.
5094 * Contents of <a name=xxx> are tags with name xxx.
5096 * Francesco Potortì, 2002.
5099 HTML_labels (FILE *inf
)
5101 bool getnext
= false; /* next text outside of HTML tags is a tag */
5102 bool skiptag
= false; /* skip to the end of the current HTML tag */
5103 bool intag
= false; /* inside an html tag, looking for ID= */
5104 bool inanchor
= false; /* when INTAG, is an anchor, look for NAME= */
5108 linebuffer_setlen (&token_name
, 0); /* no name in buffer */
5110 LOOP_ON_INPUT_LINES (inf
, lb
, dbp
)
5111 for (;;) /* loop on the same line */
5113 if (skiptag
) /* skip HTML tag */
5115 while (*dbp
!= '\0' && *dbp
!= '>')
5121 continue; /* look on the same line */
5123 break; /* go to next line */
5126 else if (intag
) /* look for "name=" or "id=" */
5128 while (*dbp
!= '\0' && *dbp
!= '>'
5129 && lowcase (*dbp
) != 'n' && lowcase (*dbp
) != 'i')
5132 break; /* go to next line */
5137 continue; /* look on the same line */
5139 if ((inanchor
&& LOOKING_AT_NOCASE (dbp
, "name="))
5140 || LOOKING_AT_NOCASE (dbp
, "id="))
5142 bool quoted
= (dbp
[0] == '"');
5145 for (end
= ++dbp
; *end
!= '\0' && *end
!= '"'; end
++)
5148 for (end
= dbp
; *end
!= '\0' && intoken (*end
); end
++)
5150 linebuffer_setlen (&token_name
, end
- dbp
);
5151 memcpy (token_name
.buffer
, dbp
, end
- dbp
);
5152 token_name
.buffer
[end
- dbp
] = '\0';
5155 intag
= false; /* we found what we looked for */
5156 skiptag
= true; /* skip to the end of the tag */
5157 getnext
= true; /* then grab the text */
5158 continue; /* look on the same line */
5163 else if (getnext
) /* grab next tokens and tag them */
5165 dbp
= skip_spaces (dbp
);
5167 break; /* go to next line */
5171 inanchor
= (lowcase (dbp
[1]) == 'a' && !intoken (dbp
[2]));
5172 continue; /* look on the same line */
5175 for (end
= dbp
+ 1; *end
!= '\0' && *end
!= '<'; end
++)
5177 make_tag (token_name
.buffer
, token_name
.len
, true,
5178 dbp
, end
- dbp
, lineno
, linecharno
);
5179 linebuffer_setlen (&token_name
, 0); /* no name in buffer */
5181 break; /* go to next line */
5184 else /* look for an interesting HTML tag */
5186 while (*dbp
!= '\0' && *dbp
!= '<')
5189 break; /* go to next line */
5191 if (lowcase (dbp
[1]) == 'a' && !intoken (dbp
[2]))
5194 continue; /* look on the same line */
5196 else if (LOOKING_AT_NOCASE (dbp
, "<title>")
5197 || LOOKING_AT_NOCASE (dbp
, "<h1>")
5198 || LOOKING_AT_NOCASE (dbp
, "<h2>")
5199 || LOOKING_AT_NOCASE (dbp
, "<h3>"))
5203 continue; /* look on the same line */
5214 * Assumes that the predicate or rule starts at column 0.
5215 * Only the first clause of a predicate or rule is added.
5216 * Original code by Sunichirou Sugou (1989)
5217 * Rewritten by Anders Lindgren (1996)
5219 static size_t prolog_pr (char *, char *);
5220 static void prolog_skip_comment (linebuffer
*, FILE *);
5221 static size_t prolog_atom (char *, size_t);
5224 Prolog_functions (FILE *inf
)
5234 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
5236 if (cp
[0] == '\0') /* Empty line */
5238 else if (iswhite (cp
[0])) /* Not a predicate */
5240 else if (cp
[0] == '/' && cp
[1] == '*') /* comment. */
5241 prolog_skip_comment (&lb
, inf
);
5242 else if ((len
= prolog_pr (cp
, last
)) > 0)
5244 /* Predicate or rule. Store the function name so that we
5245 only generate a tag for the first clause. */
5247 last
= xnew (len
+ 1, char);
5248 else if (len
+ 1 > allocated
)
5249 xrnew (last
, len
+ 1, char);
5250 allocated
= len
+ 1;
5251 memcpy (last
, cp
, len
);
5260 prolog_skip_comment (linebuffer
*plb
, FILE *inf
)
5266 for (cp
= plb
->buffer
; *cp
!= '\0'; cp
++)
5267 if (cp
[0] == '*' && cp
[1] == '/')
5269 readline (plb
, inf
);
5271 while (!feof (inf
));
5275 * A predicate or rule definition is added if it matches:
5276 * <beginning of line><Prolog Atom><whitespace>(
5277 * or <beginning of line><Prolog Atom><whitespace>:-
5279 * It is added to the tags database if it doesn't match the
5280 * name of the previous clause header.
5282 * Return the size of the name of the predicate or rule, or 0 if no
5286 prolog_pr (char *s
, char *last
)
5288 /* Name of last clause. */
5293 pos
= prolog_atom (s
, 0);
5298 pos
= skip_spaces (s
+ pos
) - s
;
5301 || (s
[pos
] == '(' && (pos
+= 1))
5302 || (s
[pos
] == ':' && s
[pos
+ 1] == '-' && (pos
+= 2)))
5303 && (last
== NULL
/* save only the first clause */
5304 || len
!= strlen (last
)
5305 || !strneq (s
, last
, len
)))
5307 make_tag (s
, len
, true, s
, pos
, lineno
, linecharno
);
5315 * Consume a Prolog atom.
5316 * Return the number of bytes consumed, or 0 if there was an error.
5318 * A prolog atom, in this context, could be one of:
5319 * - An alphanumeric sequence, starting with a lower case letter.
5320 * - A quoted arbitrary string. Single quotes can escape themselves.
5321 * Backslash quotes everything.
5324 prolog_atom (char *s
, size_t pos
)
5330 if (ISLOWER (s
[pos
]) || (s
[pos
] == '_'))
5332 /* The atom is unquoted. */
5334 while (ISALNUM (s
[pos
]) || (s
[pos
] == '_'))
5338 return pos
- origpos
;
5340 else if (s
[pos
] == '\'')
5351 pos
++; /* A double quote */
5353 else if (s
[pos
] == '\0')
5354 /* Multiline quoted atoms are ignored. */
5356 else if (s
[pos
] == '\\')
5358 if (s
[pos
+1] == '\0')
5365 return pos
- origpos
;
5373 * Support for Erlang
5375 * Generates tags for functions, defines, and records.
5376 * Assumes that Erlang functions start at column 0.
5377 * Original code by Anders Lindgren (1996)
5379 static int erlang_func (char *, char *);
5380 static void erlang_attribute (char *);
5381 static int erlang_atom (char *);
5384 Erlang_functions (FILE *inf
)
5394 LOOP_ON_INPUT_LINES (inf
, lb
, cp
)
5396 if (cp
[0] == '\0') /* Empty line */
5398 else if (iswhite (cp
[0])) /* Not function nor attribute */
5400 else if (cp
[0] == '%') /* comment */
5402 else if (cp
[0] == '"') /* Sometimes, strings start in column one */
5404 else if (cp
[0] == '-') /* attribute, e.g. "-define" */
5406 erlang_attribute (cp
);
5413 else if ((len
= erlang_func (cp
, last
)) > 0)
5416 * Function. Store the function name so that we only
5417 * generates a tag for the first clause.
5420 last
= xnew (len
+ 1, char);
5421 else if (len
+ 1 > allocated
)
5422 xrnew (last
, len
+ 1, char);
5423 allocated
= len
+ 1;
5424 memcpy (last
, cp
, len
);
5433 * A function definition is added if it matches:
5434 * <beginning of line><Erlang Atom><whitespace>(
5436 * It is added to the tags database if it doesn't match the
5437 * name of the previous clause header.
5439 * Return the size of the name of the function, or 0 if no function
5443 erlang_func (char *s
, char *last
)
5445 /* Name of last clause. */
5450 pos
= erlang_atom (s
);
5455 pos
= skip_spaces (s
+ pos
) - s
;
5457 /* Save only the first clause. */
5460 || len
!= (int)strlen (last
)
5461 || !strneq (s
, last
, len
)))
5463 make_tag (s
, len
, true, s
, pos
, lineno
, linecharno
);
5472 * Handle attributes. Currently, tags are generated for defines
5475 * They are on the form:
5476 * -define(foo, bar).
5477 * -define(Foo(M, N), M+N).
5478 * -record(graph, {vtab = notable, cyclic = true}).
5481 erlang_attribute (char *s
)
5485 if ((LOOKING_AT (cp
, "-define") || LOOKING_AT (cp
, "-record"))
5488 int len
= erlang_atom (skip_spaces (cp
));
5490 make_tag (cp
, len
, true, s
, cp
+ len
- s
, lineno
, linecharno
);
5497 * Consume an Erlang atom (or variable).
5498 * Return the number of bytes consumed, or -1 if there was an error.
5501 erlang_atom (char *s
)
5505 if (ISALPHA (s
[pos
]) || s
[pos
] == '_')
5507 /* The atom is unquoted. */
5510 while (ISALNUM (s
[pos
]) || s
[pos
] == '_');
5512 else if (s
[pos
] == '\'')
5514 for (pos
++; s
[pos
] != '\''; pos
++)
5515 if (s
[pos
] == '\0' /* multiline quoted atoms are ignored */
5516 || (s
[pos
] == '\\' && s
[++pos
] == '\0'))
5525 static char *scan_separators (char *);
5526 static void add_regex (char *, language
*);
5527 static char *substitute (char *, char *, struct re_registers
*);
5530 * Take a string like "/blah/" and turn it into "blah", verifying
5531 * that the first and last characters are the same, and handling
5532 * quoted separator characters. Actually, stops on the occurrence of
5533 * an unquoted separator. Also process \t, \n, etc. and turn into
5534 * appropriate characters. Works in place. Null terminates name string.
5535 * Returns pointer to terminating separator, or NULL for
5536 * unterminated regexps.
5539 scan_separators (char *name
)
5542 char *copyto
= name
;
5543 bool quoted
= false;
5545 for (++name
; *name
!= '\0'; ++name
)
5551 case 'a': *copyto
++ = '\007'; break; /* BEL (bell) */
5552 case 'b': *copyto
++ = '\b'; break; /* BS (back space) */
5553 case 'd': *copyto
++ = 0177; break; /* DEL (delete) */
5554 case 'e': *copyto
++ = 033; break; /* ESC (delete) */
5555 case 'f': *copyto
++ = '\f'; break; /* FF (form feed) */
5556 case 'n': *copyto
++ = '\n'; break; /* NL (new line) */
5557 case 'r': *copyto
++ = '\r'; break; /* CR (carriage return) */
5558 case 't': *copyto
++ = '\t'; break; /* TAB (horizontal tab) */
5559 case 'v': *copyto
++ = '\v'; break; /* VT (vertical tab) */
5565 /* Something else is quoted, so preserve the quote. */
5573 else if (*name
== '\\')
5575 else if (*name
== sep
)
5581 name
= NULL
; /* signal unterminated regexp */
5583 /* Terminate copied string. */
5588 /* Look at the argument of --regex or --no-regex and do the right
5589 thing. Same for each line of a regexp file. */
5591 analyse_regex (char *regex_arg
)
5593 if (regex_arg
== NULL
)
5595 free_regexps (); /* --no-regex: remove existing regexps */
5599 /* A real --regexp option or a line in a regexp file. */
5600 switch (regex_arg
[0])
5602 /* Comments in regexp file or null arg to --regex. */
5608 /* Read a regex file. This is recursive and may result in a
5609 loop, which will stop when the file descriptors are exhausted. */
5613 linebuffer regexbuf
;
5614 char *regexfile
= regex_arg
+ 1;
5616 /* regexfile is a file containing regexps, one per line. */
5617 regexfp
= fopen (regexfile
, "r");
5618 if (regexfp
== NULL
)
5620 linebuffer_init (®exbuf
);
5621 while (readline_internal (®exbuf
, regexfp
) > 0)
5622 analyse_regex (regexbuf
.buffer
);
5623 free (regexbuf
.buffer
);
5628 /* Regexp to be used for a specific language only. */
5632 char *lang_name
= regex_arg
+ 1;
5635 for (cp
= lang_name
; *cp
!= '}'; cp
++)
5638 error ("unterminated language name in regex: %s", regex_arg
);
5642 lang
= get_language_from_langname (lang_name
);
5645 add_regex (cp
, lang
);
5649 /* Regexp to be used for any language. */
5651 add_regex (regex_arg
, NULL
);
5656 /* Separate the regexp pattern, compile it,
5657 and care for optional name and modifiers. */
5659 add_regex (char *regexp_pattern
, language
*lang
)
5661 static struct re_pattern_buffer zeropattern
;
5662 char sep
, *pat
, *name
, *modifiers
;
5665 struct re_pattern_buffer
*patbuf
;
5668 force_explicit_name
= true, /* do not use implicit tag names */
5669 ignore_case
= false, /* case is significant */
5670 multi_line
= false, /* matches are done one line at a time */
5671 single_line
= false; /* dot does not match newline */
5674 if (strlen (regexp_pattern
) < 3)
5676 error ("null regexp");
5679 sep
= regexp_pattern
[0];
5680 name
= scan_separators (regexp_pattern
);
5683 error ("%s: unterminated regexp", regexp_pattern
);
5688 error ("null name for regexp \"%s\"", regexp_pattern
);
5691 modifiers
= scan_separators (name
);
5692 if (modifiers
== NULL
) /* no terminating separator --> no name */
5698 modifiers
+= 1; /* skip separator */
5700 /* Parse regex modifiers. */
5701 for (; modifiers
[0] != '\0'; modifiers
++)
5702 switch (modifiers
[0])
5705 if (modifiers
== name
)
5706 error ("forcing explicit tag name but no name, ignoring");
5707 force_explicit_name
= true;
5717 need_filebuf
= true;
5720 error ("invalid regexp modifier `%c', ignoring", modifiers
[0]);
5724 patbuf
= xnew (1, struct re_pattern_buffer
);
5725 *patbuf
= zeropattern
;
5728 static char lc_trans
[CHARS
];
5730 for (i
= 0; i
< CHARS
; i
++)
5731 lc_trans
[i
] = lowcase (i
);
5732 patbuf
->translate
= lc_trans
; /* translation table to fold case */
5736 pat
= concat ("^", regexp_pattern
, ""); /* anchor to beginning of line */
5738 pat
= regexp_pattern
;
5741 re_set_syntax (RE_SYNTAX_EMACS
| RE_DOT_NEWLINE
);
5743 re_set_syntax (RE_SYNTAX_EMACS
);
5745 err
= re_compile_pattern (pat
, strlen (pat
), patbuf
);
5750 error ("%s while compiling pattern", err
);
5755 p_head
= xnew (1, regexp
);
5756 p_head
->pattern
= savestr (regexp_pattern
);
5757 p_head
->p_next
= rp
;
5758 p_head
->lang
= lang
;
5759 p_head
->pat
= patbuf
;
5760 p_head
->name
= savestr (name
);
5761 p_head
->error_signaled
= false;
5762 p_head
->force_explicit_name
= force_explicit_name
;
5763 p_head
->ignore_case
= ignore_case
;
5764 p_head
->multi_line
= multi_line
;
5768 * Do the substitutions indicated by the regular expression and
5772 substitute (char *in
, char *out
, struct re_registers
*regs
)
5775 int size
, dig
, diglen
;
5778 size
= strlen (out
);
5780 /* Pass 1: figure out how much to allocate by finding all \N strings. */
5781 if (out
[size
- 1] == '\\')
5782 fatal ("pattern error in \"%s\"", out
);
5783 for (t
= etags_strchr (out
, '\\');
5785 t
= etags_strchr (t
+ 2, '\\'))
5789 diglen
= regs
->end
[dig
] - regs
->start
[dig
];
5795 /* Allocate space and do the substitutions. */
5797 result
= xnew (size
+ 1, char);
5799 for (t
= result
; *out
!= '\0'; out
++)
5800 if (*out
== '\\' && ISDIGIT (*++out
))
5803 diglen
= regs
->end
[dig
] - regs
->start
[dig
];
5804 memcpy (t
, in
+ regs
->start
[dig
], diglen
);
5811 assert (t
<= result
+ size
);
5812 assert (t
- result
== (int)strlen (result
));
5817 /* Deallocate all regexps. */
5822 while (p_head
!= NULL
)
5824 rp
= p_head
->p_next
;
5825 free (p_head
->pattern
);
5826 free (p_head
->name
);
5834 * Reads the whole file as a single string from `filebuf' and looks for
5835 * multi-line regular expressions, creating tags on matches.
5836 * readline already dealt with normal regexps.
5838 * Idea by Ben Wing <ben@666.com> (2002).
5841 regex_tag_multiline (void)
5843 char *buffer
= filebuf
.buffer
;
5847 for (rp
= p_head
; rp
!= NULL
; rp
= rp
->p_next
)
5851 if (!rp
->multi_line
)
5852 continue; /* skip normal regexps */
5854 /* Generic initializations before parsing file from memory. */
5855 lineno
= 1; /* reset global line number */
5856 charno
= 0; /* reset global char number */
5857 linecharno
= 0; /* reset global char number of line start */
5859 /* Only use generic regexps or those for the current language. */
5860 if (rp
->lang
!= NULL
&& rp
->lang
!= curfdp
->lang
)
5863 while (match
>= 0 && match
< filebuf
.len
)
5865 match
= re_search (rp
->pat
, buffer
, filebuf
.len
, charno
,
5866 filebuf
.len
- match
, &rp
->regs
);
5871 if (!rp
->error_signaled
)
5873 error ("regexp stack overflow while matching \"%s\"",
5875 rp
->error_signaled
= true;
5882 if (match
== rp
->regs
.end
[0])
5884 if (!rp
->error_signaled
)
5886 error ("regexp matches the empty string: \"%s\"",
5888 rp
->error_signaled
= true;
5890 match
= -3; /* exit from while loop */
5894 /* Match occurred. Construct a tag. */
5895 while (charno
< rp
->regs
.end
[0])
5896 if (buffer
[charno
++] == '\n')
5897 lineno
++, linecharno
= charno
;
5899 if (name
[0] == '\0')
5901 else /* make a named tag */
5902 name
= substitute (buffer
, rp
->name
, &rp
->regs
);
5903 if (rp
->force_explicit_name
)
5904 /* Force explicit tag name, if a name is there. */
5905 pfnote (name
, true, buffer
+ linecharno
,
5906 charno
- linecharno
+ 1, lineno
, linecharno
);
5908 make_tag (name
, strlen (name
), true, buffer
+ linecharno
,
5909 charno
- linecharno
+ 1, lineno
, linecharno
);
5918 nocase_tail (const char *cp
)
5920 register int len
= 0;
5922 while (*cp
!= '\0' && lowcase (*cp
) == lowcase (dbp
[len
]))
5924 if (*cp
== '\0' && !intoken (dbp
[len
]))
5933 get_tag (register char *bp
, char **namepp
)
5935 register char *cp
= bp
;
5939 /* Go till you get to white space or a syntactic break */
5940 for (cp
= bp
+ 1; !notinname (*cp
); cp
++)
5942 make_tag (bp
, cp
- bp
, true,
5943 lb
.buffer
, cp
- lb
.buffer
+ 1, lineno
, linecharno
);
5947 *namepp
= savenstr (bp
, cp
- bp
);
5951 * Read a line of text from `stream' into `lbp', excluding the
5952 * newline or CR-NL, if any. Return the number of characters read from
5953 * `stream', which is the length of the line including the newline.
5955 * On DOS or Windows we do not count the CR character, if any before the
5956 * NL, in the returned length; this mirrors the behavior of Emacs on those
5957 * platforms (for text files, it translates CR-NL to NL as it reads in the
5960 * If multi-line regular expressions are requested, each line read is
5961 * appended to `filebuf'.
5964 readline_internal (linebuffer
*lbp
, register FILE *stream
)
5966 char *buffer
= lbp
->buffer
;
5967 register char *p
= lbp
->buffer
;
5968 register char *pend
;
5971 pend
= p
+ lbp
->size
; /* Separate to avoid 386/IX compiler bug. */
5975 register int c
= getc (stream
);
5978 /* We're at the end of linebuffer: expand it. */
5980 xrnew (buffer
, lbp
->size
, char);
5981 p
+= buffer
- lbp
->buffer
;
5982 pend
= buffer
+ lbp
->size
;
5983 lbp
->buffer
= buffer
;
5993 if (p
> buffer
&& p
[-1] == '\r')
5997 /* Assume CRLF->LF translation will be performed by Emacs
5998 when loading this file, so CRs won't appear in the buffer.
5999 It would be cleaner to compensate within Emacs;
6000 however, Emacs does not know how many CRs were deleted
6001 before any given point in the file. */
6016 lbp
->len
= p
- buffer
;
6018 if (need_filebuf
/* we need filebuf for multi-line regexps */
6019 && chars_deleted
> 0) /* not at EOF */
6021 while (filebuf
.size
<= filebuf
.len
+ lbp
->len
+ 1) /* +1 for \n */
6023 /* Expand filebuf. */
6025 xrnew (filebuf
.buffer
, filebuf
.size
, char);
6027 memcpy (filebuf
.buffer
+ filebuf
.len
, lbp
->buffer
, lbp
->len
);
6028 filebuf
.len
+= lbp
->len
;
6029 filebuf
.buffer
[filebuf
.len
++] = '\n';
6030 filebuf
.buffer
[filebuf
.len
] = '\0';
6033 return lbp
->len
+ chars_deleted
;
6037 * Like readline_internal, above, but in addition try to match the
6038 * input line against relevant regular expressions and manage #line
6042 readline (linebuffer
*lbp
, FILE *stream
)
6046 linecharno
= charno
; /* update global char number of line start */
6047 result
= readline_internal (lbp
, stream
); /* read line */
6048 lineno
+= 1; /* increment global line number */
6049 charno
+= result
; /* increment global char number */
6051 /* Honor #line directives. */
6052 if (!no_line_directive
)
6054 static bool discard_until_line_directive
;
6056 /* Check whether this is a #line directive. */
6057 if (result
> 12 && strneq (lbp
->buffer
, "#line ", 6))
6062 if (sscanf (lbp
->buffer
, "#line %u \"%n", &lno
, &start
) >= 1
6063 && start
> 0) /* double quote character found */
6065 char *endp
= lbp
->buffer
+ start
;
6067 while ((endp
= etags_strchr (endp
, '"')) != NULL
6068 && endp
[-1] == '\\')
6071 /* Ok, this is a real #line directive. Let's deal with it. */
6073 char *taggedabsname
; /* absolute name of original file */
6074 char *taggedfname
; /* name of original file as given */
6075 char *name
; /* temp var */
6077 discard_until_line_directive
= false; /* found it */
6078 name
= lbp
->buffer
+ start
;
6080 canonicalize_filename (name
);
6081 taggedabsname
= absolute_filename (name
, tagfiledir
);
6082 if (filename_is_absolute (name
)
6083 || filename_is_absolute (curfdp
->infname
))
6084 taggedfname
= savestr (taggedabsname
);
6086 taggedfname
= relative_filename (taggedabsname
,tagfiledir
);
6088 if (streq (curfdp
->taggedfname
, taggedfname
))
6089 /* The #line directive is only a line number change. We
6090 deal with this afterwards. */
6093 /* The tags following this #line directive should be
6094 attributed to taggedfname. In order to do this, set
6095 curfdp accordingly. */
6097 fdesc
*fdp
; /* file description pointer */
6099 /* Go look for a file description already set up for the
6100 file indicated in the #line directive. If there is
6101 one, use it from now until the next #line
6103 for (fdp
= fdhead
; fdp
!= NULL
; fdp
= fdp
->next
)
6104 if (streq (fdp
->infname
, curfdp
->infname
)
6105 && streq (fdp
->taggedfname
, taggedfname
))
6106 /* If we remove the second test above (after the &&)
6107 then all entries pertaining to the same file are
6108 coalesced in the tags file. If we use it, then
6109 entries pertaining to the same file but generated
6110 from different files (via #line directives) will
6111 go into separate sections in the tags file. These
6112 alternatives look equivalent. The first one
6113 destroys some apparently useless information. */
6119 /* Else, if we already tagged the real file, skip all
6120 input lines until the next #line directive. */
6121 if (fdp
== NULL
) /* not found */
6122 for (fdp
= fdhead
; fdp
!= NULL
; fdp
= fdp
->next
)
6123 if (streq (fdp
->infabsname
, taggedabsname
))
6125 discard_until_line_directive
= true;
6129 /* Else create a new file description and use that from
6130 now on, until the next #line directive. */
6131 if (fdp
== NULL
) /* not found */
6134 fdhead
= xnew (1, fdesc
);
6135 *fdhead
= *curfdp
; /* copy curr. file description */
6137 fdhead
->infname
= savestr (curfdp
->infname
);
6138 fdhead
->infabsname
= savestr (curfdp
->infabsname
);
6139 fdhead
->infabsdir
= savestr (curfdp
->infabsdir
);
6140 fdhead
->taggedfname
= taggedfname
;
6141 fdhead
->usecharno
= false;
6142 fdhead
->prop
= NULL
;
6143 fdhead
->written
= false;
6147 free (taggedabsname
);
6149 readline (lbp
, stream
);
6151 } /* if a real #line directive */
6152 } /* if #line is followed by a number */
6153 } /* if line begins with "#line " */
6155 /* If we are here, no #line directive was found. */
6156 if (discard_until_line_directive
)
6160 /* Do a tail recursion on ourselves, thus discarding the contents
6161 of the line buffer. */
6162 readline (lbp
, stream
);
6166 discard_until_line_directive
= false;
6169 } /* if #line directives should be considered */
6176 /* Match against relevant regexps. */
6178 for (rp
= p_head
; rp
!= NULL
; rp
= rp
->p_next
)
6180 /* Only use generic regexps or those for the current language.
6181 Also do not use multiline regexps, which is the job of
6182 regex_tag_multiline. */
6183 if ((rp
->lang
!= NULL
&& rp
->lang
!= fdhead
->lang
)
6187 match
= re_match (rp
->pat
, lbp
->buffer
, lbp
->len
, 0, &rp
->regs
);
6192 if (!rp
->error_signaled
)
6194 error ("regexp stack overflow while matching \"%s\"",
6196 rp
->error_signaled
= true;
6203 /* Empty string matched. */
6204 if (!rp
->error_signaled
)
6206 error ("regexp matches the empty string: \"%s\"", rp
->pattern
);
6207 rp
->error_signaled
= true;
6211 /* Match occurred. Construct a tag. */
6213 if (name
[0] == '\0')
6215 else /* make a named tag */
6216 name
= substitute (lbp
->buffer
, rp
->name
, &rp
->regs
);
6217 if (rp
->force_explicit_name
)
6218 /* Force explicit tag name, if a name is there. */
6219 pfnote (name
, true, lbp
->buffer
, match
, lineno
, linecharno
);
6221 make_tag (name
, strlen (name
), true,
6222 lbp
->buffer
, match
, lineno
, linecharno
);
6231 * Return a pointer to a space of size strlen(cp)+1 allocated
6232 * with xnew where the string CP has been copied.
6235 savestr (const char *cp
)
6237 return savenstr (cp
, strlen (cp
));
6241 * Return a pointer to a space of size LEN+1 allocated with xnew where
6242 * the string CP has been copied for at most the first LEN characters.
6245 savenstr (const char *cp
, int len
)
6247 char *dp
= xnew (len
+ 1, char);
6249 return memcpy (dp
, cp
, len
);
6253 * Return the ptr in sp at which the character c last
6254 * appears; NULL if not found
6256 * Identical to POSIX strrchr, included for portability.
6259 etags_strrchr (register const char *sp
, register int c
)
6261 register const char *r
;
6273 * Return the ptr in sp at which the character c first
6274 * appears; NULL if not found
6276 * Identical to POSIX strchr, included for portability.
6279 etags_strchr (register const char *sp
, register int c
)
6289 /* Skip spaces (end of string is not space), return new pointer. */
6291 skip_spaces (char *cp
)
6293 while (iswhite (*cp
))
6298 /* Skip non spaces, except end of string, return new pointer. */
6300 skip_non_spaces (char *cp
)
6302 while (*cp
!= '\0' && !iswhite (*cp
))
6307 /* Skip any chars in the "name" class.*/
6309 skip_name (char *cp
)
6311 /* '\0' is a notinname() so loop stops there too */
6312 while (! notinname (*cp
))
6317 /* Print error message and exit. */
6319 fatal (const char *s1
, const char *s2
)
6322 exit (EXIT_FAILURE
);
6326 pfatal (const char *s1
)
6329 exit (EXIT_FAILURE
);
6333 suggest_asking_for_help (void)
6335 fprintf (stderr
, "\tTry `%s --help' for a complete list of options.\n",
6337 exit (EXIT_FAILURE
);
6340 /* Output a diagnostic with printf-style FORMAT and args. */
6342 error (const char *format
, ...)
6345 va_start (ap
, format
);
6346 fprintf (stderr
, "%s: ", progname
);
6347 vfprintf (stderr
, format
, ap
);
6348 fprintf (stderr
, "\n");
6352 /* Return a newly-allocated string whose contents
6353 concatenate those of s1, s2, s3. */
6355 concat (const char *s1
, const char *s2
, const char *s3
)
6357 int len1
= strlen (s1
), len2
= strlen (s2
), len3
= strlen (s3
);
6358 char *result
= xnew (len1
+ len2
+ len3
+ 1, char);
6360 strcpy (result
, s1
);
6361 strcpy (result
+ len1
, s2
);
6362 strcpy (result
+ len1
+ len2
, s3
);
6368 /* Does the same work as the system V getcwd, but does not need to
6369 guess the buffer size in advance. */
6374 char *path
= xnew (bufsize
, char);
6376 while (getcwd (path
, bufsize
) == NULL
)
6378 if (errno
!= ERANGE
)
6382 path
= xnew (bufsize
, char);
6385 canonicalize_filename (path
);
6389 /* Return a newly allocated string containing the file name of FILE
6390 relative to the absolute directory DIR (which should end with a slash). */
6392 relative_filename (char *file
, char *dir
)
6394 char *fp
, *dp
, *afn
, *res
;
6397 /* Find the common root of file and dir (with a trailing slash). */
6398 afn
= absolute_filename (file
, cwd
);
6401 while (*fp
++ == *dp
++)
6403 fp
--, dp
--; /* back to the first differing char */
6405 if (fp
== afn
&& afn
[0] != '/') /* cannot build a relative name */
6408 do /* look at the equal chars until '/' */
6412 /* Build a sequence of "../" strings for the resulting relative file name. */
6414 while ((dp
= etags_strchr (dp
+ 1, '/')) != NULL
)
6416 res
= xnew (3*i
+ strlen (fp
+ 1) + 1, char);
6419 strcat (res
, "../");
6421 /* Add the file name relative to the common root of file and dir. */
6422 strcat (res
, fp
+ 1);
6428 /* Return a newly allocated string containing the absolute file name
6429 of FILE given DIR (which should end with a slash). */
6431 absolute_filename (char *file
, char *dir
)
6433 char *slashp
, *cp
, *res
;
6435 if (filename_is_absolute (file
))
6436 res
= savestr (file
);
6438 /* We don't support non-absolute file names with a drive
6439 letter, like `d:NAME' (it's too much hassle). */
6440 else if (file
[1] == ':')
6441 fatal ("%s: relative file names with drive letters not supported", file
);
6444 res
= concat (dir
, file
, "");
6446 /* Delete the "/dirname/.." and "/." substrings. */
6447 slashp
= etags_strchr (res
, '/');
6448 while (slashp
!= NULL
&& slashp
[0] != '\0')
6450 if (slashp
[1] == '.')
6452 if (slashp
[2] == '.'
6453 && (slashp
[3] == '/' || slashp
[3] == '\0'))
6458 while (cp
>= res
&& !filename_is_absolute (cp
));
6460 cp
= slashp
; /* the absolute name begins with "/.." */
6462 /* Under MSDOS and NT we get `d:/NAME' as absolute
6463 file name, so the luser could say `d:/../NAME'.
6464 We silently treat this as `d:/NAME'. */
6465 else if (cp
[0] != '/')
6468 memmove (cp
, slashp
+ 3, strlen (slashp
+ 2));
6472 else if (slashp
[2] == '/' || slashp
[2] == '\0')
6474 memmove (slashp
, slashp
+ 2, strlen (slashp
+ 1));
6479 slashp
= etags_strchr (slashp
+ 1, '/');
6482 if (res
[0] == '\0') /* just a safety net: should never happen */
6485 return savestr ("/");
6491 /* Return a newly allocated string containing the absolute
6492 file name of dir where FILE resides given DIR (which should
6493 end with a slash). */
6495 absolute_dirname (char *file
, char *dir
)
6500 slashp
= etags_strrchr (file
, '/');
6502 return savestr (dir
);
6505 res
= absolute_filename (file
, dir
);
6511 /* Whether the argument string is an absolute file name. The argument
6512 string must have been canonicalized with canonicalize_filename. */
6514 filename_is_absolute (char *fn
)
6516 return (fn
[0] == '/'
6518 || (ISALPHA (fn
[0]) && fn
[1] == ':' && fn
[2] == '/')
6523 /* Downcase DOS drive letter and collapse separators into single slashes.
6526 canonicalize_filename (register char *fn
)
6532 /* Canonicalize drive letter case. */
6533 # define ISUPPER(c) isupper (CHAR (c))
6534 if (fn
[0] != '\0' && fn
[1] == ':' && ISUPPER (fn
[0]))
6535 fn
[0] = lowcase (fn
[0]);
6540 /* Collapse multiple separators into a single slash. */
6541 for (cp
= fn
; *cp
!= '\0'; cp
++, fn
++)
6545 while (cp
[1] == sep
)
6554 /* Initialize a linebuffer for use. */
6556 linebuffer_init (linebuffer
*lbp
)
6558 lbp
->size
= (DEBUG
) ? 3 : 200;
6559 lbp
->buffer
= xnew (lbp
->size
, char);
6560 lbp
->buffer
[0] = '\0';
6564 /* Set the minimum size of a string contained in a linebuffer. */
6566 linebuffer_setlen (linebuffer
*lbp
, int toksize
)
6568 while (lbp
->size
<= toksize
)
6571 xrnew (lbp
->buffer
, lbp
->size
, char);
6576 /* Like malloc but get fatal error if memory is exhausted. */
6578 xmalloc (size_t size
)
6580 void *result
= malloc (size
);
6582 fatal ("virtual memory exhausted", (char *)NULL
);
6587 xrealloc (char *ptr
, size_t size
)
6589 void *result
= realloc (ptr
, size
);
6591 fatal ("virtual memory exhausted", (char *)NULL
);
6597 * indent-tabs-mode: t
6600 * c-font-lock-extra-types: ("FILE" "bool" "language" "linebuffer" "fdesc" "node" "regexp")
6601 * c-file-style: "gnu"
6605 /* etags.c ends here */