blob: 2fc8fad5195e8994a320013cd8c731a0d9469f63 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#!/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 ##
Randy Dunlap70c95b02012-01-21 10:31:54 -08008## Copyright (C) 2005-2012 Randy Dunlap ##
Dan Luedtke1b40c192012-08-12 10:46:15 +02009## Copyright (C) 2012 Dan Luedtke ##
Linus Torvalds1da177e2005-04-16 15:20:36 -070010## ##
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017# 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
Dan Luedtke1b40c192012-08-12 10:46:15 +020039# 25/07/2012 - Added support for HTML5
40# -- Dan Luedtke <mail@danrl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Jani Nikulafadc0b32016-05-12 16:15:36 +030042sub usage {
43 my $message = <<"EOF";
44Usage: $0 [OPTION ...] FILE ...
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Jani Nikulafadc0b32016-05-12 16:15:36 +030046Read C language source or header FILEs, extract embedded documentation comments,
47and print formatted documentation to standard output.
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Jani Nikulafadc0b32016-05-12 16:15:36 +030049The 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.
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +030058 -rst Output reStructuredText format.
Jani Nikulafadc0b32016-05-12 16:15:36 +030059 -text Output plain text format.
60
61Output selection (mutually exclusive):
62 -function NAME Only output documentation for the given function(s)
63 or DOC: section title(s). All other functions and DOC:
64 sections are ignored. May be specified multiple times.
65 -nofunction NAME Do NOT output documentation for the given function(s);
66 only output documentation for the other functions and
67 DOC: sections. May be specified multiple times.
68
69Output selection modifiers:
70 -no-doc-sections Do not output DOC: sections.
71
72Other parameters:
73 -v Verbose output, more warnings and other information.
74 -h Print this help.
75
76EOF
77 print $message;
78 exit 1;
79}
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81#
82# format of comments.
83# In the following table, (...)? signifies optional structure.
84# (...)* signifies 0 or more structure elements
85# /**
86# * function_name(:)? (- short description)?
87# (* @parameterx: (description of parameter x)?)*
88# (* a blank line)?
89# * (Description:)? (Description of function)?
90# * (section header: (section description)? )*
91# (*)?*/
92#
93# So .. the trivial example would be:
94#
95# /**
96# * my_function
Randy Dunlapb9d973282009-06-09 08:50:38 -070097# */
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#
Randy Dunlap891dcd22007-02-10 01:45:53 -080099# If the Description: header tag is omitted, then there must be a blank line
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100# after the last parameter specification.
101# e.g.
102# /**
103# * my_function - does my stuff
104# * @my_arg: its mine damnit
105# *
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800106# * Does my stuff explained.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107# */
108#
109# or, could also use:
110# /**
111# * my_function - does my stuff
112# * @my_arg: its mine damnit
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800113# * Description: Does my stuff explained.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114# */
115# etc.
116#
Randy Dunlapb9d973282009-06-09 08:50:38 -0700117# Besides functions you can also write documentation for structs, unions,
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800118# enums and typedefs. Instead of the function name you must write the name
119# of the declaration; the struct/union/enum/typedef must always precede
120# the name. Nesting of declarations is not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121# Use the argument mechanism to document members or constants.
122# e.g.
123# /**
124# * struct my_struct - short description
125# * @a: first member
126# * @b: second member
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800127# *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128# * Longer description
129# */
130# struct my_struct {
131# int a;
132# int b;
Martin Waitzaeec46b2005-11-13 16:08:13 -0800133# /* private: */
134# int c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135# };
136#
137# All descriptions can be multiline, except the short function description.
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800138#
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -0300139# For really longs structs, you can also describe arguments inside the
140# body of the struct.
141# eg.
142# /**
143# * struct my_struct - short description
144# * @a: first member
145# * @b: second member
146# *
147# * Longer description
148# */
149# struct my_struct {
150# int a;
151# int b;
152# /**
153# * @c: This is longer description of C
154# *
155# * You can use paragraphs to describe arguments
156# * using this method.
157# */
158# int c;
159# };
160#
161# This should be use only for struct/enum members.
162#
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800163# You can also add additional sections. When documenting kernel functions you
164# should document the "Context:" of the function, e.g. whether the functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165# can be called form interrupts. Unlike other sections you can end it with an
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800166# empty line.
Yacine Belkadi4092bac2012-11-26 22:22:27 +0100167# A non-void function should have a "Return:" section describing the return
168# value(s).
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800169# Example-sections should contain the string EXAMPLE so that they are marked
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170# appropriately in DocBook.
171#
172# Example:
173# /**
174# * user_function - function that can only be called in user context
175# * @a: some argument
176# * Context: !in_interrupt()
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800177# *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178# * Some description
179# * Example:
180# * user_function(22);
181# */
182# ...
183#
184#
185# All descriptive text is further processed, scanning for the following special
186# patterns, which are highlighted appropriately.
187#
188# 'funcname()' - function
189# '$ENVVAR' - environmental variable
190# '&struct_name' - name of a structure (up to two words including 'struct')
191# '@parameter' - name of a parameter
192# '%CONST' - name of a constant.
193
Randy Dunlap8484baa2011-01-05 16:28:43 -0800194## init lots of data
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196my $errors = 0;
197my $warnings = 0;
Randy Dunlap5f8c7c92007-07-19 01:48:24 -0700198my $anon_struct_union = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200# match expressions used to find embedded type information
201my $type_constant = '\%([-_\w]+)';
202my $type_func = '(\w+)\(\)';
203my $type_param = '\@(\w+)';
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700204my $type_struct = '\&((struct\s*)*[_\w]+)';
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700205my $type_struct_xml = '\\&amp;((struct\s*)*[_\w]+)';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206my $type_env = '(\$\w+)';
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300207my $type_enum_full = '\&(enum)\s*([_\w]+)';
208my $type_struct_full = '\&(struct)\s*([_\w]+)';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210# Output conversion substitutions.
211# One for each output format
212
213# these work fairly well
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300214my @highlights_html = (
215 [$type_constant, "<i>\$1</i>"],
216 [$type_func, "<b>\$1</b>"],
217 [$type_struct_xml, "<i>\$1</i>"],
218 [$type_env, "<b><i>\$1</i></b>"],
219 [$type_param, "<tt><b>\$1</b></tt>"]
220 );
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700221my $local_lt = "\\\\\\\\lt:";
222my $local_gt = "\\\\\\\\gt:";
223my $blankline_html = $local_lt . "p" . $local_gt; # was "<p>"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Dan Luedtke1b40c192012-08-12 10:46:15 +0200225# html version 5
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300226my @highlights_html5 = (
227 [$type_constant, "<span class=\"const\">\$1</span>"],
228 [$type_func, "<span class=\"func\">\$1</span>"],
229 [$type_struct_xml, "<span class=\"struct\">\$1</span>"],
230 [$type_env, "<span class=\"env\">\$1</span>"],
231 [$type_param, "<span class=\"param\">\$1</span>]"]
232 );
Dan Luedtke1b40c192012-08-12 10:46:15 +0200233my $blankline_html5 = $local_lt . "br /" . $local_gt;
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235# XML, docbook format
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300236my @highlights_xml = (
237 ["([^=])\\\"([^\\\"<]+)\\\"", "\$1<quote>\$2</quote>"],
238 [$type_constant, "<constant>\$1</constant>"],
239 [$type_struct_xml, "<structname>\$1</structname>"],
240 [$type_param, "<parameter>\$1</parameter>"],
241 [$type_func, "<function>\$1</function>"],
242 [$type_env, "<envar>\$1</envar>"]
243 );
Johannes Berg5c98fc02007-10-24 15:08:48 -0700244my $blankline_xml = $local_lt . "/para" . $local_gt . $local_lt . "para" . $local_gt . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246# gnome, docbook format
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300247my @highlights_gnome = (
248 [$type_constant, "<replaceable class=\"option\">\$1</replaceable>"],
249 [$type_func, "<function>\$1</function>"],
250 [$type_struct, "<structname>\$1</structname>"],
251 [$type_env, "<envar>\$1</envar>"],
252 [$type_param, "<parameter>\$1</parameter>" ]
253 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254my $blankline_gnome = "</para><para>\n";
255
256# these are pretty rough
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300257my @highlights_man = (
258 [$type_constant, "\$1"],
259 [$type_func, "\\\\fB\$1\\\\fP"],
260 [$type_struct, "\\\\fI\$1\\\\fP"],
261 [$type_param, "\\\\fI\$1\\\\fP"]
262 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263my $blankline_man = "";
264
265# text-mode
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300266my @highlights_text = (
267 [$type_constant, "\$1"],
268 [$type_func, "\$1"],
269 [$type_struct, "\$1"],
270 [$type_param, "\$1"]
271 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272my $blankline_text = "";
273
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300274# rst-mode
275my @highlights_rst = (
276 [$type_constant, "``\$1``"],
277 [$type_func, "\\:c\\:func\\:`\$1`"],
Jani Nikula62850972016-05-12 16:15:38 +0300278 [$type_struct_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"],
279 [$type_enum_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"],
280 [$type_struct, "\\:c\\:type\\:`struct \$1 <\$1>`"],
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300281 [$type_param, "**\$1**"]
282 );
283my $blankline_rst = "\n";
284
Johannes Bergeda603f2010-09-11 15:55:22 -0700285# list mode
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300286my @highlights_list = (
287 [$type_constant, "\$1"],
288 [$type_func, "\$1"],
289 [$type_struct, "\$1"],
290 [$type_param, "\$1"]
291 );
Johannes Bergeda603f2010-09-11 15:55:22 -0700292my $blankline_list = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294# read arguments
Randy Dunlapb9d973282009-06-09 08:50:38 -0700295if ($#ARGV == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 usage();
297}
298
Randy Dunlap8484baa2011-01-05 16:28:43 -0800299my $kernelversion;
300my $dohighlight = "";
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302my $verbose = 0;
303my $output_mode = "man";
Daniel Santose314ba32012-10-04 17:15:08 -0700304my $output_preformatted = 0;
Johannes Berg4b445952007-10-24 15:08:48 -0700305my $no_doc_sections = 0;
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300306my @highlights = @highlights_man;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307my $blankline = $blankline_man;
308my $modulename = "Kernel API";
309my $function_only = 0;
Ben Hutchingsb2c41052015-07-08 20:07:16 +0100310my $show_not_found = 0;
311
312my @build_time;
313if (defined($ENV{'KBUILD_BUILD_TIMESTAMP'}) &&
314 (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') {
315 @build_time = gmtime($seconds);
316} else {
317 @build_time = localtime;
318}
319
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800320my $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
321 'July', 'August', 'September', 'October',
Ben Hutchingsb2c41052015-07-08 20:07:16 +0100322 'November', 'December')[$build_time[4]] .
323 " " . ($build_time[5]+1900);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Randy Dunlap8484baa2011-01-05 16:28:43 -0800325# Essentially these are globals.
Randy Dunlapb9d973282009-06-09 08:50:38 -0700326# They probably want to be tidied up, made more localised or something.
327# CAVEAT EMPTOR! Some of the others I localised may not want to be, which
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328# could cause "use of undefined value" or other bugs.
Randy Dunlapb9d973282009-06-09 08:50:38 -0700329my ($function, %function_table, %parametertypes, $declaration_purpose);
330my ($type, $declaration_name, $return_type);
Ilya Dryomov1c32fd02010-02-26 13:06:03 -0800331my ($newsection, $newcontents, $prototype, $brcount, %source_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Randy Dunlapbd0e88e2008-03-13 12:32:43 -0700333if (defined($ENV{'KBUILD_VERBOSE'})) {
334 $verbose = "$ENV{'KBUILD_VERBOSE'}";
335}
336
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800337# Generated docbook code is inserted in a template at a point where
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338# docbook v3.1 requires a non-zero sequence of RefEntry's; see:
339# http://www.oasis-open.org/docbook/documentation/reference/html/refentry.html
340# We keep track of number of generated entries and generate a dummy
341# if needs be to ensure the expanded template can be postprocessed
342# into html.
343my $section_counter = 0;
344
345my $lineprefix="";
346
347# states
348# 0 - normal code
349# 1 - looking for function name
350# 2 - scanning field start.
351# 3 - scanning prototype.
352# 4 - documentation block
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -0300353# 5 - gathering documentation outside main block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354my $state;
Randy Dunlap850622d2006-06-25 05:48:55 -0700355my $in_doc_sect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -0300357# Split Doc State
358# 0 - Invalid (Before start or after finish)
359# 1 - Is started (the /** was found inside a struct)
360# 2 - The @parameter header was found, start accepting multi paragraph text.
361# 3 - Finished (the */ was found)
362# 4 - Error - Comment without header was found. Spit a warning as it's not
363# proper kernel-doc and ignore the rest.
364my $split_doc_state;
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366#declaration types: can be
367# 'function', 'struct', 'union', 'enum', 'typedef'
368my $decl_type;
369
370my $doc_special = "\@\%\$\&";
371
372my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
373my $doc_end = '\*/';
374my $doc_com = '\s*\*\s*';
Daniel Santos12ae6772012-10-04 17:15:10 -0700375my $doc_com_body = '\s*\* ?';
Randy Dunlapb9d973282009-06-09 08:50:38 -0700376my $doc_decl = $doc_com . '(\w+)';
377my $doc_sect = $doc_com . '([' . $doc_special . ']?[\w\s]+):(.*)';
Daniel Santos12ae6772012-10-04 17:15:10 -0700378my $doc_content = $doc_com_body . '(.*)';
Randy Dunlapb9d973282009-06-09 08:50:38 -0700379my $doc_block = $doc_com . 'DOC:\s*(.*)?';
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -0300380my $doc_split_start = '^\s*/\*\*\s*$';
381my $doc_split_sect = '\s*\*\s*(@[\w\s]+):(.*)';
382my $doc_split_end = '^\s*\*/\s*$';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384my %constants;
385my %parameterdescs;
386my @parameterlist;
387my %sections;
388my @sectionlist;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800389my $sectcheck;
390my $struct_actual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392my $contents = "";
393my $section_default = "Description"; # default section
394my $section_intro = "Introduction";
395my $section = $section_default;
396my $section_context = "Context";
Yacine Belkadi4092bac2012-11-26 22:22:27 +0100397my $section_return = "Return";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399my $undescribed = "-- undescribed --";
400
401reset_state();
402
403while ($ARGV[0] =~ m/^-(.*)/) {
404 my $cmd = shift @ARGV;
405 if ($cmd eq "-html") {
406 $output_mode = "html";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300407 @highlights = @highlights_html;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 $blankline = $blankline_html;
Dan Luedtke1b40c192012-08-12 10:46:15 +0200409 } elsif ($cmd eq "-html5") {
410 $output_mode = "html5";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300411 @highlights = @highlights_html5;
Dan Luedtke1b40c192012-08-12 10:46:15 +0200412 $blankline = $blankline_html5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 } elsif ($cmd eq "-man") {
414 $output_mode = "man";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300415 @highlights = @highlights_man;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 $blankline = $blankline_man;
417 } elsif ($cmd eq "-text") {
418 $output_mode = "text";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300419 @highlights = @highlights_text;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 $blankline = $blankline_text;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300421 } elsif ($cmd eq "-rst") {
422 $output_mode = "rst";
423 @highlights = @highlights_rst;
424 $blankline = $blankline_rst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 } elsif ($cmd eq "-docbook") {
426 $output_mode = "xml";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300427 @highlights = @highlights_xml;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 $blankline = $blankline_xml;
Johannes Bergeda603f2010-09-11 15:55:22 -0700429 } elsif ($cmd eq "-list") {
430 $output_mode = "list";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300431 @highlights = @highlights_list;
Johannes Bergeda603f2010-09-11 15:55:22 -0700432 $blankline = $blankline_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 } elsif ($cmd eq "-gnome") {
434 $output_mode = "gnome";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300435 @highlights = @highlights_gnome;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 $blankline = $blankline_gnome;
437 } elsif ($cmd eq "-module") { # not needed for XML, inherits from calling document
438 $modulename = shift @ARGV;
439 } elsif ($cmd eq "-function") { # to only output specific functions
440 $function_only = 1;
441 $function = shift @ARGV;
442 $function_table{$function} = 1;
443 } elsif ($cmd eq "-nofunction") { # to only output specific functions
444 $function_only = 2;
445 $function = shift @ARGV;
446 $function_table{$function} = 1;
447 } elsif ($cmd eq "-v") {
448 $verbose = 1;
449 } elsif (($cmd eq "-h") || ($cmd eq "--help")) {
450 usage();
Johannes Berg4b445952007-10-24 15:08:48 -0700451 } elsif ($cmd eq '-no-doc-sections') {
452 $no_doc_sections = 1;
Johannes Berge946c43a2013-11-12 15:11:12 -0800453 } elsif ($cmd eq '-show-not-found') {
454 $show_not_found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
456}
457
Randy Dunlap8484baa2011-01-05 16:28:43 -0800458# continue execution near EOF;
459
Borislav Petkov53f049f2007-05-08 00:30:54 -0700460# get kernel version from env
461sub get_kernel_version() {
Johannes Berg1b9bc222007-10-24 15:08:48 -0700462 my $version = 'unknown kernel version';
Borislav Petkov53f049f2007-05-08 00:30:54 -0700463
464 if (defined($ENV{'KERNELVERSION'})) {
465 $version = $ENV{'KERNELVERSION'};
466 }
467 return $version;
468}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470##
471# dumps section contents to arrays/hashes intended for that purpose.
472#
473sub dump_section {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700474 my $file = shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 my $name = shift;
476 my $contents = join "\n", @_;
477
478 if ($name =~ m/$type_constant/) {
479 $name = $1;
480# print STDERR "constant section '$1' = '$contents'\n";
481 $constants{$name} = $contents;
482 } elsif ($name =~ m/$type_param/) {
483# print STDERR "parameter def '$1' = '$contents'\n";
484 $name = $1;
485 $parameterdescs{$name} = $contents;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800486 $sectcheck = $sectcheck . $name . " ";
Randy Dunlapced69092008-12-01 13:14:03 -0800487 } elsif ($name eq "@\.\.\.") {
488# print STDERR "parameter def '...' = '$contents'\n";
489 $name = "...";
490 $parameterdescs{$name} = $contents;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800491 $sectcheck = $sectcheck . $name . " ";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 } else {
493# print STDERR "other section '$name' = '$contents'\n";
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700494 if (defined($sections{$name}) && ($sections{$name} ne "")) {
Bart Van Assched40e1e62015-09-04 15:43:21 -0700495 print STDERR "${file}:$.: error: duplicate section name '$name'\n";
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700496 ++$errors;
497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 $sections{$name} = $contents;
499 push @sectionlist, $name;
500 }
501}
502
503##
Johannes Bergb112e0f2007-10-24 15:08:48 -0700504# dump DOC: section after checking that it should go out
505#
506sub dump_doc_section {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700507 my $file = shift;
Johannes Bergb112e0f2007-10-24 15:08:48 -0700508 my $name = shift;
509 my $contents = join "\n", @_;
510
Johannes Berg4b445952007-10-24 15:08:48 -0700511 if ($no_doc_sections) {
512 return;
513 }
514
Johannes Bergb112e0f2007-10-24 15:08:48 -0700515 if (($function_only == 0) ||
516 ( $function_only == 1 && defined($function_table{$name})) ||
517 ( $function_only == 2 && !defined($function_table{$name})))
518 {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700519 dump_section($file, $name, $contents);
Johannes Bergb112e0f2007-10-24 15:08:48 -0700520 output_blockhead({'sectionlist' => \@sectionlist,
521 'sections' => \%sections,
522 'module' => $modulename,
523 'content-only' => ($function_only != 0), });
524 }
525}
526
527##
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528# output function
529#
530# parameterdescs, a hash.
531# function => "function name"
532# parameterlist => @list of parameters
533# parameterdescs => %parameter descriptions
534# sectionlist => @list of sections
Randy Dunlapa21217d2007-02-10 01:46:04 -0800535# sections => %section descriptions
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800536#
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538sub output_highlight {
539 my $contents = join "\n",@_;
540 my $line;
541
542# DEBUG
543# if (!defined $contents) {
544# use Carp;
545# confess "output_highlight got called with no args?\n";
546# }
547
Dan Luedtke1b40c192012-08-12 10:46:15 +0200548 if ($output_mode eq "html" || $output_mode eq "html5" ||
549 $output_mode eq "xml") {
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700550 $contents = local_unescape($contents);
551 # convert data read & converted thru xml_escape() into &xyz; format:
Randy Dunlap2b35f4d2010-11-18 12:27:31 -0800552 $contents =~ s/\\\\\\/\&/g;
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700553 }
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700554# print STDERR "contents b4:$contents\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 eval $dohighlight;
556 die $@ if $@;
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700557# print STDERR "contents af:$contents\n";
558
Dan Luedtke1b40c192012-08-12 10:46:15 +0200559# strip whitespaces when generating html5
560 if ($output_mode eq "html5") {
561 $contents =~ s/^\s+//;
562 $contents =~ s/\s+$//;
563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 foreach $line (split "\n", $contents) {
Daniel Santos12ae6772012-10-04 17:15:10 -0700565 if (! $output_preformatted) {
566 $line =~ s/^\s*//;
567 }
Randy Dunlap3c308792007-05-08 00:24:39 -0700568 if ($line eq ""){
Daniel Santose314ba32012-10-04 17:15:08 -0700569 if (! $output_preformatted) {
570 print $lineprefix, local_unescape($blankline);
571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 } else {
Randy Dunlap3c308792007-05-08 00:24:39 -0700573 $line =~ s/\\\\\\/\&/g;
Randy Dunlapcdccb312007-07-19 01:48:25 -0700574 if ($output_mode eq "man" && substr($line, 0, 1) eq ".") {
575 print "\\&$line";
576 } else {
577 print $lineprefix, $line;
578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
580 print "\n";
581 }
582}
583
Dan Luedtke1b40c192012-08-12 10:46:15 +0200584# output sections in html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585sub output_section_html(%) {
586 my %args = %{$_[0]};
587 my $section;
588
589 foreach $section (@{$args{'sectionlist'}}) {
590 print "<h3>$section</h3>\n";
591 print "<blockquote>\n";
592 output_highlight($args{'sections'}{$section});
593 print "</blockquote>\n";
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
597# output enum in html
598sub output_enum_html(%) {
599 my %args = %{$_[0]};
600 my ($parameter);
601 my $count;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700602 print "<h2>enum " . $args{'enum'} . "</h2>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Randy Dunlapb9d973282009-06-09 08:50:38 -0700604 print "<b>enum " . $args{'enum'} . "</b> {<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 $count = 0;
606 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlapb9d973282009-06-09 08:50:38 -0700607 print " <b>" . $parameter . "</b>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if ($count != $#{$args{'parameterlist'}}) {
609 $count++;
610 print ",\n";
611 }
612 print "<br>";
613 }
614 print "};<br>\n";
615
616 print "<h3>Constants</h3>\n";
617 print "<dl>\n";
618 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlapb9d973282009-06-09 08:50:38 -0700619 print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 print "<dd>";
621 output_highlight($args{'parameterdescs'}{$parameter});
622 }
623 print "</dl>\n";
624 output_section_html(@_);
625 print "<hr>\n";
626}
627
Randy Dunlapd28bee02006-02-01 03:06:57 -0800628# output typedef in html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629sub output_typedef_html(%) {
630 my %args = %{$_[0]};
631 my ($parameter);
632 my $count;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700633 print "<h2>typedef " . $args{'typedef'} . "</h2>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Randy Dunlapb9d973282009-06-09 08:50:38 -0700635 print "<b>typedef " . $args{'typedef'} . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 output_section_html(@_);
637 print "<hr>\n";
638}
639
640# output struct in html
641sub output_struct_html(%) {
642 my %args = %{$_[0]};
643 my ($parameter);
644
Randy Dunlapb9d973282009-06-09 08:50:38 -0700645 print "<h2>" . $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "</h2>\n";
646 print "<b>" . $args{'type'} . " " . $args{'struct'} . "</b> {<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 foreach $parameter (@{$args{'parameterlist'}}) {
648 if ($parameter =~ /^#/) {
649 print "$parameter<br>\n";
650 next;
651 }
652 my $parameter_name = $parameter;
653 $parameter_name =~ s/\[.*//;
654
Randy Dunlap3c308792007-05-08 00:24:39 -0700655 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 $type = $args{'parametertypes'}{$parameter};
657 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
658 # pointer-to-function
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700659 print "&nbsp; &nbsp; <i>$1</i><b>$parameter</b>) <i>($2)</i>;<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700661 # bitfield
662 print "&nbsp; &nbsp; <i>$1</i> <b>$parameter</b>$2;<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 } else {
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700664 print "&nbsp; &nbsp; <i>$type</i> <b>$parameter</b>;<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666 }
667 print "};<br>\n";
668
669 print "<h3>Members</h3>\n";
670 print "<dl>\n";
671 foreach $parameter (@{$args{'parameterlist'}}) {
672 ($parameter =~ /^#/) && next;
673
674 my $parameter_name = $parameter;
675 $parameter_name =~ s/\[.*//;
676
Randy Dunlap3c308792007-05-08 00:24:39 -0700677 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700678 print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 print "<dd>";
680 output_highlight($args{'parameterdescs'}{$parameter_name});
681 }
682 print "</dl>\n";
683 output_section_html(@_);
684 print "<hr>\n";
685}
686
687# output function in html
688sub output_function_html(%) {
689 my %args = %{$_[0]};
690 my ($parameter, $section);
691 my $count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Randy Dunlapb9d973282009-06-09 08:50:38 -0700693 print "<h2>" . $args{'function'} . " - " . $args{'purpose'} . "</h2>\n";
694 print "<i>" . $args{'functiontype'} . "</i>\n";
695 print "<b>" . $args{'function'} . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 print "(";
697 $count = 0;
698 foreach $parameter (@{$args{'parameterlist'}}) {
699 $type = $args{'parametertypes'}{$parameter};
700 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
701 # pointer-to-function
702 print "<i>$1</i><b>$parameter</b>) <i>($2)</i>";
703 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -0700704 print "<i>" . $type . "</i> <b>" . $parameter . "</b>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
706 if ($count != $#{$args{'parameterlist'}}) {
707 $count++;
708 print ",\n";
709 }
710 }
711 print ")\n";
712
713 print "<h3>Arguments</h3>\n";
714 print "<dl>\n";
715 foreach $parameter (@{$args{'parameterlist'}}) {
716 my $parameter_name = $parameter;
717 $parameter_name =~ s/\[.*//;
718
Randy Dunlap3c308792007-05-08 00:24:39 -0700719 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700720 print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 print "<dd>";
722 output_highlight($args{'parameterdescs'}{$parameter_name});
723 }
724 print "</dl>\n";
725 output_section_html(@_);
726 print "<hr>\n";
727}
728
Johannes Bergb112e0f2007-10-24 15:08:48 -0700729# output DOC: block header in html
730sub output_blockhead_html(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 my %args = %{$_[0]};
732 my ($parameter, $section);
733 my $count;
734
735 foreach $section (@{$args{'sectionlist'}}) {
736 print "<h3>$section</h3>\n";
737 print "<ul>\n";
738 output_highlight($args{'sections'}{$section});
739 print "</ul>\n";
740 }
741 print "<hr>\n";
742}
743
Dan Luedtke1b40c192012-08-12 10:46:15 +0200744# output sections in html5
745sub output_section_html5(%) {
746 my %args = %{$_[0]};
747 my $section;
748
749 foreach $section (@{$args{'sectionlist'}}) {
750 print "<section>\n";
751 print "<h1>$section</h1>\n";
752 print "<p>\n";
753 output_highlight($args{'sections'}{$section});
754 print "</p>\n";
755 print "</section>\n";
756 }
757}
758
759# output enum in html5
760sub output_enum_html5(%) {
761 my %args = %{$_[0]};
762 my ($parameter);
763 my $count;
764 my $html5id;
765
766 $html5id = $args{'enum'};
767 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
768 print "<article class=\"enum\" id=\"enum:". $html5id . "\">";
769 print "<h1>enum " . $args{'enum'} . "</h1>\n";
770 print "<ol class=\"code\">\n";
771 print "<li>";
772 print "<span class=\"keyword\">enum</span> ";
773 print "<span class=\"identifier\">" . $args{'enum'} . "</span> {";
774 print "</li>\n";
775 $count = 0;
776 foreach $parameter (@{$args{'parameterlist'}}) {
777 print "<li class=\"indent\">";
778 print "<span class=\"param\">" . $parameter . "</span>";
779 if ($count != $#{$args{'parameterlist'}}) {
780 $count++;
781 print ",";
782 }
783 print "</li>\n";
784 }
785 print "<li>};</li>\n";
786 print "</ol>\n";
787
788 print "<section>\n";
789 print "<h1>Constants</h1>\n";
790 print "<dl>\n";
791 foreach $parameter (@{$args{'parameterlist'}}) {
792 print "<dt>" . $parameter . "</dt>\n";
793 print "<dd>";
794 output_highlight($args{'parameterdescs'}{$parameter});
795 print "</dd>\n";
796 }
797 print "</dl>\n";
798 print "</section>\n";
799 output_section_html5(@_);
800 print "</article>\n";
801}
802
803# output typedef in html5
804sub output_typedef_html5(%) {
805 my %args = %{$_[0]};
806 my ($parameter);
807 my $count;
808 my $html5id;
809
810 $html5id = $args{'typedef'};
811 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
812 print "<article class=\"typedef\" id=\"typedef:" . $html5id . "\">\n";
813 print "<h1>typedef " . $args{'typedef'} . "</h1>\n";
814
815 print "<ol class=\"code\">\n";
816 print "<li>";
817 print "<span class=\"keyword\">typedef</span> ";
818 print "<span class=\"identifier\">" . $args{'typedef'} . "</span>";
819 print "</li>\n";
820 print "</ol>\n";
821 output_section_html5(@_);
822 print "</article>\n";
823}
824
825# output struct in html5
826sub output_struct_html5(%) {
827 my %args = %{$_[0]};
828 my ($parameter);
829 my $html5id;
830
831 $html5id = $args{'struct'};
832 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
833 print "<article class=\"struct\" id=\"struct:" . $html5id . "\">\n";
834 print "<hgroup>\n";
835 print "<h1>" . $args{'type'} . " " . $args{'struct'} . "</h1>";
836 print "<h2>". $args{'purpose'} . "</h2>\n";
837 print "</hgroup>\n";
838 print "<ol class=\"code\">\n";
839 print "<li>";
840 print "<span class=\"type\">" . $args{'type'} . "</span> ";
841 print "<span class=\"identifier\">" . $args{'struct'} . "</span> {";
842 print "</li>\n";
843 foreach $parameter (@{$args{'parameterlist'}}) {
844 print "<li class=\"indent\">";
845 if ($parameter =~ /^#/) {
846 print "<span class=\"param\">" . $parameter ."</span>\n";
847 print "</li>\n";
848 next;
849 }
850 my $parameter_name = $parameter;
851 $parameter_name =~ s/\[.*//;
852
853 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
854 $type = $args{'parametertypes'}{$parameter};
855 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
856 # pointer-to-function
857 print "<span class=\"type\">$1</span> ";
858 print "<span class=\"param\">$parameter</span>";
859 print "<span class=\"type\">)</span> ";
860 print "(<span class=\"args\">$2</span>);";
861 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
862 # bitfield
863 print "<span class=\"type\">$1</span> ";
864 print "<span class=\"param\">$parameter</span>";
865 print "<span class=\"bits\">$2</span>;";
866 } else {
867 print "<span class=\"type\">$type</span> ";
868 print "<span class=\"param\">$parameter</span>;";
869 }
870 print "</li>\n";
871 }
872 print "<li>};</li>\n";
873 print "</ol>\n";
874
875 print "<section>\n";
876 print "<h1>Members</h1>\n";
877 print "<dl>\n";
878 foreach $parameter (@{$args{'parameterlist'}}) {
879 ($parameter =~ /^#/) && next;
880
881 my $parameter_name = $parameter;
882 $parameter_name =~ s/\[.*//;
883
884 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
885 print "<dt>" . $parameter . "</dt>\n";
886 print "<dd>";
887 output_highlight($args{'parameterdescs'}{$parameter_name});
888 print "</dd>\n";
889 }
890 print "</dl>\n";
891 print "</section>\n";
892 output_section_html5(@_);
893 print "</article>\n";
894}
895
896# output function in html5
897sub output_function_html5(%) {
898 my %args = %{$_[0]};
899 my ($parameter, $section);
900 my $count;
901 my $html5id;
902
903 $html5id = $args{'function'};
904 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
905 print "<article class=\"function\" id=\"func:". $html5id . "\">\n";
906 print "<hgroup>\n";
907 print "<h1>" . $args{'function'} . "</h1>";
908 print "<h2>" . $args{'purpose'} . "</h2>\n";
909 print "</hgroup>\n";
910 print "<ol class=\"code\">\n";
911 print "<li>";
912 print "<span class=\"type\">" . $args{'functiontype'} . "</span> ";
913 print "<span class=\"identifier\">" . $args{'function'} . "</span> (";
914 print "</li>";
915 $count = 0;
916 foreach $parameter (@{$args{'parameterlist'}}) {
917 print "<li class=\"indent\">";
918 $type = $args{'parametertypes'}{$parameter};
919 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
920 # pointer-to-function
921 print "<span class=\"type\">$1</span> ";
922 print "<span class=\"param\">$parameter</span>";
923 print "<span class=\"type\">)</span> ";
924 print "(<span class=\"args\">$2</span>)";
925 } else {
926 print "<span class=\"type\">$type</span> ";
927 print "<span class=\"param\">$parameter</span>";
928 }
929 if ($count != $#{$args{'parameterlist'}}) {
930 $count++;
931 print ",";
932 }
933 print "</li>\n";
934 }
935 print "<li>)</li>\n";
936 print "</ol>\n";
937
938 print "<section>\n";
939 print "<h1>Arguments</h1>\n";
940 print "<p>\n";
941 print "<dl>\n";
942 foreach $parameter (@{$args{'parameterlist'}}) {
943 my $parameter_name = $parameter;
944 $parameter_name =~ s/\[.*//;
945
946 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
947 print "<dt>" . $parameter . "</dt>\n";
948 print "<dd>";
949 output_highlight($args{'parameterdescs'}{$parameter_name});
950 print "</dd>\n";
951 }
952 print "</dl>\n";
953 print "</section>\n";
954 output_section_html5(@_);
955 print "</article>\n";
956}
957
958# output DOC: block header in html5
959sub output_blockhead_html5(%) {
960 my %args = %{$_[0]};
961 my ($parameter, $section);
962 my $count;
963 my $html5id;
964
965 foreach $section (@{$args{'sectionlist'}}) {
966 $html5id = $section;
967 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
968 print "<article class=\"doc\" id=\"doc:". $html5id . "\">\n";
969 print "<h1>$section</h1>\n";
970 print "<p>\n";
971 output_highlight($args{'sections'}{$section});
972 print "</p>\n";
973 }
974 print "</article>\n";
975}
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977sub output_section_xml(%) {
978 my %args = %{$_[0]};
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800979 my $section;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 # print out each section
981 $lineprefix=" ";
982 foreach $section (@{$args{'sectionlist'}}) {
Rich Walkerc73894c2005-05-01 08:59:26 -0700983 print "<refsect1>\n";
984 print "<title>$section</title>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if ($section =~ m/EXAMPLE/i) {
Rich Walkerc73894c2005-05-01 08:59:26 -0700986 print "<informalexample><programlisting>\n";
Daniel Santose314ba32012-10-04 17:15:08 -0700987 $output_preformatted = 1;
Rich Walkerc73894c2005-05-01 08:59:26 -0700988 } else {
989 print "<para>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 }
991 output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-04 17:15:08 -0700992 $output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if ($section =~ m/EXAMPLE/i) {
Rich Walkerc73894c2005-05-01 08:59:26 -0700994 print "</programlisting></informalexample>\n";
995 } else {
996 print "</para>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
Rich Walkerc73894c2005-05-01 08:59:26 -0700998 print "</refsect1>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
1000}
1001
1002# output function in XML DocBook
1003sub output_function_xml(%) {
1004 my %args = %{$_[0]};
1005 my ($parameter, $section);
1006 my $count;
1007 my $id;
1008
Randy Dunlapb9d973282009-06-09 08:50:38 -07001009 $id = "API-" . $args{'function'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 $id =~ s/[^A-Za-z0-9]/-/g;
1011
Pavel Pisa5449bc92007-02-10 01:45:37 -08001012 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001013 print "<refentryinfo>\n";
1014 print " <title>LINUX</title>\n";
1015 print " <productname>Kernel Hackers Manual</productname>\n";
1016 print " <date>$man_date</date>\n";
1017 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001019 print " <refentrytitle><phrase>" . $args{'function'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001020 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 02:33:43 -07001021 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 print "</refmeta>\n";
1023 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001024 print " <refname>" . $args{'function'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 print " <refpurpose>\n";
1026 print " ";
1027 output_highlight ($args{'purpose'});
1028 print " </refpurpose>\n";
1029 print "</refnamediv>\n";
1030
1031 print "<refsynopsisdiv>\n";
1032 print " <title>Synopsis</title>\n";
1033 print " <funcsynopsis><funcprototype>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001034 print " <funcdef>" . $args{'functiontype'} . " ";
1035 print "<function>" . $args{'function'} . " </function></funcdef>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 $count = 0;
1038 if ($#{$args{'parameterlist'}} >= 0) {
1039 foreach $parameter (@{$args{'parameterlist'}}) {
1040 $type = $args{'parametertypes'}{$parameter};
1041 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1042 # pointer-to-function
1043 print " <paramdef>$1<parameter>$parameter</parameter>)\n";
1044 print " <funcparams>$2</funcparams></paramdef>\n";
1045 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001046 print " <paramdef>" . $type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 print " <parameter>$parameter</parameter></paramdef>\n";
1048 }
1049 }
1050 } else {
Martin Waitz6013d542005-05-01 08:59:25 -07001051 print " <void/>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
1053 print " </funcprototype></funcsynopsis>\n";
1054 print "</refsynopsisdiv>\n";
1055
1056 # print parameters
1057 print "<refsect1>\n <title>Arguments</title>\n";
1058 if ($#{$args{'parameterlist'}} >= 0) {
1059 print " <variablelist>\n";
1060 foreach $parameter (@{$args{'parameterlist'}}) {
1061 my $parameter_name = $parameter;
1062 $parameter_name =~ s/\[.*//;
1063
1064 print " <varlistentry>\n <term><parameter>$parameter</parameter></term>\n";
1065 print " <listitem>\n <para>\n";
1066 $lineprefix=" ";
1067 output_highlight($args{'parameterdescs'}{$parameter_name});
1068 print " </para>\n </listitem>\n </varlistentry>\n";
1069 }
1070 print " </variablelist>\n";
1071 } else {
1072 print " <para>\n None\n </para>\n";
1073 }
1074 print "</refsect1>\n";
1075
1076 output_section_xml(@_);
1077 print "</refentry>\n\n";
1078}
1079
1080# output struct in XML DocBook
1081sub output_struct_xml(%) {
1082 my %args = %{$_[0]};
1083 my ($parameter, $section);
1084 my $id;
1085
Randy Dunlapb9d973282009-06-09 08:50:38 -07001086 $id = "API-struct-" . $args{'struct'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 $id =~ s/[^A-Za-z0-9]/-/g;
1088
Pavel Pisa5449bc92007-02-10 01:45:37 -08001089 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001090 print "<refentryinfo>\n";
1091 print " <title>LINUX</title>\n";
1092 print " <productname>Kernel Hackers Manual</productname>\n";
1093 print " <date>$man_date</date>\n";
1094 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001096 print " <refentrytitle><phrase>" . $args{'type'} . " " . $args{'struct'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001097 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 02:33:43 -07001098 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 print "</refmeta>\n";
1100 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001101 print " <refname>" . $args{'type'} . " " . $args{'struct'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 print " <refpurpose>\n";
1103 print " ";
1104 output_highlight ($args{'purpose'});
1105 print " </refpurpose>\n";
1106 print "</refnamediv>\n";
1107
1108 print "<refsynopsisdiv>\n";
1109 print " <title>Synopsis</title>\n";
1110 print " <programlisting>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001111 print $args{'type'} . " " . $args{'struct'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 foreach $parameter (@{$args{'parameterlist'}}) {
1113 if ($parameter =~ /^#/) {
Randy Dunlap2b35f4d2010-11-18 12:27:31 -08001114 my $prm = $parameter;
1115 # convert data read & converted thru xml_escape() into &xyz; format:
1116 # This allows us to have #define macros interspersed in a struct.
1117 $prm =~ s/\\\\\\/\&/g;
1118 print "$prm\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 next;
1120 }
1121
1122 my $parameter_name = $parameter;
1123 $parameter_name =~ s/\[.*//;
1124
1125 defined($args{'parameterdescs'}{$parameter_name}) || next;
Randy Dunlap3c308792007-05-08 00:24:39 -07001126 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 $type = $args{'parametertypes'}{$parameter};
1128 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1129 # pointer-to-function
1130 print " $1 $parameter) ($2);\n";
1131 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07001132 # bitfield
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 print " $1 $parameter$2;\n";
1134 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001135 print " " . $type . " " . $parameter . ";\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
1137 }
1138 print "};";
1139 print " </programlisting>\n";
1140 print "</refsynopsisdiv>\n";
1141
1142 print " <refsect1>\n";
1143 print " <title>Members</title>\n";
1144
Randy Dunlap39f00c02008-09-22 13:57:44 -07001145 if ($#{$args{'parameterlist'}} >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 print " <variablelist>\n";
1147 foreach $parameter (@{$args{'parameterlist'}}) {
1148 ($parameter =~ /^#/) && next;
1149
1150 my $parameter_name = $parameter;
1151 $parameter_name =~ s/\[.*//;
1152
1153 defined($args{'parameterdescs'}{$parameter_name}) || next;
1154 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1155 print " <varlistentry>";
1156 print " <term>$parameter</term>\n";
1157 print " <listitem><para>\n";
1158 output_highlight($args{'parameterdescs'}{$parameter_name});
1159 print " </para></listitem>\n";
1160 print " </varlistentry>\n";
1161 }
1162 print " </variablelist>\n";
Randy Dunlap39f00c02008-09-22 13:57:44 -07001163 } else {
1164 print " <para>\n None\n </para>\n";
1165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 print " </refsect1>\n";
1167
1168 output_section_xml(@_);
1169
1170 print "</refentry>\n\n";
1171}
1172
1173# output enum in XML DocBook
1174sub output_enum_xml(%) {
1175 my %args = %{$_[0]};
1176 my ($parameter, $section);
1177 my $count;
1178 my $id;
1179
Randy Dunlapb9d973282009-06-09 08:50:38 -07001180 $id = "API-enum-" . $args{'enum'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 $id =~ s/[^A-Za-z0-9]/-/g;
1182
Pavel Pisa5449bc92007-02-10 01:45:37 -08001183 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001184 print "<refentryinfo>\n";
1185 print " <title>LINUX</title>\n";
1186 print " <productname>Kernel Hackers Manual</productname>\n";
1187 print " <date>$man_date</date>\n";
1188 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001190 print " <refentrytitle><phrase>enum " . $args{'enum'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001191 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 02:33:43 -07001192 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 print "</refmeta>\n";
1194 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001195 print " <refname>enum " . $args{'enum'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 print " <refpurpose>\n";
1197 print " ";
1198 output_highlight ($args{'purpose'});
1199 print " </refpurpose>\n";
1200 print "</refnamediv>\n";
1201
1202 print "<refsynopsisdiv>\n";
1203 print " <title>Synopsis</title>\n";
1204 print " <programlisting>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001205 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 $count = 0;
1207 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001208 print " $parameter";
1209 if ($count != $#{$args{'parameterlist'}}) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 $count++;
1211 print ",";
Randy Dunlap3c308792007-05-08 00:24:39 -07001212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 print "\n";
1214 }
1215 print "};";
1216 print " </programlisting>\n";
1217 print "</refsynopsisdiv>\n";
1218
1219 print "<refsect1>\n";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001220 print " <title>Constants</title>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 print " <variablelist>\n";
1222 foreach $parameter (@{$args{'parameterlist'}}) {
1223 my $parameter_name = $parameter;
1224 $parameter_name =~ s/\[.*//;
1225
1226 print " <varlistentry>";
1227 print " <term>$parameter</term>\n";
1228 print " <listitem><para>\n";
1229 output_highlight($args{'parameterdescs'}{$parameter_name});
1230 print " </para></listitem>\n";
1231 print " </varlistentry>\n";
1232 }
1233 print " </variablelist>\n";
1234 print "</refsect1>\n";
1235
1236 output_section_xml(@_);
1237
1238 print "</refentry>\n\n";
1239}
1240
1241# output typedef in XML DocBook
1242sub output_typedef_xml(%) {
1243 my %args = %{$_[0]};
1244 my ($parameter, $section);
1245 my $id;
1246
Randy Dunlapb9d973282009-06-09 08:50:38 -07001247 $id = "API-typedef-" . $args{'typedef'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 $id =~ s/[^A-Za-z0-9]/-/g;
1249
Pavel Pisa5449bc92007-02-10 01:45:37 -08001250 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001251 print "<refentryinfo>\n";
1252 print " <title>LINUX</title>\n";
1253 print " <productname>Kernel Hackers Manual</productname>\n";
1254 print " <date>$man_date</date>\n";
1255 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001257 print " <refentrytitle><phrase>typedef " . $args{'typedef'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001258 print " <manvolnum>9</manvolnum>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 print "</refmeta>\n";
1260 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001261 print " <refname>typedef " . $args{'typedef'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 print " <refpurpose>\n";
1263 print " ";
1264 output_highlight ($args{'purpose'});
1265 print " </refpurpose>\n";
1266 print "</refnamediv>\n";
1267
1268 print "<refsynopsisdiv>\n";
1269 print " <title>Synopsis</title>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001270 print " <synopsis>typedef " . $args{'typedef'} . ";</synopsis>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 print "</refsynopsisdiv>\n";
1272
1273 output_section_xml(@_);
1274
1275 print "</refentry>\n\n";
1276}
1277
1278# output in XML DocBook
Johannes Bergb112e0f2007-10-24 15:08:48 -07001279sub output_blockhead_xml(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 my %args = %{$_[0]};
1281 my ($parameter, $section);
1282 my $count;
1283
1284 my $id = $args{'module'};
1285 $id =~ s/[^A-Za-z0-9]/-/g;
1286
1287 # print out each section
1288 $lineprefix=" ";
1289 foreach $section (@{$args{'sectionlist'}}) {
Johannes Bergb112e0f2007-10-24 15:08:48 -07001290 if (!$args{'content-only'}) {
1291 print "<refsect1>\n <title>$section</title>\n";
1292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if ($section =~ m/EXAMPLE/i) {
1294 print "<example><para>\n";
Daniel Santose314ba32012-10-04 17:15:08 -07001295 $output_preformatted = 1;
Johannes Bergb112e0f2007-10-24 15:08:48 -07001296 } else {
1297 print "<para>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299 output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-04 17:15:08 -07001300 $output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 if ($section =~ m/EXAMPLE/i) {
1302 print "</para></example>\n";
Johannes Bergb112e0f2007-10-24 15:08:48 -07001303 } else {
1304 print "</para>";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 }
Johannes Bergb112e0f2007-10-24 15:08:48 -07001306 if (!$args{'content-only'}) {
1307 print "\n</refsect1>\n";
1308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 }
1310
1311 print "\n\n";
1312}
1313
1314# output in XML DocBook
1315sub output_function_gnome {
1316 my %args = %{$_[0]};
1317 my ($parameter, $section);
1318 my $count;
1319 my $id;
1320
Randy Dunlapb9d973282009-06-09 08:50:38 -07001321 $id = $args{'module'} . "-" . $args{'function'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 $id =~ s/[^A-Za-z0-9]/-/g;
1323
1324 print "<sect2>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001325 print " <title id=\"$id\">" . $args{'function'} . "</title>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 print " <funcsynopsis>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001328 print " <funcdef>" . $args{'functiontype'} . " ";
1329 print "<function>" . $args{'function'} . " ";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 print "</function></funcdef>\n";
1331
1332 $count = 0;
1333 if ($#{$args{'parameterlist'}} >= 0) {
1334 foreach $parameter (@{$args{'parameterlist'}}) {
1335 $type = $args{'parametertypes'}{$parameter};
1336 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1337 # pointer-to-function
1338 print " <paramdef>$1 <parameter>$parameter</parameter>)\n";
1339 print " <funcparams>$2</funcparams></paramdef>\n";
1340 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001341 print " <paramdef>" . $type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 print " <parameter>$parameter</parameter></paramdef>\n";
1343 }
1344 }
1345 } else {
1346 print " <void>\n";
1347 }
1348 print " </funcsynopsis>\n";
1349 if ($#{$args{'parameterlist'}} >= 0) {
1350 print " <informaltable pgwide=\"1\" frame=\"none\" role=\"params\">\n";
1351 print "<tgroup cols=\"2\">\n";
1352 print "<colspec colwidth=\"2*\">\n";
1353 print "<colspec colwidth=\"8*\">\n";
1354 print "<tbody>\n";
1355 foreach $parameter (@{$args{'parameterlist'}}) {
1356 my $parameter_name = $parameter;
1357 $parameter_name =~ s/\[.*//;
1358
1359 print " <row><entry align=\"right\"><parameter>$parameter</parameter></entry>\n";
1360 print " <entry>\n";
1361 $lineprefix=" ";
1362 output_highlight($args{'parameterdescs'}{$parameter_name});
1363 print " </entry></row>\n";
1364 }
1365 print " </tbody></tgroup></informaltable>\n";
1366 } else {
1367 print " <para>\n None\n </para>\n";
1368 }
1369
1370 # print out each section
1371 $lineprefix=" ";
1372 foreach $section (@{$args{'sectionlist'}}) {
1373 print "<simplesect>\n <title>$section</title>\n";
1374 if ($section =~ m/EXAMPLE/i) {
1375 print "<example><programlisting>\n";
Daniel Santose314ba32012-10-04 17:15:08 -07001376 $output_preformatted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 } else {
1378 }
1379 print "<para>\n";
1380 output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-04 17:15:08 -07001381 $output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 print "</para>\n";
1383 if ($section =~ m/EXAMPLE/i) {
1384 print "</programlisting></example>\n";
1385 } else {
1386 }
1387 print " </simplesect>\n";
1388 }
1389
1390 print "</sect2>\n\n";
1391}
1392
1393##
1394# output function in man
1395sub output_function_man(%) {
1396 my %args = %{$_[0]};
1397 my ($parameter, $section);
1398 my $count;
1399
1400 print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n";
1401
1402 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001403 print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405 print ".SH SYNOPSIS\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001406 if ($args{'functiontype'} ne "") {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001407 print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001408 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001409 print ".B \"" . $args{'function'} . "\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 $count = 0;
1412 my $parenth = "(";
1413 my $post = ",";
1414 foreach my $parameter (@{$args{'parameterlist'}}) {
1415 if ($count == $#{$args{'parameterlist'}}) {
1416 $post = ");";
1417 }
1418 $type = $args{'parametertypes'}{$parameter};
1419 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1420 # pointer-to-function
Randy Dunlapb9d973282009-06-09 08:50:38 -07001421 print ".BI \"" . $parenth . $1 . "\" " . $parameter . " \") (" . $2 . ")" . $post . "\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 } else {
1423 $type =~ s/([^\*])$/$1 /;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001424 print ".BI \"" . $parenth . $type . "\" " . $parameter . " \"" . $post . "\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 }
1426 $count++;
1427 $parenth = "";
1428 }
1429
1430 print ".SH ARGUMENTS\n";
1431 foreach $parameter (@{$args{'parameterlist'}}) {
1432 my $parameter_name = $parameter;
1433 $parameter_name =~ s/\[.*//;
1434
Randy Dunlapb9d973282009-06-09 08:50:38 -07001435 print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 output_highlight($args{'parameterdescs'}{$parameter_name});
1437 }
1438 foreach $section (@{$args{'sectionlist'}}) {
1439 print ".SH \"", uc $section, "\"\n";
1440 output_highlight($args{'sections'}{$section});
1441 }
1442}
1443
1444##
1445# output enum in man
1446sub output_enum_man(%) {
1447 my %args = %{$_[0]};
1448 my ($parameter, $section);
1449 my $count;
1450
1451 print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n";
1452
1453 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001454 print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 print ".SH SYNOPSIS\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001457 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 $count = 0;
1459 foreach my $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001460 print ".br\n.BI \" $parameter\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 if ($count == $#{$args{'parameterlist'}}) {
1462 print "\n};\n";
1463 last;
1464 }
1465 else {
1466 print ", \n.br\n";
1467 }
1468 $count++;
1469 }
1470
1471 print ".SH Constants\n";
1472 foreach $parameter (@{$args{'parameterlist'}}) {
1473 my $parameter_name = $parameter;
1474 $parameter_name =~ s/\[.*//;
1475
Randy Dunlapb9d973282009-06-09 08:50:38 -07001476 print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 output_highlight($args{'parameterdescs'}{$parameter_name});
1478 }
1479 foreach $section (@{$args{'sectionlist'}}) {
1480 print ".SH \"$section\"\n";
1481 output_highlight($args{'sections'}{$section});
1482 }
1483}
1484
1485##
1486# output struct in man
1487sub output_struct_man(%) {
1488 my %args = %{$_[0]};
1489 my ($parameter, $section);
1490
Randy Dunlapb9d973282009-06-09 08:50:38 -07001491 print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
1493 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001494 print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 print ".SH SYNOPSIS\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001497 print $args{'type'} . " " . $args{'struct'} . " {\n.br\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 foreach my $parameter (@{$args{'parameterlist'}}) {
1500 if ($parameter =~ /^#/) {
1501 print ".BI \"$parameter\"\n.br\n";
1502 next;
1503 }
1504 my $parameter_name = $parameter;
1505 $parameter_name =~ s/\[.*//;
1506
Randy Dunlap3c308792007-05-08 00:24:39 -07001507 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 $type = $args{'parametertypes'}{$parameter};
1509 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1510 # pointer-to-function
Randy Dunlapb9d973282009-06-09 08:50:38 -07001511 print ".BI \" " . $1 . "\" " . $parameter . " \") (" . $2 . ")" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy.Dunlap1d7e1d42006-07-01 04:36:34 -07001513 # bitfield
Randy Dunlapb9d973282009-06-09 08:50:38 -07001514 print ".BI \" " . $1 . "\ \" " . $parameter . $2 . " \"" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 } else {
1516 $type =~ s/([^\*])$/$1 /;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001517 print ".BI \" " . $type . "\" " . $parameter . " \"" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 }
1519 print "\n.br\n";
1520 }
1521 print "};\n.br\n";
1522
Randy Dunlapc51d3da2006-06-25 05:49:14 -07001523 print ".SH Members\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 foreach $parameter (@{$args{'parameterlist'}}) {
1525 ($parameter =~ /^#/) && next;
1526
1527 my $parameter_name = $parameter;
1528 $parameter_name =~ s/\[.*//;
1529
Randy Dunlap3c308792007-05-08 00:24:39 -07001530 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001531 print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 output_highlight($args{'parameterdescs'}{$parameter_name});
1533 }
1534 foreach $section (@{$args{'sectionlist'}}) {
1535 print ".SH \"$section\"\n";
1536 output_highlight($args{'sections'}{$section});
1537 }
1538}
1539
1540##
1541# output typedef in man
1542sub output_typedef_man(%) {
1543 my %args = %{$_[0]};
1544 my ($parameter, $section);
1545
1546 print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n";
1547
1548 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001549 print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551 foreach $section (@{$args{'sectionlist'}}) {
1552 print ".SH \"$section\"\n";
1553 output_highlight($args{'sections'}{$section});
1554 }
1555}
1556
Johannes Bergb112e0f2007-10-24 15:08:48 -07001557sub output_blockhead_man(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 my %args = %{$_[0]};
1559 my ($parameter, $section);
1560 my $count;
1561
1562 print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n";
1563
1564 foreach $section (@{$args{'sectionlist'}}) {
1565 print ".SH \"$section\"\n";
1566 output_highlight($args{'sections'}{$section});
1567 }
1568}
1569
1570##
1571# output in text
1572sub output_function_text(%) {
1573 my %args = %{$_[0]};
1574 my ($parameter, $section);
Randy Dunlapa21217d2007-02-10 01:46:04 -08001575 my $start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Randy Dunlapf47634b2006-07-01 04:36:36 -07001577 print "Name:\n\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001578 print $args{'function'} . " - " . $args{'purpose'} . "\n";
Randy Dunlapf47634b2006-07-01 04:36:36 -07001579
1580 print "\nSynopsis:\n\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001581 if ($args{'functiontype'} ne "") {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001582 $start = $args{'functiontype'} . " " . $args{'function'} . " (";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001583 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001584 $start = $args{'function'} . " (";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 print $start;
Randy Dunlapa21217d2007-02-10 01:46:04 -08001587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 my $count = 0;
1589 foreach my $parameter (@{$args{'parameterlist'}}) {
1590 $type = $args{'parametertypes'}{$parameter};
1591 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1592 # pointer-to-function
Randy Dunlapb9d973282009-06-09 08:50:38 -07001593 print $1 . $parameter . ") (" . $2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001595 print $type . " " . $parameter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 }
1597 if ($count != $#{$args{'parameterlist'}}) {
1598 $count++;
1599 print ",\n";
1600 print " " x length($start);
1601 } else {
1602 print ");\n\n";
1603 }
1604 }
1605
1606 print "Arguments:\n\n";
1607 foreach $parameter (@{$args{'parameterlist'}}) {
1608 my $parameter_name = $parameter;
1609 $parameter_name =~ s/\[.*//;
1610
Randy Dunlapb9d973282009-06-09 08:50:38 -07001611 print $parameter . "\n\t" . $args{'parameterdescs'}{$parameter_name} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 }
1613 output_section_text(@_);
1614}
1615
1616#output sections in text
1617sub output_section_text(%) {
1618 my %args = %{$_[0]};
1619 my $section;
1620
1621 print "\n";
1622 foreach $section (@{$args{'sectionlist'}}) {
1623 print "$section:\n\n";
1624 output_highlight($args{'sections'}{$section});
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 print "\n\n";
1627}
1628
1629# output enum in text
1630sub output_enum_text(%) {
1631 my %args = %{$_[0]};
1632 my ($parameter);
1633 my $count;
1634 print "Enum:\n\n";
1635
Randy Dunlapb9d973282009-06-09 08:50:38 -07001636 print "enum " . $args{'enum'} . " - " . $args{'purpose'} . "\n\n";
1637 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 $count = 0;
1639 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001640 print "\t$parameter";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 if ($count != $#{$args{'parameterlist'}}) {
1642 $count++;
1643 print ",";
1644 }
1645 print "\n";
1646 }
1647 print "};\n\n";
1648
1649 print "Constants:\n\n";
1650 foreach $parameter (@{$args{'parameterlist'}}) {
1651 print "$parameter\n\t";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001652 print $args{'parameterdescs'}{$parameter} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 }
1654
1655 output_section_text(@_);
1656}
1657
1658# output typedef in text
1659sub output_typedef_text(%) {
1660 my %args = %{$_[0]};
1661 my ($parameter);
1662 my $count;
1663 print "Typedef:\n\n";
1664
Randy Dunlapb9d973282009-06-09 08:50:38 -07001665 print "typedef " . $args{'typedef'} . " - " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 output_section_text(@_);
1667}
1668
1669# output struct as text
1670sub output_struct_text(%) {
1671 my %args = %{$_[0]};
1672 my ($parameter);
1673
Randy Dunlapb9d973282009-06-09 08:50:38 -07001674 print $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "\n\n";
1675 print $args{'type'} . " " . $args{'struct'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 foreach $parameter (@{$args{'parameterlist'}}) {
1677 if ($parameter =~ /^#/) {
1678 print "$parameter\n";
1679 next;
1680 }
1681
1682 my $parameter_name = $parameter;
1683 $parameter_name =~ s/\[.*//;
1684
Randy Dunlap3c308792007-05-08 00:24:39 -07001685 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 $type = $args{'parametertypes'}{$parameter};
1687 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1688 # pointer-to-function
1689 print "\t$1 $parameter) ($2);\n";
1690 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07001691 # bitfield
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 print "\t$1 $parameter$2;\n";
1693 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001694 print "\t" . $type . " " . $parameter . ";\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 }
1696 }
1697 print "};\n\n";
1698
1699 print "Members:\n\n";
1700 foreach $parameter (@{$args{'parameterlist'}}) {
1701 ($parameter =~ /^#/) && next;
1702
1703 my $parameter_name = $parameter;
1704 $parameter_name =~ s/\[.*//;
1705
Randy Dunlap3c308792007-05-08 00:24:39 -07001706 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 print "$parameter\n\t";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001708 print $args{'parameterdescs'}{$parameter_name} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
1710 print "\n";
1711 output_section_text(@_);
1712}
1713
Johannes Bergb112e0f2007-10-24 15:08:48 -07001714sub output_blockhead_text(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 my %args = %{$_[0]};
1716 my ($parameter, $section);
1717
1718 foreach $section (@{$args{'sectionlist'}}) {
1719 print " $section:\n";
1720 print " -> ";
1721 output_highlight($args{'sections'}{$section});
1722 }
1723}
1724
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001725##
1726# output in restructured text
1727#
1728
1729#
1730# This could use some work; it's used to output the DOC: sections, and
1731# starts by putting out the name of the doc section itself, but that tends
1732# to duplicate a header already in the template file.
1733#
1734sub output_blockhead_rst(%) {
1735 my %args = %{$_[0]};
1736 my ($parameter, $section);
1737
1738 foreach $section (@{$args{'sectionlist'}}) {
1739 print "**$section**\n\n";
1740 output_highlight_rst($args{'sections'}{$section});
1741 print "\n";
1742 }
1743}
1744
1745sub output_highlight_rst {
1746 my $contents = join "\n",@_;
1747 my $line;
1748
1749 # undo the evil effects of xml_escape() earlier
1750 $contents = xml_unescape($contents);
1751
1752 eval $dohighlight;
1753 die $@ if $@;
1754
1755 foreach $line (split "\n", $contents) {
1756 if ($line eq "") {
1757 print $lineprefix, $blankline;
1758 } else {
1759 $line =~ s/\\\\\\/\&/g;
1760 print $lineprefix, $line;
1761 }
1762 print "\n";
1763 }
1764}
1765
1766sub output_function_rst(%) {
1767 my %args = %{$_[0]};
1768 my ($parameter, $section);
1769 my $start;
1770
1771 print ".. c:function:: ";
1772 if ($args{'functiontype'} ne "") {
1773 $start = $args{'functiontype'} . " " . $args{'function'} . " (";
1774 } else {
1775 $start = $args{'function'} . " (";
1776 }
1777 print $start;
1778
1779 my $count = 0;
1780 foreach my $parameter (@{$args{'parameterlist'}}) {
1781 if ($count ne 0) {
1782 print ", ";
1783 }
1784 $count++;
1785 $type = $args{'parametertypes'}{$parameter};
1786 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1787 # pointer-to-function
1788 print $1 . $parameter . ") (" . $2;
1789 } else {
1790 print $type . " " . $parameter;
1791 }
1792 }
1793 print ")\n\n " . $args{'purpose'} . "\n\n";
1794
1795 print ":Parameters:\n\n";
1796 foreach $parameter (@{$args{'parameterlist'}}) {
1797 my $parameter_name = $parameter;
1798 #$parameter_name =~ s/\[.*//;
1799 $type = $args{'parametertypes'}{$parameter};
1800
1801 if ($type ne "") {
1802 print " ``$type $parameter``\n";
1803 } else {
1804 print " ``$parameter``\n";
1805 }
1806 if ($args{'parameterdescs'}{$parameter_name} ne $undescribed) {
1807 my $oldprefix = $lineprefix;
1808 $lineprefix = " ";
1809 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
1810 $lineprefix = $oldprefix;
1811 } else {
1812 print "\n _undescribed_\n";
1813 }
1814 print "\n";
1815 }
1816 output_section_rst(@_);
1817}
1818
1819sub output_section_rst(%) {
1820 my %args = %{$_[0]};
1821 my $section;
1822 my $oldprefix = $lineprefix;
1823 $lineprefix = " ";
1824
1825 foreach $section (@{$args{'sectionlist'}}) {
1826 print ":$section:\n\n";
1827 output_highlight_rst($args{'sections'}{$section});
1828 print "\n";
1829 }
1830 print "\n";
1831 $lineprefix = $oldprefix;
1832}
1833
1834sub output_enum_rst(%) {
1835 my %args = %{$_[0]};
1836 my ($parameter);
1837 my $count;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001838 my $name = "enum " . $args{'enum'};
Jani Nikula62850972016-05-12 16:15:38 +03001839
1840 print "\n\n.. c:type:: " . $name . "\n\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001841 print " " . $args{'purpose'} . "\n\n";
1842
1843 print "..\n\n:Constants:\n\n";
1844 my $oldprefix = $lineprefix;
1845 $lineprefix = " ";
1846 foreach $parameter (@{$args{'parameterlist'}}) {
1847 print " `$parameter`\n";
1848 if ($args{'parameterdescs'}{$parameter} ne $undescribed) {
1849 output_highlight_rst($args{'parameterdescs'}{$parameter});
1850 } else {
1851 print " undescribed\n";
1852 }
1853 print "\n";
1854 }
1855 $lineprefix = $oldprefix;
1856 output_section_rst(@_);
1857}
1858
1859sub output_typedef_rst(%) {
1860 my %args = %{$_[0]};
1861 my ($parameter);
1862 my $count;
1863 my $name = "typedef " . $args{'typedef'};
1864
Jani Nikula62850972016-05-12 16:15:38 +03001865 ### FIXME: should the name below contain "typedef" or not?
1866 print "\n\n.. c:type:: " . $name . "\n\n";
1867 print " " . $args{'purpose'} . "\n\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001868
1869 output_section_rst(@_);
1870}
1871
1872sub output_struct_rst(%) {
1873 my %args = %{$_[0]};
1874 my ($parameter);
1875 my $name = $args{'type'} . " " . $args{'struct'};
1876
Jani Nikula62850972016-05-12 16:15:38 +03001877 print "\n\n.. c:type:: " . $name . "\n\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001878 print " " . $args{'purpose'} . "\n\n";
1879
1880 print ":Definition:\n\n";
1881 print " ::\n\n";
1882 print " " . $args{'type'} . " " . $args{'struct'} . " {\n";
1883 foreach $parameter (@{$args{'parameterlist'}}) {
1884 if ($parameter =~ /^#/) {
1885 print " " . "$parameter\n";
1886 next;
1887 }
1888
1889 my $parameter_name = $parameter;
1890 $parameter_name =~ s/\[.*//;
1891
1892 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1893 $type = $args{'parametertypes'}{$parameter};
1894 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1895 # pointer-to-function
1896 print " $1 $parameter) ($2);\n";
1897 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
1898 # bitfield
1899 print " $1 $parameter$2;\n";
1900 } else {
1901 print " " . $type . " " . $parameter . ";\n";
1902 }
1903 }
1904 print " };\n\n";
1905
1906 print ":Members:\n\n";
1907 foreach $parameter (@{$args{'parameterlist'}}) {
1908 ($parameter =~ /^#/) && next;
1909
1910 my $parameter_name = $parameter;
1911 $parameter_name =~ s/\[.*//;
1912
1913 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1914 $type = $args{'parametertypes'}{$parameter};
1915 print " `$type $parameter`" . "\n";
1916 my $oldprefix = $lineprefix;
1917 $lineprefix = " ";
1918 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
1919 $lineprefix = $oldprefix;
1920 print "\n";
1921 }
1922 print "\n";
1923 output_section_rst(@_);
1924}
1925
1926
Johannes Bergeda603f2010-09-11 15:55:22 -07001927## list mode output functions
1928
1929sub output_function_list(%) {
1930 my %args = %{$_[0]};
1931
1932 print $args{'function'} . "\n";
1933}
1934
1935# output enum in list
1936sub output_enum_list(%) {
1937 my %args = %{$_[0]};
1938 print $args{'enum'} . "\n";
1939}
1940
1941# output typedef in list
1942sub output_typedef_list(%) {
1943 my %args = %{$_[0]};
1944 print $args{'typedef'} . "\n";
1945}
1946
1947# output struct as list
1948sub output_struct_list(%) {
1949 my %args = %{$_[0]};
1950
1951 print $args{'struct'} . "\n";
1952}
1953
1954sub output_blockhead_list(%) {
1955 my %args = %{$_[0]};
1956 my ($parameter, $section);
1957
1958 foreach $section (@{$args{'sectionlist'}}) {
1959 print "DOC: $section\n";
1960 }
1961}
1962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963##
Randy Dunlap27205742006-10-11 01:22:12 -07001964# generic output function for all types (function, struct/union, typedef, enum);
1965# calls the generated, variable output_ function name based on
1966# functype and output_mode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967sub output_declaration {
1968 no strict 'refs';
1969 my $name = shift;
1970 my $functype = shift;
1971 my $func = "output_${functype}_$output_mode";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001972 if (($function_only==0) ||
1973 ( $function_only == 1 && defined($function_table{$name})) ||
Danilo Cesar Lemes de Paula23aebb32015-09-01 14:44:14 -03001974 ( $function_only == 2 && !($functype eq "function" && defined($function_table{$name}))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 {
Randy Dunlap3c308792007-05-08 00:24:39 -07001976 &$func(@_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 $section_counter++;
1978 }
1979}
1980
1981##
Randy Dunlap27205742006-10-11 01:22:12 -07001982# generic output function - calls the right one based on current output mode.
Johannes Bergb112e0f2007-10-24 15:08:48 -07001983sub output_blockhead {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 no strict 'refs';
Randy Dunlapb9d973282009-06-09 08:50:38 -07001985 my $func = "output_blockhead_" . $output_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 &$func(@_);
1987 $section_counter++;
1988}
1989
1990##
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001991# takes a declaration (struct, union, enum, typedef) and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992# invokes the right handler. NOT called for functions.
1993sub dump_declaration($$) {
1994 no strict 'refs';
1995 my ($prototype, $file) = @_;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001996 my $func = "dump_" . $decl_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 &$func(@_);
1998}
1999
2000sub dump_union($$) {
2001 dump_struct(@_);
2002}
2003
2004sub dump_struct($$) {
2005 my $x = shift;
2006 my $file = shift;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002007 my $nested;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Randy Dunlap52dc5ae2009-04-30 15:08:53 -07002009 if ($x =~ /(struct|union)\s+(\w+)\s*{(.*)}/) {
2010 #my $decl_type = $1;
Randy Dunlap3c308792007-05-08 00:24:39 -07002011 $declaration_name = $2;
2012 my $members = $3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
2014 # ignore embedded structs or unions
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002015 $members =~ s/({.*})//g;
2016 $nested = $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Martin Waitzaeec46b2005-11-13 16:08:13 -08002018 # ignore members marked private:
Mauro Carvalho Chehab0d8c39e2015-10-05 09:03:48 -03002019 $members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi;
2020 $members =~ s/\/\*\s*private:.*//gosi;
Martin Waitzaeec46b2005-11-13 16:08:13 -08002021 # strip comments:
2022 $members =~ s/\/\*.*?\*\///gos;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002023 $nested =~ s/\/\*.*?\*\///gos;
Randy Dunlapd960eea2009-06-29 14:54:11 -07002024 # strip kmemcheck_bitfield_{begin,end}.*;
2025 $members =~ s/kmemcheck_bitfield_.*?;//gos;
Randy Dunlapef5da592010-03-23 13:35:14 -07002026 # strip attributes
Jonathan Corbetf0074922015-08-23 13:35:23 -06002027 $members =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
Johannes Berg7b990782014-12-10 15:41:28 -08002028 $members =~ s/__aligned\s*\([^;]*\)//gos;
Jonathan Corbetf0074922015-08-23 13:35:23 -06002029 $members =~ s/\s*CRYPTO_MINALIGN_ATTR//gos;
Conchúr Navidb22b5a92015-11-08 10:52:00 +01002030 # replace DECLARE_BITMAP
2031 $members =~ s/DECLARE_BITMAP\s*\(([^,)]+), ([^,)]+)\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos;
Martin Waitzaeec46b2005-11-13 16:08:13 -08002032
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 create_parameterlist($members, ';', $file);
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002034 check_sections($file, $declaration_name, "struct", $sectcheck, $struct_actual, $nested);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036 output_declaration($declaration_name,
2037 'struct',
2038 {'struct' => $declaration_name,
2039 'module' => $modulename,
2040 'parameterlist' => \@parameterlist,
2041 'parameterdescs' => \%parameterdescs,
2042 'parametertypes' => \%parametertypes,
2043 'sectionlist' => \@sectionlist,
2044 'sections' => \%sections,
2045 'purpose' => $declaration_purpose,
2046 'type' => $decl_type
2047 });
2048 }
2049 else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002050 print STDERR "${file}:$.: error: Cannot parse struct or union!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 ++$errors;
2052 }
2053}
2054
2055sub dump_enum($$) {
2056 my $x = shift;
2057 my $file = shift;
2058
Martin Waitzaeec46b2005-11-13 16:08:13 -08002059 $x =~ s@/\*.*?\*/@@gos; # strip comments.
Conchúr Navid4468e212015-11-08 10:48:05 +01002060 # strip #define macros inside enums
2061 $x =~ s@#\s*((define|ifdef)\s+|endif)[^;]*;@@gos;
Randy Dunlapb6d676d2010-08-10 18:02:50 -07002062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 if ($x =~ /enum\s+(\w+)\s*{(.*)}/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002064 $declaration_name = $1;
2065 my $members = $2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
2067 foreach my $arg (split ',', $members) {
2068 $arg =~ s/^\s*(\w+).*/$1/;
2069 push @parameterlist, $arg;
2070 if (!$parameterdescs{$arg}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002071 $parameterdescs{$arg} = $undescribed;
Bart Van Assched40e1e62015-09-04 15:43:21 -07002072 print STDERR "${file}:$.: warning: Enum value '$arg' ".
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 "not described in enum '$declaration_name'\n";
2074 }
2075
2076 }
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 output_declaration($declaration_name,
2079 'enum',
2080 {'enum' => $declaration_name,
2081 'module' => $modulename,
2082 'parameterlist' => \@parameterlist,
2083 'parameterdescs' => \%parameterdescs,
2084 'sectionlist' => \@sectionlist,
2085 'sections' => \%sections,
2086 'purpose' => $declaration_purpose
2087 });
2088 }
2089 else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002090 print STDERR "${file}:$.: error: Cannot parse enum!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 ++$errors;
2092 }
2093}
2094
2095sub dump_typedef($$) {
2096 my $x = shift;
2097 my $file = shift;
2098
Martin Waitzaeec46b2005-11-13 16:08:13 -08002099 $x =~ s@/\*.*?\*/@@gos; # strip comments.
Mauro Carvalho Chehab83766452015-10-08 16:14:45 -03002100
2101 # Parse function prototypes
2102 if ($x =~ /typedef\s+(\w+)\s*\(\*\s*(\w\S+)\s*\)\s*\((.*)\);/) {
2103 # Function typedefs
2104 $return_type = $1;
2105 $declaration_name = $2;
2106 my $args = $3;
2107
2108 create_parameterlist($args, ',', $file);
2109
2110 output_declaration($declaration_name,
2111 'function',
2112 {'function' => $declaration_name,
2113 'module' => $modulename,
2114 'functiontype' => $return_type,
2115 'parameterlist' => \@parameterlist,
2116 'parameterdescs' => \%parameterdescs,
2117 'parametertypes' => \%parametertypes,
2118 'sectionlist' => \@sectionlist,
2119 'sections' => \%sections,
2120 'purpose' => $declaration_purpose
2121 });
2122 return;
2123 }
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002126 $x =~ s/\(*.\)\s*;$/;/;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 $x =~ s/\[*.\]\s*;$/;/;
2128 }
2129
2130 if ($x =~ /typedef.*\s+(\w+)\s*;/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002131 $declaration_name = $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133 output_declaration($declaration_name,
2134 'typedef',
2135 {'typedef' => $declaration_name,
2136 'module' => $modulename,
2137 'sectionlist' => \@sectionlist,
2138 'sections' => \%sections,
2139 'purpose' => $declaration_purpose
2140 });
2141 }
2142 else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002143 print STDERR "${file}:$.: error: Cannot parse typedef!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 ++$errors;
2145 }
2146}
2147
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002148sub save_struct_actual($) {
2149 my $actual = shift;
2150
2151 # strip all spaces from the actual param so that it looks like one string item
2152 $actual =~ s/\s*//g;
2153 $struct_actual = $struct_actual . $actual . " ";
2154}
2155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156sub create_parameterlist($$$) {
2157 my $args = shift;
2158 my $splitter = shift;
2159 my $file = shift;
2160 my $type;
2161 my $param;
2162
Martin Waitza6d3fe72006-01-09 20:53:55 -08002163 # temporarily replace commas inside function pointer definition
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 while ($args =~ /(\([^\),]+),/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002165 $args =~ s/(\([^\),]+),/$1#/g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 }
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002167
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 foreach my $arg (split($splitter, $args)) {
2169 # strip comments
2170 $arg =~ s/\/\*.*\*\///;
Randy Dunlap3c308792007-05-08 00:24:39 -07002171 # strip leading/trailing spaces
2172 $arg =~ s/^\s*//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 $arg =~ s/\s*$//;
2174 $arg =~ s/\s+/ /;
2175
2176 if ($arg =~ /^#/) {
2177 # Treat preprocessor directive as a typeless variable just to fill
2178 # corresponding data structures "correctly". Catch it later in
2179 # output_* subs.
2180 push_parameter($arg, "", $file);
Richard Kennedy00d62962008-02-23 15:24:01 -08002181 } elsif ($arg =~ m/\(.+\)\s*\(/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 # pointer-to-function
2183 $arg =~ tr/#/,/;
Richard Kennedy00d62962008-02-23 15:24:01 -08002184 $arg =~ m/[^\(]+\(\*?\s*(\w*)\s*\)/;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 $param = $1;
2186 $type = $arg;
Richard Kennedy00d62962008-02-23 15:24:01 -08002187 $type =~ s/([^\(]+\(\*?)\s*$param/$1/;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002188 save_struct_actual($param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 push_parameter($param, $type, $file);
Martin Waitzaeec46b2005-11-13 16:08:13 -08002190 } elsif ($arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 $arg =~ s/\s*:\s*/:/g;
2192 $arg =~ s/\s*\[/\[/g;
2193
2194 my @args = split('\s*,\s*', $arg);
2195 if ($args[0] =~ m/\*/) {
2196 $args[0] =~ s/(\*+)\s*/ $1/;
2197 }
Borislav Petkov884f2812007-05-08 00:29:05 -07002198
2199 my @first_arg;
2200 if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) {
2201 shift @args;
2202 push(@first_arg, split('\s+', $1));
2203 push(@first_arg, $2);
2204 } else {
2205 @first_arg = split('\s+', shift @args);
2206 }
2207
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 unshift(@args, pop @first_arg);
2209 $type = join " ", @first_arg;
2210
2211 foreach $param (@args) {
2212 if ($param =~ m/^(\*+)\s*(.*)/) {
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002213 save_struct_actual($2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 push_parameter($2, "$type $1", $file);
2215 }
2216 elsif ($param =~ m/(.*?):(\d+)/) {
Randy Dunlap7b978872008-05-16 15:45:52 -07002217 if ($type ne "") { # skip unnamed bit-fields
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002218 save_struct_actual($1);
Randy Dunlap7b978872008-05-16 15:45:52 -07002219 push_parameter($1, "$type:$2", $file)
2220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 }
2222 else {
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002223 save_struct_actual($param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 push_parameter($param, $type, $file);
2225 }
2226 }
2227 }
2228 }
2229}
2230
2231sub push_parameter($$$) {
2232 my $param = shift;
2233 my $type = shift;
2234 my $file = shift;
2235
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07002236 if (($anon_struct_union == 1) && ($type eq "") &&
2237 ($param eq "}")) {
2238 return; # ignore the ending }; from anon. struct/union
2239 }
2240
2241 $anon_struct_union = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 my $param_name = $param;
2243 $param_name =~ s/\[.*//;
2244
Martin Waitza6d3fe72006-01-09 20:53:55 -08002245 if ($type eq "" && $param =~ /\.\.\.$/)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 {
Randy Dunlapced69092008-12-01 13:14:03 -08002247 if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") {
2248 $parameterdescs{$param} = "variable arguments";
2249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 }
2251 elsif ($type eq "" && ($param eq "" or $param eq "void"))
2252 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 $param="void";
2254 $parameterdescs{void} = "no arguments";
2255 }
Randy Dunlap134fe012006-12-22 01:10:50 -08002256 elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
2257 # handle unnamed (anonymous) union or struct:
2258 {
2259 $type = $param;
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07002260 $param = "{unnamed_" . $param . "}";
Randy Dunlap134fe012006-12-22 01:10:50 -08002261 $parameterdescs{$param} = "anonymous\n";
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07002262 $anon_struct_union = 1;
Randy Dunlap134fe012006-12-22 01:10:50 -08002263 }
2264
Martin Waitza6d3fe72006-01-09 20:53:55 -08002265 # warn if parameter has no description
Randy Dunlap134fe012006-12-22 01:10:50 -08002266 # (but ignore ones starting with # as these are not parameters
2267 # but inline preprocessor statements);
2268 # also ignore unnamed structs/unions;
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07002269 if (!$anon_struct_union) {
Martin Waitza6d3fe72006-01-09 20:53:55 -08002270 if (!defined $parameterdescs{$param_name} && $param_name !~ /^#/) {
2271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 $parameterdescs{$param_name} = $undescribed;
2273
2274 if (($type eq 'function') || ($type eq 'enum')) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002275 print STDERR "${file}:$.: warning: Function parameter ".
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 "or member '$param' not " .
2277 "described in '$declaration_name'\n";
2278 }
Bart Van Assched40e1e62015-09-04 15:43:21 -07002279 print STDERR "${file}:$.: warning:" .
Randy Dunlap3c308792007-05-08 00:24:39 -07002280 " No description found for parameter '$param'\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 ++$warnings;
Randy Dunlap3c308792007-05-08 00:24:39 -07002282 }
2283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Randy Dunlap2b35f4d2010-11-18 12:27:31 -08002285 $param = xml_escape($param);
2286
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002287 # strip spaces from $param so that it is one continuous string
Randy Dunlape34e7db2009-06-17 17:37:47 -07002288 # on @parameterlist;
2289 # this fixes a problem where check_sections() cannot find
2290 # a parameter like "addr[6 + 2]" because it actually appears
2291 # as "addr[6", "+", "2]" on the parameter list;
2292 # but it's better to maintain the param string unchanged for output,
2293 # so just weaken the string compare in check_sections() to ignore
2294 # "[blah" in a parameter string;
2295 ###$param =~ s/\s*//g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 push @parameterlist, $param;
2297 $parametertypes{$param} = $type;
2298}
2299
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002300sub check_sections($$$$$$) {
2301 my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck, $nested) = @_;
2302 my @sects = split ' ', $sectcheck;
2303 my @prms = split ' ', $prmscheck;
2304 my $err;
2305 my ($px, $sx);
2306 my $prm_clean; # strip trailing "[array size]" and/or beginning "*"
2307
2308 foreach $sx (0 .. $#sects) {
2309 $err = 1;
2310 foreach $px (0 .. $#prms) {
2311 $prm_clean = $prms[$px];
2312 $prm_clean =~ s/\[.*\]//;
Johannes Berg1f3a6682010-09-11 15:55:12 -07002313 $prm_clean =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
Randy Dunlape34e7db2009-06-17 17:37:47 -07002314 # ignore array size in a parameter string;
2315 # however, the original param string may contain
2316 # spaces, e.g.: addr[6 + 2]
2317 # and this appears in @prms as "addr[6" since the
2318 # parameter list is split at spaces;
2319 # hence just ignore "[..." for the sections check;
2320 $prm_clean =~ s/\[.*//;
2321
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002322 ##$prm_clean =~ s/^\**//;
2323 if ($prm_clean eq $sects[$sx]) {
2324 $err = 0;
2325 last;
2326 }
2327 }
2328 if ($err) {
2329 if ($decl_type eq "function") {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002330 print STDERR "${file}:$.: warning: " .
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002331 "Excess function parameter " .
2332 "'$sects[$sx]' " .
2333 "description in '$decl_name'\n";
2334 ++$warnings;
2335 } else {
2336 if ($nested !~ m/\Q$sects[$sx]\E/) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002337 print STDERR "${file}:$.: warning: " .
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002338 "Excess struct/union/enum/typedef member " .
2339 "'$sects[$sx]' " .
2340 "description in '$decl_name'\n";
2341 ++$warnings;
2342 }
2343 }
2344 }
2345 }
2346}
2347
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348##
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002349# Checks the section describing the return value of a function.
2350sub check_return_section {
2351 my $file = shift;
2352 my $declaration_name = shift;
2353 my $return_type = shift;
2354
2355 # Ignore an empty return type (It's a macro)
2356 # Ignore functions with a "void" return type. (But don't ignore "void *")
2357 if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) {
2358 return;
2359 }
2360
2361 if (!defined($sections{$section_return}) ||
2362 $sections{$section_return} eq "") {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002363 print STDERR "${file}:$.: warning: " .
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002364 "No description found for return value of " .
2365 "'$declaration_name'\n";
2366 ++$warnings;
2367 }
2368}
2369
2370##
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371# takes a function prototype and the name of the current file being
2372# processed and spits out all the details stored in the global
2373# arrays/hashes.
2374sub dump_function($$) {
2375 my $prototype = shift;
2376 my $file = shift;
Horia Geantacbb4d3e2014-07-12 09:55:03 -07002377 my $noret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
2379 $prototype =~ s/^static +//;
2380 $prototype =~ s/^extern +//;
Pavel Pisa4dc3b162005-05-01 08:59:25 -07002381 $prototype =~ s/^asmlinkage +//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 $prototype =~ s/^inline +//;
2383 $prototype =~ s/^__inline__ +//;
Randy Dunlap32e79402006-10-11 01:22:10 -07002384 $prototype =~ s/^__inline +//;
2385 $prototype =~ s/^__always_inline +//;
2386 $prototype =~ s/^noinline +//;
Randy Dunlap74fc5c62008-06-19 16:03:29 -07002387 $prototype =~ s/__init +//;
Randy Dunlap20072202010-03-23 13:35:24 -07002388 $prototype =~ s/__init_or_module +//;
Randy Dunlap270a0092014-08-24 18:17:17 -07002389 $prototype =~ s/__meminit +//;
Randy Dunlap70c95b02012-01-21 10:31:54 -08002390 $prototype =~ s/__must_check +//;
Randy Dunlap0df7c0e2012-08-16 16:23:20 -07002391 $prototype =~ s/__weak +//;
Horia Geantacbb4d3e2014-07-12 09:55:03 -07002392 my $define = $prototype =~ s/^#\s*define\s+//; #ak added
Randy Dunlap328d2442007-02-28 20:12:10 -08002393 $prototype =~ s/__attribute__\s*\(\([a-z,]*\)\)//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
2395 # Yes, this truly is vile. We are looking for:
2396 # 1. Return type (may be nothing if we're looking at a macro)
2397 # 2. Function name
2398 # 3. Function parameters.
2399 #
2400 # All the while we have to watch out for function pointer parameters
2401 # (which IIRC is what the two sections are for), C types (these
2402 # regexps don't even start to express all the possibilities), and
2403 # so on.
2404 #
2405 # If you mess with these regexps, it's a good idea to check that
2406 # the following functions' documentation still comes out right:
2407 # - parport_register_device (function pointer parameters)
2408 # - atomic_set (macro)
Martin Waitz9598f912006-02-01 03:06:55 -08002409 # - pci_match_device, __copy_to_user (long return type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Horia Geantacbb4d3e2014-07-12 09:55:03 -07002411 if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) {
2412 # This is an object-like macro, it has no return type and no parameter
2413 # list.
2414 # Function-like macros are not allowed to have spaces between
2415 # declaration_name and opening parenthesis (notice the \s+).
2416 $return_type = $1;
2417 $declaration_name = $2;
2418 $noret = 1;
2419 } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2421 $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2422 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Randy Dunlap94b3e032008-02-07 00:13:26 -08002423 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2425 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2426 $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2427 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2428 $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2429 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2430 $prototype =~ m/^(\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2431 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Martin Waitz9598f912006-02-01 03:06:55 -08002432 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2433 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Randy Dunlap412ecd772007-02-10 22:47:33 -08002434 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2435 $prototype =~ m/^(\w+\s+\w+\s*\*\s*\w+\s*\*\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 $return_type = $1;
2437 $declaration_name = $2;
2438 my $args = $3;
2439
2440 create_parameterlist($args, ',', $file);
2441 } else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002442 print STDERR "${file}:$.: warning: cannot understand function prototype: '$prototype'\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 return;
2444 }
2445
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002446 my $prms = join " ", @parameterlist;
2447 check_sections($file, $declaration_name, "function", $sectcheck, $prms, "");
2448
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002449 # This check emits a lot of warnings at the moment, because many
2450 # functions don't have a 'Return' doc section. So until the number
2451 # of warnings goes sufficiently down, the check is only performed in
2452 # verbose mode.
2453 # TODO: always perform the check.
Horia Geantacbb4d3e2014-07-12 09:55:03 -07002454 if ($verbose && !$noret) {
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002455 check_return_section($file, $declaration_name, $return_type);
2456 }
2457
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002458 output_declaration($declaration_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 'function',
2460 {'function' => $declaration_name,
2461 'module' => $modulename,
2462 'functiontype' => $return_type,
2463 'parameterlist' => \@parameterlist,
2464 'parameterdescs' => \%parameterdescs,
2465 'parametertypes' => \%parametertypes,
2466 'sectionlist' => \@sectionlist,
2467 'sections' => \%sections,
2468 'purpose' => $declaration_purpose
2469 });
2470}
2471
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472sub reset_state {
2473 $function = "";
2474 %constants = ();
2475 %parameterdescs = ();
2476 %parametertypes = ();
2477 @parameterlist = ();
2478 %sections = ();
2479 @sectionlist = ();
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002480 $sectcheck = "";
2481 $struct_actual = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 $prototype = "";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 $state = 0;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002485 $split_doc_state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486}
2487
Jason Baron56afb0f2009-04-30 13:29:36 -04002488sub tracepoint_munge($) {
2489 my $file = shift;
2490 my $tracepointname = 0;
2491 my $tracepointargs = 0;
2492
Jason Baron3a9089f2009-12-01 12:18:49 -05002493 if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
Jason Baron56afb0f2009-04-30 13:29:36 -04002494 $tracepointname = $1;
2495 }
Jason Baron3a9089f2009-12-01 12:18:49 -05002496 if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
2497 $tracepointname = $1;
2498 }
2499 if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
2500 $tracepointname = $2;
2501 }
2502 $tracepointname =~ s/^\s+//; #strip leading whitespace
2503 if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
Jason Baron56afb0f2009-04-30 13:29:36 -04002504 $tracepointargs = $1;
2505 }
2506 if (($tracepointname eq 0) || ($tracepointargs eq 0)) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002507 print STDERR "${file}:$.: warning: Unrecognized tracepoint format: \n".
Jason Baron56afb0f2009-04-30 13:29:36 -04002508 "$prototype\n";
2509 } else {
2510 $prototype = "static inline void trace_$tracepointname($tracepointargs)";
2511 }
2512}
2513
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002514sub syscall_munge() {
2515 my $void = 0;
2516
2517 $prototype =~ s@[\r\n\t]+@ @gos; # strip newlines/CR's/tabs
2518## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
2519 if ($prototype =~ m/SYSCALL_DEFINE0/) {
2520 $void = 1;
2521## $prototype = "long sys_$1(void)";
2522 }
2523
2524 $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
2525 if ($prototype =~ m/long (sys_.*?),/) {
2526 $prototype =~ s/,/\(/;
2527 } elsif ($void) {
2528 $prototype =~ s/\)/\(void\)/;
2529 }
2530
2531 # now delete all of the odd-number commas in $prototype
2532 # so that arg types & arg names don't have a comma between them
2533 my $count = 0;
2534 my $len = length($prototype);
2535 if ($void) {
2536 $len = 0; # skip the for-loop
2537 }
2538 for (my $ix = 0; $ix < $len; $ix++) {
2539 if (substr($prototype, $ix, 1) eq ',') {
2540 $count++;
2541 if ($count % 2 == 1) {
2542 substr($prototype, $ix, 1) = ' ';
2543 }
2544 }
2545 }
2546}
2547
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002548sub process_state3_function($$) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 my $x = shift;
2550 my $file = shift;
2551
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07002552 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
2553
Randy Dunlap890c78c2008-10-25 17:06:43 -07002554 if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 # do nothing
2556 }
2557 elsif ($x =~ /([^\{]*)/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002558 $prototype .= $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 }
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002560
Randy Dunlap890c78c2008-10-25 17:06:43 -07002561 if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002562 $prototype =~ s@/\*.*?\*/@@gos; # strip comments.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
2564 $prototype =~ s@^\s+@@gos; # strip leading spaces
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002565 if ($prototype =~ /SYSCALL_DEFINE/) {
2566 syscall_munge();
2567 }
Jason Baron3a9089f2009-12-01 12:18:49 -05002568 if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
2569 $prototype =~ /DEFINE_SINGLE_EVENT/)
2570 {
Jason Baron56afb0f2009-04-30 13:29:36 -04002571 tracepoint_munge($file);
2572 }
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002573 dump_function($prototype, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 reset_state();
2575 }
2576}
2577
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002578sub process_state3_type($$) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 my $x = shift;
2580 my $file = shift;
2581
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
2583 $x =~ s@^\s+@@gos; # strip leading spaces
2584 $x =~ s@\s+$@@gos; # strip trailing spaces
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07002585 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
2586
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 if ($x =~ /^#/) {
2588 # To distinguish preprocessor directive from regular declaration later.
2589 $x .= ";";
2590 }
2591
2592 while (1) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002593 if ( $x =~ /([^{};]*)([{};])(.*)/ ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 $prototype .= $1 . $2;
2595 ($2 eq '{') && $brcount++;
2596 ($2 eq '}') && $brcount--;
2597 if (($2 eq ';') && ($brcount == 0)) {
Randy Dunlapb9d973282009-06-09 08:50:38 -07002598 dump_declaration($prototype, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 reset_state();
Randy Dunlap3c308792007-05-08 00:24:39 -07002600 last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 }
2602 $x = $3;
Randy Dunlap3c308792007-05-08 00:24:39 -07002603 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 $prototype .= $x;
2605 last;
2606 }
2607 }
2608}
2609
Randy Dunlap6b5b55f2007-10-16 23:31:20 -07002610# xml_escape: replace <, >, and & in the text stream;
2611#
2612# however, formatting controls that are generated internally/locally in the
2613# kernel-doc script are not escaped here; instead, they begin life like
2614# $blankline_html (4 of '\' followed by a mnemonic + ':'), then these strings
2615# are converted to their mnemonic-expected output, without the 4 * '\' & ':',
2616# just before actual output; (this is done by local_unescape())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617sub xml_escape($) {
2618 my $text = shift;
Randy Dunlapecfb2512006-06-25 05:49:13 -07002619 if (($output_mode eq "text") || ($output_mode eq "man")) {
2620 return $text;
2621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 $text =~ s/\&/\\\\\\amp;/g;
2623 $text =~ s/\</\\\\\\lt;/g;
2624 $text =~ s/\>/\\\\\\gt;/g;
2625 return $text;
2626}
2627
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002628# xml_unescape: reverse the effects of xml_escape
2629sub xml_unescape($) {
2630 my $text = shift;
2631 if (($output_mode eq "text") || ($output_mode eq "man")) {
2632 return $text;
2633 }
2634 $text =~ s/\\\\\\amp;/\&/g;
2635 $text =~ s/\\\\\\lt;/</g;
2636 $text =~ s/\\\\\\gt;/>/g;
2637 return $text;
2638}
2639
Randy Dunlap6b5b55f2007-10-16 23:31:20 -07002640# convert local escape strings to html
2641# local escape strings look like: '\\\\menmonic:' (that's 4 backslashes)
2642sub local_unescape($) {
2643 my $text = shift;
2644 if (($output_mode eq "text") || ($output_mode eq "man")) {
2645 return $text;
2646 }
2647 $text =~ s/\\\\\\\\lt:/</g;
2648 $text =~ s/\\\\\\\\gt:/>/g;
2649 return $text;
2650}
2651
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652sub process_file($) {
Randy Dunlap2283a112005-07-07 15:39:26 -07002653 my $file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 my $identifier;
2655 my $func;
Randy Dunlapa21217d2007-02-10 01:46:04 -08002656 my $descr;
Johannes Weiner64231332009-09-17 19:26:53 -07002657 my $in_purpose = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 my $initial_section_counter = $section_counter;
Ben Hutchings68f86662015-09-01 23:48:49 +01002659 my ($orig_file) = @_;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
Randy Dunlap2283a112005-07-07 15:39:26 -07002661 if (defined($ENV{'SRCTREE'})) {
Ben Hutchings68f86662015-09-01 23:48:49 +01002662 $file = "$ENV{'SRCTREE'}" . "/" . $orig_file;
Randy Dunlap2283a112005-07-07 15:39:26 -07002663 }
2664 else {
Ben Hutchings68f86662015-09-01 23:48:49 +01002665 $file = $orig_file;
Randy Dunlap2283a112005-07-07 15:39:26 -07002666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 if (defined($source_map{$file})) {
2668 $file = $source_map{$file};
2669 }
2670
2671 if (!open(IN,"<$file")) {
2672 print STDERR "Error: Cannot open file $file\n";
2673 ++$errors;
2674 return;
2675 }
2676
Ilya Dryomova9e73142010-02-26 13:05:47 -08002677 $. = 1;
2678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 $section_counter = 0;
2680 while (<IN>) {
Daniel Santos65478422012-10-04 17:15:05 -07002681 while (s/\\\s*$//) {
2682 $_ .= <IN>;
2683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 if ($state == 0) {
2685 if (/$doc_start/o) {
2686 $state = 1; # next line is always the function name
Randy Dunlap850622d2006-06-25 05:48:55 -07002687 $in_doc_sect = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 }
2689 } elsif ($state == 1) { # this line is the function name (always)
2690 if (/$doc_block/o) {
2691 $state = 4;
2692 $contents = "";
2693 if ( $1 eq "" ) {
2694 $section = $section_intro;
2695 } else {
2696 $section = $1;
2697 }
Randy Dunlap3c308792007-05-08 00:24:39 -07002698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 elsif (/$doc_decl/o) {
2700 $identifier = $1;
2701 if (/\s*([\w\s]+?)\s*-/) {
2702 $identifier = $1;
2703 }
2704
2705 $state = 2;
2706 if (/-(.*)/) {
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07002707 # strip leading/trailing/multiple spaces
Randy Dunlapa21217d2007-02-10 01:46:04 -08002708 $descr= $1;
2709 $descr =~ s/^\s*//;
2710 $descr =~ s/\s*$//;
Daniel Santos12ae6772012-10-04 17:15:10 -07002711 $descr =~ s/\s+/ /g;
Randy Dunlapa21217d2007-02-10 01:46:04 -08002712 $declaration_purpose = xml_escape($descr);
Johannes Weiner64231332009-09-17 19:26:53 -07002713 $in_purpose = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 } else {
2715 $declaration_purpose = "";
2716 }
Randy Dunlap77cc23b2008-02-07 00:13:42 -08002717
2718 if (($declaration_purpose eq "") && $verbose) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002719 print STDERR "${file}:$.: warning: missing initial short description on line:\n";
Randy Dunlap77cc23b2008-02-07 00:13:42 -08002720 print STDERR $_;
2721 ++$warnings;
2722 }
2723
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 if ($identifier =~ m/^struct/) {
2725 $decl_type = 'struct';
2726 } elsif ($identifier =~ m/^union/) {
2727 $decl_type = 'union';
2728 } elsif ($identifier =~ m/^enum/) {
2729 $decl_type = 'enum';
2730 } elsif ($identifier =~ m/^typedef/) {
2731 $decl_type = 'typedef';
2732 } else {
2733 $decl_type = 'function';
2734 }
2735
2736 if ($verbose) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002737 print STDERR "${file}:$.: info: Scanning doc for $identifier\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 }
2739 } else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002740 print STDERR "${file}:$.: warning: Cannot understand $_ on line $.",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 " - I thought it was a doc line\n";
2742 ++$warnings;
2743 $state = 0;
2744 }
2745 } elsif ($state == 2) { # look for head: lines, and include content
2746 if (/$doc_sect/o) {
2747 $newsection = $1;
2748 $newcontents = $2;
2749
Randy Dunlap792aa2f2008-02-07 00:13:41 -08002750 if (($contents ne "") && ($contents ne "\n")) {
Randy Dunlap850622d2006-06-25 05:48:55 -07002751 if (!$in_doc_sect && $verbose) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002752 print STDERR "${file}:$.: warning: contents before sections\n";
Randy Dunlap850622d2006-06-25 05:48:55 -07002753 ++$warnings;
2754 }
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07002755 dump_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 $section = $section_default;
2757 }
2758
Randy Dunlap850622d2006-06-25 05:48:55 -07002759 $in_doc_sect = 1;
Johannes Weiner64231332009-09-17 19:26:53 -07002760 $in_purpose = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 $contents = $newcontents;
2762 if ($contents ne "") {
Randy Dunlap27205742006-10-11 01:22:12 -07002763 while ((substr($contents, 0, 1) eq " ") ||
2764 substr($contents, 0, 1) eq "\t") {
2765 $contents = substr($contents, 1);
Randy Dunlap05189492006-06-25 05:47:47 -07002766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 $contents .= "\n";
2768 }
2769 $section = $newsection;
2770 } elsif (/$doc_end/) {
Randy Dunlap4c98eca2010-03-10 15:22:02 -08002771 if (($contents ne "") && ($contents ne "\n")) {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07002772 dump_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 $section = $section_default;
2774 $contents = "";
2775 }
Randy Dunlap46b958e2008-04-28 02:16:35 -07002776 # look for doc_com + <text> + doc_end:
2777 if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002778 print STDERR "${file}:$.: warning: suspicious ending line: $_";
Randy Dunlap46b958e2008-04-28 02:16:35 -07002779 ++$warnings;
2780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
2782 $prototype = "";
2783 $state = 3;
2784 $brcount = 0;
Randy Dunlap232acbc2006-06-25 05:47:48 -07002785# print STDERR "end of doc comment, looking for prototype\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 } elsif (/$doc_content/) {
2787 # miguel-style comment kludge, look for blank lines after
2788 # @parameter line to signify start of description
Johannes Weiner64231332009-09-17 19:26:53 -07002789 if ($1 eq "") {
2790 if ($section =~ m/^@/ || $section eq $section_context) {
2791 dump_section($file, $section, xml_escape($contents));
2792 $section = $section_default;
2793 $contents = "";
2794 } else {
2795 $contents .= "\n";
2796 }
2797 $in_purpose = 0;
2798 } elsif ($in_purpose == 1) {
2799 # Continued declaration purpose
2800 chomp($declaration_purpose);
2801 $declaration_purpose .= " " . xml_escape($1);
Daniel Santos12ae6772012-10-04 17:15:10 -07002802 $declaration_purpose =~ s/\s+/ /g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07002804 $contents .= $1 . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 }
2806 } else {
2807 # i dont know - bad line? ignore.
Bart Van Assched40e1e62015-09-04 15:43:21 -07002808 print STDERR "${file}:$.: warning: bad line: $_";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 ++$warnings;
2810 }
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002811 } elsif ($state == 5) { # scanning for split parameters
2812 # First line (state 1) needs to be a @parameter
2813 if ($split_doc_state == 1 && /$doc_split_sect/o) {
2814 $section = $1;
2815 $contents = $2;
2816 if ($contents ne "") {
2817 while ((substr($contents, 0, 1) eq " ") ||
2818 substr($contents, 0, 1) eq "\t") {
2819 $contents = substr($contents, 1);
2820 }
2821 $contents .= "\n";
2822 }
2823 $split_doc_state = 2;
2824 # Documentation block end */
2825 } elsif (/$doc_split_end/) {
2826 if (($contents ne "") && ($contents ne "\n")) {
2827 dump_section($file, $section, xml_escape($contents));
2828 $section = $section_default;
2829 $contents = "";
2830 }
2831 $state = 3;
2832 $split_doc_state = 0;
2833 # Regular text
2834 } elsif (/$doc_content/) {
2835 if ($split_doc_state == 2) {
2836 $contents .= $1 . "\n";
2837 } elsif ($split_doc_state == 1) {
2838 $split_doc_state = 4;
2839 print STDERR "Warning(${file}:$.): ";
2840 print STDERR "Incorrect use of kernel-doc format: $_";
2841 ++$warnings;
2842 }
2843 }
Randy Dunlap232acbc2006-06-25 05:47:48 -07002844 } elsif ($state == 3) { # scanning for function '{' (end of prototype)
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002845 if (/$doc_split_start/) {
2846 $state = 5;
2847 $split_doc_state = 1;
2848 } elsif ($decl_type eq 'function') {
Randy Dunlap3c308792007-05-08 00:24:39 -07002849 process_state3_function($_, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 } else {
Randy Dunlap3c308792007-05-08 00:24:39 -07002851 process_state3_type($_, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 }
2853 } elsif ($state == 4) {
2854 # Documentation block
Randy Dunlap3c308792007-05-08 00:24:39 -07002855 if (/$doc_block/) {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07002856 dump_doc_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 $contents = "";
2858 $function = "";
2859 %constants = ();
2860 %parameterdescs = ();
2861 %parametertypes = ();
2862 @parameterlist = ();
2863 %sections = ();
2864 @sectionlist = ();
2865 $prototype = "";
2866 if ( $1 eq "" ) {
2867 $section = $section_intro;
2868 } else {
2869 $section = $1;
2870 }
Randy Dunlap3c308792007-05-08 00:24:39 -07002871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 elsif (/$doc_end/)
2873 {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07002874 dump_doc_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 $contents = "";
2876 $function = "";
2877 %constants = ();
2878 %parameterdescs = ();
2879 %parametertypes = ();
2880 @parameterlist = ();
2881 %sections = ();
2882 @sectionlist = ();
2883 $prototype = "";
2884 $state = 0;
2885 }
2886 elsif (/$doc_content/)
2887 {
2888 if ( $1 eq "" )
2889 {
2890 $contents .= $blankline;
2891 }
2892 else
2893 {
2894 $contents .= $1 . "\n";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002895 }
Randy Dunlap3c308792007-05-08 00:24:39 -07002896 }
2897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 }
2899 if ($initial_section_counter == $section_counter) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002900 print STDERR "${file}:1: warning: no structured comments found\n";
Johannes Berge946c43a2013-11-12 15:11:12 -08002901 if (($function_only == 1) && ($show_not_found == 1)) {
2902 print STDERR " Was looking for '$_'.\n" for keys %function_table;
2903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 if ($output_mode eq "xml") {
2905 # The template wants at least one RefEntry here; make one.
2906 print "<refentry>\n";
2907 print " <refnamediv>\n";
2908 print " <refname>\n";
Ben Hutchings68f86662015-09-01 23:48:49 +01002909 print " ${orig_file}\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 print " </refname>\n";
2911 print " <refpurpose>\n";
2912 print " Document generation inconsistency\n";
2913 print " </refpurpose>\n";
2914 print " </refnamediv>\n";
2915 print " <refsect1>\n";
2916 print " <title>\n";
2917 print " Oops\n";
2918 print " </title>\n";
2919 print " <warning>\n";
2920 print " <para>\n";
2921 print " The template for this document tried to insert\n";
2922 print " the structured comment from the file\n";
Ben Hutchings68f86662015-09-01 23:48:49 +01002923 print " <filename>${orig_file}</filename> at this point,\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 print " but none was found.\n";
2925 print " This dummy section is inserted to allow\n";
2926 print " generation to continue.\n";
2927 print " </para>\n";
2928 print " </warning>\n";
2929 print " </refsect1>\n";
2930 print "</refentry>\n";
2931 }
2932 }
2933}
Randy Dunlap8484baa2011-01-05 16:28:43 -08002934
2935
2936$kernelversion = get_kernel_version();
2937
2938# generate a sequence of code that will splice in highlighting information
2939# using the s// operator.
Mauro Carvalho Chehab1ef06232015-11-17 13:29:49 -02002940for (my $k = 0; $k < @highlights; $k++) {
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -03002941 my $pattern = $highlights[$k][0];
2942 my $result = $highlights[$k][1];
2943# print STDERR "scanning pattern:$pattern, highlight:($result)\n";
2944 $dohighlight .= "\$contents =~ s:$pattern:$result:gs;\n";
Randy Dunlap8484baa2011-01-05 16:28:43 -08002945}
2946
2947# Read the file that maps relative names to absolute names for
2948# separate source and object directories and for shadow trees.
2949if (open(SOURCE_MAP, "<.tmp_filelist.txt")) {
2950 my ($relname, $absname);
2951 while(<SOURCE_MAP>) {
2952 chop();
2953 ($relname, $absname) = (split())[0..1];
2954 $relname =~ s:^/+::;
2955 $source_map{$relname} = $absname;
2956 }
2957 close(SOURCE_MAP);
2958}
2959
2960foreach (@ARGV) {
2961 chomp;
2962 process_file($_);
2963}
2964if ($verbose && $errors) {
2965 print STDERR "$errors errors\n";
2966}
2967if ($verbose && $warnings) {
2968 print STDERR "$warnings warnings\n";
2969}
2970
2971exit($errors);