1 /* ebrowse.c --- parsing files for the ebrowse C++ browser
3 Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 99,
4 2000, 2001, 2002 Free Software Foundation Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to the
20 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
41 /* The SunOS compiler doesn't have SEEK_END. */
46 /* Conditionalize function prototypes. */
48 #ifdef PROTOTYPES /* From config.h. */
54 /* Value is non-zero if strings X and Y compare equal. */
56 #define streq(X, Y) (*(X) == *(Y) && strcmp ((X) + 1, (Y) + 1) == 0)
58 /* The ubiquitous `max' and `min' macros. */
61 #define max(X, Y) ((X) > (Y) ? (X) : (Y))
62 #define min(X, Y) ((X) < (Y) ? (X) : (Y))
65 /* Files are read in chunks of this number of bytes. */
67 #define READ_CHUNK_SIZE (100 * 1024)
69 /* The character used as a separator in path lists (like $PATH). */
71 #if defined(__MSDOS__)
72 #define PATH_LIST_SEPARATOR ';'
73 #define FILENAME_EQ(X,Y) (strcasecmp(X,Y) == 0)
75 #if defined(WINDOWSNT)
76 #define PATH_LIST_SEPARATOR ';'
77 #define FILENAME_EQ(X,Y) (stricmp(X,Y) == 0)
79 #define PATH_LIST_SEPARATOR ':'
80 #define FILENAME_EQ(X,Y) (streq(X,Y))
83 /* The default output file name. */
85 #define DEFAULT_OUTFILE "BROWSE"
87 /* A version string written to the output file. Change this whenever
88 the structure of the output file changes. */
90 #define EBROWSE_FILE_VERSION "ebrowse 5.0"
92 /* The output file consists of a tree of Lisp objects, with major
93 nodes built out of Lisp structures. These are the heads of the
94 Lisp structs with symbols identifying their type. */
96 #define TREE_HEADER_STRUCT "[ebrowse-hs "
97 #define TREE_STRUCT "[ebrowse-ts "
98 #define MEMBER_STRUCT "[ebrowse-ms "
99 #define BROWSE_STRUCT "[ebrowse-bs "
100 #define CLASS_STRUCT "[ebrowse-cs "
102 /* The name of the symbol table entry for global functions, variables,
103 defines etc. This name also appears in the browser display. */
105 #define GLOBALS_NAME "*Globals*"
107 /* Token definitions. */
111 YYEOF
= 0, /* end of file */
112 CSTRING
= 256, /* string constant */
113 CCHAR
, /* character constant */
114 CINT
, /* integral constant */
115 CFLOAT
, /* real constant */
118 LSHIFTASGN
, /* <<= */
119 RSHIFTASGN
, /* >>= */
121 IDENT
, /* identifier */
144 /* Keywords. The undef's are there because these
145 three symbols are very likely to be defined somewhere. */
158 CONTINUE
, /* continue */
159 DEFAULT
, /* default */
171 T_INLINE
, /* inline */
175 OPERATOR
, /* operator */
176 PRIVATE
, /* private */
177 PROTECTED
, /* protected */
179 REGISTER
, /* register */
187 TEMPLATE
, /* template */
191 TYPEDEF
, /* typedef */
193 UNSIGNED
, /* unsigned */
194 VIRTUAL
, /* virtual */
196 VOLATILE
, /* volatile */
198 MUTABLE
, /* mutable */
202 SIGNATURE
, /* signature (GNU extension) */
203 NAMESPACE
, /* namespace */
204 EXPLICIT
, /* explicit */
205 TYPENAME
, /* typename */
206 CONST_CAST
, /* const_cast */
207 DYNAMIC_CAST
, /* dynamic_cast */
208 REINTERPRET_CAST
, /* reinterpret_cast */
209 STATIC_CAST
, /* static_cast */
215 /* Storage classes, in a wider sense. */
220 SC_MEMBER
, /* Is an instance member. */
221 SC_STATIC
, /* Is static member. */
222 SC_FRIEND
, /* Is friend function. */
223 SC_TYPE
/* Is a type definition. */
226 /* Member visibility. */
237 #define F_VIRTUAL 1 /* Is virtual function. */
238 #define F_INLINE 2 /* Is inline function. */
239 #define F_CONST 4 /* Is const. */
240 #define F_PURE 8 /* Is pure virtual function. */
241 #define F_MUTABLE 16 /* Is mutable. */
242 #define F_TEMPLATE 32 /* Is a template. */
243 #define F_EXPLICIT 64 /* Is explicit constructor. */
244 #define F_THROW 128 /* Has a throw specification. */
245 #define F_EXTERNC 256 /* Is declared extern "C". */
246 #define F_DEFINE 512 /* Is a #define. */
248 /* Two macros to set and test a bit in an int. */
250 #define SET_FLAG(F, FLAG) ((F) |= (FLAG))
251 #define HAS_FLAG(F, FLAG) (((F) & (FLAG)) != 0)
253 /* Structure describing a class member. */
257 struct member
*next
; /* Next in list of members. */
258 struct member
*anext
; /* Collision chain in member_table. */
259 struct member
**list
; /* Pointer to list in class. */
260 unsigned param_hash
; /* Hash value for parameter types. */
261 int vis
; /* Visibility (public, ...). */
262 int flags
; /* See F_* above. */
263 char *regexp
; /* Matching regular expression. */
264 char *filename
; /* Don't free this shared string. */
265 int pos
; /* Buffer position of occurrence. */
266 char *def_regexp
; /* Regular expression matching definition. */
267 char *def_filename
; /* File name of definition. */
268 int def_pos
; /* Buffer position of definition. */
269 char name
[1]; /* Member name. */
272 /* Structures of this type are used to connect class structures with
273 their super and subclasses. */
277 struct sym
*sym
; /* The super or subclass. */
278 struct link
*next
; /* Next in list or NULL. */
281 /* Structure used to record namespace aliases. */
285 struct alias
*next
; /* Next in list. */
286 struct sym
*namesp
; /* Namespace in which defined. */
287 struct link
*aliasee
; /* List of aliased namespaces (A::B::C...). */
288 char name
[1]; /* Alias name. */
291 /* The structure used to describe a class in the symbol table,
292 or a namespace in all_namespaces. */
296 int flags
; /* Is class a template class?. */
297 unsigned char visited
; /* Used to find circles. */
298 struct sym
*next
; /* Hash collision list. */
299 struct link
*subs
; /* List of subclasses. */
300 struct link
*supers
; /* List of superclasses. */
301 struct member
*vars
; /* List of instance variables. */
302 struct member
*fns
; /* List of instance functions. */
303 struct member
*static_vars
; /* List of static variables. */
304 struct member
*static_fns
; /* List of static functions. */
305 struct member
*friends
; /* List of friend functions. */
306 struct member
*types
; /* List of local types. */
307 char *regexp
; /* Matching regular expression. */
308 int pos
; /* Buffer position. */
309 char *filename
; /* File in which it can be found. */
310 char *sfilename
; /* File in which members can be found. */
311 struct sym
*namesp
; /* Namespace in which defined. . */
312 char name
[1]; /* Name of the class. */
315 /* Experimental: Print info for `--position-info'. We print
316 '(CLASS-NAME SCOPE MEMBER-NAME). */
322 struct sym
*info_cls
= NULL
;
323 struct member
*info_member
= NULL
;
325 /* Experimental. For option `--position-info', the buffer position we
326 are interested in. When this position is reached, print out
327 information about what we know about that point. */
329 int info_position
= -1;
331 /* Command line options structure for getopt_long. */
333 struct option options
[] =
335 {"append", no_argument
, NULL
, 'a'},
336 {"files", required_argument
, NULL
, 'f'},
337 {"help", no_argument
, NULL
, -2},
338 {"min-regexp-length", required_argument
, NULL
, 'm'},
339 {"max-regexp-length", required_argument
, NULL
, 'M'},
340 {"no-nested-classes", no_argument
, NULL
, 'n'},
341 {"no-regexps", no_argument
, NULL
, 'x'},
342 {"no-structs-or-unions", no_argument
, NULL
, 's'},
343 {"output-file", required_argument
, NULL
, 'o'},
344 {"position-info", required_argument
, NULL
, 'p'},
345 {"search-path", required_argument
, NULL
, 'I'},
346 {"verbose", no_argument
, NULL
, 'v'},
347 {"version", no_argument
, NULL
, -3},
348 {"very-verbose", no_argument
, NULL
, 'V'},
352 /* Semantic values of tokens. Set by yylex.. */
354 unsigned yyival
; /* Set for token CINT. */
355 char *yytext
; /* Set for token IDENT. */
362 /* Current line number. */
366 /* The name of the current input file. */
370 /* Three character class vectors, and macros to test membership
377 #define IDENTP(C) is_ident[(unsigned char) (C)]
378 #define DIGITP(C) is_digit[(unsigned char) (C)]
379 #define WHITEP(C) is_white[(unsigned char) (C)]
381 /* Command line flags. */
388 int f_nested_classes
= 1;
390 /* Maximum and minimum lengths of regular expressions matching a
391 member, class etc., for writing them to the output file. These are
392 overridable from the command line. */
403 /* Return the current buffer position in the input file. */
405 #define BUFFER_POS() (in - inbuffer)
407 /* If current lookahead is CSTRING, the following points to the
408 first character in the string constant. Used for recognizing
413 /* The size of the hash tables for classes.and members. Should be
416 #define TABLE_SIZE 1001
418 /* The hash table for class symbols. */
420 struct sym
*class_table
[TABLE_SIZE
];
422 /* Hash table containing all member structures. This is generally
423 faster for member lookup than traversing the member lists of a
426 struct member
*member_table
[TABLE_SIZE
];
428 /* Hash table for namespace aliases */
430 struct alias
*namespace_alias_table
[TABLE_SIZE
];
432 /* The special class symbol used to hold global functions,
435 struct sym
*global_symbols
;
437 /* The current namespace. */
439 struct sym
*current_namespace
;
441 /* The list of all known namespaces. */
443 struct sym
*all_namespaces
;
445 /* Stack of namespaces we're currently nested in, during the parse. */
447 struct sym
**namespace_stack
;
448 int namespace_stack_size
;
451 /* The current lookahead token. */
455 /* Structure describing a keyword. */
459 char *name
; /* Spelling. */
460 int tk
; /* Token value. */
461 struct kw
*next
; /* Next in collision chain. */
464 /* Keywords are lookup up in a hash table of their own. */
466 #define KEYWORD_TABLE_SIZE 1001
467 struct kw
*keyword_table
[KEYWORD_TABLE_SIZE
];
474 struct search_path
*next
;
477 struct search_path
*search_path
;
478 struct search_path
*search_path_tail
;
480 /* Function prototypes. */
482 int yylex
P_ ((void));
483 void yyparse
P_ ((void));
484 void re_init_parser
P_ ((void));
485 char *token_string
P_ ((int));
486 char *matching_regexp
P_ ((void));
487 void init_sym
P_ ((void));
488 struct sym
*add_sym
P_ ((char *, struct sym
*));
489 void add_link
P_ ((struct sym
*, struct sym
*));
490 void add_member_defn
P_ ((struct sym
*, char *, char *,
491 int, unsigned, int, int, int));
492 void add_member_decl
P_ ((struct sym
*, char *, char *, int,
493 unsigned, int, int, int, int));
494 void dump_roots
P_ ((FILE *));
495 void *xmalloc
P_ ((int));
496 void xfree
P_ ((void *));
497 void add_global_defn
P_ ((char *, char *, int, unsigned, int, int, int));
498 void add_global_decl
P_ ((char *, char *, int, unsigned, int, int, int));
499 void add_define
P_ ((char *, char *, int));
500 void mark_inherited_virtual
P_ ((void));
501 void leave_namespace
P_ ((void));
502 void enter_namespace
P_ ((char *));
503 void register_namespace_alias
P_ ((char *, struct link
*));
504 void insert_keyword
P_ ((char *, int));
505 void re_init_scanner
P_ ((void));
506 void init_scanner
P_ ((void));
507 void usage
P_ ((int));
508 void version
P_ ((void));
509 void process_file
P_ ((char *));
510 void add_search_path
P_ ((char *));
511 FILE *open_file
P_ ((char *));
512 int process_pp_line
P_ ((void));
513 int dump_members
P_ ((FILE *, struct member
*));
514 void dump_sym
P_ ((FILE *, struct sym
*));
515 int dump_tree
P_ ((FILE *, struct sym
*));
516 struct member
*find_member
P_ ((struct sym
*, char *, int, int, unsigned));
517 struct member
*add_member
P_ ((struct sym
*, char *, int, int, unsigned));
518 void mark_virtual
P_ ((struct sym
*));
519 void mark_virtual
P_ ((struct sym
*));
520 struct sym
*make_namespace
P_ ((char *, struct sym
*));
521 char *sym_scope
P_ ((struct sym
*));
522 char *sym_scope_1
P_ ((struct sym
*));
523 int skip_to
P_ ((int));
524 void skip_matching
P_ ((void));
525 void member
P_ ((struct sym
*, int));
526 void class_body
P_ ((struct sym
*, int));
527 void class_definition
P_ ((struct sym
*, int, int, int));
528 void declaration
P_ ((int));
529 unsigned parm_list
P_ ((int *));
530 char *operator_name
P_ ((int *));
531 struct sym
*parse_classname
P_ ((void));
532 struct sym
*parse_qualified_ident_or_type
P_ ((char **));
533 void parse_qualified_param_ident_or_type
P_ ((char **));
534 int globals
P_ ((int));
535 void yyerror
P_ ((char *, char *));
539 /***********************************************************************
541 ***********************************************************************/
543 /* Print an error in a printf-like style with the current input file
544 name and line number. */
550 fprintf (stderr
, "%s:%d: ", filename
, yyline
);
551 fprintf (stderr
, format
, s
);
556 /* Like malloc but print an error and exit if not enough memory is
563 void *p
= malloc (nbytes
);
566 yyerror ("out of memory", NULL
);
573 /* Like realloc but print an error and exit if out of memory. */
583 yyerror ("out of memory", NULL
);
590 /* Like free but always check for null pointers.. */
601 /* Like strdup, but print an error and exit if not enough memory is
602 available.. If S is null, return null. */
609 s
= strcpy (xmalloc (strlen (s
) + 1), s
);
615 /***********************************************************************
617 ***********************************************************************/
619 /* Initialize the symbol table. This currently only sets up the
620 special symbol for globals (`*Globals*'). */
625 global_symbols
= add_sym (GLOBALS_NAME
, NULL
);
629 /* Add a symbol for class NAME to the symbol table. NESTED_IN_CLASS
630 is the class in which class NAME was found. If it is null,
631 this means the scope of NAME is the current namespace.
633 If a symbol for NAME already exists, return that. Otherwise
634 create a new symbol and set it to default values. */
637 add_sym (name
, nested_in_class
)
639 struct sym
*nested_in_class
;
644 struct sym
*scope
= nested_in_class
? nested_in_class
: current_namespace
;
646 for (s
= name
, h
= 0; *s
; ++s
)
650 for (sym
= class_table
[h
]; sym
; sym
= sym
->next
)
651 if (streq (name
, sym
->name
) && sym
->namesp
== scope
)
662 sym
= (struct sym
*) xmalloc (sizeof *sym
+ strlen (name
));
663 bzero (sym
, sizeof *sym
);
664 strcpy (sym
->name
, name
);
666 sym
->next
= class_table
[h
];
667 class_table
[h
] = sym
;
674 /* Add links between superclass SUPER and subclass SUB. */
677 add_link (super
, sub
)
678 struct sym
*super
, *sub
;
680 struct link
*lnk
, *lnk2
, *p
, *prev
;
682 /* See if a link already exists. */
683 for (p
= super
->subs
, prev
= NULL
;
684 p
&& strcmp (sub
->name
, p
->sym
->name
) > 0;
685 prev
= p
, p
= p
->next
)
688 /* Avoid duplicates. */
689 if (p
== NULL
|| p
->sym
!= sub
)
691 lnk
= (struct link
*) xmalloc (sizeof *lnk
);
692 lnk2
= (struct link
*) xmalloc (sizeof *lnk2
);
703 lnk2
->next
= sub
->supers
;
709 /* Find in class CLS member NAME.
711 VAR non-zero means look for a member variable; otherwise a function
712 is searched. SC specifies what kind of member is searched---a
713 static, or per-instance member etc. HASH is a hash code for the
714 parameter types of functions. Value is a pointer to the member
715 found or null if not found. */
718 find_member (cls
, name
, var
, sc
, hash
)
724 struct member
**list
;
726 unsigned name_hash
= 0;
733 list
= &cls
->friends
;
741 list
= var
? &cls
->static_vars
: &cls
->static_fns
;
745 list
= var
? &cls
->vars
: &cls
->fns
;
749 for (s
= name
; *s
; ++s
)
750 name_hash
= (name_hash
<< 1) ^ *s
;
751 i
= name_hash
% TABLE_SIZE
;
753 for (p
= member_table
[i
]; p
; p
= p
->anext
)
754 if (p
->list
== list
&& p
->param_hash
== hash
&& streq (name
, p
->name
))
761 /* Add to class CLS information for the declaration of member NAME.
762 REGEXP is a regexp matching the declaration, if non-null. POS is
763 the position in the source where the declaration is found. HASH is
764 a hash code for the parameter list of the member, if it's a
765 function. VAR non-zero means member is a variable or type. SC
766 specifies the type of member (instance member, static, ...). VIS
767 is the member's visibility (public, protected, private). FLAGS is
768 a bit set giving additional information about the member (see the
772 add_member_decl (cls
, name
, regexp
, pos
, hash
, var
, sc
, vis
, flags
)
785 m
= find_member (cls
, name
, var
, sc
, hash
);
787 m
= add_member (cls
, name
, var
, sc
, hash
);
789 /* Have we seen a new filename? If so record that. */
790 if (!cls
->filename
|| !FILENAME_EQ (cls
->filename
, filename
))
791 m
->filename
= filename
;
804 m
->vis
= V_PROTECTED
;
818 /* Add to class CLS information for the definition of member NAME.
819 REGEXP is a regexp matching the declaration, if non-null. POS is
820 the position in the source where the declaration is found. HASH is
821 a hash code for the parameter list of the member, if it's a
822 function. VAR non-zero means member is a variable or type. SC
823 specifies the type of member (instance member, static, ...). VIS
824 is the member's visibility (public, protected, private). FLAGS is
825 a bit set giving additional information about the member (see the
829 add_member_defn (cls
, name
, regexp
, pos
, hash
, var
, sc
, flags
)
841 if (sc
== SC_UNKNOWN
)
843 m
= find_member (cls
, name
, var
, SC_MEMBER
, hash
);
846 m
= find_member (cls
, name
, var
, SC_STATIC
, hash
);
848 m
= add_member (cls
, name
, var
, sc
, hash
);
853 m
= find_member (cls
, name
, var
, sc
, hash
);
855 m
= add_member (cls
, name
, var
, sc
, hash
);
859 cls
->sfilename
= filename
;
861 if (!FILENAME_EQ (cls
->sfilename
, filename
))
862 m
->def_filename
= filename
;
864 m
->def_regexp
= regexp
;
874 /* Add a symbol for a define named NAME to the symbol table.
875 REGEXP is a regular expression matching the define in the source,
876 if it is non-null. POS is the position in the file. */
879 add_define (name
, regexp
, pos
)
883 add_global_defn (name
, regexp
, pos
, 0, 1, SC_FRIEND
, F_DEFINE
);
884 add_global_decl (name
, regexp
, pos
, 0, 1, SC_FRIEND
, F_DEFINE
);
888 /* Add information for the global definition of NAME.
889 REGEXP is a regexp matching the declaration, if non-null. POS is
890 the position in the source where the declaration is found. HASH is
891 a hash code for the parameter list of the member, if it's a
892 function. VAR non-zero means member is a variable or type. SC
893 specifies the type of member (instance member, static, ...). VIS
894 is the member's visibility (public, protected, private). FLAGS is
895 a bit set giving additional information about the member (see the
899 add_global_defn (name
, regexp
, pos
, hash
, var
, sc
, flags
)
910 /* Try to find out for which classes a function is a friend, and add
911 what we know about it to them. */
913 for (i
= 0; i
< TABLE_SIZE
; ++i
)
914 for (sym
= class_table
[i
]; sym
; sym
= sym
->next
)
915 if (sym
!= global_symbols
&& sym
->friends
)
916 if (find_member (sym
, name
, 0, SC_FRIEND
, hash
))
917 add_member_defn (sym
, name
, regexp
, pos
, hash
, 0,
920 /* Add to global symbols. */
921 add_member_defn (global_symbols
, name
, regexp
, pos
, hash
, var
, sc
, flags
);
925 /* Add information for the global declaration of NAME.
926 REGEXP is a regexp matching the declaration, if non-null. POS is
927 the position in the source where the declaration is found. HASH is
928 a hash code for the parameter list of the member, if it's a
929 function. VAR non-zero means member is a variable or type. SC
930 specifies the type of member (instance member, static, ...). VIS
931 is the member's visibility (public, protected, private). FLAGS is
932 a bit set giving additional information about the member (see the
936 add_global_decl (name
, regexp
, pos
, hash
, var
, sc
, flags
)
944 /* Add declaration only if not already declared. Header files must
945 be processed before source files for this to have the right effect.
946 I do not want to handle implicit declarations at the moment. */
948 struct member
*found
;
950 m
= found
= find_member (global_symbols
, name
, var
, sc
, hash
);
952 m
= add_member (global_symbols
, name
, var
, sc
, hash
);
954 /* Definition already seen => probably last declaration implicit.
955 Override. This means that declarations must always be added to
956 the symbol table before definitions. */
959 if (!global_symbols
->filename
960 || !FILENAME_EQ (global_symbols
->filename
, filename
))
961 m
->filename
= filename
;
969 info_cls
= global_symbols
;
975 /* Add a symbol for member NAME to class CLS.
976 VAR non-zero means it's a variable. SC specifies the kind of
977 member. HASH is a hash code for the parameter types of a function.
978 Value is a pointer to the member's structure. */
981 add_member (cls
, name
, var
, sc
, hash
)
988 struct member
*m
= (struct member
*) xmalloc (sizeof *m
+ strlen (name
));
989 struct member
**list
;
992 unsigned name_hash
= 0;
996 strcpy (m
->name
, name
);
997 m
->param_hash
= hash
;
1004 m
->def_regexp
= NULL
;
1005 m
->def_filename
= NULL
;
1008 assert (cls
!= NULL
);
1013 list
= &cls
->friends
;
1021 list
= var
? &cls
->static_vars
: &cls
->static_fns
;
1025 list
= var
? &cls
->vars
: &cls
->fns
;
1029 for (s
= name
; *s
; ++s
)
1030 name_hash
= (name_hash
<< 1) ^ *s
;
1031 i
= name_hash
% TABLE_SIZE
;
1032 m
->anext
= member_table
[i
];
1033 member_table
[i
] = m
;
1036 /* Keep the member list sorted. It's cheaper to do it here than to
1037 sort them in Lisp. */
1038 for (prev
= NULL
, p
= *list
;
1039 p
&& strcmp (name
, p
->name
) > 0;
1040 prev
= p
, p
= p
->next
)
1052 /* Given the root R of a class tree, step through all subclasses
1053 recursively, marking functions as virtual that are declared virtual
1061 struct member
*m
, *m2
;
1063 for (p
= r
->subs
; p
; p
= p
->next
)
1065 for (m
= r
->fns
; m
; m
= m
->next
)
1066 if (HAS_FLAG (m
->flags
, F_VIRTUAL
))
1068 for (m2
= p
->sym
->fns
; m2
; m2
= m2
->next
)
1069 if (m
->param_hash
== m2
->param_hash
&& streq (m
->name
, m2
->name
))
1070 SET_FLAG (m2
->flags
, F_VIRTUAL
);
1073 mark_virtual (p
->sym
);
1078 /* For all roots of the class tree, mark functions as virtual that
1079 are virtual because of a virtual declaration in a base class. */
1082 mark_inherited_virtual ()
1087 for (i
= 0; i
< TABLE_SIZE
; ++i
)
1088 for (r
= class_table
[i
]; r
; r
= r
->next
)
1089 if (r
->supers
== NULL
)
1094 /* Create and return a symbol for a namespace with name NAME. */
1097 make_namespace (name
, context
)
1099 struct sym
*context
;
1101 struct sym
*s
= (struct sym
*) xmalloc (sizeof *s
+ strlen (name
));
1102 bzero (s
, sizeof *s
);
1103 strcpy (s
->name
, name
);
1104 s
->next
= all_namespaces
;
1105 s
->namesp
= context
;
1111 /* Find the symbol for namespace NAME. If not found, retrun NULL */
1114 check_namespace (name
, context
)
1116 struct sym
*context
;
1118 struct sym
*p
= NULL
;
1120 for (p
= all_namespaces
; p
; p
= p
->next
)
1122 if (streq (p
->name
, name
) && (p
->namesp
== context
))
1129 /* Find the symbol for namespace NAME. If not found, add a new symbol
1130 for NAME to all_namespaces. */
1133 find_namespace (name
, context
)
1135 struct sym
*context
;
1137 struct sym
*p
= check_namespace (name
, context
);
1140 p
= make_namespace (name
, context
);
1146 /* Find namespace alias with name NAME. If not found return NULL. */
1149 check_namespace_alias (name
)
1152 struct link
*p
= NULL
;
1157 for (s
= name
, h
= 0; *s
; ++s
)
1161 for (al
= namespace_alias_table
[h
]; al
; al
= al
->next
)
1162 if (streq (name
, al
->name
) && (al
->namesp
== current_namespace
))
1171 /* Register the name NEW_NAME as an alias for namespace list OLD_NAME. */
1174 register_namespace_alias (new_name
, old_name
)
1176 struct link
*old_name
;
1182 for (s
= new_name
, h
= 0; *s
; ++s
)
1187 /* Is it already in the table of aliases? */
1188 for (al
= namespace_alias_table
[h
]; al
; al
= al
->next
)
1189 if (streq (new_name
, al
->name
) && (al
->namesp
== current_namespace
))
1192 al
= (struct alias
*) xmalloc (sizeof *al
+ strlen (new_name
));
1193 strcpy (al
->name
, new_name
);
1194 al
->next
= namespace_alias_table
[h
];
1195 al
->namesp
= current_namespace
;
1196 al
->aliasee
= old_name
;
1197 namespace_alias_table
[h
] = al
;
1201 /* Enter namespace with name NAME. */
1204 enter_namespace (name
)
1207 struct sym
*p
= find_namespace (name
, current_namespace
);
1209 if (namespace_sp
== namespace_stack_size
)
1211 int size
= max (10, 2 * namespace_stack_size
);
1213 = (struct sym
**) xrealloc ((void *)namespace_stack
,
1214 size
* sizeof *namespace_stack
);
1215 namespace_stack_size
= size
;
1218 namespace_stack
[namespace_sp
++] = current_namespace
;
1219 current_namespace
= p
;
1223 /* Leave the current namespace. */
1228 assert (namespace_sp
> 0);
1229 current_namespace
= namespace_stack
[--namespace_sp
];
1234 /***********************************************************************
1235 Writing the Output File
1236 ***********************************************************************/
1238 /* Write string S to the output file FP in a Lisp-readable form.
1239 If S is null, write out `()'. */
1241 #define PUTSTR(s, fp) \
1258 /* A dynamically allocated buffer for constructing a scope name. */
1261 int scope_buffer_size
;
1262 int scope_buffer_len
;
1265 /* Make sure scope_buffer has enough room to add LEN chars to it. */
1268 ensure_scope_buffer_room (len
)
1271 if (scope_buffer_len
+ len
>= scope_buffer_size
)
1273 int new_size
= max (2 * scope_buffer_size
, scope_buffer_len
+ len
);
1274 scope_buffer
= (char *) xrealloc (scope_buffer
, new_size
);
1275 scope_buffer_size
= new_size
;
1280 /* Recursively add the scope names of symbol P and the scopes of its
1281 namespaces to scope_buffer. Value is a pointer to the complete
1282 scope name constructed. */
1291 sym_scope_1 (p
->namesp
);
1295 ensure_scope_buffer_room (3);
1296 strcat (scope_buffer
, "::");
1297 scope_buffer_len
+= 2;
1300 len
= strlen (p
->name
);
1301 ensure_scope_buffer_room (len
+ 1);
1302 strcat (scope_buffer
, p
->name
);
1303 scope_buffer_len
+= len
;
1305 if (HAS_FLAG (p
->flags
, F_TEMPLATE
))
1307 ensure_scope_buffer_room (3);
1308 strcat (scope_buffer
, "<>");
1309 scope_buffer_len
+= 2;
1312 return scope_buffer
;
1316 /* Return the scope of symbol P in printed representation, i.e.
1317 as it would appear in a C*+ source file. */
1325 scope_buffer_size
= 1024;
1326 scope_buffer
= (char *) xmalloc (scope_buffer_size
);
1329 *scope_buffer
= '\0';
1330 scope_buffer_len
= 0;
1333 sym_scope_1 (p
->namesp
);
1335 return scope_buffer
;
1339 /* Dump the list of members M to file FP. Value is the length of the
1343 dump_members (fp
, m
)
1351 for (n
= 0; m
; m
= m
->next
, ++n
)
1353 fputs (MEMBER_STRUCT
, fp
);
1354 PUTSTR (m
->name
, fp
);
1355 PUTSTR (NULL
, fp
); /* FIXME? scope for globals */
1356 fprintf (fp
, "%u ", (unsigned) m
->flags
);
1357 PUTSTR (m
->filename
, fp
);
1358 PUTSTR (m
->regexp
, fp
);
1359 fprintf (fp
, "%u ", (unsigned) m
->pos
);
1360 fprintf (fp
, "%u ", (unsigned) m
->vis
);
1362 PUTSTR (m
->def_filename
, fp
);
1363 PUTSTR (m
->def_regexp
, fp
);
1364 fprintf (fp
, "%u", (unsigned) m
->def_pos
);
1375 /* Dump class ROOT to stream FP. */
1382 fputs (CLASS_STRUCT
, fp
);
1383 PUTSTR (root
->name
, fp
);
1385 /* Print scope, if any. */
1387 PUTSTR (sym_scope (root
), fp
);
1392 fprintf (fp
, "%u", root
->flags
);
1393 PUTSTR (root
->filename
, fp
);
1394 PUTSTR (root
->regexp
, fp
);
1395 fprintf (fp
, "%u", (unsigned) root
->pos
);
1396 PUTSTR (root
->sfilename
, fp
);
1402 /* Dump class ROOT and its subclasses to file FP. Value is the
1403 number of classes written. */
1406 dump_tree (fp
, root
)
1413 dump_sym (fp
, root
);
1423 for (lk
= root
->subs
; lk
; lk
= lk
->next
)
1425 fputs (TREE_STRUCT
, fp
);
1426 n
+= dump_tree (fp
, lk
->sym
);
1432 dump_members (fp
, root
->vars
);
1433 n
+= dump_members (fp
, root
->fns
);
1434 dump_members (fp
, root
->static_vars
);
1435 n
+= dump_members (fp
, root
->static_fns
);
1436 n
+= dump_members (fp
, root
->friends
);
1437 dump_members (fp
, root
->types
);
1452 /* Dump the entire class tree to file FP. */
1461 /* Output file header containing version string, command line
1465 fputs (TREE_HEADER_STRUCT
, fp
);
1466 PUTSTR (EBROWSE_FILE_VERSION
, fp
);
1479 /* Mark functions as virtual that are so because of functions
1480 declared virtual in base classes. */
1481 mark_inherited_virtual ();
1483 /* Dump the roots of the graph. */
1484 for (i
= 0; i
< TABLE_SIZE
; ++i
)
1485 for (r
= class_table
[i
]; r
; r
= r
->next
)
1488 fputs (TREE_STRUCT
, fp
);
1489 n
+= dump_tree (fp
, r
);
1499 /***********************************************************************
1501 ***********************************************************************/
1504 #define INCREMENT_LINENO \
1506 if (f_very_verbose) \
1509 printf ("%d:\n", yyline); \
1515 #define INCREMENT_LINENO ++yyline
1518 /* Define two macros for accessing the input buffer (current input
1519 file). GET(C) sets C to the next input character and advances the
1520 input pointer. UNGET retracts the input pointer. */
1522 #define GET(C) ((C) = *in++)
1523 #define UNGET() (--in)
1526 /* Process a preprocessor line. Value is the next character from the
1527 input buffer not consumed. */
1532 int in_comment
= 0, in_string
= 0;
1536 /* Skip over white space. The `#' has been consumed already. */
1537 while (WHITEP (GET (c
)))
1540 /* Read the preprocessor command (if any). */
1547 /* Is it a `define'? */
1550 if (*yytext
&& streq (yytext
, "define"))
1565 char *regexp
= matching_regexp ();
1566 int pos
= BUFFER_POS ();
1567 add_define (yytext
, regexp
, pos
);
1571 while (c
&& (c
!= '\n' || in_comment
|| in_string
))
1575 else if (c
== '/' && !in_comment
)
1580 else if (c
== '*' && in_comment
)
1586 in_string
= !in_string
;
1598 /* Value is the next token from the input buffer. */
1609 while (WHITEP (GET (c
)))
1631 /* String and character constants. */
1634 while (GET (c
) && c
!= end_char
)
1639 /* Escape sequences. */
1642 if (end_char
== '\'')
1643 yyerror ("EOF in character constant", NULL
);
1645 yyerror ("EOF in string constant", NULL
);
1663 /* Hexadecimal escape sequence. */
1665 for (i
= 0; i
< 2; ++i
)
1669 if (c
>= '0' && c
<= '7')
1671 else if (c
>= 'a' && c
<= 'f')
1673 else if (c
>= 'A' && c
<= 'F')
1686 /* Octal escape sequence. */
1688 for (i
= 0; i
< 3; ++i
)
1692 if (c
>= '0' && c
<= '7')
1709 if (end_char
== '\'')
1710 yyerror ("newline in character constant", NULL
);
1712 yyerror ("newline in string constant", NULL
);
1722 return end_char
== '\'' ? CCHAR
: CSTRING
;
1724 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
1725 case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n':
1726 case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u':
1727 case 'v': case 'w': case 'x': case 'y': case 'z':
1728 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
1729 case 'H': case 'I': case 'J': case 'K': case 'L': case 'M': case 'N':
1730 case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U':
1731 case 'V': case 'W': case 'X': case 'Y': case 'Z': case '_':
1733 /* Identifier and keywords. */
1740 while (IDENTP (GET (*p
)))
1742 hash
= (hash
<< 1) ^ *p
++;
1743 if (p
== yytext_end
- 1)
1745 int size
= yytext_end
- yytext
;
1746 yytext
= (char *) xrealloc (yytext
, 2 * size
);
1747 yytext_end
= yytext
+ 2 * size
;
1748 p
= yytext
+ size
- 1;
1755 for (k
= keyword_table
[hash
% KEYWORD_TABLE_SIZE
]; k
; k
= k
->next
)
1756 if (streq (k
->name
, yytext
))
1763 /* C and C++ comments, '/' and '/='. */
1791 while (GET (c
) && c
!= '\n')
1866 yyerror ("invalid token '..' ('...' assumed)", NULL
);
1870 else if (!DIGITP (c
))
1924 c
= process_pp_line ();
1929 case '(': case ')': case '[': case ']': case '{': case '}':
1930 case ';': case ',': case '?': case '~':
1936 if (GET (c
) == 'x' || c
== 'X')
1941 yyival
= yyival
* 16 + c
- '0';
1942 else if (c
>= 'a' && c
<= 'f')
1943 yyival
= yyival
* 16 + c
- 'a' + 10;
1944 else if (c
>= 'A' && c
<= 'F')
1945 yyival
= yyival
* 16 + c
- 'A' + 10;
1955 while (c
>= '0' && c
<= '7')
1957 yyival
= (yyival
<< 3) + c
- '0';
1962 /* Integer suffixes. */
1968 case '1': case '2': case '3': case '4': case '5': case '6':
1969 case '7': case '8': case '9':
1970 /* Integer or floating constant, part before '.'. */
1973 while (GET (c
) && DIGITP (c
))
1974 yyival
= 10 * yyival
+ c
- '0';
1980 /* Digits following '.'. */
1984 /* Optional exponent. */
1985 if (c
== 'E' || c
== 'e')
1987 if (GET (c
) == '-' || c
== '+')
1994 /* Optional type suffixes. */
2007 /* Actually local to matching_regexp. These variables must be in
2008 global scope for the case that `static' get's defined away. */
2010 static char *matching_regexp_buffer
, *matching_regexp_end_buf
;
2013 /* Value is the string from the start of the line to the current
2014 position in the input buffer, or maybe a bit more if that string is
2015 shorter than min_regexp. */
2027 if (matching_regexp_buffer
== NULL
)
2029 matching_regexp_buffer
= (char *) xmalloc (max_regexp
);
2030 matching_regexp_end_buf
= &matching_regexp_buffer
[max_regexp
] - 1;
2033 /* Scan back to previous newline of buffer start. */
2034 for (p
= in
- 1; p
> inbuffer
&& *p
!= '\n'; --p
)
2039 while (in
- p
< min_regexp
&& p
> inbuffer
)
2041 /* Line probably not significant enough */
2042 for (--p
; p
>= inbuffer
&& *p
!= '\n'; --p
)
2049 /* Copy from end to make sure significant portions are included.
2050 This implies that in the browser a regular expressing of the form
2051 `^.*{regexp}' has to be used. */
2052 for (s
= matching_regexp_end_buf
- 1, t
= in
;
2053 s
> matching_regexp_buffer
&& t
> p
;)
2057 if (*s
== '"' || *s
== '\\')
2061 *(matching_regexp_end_buf
- 1) = '\0';
2066 /* Return a printable representation of token T. */
2076 case CSTRING
: return "string constant";
2077 case CCHAR
: return "char constant";
2078 case CINT
: return "int constant";
2079 case CFLOAT
: return "floating constant";
2080 case ELLIPSIS
: return "...";
2081 case LSHIFTASGN
: return "<<=";
2082 case RSHIFTASGN
: return ">>=";
2083 case ARROWSTAR
: return "->*";
2084 case IDENT
: return "identifier";
2085 case DIVASGN
: return "/=";
2086 case INC
: return "++";
2087 case ADDASGN
: return "+=";
2088 case DEC
: return "--";
2089 case ARROW
: return "->";
2090 case SUBASGN
: return "-=";
2091 case MULASGN
: return "*=";
2092 case MODASGN
: return "%=";
2093 case LOR
: return "||";
2094 case ORASGN
: return "|=";
2095 case LAND
: return "&&";
2096 case ANDASGN
: return "&=";
2097 case XORASGN
: return "^=";
2098 case POINTSTAR
: return ".*";
2099 case DCOLON
: return "::";
2100 case EQ
: return "==";
2101 case NE
: return "!=";
2102 case LE
: return "<=";
2103 case LSHIFT
: return "<<";
2104 case GE
: return ">=";
2105 case RSHIFT
: return ">>";
2106 case ASM
: return "asm";
2107 case AUTO
: return "auto";
2108 case BREAK
: return "break";
2109 case CASE
: return "case";
2110 case CATCH
: return "catch";
2111 case CHAR
: return "char";
2112 case CLASS
: return "class";
2113 case CONST
: return "const";
2114 case CONTINUE
: return "continue";
2115 case DEFAULT
: return "default";
2116 case DELETE
: return "delete";
2117 case DO
: return "do";
2118 case DOUBLE
: return "double";
2119 case ELSE
: return "else";
2120 case ENUM
: return "enum";
2121 case EXTERN
: return "extern";
2122 case FLOAT
: return "float";
2123 case FOR
: return "for";
2124 case FRIEND
: return "friend";
2125 case GOTO
: return "goto";
2126 case IF
: return "if";
2127 case T_INLINE
: return "inline";
2128 case INT
: return "int";
2129 case LONG
: return "long";
2130 case NEW
: return "new";
2131 case OPERATOR
: return "operator";
2132 case PRIVATE
: return "private";
2133 case PROTECTED
: return "protected";
2134 case PUBLIC
: return "public";
2135 case REGISTER
: return "register";
2136 case RETURN
: return "return";
2137 case SHORT
: return "short";
2138 case SIGNED
: return "signed";
2139 case SIZEOF
: return "sizeof";
2140 case STATIC
: return "static";
2141 case STRUCT
: return "struct";
2142 case SWITCH
: return "switch";
2143 case TEMPLATE
: return "template";
2144 case THIS
: return "this";
2145 case THROW
: return "throw";
2146 case TRY
: return "try";
2147 case TYPEDEF
: return "typedef";
2148 case UNION
: return "union";
2149 case UNSIGNED
: return "unsigned";
2150 case VIRTUAL
: return "virtual";
2151 case VOID
: return "void";
2152 case VOLATILE
: return "volatile";
2153 case WHILE
: return "while";
2154 case MUTABLE
: return "mutable";
2155 case BOOL
: return "bool";
2156 case TRUE
: return "true";
2157 case FALSE
: return "false";
2158 case SIGNATURE
: return "signature";
2159 case NAMESPACE
: return "namespace";
2160 case EXPLICIT
: return "explicit";
2161 case TYPENAME
: return "typename";
2162 case CONST_CAST
: return "const_cast";
2163 case DYNAMIC_CAST
: return "dynamic_cast";
2164 case REINTERPRET_CAST
: return "reinterpret_cast";
2165 case STATIC_CAST
: return "static_cast";
2166 case TYPEID
: return "typeid";
2167 case USING
: return "using";
2168 case WCHAR
: return "wchar_t";
2169 case YYEOF
: return "EOF";
2184 /* Reinitialize the scanner for a new input file. */
2195 yytext
= (char *) xmalloc (size
* sizeof *yytext
);
2196 yytext_end
= yytext
+ size
;
2201 /* Insert a keyword NAME with token value TK into the keyword hash
2205 insert_keyword (name
, tk
)
2211 struct kw
*k
= (struct kw
*) xmalloc (sizeof *k
);
2213 for (s
= name
; *s
; ++s
)
2216 h
%= KEYWORD_TABLE_SIZE
;
2219 k
->next
= keyword_table
[h
];
2220 keyword_table
[h
] = k
;
2224 /* Initialize the scanner for the first file. This sets up the
2225 character class vectors and fills the keyword hash table. */
2232 /* Allocate the input buffer */
2233 inbuffer_size
= READ_CHUNK_SIZE
+ 1;
2234 inbuffer
= in
= (char *) xmalloc (inbuffer_size
);
2237 /* Set up character class vectors. */
2238 for (i
= 0; i
< sizeof is_ident
; ++i
)
2240 if (i
== '_' || isalnum (i
))
2243 if (i
>= '0' && i
<= '9')
2246 if (i
== ' ' || i
== '\t' || i
== '\f' || i
== '\v')
2250 /* Fill keyword hash table. */
2251 insert_keyword ("and", LAND
);
2252 insert_keyword ("and_eq", ANDASGN
);
2253 insert_keyword ("asm", ASM
);
2254 insert_keyword ("auto", AUTO
);
2255 insert_keyword ("bitand", '&');
2256 insert_keyword ("bitor", '|');
2257 insert_keyword ("bool", BOOL
);
2258 insert_keyword ("break", BREAK
);
2259 insert_keyword ("case", CASE
);
2260 insert_keyword ("catch", CATCH
);
2261 insert_keyword ("char", CHAR
);
2262 insert_keyword ("class", CLASS
);
2263 insert_keyword ("compl", '~');
2264 insert_keyword ("const", CONST
);
2265 insert_keyword ("const_cast", CONST_CAST
);
2266 insert_keyword ("continue", CONTINUE
);
2267 insert_keyword ("default", DEFAULT
);
2268 insert_keyword ("delete", DELETE
);
2269 insert_keyword ("do", DO
);
2270 insert_keyword ("double", DOUBLE
);
2271 insert_keyword ("dynamic_cast", DYNAMIC_CAST
);
2272 insert_keyword ("else", ELSE
);
2273 insert_keyword ("enum", ENUM
);
2274 insert_keyword ("explicit", EXPLICIT
);
2275 insert_keyword ("extern", EXTERN
);
2276 insert_keyword ("false", FALSE
);
2277 insert_keyword ("float", FLOAT
);
2278 insert_keyword ("for", FOR
);
2279 insert_keyword ("friend", FRIEND
);
2280 insert_keyword ("goto", GOTO
);
2281 insert_keyword ("if", IF
);
2282 insert_keyword ("inline", T_INLINE
);
2283 insert_keyword ("int", INT
);
2284 insert_keyword ("long", LONG
);
2285 insert_keyword ("mutable", MUTABLE
);
2286 insert_keyword ("namespace", NAMESPACE
);
2287 insert_keyword ("new", NEW
);
2288 insert_keyword ("not", '!');
2289 insert_keyword ("not_eq", NE
);
2290 insert_keyword ("operator", OPERATOR
);
2291 insert_keyword ("or", LOR
);
2292 insert_keyword ("or_eq", ORASGN
);
2293 insert_keyword ("private", PRIVATE
);
2294 insert_keyword ("protected", PROTECTED
);
2295 insert_keyword ("public", PUBLIC
);
2296 insert_keyword ("register", REGISTER
);
2297 insert_keyword ("reinterpret_cast", REINTERPRET_CAST
);
2298 insert_keyword ("return", RETURN
);
2299 insert_keyword ("short", SHORT
);
2300 insert_keyword ("signed", SIGNED
);
2301 insert_keyword ("sizeof", SIZEOF
);
2302 insert_keyword ("static", STATIC
);
2303 insert_keyword ("static_cast", STATIC_CAST
);
2304 insert_keyword ("struct", STRUCT
);
2305 insert_keyword ("switch", SWITCH
);
2306 insert_keyword ("template", TEMPLATE
);
2307 insert_keyword ("this", THIS
);
2308 insert_keyword ("throw", THROW
);
2309 insert_keyword ("true", TRUE
);
2310 insert_keyword ("try", TRY
);
2311 insert_keyword ("typedef", TYPEDEF
);
2312 insert_keyword ("typeid", TYPEID
);
2313 insert_keyword ("typename", TYPENAME
);
2314 insert_keyword ("union", UNION
);
2315 insert_keyword ("unsigned", UNSIGNED
);
2316 insert_keyword ("using", USING
);
2317 insert_keyword ("virtual", VIRTUAL
);
2318 insert_keyword ("void", VOID
);
2319 insert_keyword ("volatile", VOLATILE
);
2320 insert_keyword ("wchar_t", WCHAR
);
2321 insert_keyword ("while", WHILE
);
2322 insert_keyword ("xor", '^');
2323 insert_keyword ("xor_eq", XORASGN
);
2328 /***********************************************************************
2330 ***********************************************************************/
2332 /* Match the current lookahead token and set it to the next token. */
2334 #define MATCH() (tk = yylex ())
2336 /* Return the lookahead token. If current lookahead token is cleared,
2337 read a new token. */
2339 #define LA1 (tk == -1 ? (tk = yylex ()) : tk)
2341 /* Is the current lookahead equal to the token T? */
2343 #define LOOKING_AT(T) (tk == (T))
2345 /* Is the current lookahead one of T1 or T2? */
2347 #define LOOKING_AT2(T1, T2) (tk == (T1) || tk == (T2))
2349 /* Is the current lookahead one of T1, T2 or T3? */
2351 #define LOOKING_AT3(T1, T2, T3) (tk == (T1) || tk == (T2) || tk == (T3))
2353 /* Is the current lookahead one of T1...T4? */
2355 #define LOOKING_AT4(T1, T2, T3, T4) \
2356 (tk == (T1) || tk == (T2) || tk == (T3) || tk == (T4))
2358 /* Match token T if current lookahead is T. */
2360 #define MATCH_IF(T) if (LOOKING_AT (T)) MATCH (); else ((void) 0)
2362 /* Skip to matching token if current token is T. */
2364 #define SKIP_MATCHING_IF(T) \
2365 if (LOOKING_AT (T)) skip_matching (); else ((void) 0)
2368 /* Skip forward until a given token TOKEN or YYEOF is seen and return
2369 the current lookahead token after skipping. */
2375 while (!LOOKING_AT2 (YYEOF
, token
))
2380 /* Skip over pairs of tokens (parentheses, square brackets,
2381 angle brackets, curly brackets) matching the current lookahead. */
2412 if (LOOKING_AT (open
))
2414 else if (LOOKING_AT (close
))
2416 else if (LOOKING_AT (YYEOF
))
2451 /* Build qualified namespace alias (A::B::c) and return it. */
2454 match_qualified_namespace_alias ()
2456 struct link
*head
= NULL
;
2457 struct link
*cur
= NULL
;
2458 struct link
*tmp
= NULL
;
2466 tmp
= (struct link
*) xmalloc (sizeof *cur
);
2467 tmp
->sym
= find_namespace (yytext
, cur
);
2471 cur
= cur
->next
= tmp
;
2488 /* Re-initialize the parser by resetting the lookahead token. */
2497 /* Parse a parameter list, including the const-specifier,
2498 pure-specifier, and throw-list that may follow a parameter list.
2499 Return in FLAGS what was seen following the parameter list.
2500 Returns a hash code for the parameter types. This value is used to
2501 distinguish between overloaded functions. */
2510 while (!LOOKING_AT2 (YYEOF
, ')'))
2514 /* Skip over grouping parens or parameter lists in parameter
2520 /* Next parameter. */
2526 /* Ignore the scope part of types, if any. This is because
2527 some types need scopes when defined outside of a class body,
2528 and don't need them inside the class body. This means that
2529 we have to look for the last IDENT in a sequence of
2530 IDENT::IDENT::... */
2535 unsigned ident_type_hash
= 0;
2537 parse_qualified_param_ident_or_type (&last_id
);
2540 /* LAST_ID null means something like `X::*'. */
2541 for (; *last_id
; ++last_id
)
2542 ident_type_hash
= (ident_type_hash
<< 1) ^ *last_id
;
2543 hash
= (hash
<< 1) ^ ident_type_hash
;
2552 /* This distinction is made to make `func (void)' equivalent
2556 if (!LOOKING_AT (')'))
2557 hash
= (hash
<< 1) ^ VOID
;
2560 case BOOL
: case CHAR
: case CLASS
: case CONST
:
2561 case DOUBLE
: case ENUM
: case FLOAT
: case INT
:
2562 case LONG
: case SHORT
: case SIGNED
: case STRUCT
:
2563 case UNION
: case UNSIGNED
: case VOLATILE
: case WCHAR
:
2566 hash
= (hash
<< 1) ^ LA1
;
2570 case '*': case '&': case '[': case ']':
2571 hash
= (hash
<< 1) ^ LA1
;
2581 if (LOOKING_AT (')'))
2585 if (LOOKING_AT (CONST
))
2587 /* We can overload the same function on `const' */
2588 hash
= (hash
<< 1) ^ CONST
;
2589 SET_FLAG (*flags
, F_CONST
);
2593 if (LOOKING_AT (THROW
))
2596 SKIP_MATCHING_IF ('(');
2597 SET_FLAG (*flags
, F_THROW
);
2600 if (LOOKING_AT ('='))
2603 if (LOOKING_AT (CINT
) && yyival
== 0)
2606 SET_FLAG (*flags
, F_PURE
);
2615 /* Print position info to stdout. */
2620 if (info_position
>= 0 && BUFFER_POS () <= info_position
)
2622 printf ("(\"%s\" \"%s\" \"%s\" %d)\n",
2623 info_cls
->name
, sym_scope (info_cls
),
2624 info_member
->name
, info_where
);
2628 /* Parse a member declaration within the class body of CLS. VIS is
2629 the access specifier for the member (private, protected,
2639 char *regexp
= NULL
;
2650 while (!LOOKING_AT4 (';', '{', '}', YYEOF
))
2658 /* A function or class may follow. */
2661 SET_FLAG (flags
, F_TEMPLATE
);
2662 /* Skip over template argument list */
2663 SKIP_MATCHING_IF ('<');
2667 SET_FLAG (flags
, F_EXPLICIT
);
2671 SET_FLAG (flags
, F_MUTABLE
);
2675 SET_FLAG (flags
, F_INLINE
);
2679 SET_FLAG (flags
, F_VIRTUAL
);
2708 /* Remember IDENTS seen so far. Among these will be the member
2710 id
= (char *) xrealloc (id
, strlen (yytext
) + 2);
2714 strcpy (id
+ 1, yytext
);
2717 strcpy (id
, yytext
);
2723 char *s
= operator_name (&sc
);
2724 id
= (char *) xrealloc (id
, strlen (s
) + 1);
2730 /* Most probably the beginning of a parameter list. */
2736 if (!(is_constructor
= streq (id
, cls
->name
)))
2737 regexp
= matching_regexp ();
2742 pos
= BUFFER_POS ();
2743 hash
= parm_list (&flags
);
2746 regexp
= matching_regexp ();
2748 if (id
&& cls
!= NULL
)
2749 add_member_decl (cls
, id
, regexp
, pos
, hash
, 0, sc
, vis
, flags
);
2751 while (!LOOKING_AT3 (';', '{', YYEOF
))
2754 if (LOOKING_AT ('{') && id
&& cls
)
2755 add_member_defn (cls
, id
, regexp
, pos
, hash
, 0, sc
, flags
);
2762 case STRUCT
: case UNION
: case CLASS
:
2769 /* More than one ident here to allow for MS-DOS specialties
2770 like `_export class' etc. The last IDENT seen counts
2771 as the class name. */
2772 while (!LOOKING_AT4 (YYEOF
, ';', ':', '{'))
2774 if (LOOKING_AT (IDENT
))
2779 if (LOOKING_AT2 (':', '{'))
2780 class_definition (anonymous
? NULL
: cls
, class_tag
, flags
, 1);
2785 case INT
: case CHAR
: case LONG
: case UNSIGNED
:
2786 case SIGNED
: case CONST
: case DOUBLE
: case VOID
:
2787 case SHORT
: case VOLATILE
: case BOOL
: case WCHAR
:
2796 if (LOOKING_AT (';'))
2798 /* The end of a member variable, a friend declaration or an access
2799 declaration. We don't want to add friend classes as members. */
2800 if (id
&& sc
!= SC_FRIEND
&& cls
)
2802 regexp
= matching_regexp ();
2803 pos
= BUFFER_POS ();
2807 if (type_seen
|| !paren_seen
)
2808 add_member_decl (cls
, id
, regexp
, pos
, 0, 1, sc
, vis
, 0);
2810 add_member_decl (cls
, id
, regexp
, pos
, hash
, 0, sc
, vis
, 0);
2817 else if (LOOKING_AT ('{'))
2820 if (sc
== SC_TYPE
&& id
&& cls
)
2822 regexp
= matching_regexp ();
2823 pos
= BUFFER_POS ();
2827 add_member_decl (cls
, id
, regexp
, pos
, 0, 1, sc
, vis
, 0);
2828 add_member_defn (cls
, id
, regexp
, pos
, 0, 1, sc
, 0);
2840 /* Parse the body of class CLS. TAG is the tag of the class (struct,
2844 class_body (cls
, tag
)
2848 int vis
= tag
== CLASS
? PRIVATE
: PUBLIC
;
2851 while (!LOOKING_AT2 (YYEOF
, '}'))
2855 case PRIVATE
: case PROTECTED
: case PUBLIC
:
2859 if (LOOKING_AT (':'))
2866 /* Probably conditional compilation for inheritance list.
2867 We don't known whether there comes more of this.
2868 This is only a crude fix that works most of the time. */
2873 while (LOOKING_AT2 (IDENT
, ',')
2874 || LOOKING_AT3 (PUBLIC
, PROTECTED
, PRIVATE
));
2883 /* Try to synchronize */
2884 case CHAR
: case CLASS
: case CONST
:
2885 case DOUBLE
: case ENUM
: case FLOAT
: case INT
:
2886 case LONG
: case SHORT
: case SIGNED
: case STRUCT
:
2887 case UNION
: case UNSIGNED
: case VOID
: case VOLATILE
:
2888 case TYPEDEF
: case STATIC
: case T_INLINE
: case FRIEND
:
2889 case VIRTUAL
: case TEMPLATE
: case IDENT
: case '~':
2890 case BOOL
: case WCHAR
: case EXPLICIT
: case MUTABLE
:
2902 /* Parse a qualified identifier. Current lookahead is IDENT. A
2903 qualified ident has the form `X<..>::Y<...>::T<...>. Returns a
2904 symbol for that class. */
2909 struct sym
*last_class
= NULL
;
2911 while (LOOKING_AT (IDENT
))
2913 last_class
= add_sym (yytext
, last_class
);
2916 if (LOOKING_AT ('<'))
2919 SET_FLAG (last_class
->flags
, F_TEMPLATE
);
2922 if (!LOOKING_AT (DCOLON
))
2932 /* Parse an operator name. Add the `static' flag to *SC if an
2933 implicitly static operator has been parsed. Value is a pointer to
2934 a static buffer holding the constructed operator name string. */
2940 static int id_size
= 0;
2941 static char *id
= NULL
;
2947 if (LOOKING_AT2 (NEW
, DELETE
))
2949 /* `new' and `delete' are implicitly static. */
2950 if (*sc
!= SC_FRIEND
)
2953 s
= token_string (LA1
);
2956 len
= strlen (s
) + 10;
2959 int new_size
= max (len
, 2 * id_size
);
2960 id
= (char *) xrealloc (id
, new_size
);
2965 /* Vector new or delete? */
2966 if (LOOKING_AT ('['))
2971 if (LOOKING_AT (']'))
2980 int tokens_matched
= 0;
2985 int new_size
= max (len
, 2 * id_size
);
2986 id
= (char *) xrealloc (id
, new_size
);
2989 strcpy (id
, "operator");
2991 /* Beware access declarations of the form "X::f;" Beware of
2992 `operator () ()'. Yet another difficulty is found in
2993 GCC 2.95's STL: `operator == __STL_NULL_TMPL_ARGS (...'. */
2994 while (!(LOOKING_AT ('(') && tokens_matched
)
2995 && !LOOKING_AT2 (';', YYEOF
))
2997 s
= token_string (LA1
);
2998 len
+= strlen (s
) + 2;
3001 int new_size
= max (len
, 2 * id_size
);
3002 id
= (char *) xrealloc (id
, new_size
);
3006 if (*s
!= ')' && *s
!= ']')
3011 /* If this is a simple operator like `+', stop now. */
3012 if (!isalpha ((unsigned char) *s
) && *s
!= '(' && *s
!= '[')
3023 /* This one consumes the last IDENT of a qualified member name like
3024 `X::Y::z'. This IDENT is returned in LAST_ID. Value is the
3025 symbol structure for the ident. */
3028 parse_qualified_ident_or_type (last_id
)
3031 struct sym
*cls
= NULL
;
3036 while (LOOKING_AT (IDENT
))
3038 int len
= strlen (yytext
) + 1;
3041 id
= (char *) xrealloc (id
, len
);
3044 strcpy (id
, yytext
);
3048 SKIP_MATCHING_IF ('<');
3050 if (LOOKING_AT (DCOLON
))
3052 struct sym
*pcn
= NULL
;
3053 struct link
*pna
= check_namespace_alias (id
);
3058 enter_namespace (pna
->sym
->name
);
3064 else if ((pcn
= check_namespace (id
, current_namespace
)))
3066 enter_namespace (pcn
->name
);
3070 cls
= add_sym (id
, cls
);
3089 /* This one consumes the last IDENT of a qualified member name like
3090 `X::Y::z'. This IDENT is returned in LAST_ID. Value is the
3091 symbol structure for the ident. */
3094 parse_qualified_param_ident_or_type (last_id
)
3097 struct sym
*cls
= NULL
;
3098 static char *id
= NULL
;
3099 static int id_size
= 0;
3101 while (LOOKING_AT (IDENT
))
3103 int len
= strlen (yytext
) + 1;
3106 id
= (char *) xrealloc (id
, len
);
3109 strcpy (id
, yytext
);
3113 SKIP_MATCHING_IF ('<');
3115 if (LOOKING_AT (DCOLON
))
3117 cls
= add_sym (id
, cls
);
3127 /* Parse a class definition.
3129 CONTAINING is the class containing the class being parsed or null.
3130 This may also be null if NESTED != 0 if the containing class is
3131 anonymous. TAG is the tag of the class (struct, union, class).
3132 NESTED is non-zero if we are parsing a nested class.
3134 Current lookahead is the class name. */
3137 class_definition (containing
, tag
, flags
, nested
)
3138 struct sym
*containing
;
3143 struct sym
*current
;
3144 struct sym
*base_class
;
3146 /* Set CURRENT to null if no entry has to be made for the class
3147 parsed. This is the case for certain command line flag
3149 if ((tag
!= CLASS
&& !f_structs
) || (nested
&& !f_nested_classes
))
3153 current
= add_sym (yytext
, containing
);
3154 current
->pos
= BUFFER_POS ();
3155 current
->regexp
= matching_regexp ();
3156 current
->filename
= filename
;
3157 current
->flags
= flags
;
3160 /* If at ':', base class list follows. */
3161 if (LOOKING_AT (':'))
3170 case VIRTUAL
: case PUBLIC
: case PROTECTED
: case PRIVATE
:
3175 base_class
= parse_classname ();
3176 if (base_class
&& current
&& base_class
!= current
)
3177 add_link (base_class
, current
);
3180 /* The `,' between base classes or the end of the base
3181 class list. Add the previously found base class.
3182 It's done this way to skip over sequences of
3183 `A::B::C' until we reach the end.
3185 FIXME: it is now possible to handle `class X : public B::X'
3186 because we have enough information. */
3192 /* A syntax error, possibly due to preprocessor constructs
3198 class A : private B.
3200 MATCH until we see something like `;' or `{'. */
3201 while (!LOOKING_AT3 (';', YYEOF
, '{'))
3212 /* Parse the class body if there is one. */
3213 if (LOOKING_AT ('{'))
3215 if (tag
!= CLASS
&& !f_structs
)
3220 class_body (current
, tag
);
3222 if (LOOKING_AT ('}'))
3225 if (LOOKING_AT (';') && !nested
)
3232 /* Add to class *CLS information for the declaration of variable or
3233 type *ID. If *CLS is null, this means a global declaration. SC is
3234 the storage class of *ID. FLAGS is a bit set giving additional
3235 information about the member (see the F_* defines). */
3238 add_declarator (cls
, id
, flags
, sc
)
3243 if (LOOKING_AT2 (';', ','))
3245 /* The end of a member variable or of an access declaration
3246 `X::f'. To distinguish between them we have to know whether
3247 type information has been seen. */
3250 char *regexp
= matching_regexp ();
3251 int pos
= BUFFER_POS ();
3254 add_member_defn (*cls
, *id
, regexp
, pos
, 0, 1, SC_UNKNOWN
, flags
);
3256 add_global_defn (*id
, regexp
, pos
, 0, 1, sc
, flags
);
3262 else if (LOOKING_AT ('{'))
3264 if (sc
== SC_TYPE
&& *id
)
3266 /* A named enumeration. */
3267 char *regexp
= matching_regexp ();
3268 int pos
= BUFFER_POS ();
3269 add_global_defn (*id
, regexp
, pos
, 0, 1, sc
, flags
);
3281 /* Parse a declaration. */
3288 struct sym
*cls
= NULL
;
3289 char *regexp
= NULL
;
3295 while (!LOOKING_AT3 (';', '{', YYEOF
))
3318 case INT
: case CHAR
: case LONG
: case UNSIGNED
:
3319 case SIGNED
: case CONST
: case DOUBLE
: case VOID
:
3320 case SHORT
: case VOLATILE
: case BOOL
: case WCHAR
:
3324 case CLASS
: case STRUCT
: case UNION
:
3325 /* This is for the case `STARTWRAP class X : ...' or
3326 `declare (X, Y)\n class A : ...'. */
3334 /* Assumed to be the start of an initialization in this
3336 skip_initializer ();
3340 add_declarator (&cls
, &id
, flags
, sc
);
3345 char *s
= operator_name (&sc
);
3346 id
= (char *) xrealloc (id
, strlen (s
) + 1);
3352 SET_FLAG (flags
, F_INLINE
);
3358 if (LOOKING_AT (IDENT
))
3360 id
= (char *) xrealloc (id
, strlen (yytext
) + 2);
3362 strcpy (id
+ 1, yytext
);
3368 cls
= parse_qualified_ident_or_type (&id
);
3372 /* Most probably the beginning of a parameter list. */
3379 if (!(is_constructor
= streq (id
, cls
->name
)))
3380 regexp
= matching_regexp ();
3385 pos
= BUFFER_POS ();
3386 hash
= parm_list (&flags
);
3389 regexp
= matching_regexp ();
3392 add_member_defn (cls
, id
, regexp
, pos
, hash
, 0,
3397 /* This may be a C functions, but also a macro
3398 call of the form `declare (A, B)' --- such macros
3399 can be found in some class libraries. */
3404 regexp
= matching_regexp ();
3405 pos
= BUFFER_POS ();
3406 hash
= parm_list (&flags
);
3407 add_global_decl (id
, regexp
, pos
, hash
, 0, sc
, flags
);
3410 /* This is for the case that the function really is
3411 a macro with no `;' following it. If a CLASS directly
3412 follows, we would miss it otherwise. */
3413 if (LOOKING_AT3 (CLASS
, STRUCT
, UNION
))
3417 while (!LOOKING_AT3 (';', '{', YYEOF
))
3420 if (!cls
&& id
&& LOOKING_AT ('{'))
3421 add_global_defn (id
, regexp
, pos
, hash
, 0, sc
, flags
);
3429 add_declarator (&cls
, &id
, flags
, sc
);
3433 /* Parse a list of top-level declarations/definitions. START_FLAGS
3434 says in which context we are parsing. If it is F_EXTERNC, we are
3435 parsing in an `extern "C"' block. Value is 1 if EOF is reached, 0
3439 globals (start_flags
)
3444 int flags
= start_flags
;
3456 if (LOOKING_AT (IDENT
))
3458 char *namespace_name
= xstrdup (yytext
);
3461 if (LOOKING_AT ('='))
3463 struct link
*qna
= match_qualified_namespace_alias ();
3465 register_namespace_alias (namespace_name
, qna
);
3467 if (skip_to (';') == ';')
3470 else if (LOOKING_AT ('{'))
3473 enter_namespace (namespace_name
);
3479 xfree (namespace_name
);
3486 if (LOOKING_AT (CSTRING
) && *string_start
== 'C'
3487 && *(string_start
+ 1) == '"')
3489 /* This is `extern "C"'. */
3492 if (LOOKING_AT ('{'))
3495 globals (F_EXTERNC
);
3499 SET_FLAG (flags
, F_EXTERNC
);
3505 SKIP_MATCHING_IF ('<');
3506 SET_FLAG (flags
, F_TEMPLATE
);
3509 case CLASS
: case STRUCT
: case UNION
:
3514 /* More than one ident here to allow for MS-DOS and OS/2
3515 specialties like `far', `_Export' etc. Some C++ libs
3516 have constructs like `_OS_DLLIMPORT(_OS_CLIENT)' in front
3517 of the class name. */
3518 while (!LOOKING_AT4 (YYEOF
, ';', ':', '{'))
3520 if (LOOKING_AT (IDENT
))
3525 /* Don't add anonymous unions. */
3526 if (LOOKING_AT2 (':', '{') && !anonymous
)
3527 class_definition (NULL
, class_tk
, flags
, 0);
3530 if (skip_to (';') == ';')
3534 flags
= start_flags
;
3544 declaration (flags
);
3545 flags
= start_flags
;
3550 yyerror ("parse error", NULL
);
3555 /* Parse the current input file. */
3560 while (globals (0) == 0)
3566 /***********************************************************************
3568 ***********************************************************************/
3570 /* Add the list of paths PATH_LIST to the current search path for
3574 add_search_path (path_list
)
3579 char *start
= path_list
;
3580 struct search_path
*p
;
3582 while (*path_list
&& *path_list
!= PATH_LIST_SEPARATOR
)
3585 p
= (struct search_path
*) xmalloc (sizeof *p
);
3586 p
->path
= (char *) xmalloc (path_list
- start
+ 1);
3587 memcpy (p
->path
, start
, path_list
- start
);
3588 p
->path
[path_list
- start
] = '\0';
3591 if (search_path_tail
)
3593 search_path_tail
->next
= p
;
3594 search_path_tail
= p
;
3597 search_path
= search_path_tail
= p
;
3599 while (*path_list
== PATH_LIST_SEPARATOR
)
3605 /* Open FILE and return a file handle for it, or -1 if FILE cannot be
3606 opened. Try to find FILE in search_path first, then try the
3607 unchanged file name. */
3614 static char *buffer
;
3615 static int buffer_size
;
3616 struct search_path
*path
;
3617 int flen
= strlen (file
) + 1; /* +1 for the slash */
3619 filename
= xstrdup (file
);
3621 for (path
= search_path
; path
&& fp
== NULL
; path
= path
->next
)
3623 int len
= strlen (path
->path
) + flen
;
3625 if (len
+ 1 >= buffer_size
)
3627 buffer_size
= max (len
+ 1, 2 * buffer_size
);
3628 buffer
= (char *) xrealloc (buffer
, buffer_size
);
3631 strcpy (buffer
, path
->path
);
3632 strcat (buffer
, "/");
3633 strcat (buffer
, file
);
3634 fp
= fopen (buffer
, "r");
3637 /* Try the original file name. */
3639 fp
= fopen (file
, "r");
3642 yyerror ("cannot open", NULL
);
3648 /* Display usage information and exit program. */
3651 Usage: ebrowse [options] {files}\n\
3653 -a, --append append output to existing file\n\
3654 -f, --files=FILES read input file names from FILE\n\
3655 -I, --search-path=LIST set search path for input files\n\
3656 -m, --min-regexp-length=N set minimum regexp length to N\n\
3657 -M, --max-regexp-length=N set maximum regexp length to N\n\
3658 -n, --no-nested-classes exclude nested classes\n\
3659 -o, --output-file=FILE set output file name to FILE\n\
3660 -p, --position-info print info about position in file\n\
3661 -s, --no-structs-or-unions don't record structs or unions\n\
3662 -v, --verbose be verbose\n\
3663 -V, --very-verbose be very verbose\n\
3664 -x, --no-regexps don't record regular expressions\n\
3665 --help display this help\n\
3666 --version display version info\n\
3674 exit (error
? EXIT_FAILURE
: EXIT_SUCCESS
);
3678 /* Display version and copyright info. The VERSION macro is set
3679 from the Makefile and contains the Emacs version. */
3682 # define VERSION "21"
3688 printf ("ebrowse %s\n", VERSION
);
3689 puts ("Copyright (C) 1992-1999, 2000, 2001 Free Software Foundation, Inc.");
3690 puts ("This program is distributed under the same terms as Emacs.");
3691 exit (EXIT_SUCCESS
);
3695 /* Parse one input file FILE, adding classes and members to the symbol
3704 fp
= open_file (file
);
3709 /* Give a progress indication if needed. */
3721 /* Read file to inbuffer. */
3724 if (nread
+ READ_CHUNK_SIZE
>= inbuffer_size
)
3726 inbuffer_size
= nread
+ READ_CHUNK_SIZE
+ 1;
3727 inbuffer
= (char *) xrealloc (inbuffer
, inbuffer_size
);
3730 nbytes
= fread (inbuffer
+ nread
, 1, READ_CHUNK_SIZE
, fp
);
3737 inbuffer
[nread
] = '\0';
3739 /* Reinitialize scanner and parser for the new input file. */
3743 /* Parse it and close the file. */
3750 /* Read a line from stream FP and return a pointer to a static buffer
3751 containing its contents without the terminating newline. Value
3752 is null when EOF is reached. */
3758 static char *buffer
;
3759 static int buffer_size
;
3762 while ((c
= getc (fp
)) != EOF
&& c
!= '\n')
3764 if (i
>= buffer_size
)
3766 buffer_size
= max (100, buffer_size
* 2);
3767 buffer
= (char *) xrealloc (buffer
, buffer_size
);
3773 if (c
== EOF
&& i
== 0)
3776 if (i
== buffer_size
)
3778 buffer_size
= max (100, buffer_size
* 2);
3779 buffer
= (char *) xrealloc (buffer
, buffer_size
);
3783 if (i
> 0 && buffer
[i
- 1] == '\r')
3784 buffer
[i
- 1] = '\0';
3789 /* Main entry point. */
3797 int any_inputfiles
= 0;
3798 static char *out_filename
= DEFAULT_OUTFILE
;
3799 static char **input_filenames
= NULL
;
3800 static int input_filenames_size
= 0;
3801 static int n_input_files
;
3803 filename
= "command line";
3806 while ((i
= getopt_long (argc
, argv
, "af:I:m:M:no:p:svVx",
3807 options
, NULL
)) != EOF
)
3813 info_position
= atoi (optarg
);
3817 f_nested_classes
= 0;
3824 /* Add the name of a file containing more input files. */
3826 if (n_input_files
== input_filenames_size
)
3828 input_filenames_size
= max (10, 2 * input_filenames_size
);
3829 input_filenames
= (char **) xrealloc ((void *)input_filenames
,
3830 input_filenames_size
);
3832 input_filenames
[n_input_files
++] = xstrdup (optarg
);
3835 /* Append new output to output file instead of truncating it. */
3840 /* Include structs in the output */
3845 /* Be verbose (give a progress indication). */
3850 /* Be very verbose (print file names as they are processed). */
3856 /* Change the name of the output file. */
3858 out_filename
= optarg
;
3861 /* Set minimum length for regular expression strings
3862 when recorded in the output file. */
3864 min_regexp
= atoi (optarg
);
3867 /* Set maximum length for regular expression strings
3868 when recorded in the output file. */
3870 max_regexp
= atoi (optarg
);
3873 /* Add to search path. */
3875 add_search_path (optarg
);
3889 /* Call init_scanner after command line flags have been processed to be
3890 able to add keywords depending on command line (not yet
3895 /* Open output file */
3900 /* Check that the file to append to exists, and is not
3901 empty. More specifically, it should be a valid file
3902 produced by a previous run of ebrowse, but that's too
3903 difficult to check. */
3907 fp
= fopen (out_filename
, "r");
3909 yyerror ("file `%s' must exist for --append", out_filename
);
3911 rc
= fseek (fp
, 0, SEEK_END
);
3913 yyerror ("error seeking in file `%s'", out_filename
);
3917 yyerror ("error getting size of file `%s'", out_filename
);
3919 yyerror ("file `%s' is empty", out_filename
);
3924 yyout
= fopen (out_filename
, f_append
? "a" : "w");
3927 yyerror ("cannot open output file `%s'", out_filename
);
3928 exit (EXIT_FAILURE
);
3932 /* Process input files specified on the command line. */
3933 while (optind
< argc
)
3935 process_file (argv
[optind
++]);
3939 /* Process files given on stdin if no files specified. */
3940 if (!any_inputfiles
&& n_input_files
== 0)
3943 while ((file
= read_line (stdin
)) != NULL
)
3944 process_file (file
);
3948 /* Process files from `--files=FILE'. Every line in FILE names
3949 one input file to process. */
3950 for (i
= 0; i
< n_input_files
; ++i
)
3952 FILE *fp
= fopen (input_filenames
[i
], "r");
3955 yyerror ("cannot open input file `%s'", input_filenames
[i
]);
3959 while ((file
= read_line (fp
)) != NULL
)
3960 process_file (file
);
3966 /* Write output file. */
3969 /* Close output file. */
3970 if (yyout
!= stdout
)
3973 return EXIT_SUCCESS
;
3976 /* arch-tag: fc03b4bc-91a9-4c3d-b3b9-12a77fa86dd8
3977 (do not change this comment) */
3979 /* ebrowse.c ends here */