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