]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - scripts/kernel-doc
kernel-doc: do not regard $, %, or & prefixes as special in section names
[mirror_ubuntu-bionic-kernel.git] / scripts / kernel-doc
CommitLineData
1da177e4
LT
1#!/usr/bin/perl -w
2
3use 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 ##
70c95b00 8## Copyright (C) 2005-2012 Randy Dunlap ##
1b40c194 9## Copyright (C) 2012 Dan Luedtke ##
1da177e4
LT
10## ##
11## #define enhancements by Armin Kuster <akuster@mvista.com> ##
12## Copyright (c) 2000 MontaVista Software, Inc. ##
13## ##
14## This software falls under the GNU General Public License. ##
15## Please read the COPYING file for more information ##
16
1da177e4
LT
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
1b40c194
DL
39# 25/07/2012 - Added support for HTML5
40# -- Dan Luedtke <mail@danrl.de>
1da177e4 41
fadc0b31
JN
42sub usage {
43 my $message = <<"EOF";
44Usage: $0 [OPTION ...] FILE ...
45
46Read C language source or header FILEs, extract embedded documentation comments,
47and print formatted documentation to standard output.
48
49The documentation comments are identified by "/**" opening comment mark. See
50Documentation/kernel-doc-nano-HOWTO.txt for the documentation comment syntax.
51
52Output format selection (mutually exclusive):
53 -docbook Output DocBook format.
54 -html Output HTML format.
55 -html5 Output HTML5 format.
56 -list Output symbol list format. This is for use by docproc.
57 -man Output troff manual page format. This is the default.
c0d1b6ee 58 -rst Output reStructuredText format.
fadc0b31
JN
59 -text Output plain text format.
60
61Output selection (mutually exclusive):
86ae2e38
JN
62 -export Only output documentation for symbols that have been
63 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
64 in the same FILE.
65 -internal Only output documentation for symbols that have NOT been
66 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
67 in the same FILE.
fadc0b31
JN
68 -function NAME Only output documentation for the given function(s)
69 or DOC: section title(s). All other functions and DOC:
70 sections are ignored. May be specified multiple times.
71 -nofunction NAME Do NOT output documentation for the given function(s);
72 only output documentation for the other functions and
73 DOC: sections. May be specified multiple times.
74
75Output selection modifiers:
76 -no-doc-sections Do not output DOC: sections.
77
78Other parameters:
79 -v Verbose output, more warnings and other information.
80 -h Print this help.
81
82EOF
83 print $message;
84 exit 1;
85}
1da177e4
LT
86
87#
88# format of comments.
89# In the following table, (...)? signifies optional structure.
90# (...)* signifies 0 or more structure elements
91# /**
92# * function_name(:)? (- short description)?
93# (* @parameterx: (description of parameter x)?)*
94# (* a blank line)?
95# * (Description:)? (Description of function)?
96# * (section header: (section description)? )*
97# (*)?*/
98#
99# So .. the trivial example would be:
100#
101# /**
102# * my_function
b9d97328 103# */
1da177e4 104#
891dcd2f 105# If the Description: header tag is omitted, then there must be a blank line
1da177e4
LT
106# after the last parameter specification.
107# e.g.
108# /**
109# * my_function - does my stuff
110# * @my_arg: its mine damnit
111# *
3c3b809e 112# * Does my stuff explained.
1da177e4
LT
113# */
114#
115# or, could also use:
116# /**
117# * my_function - does my stuff
118# * @my_arg: its mine damnit
3c3b809e 119# * Description: Does my stuff explained.
1da177e4
LT
120# */
121# etc.
122#
b9d97328 123# Besides functions you can also write documentation for structs, unions,
3c3b809e
RD
124# enums and typedefs. Instead of the function name you must write the name
125# of the declaration; the struct/union/enum/typedef must always precede
126# the name. Nesting of declarations is not supported.
1da177e4
LT
127# Use the argument mechanism to document members or constants.
128# e.g.
129# /**
130# * struct my_struct - short description
131# * @a: first member
132# * @b: second member
3c3b809e 133# *
1da177e4
LT
134# * Longer description
135# */
136# struct my_struct {
137# int a;
138# int b;
aeec46b9
MW
139# /* private: */
140# int c;
1da177e4
LT
141# };
142#
143# All descriptions can be multiline, except the short function description.
3c3b809e 144#
a4c6ebed
DCLP
145# For really longs structs, you can also describe arguments inside the
146# body of the struct.
147# eg.
148# /**
149# * struct my_struct - short description
150# * @a: first member
151# * @b: second member
152# *
153# * Longer description
154# */
155# struct my_struct {
156# int a;
157# int b;
158# /**
159# * @c: This is longer description of C
160# *
161# * You can use paragraphs to describe arguments
162# * using this method.
163# */
164# int c;
165# };
166#
167# This should be use only for struct/enum members.
168#
3c3b809e
RD
169# You can also add additional sections. When documenting kernel functions you
170# should document the "Context:" of the function, e.g. whether the functions
1da177e4 171# can be called form interrupts. Unlike other sections you can end it with an
3c3b809e 172# empty line.
4092bac7
YB
173# A non-void function should have a "Return:" section describing the return
174# value(s).
3c3b809e 175# Example-sections should contain the string EXAMPLE so that they are marked
1da177e4
LT
176# appropriately in DocBook.
177#
178# Example:
179# /**
180# * user_function - function that can only be called in user context
181# * @a: some argument
182# * Context: !in_interrupt()
3c3b809e 183# *
1da177e4
LT
184# * Some description
185# * Example:
186# * user_function(22);
187# */
188# ...
189#
190#
191# All descriptive text is further processed, scanning for the following special
192# patterns, which are highlighted appropriately.
193#
194# 'funcname()' - function
195# '$ENVVAR' - environmental variable
196# '&struct_name' - name of a structure (up to two words including 'struct')
197# '@parameter' - name of a parameter
198# '%CONST' - name of a constant.
199
8484baaa
RD
200## init lots of data
201
1da177e4
LT
202my $errors = 0;
203my $warnings = 0;
5f8c7c98 204my $anon_struct_union = 0;
1da177e4
LT
205
206# match expressions used to find embedded type information
207my $type_constant = '\%([-_\w]+)';
208my $type_func = '(\w+)\(\)';
209my $type_param = '\@(\w+)';
3eb014a1 210my $type_struct = '\&((struct\s*)*[_\w]+)';
6b5b55f6 211my $type_struct_xml = '\\&amp;((struct\s*)*[_\w]+)';
1da177e4 212my $type_env = '(\$\w+)';
c0d1b6ee
JC
213my $type_enum_full = '\&(enum)\s*([_\w]+)';
214my $type_struct_full = '\&(struct)\s*([_\w]+)';
47ae7aed
JN
215my $type_typedef_full = '\&(typedef)\s*([_\w]+)';
216my $type_union_full = '\&(union)\s*([_\w]+)';
f3341dcf
JN
217my $type_member = '\&([_\w]+)((\.|->)[_\w]+)';
218my $type_member_func = $type_member . '\(\)';
1da177e4
LT
219
220# Output conversion substitutions.
221# One for each output format
222
223# these work fairly well
4d732701
DCLP
224my @highlights_html = (
225 [$type_constant, "<i>\$1</i>"],
226 [$type_func, "<b>\$1</b>"],
227 [$type_struct_xml, "<i>\$1</i>"],
228 [$type_env, "<b><i>\$1</i></b>"],
229 [$type_param, "<tt><b>\$1</b></tt>"]
230 );
6b5b55f6
RD
231my $local_lt = "\\\\\\\\lt:";
232my $local_gt = "\\\\\\\\gt:";
233my $blankline_html = $local_lt . "p" . $local_gt; # was "<p>"
1da177e4 234
1b40c194 235# html version 5
4d732701
DCLP
236my @highlights_html5 = (
237 [$type_constant, "<span class=\"const\">\$1</span>"],
238 [$type_func, "<span class=\"func\">\$1</span>"],
239 [$type_struct_xml, "<span class=\"struct\">\$1</span>"],
240 [$type_env, "<span class=\"env\">\$1</span>"],
241 [$type_param, "<span class=\"param\">\$1</span>]"]
242 );
1b40c194
DL
243my $blankline_html5 = $local_lt . "br /" . $local_gt;
244
1da177e4 245# XML, docbook format
4d732701
DCLP
246my @highlights_xml = (
247 ["([^=])\\\"([^\\\"<]+)\\\"", "\$1<quote>\$2</quote>"],
248 [$type_constant, "<constant>\$1</constant>"],
249 [$type_struct_xml, "<structname>\$1</structname>"],
250 [$type_param, "<parameter>\$1</parameter>"],
251 [$type_func, "<function>\$1</function>"],
252 [$type_env, "<envar>\$1</envar>"]
253 );
5c98fc03 254my $blankline_xml = $local_lt . "/para" . $local_gt . $local_lt . "para" . $local_gt . "\n";
1da177e4
LT
255
256# gnome, docbook format
4d732701
DCLP
257my @highlights_gnome = (
258 [$type_constant, "<replaceable class=\"option\">\$1</replaceable>"],
259 [$type_func, "<function>\$1</function>"],
260 [$type_struct, "<structname>\$1</structname>"],
261 [$type_env, "<envar>\$1</envar>"],
262 [$type_param, "<parameter>\$1</parameter>" ]
263 );
1da177e4
LT
264my $blankline_gnome = "</para><para>\n";
265
266# these are pretty rough
4d732701
DCLP
267my @highlights_man = (
268 [$type_constant, "\$1"],
269 [$type_func, "\\\\fB\$1\\\\fP"],
270 [$type_struct, "\\\\fI\$1\\\\fP"],
271 [$type_param, "\\\\fI\$1\\\\fP"]
272 );
1da177e4
LT
273my $blankline_man = "";
274
275# text-mode
4d732701
DCLP
276my @highlights_text = (
277 [$type_constant, "\$1"],
278 [$type_func, "\$1"],
279 [$type_struct, "\$1"],
280 [$type_param, "\$1"]
281 );
1da177e4
LT
282my $blankline_text = "";
283
c0d1b6ee
JC
284# rst-mode
285my @highlights_rst = (
286 [$type_constant, "``\$1``"],
f3341dcf
JN
287 # Note: need to escape () to avoid func matching later
288 [$type_member_func, "\\:c\\:type\\:`\$1\$2\\\\(\\\\) <\$1>`"],
289 [$type_member, "\\:c\\:type\\:`\$1\$2 <\$1>`"],
a19bce64 290 [$type_func, "\\:c\\:func\\:`\$1()`"],
62850976
JN
291 [$type_struct_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"],
292 [$type_enum_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"],
47ae7aed
JN
293 [$type_typedef_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"],
294 [$type_union_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"],
a7291e7e
JN
295 # in rst this can refer to any type
296 [$type_struct, "\\:c\\:type\\:`\$1`"],
c0d1b6ee
JC
297 [$type_param, "**\$1**"]
298 );
299my $blankline_rst = "\n";
300
eda603f6 301# list mode
4d732701
DCLP
302my @highlights_list = (
303 [$type_constant, "\$1"],
304 [$type_func, "\$1"],
305 [$type_struct, "\$1"],
306 [$type_param, "\$1"]
307 );
eda603f6 308my $blankline_list = "";
1da177e4 309
1da177e4 310# read arguments
b9d97328 311if ($#ARGV == -1) {
1da177e4
LT
312 usage();
313}
314
8484baaa
RD
315my $kernelversion;
316my $dohighlight = "";
317
1da177e4
LT
318my $verbose = 0;
319my $output_mode = "man";
e314ba31 320my $output_preformatted = 0;
4b44595a 321my $no_doc_sections = 0;
4d732701 322my @highlights = @highlights_man;
1da177e4
LT
323my $blankline = $blankline_man;
324my $modulename = "Kernel API";
b6c3f456
JN
325
326use constant {
327 OUTPUT_ALL => 0, # output all symbols and doc sections
328 OUTPUT_INCLUDE => 1, # output only specified symbols
329 OUTPUT_EXCLUDE => 2, # output everything except specified symbols
330 OUTPUT_EXPORTED => 3, # output exported symbols
331 OUTPUT_INTERNAL => 4, # output non-exported symbols
332};
333my $output_selection = OUTPUT_ALL;
b2c4105b
BH
334my $show_not_found = 0;
335
336my @build_time;
337if (defined($ENV{'KBUILD_BUILD_TIMESTAMP'}) &&
338 (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') {
339 @build_time = gmtime($seconds);
340} else {
341 @build_time = localtime;
342}
343
3c3b809e
RD
344my $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
345 'July', 'August', 'September', 'October',
b2c4105b
BH
346 'November', 'December')[$build_time[4]] .
347 " " . ($build_time[5]+1900);
1da177e4 348
8484baaa 349# Essentially these are globals.
b9d97328
RD
350# They probably want to be tidied up, made more localised or something.
351# CAVEAT EMPTOR! Some of the others I localised may not want to be, which
1da177e4 352# could cause "use of undefined value" or other bugs.
b9d97328
RD
353my ($function, %function_table, %parametertypes, $declaration_purpose);
354my ($type, $declaration_name, $return_type);
1c32fd0c 355my ($newsection, $newcontents, $prototype, $brcount, %source_map);
1da177e4 356
bd0e88e5
RD
357if (defined($ENV{'KBUILD_VERBOSE'})) {
358 $verbose = "$ENV{'KBUILD_VERBOSE'}";
359}
360
3c3b809e 361# Generated docbook code is inserted in a template at a point where
1da177e4
LT
362# docbook v3.1 requires a non-zero sequence of RefEntry's; see:
363# http://www.oasis-open.org/docbook/documentation/reference/html/refentry.html
364# We keep track of number of generated entries and generate a dummy
365# if needs be to ensure the expanded template can be postprocessed
366# into html.
367my $section_counter = 0;
368
369my $lineprefix="";
370
48af606a
JN
371# Parser states
372use constant {
373 STATE_NORMAL => 0, # normal code
374 STATE_NAME => 1, # looking for function name
375 STATE_FIELD => 2, # scanning field start
376 STATE_PROTO => 3, # scanning prototype
377 STATE_DOCBLOCK => 4, # documentation block
378 STATE_INLINE => 5, # gathering documentation outside main block
379};
1da177e4 380my $state;
850622df 381my $in_doc_sect;
1da177e4 382
48af606a
JN
383# Inline documentation state
384use constant {
385 STATE_INLINE_NA => 0, # not applicable ($state != STATE_INLINE)
386 STATE_INLINE_NAME => 1, # looking for member name (@foo:)
387 STATE_INLINE_TEXT => 2, # looking for member documentation
388 STATE_INLINE_END => 3, # done
389 STATE_INLINE_ERROR => 4, # error - Comment without header was found.
390 # Spit a warning as it's not
391 # proper kernel-doc and ignore the rest.
392};
393my $inline_doc_state;
a4c6ebed 394
1da177e4
LT
395#declaration types: can be
396# 'function', 'struct', 'union', 'enum', 'typedef'
397my $decl_type;
398
1da177e4
LT
399my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
400my $doc_end = '\*/';
401my $doc_com = '\s*\*\s*';
12ae6779 402my $doc_com_body = '\s*\* ?';
b9d97328 403my $doc_decl = $doc_com . '(\w+)';
13901ef2 404my $doc_sect = $doc_com . '(\@?[\w\s]+):(.*)';
12ae6779 405my $doc_content = $doc_com_body . '(.*)';
b9d97328 406my $doc_block = $doc_com . 'DOC:\s*(.*)?';
48af606a
JN
407my $doc_inline_start = '^\s*/\*\*\s*$';
408my $doc_inline_sect = '\s*\*\s*(@[\w\s]+):(.*)';
409my $doc_inline_end = '^\s*\*/\s*$';
86ae2e38 410my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;';
1da177e4 411
1da177e4
LT
412my %parameterdescs;
413my @parameterlist;
414my %sections;
415my @sectionlist;
a1d94aa5
RD
416my $sectcheck;
417my $struct_actual;
1da177e4
LT
418
419my $contents = "";
420my $section_default = "Description"; # default section
421my $section_intro = "Introduction";
422my $section = $section_default;
423my $section_context = "Context";
4092bac7 424my $section_return = "Return";
1da177e4
LT
425
426my $undescribed = "-- undescribed --";
427
428reset_state();
429
430while ($ARGV[0] =~ m/^-(.*)/) {
431 my $cmd = shift @ARGV;
432 if ($cmd eq "-html") {
433 $output_mode = "html";
4d732701 434 @highlights = @highlights_html;
1da177e4 435 $blankline = $blankline_html;
1b40c194
DL
436 } elsif ($cmd eq "-html5") {
437 $output_mode = "html5";
4d732701 438 @highlights = @highlights_html5;
1b40c194 439 $blankline = $blankline_html5;
1da177e4
LT
440 } elsif ($cmd eq "-man") {
441 $output_mode = "man";
4d732701 442 @highlights = @highlights_man;
1da177e4
LT
443 $blankline = $blankline_man;
444 } elsif ($cmd eq "-text") {
445 $output_mode = "text";
4d732701 446 @highlights = @highlights_text;
1da177e4 447 $blankline = $blankline_text;
c0d1b6ee
JC
448 } elsif ($cmd eq "-rst") {
449 $output_mode = "rst";
450 @highlights = @highlights_rst;
451 $blankline = $blankline_rst;
1da177e4
LT
452 } elsif ($cmd eq "-docbook") {
453 $output_mode = "xml";
4d732701 454 @highlights = @highlights_xml;
1da177e4 455 $blankline = $blankline_xml;
eda603f6
JB
456 } elsif ($cmd eq "-list") {
457 $output_mode = "list";
4d732701 458 @highlights = @highlights_list;
eda603f6 459 $blankline = $blankline_list;
1da177e4
LT
460 } elsif ($cmd eq "-gnome") {
461 $output_mode = "gnome";
4d732701 462 @highlights = @highlights_gnome;
1da177e4
LT
463 $blankline = $blankline_gnome;
464 } elsif ($cmd eq "-module") { # not needed for XML, inherits from calling document
465 $modulename = shift @ARGV;
466 } elsif ($cmd eq "-function") { # to only output specific functions
b6c3f456 467 $output_selection = OUTPUT_INCLUDE;
1da177e4
LT
468 $function = shift @ARGV;
469 $function_table{$function} = 1;
b6c3f456
JN
470 } elsif ($cmd eq "-nofunction") { # output all except specific functions
471 $output_selection = OUTPUT_EXCLUDE;
1da177e4
LT
472 $function = shift @ARGV;
473 $function_table{$function} = 1;
86ae2e38 474 } elsif ($cmd eq "-export") { # only exported symbols
b6c3f456 475 $output_selection = OUTPUT_EXPORTED;
86ae2e38
JN
476 %function_table = ()
477 } elsif ($cmd eq "-internal") { # only non-exported symbols
b6c3f456 478 $output_selection = OUTPUT_INTERNAL;
86ae2e38 479 %function_table = ()
1da177e4
LT
480 } elsif ($cmd eq "-v") {
481 $verbose = 1;
482 } elsif (($cmd eq "-h") || ($cmd eq "--help")) {
483 usage();
4b44595a
JB
484 } elsif ($cmd eq '-no-doc-sections') {
485 $no_doc_sections = 1;
e946c43a
JB
486 } elsif ($cmd eq '-show-not-found') {
487 $show_not_found = 1;
1da177e4
LT
488 }
489}
490
8484baaa
RD
491# continue execution near EOF;
492
53f049fa
BP
493# get kernel version from env
494sub get_kernel_version() {
1b9bc22d 495 my $version = 'unknown kernel version';
53f049fa
BP
496
497 if (defined($ENV{'KERNELVERSION'})) {
498 $version = $ENV{'KERNELVERSION'};
499 }
500 return $version;
501}
1da177e4
LT
502
503##
504# dumps section contents to arrays/hashes intended for that purpose.
505#
506sub dump_section {
94dc7ad5 507 my $file = shift;
1da177e4
LT
508 my $name = shift;
509 my $contents = join "\n", @_;
510
13901ef2 511 if ($name =~ m/$type_param/) {
1da177e4
LT
512# print STDERR "parameter def '$1' = '$contents'\n";
513 $name = $1;
514 $parameterdescs{$name} = $contents;
a1d94aa5 515 $sectcheck = $sectcheck . $name . " ";
ced69090
RD
516 } elsif ($name eq "@\.\.\.") {
517# print STDERR "parameter def '...' = '$contents'\n";
518 $name = "...";
519 $parameterdescs{$name} = $contents;
a1d94aa5 520 $sectcheck = $sectcheck . $name . " ";
1da177e4
LT
521 } else {
522# print STDERR "other section '$name' = '$contents'\n";
94dc7ad5 523 if (defined($sections{$name}) && ($sections{$name} ne "")) {
d40e1e65 524 print STDERR "${file}:$.: error: duplicate section name '$name'\n";
94dc7ad5
RD
525 ++$errors;
526 }
1da177e4
LT
527 $sections{$name} = $contents;
528 push @sectionlist, $name;
529 }
530}
531
b112e0f7
JB
532##
533# dump DOC: section after checking that it should go out
534#
535sub dump_doc_section {
94dc7ad5 536 my $file = shift;
b112e0f7
JB
537 my $name = shift;
538 my $contents = join "\n", @_;
539
4b44595a
JB
540 if ($no_doc_sections) {
541 return;
542 }
543
b6c3f456
JN
544 if (($output_selection == OUTPUT_ALL) ||
545 ($output_selection == OUTPUT_INCLUDE &&
546 defined($function_table{$name})) ||
547 ($output_selection == OUTPUT_EXCLUDE &&
548 !defined($function_table{$name})))
b112e0f7 549 {
94dc7ad5 550 dump_section($file, $name, $contents);
b112e0f7
JB
551 output_blockhead({'sectionlist' => \@sectionlist,
552 'sections' => \%sections,
553 'module' => $modulename,
b6c3f456 554 'content-only' => ($output_selection != OUTPUT_ALL), });
b112e0f7
JB
555 }
556}
557
1da177e4
LT
558##
559# output function
560#
561# parameterdescs, a hash.
562# function => "function name"
563# parameterlist => @list of parameters
564# parameterdescs => %parameter descriptions
565# sectionlist => @list of sections
a21217da 566# sections => %section descriptions
3c3b809e 567#
1da177e4
LT
568
569sub output_highlight {
570 my $contents = join "\n",@_;
571 my $line;
572
573# DEBUG
574# if (!defined $contents) {
575# use Carp;
576# confess "output_highlight got called with no args?\n";
577# }
578
1b40c194
DL
579 if ($output_mode eq "html" || $output_mode eq "html5" ||
580 $output_mode eq "xml") {
6b5b55f6
RD
581 $contents = local_unescape($contents);
582 # convert data read & converted thru xml_escape() into &xyz; format:
2b35f4d9 583 $contents =~ s/\\\\\\/\&/g;
6b5b55f6 584 }
3eb014a1 585# print STDERR "contents b4:$contents\n";
1da177e4
LT
586 eval $dohighlight;
587 die $@ if $@;
3eb014a1
RD
588# print STDERR "contents af:$contents\n";
589
1b40c194
DL
590# strip whitespaces when generating html5
591 if ($output_mode eq "html5") {
592 $contents =~ s/^\s+//;
593 $contents =~ s/\s+$//;
594 }
1da177e4 595 foreach $line (split "\n", $contents) {
12ae6779
DS
596 if (! $output_preformatted) {
597 $line =~ s/^\s*//;
598 }
3c308798 599 if ($line eq ""){
e314ba31
DS
600 if (! $output_preformatted) {
601 print $lineprefix, local_unescape($blankline);
602 }
1da177e4 603 } else {
3c308798 604 $line =~ s/\\\\\\/\&/g;
cdccb316
RD
605 if ($output_mode eq "man" && substr($line, 0, 1) eq ".") {
606 print "\\&$line";
607 } else {
608 print $lineprefix, $line;
609 }
1da177e4
LT
610 }
611 print "\n";
612 }
613}
614
1b40c194 615# output sections in html
1da177e4
LT
616sub output_section_html(%) {
617 my %args = %{$_[0]};
618 my $section;
619
620 foreach $section (@{$args{'sectionlist'}}) {
621 print "<h3>$section</h3>\n";
622 print "<blockquote>\n";
623 output_highlight($args{'sections'}{$section});
624 print "</blockquote>\n";
3c3b809e 625 }
1da177e4
LT
626}
627
628# output enum in html
629sub output_enum_html(%) {
630 my %args = %{$_[0]};
631 my ($parameter);
632 my $count;
b9d97328 633 print "<h2>enum " . $args{'enum'} . "</h2>\n";
1da177e4 634
b9d97328 635 print "<b>enum " . $args{'enum'} . "</b> {<br>\n";
1da177e4
LT
636 $count = 0;
637 foreach $parameter (@{$args{'parameterlist'}}) {
b9d97328 638 print " <b>" . $parameter . "</b>";
1da177e4
LT
639 if ($count != $#{$args{'parameterlist'}}) {
640 $count++;
641 print ",\n";
642 }
643 print "<br>";
644 }
645 print "};<br>\n";
646
647 print "<h3>Constants</h3>\n";
648 print "<dl>\n";
649 foreach $parameter (@{$args{'parameterlist'}}) {
b9d97328 650 print "<dt><b>" . $parameter . "</b>\n";
1da177e4
LT
651 print "<dd>";
652 output_highlight($args{'parameterdescs'}{$parameter});
653 }
654 print "</dl>\n";
655 output_section_html(@_);
656 print "<hr>\n";
657}
658
d28bee0c 659# output typedef in html
1da177e4
LT
660sub output_typedef_html(%) {
661 my %args = %{$_[0]};
662 my ($parameter);
663 my $count;
b9d97328 664 print "<h2>typedef " . $args{'typedef'} . "</h2>\n";
1da177e4 665
b9d97328 666 print "<b>typedef " . $args{'typedef'} . "</b>\n";
1da177e4
LT
667 output_section_html(@_);
668 print "<hr>\n";
669}
670
671# output struct in html
672sub output_struct_html(%) {
673 my %args = %{$_[0]};
674 my ($parameter);
675
b9d97328
RD
676 print "<h2>" . $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "</h2>\n";
677 print "<b>" . $args{'type'} . " " . $args{'struct'} . "</b> {<br>\n";
1da177e4
LT
678 foreach $parameter (@{$args{'parameterlist'}}) {
679 if ($parameter =~ /^#/) {
680 print "$parameter<br>\n";
681 next;
682 }
683 my $parameter_name = $parameter;
684 $parameter_name =~ s/\[.*//;
685
3c308798 686 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1da177e4
LT
687 $type = $args{'parametertypes'}{$parameter};
688 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
689 # pointer-to-function
3eb014a1 690 print "&nbsp; &nbsp; <i>$1</i><b>$parameter</b>) <i>($2)</i>;<br>\n";
1da177e4 691 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
3eb014a1
RD
692 # bitfield
693 print "&nbsp; &nbsp; <i>$1</i> <b>$parameter</b>$2;<br>\n";
1da177e4 694 } else {
3eb014a1 695 print "&nbsp; &nbsp; <i>$type</i> <b>$parameter</b>;<br>\n";
1da177e4
LT
696 }
697 }
698 print "};<br>\n";
699
700 print "<h3>Members</h3>\n";
701 print "<dl>\n";
702 foreach $parameter (@{$args{'parameterlist'}}) {
703 ($parameter =~ /^#/) && next;
704
705 my $parameter_name = $parameter;
706 $parameter_name =~ s/\[.*//;
707
3c308798 708 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
b9d97328 709 print "<dt><b>" . $parameter . "</b>\n";
1da177e4
LT
710 print "<dd>";
711 output_highlight($args{'parameterdescs'}{$parameter_name});
712 }
713 print "</dl>\n";
714 output_section_html(@_);
715 print "<hr>\n";
716}
717
718# output function in html
719sub output_function_html(%) {
720 my %args = %{$_[0]};
721 my ($parameter, $section);
722 my $count;
1da177e4 723
b9d97328
RD
724 print "<h2>" . $args{'function'} . " - " . $args{'purpose'} . "</h2>\n";
725 print "<i>" . $args{'functiontype'} . "</i>\n";
726 print "<b>" . $args{'function'} . "</b>\n";
1da177e4
LT
727 print "(";
728 $count = 0;
729 foreach $parameter (@{$args{'parameterlist'}}) {
730 $type = $args{'parametertypes'}{$parameter};
731 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
732 # pointer-to-function
733 print "<i>$1</i><b>$parameter</b>) <i>($2)</i>";
734 } else {
b9d97328 735 print "<i>" . $type . "</i> <b>" . $parameter . "</b>";
1da177e4
LT
736 }
737 if ($count != $#{$args{'parameterlist'}}) {
738 $count++;
739 print ",\n";
740 }
741 }
742 print ")\n";
743
744 print "<h3>Arguments</h3>\n";
745 print "<dl>\n";
746 foreach $parameter (@{$args{'parameterlist'}}) {
747 my $parameter_name = $parameter;
748 $parameter_name =~ s/\[.*//;
749
3c308798 750 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
b9d97328 751 print "<dt><b>" . $parameter . "</b>\n";
1da177e4
LT
752 print "<dd>";
753 output_highlight($args{'parameterdescs'}{$parameter_name});
754 }
755 print "</dl>\n";
756 output_section_html(@_);
757 print "<hr>\n";
758}
759
b112e0f7
JB
760# output DOC: block header in html
761sub output_blockhead_html(%) {
1da177e4
LT
762 my %args = %{$_[0]};
763 my ($parameter, $section);
764 my $count;
765
766 foreach $section (@{$args{'sectionlist'}}) {
767 print "<h3>$section</h3>\n";
768 print "<ul>\n";
769 output_highlight($args{'sections'}{$section});
770 print "</ul>\n";
771 }
772 print "<hr>\n";
773}
774
1b40c194
DL
775# output sections in html5
776sub output_section_html5(%) {
777 my %args = %{$_[0]};
778 my $section;
779
780 foreach $section (@{$args{'sectionlist'}}) {
781 print "<section>\n";
782 print "<h1>$section</h1>\n";
783 print "<p>\n";
784 output_highlight($args{'sections'}{$section});
785 print "</p>\n";
786 print "</section>\n";
787 }
788}
789
790# output enum in html5
791sub output_enum_html5(%) {
792 my %args = %{$_[0]};
793 my ($parameter);
794 my $count;
795 my $html5id;
796
797 $html5id = $args{'enum'};
798 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
799 print "<article class=\"enum\" id=\"enum:". $html5id . "\">";
800 print "<h1>enum " . $args{'enum'} . "</h1>\n";
801 print "<ol class=\"code\">\n";
802 print "<li>";
803 print "<span class=\"keyword\">enum</span> ";
804 print "<span class=\"identifier\">" . $args{'enum'} . "</span> {";
805 print "</li>\n";
806 $count = 0;
807 foreach $parameter (@{$args{'parameterlist'}}) {
808 print "<li class=\"indent\">";
809 print "<span class=\"param\">" . $parameter . "</span>";
810 if ($count != $#{$args{'parameterlist'}}) {
811 $count++;
812 print ",";
813 }
814 print "</li>\n";
815 }
816 print "<li>};</li>\n";
817 print "</ol>\n";
818
819 print "<section>\n";
820 print "<h1>Constants</h1>\n";
821 print "<dl>\n";
822 foreach $parameter (@{$args{'parameterlist'}}) {
823 print "<dt>" . $parameter . "</dt>\n";
824 print "<dd>";
825 output_highlight($args{'parameterdescs'}{$parameter});
826 print "</dd>\n";
827 }
828 print "</dl>\n";
829 print "</section>\n";
830 output_section_html5(@_);
831 print "</article>\n";
832}
833
834# output typedef in html5
835sub output_typedef_html5(%) {
836 my %args = %{$_[0]};
837 my ($parameter);
838 my $count;
839 my $html5id;
840
841 $html5id = $args{'typedef'};
842 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
843 print "<article class=\"typedef\" id=\"typedef:" . $html5id . "\">\n";
844 print "<h1>typedef " . $args{'typedef'} . "</h1>\n";
845
846 print "<ol class=\"code\">\n";
847 print "<li>";
848 print "<span class=\"keyword\">typedef</span> ";
849 print "<span class=\"identifier\">" . $args{'typedef'} . "</span>";
850 print "</li>\n";
851 print "</ol>\n";
852 output_section_html5(@_);
853 print "</article>\n";
854}
855
856# output struct in html5
857sub output_struct_html5(%) {
858 my %args = %{$_[0]};
859 my ($parameter);
860 my $html5id;
861
862 $html5id = $args{'struct'};
863 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
864 print "<article class=\"struct\" id=\"struct:" . $html5id . "\">\n";
865 print "<hgroup>\n";
866 print "<h1>" . $args{'type'} . " " . $args{'struct'} . "</h1>";
867 print "<h2>". $args{'purpose'} . "</h2>\n";
868 print "</hgroup>\n";
869 print "<ol class=\"code\">\n";
870 print "<li>";
871 print "<span class=\"type\">" . $args{'type'} . "</span> ";
872 print "<span class=\"identifier\">" . $args{'struct'} . "</span> {";
873 print "</li>\n";
874 foreach $parameter (@{$args{'parameterlist'}}) {
875 print "<li class=\"indent\">";
876 if ($parameter =~ /^#/) {
877 print "<span class=\"param\">" . $parameter ."</span>\n";
878 print "</li>\n";
879 next;
880 }
881 my $parameter_name = $parameter;
882 $parameter_name =~ s/\[.*//;
883
884 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
885 $type = $args{'parametertypes'}{$parameter};
886 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
887 # pointer-to-function
888 print "<span class=\"type\">$1</span> ";
889 print "<span class=\"param\">$parameter</span>";
890 print "<span class=\"type\">)</span> ";
891 print "(<span class=\"args\">$2</span>);";
892 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
893 # bitfield
894 print "<span class=\"type\">$1</span> ";
895 print "<span class=\"param\">$parameter</span>";
896 print "<span class=\"bits\">$2</span>;";
897 } else {
898 print "<span class=\"type\">$type</span> ";
899 print "<span class=\"param\">$parameter</span>;";
900 }
901 print "</li>\n";
902 }
903 print "<li>};</li>\n";
904 print "</ol>\n";
905
906 print "<section>\n";
907 print "<h1>Members</h1>\n";
908 print "<dl>\n";
909 foreach $parameter (@{$args{'parameterlist'}}) {
910 ($parameter =~ /^#/) && next;
911
912 my $parameter_name = $parameter;
913 $parameter_name =~ s/\[.*//;
914
915 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
916 print "<dt>" . $parameter . "</dt>\n";
917 print "<dd>";
918 output_highlight($args{'parameterdescs'}{$parameter_name});
919 print "</dd>\n";
920 }
921 print "</dl>\n";
922 print "</section>\n";
923 output_section_html5(@_);
924 print "</article>\n";
925}
926
927# output function in html5
928sub output_function_html5(%) {
929 my %args = %{$_[0]};
930 my ($parameter, $section);
931 my $count;
932 my $html5id;
933
934 $html5id = $args{'function'};
935 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
936 print "<article class=\"function\" id=\"func:". $html5id . "\">\n";
937 print "<hgroup>\n";
938 print "<h1>" . $args{'function'} . "</h1>";
939 print "<h2>" . $args{'purpose'} . "</h2>\n";
940 print "</hgroup>\n";
941 print "<ol class=\"code\">\n";
942 print "<li>";
943 print "<span class=\"type\">" . $args{'functiontype'} . "</span> ";
944 print "<span class=\"identifier\">" . $args{'function'} . "</span> (";
945 print "</li>";
946 $count = 0;
947 foreach $parameter (@{$args{'parameterlist'}}) {
948 print "<li class=\"indent\">";
949 $type = $args{'parametertypes'}{$parameter};
950 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
951 # pointer-to-function
952 print "<span class=\"type\">$1</span> ";
953 print "<span class=\"param\">$parameter</span>";
954 print "<span class=\"type\">)</span> ";
955 print "(<span class=\"args\">$2</span>)";
956 } else {
957 print "<span class=\"type\">$type</span> ";
958 print "<span class=\"param\">$parameter</span>";
959 }
960 if ($count != $#{$args{'parameterlist'}}) {
961 $count++;
962 print ",";
963 }
964 print "</li>\n";
965 }
966 print "<li>)</li>\n";
967 print "</ol>\n";
968
969 print "<section>\n";
970 print "<h1>Arguments</h1>\n";
971 print "<p>\n";
972 print "<dl>\n";
973 foreach $parameter (@{$args{'parameterlist'}}) {
974 my $parameter_name = $parameter;
975 $parameter_name =~ s/\[.*//;
976
977 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
978 print "<dt>" . $parameter . "</dt>\n";
979 print "<dd>";
980 output_highlight($args{'parameterdescs'}{$parameter_name});
981 print "</dd>\n";
982 }
983 print "</dl>\n";
984 print "</section>\n";
985 output_section_html5(@_);
986 print "</article>\n";
987}
988
989# output DOC: block header in html5
990sub output_blockhead_html5(%) {
991 my %args = %{$_[0]};
992 my ($parameter, $section);
993 my $count;
994 my $html5id;
995
996 foreach $section (@{$args{'sectionlist'}}) {
997 $html5id = $section;
998 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
999 print "<article class=\"doc\" id=\"doc:". $html5id . "\">\n";
1000 print "<h1>$section</h1>\n";
1001 print "<p>\n";
1002 output_highlight($args{'sections'}{$section});
1003 print "</p>\n";
1004 }
1005 print "</article>\n";
1006}
1007
1da177e4
LT
1008sub output_section_xml(%) {
1009 my %args = %{$_[0]};
3c3b809e 1010 my $section;
1da177e4
LT
1011 # print out each section
1012 $lineprefix=" ";
1013 foreach $section (@{$args{'sectionlist'}}) {
c73894c1
RW
1014 print "<refsect1>\n";
1015 print "<title>$section</title>\n";
1da177e4 1016 if ($section =~ m/EXAMPLE/i) {
c73894c1 1017 print "<informalexample><programlisting>\n";
e314ba31 1018 $output_preformatted = 1;
c73894c1
RW
1019 } else {
1020 print "<para>\n";
1da177e4
LT
1021 }
1022 output_highlight($args{'sections'}{$section});
e314ba31 1023 $output_preformatted = 0;
1da177e4 1024 if ($section =~ m/EXAMPLE/i) {
c73894c1
RW
1025 print "</programlisting></informalexample>\n";
1026 } else {
1027 print "</para>\n";
1da177e4 1028 }
c73894c1 1029 print "</refsect1>\n";
1da177e4
LT
1030 }
1031}
1032
1033# output function in XML DocBook
1034sub output_function_xml(%) {
1035 my %args = %{$_[0]};
1036 my ($parameter, $section);
1037 my $count;
1038 my $id;
1039
b9d97328 1040 $id = "API-" . $args{'function'};
1da177e4
LT
1041 $id =~ s/[^A-Za-z0-9]/-/g;
1042
5449bc94 1043 print "<refentry id=\"$id\">\n";
8b0c2d98
MW
1044 print "<refentryinfo>\n";
1045 print " <title>LINUX</title>\n";
1046 print " <productname>Kernel Hackers Manual</productname>\n";
1047 print " <date>$man_date</date>\n";
1048 print "</refentryinfo>\n";
1da177e4 1049 print "<refmeta>\n";
b9d97328 1050 print " <refentrytitle><phrase>" . $args{'function'} . "</phrase></refentrytitle>\n";
8b0c2d98 1051 print " <manvolnum>9</manvolnum>\n";
0366299b 1052 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
1da177e4
LT
1053 print "</refmeta>\n";
1054 print "<refnamediv>\n";
b9d97328 1055 print " <refname>" . $args{'function'} . "</refname>\n";
1da177e4
LT
1056 print " <refpurpose>\n";
1057 print " ";
1058 output_highlight ($args{'purpose'});
1059 print " </refpurpose>\n";
1060 print "</refnamediv>\n";
1061
1062 print "<refsynopsisdiv>\n";
1063 print " <title>Synopsis</title>\n";
1064 print " <funcsynopsis><funcprototype>\n";
b9d97328
RD
1065 print " <funcdef>" . $args{'functiontype'} . " ";
1066 print "<function>" . $args{'function'} . " </function></funcdef>\n";
1da177e4
LT
1067
1068 $count = 0;
1069 if ($#{$args{'parameterlist'}} >= 0) {
1070 foreach $parameter (@{$args{'parameterlist'}}) {
1071 $type = $args{'parametertypes'}{$parameter};
1072 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1073 # pointer-to-function
1074 print " <paramdef>$1<parameter>$parameter</parameter>)\n";
1075 print " <funcparams>$2</funcparams></paramdef>\n";
1076 } else {
b9d97328 1077 print " <paramdef>" . $type;
1da177e4
LT
1078 print " <parameter>$parameter</parameter></paramdef>\n";
1079 }
1080 }
1081 } else {
6013d544 1082 print " <void/>\n";
1da177e4
LT
1083 }
1084 print " </funcprototype></funcsynopsis>\n";
1085 print "</refsynopsisdiv>\n";
1086
1087 # print parameters
1088 print "<refsect1>\n <title>Arguments</title>\n";
1089 if ($#{$args{'parameterlist'}} >= 0) {
1090 print " <variablelist>\n";
1091 foreach $parameter (@{$args{'parameterlist'}}) {
1092 my $parameter_name = $parameter;
1093 $parameter_name =~ s/\[.*//;
1094
1095 print " <varlistentry>\n <term><parameter>$parameter</parameter></term>\n";
1096 print " <listitem>\n <para>\n";
1097 $lineprefix=" ";
1098 output_highlight($args{'parameterdescs'}{$parameter_name});
1099 print " </para>\n </listitem>\n </varlistentry>\n";
1100 }
1101 print " </variablelist>\n";
1102 } else {
1103 print " <para>\n None\n </para>\n";
1104 }
1105 print "</refsect1>\n";
1106
1107 output_section_xml(@_);
1108 print "</refentry>\n\n";
1109}
1110
1111# output struct in XML DocBook
1112sub output_struct_xml(%) {
1113 my %args = %{$_[0]};
1114 my ($parameter, $section);
1115 my $id;
1116
b9d97328 1117 $id = "API-struct-" . $args{'struct'};
1da177e4
LT
1118 $id =~ s/[^A-Za-z0-9]/-/g;
1119
5449bc94 1120 print "<refentry id=\"$id\">\n";
8b0c2d98
MW
1121 print "<refentryinfo>\n";
1122 print " <title>LINUX</title>\n";
1123 print " <productname>Kernel Hackers Manual</productname>\n";
1124 print " <date>$man_date</date>\n";
1125 print "</refentryinfo>\n";
1da177e4 1126 print "<refmeta>\n";
b9d97328 1127 print " <refentrytitle><phrase>" . $args{'type'} . " " . $args{'struct'} . "</phrase></refentrytitle>\n";
8b0c2d98 1128 print " <manvolnum>9</manvolnum>\n";
0366299b 1129 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
1da177e4
LT
1130 print "</refmeta>\n";
1131 print "<refnamediv>\n";
b9d97328 1132 print " <refname>" . $args{'type'} . " " . $args{'struct'} . "</refname>\n";
1da177e4
LT
1133 print " <refpurpose>\n";
1134 print " ";
1135 output_highlight ($args{'purpose'});
1136 print " </refpurpose>\n";
1137 print "</refnamediv>\n";
1138
1139 print "<refsynopsisdiv>\n";
1140 print " <title>Synopsis</title>\n";
1141 print " <programlisting>\n";
b9d97328 1142 print $args{'type'} . " " . $args{'struct'} . " {\n";
1da177e4
LT
1143 foreach $parameter (@{$args{'parameterlist'}}) {
1144 if ($parameter =~ /^#/) {
2b35f4d9
RD
1145 my $prm = $parameter;
1146 # convert data read & converted thru xml_escape() into &xyz; format:
1147 # This allows us to have #define macros interspersed in a struct.
1148 $prm =~ s/\\\\\\/\&/g;
1149 print "$prm\n";
1da177e4
LT
1150 next;
1151 }
1152
1153 my $parameter_name = $parameter;
1154 $parameter_name =~ s/\[.*//;
1155
1156 defined($args{'parameterdescs'}{$parameter_name}) || next;
3c308798 1157 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1da177e4
LT
1158 $type = $args{'parametertypes'}{$parameter};
1159 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1160 # pointer-to-function
1161 print " $1 $parameter) ($2);\n";
1162 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
51f5a0c8 1163 # bitfield
1da177e4
LT
1164 print " $1 $parameter$2;\n";
1165 } else {
b9d97328 1166 print " " . $type . " " . $parameter . ";\n";
1da177e4
LT
1167 }
1168 }
1169 print "};";
1170 print " </programlisting>\n";
1171 print "</refsynopsisdiv>\n";
1172
1173 print " <refsect1>\n";
1174 print " <title>Members</title>\n";
1175
39f00c08 1176 if ($#{$args{'parameterlist'}} >= 0) {
1da177e4
LT
1177 print " <variablelist>\n";
1178 foreach $parameter (@{$args{'parameterlist'}}) {
1179 ($parameter =~ /^#/) && next;
1180
1181 my $parameter_name = $parameter;
1182 $parameter_name =~ s/\[.*//;
1183
1184 defined($args{'parameterdescs'}{$parameter_name}) || next;
1185 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1186 print " <varlistentry>";
1187 print " <term>$parameter</term>\n";
1188 print " <listitem><para>\n";
1189 output_highlight($args{'parameterdescs'}{$parameter_name});
1190 print " </para></listitem>\n";
1191 print " </varlistentry>\n";
1192 }
1193 print " </variablelist>\n";
39f00c08
RD
1194 } else {
1195 print " <para>\n None\n </para>\n";
1196 }
1da177e4
LT
1197 print " </refsect1>\n";
1198
1199 output_section_xml(@_);
1200
1201 print "</refentry>\n\n";
1202}
1203
1204# output enum in XML DocBook
1205sub output_enum_xml(%) {
1206 my %args = %{$_[0]};
1207 my ($parameter, $section);
1208 my $count;
1209 my $id;
1210
b9d97328 1211 $id = "API-enum-" . $args{'enum'};
1da177e4
LT
1212 $id =~ s/[^A-Za-z0-9]/-/g;
1213
5449bc94 1214 print "<refentry id=\"$id\">\n";
8b0c2d98
MW
1215 print "<refentryinfo>\n";
1216 print " <title>LINUX</title>\n";
1217 print " <productname>Kernel Hackers Manual</productname>\n";
1218 print " <date>$man_date</date>\n";
1219 print "</refentryinfo>\n";
1da177e4 1220 print "<refmeta>\n";
b9d97328 1221 print " <refentrytitle><phrase>enum " . $args{'enum'} . "</phrase></refentrytitle>\n";
8b0c2d98 1222 print " <manvolnum>9</manvolnum>\n";
0366299b 1223 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
1da177e4
LT
1224 print "</refmeta>\n";
1225 print "<refnamediv>\n";
b9d97328 1226 print " <refname>enum " . $args{'enum'} . "</refname>\n";
1da177e4
LT
1227 print " <refpurpose>\n";
1228 print " ";
1229 output_highlight ($args{'purpose'});
1230 print " </refpurpose>\n";
1231 print "</refnamediv>\n";
1232
1233 print "<refsynopsisdiv>\n";
1234 print " <title>Synopsis</title>\n";
1235 print " <programlisting>\n";
b9d97328 1236 print "enum " . $args{'enum'} . " {\n";
1da177e4
LT
1237 $count = 0;
1238 foreach $parameter (@{$args{'parameterlist'}}) {
3c308798
RD
1239 print " $parameter";
1240 if ($count != $#{$args{'parameterlist'}}) {
1da177e4
LT
1241 $count++;
1242 print ",";
3c308798 1243 }
1da177e4
LT
1244 print "\n";
1245 }
1246 print "};";
1247 print " </programlisting>\n";
1248 print "</refsynopsisdiv>\n";
1249
1250 print "<refsect1>\n";
3c3b809e 1251 print " <title>Constants</title>\n";
1da177e4
LT
1252 print " <variablelist>\n";
1253 foreach $parameter (@{$args{'parameterlist'}}) {
1254 my $parameter_name = $parameter;
1255 $parameter_name =~ s/\[.*//;
1256
1257 print " <varlistentry>";
1258 print " <term>$parameter</term>\n";
1259 print " <listitem><para>\n";
1260 output_highlight($args{'parameterdescs'}{$parameter_name});
1261 print " </para></listitem>\n";
1262 print " </varlistentry>\n";
1263 }
1264 print " </variablelist>\n";
1265 print "</refsect1>\n";
1266
1267 output_section_xml(@_);
1268
1269 print "</refentry>\n\n";
1270}
1271
1272# output typedef in XML DocBook
1273sub output_typedef_xml(%) {
1274 my %args = %{$_[0]};
1275 my ($parameter, $section);
1276 my $id;
1277
b9d97328 1278 $id = "API-typedef-" . $args{'typedef'};
1da177e4
LT
1279 $id =~ s/[^A-Za-z0-9]/-/g;
1280
5449bc94 1281 print "<refentry id=\"$id\">\n";
8b0c2d98
MW
1282 print "<refentryinfo>\n";
1283 print " <title>LINUX</title>\n";
1284 print " <productname>Kernel Hackers Manual</productname>\n";
1285 print " <date>$man_date</date>\n";
1286 print "</refentryinfo>\n";
1da177e4 1287 print "<refmeta>\n";
b9d97328 1288 print " <refentrytitle><phrase>typedef " . $args{'typedef'} . "</phrase></refentrytitle>\n";
8b0c2d98 1289 print " <manvolnum>9</manvolnum>\n";
1da177e4
LT
1290 print "</refmeta>\n";
1291 print "<refnamediv>\n";
b9d97328 1292 print " <refname>typedef " . $args{'typedef'} . "</refname>\n";
1da177e4
LT
1293 print " <refpurpose>\n";
1294 print " ";
1295 output_highlight ($args{'purpose'});
1296 print " </refpurpose>\n";
1297 print "</refnamediv>\n";
1298
1299 print "<refsynopsisdiv>\n";
1300 print " <title>Synopsis</title>\n";
b9d97328 1301 print " <synopsis>typedef " . $args{'typedef'} . ";</synopsis>\n";
1da177e4
LT
1302 print "</refsynopsisdiv>\n";
1303
1304 output_section_xml(@_);
1305
1306 print "</refentry>\n\n";
1307}
1308
1309# output in XML DocBook
b112e0f7 1310sub output_blockhead_xml(%) {
1da177e4
LT
1311 my %args = %{$_[0]};
1312 my ($parameter, $section);
1313 my $count;
1314
1315 my $id = $args{'module'};
1316 $id =~ s/[^A-Za-z0-9]/-/g;
1317
1318 # print out each section
1319 $lineprefix=" ";
1320 foreach $section (@{$args{'sectionlist'}}) {
b112e0f7
JB
1321 if (!$args{'content-only'}) {
1322 print "<refsect1>\n <title>$section</title>\n";
1323 }
1da177e4
LT
1324 if ($section =~ m/EXAMPLE/i) {
1325 print "<example><para>\n";
e314ba31 1326 $output_preformatted = 1;
b112e0f7
JB
1327 } else {
1328 print "<para>\n";
1da177e4
LT
1329 }
1330 output_highlight($args{'sections'}{$section});
e314ba31 1331 $output_preformatted = 0;
1da177e4
LT
1332 if ($section =~ m/EXAMPLE/i) {
1333 print "</para></example>\n";
b112e0f7
JB
1334 } else {
1335 print "</para>";
1336 }
1337 if (!$args{'content-only'}) {
1338 print "\n</refsect1>\n";
1da177e4 1339 }
1da177e4
LT
1340 }
1341
1342 print "\n\n";
1343}
1344
1345# output in XML DocBook
1346sub output_function_gnome {
1347 my %args = %{$_[0]};
1348 my ($parameter, $section);
1349 my $count;
1350 my $id;
1351
b9d97328 1352 $id = $args{'module'} . "-" . $args{'function'};
1da177e4
LT
1353 $id =~ s/[^A-Za-z0-9]/-/g;
1354
1355 print "<sect2>\n";
b9d97328 1356 print " <title id=\"$id\">" . $args{'function'} . "</title>\n";
1da177e4
LT
1357
1358 print " <funcsynopsis>\n";
b9d97328
RD
1359 print " <funcdef>" . $args{'functiontype'} . " ";
1360 print "<function>" . $args{'function'} . " ";
1da177e4
LT
1361 print "</function></funcdef>\n";
1362
1363 $count = 0;
1364 if ($#{$args{'parameterlist'}} >= 0) {
1365 foreach $parameter (@{$args{'parameterlist'}}) {
1366 $type = $args{'parametertypes'}{$parameter};
1367 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1368 # pointer-to-function
1369 print " <paramdef>$1 <parameter>$parameter</parameter>)\n";
1370 print " <funcparams>$2</funcparams></paramdef>\n";
1371 } else {
b9d97328 1372 print " <paramdef>" . $type;
1da177e4
LT
1373 print " <parameter>$parameter</parameter></paramdef>\n";
1374 }
1375 }
1376 } else {
1377 print " <void>\n";
1378 }
1379 print " </funcsynopsis>\n";
1380 if ($#{$args{'parameterlist'}} >= 0) {
1381 print " <informaltable pgwide=\"1\" frame=\"none\" role=\"params\">\n";
1382 print "<tgroup cols=\"2\">\n";
1383 print "<colspec colwidth=\"2*\">\n";
1384 print "<colspec colwidth=\"8*\">\n";
1385 print "<tbody>\n";
1386 foreach $parameter (@{$args{'parameterlist'}}) {
1387 my $parameter_name = $parameter;
1388 $parameter_name =~ s/\[.*//;
1389
1390 print " <row><entry align=\"right\"><parameter>$parameter</parameter></entry>\n";
1391 print " <entry>\n";
1392 $lineprefix=" ";
1393 output_highlight($args{'parameterdescs'}{$parameter_name});
1394 print " </entry></row>\n";
1395 }
1396 print " </tbody></tgroup></informaltable>\n";
1397 } else {
1398 print " <para>\n None\n </para>\n";
1399 }
1400
1401 # print out each section
1402 $lineprefix=" ";
1403 foreach $section (@{$args{'sectionlist'}}) {
1404 print "<simplesect>\n <title>$section</title>\n";
1405 if ($section =~ m/EXAMPLE/i) {
1406 print "<example><programlisting>\n";
e314ba31 1407 $output_preformatted = 1;
1da177e4
LT
1408 } else {
1409 }
1410 print "<para>\n";
1411 output_highlight($args{'sections'}{$section});
e314ba31 1412 $output_preformatted = 0;
1da177e4
LT
1413 print "</para>\n";
1414 if ($section =~ m/EXAMPLE/i) {
1415 print "</programlisting></example>\n";
1416 } else {
1417 }
1418 print " </simplesect>\n";
1419 }
1420
1421 print "</sect2>\n\n";
1422}
1423
1424##
1425# output function in man
1426sub output_function_man(%) {
1427 my %args = %{$_[0]};
1428 my ($parameter, $section);
1429 my $count;
1430
1431 print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n";
1432
1433 print ".SH NAME\n";
b9d97328 1434 print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
1da177e4
LT
1435
1436 print ".SH SYNOPSIS\n";
a21217da 1437 if ($args{'functiontype'} ne "") {
b9d97328 1438 print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
a21217da 1439 } else {
b9d97328 1440 print ".B \"" . $args{'function'} . "\n";
a21217da 1441 }
1da177e4
LT
1442 $count = 0;
1443 my $parenth = "(";
1444 my $post = ",";
1445 foreach my $parameter (@{$args{'parameterlist'}}) {
1446 if ($count == $#{$args{'parameterlist'}}) {
1447 $post = ");";
1448 }
1449 $type = $args{'parametertypes'}{$parameter};
1450 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1451 # pointer-to-function
b9d97328 1452 print ".BI \"" . $parenth . $1 . "\" " . $parameter . " \") (" . $2 . ")" . $post . "\"\n";
1da177e4
LT
1453 } else {
1454 $type =~ s/([^\*])$/$1 /;
b9d97328 1455 print ".BI \"" . $parenth . $type . "\" " . $parameter . " \"" . $post . "\"\n";
1da177e4
LT
1456 }
1457 $count++;
1458 $parenth = "";
1459 }
1460
1461 print ".SH ARGUMENTS\n";
1462 foreach $parameter (@{$args{'parameterlist'}}) {
1463 my $parameter_name = $parameter;
1464 $parameter_name =~ s/\[.*//;
1465
b9d97328 1466 print ".IP \"" . $parameter . "\" 12\n";
1da177e4
LT
1467 output_highlight($args{'parameterdescs'}{$parameter_name});
1468 }
1469 foreach $section (@{$args{'sectionlist'}}) {
1470 print ".SH \"", uc $section, "\"\n";
1471 output_highlight($args{'sections'}{$section});
1472 }
1473}
1474
1475##
1476# output enum in man
1477sub output_enum_man(%) {
1478 my %args = %{$_[0]};
1479 my ($parameter, $section);
1480 my $count;
1481
1482 print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n";
1483
1484 print ".SH NAME\n";
b9d97328 1485 print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n";
1da177e4
LT
1486
1487 print ".SH SYNOPSIS\n";
b9d97328 1488 print "enum " . $args{'enum'} . " {\n";
1da177e4
LT
1489 $count = 0;
1490 foreach my $parameter (@{$args{'parameterlist'}}) {
3c308798 1491 print ".br\n.BI \" $parameter\"\n";
1da177e4
LT
1492 if ($count == $#{$args{'parameterlist'}}) {
1493 print "\n};\n";
1494 last;
1495 }
1496 else {
1497 print ", \n.br\n";
1498 }
1499 $count++;
1500 }
1501
1502 print ".SH Constants\n";
1503 foreach $parameter (@{$args{'parameterlist'}}) {
1504 my $parameter_name = $parameter;
1505 $parameter_name =~ s/\[.*//;
1506
b9d97328 1507 print ".IP \"" . $parameter . "\" 12\n";
1da177e4
LT
1508 output_highlight($args{'parameterdescs'}{$parameter_name});
1509 }
1510 foreach $section (@{$args{'sectionlist'}}) {
1511 print ".SH \"$section\"\n";
1512 output_highlight($args{'sections'}{$section});
1513 }
1514}
1515
1516##
1517# output struct in man
1518sub output_struct_man(%) {
1519 my %args = %{$_[0]};
1520 my ($parameter, $section);
1521
b9d97328 1522 print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n";
1da177e4
LT
1523
1524 print ".SH NAME\n";
b9d97328 1525 print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n";
1da177e4
LT
1526
1527 print ".SH SYNOPSIS\n";
b9d97328 1528 print $args{'type'} . " " . $args{'struct'} . " {\n.br\n";
1da177e4
LT
1529
1530 foreach my $parameter (@{$args{'parameterlist'}}) {
1531 if ($parameter =~ /^#/) {
1532 print ".BI \"$parameter\"\n.br\n";
1533 next;
1534 }
1535 my $parameter_name = $parameter;
1536 $parameter_name =~ s/\[.*//;
1537
3c308798 1538 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1da177e4
LT
1539 $type = $args{'parametertypes'}{$parameter};
1540 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1541 # pointer-to-function
b9d97328 1542 print ".BI \" " . $1 . "\" " . $parameter . " \") (" . $2 . ")" . "\"\n;\n";
1da177e4 1543 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
1d7e1d45 1544 # bitfield
b9d97328 1545 print ".BI \" " . $1 . "\ \" " . $parameter . $2 . " \"" . "\"\n;\n";
1da177e4
LT
1546 } else {
1547 $type =~ s/([^\*])$/$1 /;
b9d97328 1548 print ".BI \" " . $type . "\" " . $parameter . " \"" . "\"\n;\n";
1da177e4
LT
1549 }
1550 print "\n.br\n";
1551 }
1552 print "};\n.br\n";
1553
c51d3dac 1554 print ".SH Members\n";
1da177e4
LT
1555 foreach $parameter (@{$args{'parameterlist'}}) {
1556 ($parameter =~ /^#/) && next;
1557
1558 my $parameter_name = $parameter;
1559 $parameter_name =~ s/\[.*//;
1560
3c308798 1561 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
b9d97328 1562 print ".IP \"" . $parameter . "\" 12\n";
1da177e4
LT
1563 output_highlight($args{'parameterdescs'}{$parameter_name});
1564 }
1565 foreach $section (@{$args{'sectionlist'}}) {
1566 print ".SH \"$section\"\n";
1567 output_highlight($args{'sections'}{$section});
1568 }
1569}
1570
1571##
1572# output typedef in man
1573sub output_typedef_man(%) {
1574 my %args = %{$_[0]};
1575 my ($parameter, $section);
1576
1577 print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n";
1578
1579 print ".SH NAME\n";
b9d97328 1580 print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n";
1da177e4
LT
1581
1582 foreach $section (@{$args{'sectionlist'}}) {
1583 print ".SH \"$section\"\n";
1584 output_highlight($args{'sections'}{$section});
1585 }
1586}
1587
b112e0f7 1588sub output_blockhead_man(%) {
1da177e4
LT
1589 my %args = %{$_[0]};
1590 my ($parameter, $section);
1591 my $count;
1592
1593 print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n";
1594
1595 foreach $section (@{$args{'sectionlist'}}) {
1596 print ".SH \"$section\"\n";
1597 output_highlight($args{'sections'}{$section});
1598 }
1599}
1600
1601##
1602# output in text
1603sub output_function_text(%) {
1604 my %args = %{$_[0]};
1605 my ($parameter, $section);
a21217da 1606 my $start;
1da177e4 1607
f47634b2 1608 print "Name:\n\n";
b9d97328 1609 print $args{'function'} . " - " . $args{'purpose'} . "\n";
f47634b2
RD
1610
1611 print "\nSynopsis:\n\n";
a21217da 1612 if ($args{'functiontype'} ne "") {
b9d97328 1613 $start = $args{'functiontype'} . " " . $args{'function'} . " (";
a21217da 1614 } else {
b9d97328 1615 $start = $args{'function'} . " (";
a21217da 1616 }
1da177e4 1617 print $start;
a21217da 1618
1da177e4
LT
1619 my $count = 0;
1620 foreach my $parameter (@{$args{'parameterlist'}}) {
1621 $type = $args{'parametertypes'}{$parameter};
1622 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1623 # pointer-to-function
b9d97328 1624 print $1 . $parameter . ") (" . $2;
1da177e4 1625 } else {
b9d97328 1626 print $type . " " . $parameter;
1da177e4
LT
1627 }
1628 if ($count != $#{$args{'parameterlist'}}) {
1629 $count++;
1630 print ",\n";
1631 print " " x length($start);
1632 } else {
1633 print ");\n\n";
1634 }
1635 }
1636
1637 print "Arguments:\n\n";
1638 foreach $parameter (@{$args{'parameterlist'}}) {
1639 my $parameter_name = $parameter;
1640 $parameter_name =~ s/\[.*//;
1641
b9d97328 1642 print $parameter . "\n\t" . $args{'parameterdescs'}{$parameter_name} . "\n";
1da177e4
LT
1643 }
1644 output_section_text(@_);
1645}
1646
1647#output sections in text
1648sub output_section_text(%) {
1649 my %args = %{$_[0]};
1650 my $section;
1651
1652 print "\n";
1653 foreach $section (@{$args{'sectionlist'}}) {
1654 print "$section:\n\n";
1655 output_highlight($args{'sections'}{$section});
3c3b809e 1656 }
1da177e4
LT
1657 print "\n\n";
1658}
1659
1660# output enum in text
1661sub output_enum_text(%) {
1662 my %args = %{$_[0]};
1663 my ($parameter);
1664 my $count;
1665 print "Enum:\n\n";
1666
b9d97328
RD
1667 print "enum " . $args{'enum'} . " - " . $args{'purpose'} . "\n\n";
1668 print "enum " . $args{'enum'} . " {\n";
1da177e4
LT
1669 $count = 0;
1670 foreach $parameter (@{$args{'parameterlist'}}) {
3c308798 1671 print "\t$parameter";
1da177e4
LT
1672 if ($count != $#{$args{'parameterlist'}}) {
1673 $count++;
1674 print ",";
1675 }
1676 print "\n";
1677 }
1678 print "};\n\n";
1679
1680 print "Constants:\n\n";
1681 foreach $parameter (@{$args{'parameterlist'}}) {
1682 print "$parameter\n\t";
b9d97328 1683 print $args{'parameterdescs'}{$parameter} . "\n";
1da177e4
LT
1684 }
1685
1686 output_section_text(@_);
1687}
1688
1689# output typedef in text
1690sub output_typedef_text(%) {
1691 my %args = %{$_[0]};
1692 my ($parameter);
1693 my $count;
1694 print "Typedef:\n\n";
1695
b9d97328 1696 print "typedef " . $args{'typedef'} . " - " . $args{'purpose'} . "\n";
1da177e4
LT
1697 output_section_text(@_);
1698}
1699
1700# output struct as text
1701sub output_struct_text(%) {
1702 my %args = %{$_[0]};
1703 my ($parameter);
1704
b9d97328
RD
1705 print $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "\n\n";
1706 print $args{'type'} . " " . $args{'struct'} . " {\n";
1da177e4
LT
1707 foreach $parameter (@{$args{'parameterlist'}}) {
1708 if ($parameter =~ /^#/) {
1709 print "$parameter\n";
1710 next;
1711 }
1712
1713 my $parameter_name = $parameter;
1714 $parameter_name =~ s/\[.*//;
1715
3c308798 1716 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1da177e4
LT
1717 $type = $args{'parametertypes'}{$parameter};
1718 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1719 # pointer-to-function
1720 print "\t$1 $parameter) ($2);\n";
1721 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
51f5a0c8 1722 # bitfield
1da177e4
LT
1723 print "\t$1 $parameter$2;\n";
1724 } else {
b9d97328 1725 print "\t" . $type . " " . $parameter . ";\n";
1da177e4
LT
1726 }
1727 }
1728 print "};\n\n";
1729
1730 print "Members:\n\n";
1731 foreach $parameter (@{$args{'parameterlist'}}) {
1732 ($parameter =~ /^#/) && next;
1733
1734 my $parameter_name = $parameter;
1735 $parameter_name =~ s/\[.*//;
1736
3c308798 1737 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1da177e4 1738 print "$parameter\n\t";
b9d97328 1739 print $args{'parameterdescs'}{$parameter_name} . "\n";
1da177e4
LT
1740 }
1741 print "\n";
1742 output_section_text(@_);
1743}
1744
b112e0f7 1745sub output_blockhead_text(%) {
1da177e4
LT
1746 my %args = %{$_[0]};
1747 my ($parameter, $section);
1748
1749 foreach $section (@{$args{'sectionlist'}}) {
1750 print " $section:\n";
1751 print " -> ";
1752 output_highlight($args{'sections'}{$section});
1753 }
1754}
1755
c0d1b6ee
JC
1756##
1757# output in restructured text
1758#
1759
1760#
1761# This could use some work; it's used to output the DOC: sections, and
1762# starts by putting out the name of the doc section itself, but that tends
1763# to duplicate a header already in the template file.
1764#
1765sub output_blockhead_rst(%) {
1766 my %args = %{$_[0]};
1767 my ($parameter, $section);
1768
1769 foreach $section (@{$args{'sectionlist'}}) {
9e72184b
JN
1770 if ($output_selection != OUTPUT_INCLUDE) {
1771 print "**$section**\n\n";
1772 }
c0d1b6ee
JC
1773 output_highlight_rst($args{'sections'}{$section});
1774 print "\n";
1775 }
1776}
1777
1778sub output_highlight_rst {
1779 my $contents = join "\n",@_;
1780 my $line;
1781
1782 # undo the evil effects of xml_escape() earlier
1783 $contents = xml_unescape($contents);
1784
1785 eval $dohighlight;
1786 die $@ if $@;
1787
1788 foreach $line (split "\n", $contents) {
1789 if ($line eq "") {
1790 print $lineprefix, $blankline;
1791 } else {
c0d1b6ee
JC
1792 print $lineprefix, $line;
1793 }
1794 print "\n";
1795 }
1796}
1797
1798sub output_function_rst(%) {
1799 my %args = %{$_[0]};
1800 my ($parameter, $section);
c099ff69 1801 my $oldprefix = $lineprefix;
c0d1b6ee
JC
1802 my $start;
1803
1804 print ".. c:function:: ";
1805 if ($args{'functiontype'} ne "") {
1806 $start = $args{'functiontype'} . " " . $args{'function'} . " (";
1807 } else {
1808 $start = $args{'function'} . " (";
1809 }
1810 print $start;
1811
1812 my $count = 0;
1813 foreach my $parameter (@{$args{'parameterlist'}}) {
1814 if ($count ne 0) {
1815 print ", ";
1816 }
1817 $count++;
1818 $type = $args{'parametertypes'}{$parameter};
1819 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1820 # pointer-to-function
1821 print $1 . $parameter . ") (" . $2;
1822 } else {
1823 print $type . " " . $parameter;
1824 }
1825 }
c099ff69
JN
1826 print ")\n\n";
1827 $lineprefix = " ";
1828 output_highlight_rst($args{'purpose'});
1829 print "\n";
c0d1b6ee
JC
1830
1831 print ":Parameters:\n\n";
c099ff69 1832 $lineprefix = " ";
c0d1b6ee
JC
1833 foreach $parameter (@{$args{'parameterlist'}}) {
1834 my $parameter_name = $parameter;
1835 #$parameter_name =~ s/\[.*//;
1836 $type = $args{'parametertypes'}{$parameter};
1837
1838 if ($type ne "") {
1839 print " ``$type $parameter``\n";
1840 } else {
1841 print " ``$parameter``\n";
1842 }
5e64fa9c
JN
1843 if (defined($args{'parameterdescs'}{$parameter_name}) &&
1844 $args{'parameterdescs'}{$parameter_name} ne $undescribed) {
c0d1b6ee 1845 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
c0d1b6ee
JC
1846 } else {
1847 print "\n _undescribed_\n";
1848 }
1849 print "\n";
1850 }
c099ff69
JN
1851
1852 $lineprefix = $oldprefix;
c0d1b6ee
JC
1853 output_section_rst(@_);
1854}
1855
1856sub output_section_rst(%) {
1857 my %args = %{$_[0]};
1858 my $section;
1859 my $oldprefix = $lineprefix;
1860 $lineprefix = " ";
1861
1862 foreach $section (@{$args{'sectionlist'}}) {
1863 print ":$section:\n\n";
1864 output_highlight_rst($args{'sections'}{$section});
1865 print "\n";
1866 }
1867 print "\n";
1868 $lineprefix = $oldprefix;
1869}
1870
1871sub output_enum_rst(%) {
1872 my %args = %{$_[0]};
1873 my ($parameter);
c099ff69 1874 my $oldprefix = $lineprefix;
c0d1b6ee 1875 my $count;
c0d1b6ee 1876 my $name = "enum " . $args{'enum'};
62850976
JN
1877
1878 print "\n\n.. c:type:: " . $name . "\n\n";
c099ff69
JN
1879 $lineprefix = " ";
1880 output_highlight_rst($args{'purpose'});
1881 print "\n";
c0d1b6ee
JC
1882
1883 print "..\n\n:Constants:\n\n";
c0d1b6ee
JC
1884 $lineprefix = " ";
1885 foreach $parameter (@{$args{'parameterlist'}}) {
1886 print " `$parameter`\n";
1887 if ($args{'parameterdescs'}{$parameter} ne $undescribed) {
1888 output_highlight_rst($args{'parameterdescs'}{$parameter});
1889 } else {
1890 print " undescribed\n";
1891 }
1892 print "\n";
1893 }
c099ff69 1894
c0d1b6ee
JC
1895 $lineprefix = $oldprefix;
1896 output_section_rst(@_);
1897}
1898
1899sub output_typedef_rst(%) {
1900 my %args = %{$_[0]};
1901 my ($parameter);
c099ff69 1902 my $oldprefix = $lineprefix;
c0d1b6ee
JC
1903 my $name = "typedef " . $args{'typedef'};
1904
62850976
JN
1905 ### FIXME: should the name below contain "typedef" or not?
1906 print "\n\n.. c:type:: " . $name . "\n\n";
c099ff69
JN
1907 $lineprefix = " ";
1908 output_highlight_rst($args{'purpose'});
1909 print "\n";
c0d1b6ee 1910
c099ff69 1911 $lineprefix = $oldprefix;
c0d1b6ee
JC
1912 output_section_rst(@_);
1913}
1914
1915sub output_struct_rst(%) {
1916 my %args = %{$_[0]};
1917 my ($parameter);
c099ff69 1918 my $oldprefix = $lineprefix;
c0d1b6ee
JC
1919 my $name = $args{'type'} . " " . $args{'struct'};
1920
62850976 1921 print "\n\n.. c:type:: " . $name . "\n\n";
c099ff69
JN
1922 $lineprefix = " ";
1923 output_highlight_rst($args{'purpose'});
1924 print "\n";
c0d1b6ee
JC
1925
1926 print ":Definition:\n\n";
1927 print " ::\n\n";
1928 print " " . $args{'type'} . " " . $args{'struct'} . " {\n";
1929 foreach $parameter (@{$args{'parameterlist'}}) {
1930 if ($parameter =~ /^#/) {
1931 print " " . "$parameter\n";
1932 next;
1933 }
1934
1935 my $parameter_name = $parameter;
1936 $parameter_name =~ s/\[.*//;
1937
1938 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1939 $type = $args{'parametertypes'}{$parameter};
1940 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1941 # pointer-to-function
1942 print " $1 $parameter) ($2);\n";
1943 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
1944 # bitfield
1945 print " $1 $parameter$2;\n";
1946 } else {
1947 print " " . $type . " " . $parameter . ";\n";
1948 }
1949 }
1950 print " };\n\n";
1951
1952 print ":Members:\n\n";
c099ff69 1953 $lineprefix = " ";
c0d1b6ee
JC
1954 foreach $parameter (@{$args{'parameterlist'}}) {
1955 ($parameter =~ /^#/) && next;
1956
1957 my $parameter_name = $parameter;
1958 $parameter_name =~ s/\[.*//;
1959
1960 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1961 $type = $args{'parametertypes'}{$parameter};
1962 print " `$type $parameter`" . "\n";
c0d1b6ee 1963 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
c0d1b6ee
JC
1964 print "\n";
1965 }
1966 print "\n";
c099ff69
JN
1967
1968 $lineprefix = $oldprefix;
c0d1b6ee
JC
1969 output_section_rst(@_);
1970}
1971
1972
eda603f6
JB
1973## list mode output functions
1974
1975sub output_function_list(%) {
1976 my %args = %{$_[0]};
1977
1978 print $args{'function'} . "\n";
1979}
1980
1981# output enum in list
1982sub output_enum_list(%) {
1983 my %args = %{$_[0]};
1984 print $args{'enum'} . "\n";
1985}
1986
1987# output typedef in list
1988sub output_typedef_list(%) {
1989 my %args = %{$_[0]};
1990 print $args{'typedef'} . "\n";
1991}
1992
1993# output struct as list
1994sub output_struct_list(%) {
1995 my %args = %{$_[0]};
1996
1997 print $args{'struct'} . "\n";
1998}
1999
2000sub output_blockhead_list(%) {
2001 my %args = %{$_[0]};
2002 my ($parameter, $section);
2003
2004 foreach $section (@{$args{'sectionlist'}}) {
2005 print "DOC: $section\n";
2006 }
2007}
2008
1da177e4 2009##
27205744
RD
2010# generic output function for all types (function, struct/union, typedef, enum);
2011# calls the generated, variable output_ function name based on
2012# functype and output_mode
1da177e4
LT
2013sub output_declaration {
2014 no strict 'refs';
2015 my $name = shift;
2016 my $functype = shift;
2017 my $func = "output_${functype}_$output_mode";
b6c3f456
JN
2018 if (($output_selection == OUTPUT_ALL) ||
2019 (($output_selection == OUTPUT_INCLUDE ||
2020 $output_selection == OUTPUT_EXPORTED) &&
2021 defined($function_table{$name})) ||
2022 (($output_selection == OUTPUT_EXCLUDE ||
2023 $output_selection == OUTPUT_INTERNAL) &&
2024 !($functype eq "function" && defined($function_table{$name}))))
1da177e4 2025 {
3c308798 2026 &$func(@_);
1da177e4
LT
2027 $section_counter++;
2028 }
2029}
2030
2031##
27205744 2032# generic output function - calls the right one based on current output mode.
b112e0f7 2033sub output_blockhead {
1da177e4 2034 no strict 'refs';
b9d97328 2035 my $func = "output_blockhead_" . $output_mode;
1da177e4
LT
2036 &$func(@_);
2037 $section_counter++;
2038}
2039
2040##
3c3b809e 2041# takes a declaration (struct, union, enum, typedef) and
1da177e4
LT
2042# invokes the right handler. NOT called for functions.
2043sub dump_declaration($$) {
2044 no strict 'refs';
2045 my ($prototype, $file) = @_;
b9d97328 2046 my $func = "dump_" . $decl_type;
1da177e4
LT
2047 &$func(@_);
2048}
2049
2050sub dump_union($$) {
2051 dump_struct(@_);
2052}
2053
2054sub dump_struct($$) {
2055 my $x = shift;
2056 my $file = shift;
a1d94aa5 2057 my $nested;
1da177e4 2058
52dc5aec
RD
2059 if ($x =~ /(struct|union)\s+(\w+)\s*{(.*)}/) {
2060 #my $decl_type = $1;
3c308798
RD
2061 $declaration_name = $2;
2062 my $members = $3;
1da177e4
LT
2063
2064 # ignore embedded structs or unions
a1d94aa5
RD
2065 $members =~ s/({.*})//g;
2066 $nested = $1;
1da177e4 2067
aeec46b9 2068 # ignore members marked private:
0d8c39e6
MCC
2069 $members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi;
2070 $members =~ s/\/\*\s*private:.*//gosi;
aeec46b9
MW
2071 # strip comments:
2072 $members =~ s/\/\*.*?\*\///gos;
a1d94aa5 2073 $nested =~ s/\/\*.*?\*\///gos;
d960eea9
RD
2074 # strip kmemcheck_bitfield_{begin,end}.*;
2075 $members =~ s/kmemcheck_bitfield_.*?;//gos;
ef5da59f 2076 # strip attributes
f0074929 2077 $members =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
7b990789 2078 $members =~ s/__aligned\s*\([^;]*\)//gos;
f0074929 2079 $members =~ s/\s*CRYPTO_MINALIGN_ATTR//gos;
b22b5a9e
CN
2080 # replace DECLARE_BITMAP
2081 $members =~ s/DECLARE_BITMAP\s*\(([^,)]+), ([^,)]+)\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos;
aeec46b9 2082
1da177e4 2083 create_parameterlist($members, ';', $file);
a1d94aa5 2084 check_sections($file, $declaration_name, "struct", $sectcheck, $struct_actual, $nested);
1da177e4
LT
2085
2086 output_declaration($declaration_name,
2087 'struct',
2088 {'struct' => $declaration_name,
2089 'module' => $modulename,
2090 'parameterlist' => \@parameterlist,
2091 'parameterdescs' => \%parameterdescs,
2092 'parametertypes' => \%parametertypes,
2093 'sectionlist' => \@sectionlist,
2094 'sections' => \%sections,
2095 'purpose' => $declaration_purpose,
2096 'type' => $decl_type
2097 });
2098 }
2099 else {
d40e1e65 2100 print STDERR "${file}:$.: error: Cannot parse struct or union!\n";
1da177e4
LT
2101 ++$errors;
2102 }
2103}
2104
2105sub dump_enum($$) {
2106 my $x = shift;
2107 my $file = shift;
2108
aeec46b9 2109 $x =~ s@/\*.*?\*/@@gos; # strip comments.
4468e21e
CN
2110 # strip #define macros inside enums
2111 $x =~ s@#\s*((define|ifdef)\s+|endif)[^;]*;@@gos;
b6d676db 2112
1da177e4 2113 if ($x =~ /enum\s+(\w+)\s*{(.*)}/) {
3c308798
RD
2114 $declaration_name = $1;
2115 my $members = $2;
1da177e4
LT
2116
2117 foreach my $arg (split ',', $members) {
2118 $arg =~ s/^\s*(\w+).*/$1/;
2119 push @parameterlist, $arg;
2120 if (!$parameterdescs{$arg}) {
3c308798 2121 $parameterdescs{$arg} = $undescribed;
d40e1e65 2122 print STDERR "${file}:$.: warning: Enum value '$arg' ".
1da177e4
LT
2123 "not described in enum '$declaration_name'\n";
2124 }
2125
2126 }
3c3b809e 2127
1da177e4
LT
2128 output_declaration($declaration_name,
2129 'enum',
2130 {'enum' => $declaration_name,
2131 'module' => $modulename,
2132 'parameterlist' => \@parameterlist,
2133 'parameterdescs' => \%parameterdescs,
2134 'sectionlist' => \@sectionlist,
2135 'sections' => \%sections,
2136 'purpose' => $declaration_purpose
2137 });
2138 }
2139 else {
d40e1e65 2140 print STDERR "${file}:$.: error: Cannot parse enum!\n";
1da177e4
LT
2141 ++$errors;
2142 }
2143}
2144
2145sub dump_typedef($$) {
2146 my $x = shift;
2147 my $file = shift;
2148
aeec46b9 2149 $x =~ s@/\*.*?\*/@@gos; # strip comments.
1da177e4 2150
83766452
MCC
2151 # Parse function prototypes
2152 if ($x =~ /typedef\s+(\w+)\s*\(\*\s*(\w\S+)\s*\)\s*\((.*)\);/) {
2153 # Function typedefs
2154 $return_type = $1;
2155 $declaration_name = $2;
2156 my $args = $3;
2157
2158 create_parameterlist($args, ',', $file);
1da177e4
LT
2159
2160 output_declaration($declaration_name,
83766452
MCC
2161 'function',
2162 {'function' => $declaration_name,
1da177e4 2163 'module' => $modulename,
83766452
MCC
2164 'functiontype' => $return_type,
2165 'parameterlist' => \@parameterlist,
2166 'parameterdescs' => \%parameterdescs,
2167 'parametertypes' => \%parametertypes,
1da177e4
LT
2168 'sectionlist' => \@sectionlist,
2169 'sections' => \%sections,
2170 'purpose' => $declaration_purpose
2171 });
83766452
MCC
2172 return;
2173 }
2174
2175 while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
2176 $x =~ s/\(*.\)\s*;$/;/;
2177 $x =~ s/\[*.\]\s*;$/;/;
1da177e4 2178 }
83766452
MCC
2179
2180 if ($x =~ /typedef.*\s+(\w+)\s*;/) {
3a80a766
MCC
2181 $declaration_name = $1;
2182
2183 output_declaration($declaration_name,
2184 'typedef',
2185 {'typedef' => $declaration_name,
2186 'module' => $modulename,
2187 'sectionlist' => \@sectionlist,
2188 'sections' => \%sections,
2189 'purpose' => $declaration_purpose
2190 });
2191 }
1da177e4 2192 else {
d40e1e65 2193 print STDERR "${file}:$.: error: Cannot parse typedef!\n";
1da177e4
LT
2194 ++$errors;
2195 }
2196}
2197
a1d94aa5
RD
2198sub save_struct_actual($) {
2199 my $actual = shift;
2200
2201 # strip all spaces from the actual param so that it looks like one string item
2202 $actual =~ s/\s*//g;
2203 $struct_actual = $struct_actual . $actual . " ";
2204}
2205
1da177e4
LT
2206sub create_parameterlist($$$) {
2207 my $args = shift;
2208 my $splitter = shift;
2209 my $file = shift;
2210 my $type;
2211 my $param;
2212
a6d3fe77 2213 # temporarily replace commas inside function pointer definition
1da177e4 2214 while ($args =~ /(\([^\),]+),/) {
3c308798 2215 $args =~ s/(\([^\),]+),/$1#/g;
1da177e4 2216 }
3c3b809e 2217
1da177e4
LT
2218 foreach my $arg (split($splitter, $args)) {
2219 # strip comments
2220 $arg =~ s/\/\*.*\*\///;
3c308798
RD
2221 # strip leading/trailing spaces
2222 $arg =~ s/^\s*//;
1da177e4
LT
2223 $arg =~ s/\s*$//;
2224 $arg =~ s/\s+/ /;
2225
2226 if ($arg =~ /^#/) {
2227 # Treat preprocessor directive as a typeless variable just to fill
2228 # corresponding data structures "correctly". Catch it later in
2229 # output_* subs.
2230 push_parameter($arg, "", $file);
00d62961 2231 } elsif ($arg =~ m/\(.+\)\s*\(/) {
1da177e4
LT
2232 # pointer-to-function
2233 $arg =~ tr/#/,/;
00d62961 2234 $arg =~ m/[^\(]+\(\*?\s*(\w*)\s*\)/;
1da177e4
LT
2235 $param = $1;
2236 $type = $arg;
00d62961 2237 $type =~ s/([^\(]+\(\*?)\s*$param/$1/;
a1d94aa5 2238 save_struct_actual($param);
1da177e4 2239 push_parameter($param, $type, $file);
aeec46b9 2240 } elsif ($arg) {
1da177e4
LT
2241 $arg =~ s/\s*:\s*/:/g;
2242 $arg =~ s/\s*\[/\[/g;
2243
2244 my @args = split('\s*,\s*', $arg);
2245 if ($args[0] =~ m/\*/) {
2246 $args[0] =~ s/(\*+)\s*/ $1/;
2247 }
884f2810
BP
2248
2249 my @first_arg;
2250 if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) {
2251 shift @args;
2252 push(@first_arg, split('\s+', $1));
2253 push(@first_arg, $2);
2254 } else {
2255 @first_arg = split('\s+', shift @args);
2256 }
2257
1da177e4
LT
2258 unshift(@args, pop @first_arg);
2259 $type = join " ", @first_arg;
2260
2261 foreach $param (@args) {
2262 if ($param =~ m/^(\*+)\s*(.*)/) {
a1d94aa5 2263 save_struct_actual($2);
1da177e4
LT
2264 push_parameter($2, "$type $1", $file);
2265 }
2266 elsif ($param =~ m/(.*?):(\d+)/) {
7b97887e 2267 if ($type ne "") { # skip unnamed bit-fields
a1d94aa5 2268 save_struct_actual($1);
7b97887e
RD
2269 push_parameter($1, "$type:$2", $file)
2270 }
1da177e4
LT
2271 }
2272 else {
a1d94aa5 2273 save_struct_actual($param);
1da177e4
LT
2274 push_parameter($param, $type, $file);
2275 }
2276 }
2277 }
2278 }
2279}
2280
2281sub push_parameter($$$) {
2282 my $param = shift;
2283 my $type = shift;
2284 my $file = shift;
2285
5f8c7c98
RD
2286 if (($anon_struct_union == 1) && ($type eq "") &&
2287 ($param eq "}")) {
2288 return; # ignore the ending }; from anon. struct/union
2289 }
2290
2291 $anon_struct_union = 0;
1da177e4
LT
2292 my $param_name = $param;
2293 $param_name =~ s/\[.*//;
2294
a6d3fe77 2295 if ($type eq "" && $param =~ /\.\.\.$/)
1da177e4 2296 {
ced69090
RD
2297 if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") {
2298 $parameterdescs{$param} = "variable arguments";
2299 }
1da177e4
LT
2300 }
2301 elsif ($type eq "" && ($param eq "" or $param eq "void"))
2302 {
1da177e4
LT
2303 $param="void";
2304 $parameterdescs{void} = "no arguments";
2305 }
134fe01b
RD
2306 elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
2307 # handle unnamed (anonymous) union or struct:
2308 {
2309 $type = $param;
5f8c7c98 2310 $param = "{unnamed_" . $param . "}";
134fe01b 2311 $parameterdescs{$param} = "anonymous\n";
5f8c7c98 2312 $anon_struct_union = 1;
134fe01b
RD
2313 }
2314
a6d3fe77 2315 # warn if parameter has no description
134fe01b
RD
2316 # (but ignore ones starting with # as these are not parameters
2317 # but inline preprocessor statements);
2318 # also ignore unnamed structs/unions;
5f8c7c98 2319 if (!$anon_struct_union) {
a6d3fe77
MW
2320 if (!defined $parameterdescs{$param_name} && $param_name !~ /^#/) {
2321
1da177e4
LT
2322 $parameterdescs{$param_name} = $undescribed;
2323
2324 if (($type eq 'function') || ($type eq 'enum')) {
d40e1e65 2325 print STDERR "${file}:$.: warning: Function parameter ".
1da177e4
LT
2326 "or member '$param' not " .
2327 "described in '$declaration_name'\n";
2328 }
d40e1e65 2329 print STDERR "${file}:$.: warning:" .
3c308798 2330 " No description found for parameter '$param'\n";
1da177e4 2331 ++$warnings;
3c308798
RD
2332 }
2333 }
1da177e4 2334
2b35f4d9
RD
2335 $param = xml_escape($param);
2336
25985edc 2337 # strip spaces from $param so that it is one continuous string
e34e7dbb
RD
2338 # on @parameterlist;
2339 # this fixes a problem where check_sections() cannot find
2340 # a parameter like "addr[6 + 2]" because it actually appears
2341 # as "addr[6", "+", "2]" on the parameter list;
2342 # but it's better to maintain the param string unchanged for output,
2343 # so just weaken the string compare in check_sections() to ignore
2344 # "[blah" in a parameter string;
2345 ###$param =~ s/\s*//g;
1da177e4
LT
2346 push @parameterlist, $param;
2347 $parametertypes{$param} = $type;
2348}
2349
a1d94aa5
RD
2350sub check_sections($$$$$$) {
2351 my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck, $nested) = @_;
2352 my @sects = split ' ', $sectcheck;
2353 my @prms = split ' ', $prmscheck;
2354 my $err;
2355 my ($px, $sx);
2356 my $prm_clean; # strip trailing "[array size]" and/or beginning "*"
2357
2358 foreach $sx (0 .. $#sects) {
2359 $err = 1;
2360 foreach $px (0 .. $#prms) {
2361 $prm_clean = $prms[$px];
2362 $prm_clean =~ s/\[.*\]//;
1f3a6688 2363 $prm_clean =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
e34e7dbb
RD
2364 # ignore array size in a parameter string;
2365 # however, the original param string may contain
2366 # spaces, e.g.: addr[6 + 2]
2367 # and this appears in @prms as "addr[6" since the
2368 # parameter list is split at spaces;
2369 # hence just ignore "[..." for the sections check;
2370 $prm_clean =~ s/\[.*//;
2371
a1d94aa5
RD
2372 ##$prm_clean =~ s/^\**//;
2373 if ($prm_clean eq $sects[$sx]) {
2374 $err = 0;
2375 last;
2376 }
2377 }
2378 if ($err) {
2379 if ($decl_type eq "function") {
d40e1e65 2380 print STDERR "${file}:$.: warning: " .
a1d94aa5
RD
2381 "Excess function parameter " .
2382 "'$sects[$sx]' " .
2383 "description in '$decl_name'\n";
2384 ++$warnings;
2385 } else {
2386 if ($nested !~ m/\Q$sects[$sx]\E/) {
d40e1e65 2387 print STDERR "${file}:$.: warning: " .
a1d94aa5
RD
2388 "Excess struct/union/enum/typedef member " .
2389 "'$sects[$sx]' " .
2390 "description in '$decl_name'\n";
2391 ++$warnings;
2392 }
2393 }
2394 }
2395 }
2396}
2397
4092bac7
YB
2398##
2399# Checks the section describing the return value of a function.
2400sub check_return_section {
2401 my $file = shift;
2402 my $declaration_name = shift;
2403 my $return_type = shift;
2404
2405 # Ignore an empty return type (It's a macro)
2406 # Ignore functions with a "void" return type. (But don't ignore "void *")
2407 if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) {
2408 return;
2409 }
2410
2411 if (!defined($sections{$section_return}) ||
2412 $sections{$section_return} eq "") {
d40e1e65 2413 print STDERR "${file}:$.: warning: " .
4092bac7
YB
2414 "No description found for return value of " .
2415 "'$declaration_name'\n";
2416 ++$warnings;
2417 }
2418}
2419
1da177e4
LT
2420##
2421# takes a function prototype and the name of the current file being
2422# processed and spits out all the details stored in the global
2423# arrays/hashes.
2424sub dump_function($$) {
2425 my $prototype = shift;
2426 my $file = shift;
cbb4d3e6 2427 my $noret = 0;
1da177e4
LT
2428
2429 $prototype =~ s/^static +//;
2430 $prototype =~ s/^extern +//;
4dc3b16b 2431 $prototype =~ s/^asmlinkage +//;
1da177e4
LT
2432 $prototype =~ s/^inline +//;
2433 $prototype =~ s/^__inline__ +//;
32e79401
RD
2434 $prototype =~ s/^__inline +//;
2435 $prototype =~ s/^__always_inline +//;
2436 $prototype =~ s/^noinline +//;
74fc5c65 2437 $prototype =~ s/__init +//;
20072205 2438 $prototype =~ s/__init_or_module +//;
270a0096 2439 $prototype =~ s/__meminit +//;
70c95b00 2440 $prototype =~ s/__must_check +//;
0df7c0e3 2441 $prototype =~ s/__weak +//;
cbb4d3e6 2442 my $define = $prototype =~ s/^#\s*define\s+//; #ak added
328d2440 2443 $prototype =~ s/__attribute__\s*\(\([a-z,]*\)\)//;
1da177e4
LT
2444
2445 # Yes, this truly is vile. We are looking for:
2446 # 1. Return type (may be nothing if we're looking at a macro)
2447 # 2. Function name
2448 # 3. Function parameters.
2449 #
2450 # All the while we have to watch out for function pointer parameters
2451 # (which IIRC is what the two sections are for), C types (these
2452 # regexps don't even start to express all the possibilities), and
2453 # so on.
2454 #
2455 # If you mess with these regexps, it's a good idea to check that
2456 # the following functions' documentation still comes out right:
2457 # - parport_register_device (function pointer parameters)
2458 # - atomic_set (macro)
9598f91f 2459 # - pci_match_device, __copy_to_user (long return type)
1da177e4 2460
cbb4d3e6
HG
2461 if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) {
2462 # This is an object-like macro, it has no return type and no parameter
2463 # list.
2464 # Function-like macros are not allowed to have spaces between
2465 # declaration_name and opening parenthesis (notice the \s+).
2466 $return_type = $1;
2467 $declaration_name = $2;
2468 $noret = 1;
2469 } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1da177e4
LT
2470 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2471 $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2472 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
94b3e03c 2473 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1da177e4
LT
2474 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2475 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2476 $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2477 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2478 $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2479 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2480 $prototype =~ m/^(\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2481 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
9598f91f
MW
2482 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2483 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
412ecd77
RD
2484 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2485 $prototype =~ m/^(\w+\s+\w+\s*\*\s*\w+\s*\*\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) {
1da177e4
LT
2486 $return_type = $1;
2487 $declaration_name = $2;
2488 my $args = $3;
2489
2490 create_parameterlist($args, ',', $file);
2491 } else {
d40e1e65 2492 print STDERR "${file}:$.: warning: cannot understand function prototype: '$prototype'\n";
1da177e4
LT
2493 return;
2494 }
2495
a1d94aa5
RD
2496 my $prms = join " ", @parameterlist;
2497 check_sections($file, $declaration_name, "function", $sectcheck, $prms, "");
2498
4092bac7
YB
2499 # This check emits a lot of warnings at the moment, because many
2500 # functions don't have a 'Return' doc section. So until the number
2501 # of warnings goes sufficiently down, the check is only performed in
2502 # verbose mode.
2503 # TODO: always perform the check.
cbb4d3e6 2504 if ($verbose && !$noret) {
4092bac7
YB
2505 check_return_section($file, $declaration_name, $return_type);
2506 }
2507
3c3b809e 2508 output_declaration($declaration_name,
1da177e4
LT
2509 'function',
2510 {'function' => $declaration_name,
2511 'module' => $modulename,
2512 'functiontype' => $return_type,
2513 'parameterlist' => \@parameterlist,
2514 'parameterdescs' => \%parameterdescs,
2515 'parametertypes' => \%parametertypes,
2516 'sectionlist' => \@sectionlist,
2517 'sections' => \%sections,
2518 'purpose' => $declaration_purpose
2519 });
2520}
2521
1da177e4
LT
2522sub reset_state {
2523 $function = "";
1da177e4
LT
2524 %parameterdescs = ();
2525 %parametertypes = ();
2526 @parameterlist = ();
2527 %sections = ();
2528 @sectionlist = ();
a1d94aa5
RD
2529 $sectcheck = "";
2530 $struct_actual = "";
1da177e4 2531 $prototype = "";
3c3b809e 2532
48af606a
JN
2533 $state = STATE_NORMAL;
2534 $inline_doc_state = STATE_INLINE_NA;
1da177e4
LT
2535}
2536
56afb0f8
JB
2537sub tracepoint_munge($) {
2538 my $file = shift;
2539 my $tracepointname = 0;
2540 my $tracepointargs = 0;
2541
3a9089fd 2542 if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
56afb0f8
JB
2543 $tracepointname = $1;
2544 }
3a9089fd
JB
2545 if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
2546 $tracepointname = $1;
2547 }
2548 if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
2549 $tracepointname = $2;
2550 }
2551 $tracepointname =~ s/^\s+//; #strip leading whitespace
2552 if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
56afb0f8
JB
2553 $tracepointargs = $1;
2554 }
2555 if (($tracepointname eq 0) || ($tracepointargs eq 0)) {
d40e1e65 2556 print STDERR "${file}:$.: warning: Unrecognized tracepoint format: \n".
56afb0f8
JB
2557 "$prototype\n";
2558 } else {
2559 $prototype = "static inline void trace_$tracepointname($tracepointargs)";
2560 }
2561}
2562
b4870bc5
RD
2563sub syscall_munge() {
2564 my $void = 0;
2565
2566 $prototype =~ s@[\r\n\t]+@ @gos; # strip newlines/CR's/tabs
2567## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
2568 if ($prototype =~ m/SYSCALL_DEFINE0/) {
2569 $void = 1;
2570## $prototype = "long sys_$1(void)";
2571 }
2572
2573 $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
2574 if ($prototype =~ m/long (sys_.*?),/) {
2575 $prototype =~ s/,/\(/;
2576 } elsif ($void) {
2577 $prototype =~ s/\)/\(void\)/;
2578 }
2579
2580 # now delete all of the odd-number commas in $prototype
2581 # so that arg types & arg names don't have a comma between them
2582 my $count = 0;
2583 my $len = length($prototype);
2584 if ($void) {
2585 $len = 0; # skip the for-loop
2586 }
2587 for (my $ix = 0; $ix < $len; $ix++) {
2588 if (substr($prototype, $ix, 1) eq ',') {
2589 $count++;
2590 if ($count % 2 == 1) {
2591 substr($prototype, $ix, 1) = ' ';
2592 }
2593 }
2594 }
2595}
2596
3c3b809e 2597sub process_state3_function($$) {
1da177e4
LT
2598 my $x = shift;
2599 my $file = shift;
2600
51f5a0c8
RD
2601 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
2602
890c78c2 2603 if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) {
1da177e4
LT
2604 # do nothing
2605 }
2606 elsif ($x =~ /([^\{]*)/) {
3c308798 2607 $prototype .= $1;
1da177e4 2608 }
b4870bc5 2609
890c78c2 2610 if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) {
3c308798 2611 $prototype =~ s@/\*.*?\*/@@gos; # strip comments.
1da177e4
LT
2612 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
2613 $prototype =~ s@^\s+@@gos; # strip leading spaces
b4870bc5
RD
2614 if ($prototype =~ /SYSCALL_DEFINE/) {
2615 syscall_munge();
2616 }
3a9089fd
JB
2617 if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
2618 $prototype =~ /DEFINE_SINGLE_EVENT/)
2619 {
56afb0f8
JB
2620 tracepoint_munge($file);
2621 }
b4870bc5 2622 dump_function($prototype, $file);
1da177e4
LT
2623 reset_state();
2624 }
2625}
2626
3c3b809e 2627sub process_state3_type($$) {
1da177e4
LT
2628 my $x = shift;
2629 my $file = shift;
2630
1da177e4
LT
2631 $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
2632 $x =~ s@^\s+@@gos; # strip leading spaces
2633 $x =~ s@\s+$@@gos; # strip trailing spaces
51f5a0c8
RD
2634 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
2635
1da177e4
LT
2636 if ($x =~ /^#/) {
2637 # To distinguish preprocessor directive from regular declaration later.
2638 $x .= ";";
2639 }
2640
2641 while (1) {
3c308798 2642 if ( $x =~ /([^{};]*)([{};])(.*)/ ) {
1da177e4
LT
2643 $prototype .= $1 . $2;
2644 ($2 eq '{') && $brcount++;
2645 ($2 eq '}') && $brcount--;
2646 if (($2 eq ';') && ($brcount == 0)) {
b9d97328 2647 dump_declaration($prototype, $file);
1da177e4 2648 reset_state();
3c308798 2649 last;
1da177e4
LT
2650 }
2651 $x = $3;
3c308798 2652 } else {
1da177e4
LT
2653 $prototype .= $x;
2654 last;
2655 }
2656 }
2657}
2658
6b5b55f6
RD
2659# xml_escape: replace <, >, and & in the text stream;
2660#
2661# however, formatting controls that are generated internally/locally in the
2662# kernel-doc script are not escaped here; instead, they begin life like
2663# $blankline_html (4 of '\' followed by a mnemonic + ':'), then these strings
2664# are converted to their mnemonic-expected output, without the 4 * '\' & ':',
2665# just before actual output; (this is done by local_unescape())
1da177e4
LT
2666sub xml_escape($) {
2667 my $text = shift;
ecfb251a
RD
2668 if (($output_mode eq "text") || ($output_mode eq "man")) {
2669 return $text;
2670 }
1da177e4
LT
2671 $text =~ s/\&/\\\\\\amp;/g;
2672 $text =~ s/\</\\\\\\lt;/g;
2673 $text =~ s/\>/\\\\\\gt;/g;
2674 return $text;
2675}
2676
c0d1b6ee
JC
2677# xml_unescape: reverse the effects of xml_escape
2678sub xml_unescape($) {
2679 my $text = shift;
2680 if (($output_mode eq "text") || ($output_mode eq "man")) {
2681 return $text;
2682 }
2683 $text =~ s/\\\\\\amp;/\&/g;
2684 $text =~ s/\\\\\\lt;/</g;
2685 $text =~ s/\\\\\\gt;/>/g;
2686 return $text;
2687}
2688
6b5b55f6
RD
2689# convert local escape strings to html
2690# local escape strings look like: '\\\\menmonic:' (that's 4 backslashes)
2691sub local_unescape($) {
2692 my $text = shift;
2693 if (($output_mode eq "text") || ($output_mode eq "man")) {
2694 return $text;
2695 }
2696 $text =~ s/\\\\\\\\lt:/</g;
2697 $text =~ s/\\\\\\\\gt:/>/g;
2698 return $text;
2699}
2700
1da177e4 2701sub process_file($) {
2283a117 2702 my $file;
1da177e4
LT
2703 my $identifier;
2704 my $func;
a21217da 2705 my $descr;
6423133b 2706 my $in_purpose = 0;
1da177e4 2707 my $initial_section_counter = $section_counter;
68f86662 2708 my ($orig_file) = @_;
1da177e4 2709
2283a117 2710 if (defined($ENV{'SRCTREE'})) {
68f86662 2711 $file = "$ENV{'SRCTREE'}" . "/" . $orig_file;
2283a117
RD
2712 }
2713 else {
68f86662 2714 $file = $orig_file;
2283a117 2715 }
1da177e4
LT
2716 if (defined($source_map{$file})) {
2717 $file = $source_map{$file};
2718 }
2719
2720 if (!open(IN,"<$file")) {
2721 print STDERR "Error: Cannot open file $file\n";
2722 ++$errors;
2723 return;
2724 }
2725
86ae2e38 2726 # two passes for -export and -internal
b6c3f456
JN
2727 if ($output_selection == OUTPUT_EXPORTED ||
2728 $output_selection == OUTPUT_INTERNAL) {
86ae2e38
JN
2729 while (<IN>) {
2730 if (/$export_symbol/o) {
2731 $function_table{$2} = 1;
2732 }
2733 }
2734 seek(IN, 0, 0);
2735 }
2736
a9e7314b
ID
2737 $. = 1;
2738
1da177e4
LT
2739 $section_counter = 0;
2740 while (<IN>) {
65478428
DS
2741 while (s/\\\s*$//) {
2742 $_ .= <IN>;
2743 }
48af606a 2744 if ($state == STATE_NORMAL) {
1da177e4 2745 if (/$doc_start/o) {
48af606a 2746 $state = STATE_NAME; # next line is always the function name
850622df 2747 $in_doc_sect = 0;
1da177e4 2748 }
48af606a 2749 } elsif ($state == STATE_NAME) {# this line is the function name (always)
1da177e4 2750 if (/$doc_block/o) {
48af606a 2751 $state = STATE_DOCBLOCK;
1da177e4
LT
2752 $contents = "";
2753 if ( $1 eq "" ) {
2754 $section = $section_intro;
2755 } else {
2756 $section = $1;
2757 }
3c308798 2758 }
1da177e4
LT
2759 elsif (/$doc_decl/o) {
2760 $identifier = $1;
2761 if (/\s*([\w\s]+?)\s*-/) {
2762 $identifier = $1;
2763 }
2764
48af606a 2765 $state = STATE_FIELD;
1da177e4 2766 if (/-(.*)/) {
51f5a0c8 2767 # strip leading/trailing/multiple spaces
a21217da
RD
2768 $descr= $1;
2769 $descr =~ s/^\s*//;
2770 $descr =~ s/\s*$//;
12ae6779 2771 $descr =~ s/\s+/ /g;
a21217da 2772 $declaration_purpose = xml_escape($descr);
6423133b 2773 $in_purpose = 1;
1da177e4
LT
2774 } else {
2775 $declaration_purpose = "";
2776 }
77cc23b8
RD
2777
2778 if (($declaration_purpose eq "") && $verbose) {
d40e1e65 2779 print STDERR "${file}:$.: warning: missing initial short description on line:\n";
77cc23b8
RD
2780 print STDERR $_;
2781 ++$warnings;
2782 }
2783
1da177e4
LT
2784 if ($identifier =~ m/^struct/) {
2785 $decl_type = 'struct';
2786 } elsif ($identifier =~ m/^union/) {
2787 $decl_type = 'union';
2788 } elsif ($identifier =~ m/^enum/) {
2789 $decl_type = 'enum';
2790 } elsif ($identifier =~ m/^typedef/) {
2791 $decl_type = 'typedef';
2792 } else {
2793 $decl_type = 'function';
2794 }
2795
2796 if ($verbose) {
d40e1e65 2797 print STDERR "${file}:$.: info: Scanning doc for $identifier\n";
1da177e4
LT
2798 }
2799 } else {
d40e1e65 2800 print STDERR "${file}:$.: warning: Cannot understand $_ on line $.",
1da177e4
LT
2801 " - I thought it was a doc line\n";
2802 ++$warnings;
48af606a 2803 $state = STATE_NORMAL;
1da177e4 2804 }
48af606a 2805 } elsif ($state == STATE_FIELD) { # look for head: lines, and include content
1da177e4
LT
2806 if (/$doc_sect/o) {
2807 $newsection = $1;
2808 $newcontents = $2;
2809
792aa2f2 2810 if (($contents ne "") && ($contents ne "\n")) {
850622df 2811 if (!$in_doc_sect && $verbose) {
d40e1e65 2812 print STDERR "${file}:$.: warning: contents before sections\n";
850622df
RD
2813 ++$warnings;
2814 }
94dc7ad5 2815 dump_section($file, $section, xml_escape($contents));
1da177e4
LT
2816 $section = $section_default;
2817 }
2818
850622df 2819 $in_doc_sect = 1;
6423133b 2820 $in_purpose = 0;
1da177e4
LT
2821 $contents = $newcontents;
2822 if ($contents ne "") {
27205744
RD
2823 while ((substr($contents, 0, 1) eq " ") ||
2824 substr($contents, 0, 1) eq "\t") {
2825 $contents = substr($contents, 1);
05189497 2826 }
1da177e4
LT
2827 $contents .= "\n";
2828 }
2829 $section = $newsection;
2830 } elsif (/$doc_end/) {
4c98ecaf 2831 if (($contents ne "") && ($contents ne "\n")) {
94dc7ad5 2832 dump_section($file, $section, xml_escape($contents));
1da177e4
LT
2833 $section = $section_default;
2834 $contents = "";
2835 }
46b958eb
RD
2836 # look for doc_com + <text> + doc_end:
2837 if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') {
d40e1e65 2838 print STDERR "${file}:$.: warning: suspicious ending line: $_";
46b958eb
RD
2839 ++$warnings;
2840 }
1da177e4
LT
2841
2842 $prototype = "";
48af606a 2843 $state = STATE_PROTO;
1da177e4 2844 $brcount = 0;
232acbcf 2845# print STDERR "end of doc comment, looking for prototype\n";
1da177e4
LT
2846 } elsif (/$doc_content/) {
2847 # miguel-style comment kludge, look for blank lines after
2848 # @parameter line to signify start of description
6423133b
JW
2849 if ($1 eq "") {
2850 if ($section =~ m/^@/ || $section eq $section_context) {
2851 dump_section($file, $section, xml_escape($contents));
2852 $section = $section_default;
2853 $contents = "";
2854 } else {
2855 $contents .= "\n";
2856 }
2857 $in_purpose = 0;
2858 } elsif ($in_purpose == 1) {
2859 # Continued declaration purpose
2860 chomp($declaration_purpose);
2861 $declaration_purpose .= " " . xml_escape($1);
12ae6779 2862 $declaration_purpose =~ s/\s+/ /g;
1da177e4 2863 } else {
b9d97328 2864 $contents .= $1 . "\n";
1da177e4
LT
2865 }
2866 } else {
2867 # i dont know - bad line? ignore.
d40e1e65 2868 print STDERR "${file}:$.: warning: bad line: $_";
1da177e4
LT
2869 ++$warnings;
2870 }
48af606a 2871 } elsif ($state == STATE_INLINE) { # scanning for inline parameters
a4c6ebed 2872 # First line (state 1) needs to be a @parameter
48af606a 2873 if ($inline_doc_state == STATE_INLINE_NAME && /$doc_inline_sect/o) {
a4c6ebed
DCLP
2874 $section = $1;
2875 $contents = $2;
2876 if ($contents ne "") {
2877 while ((substr($contents, 0, 1) eq " ") ||
2878 substr($contents, 0, 1) eq "\t") {
2879 $contents = substr($contents, 1);
2880 }
2881 $contents .= "\n";
2882 }
48af606a 2883 $inline_doc_state = STATE_INLINE_TEXT;
a4c6ebed 2884 # Documentation block end */
48af606a 2885 } elsif (/$doc_inline_end/) {
a4c6ebed
DCLP
2886 if (($contents ne "") && ($contents ne "\n")) {
2887 dump_section($file, $section, xml_escape($contents));
2888 $section = $section_default;
2889 $contents = "";
2890 }
48af606a
JN
2891 $state = STATE_PROTO;
2892 $inline_doc_state = STATE_INLINE_NA;
a4c6ebed
DCLP
2893 # Regular text
2894 } elsif (/$doc_content/) {
48af606a 2895 if ($inline_doc_state == STATE_INLINE_TEXT) {
a4c6ebed 2896 $contents .= $1 . "\n";
48af606a
JN
2897 } elsif ($inline_doc_state == STATE_INLINE_NAME) {
2898 $inline_doc_state = STATE_INLINE_ERROR;
a4c6ebed
DCLP
2899 print STDERR "Warning(${file}:$.): ";
2900 print STDERR "Incorrect use of kernel-doc format: $_";
2901 ++$warnings;
2902 }
2903 }
48af606a
JN
2904 } elsif ($state == STATE_PROTO) { # scanning for function '{' (end of prototype)
2905 if (/$doc_inline_start/) {
2906 $state = STATE_INLINE;
2907 $inline_doc_state = STATE_INLINE_NAME;
a4c6ebed 2908 } elsif ($decl_type eq 'function') {
3c308798 2909 process_state3_function($_, $file);
1da177e4 2910 } else {
3c308798 2911 process_state3_type($_, $file);
1da177e4 2912 }
48af606a 2913 } elsif ($state == STATE_DOCBLOCK) {
1da177e4 2914 # Documentation block
3c308798 2915 if (/$doc_block/) {
94dc7ad5 2916 dump_doc_section($file, $section, xml_escape($contents));
1da177e4
LT
2917 $contents = "";
2918 $function = "";
1da177e4
LT
2919 %parameterdescs = ();
2920 %parametertypes = ();
2921 @parameterlist = ();
2922 %sections = ();
2923 @sectionlist = ();
2924 $prototype = "";
2925 if ( $1 eq "" ) {
2926 $section = $section_intro;
2927 } else {
2928 $section = $1;
2929 }
3c308798 2930 }
1da177e4
LT
2931 elsif (/$doc_end/)
2932 {
94dc7ad5 2933 dump_doc_section($file, $section, xml_escape($contents));
1da177e4
LT
2934 $contents = "";
2935 $function = "";
1da177e4
LT
2936 %parameterdescs = ();
2937 %parametertypes = ();
2938 @parameterlist = ();
2939 %sections = ();
2940 @sectionlist = ();
2941 $prototype = "";
48af606a 2942 $state = STATE_NORMAL;
1da177e4
LT
2943 }
2944 elsif (/$doc_content/)
2945 {
2946 if ( $1 eq "" )
2947 {
2948 $contents .= $blankline;
2949 }
2950 else
2951 {
2952 $contents .= $1 . "\n";
3c3b809e 2953 }
3c308798
RD
2954 }
2955 }
1da177e4
LT
2956 }
2957 if ($initial_section_counter == $section_counter) {
d40e1e65 2958 print STDERR "${file}:1: warning: no structured comments found\n";
b6c3f456 2959 if (($output_selection == OUTPUT_INCLUDE) && ($show_not_found == 1)) {
e946c43a
JB
2960 print STDERR " Was looking for '$_'.\n" for keys %function_table;
2961 }
1da177e4
LT
2962 if ($output_mode eq "xml") {
2963 # The template wants at least one RefEntry here; make one.
2964 print "<refentry>\n";
2965 print " <refnamediv>\n";
2966 print " <refname>\n";
68f86662 2967 print " ${orig_file}\n";
1da177e4
LT
2968 print " </refname>\n";
2969 print " <refpurpose>\n";
2970 print " Document generation inconsistency\n";
2971 print " </refpurpose>\n";
2972 print " </refnamediv>\n";
2973 print " <refsect1>\n";
2974 print " <title>\n";
2975 print " Oops\n";
2976 print " </title>\n";
2977 print " <warning>\n";
2978 print " <para>\n";
2979 print " The template for this document tried to insert\n";
2980 print " the structured comment from the file\n";
68f86662 2981 print " <filename>${orig_file}</filename> at this point,\n";
1da177e4
LT
2982 print " but none was found.\n";
2983 print " This dummy section is inserted to allow\n";
2984 print " generation to continue.\n";
2985 print " </para>\n";
2986 print " </warning>\n";
2987 print " </refsect1>\n";
2988 print "</refentry>\n";
2989 }
2990 }
2991}
8484baaa
RD
2992
2993
2994$kernelversion = get_kernel_version();
2995
2996# generate a sequence of code that will splice in highlighting information
2997# using the s// operator.
1ef06233 2998for (my $k = 0; $k < @highlights; $k++) {
4d732701
DCLP
2999 my $pattern = $highlights[$k][0];
3000 my $result = $highlights[$k][1];
3001# print STDERR "scanning pattern:$pattern, highlight:($result)\n";
3002 $dohighlight .= "\$contents =~ s:$pattern:$result:gs;\n";
8484baaa
RD
3003}
3004
3005# Read the file that maps relative names to absolute names for
3006# separate source and object directories and for shadow trees.
3007if (open(SOURCE_MAP, "<.tmp_filelist.txt")) {
3008 my ($relname, $absname);
3009 while(<SOURCE_MAP>) {
3010 chop();
3011 ($relname, $absname) = (split())[0..1];
3012 $relname =~ s:^/+::;
3013 $source_map{$relname} = $absname;
3014 }
3015 close(SOURCE_MAP);
3016}
3017
3018foreach (@ARGV) {
3019 chomp;
3020 process_file($_);
3021}
3022if ($verbose && $errors) {
3023 print STDERR "$errors errors\n";
3024}
3025if ($verbose && $warnings) {
3026 print STDERR "$warnings warnings\n";
3027}
3028
3029exit($errors);