4 # gtk-doc - GTK DocBook documentation generator.
5 # Copyright (C) 1998 Damon Chaplin
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 #############################################################################
23 # Script : gtkdoc-scan
24 # Description : Extracts declarations of functions, macros, enums, structs
25 # and unions from header files.
27 # It is called with a module name, an optional source directory,
28 # an optional output directory, and the header files to scan.
30 # It outputs all declarations found to a file named
31 # '$MODULE-decl.txt', and the list of decarations to another
32 # file '$MODULE-decl-list.txt'.
34 # This second list file is typically copied to
35 # '$MODULE-sections.txt' and organized into sections ready to
36 # output the SGML pages.
37 #############################################################################
43 push @INC, '@PACKAGE_DATA_DIR@';
44 require "gtkdoc-common.pl";
48 # name of documentation module
52 my $IGNORE_HEADERS = "";
57 # regexp matching cpp symbols which surround deprecated stuff
58 # e.g. 'GTK_ENABLE_BROKEN|GTK_DISABLE_DEPRECATED'
59 # these are detected if they are used as #if FOO, #ifndef FOO, or #ifdef FOO
60 my $DEPRECATED_GUARDS;
61 # regexp matching decorators that should be ignored
62 my $IGNORE_DECORATORS;
64 my %optctl = (module => \$MODULE,
65 'source-dir' => \@SOURCE_DIRS,
66 'ignore-headers' => \$IGNORE_HEADERS,
67 'output-dir' => \$OUTPUT_DIR,
68 'rebuild-types' => \$REBUILD_TYPES,
69 'rebuild-sections' => \$REBUILD_SECTIONS,
70 'version' => \$PRINT_VERSION,
71 'help' => \$PRINT_HELP,
72 'deprecated-guards' => \$DEPRECATED_GUARDS,
73 'ignore-decorators' => \$IGNORE_DECORATORS);
74 GetOptions(\%optctl, "module=s", "source-dir:s", "ignore-headers:s",
75 "output-dir:s", "rebuild-types", "rebuild-sections", "version",
76 "help", "deprecated-guards:s", "ignore-decorators:s");
89 gtkdoc-scan version @VERSION@ - scan header files for public symbols
91 --module=MODULE_NAME Name of the doc module being parsed
92 --source-dir=DIRNAME Directories containing the source files to scan
93 --ignore-headers=FILES A space-separated list of header files/dirs not to
95 --output-dir=DIRNAME The directory where the results are stored
96 --deprecated-guards=GUARDS A |-separated list of symbols used as deprecation
98 --ignore-decorators=DECS A |-separated list of addition decorators in
99 declarations that should be ignored
100 --rebuild-sections Rebuild (overwrite) the MODULE-sections.txt file
101 --rebuild-types Automatically recreate the MODULE.types file using
102 all the *_get_type() functions found
103 --version Print the version of this program
104 --help Print this help
109 $DEPRECATED_GUARDS = $DEPRECATED_GUARDS ? $DEPRECATED_GUARDS : "does_not_match_any_cpp_symbols_at_all_nope";
111 $IGNORE_DECORATORS = $IGNORE_DECORATORS || "(?=no)match";
113 $OUTPUT_DIR = $OUTPUT_DIR ? $OUTPUT_DIR : ".";
115 if (!-d ${OUTPUT_DIR}) {
116 mkdir($OUTPUT_DIR, 0755) || die "Cannot create $OUTPUT_DIR: $!";
119 my $old_decl_list = "${OUTPUT_DIR}/$MODULE-decl-list.txt";
120 my $new_decl_list = "${OUTPUT_DIR}/$MODULE-decl-list.new";
121 my $old_decl = "${OUTPUT_DIR}/$MODULE-decl.txt";
122 my $new_decl = "${OUTPUT_DIR}/$MODULE-decl.new";
123 my $old_types = "${OUTPUT_DIR}/$MODULE.types";
124 my $new_types = "${OUTPUT_DIR}/$MODULE.types.new";
125 my $sections_file = "${OUTPUT_DIR}/$MODULE-sections.txt";
127 # If this is the very first run then we create the .types file automatically.
128 if (! -e $sections_file && ! -e $old_types) {
132 open (DECLLIST, ">$new_decl_list")
133 || die "Can't open $new_decl_list";
134 open (DECL, ">$new_decl")
135 || die "Can't open $new_decl";
136 if ($REBUILD_TYPES) {
137 open (TYPES, ">$new_types")
138 || die "Can't open $new_types";
141 my %section_list = ();
147 # do not read files twice; checking it here permits to give both srcdir and
148 # builddir as --source-dir without fear of duplicities
151 # The header files to scan are passed in as command-line args.
153 &ScanHeader ($file, \%section_list);
156 for my $dir (@SOURCE_DIRS) {
157 &ScanHeaders ($dir, \%section_list);
160 ## FIXME: sort by key and output
161 #print DECLLIST $section_list;
163 foreach $section (sort(keys %section_list)) {
164 print DECLLIST "$section_list{$section}";
170 if ($REBUILD_TYPES) {
173 foreach $func (sort(@get_types)) {
174 print TYPES "$func\n";
177 &UpdateFileIfChanged ($old_types, $new_types, 1);
179 # remove the file if empty
180 if (scalar (@get_types) == 0) {
181 unlink ("$new_types");
185 &UpdateFileIfChanged ($old_decl_list, $new_decl_list, 1);
186 &UpdateFileIfChanged ($old_decl, $new_decl, 1);
188 # If there is no MODULE-sections.txt file yet or we are asked to rebuild it,
189 # we copy the MODULE-decl-list.txt file into its place. The user can tweak it
190 # later if they want.
191 if ($REBUILD_SECTIONS || ! -e $sections_file) {
192 `cp $old_decl_list $sections_file`;
195 # If there is no MODULE-overrides.txt file we create an empty one
196 # because EXTRA_DIST in gtk-doc.make requires it.
197 my $overrides_file = "${OUTPUT_DIR}/$MODULE-overrides.txt";
198 if (! -e $overrides_file) {
199 `touch $overrides_file`;
204 #############################################################################
205 # Function : ScanHeaders
206 # Description : This scans a directory tree looking for header files.
208 # Arguments : $source_dir - the directory to scan.
209 # $section_list - a reference to the hashmap of sections.
210 #############################################################################
213 my ($source_dir, $section_list) = @_;
214 @TRACE@("Scanning source directory: $source_dir");
216 # This array holds any subdirectories found.
219 opendir (SRCDIR, $source_dir)
220 || die "Can't open source directory $source_dir: $!";
222 foreach $file (readdir (SRCDIR)) {
223 if ($file eq '.' || $file eq '..' || $file =~ /^\./) {
225 } elsif (-d "$source_dir/$file") {
226 push (@subdirs, $file);
227 } elsif ($file =~ m/\.h$/) {
228 &ScanHeader ("$source_dir/$file", $section_list);
233 # Now recursively scan the subdirectories.
235 foreach $dir (@subdirs) {
236 next if ($IGNORE_HEADERS =~ m/(\s|^)\Q${dir}\E(\s|$)/);
237 &ScanHeaders ("$source_dir/$dir", $section_list);
242 #############################################################################
243 # Function : ScanHeader
244 # Description : This scans a header file, looking for declarations of
245 # functions, macros, typedefs, structs and unions, which it
246 # outputs to the DECL file.
247 # Arguments : $input_file - the header file to scan.
248 # $section_list - a reference to the hashmap of sections.
249 # Returns : it adds declarations to the appropriate list.
250 #############################################################################
253 my ($input_file, $section_list) = @_;
255 my $list = ""; # Holds the resulting list of declarations.
256 my ($in_comment) = 0; # True if we are in a comment.
257 my ($in_declaration) = ""; # The type of declaration we are in, e.g.
258 # 'function' or 'macro'.
259 my ($skip_block) = 0; # True if we should skip a block.
260 my ($symbol); # The current symbol being declared.
261 my ($decl); # Holds the declaration of the current symbol.
262 my ($ret_type); # For functions and function typedefs this
263 # holds the function's return type.
264 my ($pre_previous_line) = ""; # The pre-previous line read in - some Gnome
265 # functions have the return type on one
266 # line, the function name on the next,
267 # and the rest of the declaration after.
268 my ($previous_line) = ""; # The previous line read in - some Gnome
269 # functions have the return type on one line
270 # and the rest of the declaration after.
271 my ($first_macro) = 1; # Used to try to skip the standard #ifdef XXX
272 # #define XXX at the start of headers.
273 my ($level); # Used to handle structs/unions which contain
274 # nested structs or unions.
275 my @objects = (); # Holds declarations that look like GtkObject
276 # subclasses, which we remove from the list.
277 my ($internal) = 0; # Set to 1 for internal symbols, we need to
278 # fully parse, but don't add them to docs
279 my %forward_decls = (); # hashtable of forward declarations, we skip
280 # them if we find the real declaration
285 my $deprecated_conditional_nest = 0;
286 my $ignore_conditional_nest = 0;
290 # Don't scan headers twice
291 my $canonical_input_file = realpath $input_file;
292 if (exists $seen_headers{$canonical_input_file}) {
293 @TRACE@("File already scanned: $input_file");
296 $seen_headers{$canonical_input_file} = 1;
298 if ($input_file =~ m/^.*[\/\\](.*)\.h+$/) {
301 LogWarning(__FILE__,__LINE__,"Can't find basename of file $input_file");
302 $file_basename = $input_file;
305 # Check if the basename is in the list of headers to ignore.
306 if ($IGNORE_HEADERS =~ m/(\s|^)\Q${file_basename}\E\.h(\s|$)/) {
307 @TRACE@("File ignored: $input_file");
311 if (! -f $input_file) {
312 LogWarning(__FILE__,__LINE__,"File doesn't exist: $input_file");
316 @TRACE@("Scanning $input_file");
318 open(INPUT, $input_file)
319 || die "Can't open $input_file: $!";
321 # If this is a private header, skip it.
322 if (m%^\s*/\*\s*<\s*private_header\s*>\s*\*/%) {
327 # Skip to the end of the current comment.
329 @TRACE@("Comment: $_");
336 # Keep a count of #if, #ifdef, #ifndef nesting,
337 # and if we enter a deprecation-symbol-bracketed
339 if (m/^\s*#\s*if(?:n?def\b|\s+!?\s*defined\s*\()\s*(\w+)/) {
340 my $define_name = $1;
341 if ($deprecated_conditional_nest == 0 and $define_name =~ /$DEPRECATED_GUARDS/) {
342 $deprecated_conditional_nest = 1;
343 } elsif ($deprecated_conditional_nest > 0) {
344 $deprecated_conditional_nest += 1;
346 if ($ignore_conditional_nest == 0 and $define_name =~ /__GTK_DOC_IGNORE__/) {
347 $ignore_conditional_nest = 1;
348 } elsif ($ignore_conditional_nest > 0) {
349 $ignore_conditional_nest += 1;
351 } elsif (m/^\s*#\sif/) {
352 if ($deprecated_conditional_nest > 0) {
353 $deprecated_conditional_nest += 1;
355 if ($ignore_conditional_nest > 0) {
356 $ignore_conditional_nest += 1;
358 } elsif (m/^\s*#endif/) {
359 if ($deprecated_conditional_nest > 0) {
360 $deprecated_conditional_nest -= 1;
362 if ($ignore_conditional_nest > 0) {
363 $ignore_conditional_nest -= 1;
367 # set global that is used later when we do AddSymbolToList
368 if ($deprecated_conditional_nest > 0) {
369 $deprecated = "<DEPRECATED/>\n";
374 if($ignore_conditional_nest) {
378 if (!$in_declaration) {
379 # Skip top-level comments.
382 @TRACE@("Found one-line comment: $_");
385 @TRACE@("Found start of comment: $_");
394 if (m/^\s*#\s*define\s+(\w+)/) {
397 # We assume all macros which start with '_' are private, but
398 # we accept '_' itself which is the standard gettext macro.
399 # We also try to skip the first macro if it looks like the
400 # standard #ifndef HEADER_FILE #define HEADER_FILE etc.
401 # And we only want TRUE & FALSE defined in GLib (libdefs.h in
402 # libgnome also defines them if they are not already defined).
403 if (($symbol !~ m/^_/
404 && ($previous_line !~ m/#ifndef\s+$symbol/
405 || $first_macro == 0)
406 && (($symbol ne 'TRUE' && $symbol ne 'FALSE')
407 || $MODULE eq 'glib'))
409 $in_declaration = "macro";
410 @TRACE@("Macro: $symbol");
412 @TRACE@("skipping Macro: $symbol");
413 $in_declaration = "macro";
419 # TYPEDEF'D FUNCTIONS (i.e. user functions)
422 } elsif (m/^\s*typedef\s+((const\s+|G_CONST_RETURN\s+)?\w+)(\s+const)?\s*(\**)\s*\(\*\s*(\w+)\)\s*\(/) {
423 my $p3 = defined($3) ? $3 : "";
424 $ret_type = "$1$p3 $4";
427 $in_declaration = "user_function";
428 @TRACE@("user function (1): $symbol, Returns: $ret_type");
431 } elsif (($previous_line =~ m/^\s*typedef\s*/) && m/^\s*((const\s+|G_CONST_RETURN\s+)?\w+)(\s+const)?\s*(\**)\s*\(\*\s*(\w+)\)\s*\(/) {
432 my $p3 = defined($3) ? $3 : "";
433 $ret_type = "$1$p3 $4";
436 $in_declaration = "user_function";
437 @TRACE@("user function (2): $symbol, Returns: $ret_type");
440 } elsif (($previous_line =~ m/^\s*typedef\s*/) && m/^\s*(\**)\s*\(\*\s*(\w+)\)\s*\(/) {
445 if ($previous_line =~ m/^\s*typedef\s*((const\s+|G_CONST_RETURN\s+)?\w+)(\s+const)?\s*/) {
446 my $p3 = defined($3) ? $3 : "";
447 $ret_type = "$1$p3 ".$ret_type;
448 $in_declaration = "user_function";
449 @TRACE@("user function (3): $symbol, Returns: $ret_type");
452 # FUNCTION POINTER VARIABLES
454 } elsif (m/^\s*(?:\b(?:extern|G_INLINE_FUNC|${IGNORE_DECORATORS})\b\s*)*((const\s+|G_CONST_RETURN\s+)?\w+)(\s+const)?\s*(\**)\s*\(\*\s*(\w+)\)\s*\(/o) {
455 my $p3 = defined($3) ? $3 : "";
456 $ret_type = "$1$p3 $4";
459 $in_declaration = "user_function";
460 @TRACE@("function pointer variable: $symbol, Returns: $ret_type");
464 } elsif (s/^\s*enum\s+_(\w+)\s+\{/enum $1 {/) {
465 # We assume that 'enum _<enum_name> {' is really the
466 # declaration of enum <enum_name>.
468 @TRACE@("plain enum: $symbol");
470 $in_declaration = "enum";
472 } elsif (m/^\s*typedef\s+enum\s+_?(\w+)\s+\1\s*;/) {
473 # We skip 'typedef enum <enum_name> _<enum_name>;' as the enum will
474 # be declared elsewhere.
475 @TRACE@("skipping enum typedef: $1");
477 } elsif (m/^\s*typedef\s+enum/) {
479 @TRACE@("typedef enum: -");
481 $in_declaration = "enum";
486 } elsif (m/^\s*typedef\s+(struct|union)\s+_(\w+)\s+\2\s*;/) {
487 # We've found a 'typedef struct _<name> <name>;'
488 # This could be an opaque data structure, so we output an
489 # empty declaration. If the structure is actually found that
490 # will override this.
491 my $structsym = uc $1;
492 @TRACE@("$structsym typedef: $2");
493 $forward_decls{$2} = "<$structsym>\n<NAME>$2</NAME>\n$deprecated</$structsym>\n"
495 } elsif (m/^\s*(?:struct|union)\s+_(\w+)\s*;/) {
496 # Skip private structs/unions.
497 @TRACE@("private struct/union");
499 } elsif (m/^\s*(struct|union)\s+(\w+)\s*;/) {
500 # Do a similar thing for normal structs as for typedefs above.
501 # But we output the declaration as well in this case, so we
502 # can differentiate it from a typedef.
503 my $structsym = uc $1;
504 @TRACE@("$structsym: $2");
505 $forward_decls{$2} = "<$structsym>\n<NAME>$2</NAME>\n$_$deprecated</$structsym>\n";
507 } elsif (m/^\s*typedef\s+(struct|union)\s*\w*\s*{/) {
511 $in_declaration = $1;
512 @TRACE@("typedef struct/union $1");
516 } elsif (m/^\s*typedef\s+(?:struct|union)\s+\w+[\s\*]+(\w+)\s*;/) {
517 @TRACE@("Found struct/union(*) typedef $1: $_");
518 if (&AddSymbolToList (\$list, $1)) {
519 print DECL "<TYPEDEF>\n<NAME>$1</NAME>\n$deprecated$_</TYPEDEF>\n";
522 } elsif (m/^\s*(G_GNUC_EXTENSION\s+)?typedef\s+(.+[\s\*])(\w+)(\s*\[[^\]]+\])*\s*;/) {
523 if ($2 !~ m/^struct\s/ && $2 !~ m/^union\s/) {
524 @TRACE@("Found typedef: $_");
525 if (&AddSymbolToList (\$list, $3)) {
526 print DECL "<TYPEDEF>\n<NAME>$3</NAME>\n$deprecated$_</TYPEDEF>\n";
529 } elsif (m/^\s*typedef\s+/) {
530 @TRACE@("Skipping typedef: $_");
533 # VARIABLES (extern'ed variables)
535 } elsif (m/^\s*(extern|[A-Za-z_]+VAR)\s+((const\s+|signed\s+|unsigned\s+|long\s+|short\s+)*\w+)(\s+\*+|\*+|\s)\s*(const\s+)*([A-Za-z]\w*)\s*;/) {
537 s/^\s*([A-Za-z_]+VAR)\b/extern/;
539 @TRACE@("Possible extern var $6: $decl");
540 if (&AddSymbolToList (\$list, $symbol)) {
541 print DECL "<VARIABLE>\n<NAME>$symbol</NAME>\n$deprecated$decl</VARIABLE>\n";
547 } elsif (m/^\s*((const\s+|signed\s+|unsigned\s+|long\s+|short\s+)*\w+)(\s+\*+|\*+|\s)\s*(const\s+)*([A-Za-z]\w*)\s*\=/) {
550 @TRACE@("Possible global var $5: $decl");
551 if (&AddSymbolToList (\$list, $symbol)) {
552 print DECL "<VARIABLE>\n<NAME>$symbol</NAME>\n$deprecated$decl</VARIABLE>\n";
558 # We assume that functions which start with '_' are private, so
561 } elsif (m/^\s*(?:\b(?:extern|G_INLINE_FUNC|${IGNORE_DECORATORS})\b\s*)*((?:const\s+|G_CONST_RETURN\s+|signed\s+|unsigned\s+|long\s+|short\s+|struct\s+|union\s+|enum\s+)*\w+)((?:\s+|\*)+(?:\s*(?:\*+|\bconst\b|\bG_CONST_RETURN\b))*)\s*(_[A-Za-z]\w*)\s*\(/o) {
563 if (defined ($2)) { $ret_type .= " $2"; }
566 @TRACE@("internal Function: $symbol, Returns: [$1][$2]");
567 $in_declaration = "function";
569 if (m/^\s*G_INLINE_FUNC/) {
570 @TRACE@("skip block after inline function");
571 # now we we need to skip a whole { } block
576 } elsif (m/^\s*(?:\b(?:extern|G_INLINE_FUNC|${IGNORE_DECORATORS})\b\s*)*((?:const\s+|G_CONST_RETURN\s+|signed\s+|unsigned\s+|long\s+|short\s+|struct\s+|union\s+|enum\s+)*\w+)((?:\s+|\*)+(?:\s*(?:\*+|\bconst\b|\bG_CONST_RETURN\b))*)\s*([A-Za-z]\w*)\s*\(/o) {
578 if (defined ($2)) { $ret_type .= " $2"; }
581 @TRACE@("Function (1): $symbol, Returns: [$1][$2]");
582 $in_declaration = "function";
583 if (m/^\s*G_INLINE_FUNC/) {
584 @TRACE@("skip block after inline function");
585 # now we we need to skip a whole { } block
589 # Try to catch function declarations which have the return type on
590 # the previous line. But we don't want to catch complete functions
591 # which have been declared G_INLINE_FUNC, e.g. g_bit_nth_lsf in
592 # glib, or 'static inline' functions.
593 } elsif (m/^\s*([A-Za-z]\w*)\s*\(/) {
597 if ($previous_line !~ m/^\s*G_INLINE_FUNC/) {
598 if ($previous_line !~ m/^\s*static\s+/) {
600 if ($previous_line =~ m/^\s*(?:\b(?:extern|${IGNORE_DECORATORS})\b\s*)*((?:const\s+|G_CONST_RETURN\s+|signed\s+|unsigned\s+|long\s+|short\s+|struct\s+|union\s+|enum\s+)*\w+)((?:\s*(?:\*+|\bconst\b|\bG_CONST_RETURN\b))*)\s*$/o) {
602 if (defined ($2)) { $ret_type .= " $2"; }
603 @TRACE@("Function (2): $symbol, Returns: $ret_type");
604 $in_declaration = "function";
607 @TRACE@("skip block after inline function");
608 # now we we need to skip a whole { } block
611 if ($previous_line =~ m/^\s*(?:\b(?:extern|static|inline|${IGNORE_DECORATORS})\b\s*)*((?:const\s+|G_CONST_RETURN\s+|signed\s+|unsigned\s+|long\s+|short\s+|struct\s+|union\s+|enum\s+)*\w+)((?:\s*(?:\*+|\bconst\b|\bG_CONST_RETURN\b))*)\s*$/o) {
613 if (defined ($2)) { $ret_type .= " $2"; }
614 @TRACE@("Function (3): $symbol, Returns: $ret_type");
615 $in_declaration = "function";
620 if ($previous_line !~ m/^\s*static\s+/) {
621 @TRACE@("skip block after inline function");
622 # now we we need to skip a whole { } block
625 if ($previous_line =~ m/^\s*(?:\b(?:extern|G_INLINE_FUNC|${IGNORE_DECORATORS})\b\s*)*((?:const\s+|G_CONST_RETURN\s+|signed\s+|unsigned\s+|long\s+|short\s+|struct\s+|union\s+|enum\s+)*\w+)((?:\s*(?:\*+|\bconst\b|\bG_CONST_RETURN\b))*)\s*$/o) {
627 if (defined ($2)) { $ret_type .= " $2"; }
628 @TRACE@("Function (4): $symbol, Returns: $ret_type");
629 $in_declaration = "function";
634 # Try to catch function declarations with the return type and name
635 # on the previous line(s), and the start of the parameters on this.
636 } elsif (m/^\s*\(/) {
638 if ($previous_line =~ m/^\s*(?:\b(?:extern|G_INLINE_FUNC|${IGNORE_DECORATORS})\b\s*)*((?:const\s+|G_CONST_RETURN\s+|signed\s+|unsigned\s+|enum\s+)*\w+)(\s+\*+|\*+|\s)\s*([A-Za-z]\w*)\s*$/o) {
641 @TRACE@("Function (5): $symbol, Returns: $ret_type");
642 $in_declaration = "function";
644 } elsif ($previous_line =~ m/^\s*\w+\s*$/
645 && $pre_previous_line =~ m/^\s*(?:\b(?:extern|G_INLINE_FUNC|${IGNORE_DECORATORS})\b\s*)*((?:const\s+|G_CONST_RETURN\s+|signed\s+|unsigned\s+|struct\s+|union\s+|enum\s+)*\w+(?:\**\s+\**(?:const|G_CONST_RETURN))?(?:\s+|\s*\*+))\s*$/o) {
647 $ret_type =~ s/\s*\n//;
648 $in_declaration = "function";
650 $symbol = $previous_line;
652 $symbol =~ s/\s*\n//;
653 @TRACE@("Function (6): $symbol, Returns: $ret_type");
656 #} elsif (m/^extern\s+/) {
657 #print "DEBUG: Skipping extern: $_";
662 } elsif (m/^\s*struct\s+_(\w+)\s*\*/) {
663 # Skip 'struct _<struct_name> *', since it could be a
664 # return type on its own line.
666 } elsif (m/^\s*struct\s+_(\w+)/) {
667 # We assume that 'struct _<struct_name>' is really the
668 # declaration of struct <struct_name>.
671 # we will find the correct level as below we do $level += tr/{//;
673 $in_declaration = "struct";
674 @TRACE@("Struct(_): $symbol");
679 } elsif (m/^\s*union\s+_(\w+)\s*\*/) {
680 # Skip 'union _<union_name> *' (see above)
681 } elsif (m/^\s*union\s+_(\w+)/) {
685 $in_declaration = "union";
686 @TRACE@("Union(_): $symbol");
690 @TRACE@("1: [$skip_block] $_");
691 # If we were already in the middle of a declaration, we simply add
692 # the current line onto the end of it.
693 if ($skip_block == 0) {
696 # Remove all nested pairs of curly braces.
697 while ($_ =~ s/{[^{]*}//g) { }
698 # Then hope at most one remains in the line...
700 if ($skip_block == 1) {
706 if ($skip_block == 1) {
707 # this is a hack to detect the end of declaration
713 if ($skip_block == 1) {
720 #if ($in_declaration ne '') {
721 # print "$in_declaration = $decl\n";
724 # Note that sometimes functions end in ') G_GNUC_PRINTF (2, 3);' or
725 # ') __attribute__ (...);'.
726 if ($in_declaration eq 'function') {
727 if ($decl =~ s/\)\s*(G_GNUC_.*|.*DEPRECATED.*|${IGNORE_DECORATORS}\s*|__attribute__\s*\(.*\)\s*)?;.*$//) {
728 if ($internal == 0) {
729 $decl =~ s%/\*.*?\*/%%gs; # remove comments.
730 #$decl =~ s/^\s+//; # remove leading whitespace.
731 #$decl =~ s/\s+$//; # remove trailing whitespace.
732 $decl =~ s/\s*\n\s*/ /gs; # consolidate whitespace at start
734 $ret_type =~ s%/\*.*?\*/%%g; # remove comments in ret type.
735 if (&AddSymbolToList (\$list, $symbol)) {
736 print DECL "<FUNCTION>\n<NAME>$symbol</NAME>\n$deprecated<RETURNS>$ret_type</RETURNS>\n$decl\n</FUNCTION>\n";
737 if ($REBUILD_TYPES) {
738 # check if this looks like a get_type function and if so remember
739 if (($symbol =~ m/_get_type$/) && ($ret_type =~ m/GType/) && ($decl =~ m/(void|)/)) {
740 @TRACE@("Adding get-type: [$ret_type] [$symbol] [$decl]\tfrom $input_file");
741 push (@get_types, $symbol);
748 $in_declaration = "";
753 if ($in_declaration eq 'user_function') {
754 if ($decl =~ s/\).*$//) {
755 if (&AddSymbolToList (\$list, $symbol)) {
756 print DECL "<USER_FUNCTION>\n<NAME>$symbol</NAME>\n$deprecated<RETURNS>$ret_type</RETURNS>\n$decl</USER_FUNCTION>\n";
758 $in_declaration = "";
762 if ($in_declaration eq 'macro') {
763 if ($decl !~ m/\\\s*$/) {
764 if ($internal == 0) {
765 if (&AddSymbolToList (\$list, $symbol)) {
766 print DECL "<MACRO>\n<NAME>$symbol</NAME>\n$deprecated$decl</MACRO>\n";
771 $in_declaration = "";
775 if ($in_declaration eq 'enum') {
776 if ($decl =~ m/\}\s*(\w+)?;\s*$/) {
780 if (&AddSymbolToList (\$list, $symbol)) {
781 print DECL "<ENUM>\n<NAME>$symbol</NAME>\n$deprecated$decl</ENUM>\n";
783 $in_declaration = "";
787 # We try to handle nested stucts/unions, but unmatched brackets in
788 # comments will cause problems.
789 if ($in_declaration eq 'struct' or $in_declaration eq 'union') {
790 if (($level <= 1) && ($decl =~ m/\n\}\s*(\w*);\s*$/)) {
795 if ($symbol =~ m/^(\S+)(Class|Iface|Interface)\b/) {
797 @TRACE@("Found object: $1");
798 $list = "<TITLE>$objectname</TITLE>\n$list";
799 push (@objects, $objectname);
801 @TRACE@("Store struct: $symbol");
802 if (&AddSymbolToList (\$list, $symbol)) {
803 my $structsym = uc $in_declaration;
804 print DECL "<$structsym>\n<NAME>$symbol</NAME>\n$deprecated$decl</$structsym>\n";
805 if (defined($forward_decls{$symbol})) {
806 undef($forward_decls{$symbol});
809 $in_declaration = "";
811 # We use tr to count the brackets in the line, and adjust
812 # $level accordingly.
815 @TRACE@("struct/union level : $level");
819 $pre_previous_line = $previous_line;
824 # print remaining forward declarations
825 foreach $symbol (keys %forward_decls) {
826 if (defined($forward_decls{$symbol})) {
827 &AddSymbolToList (\$list, $symbol);
828 print DECL $forward_decls{$symbol};
832 @TRACE@("Scanning $input_file done\n");
834 # Try to separate the standard macros and functions, placing them at the
835 # end of the current section, in a subsection named 'Standard'.
836 # do this in a loop to catch object, enums and flags
837 # FIXME: we still leave XxxXxxxxClass in the normal section, it would be
838 # nice to hide it, if it is not documented and empty (only parent)
840 my ($standard_decl) = "";
842 if ($list =~ m/^\S+_IS_(\S*)_CLASS\n/m) {
844 $lclass = lc($class);
845 @TRACE@("Found gobject class '$class' from is class macro\n");
846 } elsif ($list =~ m/^\S+_IS_(\S*)\n/m) {
848 $lclass = lc($class);
849 @TRACE@("Found gobject class '$class' from is macro\n");
850 } elsif ($list =~ m/^\S+?_(\S*)_get_type\n/m) {
852 $class = uc($lclass);
853 @TRACE@("Found gobject class '$class' from get_type function\n");
855 $class = $lclass = "";
859 my ($cclass) = $lclass;
862 if ($list =~ s/^\S+${cclass}Private\n//im) { $standard_decl .= $&; }
864 while ($list =~ s/^\S+_IS_$class\n//m) { $standard_decl .= $&; }
865 while ($list =~ s/^\S+_TYPE_$class\n//m) { $standard_decl .= $&; }
866 while ($list =~ s/^\S+_${lclass}_get_type\n//m) { $standard_decl .= $&; }
867 while ($list =~ s/^\S+_${class}_CLASS\n//m) { $standard_decl .= $&; }
868 while ($list =~ s/^\S+_IS_${class}_CLASS\n//m) { $standard_decl .= $&; }
869 while ($list =~ s/^\S+_${class}_GET_CLASS\n//m) { $standard_decl .= $&; }
870 while ($list =~ s/^\S+_${class}_GET_IFACE\n//m) { $standard_decl .= $&; }
871 while ($list =~ s/^\S+_${class}_GET_INTERFACE\n//m) { $standard_decl .= $&; }
873 # We do this one last, otherwise it tends to be caught by the IS_$class macro
874 while ($list =~ s/^\S+_$class\n//m) { $standard_decl .= $&; }
876 @TRACE@("Decl '".join(",",split("\n",$list))."'\n");
877 @TRACE@("Std '".join(",",split("\n",$standard_decl))."'\n");
879 } while ($class ne "");
880 if ($standard_decl ne "") {
882 $standard_decl=join("\n",sort(split("\n",$standard_decl)))."\n";
883 $list .= "<SUBSECTION Standard>\n$standard_decl";
886 $$section_list{$file_basename} .= "<SECTION>\n<FILE>$file_basename</FILE>\n$list</SECTION>\n\n";
891 #############################################################################
892 # Function : AddSymbolToList
893 # Description : This adds the symbol to the list of declarations, but only if
894 # it is not already in the list.
895 # Arguments : $list - reference to the list of symbols, one on each line.
896 # $symbol - the symbol to add to the list.
897 #############################################################################
899 sub AddSymbolToList {
900 my ($list, $symbol) = @_;
902 if ($$list =~ m/\b\Q$symbol\E\b/) {
903 #print "Symbol $symbol already in list. skipping\n";
904 # we return 0 to skip outputting another entry to -decl.txt
905 # this is to avoid redeclarations (e.g. in conditional
909 $$list .= "$symbol\n";