kernel-doc: fix unnamed struct/union warning
[safe/jmp/linux-2.6] / scripts / kernel-doc
1 #!/usr/bin/perl -w
2
3 use strict;
4
5 ## Copyright (c) 1998 Michael Zucchi, All Rights Reserved        ##
6 ## Copyright (C) 2000, 1  Tim Waugh <twaugh@redhat.com>          ##
7 ## Copyright (C) 2001  Simon Huggins                             ##
8 ##                                                               ##
9 ## #define enhancements by Armin Kuster <akuster@mvista.com>     ##
10 ## Copyright (c) 2000 MontaVista Software, Inc.                  ##
11 ##                                                               ##
12 ## This software falls under the GNU General Public License.     ##
13 ## Please read the COPYING file for more information             ##
14
15 # w.o. 03-11-2000: added the '-filelist' option.
16
17 # 18/01/2001 -  Cleanups
18 #               Functions prototyped as foo(void) same as foo()
19 #               Stop eval'ing where we don't need to.
20 # -- huggie@earth.li
21
22 # 27/06/2001 -  Allowed whitespace after initial "/**" and
23 #               allowed comments before function declarations.
24 # -- Christian Kreibich <ck@whoop.org>
25
26 # Still to do:
27 #       - add perldoc documentation
28 #       - Look more closely at some of the scarier bits :)
29
30 # 26/05/2001 -  Support for separate source and object trees.
31 #               Return error code.
32 #               Keith Owens <kaos@ocs.com.au>
33
34 # 23/09/2001 - Added support for typedefs, structs, enums and unions
35 #              Support for Context section; can be terminated using empty line
36 #              Small fixes (like spaces vs. \s in regex)
37 # -- Tim Jansen <tim@tjansen.de>
38
39
40 #
41 # This will read a 'c' file and scan for embedded comments in the
42 # style of gnome comments (+minor extensions - see below).
43 #
44
45 # Note: This only supports 'c'.
46
47 # usage:
48 # kernel-doc [ -docbook | -html | -text | -man ]
49 #           [ -function funcname [ -function funcname ...] ] c file(s)s > outputfile
50 # or
51 #           [ -nofunction funcname [ -function funcname ...] ] c file(s)s > outputfile
52 #
53 #  Set output format using one of -docbook -html -text or -man.  Default is man.
54 #
55 #  -function funcname
56 #       If set, then only generate documentation for the given function(s).  All
57 #       other functions are ignored.
58 #
59 #  -nofunction funcname
60 #       If set, then only generate documentation for the other function(s).
61 #       Cannot be used together with -function
62 #       (yes, that's a bug -- perl hackers can fix it 8))
63 #
64 #  c files - list of 'c' files to process
65 #
66 #  All output goes to stdout, with errors to stderr.
67
68 #
69 # format of comments.
70 # In the following table, (...)? signifies optional structure.
71 #                         (...)* signifies 0 or more structure elements
72 # /**
73 #  * function_name(:)? (- short description)?
74 # (* @parameterx: (description of parameter x)?)*
75 # (* a blank line)?
76 #  * (Description:)? (Description of function)?
77 #  * (section header: (section description)? )*
78 #  (*)?*/
79 #
80 # So .. the trivial example would be:
81 #
82 # /**
83 #  * my_function
84 #  **/
85 #
86 # If the Description: header tag is omitted, then there must be a blank line
87 # after the last parameter specification.
88 # e.g.
89 # /**
90 #  * my_function - does my stuff
91 #  * @my_arg: its mine damnit
92 #  *
93 #  * Does my stuff explained.
94 #  */
95 #
96 #  or, could also use:
97 # /**
98 #  * my_function - does my stuff
99 #  * @my_arg: its mine damnit
100 #  * Description: Does my stuff explained.
101 #  */
102 # etc.
103 #
104 # Beside functions you can also write documentation for structs, unions,
105 # enums and typedefs. Instead of the function name you must write the name
106 # of the declaration;  the struct/union/enum/typedef must always precede
107 # the name. Nesting of declarations is not supported.
108 # Use the argument mechanism to document members or constants.
109 # e.g.
110 # /**
111 #  * struct my_struct - short description
112 #  * @a: first member
113 #  * @b: second member
114 #  *
115 #  * Longer description
116 #  */
117 # struct my_struct {
118 #     int a;
119 #     int b;
120 # /* private: */
121 #     int c;
122 # };
123 #
124 # All descriptions can be multiline, except the short function description.
125 #
126 # You can also add additional sections. When documenting kernel functions you
127 # should document the "Context:" of the function, e.g. whether the functions
128 # can be called form interrupts. Unlike other sections you can end it with an
129 # empty line.
130 # Example-sections should contain the string EXAMPLE so that they are marked
131 # appropriately in DocBook.
132 #
133 # Example:
134 # /**
135 #  * user_function - function that can only be called in user context
136 #  * @a: some argument
137 #  * Context: !in_interrupt()
138 #  *
139 #  * Some description
140 #  * Example:
141 #  *    user_function(22);
142 #  */
143 # ...
144 #
145 #
146 # All descriptive text is further processed, scanning for the following special
147 # patterns, which are highlighted appropriately.
148 #
149 # 'funcname()' - function
150 # '$ENVVAR' - environmental variable
151 # '&struct_name' - name of a structure (up to two words including 'struct')
152 # '@parameter' - name of a parameter
153 # '%CONST' - name of a constant.
154
155 my $errors = 0;
156 my $warnings = 0;
157 my $anon_struct_union = 0;
158
159 # match expressions used to find embedded type information
160 my $type_constant = '\%([-_\w]+)';
161 my $type_func = '(\w+)\(\)';
162 my $type_param = '\@(\w+)';
163 my $type_struct = '\&((struct\s*)*[_\w]+)';
164 my $type_struct_xml = '\\\amp;((struct\s*)*[_\w]+)';
165 my $type_env = '(\$\w+)';
166
167 # Output conversion substitutions.
168 #  One for each output format
169
170 # these work fairly well
171 my %highlights_html = ( $type_constant, "<i>\$1</i>",
172                         $type_func, "<b>\$1</b>",
173                         $type_struct_xml, "<i>\$1</i>",
174                         $type_env, "<b><i>\$1</i></b>",
175                         $type_param, "<tt><b>\$1</b></tt>" );
176 my $blankline_html = "<p>";
177
178 # XML, docbook format
179 my %highlights_xml = ( "([^=])\\\"([^\\\"<]+)\\\"", "\$1<quote>\$2</quote>",
180                         $type_constant, "<constant>\$1</constant>",
181                         $type_func, "<function>\$1</function>",
182                         $type_struct, "<structname>\$1</structname>",
183                         $type_env, "<envar>\$1</envar>",
184                         $type_param, "<parameter>\$1</parameter>" );
185 my $blankline_xml = "</para><para>\n";
186
187 # gnome, docbook format
188 my %highlights_gnome = ( $type_constant, "<replaceable class=\"option\">\$1</replaceable>",
189                          $type_func, "<function>\$1</function>",
190                          $type_struct, "<structname>\$1</structname>",
191                          $type_env, "<envar>\$1</envar>",
192                          $type_param, "<parameter>\$1</parameter>" );
193 my $blankline_gnome = "</para><para>\n";
194
195 # these are pretty rough
196 my %highlights_man = ( $type_constant, "\$1",
197                        $type_func, "\\\\fB\$1\\\\fP",
198                        $type_struct, "\\\\fI\$1\\\\fP",
199                        $type_param, "\\\\fI\$1\\\\fP" );
200 my $blankline_man = "";
201
202 # text-mode
203 my %highlights_text = ( $type_constant, "\$1",
204                         $type_func, "\$1",
205                         $type_struct, "\$1",
206                         $type_param, "\$1" );
207 my $blankline_text = "";
208
209
210 sub usage {
211     print "Usage: $0 [ -v ] [ -docbook | -html | -text | -man ]\n";
212     print "         [ -function funcname [ -function funcname ...] ]\n";
213     print "         [ -nofunction funcname [ -nofunction funcname ...] ]\n";
214     print "         c source file(s) > outputfile\n";
215     exit 1;
216 }
217
218 # read arguments
219 if ($#ARGV==-1) {
220     usage();
221 }
222
223 my $verbose = 0;
224 my $output_mode = "man";
225 my %highlights = %highlights_man;
226 my $blankline = $blankline_man;
227 my $modulename = "Kernel API";
228 my $function_only = 0;
229 my $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
230                 'July', 'August', 'September', 'October',
231                 'November', 'December')[(localtime)[4]] .
232   " " . ((localtime)[5]+1900);
233
234 # Essentially these are globals
235 # They probably want to be tidied up made more localised or summat.
236 # CAVEAT EMPTOR!  Some of the others I localised may not want to be which
237 # could cause "use of undefined value" or other bugs.
238 my ($function, %function_table,%parametertypes,$declaration_purpose);
239 my ($type,$declaration_name,$return_type);
240 my ($newsection,$newcontents,$prototype,$filelist, $brcount, %source_map);
241
242 # Generated docbook code is inserted in a template at a point where
243 # docbook v3.1 requires a non-zero sequence of RefEntry's; see:
244 # http://www.oasis-open.org/docbook/documentation/reference/html/refentry.html
245 # We keep track of number of generated entries and generate a dummy
246 # if needs be to ensure the expanded template can be postprocessed
247 # into html.
248 my $section_counter = 0;
249
250 my $lineprefix="";
251
252 # states
253 # 0 - normal code
254 # 1 - looking for function name
255 # 2 - scanning field start.
256 # 3 - scanning prototype.
257 # 4 - documentation block
258 my $state;
259 my $in_doc_sect;
260
261 #declaration types: can be
262 # 'function', 'struct', 'union', 'enum', 'typedef'
263 my $decl_type;
264
265 my $doc_special = "\@\%\$\&";
266
267 my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
268 my $doc_end = '\*/';
269 my $doc_com = '\s*\*\s*';
270 my $doc_decl = $doc_com.'(\w+)';
271 my $doc_sect = $doc_com.'(['.$doc_special.']?[\w\s]+):(.*)';
272 my $doc_content = $doc_com.'(.*)';
273 my $doc_block = $doc_com.'DOC:\s*(.*)?';
274
275 my %constants;
276 my %parameterdescs;
277 my @parameterlist;
278 my %sections;
279 my @sectionlist;
280
281 my $contents = "";
282 my $section_default = "Description";    # default section
283 my $section_intro = "Introduction";
284 my $section = $section_default;
285 my $section_context = "Context";
286
287 my $undescribed = "-- undescribed --";
288
289 reset_state();
290
291 while ($ARGV[0] =~ m/^-(.*)/) {
292     my $cmd = shift @ARGV;
293     if ($cmd eq "-html") {
294         $output_mode = "html";
295         %highlights = %highlights_html;
296         $blankline = $blankline_html;
297     } elsif ($cmd eq "-man") {
298         $output_mode = "man";
299         %highlights = %highlights_man;
300         $blankline = $blankline_man;
301     } elsif ($cmd eq "-text") {
302         $output_mode = "text";
303         %highlights = %highlights_text;
304         $blankline = $blankline_text;
305     } elsif ($cmd eq "-docbook") {
306         $output_mode = "xml";
307         %highlights = %highlights_xml;
308         $blankline = $blankline_xml;
309     } elsif ($cmd eq "-gnome") {
310         $output_mode = "gnome";
311         %highlights = %highlights_gnome;
312         $blankline = $blankline_gnome;
313     } elsif ($cmd eq "-module") { # not needed for XML, inherits from calling document
314         $modulename = shift @ARGV;
315     } elsif ($cmd eq "-function") { # to only output specific functions
316         $function_only = 1;
317         $function = shift @ARGV;
318         $function_table{$function} = 1;
319     } elsif ($cmd eq "-nofunction") { # to only output specific functions
320         $function_only = 2;
321         $function = shift @ARGV;
322         $function_table{$function} = 1;
323     } elsif ($cmd eq "-v") {
324         $verbose = 1;
325     } elsif (($cmd eq "-h") || ($cmd eq "--help")) {
326         usage();
327     } elsif ($cmd eq '-filelist') {
328             $filelist = shift @ARGV;
329     }
330 }
331
332 # get kernel version from env
333 sub get_kernel_version() {
334     my $version;
335
336     if (defined($ENV{'KERNELVERSION'})) {
337         $version = $ENV{'KERNELVERSION'};
338     }
339     return $version;
340 }
341 my $kernelversion = get_kernel_version();
342
343 # generate a sequence of code that will splice in highlighting information
344 # using the s// operator.
345 my $dohighlight = "";
346 foreach my $pattern (keys %highlights) {
347 #   print STDERR "scanning pattern:$pattern, highlight:($highlights{$pattern})\n";
348     $dohighlight .=  "\$contents =~ s:$pattern:$highlights{$pattern}:gs;\n";
349 }
350
351 ##
352 # dumps section contents to arrays/hashes intended for that purpose.
353 #
354 sub dump_section {
355     my $name = shift;
356     my $contents = join "\n", @_;
357
358     if ($name =~ m/$type_constant/) {
359         $name = $1;
360 #       print STDERR "constant section '$1' = '$contents'\n";
361         $constants{$name} = $contents;
362     } elsif ($name =~ m/$type_param/) {
363 #       print STDERR "parameter def '$1' = '$contents'\n";
364         $name = $1;
365         $parameterdescs{$name} = $contents;
366     } else {
367 #       print STDERR "other section '$name' = '$contents'\n";
368         $sections{$name} = $contents;
369         push @sectionlist, $name;
370     }
371 }
372
373 ##
374 # output function
375 #
376 # parameterdescs, a hash.
377 #  function => "function name"
378 #  parameterlist => @list of parameters
379 #  parameterdescs => %parameter descriptions
380 #  sectionlist => @list of sections
381 #  sections => %section descriptions
382 #
383
384 sub output_highlight {
385     my $contents = join "\n",@_;
386     my $line;
387
388 #   DEBUG
389 #   if (!defined $contents) {
390 #       use Carp;
391 #       confess "output_highlight got called with no args?\n";
392 #   }
393
394 #   print STDERR "contents b4:$contents\n";
395     eval $dohighlight;
396     die $@ if $@;
397     if ($output_mode eq "html") {
398         $contents =~ s/\\\\//;
399     }
400 #   print STDERR "contents af:$contents\n";
401
402     foreach $line (split "\n", $contents) {
403         if ($line eq ""){
404             print $lineprefix, $blankline;
405         } else {
406             $line =~ s/\\\\\\/\&/g;
407             print $lineprefix, $line;
408         }
409         print "\n";
410     }
411 }
412
413 #output sections in html
414 sub output_section_html(%) {
415     my %args = %{$_[0]};
416     my $section;
417
418     foreach $section (@{$args{'sectionlist'}}) {
419         print "<h3>$section</h3>\n";
420         print "<blockquote>\n";
421         output_highlight($args{'sections'}{$section});
422         print "</blockquote>\n";
423     }
424 }
425
426 # output enum in html
427 sub output_enum_html(%) {
428     my %args = %{$_[0]};
429     my ($parameter);
430     my $count;
431     print "<h2>enum ".$args{'enum'}."</h2>\n";
432
433     print "<b>enum ".$args{'enum'}."</b> {<br>\n";
434     $count = 0;
435     foreach $parameter (@{$args{'parameterlist'}}) {
436         print " <b>".$parameter."</b>";
437         if ($count != $#{$args{'parameterlist'}}) {
438             $count++;
439             print ",\n";
440         }
441         print "<br>";
442     }
443     print "};<br>\n";
444
445     print "<h3>Constants</h3>\n";
446     print "<dl>\n";
447     foreach $parameter (@{$args{'parameterlist'}}) {
448         print "<dt><b>".$parameter."</b>\n";
449         print "<dd>";
450         output_highlight($args{'parameterdescs'}{$parameter});
451     }
452     print "</dl>\n";
453     output_section_html(@_);
454     print "<hr>\n";
455 }
456
457 # output typedef in html
458 sub output_typedef_html(%) {
459     my %args = %{$_[0]};
460     my ($parameter);
461     my $count;
462     print "<h2>typedef ".$args{'typedef'}."</h2>\n";
463
464     print "<b>typedef ".$args{'typedef'}."</b>\n";
465     output_section_html(@_);
466     print "<hr>\n";
467 }
468
469 # output struct in html
470 sub output_struct_html(%) {
471     my %args = %{$_[0]};
472     my ($parameter);
473
474     print "<h2>".$args{'type'}." ".$args{'struct'}. " - " .$args{'purpose'}."</h2>\n";
475     print "<b>".$args{'type'}." ".$args{'struct'}."</b> {<br>\n";
476     foreach $parameter (@{$args{'parameterlist'}}) {
477         if ($parameter =~ /^#/) {
478                 print "$parameter<br>\n";
479                 next;
480         }
481         my $parameter_name = $parameter;
482         $parameter_name =~ s/\[.*//;
483
484         ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
485         $type = $args{'parametertypes'}{$parameter};
486         if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
487             # pointer-to-function
488             print "&nbsp; &nbsp; <i>$1</i><b>$parameter</b>) <i>($2)</i>;<br>\n";
489         } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
490             # bitfield
491             print "&nbsp; &nbsp; <i>$1</i> <b>$parameter</b>$2;<br>\n";
492         } else {
493             print "&nbsp; &nbsp; <i>$type</i> <b>$parameter</b>;<br>\n";
494         }
495     }
496     print "};<br>\n";
497
498     print "<h3>Members</h3>\n";
499     print "<dl>\n";
500     foreach $parameter (@{$args{'parameterlist'}}) {
501         ($parameter =~ /^#/) && next;
502
503         my $parameter_name = $parameter;
504         $parameter_name =~ s/\[.*//;
505
506         ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
507         print "<dt><b>".$parameter."</b>\n";
508         print "<dd>";
509         output_highlight($args{'parameterdescs'}{$parameter_name});
510     }
511     print "</dl>\n";
512     output_section_html(@_);
513     print "<hr>\n";
514 }
515
516 # output function in html
517 sub output_function_html(%) {
518     my %args = %{$_[0]};
519     my ($parameter, $section);
520     my $count;
521
522     print "<h2>" .$args{'function'}." - ".$args{'purpose'}."</h2>\n";
523     print "<i>".$args{'functiontype'}."</i>\n";
524     print "<b>".$args{'function'}."</b>\n";
525     print "(";
526     $count = 0;
527     foreach $parameter (@{$args{'parameterlist'}}) {
528         $type = $args{'parametertypes'}{$parameter};
529         if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
530             # pointer-to-function
531             print "<i>$1</i><b>$parameter</b>) <i>($2)</i>";
532         } else {
533             print "<i>".$type."</i> <b>".$parameter."</b>";
534         }
535         if ($count != $#{$args{'parameterlist'}}) {
536             $count++;
537             print ",\n";
538         }
539     }
540     print ")\n";
541
542     print "<h3>Arguments</h3>\n";
543     print "<dl>\n";
544     foreach $parameter (@{$args{'parameterlist'}}) {
545         my $parameter_name = $parameter;
546         $parameter_name =~ s/\[.*//;
547
548         ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
549         print "<dt><b>".$parameter."</b>\n";
550         print "<dd>";
551         output_highlight($args{'parameterdescs'}{$parameter_name});
552     }
553     print "</dl>\n";
554     output_section_html(@_);
555     print "<hr>\n";
556 }
557
558 # output intro in html
559 sub output_intro_html(%) {
560     my %args = %{$_[0]};
561     my ($parameter, $section);
562     my $count;
563
564     foreach $section (@{$args{'sectionlist'}}) {
565         print "<h3>$section</h3>\n";
566         print "<ul>\n";
567         output_highlight($args{'sections'}{$section});
568         print "</ul>\n";
569     }
570     print "<hr>\n";
571 }
572
573 sub output_section_xml(%) {
574     my %args = %{$_[0]};
575     my $section;
576     # print out each section
577     $lineprefix="   ";
578     foreach $section (@{$args{'sectionlist'}}) {
579         print "<refsect1>\n";
580         print "<title>$section</title>\n";
581         if ($section =~ m/EXAMPLE/i) {
582             print "<informalexample><programlisting>\n";
583         } else {
584             print "<para>\n";
585         }
586         output_highlight($args{'sections'}{$section});
587         if ($section =~ m/EXAMPLE/i) {
588             print "</programlisting></informalexample>\n";
589         } else {
590             print "</para>\n";
591         }
592         print "</refsect1>\n";
593     }
594 }
595
596 # output function in XML DocBook
597 sub output_function_xml(%) {
598     my %args = %{$_[0]};
599     my ($parameter, $section);
600     my $count;
601     my $id;
602
603     $id = "API-".$args{'function'};
604     $id =~ s/[^A-Za-z0-9]/-/g;
605
606     print "<refentry id=\"$id\">\n";
607     print "<refentryinfo>\n";
608     print " <title>LINUX</title>\n";
609     print " <productname>Kernel Hackers Manual</productname>\n";
610     print " <date>$man_date</date>\n";
611     print "</refentryinfo>\n";
612     print "<refmeta>\n";
613     print " <refentrytitle><phrase>".$args{'function'}."</phrase></refentrytitle>\n";
614     print " <manvolnum>9</manvolnum>\n";
615     print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
616     print "</refmeta>\n";
617     print "<refnamediv>\n";
618     print " <refname>".$args{'function'}."</refname>\n";
619     print " <refpurpose>\n";
620     print "  ";
621     output_highlight ($args{'purpose'});
622     print " </refpurpose>\n";
623     print "</refnamediv>\n";
624
625     print "<refsynopsisdiv>\n";
626     print " <title>Synopsis</title>\n";
627     print "  <funcsynopsis><funcprototype>\n";
628     print "   <funcdef>".$args{'functiontype'}." ";
629     print "<function>".$args{'function'}." </function></funcdef>\n";
630
631     $count = 0;
632     if ($#{$args{'parameterlist'}} >= 0) {
633         foreach $parameter (@{$args{'parameterlist'}}) {
634             $type = $args{'parametertypes'}{$parameter};
635             if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
636                 # pointer-to-function
637                 print "   <paramdef>$1<parameter>$parameter</parameter>)\n";
638                 print "     <funcparams>$2</funcparams></paramdef>\n";
639             } else {
640                 print "   <paramdef>".$type;
641                 print " <parameter>$parameter</parameter></paramdef>\n";
642             }
643         }
644     } else {
645         print "  <void/>\n";
646     }
647     print "  </funcprototype></funcsynopsis>\n";
648     print "</refsynopsisdiv>\n";
649
650     # print parameters
651     print "<refsect1>\n <title>Arguments</title>\n";
652     if ($#{$args{'parameterlist'}} >= 0) {
653         print " <variablelist>\n";
654         foreach $parameter (@{$args{'parameterlist'}}) {
655             my $parameter_name = $parameter;
656             $parameter_name =~ s/\[.*//;
657
658             print "  <varlistentry>\n   <term><parameter>$parameter</parameter></term>\n";
659             print "   <listitem>\n    <para>\n";
660             $lineprefix="     ";
661             output_highlight($args{'parameterdescs'}{$parameter_name});
662             print "    </para>\n   </listitem>\n  </varlistentry>\n";
663         }
664         print " </variablelist>\n";
665     } else {
666         print " <para>\n  None\n </para>\n";
667     }
668     print "</refsect1>\n";
669
670     output_section_xml(@_);
671     print "</refentry>\n\n";
672 }
673
674 # output struct in XML DocBook
675 sub output_struct_xml(%) {
676     my %args = %{$_[0]};
677     my ($parameter, $section);
678     my $id;
679
680     $id = "API-struct-".$args{'struct'};
681     $id =~ s/[^A-Za-z0-9]/-/g;
682
683     print "<refentry id=\"$id\">\n";
684     print "<refentryinfo>\n";
685     print " <title>LINUX</title>\n";
686     print " <productname>Kernel Hackers Manual</productname>\n";
687     print " <date>$man_date</date>\n";
688     print "</refentryinfo>\n";
689     print "<refmeta>\n";
690     print " <refentrytitle><phrase>".$args{'type'}." ".$args{'struct'}."</phrase></refentrytitle>\n";
691     print " <manvolnum>9</manvolnum>\n";
692     print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
693     print "</refmeta>\n";
694     print "<refnamediv>\n";
695     print " <refname>".$args{'type'}." ".$args{'struct'}."</refname>\n";
696     print " <refpurpose>\n";
697     print "  ";
698     output_highlight ($args{'purpose'});
699     print " </refpurpose>\n";
700     print "</refnamediv>\n";
701
702     print "<refsynopsisdiv>\n";
703     print " <title>Synopsis</title>\n";
704     print "  <programlisting>\n";
705     print $args{'type'}." ".$args{'struct'}." {\n";
706     foreach $parameter (@{$args{'parameterlist'}}) {
707         if ($parameter =~ /^#/) {
708             print "$parameter\n";
709             next;
710         }
711
712         my $parameter_name = $parameter;
713         $parameter_name =~ s/\[.*//;
714
715         defined($args{'parameterdescs'}{$parameter_name}) || next;
716         ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
717         $type = $args{'parametertypes'}{$parameter};
718         if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
719             # pointer-to-function
720             print "  $1 $parameter) ($2);\n";
721         } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
722             print "  $1 $parameter$2;\n";
723         } else {
724             print "  ".$type." ".$parameter.";\n";
725         }
726     }
727     print "};";
728     print "  </programlisting>\n";
729     print "</refsynopsisdiv>\n";
730
731     print " <refsect1>\n";
732     print "  <title>Members</title>\n";
733
734     print "  <variablelist>\n";
735     foreach $parameter (@{$args{'parameterlist'}}) {
736       ($parameter =~ /^#/) && next;
737
738       my $parameter_name = $parameter;
739       $parameter_name =~ s/\[.*//;
740
741       defined($args{'parameterdescs'}{$parameter_name}) || next;
742       ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
743       print "    <varlistentry>";
744       print "      <term>$parameter</term>\n";
745       print "      <listitem><para>\n";
746       output_highlight($args{'parameterdescs'}{$parameter_name});
747       print "      </para></listitem>\n";
748       print "    </varlistentry>\n";
749     }
750     print "  </variablelist>\n";
751     print " </refsect1>\n";
752
753     output_section_xml(@_);
754
755     print "</refentry>\n\n";
756 }
757
758 # output enum in XML DocBook
759 sub output_enum_xml(%) {
760     my %args = %{$_[0]};
761     my ($parameter, $section);
762     my $count;
763     my $id;
764
765     $id = "API-enum-".$args{'enum'};
766     $id =~ s/[^A-Za-z0-9]/-/g;
767
768     print "<refentry id=\"$id\">\n";
769     print "<refentryinfo>\n";
770     print " <title>LINUX</title>\n";
771     print " <productname>Kernel Hackers Manual</productname>\n";
772     print " <date>$man_date</date>\n";
773     print "</refentryinfo>\n";
774     print "<refmeta>\n";
775     print " <refentrytitle><phrase>enum ".$args{'enum'}."</phrase></refentrytitle>\n";
776     print " <manvolnum>9</manvolnum>\n";
777     print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
778     print "</refmeta>\n";
779     print "<refnamediv>\n";
780     print " <refname>enum ".$args{'enum'}."</refname>\n";
781     print " <refpurpose>\n";
782     print "  ";
783     output_highlight ($args{'purpose'});
784     print " </refpurpose>\n";
785     print "</refnamediv>\n";
786
787     print "<refsynopsisdiv>\n";
788     print " <title>Synopsis</title>\n";
789     print "  <programlisting>\n";
790     print "enum ".$args{'enum'}." {\n";
791     $count = 0;
792     foreach $parameter (@{$args{'parameterlist'}}) {
793         print "  $parameter";
794         if ($count != $#{$args{'parameterlist'}}) {
795             $count++;
796             print ",";
797         }
798         print "\n";
799     }
800     print "};";
801     print "  </programlisting>\n";
802     print "</refsynopsisdiv>\n";
803
804     print "<refsect1>\n";
805     print " <title>Constants</title>\n";
806     print "  <variablelist>\n";
807     foreach $parameter (@{$args{'parameterlist'}}) {
808       my $parameter_name = $parameter;
809       $parameter_name =~ s/\[.*//;
810
811       print "    <varlistentry>";
812       print "      <term>$parameter</term>\n";
813       print "      <listitem><para>\n";
814       output_highlight($args{'parameterdescs'}{$parameter_name});
815       print "      </para></listitem>\n";
816       print "    </varlistentry>\n";
817     }
818     print "  </variablelist>\n";
819     print "</refsect1>\n";
820
821     output_section_xml(@_);
822
823     print "</refentry>\n\n";
824 }
825
826 # output typedef in XML DocBook
827 sub output_typedef_xml(%) {
828     my %args = %{$_[0]};
829     my ($parameter, $section);
830     my $id;
831
832     $id = "API-typedef-".$args{'typedef'};
833     $id =~ s/[^A-Za-z0-9]/-/g;
834
835     print "<refentry id=\"$id\">\n";
836     print "<refentryinfo>\n";
837     print " <title>LINUX</title>\n";
838     print " <productname>Kernel Hackers Manual</productname>\n";
839     print " <date>$man_date</date>\n";
840     print "</refentryinfo>\n";
841     print "<refmeta>\n";
842     print " <refentrytitle><phrase>typedef ".$args{'typedef'}."</phrase></refentrytitle>\n";
843     print " <manvolnum>9</manvolnum>\n";
844     print "</refmeta>\n";
845     print "<refnamediv>\n";
846     print " <refname>typedef ".$args{'typedef'}."</refname>\n";
847     print " <refpurpose>\n";
848     print "  ";
849     output_highlight ($args{'purpose'});
850     print " </refpurpose>\n";
851     print "</refnamediv>\n";
852
853     print "<refsynopsisdiv>\n";
854     print " <title>Synopsis</title>\n";
855     print "  <synopsis>typedef ".$args{'typedef'}.";</synopsis>\n";
856     print "</refsynopsisdiv>\n";
857
858     output_section_xml(@_);
859
860     print "</refentry>\n\n";
861 }
862
863 # output in XML DocBook
864 sub output_intro_xml(%) {
865     my %args = %{$_[0]};
866     my ($parameter, $section);
867     my $count;
868
869     my $id = $args{'module'};
870     $id =~ s/[^A-Za-z0-9]/-/g;
871
872     # print out each section
873     $lineprefix="   ";
874     foreach $section (@{$args{'sectionlist'}}) {
875         print "<refsect1>\n <title>$section</title>\n <para>\n";
876         if ($section =~ m/EXAMPLE/i) {
877             print "<example><para>\n";
878         }
879         output_highlight($args{'sections'}{$section});
880         if ($section =~ m/EXAMPLE/i) {
881             print "</para></example>\n";
882         }
883         print " </para>\n</refsect1>\n";
884     }
885
886     print "\n\n";
887 }
888
889 # output in XML DocBook
890 sub output_function_gnome {
891     my %args = %{$_[0]};
892     my ($parameter, $section);
893     my $count;
894     my $id;
895
896     $id = $args{'module'}."-".$args{'function'};
897     $id =~ s/[^A-Za-z0-9]/-/g;
898
899     print "<sect2>\n";
900     print " <title id=\"$id\">".$args{'function'}."</title>\n";
901
902     print "  <funcsynopsis>\n";
903     print "   <funcdef>".$args{'functiontype'}." ";
904     print "<function>".$args{'function'}." ";
905     print "</function></funcdef>\n";
906
907     $count = 0;
908     if ($#{$args{'parameterlist'}} >= 0) {
909         foreach $parameter (@{$args{'parameterlist'}}) {
910             $type = $args{'parametertypes'}{$parameter};
911             if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
912                 # pointer-to-function
913                 print "   <paramdef>$1 <parameter>$parameter</parameter>)\n";
914                 print "     <funcparams>$2</funcparams></paramdef>\n";
915             } else {
916                 print "   <paramdef>".$type;
917                 print " <parameter>$parameter</parameter></paramdef>\n";
918             }
919         }
920     } else {
921         print "  <void>\n";
922     }
923     print "  </funcsynopsis>\n";
924     if ($#{$args{'parameterlist'}} >= 0) {
925         print " <informaltable pgwide=\"1\" frame=\"none\" role=\"params\">\n";
926         print "<tgroup cols=\"2\">\n";
927         print "<colspec colwidth=\"2*\">\n";
928         print "<colspec colwidth=\"8*\">\n";
929         print "<tbody>\n";
930         foreach $parameter (@{$args{'parameterlist'}}) {
931             my $parameter_name = $parameter;
932             $parameter_name =~ s/\[.*//;
933
934             print "  <row><entry align=\"right\"><parameter>$parameter</parameter></entry>\n";
935             print "   <entry>\n";
936             $lineprefix="     ";
937             output_highlight($args{'parameterdescs'}{$parameter_name});
938             print "    </entry></row>\n";
939         }
940         print " </tbody></tgroup></informaltable>\n";
941     } else {
942         print " <para>\n  None\n </para>\n";
943     }
944
945     # print out each section
946     $lineprefix="   ";
947     foreach $section (@{$args{'sectionlist'}}) {
948         print "<simplesect>\n <title>$section</title>\n";
949         if ($section =~ m/EXAMPLE/i) {
950             print "<example><programlisting>\n";
951         } else {
952         }
953         print "<para>\n";
954         output_highlight($args{'sections'}{$section});
955         print "</para>\n";
956         if ($section =~ m/EXAMPLE/i) {
957             print "</programlisting></example>\n";
958         } else {
959         }
960         print " </simplesect>\n";
961     }
962
963     print "</sect2>\n\n";
964 }
965
966 ##
967 # output function in man
968 sub output_function_man(%) {
969     my %args = %{$_[0]};
970     my ($parameter, $section);
971     my $count;
972
973     print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n";
974
975     print ".SH NAME\n";
976     print $args{'function'}." \\- ".$args{'purpose'}."\n";
977
978     print ".SH SYNOPSIS\n";
979     if ($args{'functiontype'} ne "") {
980         print ".B \"".$args{'functiontype'}."\" ".$args{'function'}."\n";
981     } else {
982         print ".B \"".$args{'function'}."\n";
983     }
984     $count = 0;
985     my $parenth = "(";
986     my $post = ",";
987     foreach my $parameter (@{$args{'parameterlist'}}) {
988         if ($count == $#{$args{'parameterlist'}}) {
989             $post = ");";
990         }
991         $type = $args{'parametertypes'}{$parameter};
992         if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
993             # pointer-to-function
994             print ".BI \"".$parenth.$1."\" ".$parameter." \") (".$2.")".$post."\"\n";
995         } else {
996             $type =~ s/([^\*])$/$1 /;
997             print ".BI \"".$parenth.$type."\" ".$parameter." \"".$post."\"\n";
998         }
999         $count++;
1000         $parenth = "";
1001     }
1002
1003     print ".SH ARGUMENTS\n";
1004     foreach $parameter (@{$args{'parameterlist'}}) {
1005         my $parameter_name = $parameter;
1006         $parameter_name =~ s/\[.*//;
1007
1008         print ".IP \"".$parameter."\" 12\n";
1009         output_highlight($args{'parameterdescs'}{$parameter_name});
1010     }
1011     foreach $section (@{$args{'sectionlist'}}) {
1012         print ".SH \"", uc $section, "\"\n";
1013         output_highlight($args{'sections'}{$section});
1014     }
1015 }
1016
1017 ##
1018 # output enum in man
1019 sub output_enum_man(%) {
1020     my %args = %{$_[0]};
1021     my ($parameter, $section);
1022     my $count;
1023
1024     print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n";
1025
1026     print ".SH NAME\n";
1027     print "enum ".$args{'enum'}." \\- ".$args{'purpose'}."\n";
1028
1029     print ".SH SYNOPSIS\n";
1030     print "enum ".$args{'enum'}." {\n";
1031     $count = 0;
1032     foreach my $parameter (@{$args{'parameterlist'}}) {
1033         print ".br\n.BI \"    $parameter\"\n";
1034         if ($count == $#{$args{'parameterlist'}}) {
1035             print "\n};\n";
1036             last;
1037         }
1038         else {
1039             print ", \n.br\n";
1040         }
1041         $count++;
1042     }
1043
1044     print ".SH Constants\n";
1045     foreach $parameter (@{$args{'parameterlist'}}) {
1046         my $parameter_name = $parameter;
1047         $parameter_name =~ s/\[.*//;
1048
1049         print ".IP \"".$parameter."\" 12\n";
1050         output_highlight($args{'parameterdescs'}{$parameter_name});
1051     }
1052     foreach $section (@{$args{'sectionlist'}}) {
1053         print ".SH \"$section\"\n";
1054         output_highlight($args{'sections'}{$section});
1055     }
1056 }
1057
1058 ##
1059 # output struct in man
1060 sub output_struct_man(%) {
1061     my %args = %{$_[0]};
1062     my ($parameter, $section);
1063
1064     print ".TH \"$args{'module'}\" 9 \"".$args{'type'}." ".$args{'struct'}."\" \"$man_date\" \"API Manual\" LINUX\n";
1065
1066     print ".SH NAME\n";
1067     print $args{'type'}." ".$args{'struct'}." \\- ".$args{'purpose'}."\n";
1068
1069     print ".SH SYNOPSIS\n";
1070     print $args{'type'}." ".$args{'struct'}." {\n.br\n";
1071
1072     foreach my $parameter (@{$args{'parameterlist'}}) {
1073         if ($parameter =~ /^#/) {
1074             print ".BI \"$parameter\"\n.br\n";
1075             next;
1076         }
1077         my $parameter_name = $parameter;
1078         $parameter_name =~ s/\[.*//;
1079
1080         ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1081         $type = $args{'parametertypes'}{$parameter};
1082         if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1083             # pointer-to-function
1084             print ".BI \"    ".$1."\" ".$parameter." \") (".$2.")"."\"\n;\n";
1085         } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
1086             # bitfield
1087             print ".BI \"    ".$1."\ \" ".$parameter.$2." \""."\"\n;\n";
1088         } else {
1089             $type =~ s/([^\*])$/$1 /;
1090             print ".BI \"    ".$type."\" ".$parameter." \""."\"\n;\n";
1091         }
1092         print "\n.br\n";
1093     }
1094     print "};\n.br\n";
1095
1096     print ".SH Members\n";
1097     foreach $parameter (@{$args{'parameterlist'}}) {
1098         ($parameter =~ /^#/) && next;
1099
1100         my $parameter_name = $parameter;
1101         $parameter_name =~ s/\[.*//;
1102
1103         ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1104         print ".IP \"".$parameter."\" 12\n";
1105         output_highlight($args{'parameterdescs'}{$parameter_name});
1106     }
1107     foreach $section (@{$args{'sectionlist'}}) {
1108         print ".SH \"$section\"\n";
1109         output_highlight($args{'sections'}{$section});
1110     }
1111 }
1112
1113 ##
1114 # output typedef in man
1115 sub output_typedef_man(%) {
1116     my %args = %{$_[0]};
1117     my ($parameter, $section);
1118
1119     print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n";
1120
1121     print ".SH NAME\n";
1122     print "typedef ".$args{'typedef'}." \\- ".$args{'purpose'}."\n";
1123
1124     foreach $section (@{$args{'sectionlist'}}) {
1125         print ".SH \"$section\"\n";
1126         output_highlight($args{'sections'}{$section});
1127     }
1128 }
1129
1130 sub output_intro_man(%) {
1131     my %args = %{$_[0]};
1132     my ($parameter, $section);
1133     my $count;
1134
1135     print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n";
1136
1137     foreach $section (@{$args{'sectionlist'}}) {
1138         print ".SH \"$section\"\n";
1139         output_highlight($args{'sections'}{$section});
1140     }
1141 }
1142
1143 ##
1144 # output in text
1145 sub output_function_text(%) {
1146     my %args = %{$_[0]};
1147     my ($parameter, $section);
1148     my $start;
1149
1150     print "Name:\n\n";
1151     print $args{'function'}." - ".$args{'purpose'}."\n";
1152
1153     print "\nSynopsis:\n\n";
1154     if ($args{'functiontype'} ne "") {
1155         $start = $args{'functiontype'}." ".$args{'function'}." (";
1156     } else {
1157         $start = $args{'function'}." (";
1158     }
1159     print $start;
1160
1161     my $count = 0;
1162     foreach my $parameter (@{$args{'parameterlist'}}) {
1163         $type = $args{'parametertypes'}{$parameter};
1164         if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1165             # pointer-to-function
1166             print $1.$parameter.") (".$2;
1167         } else {
1168             print $type." ".$parameter;
1169         }
1170         if ($count != $#{$args{'parameterlist'}}) {
1171             $count++;
1172             print ",\n";
1173             print " " x length($start);
1174         } else {
1175             print ");\n\n";
1176         }
1177     }
1178
1179     print "Arguments:\n\n";
1180     foreach $parameter (@{$args{'parameterlist'}}) {
1181         my $parameter_name = $parameter;
1182         $parameter_name =~ s/\[.*//;
1183
1184         print $parameter."\n\t".$args{'parameterdescs'}{$parameter_name}."\n";
1185     }
1186     output_section_text(@_);
1187 }
1188
1189 #output sections in text
1190 sub output_section_text(%) {
1191     my %args = %{$_[0]};
1192     my $section;
1193
1194     print "\n";
1195     foreach $section (@{$args{'sectionlist'}}) {
1196         print "$section:\n\n";
1197         output_highlight($args{'sections'}{$section});
1198     }
1199     print "\n\n";
1200 }
1201
1202 # output enum in text
1203 sub output_enum_text(%) {
1204     my %args = %{$_[0]};
1205     my ($parameter);
1206     my $count;
1207     print "Enum:\n\n";
1208
1209     print "enum ".$args{'enum'}." - ".$args{'purpose'}."\n\n";
1210     print "enum ".$args{'enum'}." {\n";
1211     $count = 0;
1212     foreach $parameter (@{$args{'parameterlist'}}) {
1213         print "\t$parameter";
1214         if ($count != $#{$args{'parameterlist'}}) {
1215             $count++;
1216             print ",";
1217         }
1218         print "\n";
1219     }
1220     print "};\n\n";
1221
1222     print "Constants:\n\n";
1223     foreach $parameter (@{$args{'parameterlist'}}) {
1224         print "$parameter\n\t";
1225         print $args{'parameterdescs'}{$parameter}."\n";
1226     }
1227
1228     output_section_text(@_);
1229 }
1230
1231 # output typedef in text
1232 sub output_typedef_text(%) {
1233     my %args = %{$_[0]};
1234     my ($parameter);
1235     my $count;
1236     print "Typedef:\n\n";
1237
1238     print "typedef ".$args{'typedef'}." - ".$args{'purpose'}."\n";
1239     output_section_text(@_);
1240 }
1241
1242 # output struct as text
1243 sub output_struct_text(%) {
1244     my %args = %{$_[0]};
1245     my ($parameter);
1246
1247     print $args{'type'}." ".$args{'struct'}." - ".$args{'purpose'}."\n\n";
1248     print $args{'type'}." ".$args{'struct'}." {\n";
1249     foreach $parameter (@{$args{'parameterlist'}}) {
1250         if ($parameter =~ /^#/) {
1251             print "$parameter\n";
1252             next;
1253         }
1254
1255         my $parameter_name = $parameter;
1256         $parameter_name =~ s/\[.*//;
1257
1258         ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1259         $type = $args{'parametertypes'}{$parameter};
1260         if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1261             # pointer-to-function
1262             print "\t$1 $parameter) ($2);\n";
1263         } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
1264             print "\t$1 $parameter$2;\n";
1265         } else {
1266             print "\t".$type." ".$parameter.";\n";
1267         }
1268     }
1269     print "};\n\n";
1270
1271     print "Members:\n\n";
1272     foreach $parameter (@{$args{'parameterlist'}}) {
1273         ($parameter =~ /^#/) && next;
1274
1275         my $parameter_name = $parameter;
1276         $parameter_name =~ s/\[.*//;
1277
1278         ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1279         print "$parameter\n\t";
1280         print $args{'parameterdescs'}{$parameter_name}."\n";
1281     }
1282     print "\n";
1283     output_section_text(@_);
1284 }
1285
1286 sub output_intro_text(%) {
1287     my %args = %{$_[0]};
1288     my ($parameter, $section);
1289
1290     foreach $section (@{$args{'sectionlist'}}) {
1291         print " $section:\n";
1292         print "    -> ";
1293         output_highlight($args{'sections'}{$section});
1294     }
1295 }
1296
1297 ##
1298 # generic output function for all types (function, struct/union, typedef, enum);
1299 # calls the generated, variable output_ function name based on
1300 # functype and output_mode
1301 sub output_declaration {
1302     no strict 'refs';
1303     my $name = shift;
1304     my $functype = shift;
1305     my $func = "output_${functype}_$output_mode";
1306     if (($function_only==0) ||
1307         ( $function_only == 1 && defined($function_table{$name})) ||
1308         ( $function_only == 2 && !defined($function_table{$name})))
1309     {
1310         &$func(@_);
1311         $section_counter++;
1312     }
1313 }
1314
1315 ##
1316 # generic output function - calls the right one based on current output mode.
1317 sub output_intro {
1318     no strict 'refs';
1319     my $func = "output_intro_".$output_mode;
1320     &$func(@_);
1321     $section_counter++;
1322 }
1323
1324 ##
1325 # takes a declaration (struct, union, enum, typedef) and
1326 # invokes the right handler. NOT called for functions.
1327 sub dump_declaration($$) {
1328     no strict 'refs';
1329     my ($prototype, $file) = @_;
1330     my $func = "dump_".$decl_type;
1331     &$func(@_);
1332 }
1333
1334 sub dump_union($$) {
1335     dump_struct(@_);
1336 }
1337
1338 sub dump_struct($$) {
1339     my $x = shift;
1340     my $file = shift;
1341
1342     if ($x =~/(struct|union)\s+(\w+)\s*{(.*)}/) {
1343         $declaration_name = $2;
1344         my $members = $3;
1345
1346         # ignore embedded structs or unions
1347         $members =~ s/{.*?}//g;
1348
1349         # ignore members marked private:
1350         $members =~ s/\/\*.*?private:.*?public:.*?\*\///gos;
1351         $members =~ s/\/\*.*?private:.*//gos;
1352         # strip comments:
1353         $members =~ s/\/\*.*?\*\///gos;
1354
1355         create_parameterlist($members, ';', $file);
1356
1357         output_declaration($declaration_name,
1358                            'struct',
1359                            {'struct' => $declaration_name,
1360                             'module' => $modulename,
1361                             'parameterlist' => \@parameterlist,
1362                             'parameterdescs' => \%parameterdescs,
1363                             'parametertypes' => \%parametertypes,
1364                             'sectionlist' => \@sectionlist,
1365                             'sections' => \%sections,
1366                             'purpose' => $declaration_purpose,
1367                             'type' => $decl_type
1368                            });
1369     }
1370     else {
1371         print STDERR "Error(${file}:$.): Cannot parse struct or union!\n";
1372         ++$errors;
1373     }
1374 }
1375
1376 sub dump_enum($$) {
1377     my $x = shift;
1378     my $file = shift;
1379
1380     $x =~ s@/\*.*?\*/@@gos;     # strip comments.
1381     if ($x =~ /enum\s+(\w+)\s*{(.*)}/) {
1382         $declaration_name = $1;
1383         my $members = $2;
1384
1385         foreach my $arg (split ',', $members) {
1386             $arg =~ s/^\s*(\w+).*/$1/;
1387             push @parameterlist, $arg;
1388             if (!$parameterdescs{$arg}) {
1389                 $parameterdescs{$arg} = $undescribed;
1390                 print STDERR "Warning(${file}:$.): Enum value '$arg' ".
1391                     "not described in enum '$declaration_name'\n";
1392             }
1393
1394         }
1395
1396         output_declaration($declaration_name,
1397                            'enum',
1398                            {'enum' => $declaration_name,
1399                             'module' => $modulename,
1400                             'parameterlist' => \@parameterlist,
1401                             'parameterdescs' => \%parameterdescs,
1402                             'sectionlist' => \@sectionlist,
1403                             'sections' => \%sections,
1404                             'purpose' => $declaration_purpose
1405                            });
1406     }
1407     else {
1408         print STDERR "Error(${file}:$.): Cannot parse enum!\n";
1409         ++$errors;
1410     }
1411 }
1412
1413 sub dump_typedef($$) {
1414     my $x = shift;
1415     my $file = shift;
1416
1417     $x =~ s@/\*.*?\*/@@gos;     # strip comments.
1418     while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
1419         $x =~ s/\(*.\)\s*;$/;/;
1420         $x =~ s/\[*.\]\s*;$/;/;
1421     }
1422
1423     if ($x =~ /typedef.*\s+(\w+)\s*;/) {
1424         $declaration_name = $1;
1425
1426         output_declaration($declaration_name,
1427                            'typedef',
1428                            {'typedef' => $declaration_name,
1429                             'module' => $modulename,
1430                             'sectionlist' => \@sectionlist,
1431                             'sections' => \%sections,
1432                             'purpose' => $declaration_purpose
1433                            });
1434     }
1435     else {
1436         print STDERR "Error(${file}:$.): Cannot parse typedef!\n";
1437         ++$errors;
1438     }
1439 }
1440
1441 sub create_parameterlist($$$) {
1442     my $args = shift;
1443     my $splitter = shift;
1444     my $file = shift;
1445     my $type;
1446     my $param;
1447
1448     # temporarily replace commas inside function pointer definition
1449     while ($args =~ /(\([^\),]+),/) {
1450         $args =~ s/(\([^\),]+),/$1#/g;
1451     }
1452
1453     foreach my $arg (split($splitter, $args)) {
1454         # strip comments
1455         $arg =~ s/\/\*.*\*\///;
1456         # strip leading/trailing spaces
1457         $arg =~ s/^\s*//;
1458         $arg =~ s/\s*$//;
1459         $arg =~ s/\s+/ /;
1460
1461         if ($arg =~ /^#/) {
1462             # Treat preprocessor directive as a typeless variable just to fill
1463             # corresponding data structures "correctly". Catch it later in
1464             # output_* subs.
1465             push_parameter($arg, "", $file);
1466         } elsif ($arg =~ m/\(.*\*/) {
1467             # pointer-to-function
1468             $arg =~ tr/#/,/;
1469             $arg =~ m/[^\(]+\(\*\s*([^\)]+)\)/;
1470             $param = $1;
1471             $type = $arg;
1472             $type =~ s/([^\(]+\(\*)$param/$1/;
1473             push_parameter($param, $type, $file);
1474         } elsif ($arg) {
1475             $arg =~ s/\s*:\s*/:/g;
1476             $arg =~ s/\s*\[/\[/g;
1477
1478             my @args = split('\s*,\s*', $arg);
1479             if ($args[0] =~ m/\*/) {
1480                 $args[0] =~ s/(\*+)\s*/ $1/;
1481             }
1482
1483             my @first_arg;
1484             if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) {
1485                     shift @args;
1486                     push(@first_arg, split('\s+', $1));
1487                     push(@first_arg, $2);
1488             } else {
1489                     @first_arg = split('\s+', shift @args);
1490             }
1491
1492             unshift(@args, pop @first_arg);
1493             $type = join " ", @first_arg;
1494
1495             foreach $param (@args) {
1496                 if ($param =~ m/^(\*+)\s*(.*)/) {
1497                     push_parameter($2, "$type $1", $file);
1498                 }
1499                 elsif ($param =~ m/(.*?):(\d+)/) {
1500                     push_parameter($1, "$type:$2", $file)
1501                 }
1502                 else {
1503                     push_parameter($param, $type, $file);
1504                 }
1505             }
1506         }
1507     }
1508 }
1509
1510 sub push_parameter($$$) {
1511         my $param = shift;
1512         my $type = shift;
1513         my $file = shift;
1514
1515         if (($anon_struct_union == 1) && ($type eq "") &&
1516             ($param eq "}")) {
1517                 return;         # ignore the ending }; from anon. struct/union
1518         }
1519
1520         $anon_struct_union = 0;
1521         my $param_name = $param;
1522         $param_name =~ s/\[.*//;
1523
1524         if ($type eq "" && $param =~ /\.\.\.$/)
1525         {
1526             $type="";
1527             $parameterdescs{$param} = "variable arguments";
1528         }
1529         elsif ($type eq "" && ($param eq "" or $param eq "void"))
1530         {
1531             $type="";
1532             $param="void";
1533             $parameterdescs{void} = "no arguments";
1534         }
1535         elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
1536         # handle unnamed (anonymous) union or struct:
1537         {
1538                 $type = $param;
1539                 $param = "{unnamed_" . $param . "}";
1540                 $parameterdescs{$param} = "anonymous\n";
1541                 $anon_struct_union = 1;
1542         }
1543
1544         # warn if parameter has no description
1545         # (but ignore ones starting with # as these are not parameters
1546         # but inline preprocessor statements);
1547         # also ignore unnamed structs/unions;
1548         if (!$anon_struct_union) {
1549         if (!defined $parameterdescs{$param_name} && $param_name !~ /^#/) {
1550
1551             $parameterdescs{$param_name} = $undescribed;
1552
1553             if (($type eq 'function') || ($type eq 'enum')) {
1554                 print STDERR "Warning(${file}:$.): Function parameter ".
1555                     "or member '$param' not " .
1556                     "described in '$declaration_name'\n";
1557             }
1558             print STDERR "Warning(${file}:$.):".
1559                          " No description found for parameter '$param'\n";
1560             ++$warnings;
1561         }
1562         }
1563
1564         push @parameterlist, $param;
1565         $parametertypes{$param} = $type;
1566 }
1567
1568 ##
1569 # takes a function prototype and the name of the current file being
1570 # processed and spits out all the details stored in the global
1571 # arrays/hashes.
1572 sub dump_function($$) {
1573     my $prototype = shift;
1574     my $file = shift;
1575
1576     $prototype =~ s/^static +//;
1577     $prototype =~ s/^extern +//;
1578     $prototype =~ s/^fastcall +//;
1579     $prototype =~ s/^asmlinkage +//;
1580     $prototype =~ s/^inline +//;
1581     $prototype =~ s/^__inline__ +//;
1582     $prototype =~ s/^__inline +//;
1583     $prototype =~ s/^__always_inline +//;
1584     $prototype =~ s/^noinline +//;
1585     $prototype =~ s/__devinit +//;
1586     $prototype =~ s/^#define\s+//; #ak added
1587     $prototype =~ s/__attribute__\s*\(\([a-z,]*\)\)//;
1588
1589     # Yes, this truly is vile.  We are looking for:
1590     # 1. Return type (may be nothing if we're looking at a macro)
1591     # 2. Function name
1592     # 3. Function parameters.
1593     #
1594     # All the while we have to watch out for function pointer parameters
1595     # (which IIRC is what the two sections are for), C types (these
1596     # regexps don't even start to express all the possibilities), and
1597     # so on.
1598     #
1599     # If you mess with these regexps, it's a good idea to check that
1600     # the following functions' documentation still comes out right:
1601     # - parport_register_device (function pointer parameters)
1602     # - atomic_set (macro)
1603     # - pci_match_device, __copy_to_user (long return type)
1604
1605     if ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1606         $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1607         $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1608         $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1609         $prototype =~ m/^(\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1610         $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1611         $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1612         $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1613         $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1614         $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1615         $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1616         $prototype =~ m/^(\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1617         $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1618         $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1619         $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1620         $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1621         $prototype =~ m/^(\w+\s+\w+\s*\*\s*\w+\s*\*\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/)  {
1622         $return_type = $1;
1623         $declaration_name = $2;
1624         my $args = $3;
1625
1626         create_parameterlist($args, ',', $file);
1627     } else {
1628         print STDERR "Error(${file}:$.): cannot understand prototype: '$prototype'\n";
1629         ++$errors;
1630         return;
1631     }
1632
1633     output_declaration($declaration_name,
1634                        'function',
1635                        {'function' => $declaration_name,
1636                         'module' => $modulename,
1637                         'functiontype' => $return_type,
1638                         'parameterlist' => \@parameterlist,
1639                         'parameterdescs' => \%parameterdescs,
1640                         'parametertypes' => \%parametertypes,
1641                         'sectionlist' => \@sectionlist,
1642                         'sections' => \%sections,
1643                         'purpose' => $declaration_purpose
1644                        });
1645 }
1646
1647 sub process_file($);
1648
1649 # Read the file that maps relative names to absolute names for
1650 # separate source and object directories and for shadow trees.
1651 if (open(SOURCE_MAP, "<.tmp_filelist.txt")) {
1652         my ($relname, $absname);
1653         while(<SOURCE_MAP>) {
1654                 chop();
1655                 ($relname, $absname) = (split())[0..1];
1656                 $relname =~ s:^/+::;
1657                 $source_map{$relname} = $absname;
1658         }
1659         close(SOURCE_MAP);
1660 }
1661
1662 if ($filelist) {
1663         open(FLIST,"<$filelist") or die "Can't open file list $filelist";
1664         while(<FLIST>) {
1665                 chop;
1666                 process_file($_);
1667         }
1668 }
1669
1670 foreach (@ARGV) {
1671     chomp;
1672     process_file($_);
1673 }
1674 if ($verbose && $errors) {
1675   print STDERR "$errors errors\n";
1676 }
1677 if ($verbose && $warnings) {
1678   print STDERR "$warnings warnings\n";
1679 }
1680
1681 exit($errors);
1682
1683 sub reset_state {
1684     $function = "";
1685     %constants = ();
1686     %parameterdescs = ();
1687     %parametertypes = ();
1688     @parameterlist = ();
1689     %sections = ();
1690     @sectionlist = ();
1691     $prototype = "";
1692
1693     $state = 0;
1694 }
1695
1696 sub process_state3_function($$) {
1697     my $x = shift;
1698     my $file = shift;
1699
1700     if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#define/)) {
1701         # do nothing
1702     }
1703     elsif ($x =~ /([^\{]*)/) {
1704         $prototype .= $1;
1705     }
1706     if (($x =~ /\{/) || ($x =~ /\#define/) || ($x =~ /;/)) {
1707         $prototype =~ s@/\*.*?\*/@@gos; # strip comments.
1708         $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1709         $prototype =~ s@^\s+@@gos; # strip leading spaces
1710         dump_function($prototype,$file);
1711         reset_state();
1712     }
1713 }
1714
1715 sub process_state3_type($$) {
1716     my $x = shift;
1717     my $file = shift;
1718
1719     $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1720     $x =~ s@^\s+@@gos; # strip leading spaces
1721     $x =~ s@\s+$@@gos; # strip trailing spaces
1722     if ($x =~ /^#/) {
1723         # To distinguish preprocessor directive from regular declaration later.
1724         $x .= ";";
1725     }
1726
1727     while (1) {
1728         if ( $x =~ /([^{};]*)([{};])(.*)/ ) {
1729             $prototype .= $1 . $2;
1730             ($2 eq '{') && $brcount++;
1731             ($2 eq '}') && $brcount--;
1732             if (($2 eq ';') && ($brcount == 0)) {
1733                 dump_declaration($prototype,$file);
1734                 reset_state();
1735                 last;
1736             }
1737             $x = $3;
1738         } else {
1739             $prototype .= $x;
1740             last;
1741         }
1742     }
1743 }
1744
1745 # replace <, >, and &
1746 sub xml_escape($) {
1747         my $text = shift;
1748         if (($output_mode eq "text") || ($output_mode eq "man")) {
1749                 return $text;
1750         }
1751         $text =~ s/\&/\\\\\\amp;/g;
1752         $text =~ s/\</\\\\\\lt;/g;
1753         $text =~ s/\>/\\\\\\gt;/g;
1754         return $text;
1755 }
1756
1757 sub process_file($) {
1758     my $file;
1759     my $identifier;
1760     my $func;
1761     my $descr;
1762     my $initial_section_counter = $section_counter;
1763
1764     if (defined($ENV{'SRCTREE'})) {
1765         $file = "$ENV{'SRCTREE'}" . "/" . "@_";
1766     }
1767     else {
1768         $file = "@_";
1769     }
1770     if (defined($source_map{$file})) {
1771         $file = $source_map{$file};
1772     }
1773
1774     if (!open(IN,"<$file")) {
1775         print STDERR "Error: Cannot open file $file\n";
1776         ++$errors;
1777         return;
1778     }
1779
1780     $section_counter = 0;
1781     while (<IN>) {
1782         if ($state == 0) {
1783             if (/$doc_start/o) {
1784                 $state = 1;             # next line is always the function name
1785                 $in_doc_sect = 0;
1786             }
1787         } elsif ($state == 1) { # this line is the function name (always)
1788             if (/$doc_block/o) {
1789                 $state = 4;
1790                 $contents = "";
1791                 if ( $1 eq "" ) {
1792                         $section = $section_intro;
1793                 } else {
1794                         $section = $1;
1795                 }
1796             }
1797             elsif (/$doc_decl/o) {
1798                 $identifier = $1;
1799                 if (/\s*([\w\s]+?)\s*-/) {
1800                     $identifier = $1;
1801                 }
1802
1803                 $state = 2;
1804                 if (/-(.*)/) {
1805                     # strip leading/trailing/multiple spaces #RDD:T:
1806                     $descr= $1;
1807                     $descr =~ s/^\s*//;
1808                     $descr =~ s/\s*$//;
1809                     $descr =~ s/\s+/ /;
1810                     $declaration_purpose = xml_escape($descr);
1811                 } else {
1812                     $declaration_purpose = "";
1813                 }
1814                 if ($identifier =~ m/^struct/) {
1815                     $decl_type = 'struct';
1816                 } elsif ($identifier =~ m/^union/) {
1817                     $decl_type = 'union';
1818                 } elsif ($identifier =~ m/^enum/) {
1819                     $decl_type = 'enum';
1820                 } elsif ($identifier =~ m/^typedef/) {
1821                     $decl_type = 'typedef';
1822                 } else {
1823                     $decl_type = 'function';
1824                 }
1825
1826                 if ($verbose) {
1827                     print STDERR "Info(${file}:$.): Scanning doc for $identifier\n";
1828                 }
1829             } else {
1830                 print STDERR "Warning(${file}:$.): Cannot understand $_ on line $.",
1831                 " - I thought it was a doc line\n";
1832                 ++$warnings;
1833                 $state = 0;
1834             }
1835         } elsif ($state == 2) { # look for head: lines, and include content
1836             if (/$doc_sect/o) {
1837                 $newsection = $1;
1838                 $newcontents = $2;
1839
1840                 if ($contents ne "") {
1841                     if (!$in_doc_sect && $verbose) {
1842                         print STDERR "Warning(${file}:$.): contents before sections\n";
1843                         ++$warnings;
1844                     }
1845                     dump_section($section, xml_escape($contents));
1846                     $section = $section_default;
1847                 }
1848
1849                 $in_doc_sect = 1;
1850                 $contents = $newcontents;
1851                 if ($contents ne "") {
1852                     while ((substr($contents, 0, 1) eq " ") ||
1853                         substr($contents, 0, 1) eq "\t") {
1854                             $contents = substr($contents, 1);
1855                     }
1856                     $contents .= "\n";
1857                 }
1858                 $section = $newsection;
1859             } elsif (/$doc_end/) {
1860
1861                 if ($contents ne "") {
1862                     dump_section($section, xml_escape($contents));
1863                     $section = $section_default;
1864                     $contents = "";
1865                 }
1866
1867                 $prototype = "";
1868                 $state = 3;
1869                 $brcount = 0;
1870 #               print STDERR "end of doc comment, looking for prototype\n";
1871             } elsif (/$doc_content/) {
1872                 # miguel-style comment kludge, look for blank lines after
1873                 # @parameter line to signify start of description
1874                 if ($1 eq "" &&
1875                         ($section =~ m/^@/ || $section eq $section_context)) {
1876                     dump_section($section, xml_escape($contents));
1877                     $section = $section_default;
1878                     $contents = "";
1879                 } else {
1880                     $contents .= $1."\n";
1881                 }
1882             } else {
1883                 # i dont know - bad line?  ignore.
1884                 print STDERR "Warning(${file}:$.): bad line: $_";
1885                 ++$warnings;
1886             }
1887         } elsif ($state == 3) { # scanning for function '{' (end of prototype)
1888             if ($decl_type eq 'function') {
1889                 process_state3_function($_, $file);
1890             } else {
1891                 process_state3_type($_, $file);
1892             }
1893         } elsif ($state == 4) {
1894                 # Documentation block
1895                 if (/$doc_block/) {
1896                         dump_section($section, $contents);
1897                         output_intro({'sectionlist' => \@sectionlist,
1898                                       'sections' => \%sections });
1899                         $contents = "";
1900                         $function = "";
1901                         %constants = ();
1902                         %parameterdescs = ();
1903                         %parametertypes = ();
1904                         @parameterlist = ();
1905                         %sections = ();
1906                         @sectionlist = ();
1907                         $prototype = "";
1908                         if ( $1 eq "" ) {
1909                                 $section = $section_intro;
1910                         } else {
1911                                 $section = $1;
1912                         }
1913                 }
1914                 elsif (/$doc_end/)
1915                 {
1916                         dump_section($section, $contents);
1917                         output_intro({'sectionlist' => \@sectionlist,
1918                                       'sections' => \%sections });
1919                         $contents = "";
1920                         $function = "";
1921                         %constants = ();
1922                         %parameterdescs = ();
1923                         %parametertypes = ();
1924                         @parameterlist = ();
1925                         %sections = ();
1926                         @sectionlist = ();
1927                         $prototype = "";
1928                         $state = 0;
1929                 }
1930                 elsif (/$doc_content/)
1931                 {
1932                         if ( $1 eq "" )
1933                         {
1934                                 $contents .= $blankline;
1935                         }
1936                         else
1937                         {
1938                                 $contents .= $1 . "\n";
1939                         }
1940                 }
1941         }
1942     }
1943     if ($initial_section_counter == $section_counter) {
1944         print STDERR "Warning(${file}): no structured comments found\n";
1945         if ($output_mode eq "xml") {
1946             # The template wants at least one RefEntry here; make one.
1947             print "<refentry>\n";
1948             print " <refnamediv>\n";
1949             print "  <refname>\n";
1950             print "   ${file}\n";
1951             print "  </refname>\n";
1952             print "  <refpurpose>\n";
1953             print "   Document generation inconsistency\n";
1954             print "  </refpurpose>\n";
1955             print " </refnamediv>\n";
1956             print " <refsect1>\n";
1957             print "  <title>\n";
1958             print "   Oops\n";
1959             print "  </title>\n";
1960             print "  <warning>\n";
1961             print "   <para>\n";
1962             print "    The template for this document tried to insert\n";
1963             print "    the structured comment from the file\n";
1964             print "    <filename>${file}</filename> at this point,\n";
1965             print "    but none was found.\n";
1966             print "    This dummy section is inserted to allow\n";
1967             print "    generation to continue.\n";
1968             print "   </para>\n";
1969             print "  </warning>\n";
1970             print " </refsect1>\n";
1971             print "</refentry>\n";
1972         }
1973     }
1974 }