blob: f795660dfc7be2102112923a3046861d4ebc26d9 [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 -docbookOutput DocBook format.
54 -htmlOutput HTML format.
55 -html5Output HTML5 format.
56 -listOutput symbol list format. This is for use by docproc.
57 -manOutput troff manual page format. This is the default.
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +030058 -rstOutput reStructuredText format.
Jani Nikulafadc0b32016-05-12 16:15:36 +030059 -textOutput plain text format.
60
61Output selection (mutually exclusive):
Jani Nikula86ae2e32016-01-21 13:05:22 +020062 -exportOnly output documentation for symbols that have been
63exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
64in the same FILE.
65 -internalOnly output documentation for symbols that have NOT been
66exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
67in the same FILE.
Jani Nikulafadc0b32016-05-12 16:15:36 +030068 -function NAMEOnly output documentation for the given function(s)
69or DOC: section title(s). All other functions and DOC:
70sections are ignored. May be specified multiple times.
71 -nofunction NAMEDo NOT output documentation for the given function(s);
72only output documentation for the other functions and
73DOC: sections. May be specified multiple times.
74
75Output selection modifiers:
76 -no-doc-sectionsDo not output DOC: sections.
77
78Other parameters:
79 -vVerbose output, more warnings and other information.
80 -hPrint this help.
81
82EOF
83 print $message;
84 exit 1;
85}
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#
88# format of comments.
89# In the following table, (...)? signifies optional structure.
90# (...)* signifies 0 or more structure elements
91# /**
92# * function_name(:)? (- short description)?
93# (* @parameterx: (description of parameter x)?)*
94# (* a blank line)?
95# * (Description:)? (Description of function)?
96# * (section header: (section description)? )*
97# (*)?*/
98#
99# So .. the trivial example would be:
100#
101# /**
102# * my_function
Randy Dunlapb9d973282009-06-09 08:50:38 -0700103# */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#
Randy Dunlap891dcd22007-02-10 01:45:53 -0800105# If the Description: header tag is omitted, then there must be a blank line
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106# after the last parameter specification.
107# e.g.
108# /**
109# * my_function - does my stuff
110# * @my_arg: its mine damnit
111# *
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800112# * Does my stuff explained.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113# */
114#
115# or, could also use:
116# /**
117# * my_function - does my stuff
118# * @my_arg: its mine damnit
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800119# * Description: Does my stuff explained.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120# */
121# etc.
122#
Randy Dunlapb9d973282009-06-09 08:50:38 -0700123# Besides functions you can also write documentation for structs, unions,
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800124# enums and typedefs. Instead of the function name you must write the name
125# of the declaration; the struct/union/enum/typedef must always precede
126# the name. Nesting of declarations is not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127# Use the argument mechanism to document members or constants.
128# e.g.
129# /**
130# * struct my_struct - short description
131# * @a: first member
132# * @b: second member
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800133# *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134# * Longer description
135# */
136# struct my_struct {
137# int a;
138# int b;
Martin Waitzaeec46b2005-11-13 16:08:13 -0800139# /* private: */
140# int c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141# };
142#
143# All descriptions can be multiline, except the short function description.
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800144#
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -0300145# For really longs structs, you can also describe arguments inside the
146# body of the struct.
147# eg.
148# /**
149# * struct my_struct - short description
150# * @a: first member
151# * @b: second member
152# *
153# * Longer description
154# */
155# struct my_struct {
156# int a;
157# int b;
158# /**
159# * @c: This is longer description of C
160# *
161# * You can use paragraphs to describe arguments
162# * using this method.
163# */
164# int c;
165# };
166#
167# This should be use only for struct/enum members.
168#
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800169# You can also add additional sections. When documenting kernel functions you
170# should document the "Context:" of the function, e.g. whether the functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171# can be called form interrupts. Unlike other sections you can end it with an
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800172# empty line.
Yacine Belkadi4092bac2012-11-26 22:22:27 +0100173# A non-void function should have a "Return:" section describing the return
174# value(s).
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800175# Example-sections should contain the string EXAMPLE so that they are marked
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176# appropriately in DocBook.
177#
178# Example:
179# /**
180# * user_function - function that can only be called in user context
181# * @a: some argument
182# * Context: !in_interrupt()
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800183# *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184# * Some description
185# * Example:
186# * user_function(22);
187# */
188# ...
189#
190#
191# All descriptive text is further processed, scanning for the following special
192# patterns, which are highlighted appropriately.
193#
194# 'funcname()' - function
195# '$ENVVAR' - environmental variable
196# '&struct_name' - name of a structure (up to two words including 'struct')
197# '@parameter' - name of a parameter
198# '%CONST' - name of a constant.
199
Randy Dunlap8484baa2011-01-05 16:28:43 -0800200## init lots of data
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202my $errors = 0;
203my $warnings = 0;
Randy Dunlap5f8c7c92007-07-19 01:48:24 -0700204my $anon_struct_union = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206# match expressions used to find embedded type information
207my $type_constant = '\%([-_\w]+)';
208my $type_func = '(\w+)\(\)';
209my $type_param = '\@(\w+)';
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700210my $type_struct = '\&((struct\s*)*[_\w]+)';
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700211my $type_struct_xml = '\\&amp;((struct\s*)*[_\w]+)';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212my $type_env = '(\$\w+)';
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300213my $type_enum_full = '\&(enum)\s*([_\w]+)';
214my $type_struct_full = '\&(struct)\s*([_\w]+)';
Jani Nikula47ae7ae2016-05-26 13:57:18 +0300215my $type_typedef_full = '\&(typedef)\s*([_\w]+)';
216my $type_union_full = '\&(union)\s*([_\w]+)';
Jani Nikulaf3341dc2016-05-26 16:35:02 +0300217my $type_member = '\&([_\w]+)((\.|->)[_\w]+)';
218my $type_member_func = $type_member . '\(\)';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220# Output conversion substitutions.
221# One for each output format
222
223# these work fairly well
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300224my @highlights_html = (
225 [$type_constant, "<i>\$1</i>"],
226 [$type_func, "<b>\$1</b>"],
227 [$type_struct_xml, "<i>\$1</i>"],
228 [$type_env, "<b><i>\$1</i></b>"],
229 [$type_param, "<tt><b>\$1</b></tt>"]
230 );
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700231my $local_lt = "\\\\\\\\lt:";
232my $local_gt = "\\\\\\\\gt:";
233my $blankline_html = $local_lt . "p" . $local_gt;# was "<p>"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Dan Luedtke1b40c192012-08-12 10:46:15 +0200235# html version 5
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300236my @highlights_html5 = (
237 [$type_constant, "<span class=\"const\">\$1</span>"],
238 [$type_func, "<span class=\"func\">\$1</span>"],
239 [$type_struct_xml, "<span class=\"struct\">\$1</span>"],
240 [$type_env, "<span class=\"env\">\$1</span>"],
241 [$type_param, "<span class=\"param\">\$1</span>]"]
242 );
Dan Luedtke1b40c192012-08-12 10:46:15 +0200243my $blankline_html5 = $local_lt . "br /" . $local_gt;
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245# XML, docbook format
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300246my @highlights_xml = (
247 ["([^=])\\\"([^\\\"<]+)\\\"", "\$1<quote>\$2</quote>"],
248 [$type_constant, "<constant>\$1</constant>"],
249 [$type_struct_xml, "<structname>\$1</structname>"],
250 [$type_param, "<parameter>\$1</parameter>"],
251 [$type_func, "<function>\$1</function>"],
252 [$type_env, "<envar>\$1</envar>"]
253 );
Johannes Berg5c98fc02007-10-24 15:08:48 -0700254my $blankline_xml = $local_lt . "/para" . $local_gt . $local_lt . "para" . $local_gt . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256# gnome, docbook format
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300257my @highlights_gnome = (
258 [$type_constant, "<replaceable class=\"option\">\$1</replaceable>"],
259 [$type_func, "<function>\$1</function>"],
260 [$type_struct, "<structname>\$1</structname>"],
261 [$type_env, "<envar>\$1</envar>"],
262 [$type_param, "<parameter>\$1</parameter>" ]
263 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264my $blankline_gnome = "</para><para>\n";
265
266# these are pretty rough
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300267my @highlights_man = (
268 [$type_constant, "\$1"],
269 [$type_func, "\\\\fB\$1\\\\fP"],
270 [$type_struct, "\\\\fI\$1\\\\fP"],
271 [$type_param, "\\\\fI\$1\\\\fP"]
272 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273my $blankline_man = "";
274
275# text-mode
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300276my @highlights_text = (
277 [$type_constant, "\$1"],
278 [$type_func, "\$1"],
279 [$type_struct, "\$1"],
280 [$type_param, "\$1"]
281 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282my $blankline_text = "";
283
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300284# rst-mode
285my @highlights_rst = (
286 [$type_constant, "``\$1``"],
Jani Nikulaf3341dc2016-05-26 16:35:02 +0300287 # Note: need to escape () to avoid func matching later
288 [$type_member_func, "\\:c\\:type\\:`\$1\$2\\\\(\\\\) <\$1>`"],
289 [$type_member, "\\:c\\:type\\:`\$1\$2 <\$1>`"],
Jani Nikulaa19bce62016-05-26 11:28:16 +0300290 [$type_func, "\\:c\\:func\\:`\$1()`"],
Jani Nikula62850972016-05-12 16:15:38 +0300291 [$type_struct_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"],
292 [$type_enum_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"],
Jani Nikula47ae7ae2016-05-26 13:57:18 +0300293 [$type_typedef_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"],
294 [$type_union_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"],
Jani Nikulaa7291e72016-05-26 13:57:06 +0300295 # in rst this can refer to any type
296 [$type_struct, "\\:c\\:type\\:`\$1`"],
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300297 [$type_param, "**\$1**"]
298 );
299my $blankline_rst = "\n";
300
Johannes Bergeda603f2010-09-11 15:55:22 -0700301# list mode
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300302my @highlights_list = (
303 [$type_constant, "\$1"],
304 [$type_func, "\$1"],
305 [$type_struct, "\$1"],
306 [$type_param, "\$1"]
307 );
Johannes Bergeda603f2010-09-11 15:55:22 -0700308my $blankline_list = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310# read arguments
Randy Dunlapb9d973282009-06-09 08:50:38 -0700311if ($#ARGV == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 usage();
313}
314
Randy Dunlap8484baa2011-01-05 16:28:43 -0800315my $kernelversion;
316my $dohighlight = "";
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318my $verbose = 0;
319my $output_mode = "man";
Daniel Santose314ba32012-10-04 17:15:08 -0700320my $output_preformatted = 0;
Johannes Berg4b445952007-10-24 15:08:48 -0700321my $no_doc_sections = 0;
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300322my @highlights = @highlights_man;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323my $blankline = $blankline_man;
324my $modulename = "Kernel API";
Jani Nikulab6c3f452016-05-29 22:19:35 +0300325
326use constant {
327 OUTPUT_ALL => 0, # output all symbols and doc sections
328 OUTPUT_INCLUDE => 1, # output only specified symbols
329 OUTPUT_EXCLUDE => 2, # output everything except specified symbols
330 OUTPUT_EXPORTED => 3, # output exported symbols
331 OUTPUT_INTERNAL => 4, # output non-exported symbols
332};
333my $output_selection = OUTPUT_ALL;
Ben Hutchingsb2c41052015-07-08 20:07:16 +0100334my $show_not_found = 0;
335
336my @build_time;
337if (defined($ENV{'KBUILD_BUILD_TIMESTAMP'}) &&
338 (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') {
339 @build_time = gmtime($seconds);
340} else {
341 @build_time = localtime;
342}
343
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800344my $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
345'July', 'August', 'September', 'October',
Ben Hutchingsb2c41052015-07-08 20:07:16 +0100346'November', 'December')[$build_time[4]] .
347 " " . ($build_time[5]+1900);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Randy Dunlap8484baa2011-01-05 16:28:43 -0800349# Essentially these are globals.
Randy Dunlapb9d973282009-06-09 08:50:38 -0700350# They probably want to be tidied up, made more localised or something.
351# CAVEAT EMPTOR! Some of the others I localised may not want to be, which
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352# could cause "use of undefined value" or other bugs.
Randy Dunlapb9d973282009-06-09 08:50:38 -0700353my ($function, %function_table, %parametertypes, $declaration_purpose);
354my ($type, $declaration_name, $return_type);
Ilya Dryomov1c32fd02010-02-26 13:06:03 -0800355my ($newsection, $newcontents, $prototype, $brcount, %source_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Randy Dunlapbd0e88e2008-03-13 12:32:43 -0700357if (defined($ENV{'KBUILD_VERBOSE'})) {
358$verbose = "$ENV{'KBUILD_VERBOSE'}";
359}
360
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800361# Generated docbook code is inserted in a template at a point where
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362# docbook v3.1 requires a non-zero sequence of RefEntry's; see:
363# http://www.oasis-open.org/docbook/documentation/reference/html/refentry.html
364# We keep track of number of generated entries and generate a dummy
365# if needs be to ensure the expanded template can be postprocessed
366# into html.
367my $section_counter = 0;
368
369my $lineprefix="";
370
Jani Nikula48af6062016-05-26 14:56:05 +0300371# Parser states
372use constant {
373 STATE_NORMAL => 0, # normal code
374 STATE_NAME => 1, # looking for function name
375 STATE_FIELD => 2, # scanning field start
376 STATE_PROTO => 3, # scanning prototype
377 STATE_DOCBLOCK => 4, # documentation block
378 STATE_INLINE => 5, # gathering documentation outside main block
379};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380my $state;
Randy Dunlap850622d2006-06-25 05:48:55 -0700381my $in_doc_sect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Jani Nikula48af6062016-05-26 14:56:05 +0300383# Inline documentation state
384use constant {
385 STATE_INLINE_NA => 0, # not applicable ($state != STATE_INLINE)
386 STATE_INLINE_NAME => 1, # looking for member name (@foo:)
387 STATE_INLINE_TEXT => 2, # looking for member documentation
388 STATE_INLINE_END => 3, # done
389 STATE_INLINE_ERROR => 4, # error - Comment without header was found.
390 # Spit a warning as it's not
391 # proper kernel-doc and ignore the rest.
392};
393my $inline_doc_state;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -0300394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395#declaration types: can be
396# 'function', 'struct', 'union', 'enum', 'typedef'
397my $decl_type;
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
400my $doc_end = '\*/';
401my $doc_com = '\s*\*\s*';
Daniel Santos12ae6772012-10-04 17:15:10 -0700402my $doc_com_body = '\s*\* ?';
Randy Dunlapb9d973282009-06-09 08:50:38 -0700403my $doc_decl = $doc_com . '(\w+)';
Jani Nikula13901ef2016-05-26 08:57:29 +0300404my $doc_sect = $doc_com . '(\@?[\w\s]+):(.*)';
Daniel Santos12ae6772012-10-04 17:15:10 -0700405my $doc_content = $doc_com_body . '(.*)';
Randy Dunlapb9d973282009-06-09 08:50:38 -0700406my $doc_block = $doc_com . 'DOC:\s*(.*)?';
Jani Nikula48af6062016-05-26 14:56:05 +0300407my $doc_inline_start = '^\s*/\*\*\s*$';
408my $doc_inline_sect = '\s*\*\s*(@[\w\s]+):(.*)';
409my $doc_inline_end = '^\s*\*/\s*$';
Jani Nikula86ae2e32016-01-21 13:05:22 +0200410my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412my %parameterdescs;
413my @parameterlist;
414my %sections;
415my @sectionlist;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800416my $sectcheck;
417my $struct_actual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419my $contents = "";
420my $section_default = "Description";# default section
421my $section_intro = "Introduction";
422my $section = $section_default;
423my $section_context = "Context";
Yacine Belkadi4092bac2012-11-26 22:22:27 +0100424my $section_return = "Return";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426my $undescribed = "-- undescribed --";
427
428reset_state();
429
430while ($ARGV[0] =~ m/^-(.*)/) {
431 my $cmd = shift @ARGV;
432 if ($cmd eq "-html") {
433$output_mode = "html";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300434@highlights = @highlights_html;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435$blankline = $blankline_html;
Dan Luedtke1b40c192012-08-12 10:46:15 +0200436 } elsif ($cmd eq "-html5") {
437$output_mode = "html5";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300438@highlights = @highlights_html5;
Dan Luedtke1b40c192012-08-12 10:46:15 +0200439$blankline = $blankline_html5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 } elsif ($cmd eq "-man") {
441$output_mode = "man";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300442@highlights = @highlights_man;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443$blankline = $blankline_man;
444 } elsif ($cmd eq "-text") {
445$output_mode = "text";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300446@highlights = @highlights_text;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447$blankline = $blankline_text;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +0300448 } elsif ($cmd eq "-rst") {
449$output_mode = "rst";
450@highlights = @highlights_rst;
451$blankline = $blankline_rst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 } elsif ($cmd eq "-docbook") {
453$output_mode = "xml";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300454@highlights = @highlights_xml;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455$blankline = $blankline_xml;
Johannes Bergeda603f2010-09-11 15:55:22 -0700456 } elsif ($cmd eq "-list") {
457$output_mode = "list";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300458@highlights = @highlights_list;
Johannes Bergeda603f2010-09-11 15:55:22 -0700459$blankline = $blankline_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 } elsif ($cmd eq "-gnome") {
461$output_mode = "gnome";
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -0300462@highlights = @highlights_gnome;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463$blankline = $blankline_gnome;
464 } elsif ($cmd eq "-module") { # not needed for XML, inherits from calling document
465$modulename = shift @ARGV;
466 } elsif ($cmd eq "-function") { # to only output specific functions
Jani Nikulab6c3f452016-05-29 22:19:35 +0300467$output_selection = OUTPUT_INCLUDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468$function = shift @ARGV;
469$function_table{$function} = 1;
Jani Nikulab6c3f452016-05-29 22:19:35 +0300470 } elsif ($cmd eq "-nofunction") { # output all except specific functions
471$output_selection = OUTPUT_EXCLUDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472$function = shift @ARGV;
473$function_table{$function} = 1;
Jani Nikula86ae2e32016-01-21 13:05:22 +0200474 } elsif ($cmd eq "-export") { # only exported symbols
Jani Nikulab6c3f452016-05-29 22:19:35 +0300475$output_selection = OUTPUT_EXPORTED;
Jani Nikula86ae2e32016-01-21 13:05:22 +0200476%function_table = ()
477 } elsif ($cmd eq "-internal") { # only non-exported symbols
Jani Nikulab6c3f452016-05-29 22:19:35 +0300478$output_selection = OUTPUT_INTERNAL;
Jani Nikula86ae2e32016-01-21 13:05:22 +0200479%function_table = ()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 } elsif ($cmd eq "-v") {
481$verbose = 1;
482 } elsif (($cmd eq "-h") || ($cmd eq "--help")) {
483usage();
Johannes Berg4b445952007-10-24 15:08:48 -0700484 } elsif ($cmd eq '-no-doc-sections') {
485 $no_doc_sections = 1;
Johannes Berge946c43a2013-11-12 15:11:12 -0800486 } elsif ($cmd eq '-show-not-found') {
487$show_not_found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
489}
490
Randy Dunlap8484baa2011-01-05 16:28:43 -0800491# continue execution near EOF;
492
Borislav Petkov53f049f2007-05-08 00:30:54 -0700493# get kernel version from env
494sub get_kernel_version() {
Johannes Berg1b9bc222007-10-24 15:08:48 -0700495 my $version = 'unknown kernel version';
Borislav Petkov53f049f2007-05-08 00:30:54 -0700496
497 if (defined($ENV{'KERNELVERSION'})) {
498$version = $ENV{'KERNELVERSION'};
499 }
500 return $version;
501}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503##
504# dumps section contents to arrays/hashes intended for that purpose.
505#
506sub dump_section {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700507 my $file = shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 my $name = shift;
509 my $contents = join "\n", @_;
510
Jani Nikula13901ef2016-05-26 08:57:29 +0300511 if ($name =~ m/$type_param/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512# print STDERR "parameter def '$1' = '$contents'\n";
513$name = $1;
514$parameterdescs{$name} = $contents;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800515$sectcheck = $sectcheck . $name . " ";
Randy Dunlapced69092008-12-01 13:14:03 -0800516 } elsif ($name eq "@\.\.\.") {
517# print STDERR "parameter def '...' = '$contents'\n";
518$name = "...";
519$parameterdescs{$name} = $contents;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800520$sectcheck = $sectcheck . $name . " ";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 } else {
522# print STDERR "other section '$name' = '$contents'\n";
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700523if (defined($sections{$name}) && ($sections{$name} ne "")) {
Bart Van Assched40e1e62015-09-04 15:43:21 -0700524print STDERR "${file}:$.: error: duplicate section name '$name'\n";
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700525++$errors;
526}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527$sections{$name} = $contents;
528push @sectionlist, $name;
529 }
530}
531
532##
Johannes Bergb112e0f2007-10-24 15:08:48 -0700533# dump DOC: section after checking that it should go out
534#
535sub dump_doc_section {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700536 my $file = shift;
Johannes Bergb112e0f2007-10-24 15:08:48 -0700537 my $name = shift;
538 my $contents = join "\n", @_;
539
Johannes Berg4b445952007-10-24 15:08:48 -0700540 if ($no_doc_sections) {
541 return;
542 }
543
Jani Nikulab6c3f452016-05-29 22:19:35 +0300544 if (($output_selection == OUTPUT_ALL) ||
545($output_selection == OUTPUT_INCLUDE &&
546 defined($function_table{$name})) ||
547($output_selection == OUTPUT_EXCLUDE &&
548 !defined($function_table{$name})))
Johannes Bergb112e0f2007-10-24 15:08:48 -0700549 {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700550dump_section($file, $name, $contents);
Johannes Bergb112e0f2007-10-24 15:08:48 -0700551output_blockhead({'sectionlist' => \@sectionlist,
552 'sections' => \%sections,
553 'module' => $modulename,
Jani Nikulab6c3f452016-05-29 22:19:35 +0300554 'content-only' => ($output_selection != OUTPUT_ALL), });
Johannes Bergb112e0f2007-10-24 15:08:48 -0700555 }
556}
557
558##
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559# output function
560#
561# parameterdescs, a hash.
562# function => "function name"
563# parameterlist => @list of parameters
564# parameterdescs => %parameter descriptions
565# sectionlist => @list of sections
Randy Dunlapa21217d2007-02-10 01:46:04 -0800566# sections => %section descriptions
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800567#
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569sub output_highlight {
570 my $contents = join "\n",@_;
571 my $line;
572
573# DEBUG
574# if (!defined $contents) {
575# use Carp;
576# confess "output_highlight got called with no args?\n";
577# }
578
Dan Luedtke1b40c192012-08-12 10:46:15 +0200579 if ($output_mode eq "html" || $output_mode eq "html5" ||
580$output_mode eq "xml") {
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700581$contents = local_unescape($contents);
582# convert data read & converted thru xml_escape() into &xyz; format:
Randy Dunlap2b35f4d2010-11-18 12:27:31 -0800583$contents =~ s/\\\\\\/\&/g;
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700584 }
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700585# print STDERR "contents b4:$contents\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 eval $dohighlight;
587 die $@ if $@;
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700588# print STDERR "contents af:$contents\n";
589
Dan Luedtke1b40c192012-08-12 10:46:15 +0200590# strip whitespaces when generating html5
591 if ($output_mode eq "html5") {
592$contents =~ s/^\s+//;
593$contents =~ s/\s+$//;
594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 foreach $line (split "\n", $contents) {
Daniel Santos12ae6772012-10-04 17:15:10 -0700596if (! $output_preformatted) {
597 $line =~ s/^\s*//;
598}
Randy Dunlap3c308792007-05-08 00:24:39 -0700599if ($line eq ""){
Daniel Santose314ba32012-10-04 17:15:08 -0700600 if (! $output_preformatted) {
601print $lineprefix, local_unescape($blankline);
602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603} else {
Randy Dunlap3c308792007-05-08 00:24:39 -0700604 $line =~ s/\\\\\\/\&/g;
Randy Dunlapcdccb312007-07-19 01:48:25 -0700605 if ($output_mode eq "man" && substr($line, 0, 1) eq ".") {
606print "\\&$line";
607 } else {
608print $lineprefix, $line;
609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611print "\n";
612 }
613}
614
Dan Luedtke1b40c192012-08-12 10:46:15 +0200615# output sections in html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616sub output_section_html(%) {
617 my %args = %{$_[0]};
618 my $section;
619
620 foreach $section (@{$args{'sectionlist'}}) {
621print "<h3>$section</h3>\n";
622print "<blockquote>\n";
623output_highlight($args{'sections'}{$section});
624print "</blockquote>\n";
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
628# output enum in html
629sub output_enum_html(%) {
630 my %args = %{$_[0]};
631 my ($parameter);
632 my $count;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700633 print "<h2>enum " . $args{'enum'} . "</h2>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Randy Dunlapb9d973282009-06-09 08:50:38 -0700635 print "<b>enum " . $args{'enum'} . "</b> {<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 $count = 0;
637 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlapb9d973282009-06-09 08:50:38 -0700638print " <b>" . $parameter . "</b>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639if ($count != $#{$args{'parameterlist'}}) {
640 $count++;
641 print ",\n";
642}
643print "<br>";
644 }
645 print "};<br>\n";
646
647 print "<h3>Constants</h3>\n";
648 print "<dl>\n";
649 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlapb9d973282009-06-09 08:50:38 -0700650print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651print "<dd>";
652output_highlight($args{'parameterdescs'}{$parameter});
653 }
654 print "</dl>\n";
655 output_section_html(@_);
656 print "<hr>\n";
657}
658
Randy Dunlapd28bee02006-02-01 03:06:57 -0800659# output typedef in html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660sub output_typedef_html(%) {
661 my %args = %{$_[0]};
662 my ($parameter);
663 my $count;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700664 print "<h2>typedef " . $args{'typedef'} . "</h2>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Randy Dunlapb9d973282009-06-09 08:50:38 -0700666 print "<b>typedef " . $args{'typedef'} . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 output_section_html(@_);
668 print "<hr>\n";
669}
670
671# output struct in html
672sub output_struct_html(%) {
673 my %args = %{$_[0]};
674 my ($parameter);
675
Randy Dunlapb9d973282009-06-09 08:50:38 -0700676 print "<h2>" . $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "</h2>\n";
677 print "<b>" . $args{'type'} . " " . $args{'struct'} . "</b> {<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 foreach $parameter (@{$args{'parameterlist'}}) {
679if ($parameter =~ /^#/) {
680print "$parameter<br>\n";
681next;
682}
683my $parameter_name = $parameter;
684$parameter_name =~ s/\[.*//;
685
Randy Dunlap3c308792007-05-08 00:24:39 -0700686($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687$type = $args{'parametertypes'}{$parameter};
688if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
689 # pointer-to-function
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700690 print "&nbsp; &nbsp; <i>$1</i><b>$parameter</b>) <i>($2)</i>;<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691} elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700692 # bitfield
693 print "&nbsp; &nbsp; <i>$1</i> <b>$parameter</b>$2;<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694} else {
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700695 print "&nbsp; &nbsp; <i>$type</i> <b>$parameter</b>;<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697 }
698 print "};<br>\n";
699
700 print "<h3>Members</h3>\n";
701 print "<dl>\n";
702 foreach $parameter (@{$args{'parameterlist'}}) {
703($parameter =~ /^#/) && next;
704
705my $parameter_name = $parameter;
706$parameter_name =~ s/\[.*//;
707
Randy Dunlap3c308792007-05-08 00:24:39 -0700708($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700709print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710print "<dd>";
711output_highlight($args{'parameterdescs'}{$parameter_name});
712 }
713 print "</dl>\n";
714 output_section_html(@_);
715 print "<hr>\n";
716}
717
718# output function in html
719sub output_function_html(%) {
720 my %args = %{$_[0]};
721 my ($parameter, $section);
722 my $count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Randy Dunlapb9d973282009-06-09 08:50:38 -0700724 print "<h2>" . $args{'function'} . " - " . $args{'purpose'} . "</h2>\n";
725 print "<i>" . $args{'functiontype'} . "</i>\n";
726 print "<b>" . $args{'function'} . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 print "(";
728 $count = 0;
729 foreach $parameter (@{$args{'parameterlist'}}) {
730$type = $args{'parametertypes'}{$parameter};
731if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
732 # pointer-to-function
733 print "<i>$1</i><b>$parameter</b>) <i>($2)</i>";
734} else {
Randy Dunlapb9d973282009-06-09 08:50:38 -0700735 print "<i>" . $type . "</i> <b>" . $parameter . "</b>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737if ($count != $#{$args{'parameterlist'}}) {
738 $count++;
739 print ",\n";
740}
741 }
742 print ")\n";
743
744 print "<h3>Arguments</h3>\n";
745 print "<dl>\n";
746 foreach $parameter (@{$args{'parameterlist'}}) {
747my $parameter_name = $parameter;
748$parameter_name =~ s/\[.*//;
749
Randy Dunlap3c308792007-05-08 00:24:39 -0700750($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700751print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752print "<dd>";
753output_highlight($args{'parameterdescs'}{$parameter_name});
754 }
755 print "</dl>\n";
756 output_section_html(@_);
757 print "<hr>\n";
758}
759
Johannes Bergb112e0f2007-10-24 15:08:48 -0700760# output DOC: block header in html
761sub output_blockhead_html(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 my %args = %{$_[0]};
763 my ($parameter, $section);
764 my $count;
765
766 foreach $section (@{$args{'sectionlist'}}) {
767print "<h3>$section</h3>\n";
768print "<ul>\n";
769output_highlight($args{'sections'}{$section});
770print "</ul>\n";
771 }
772 print "<hr>\n";
773}
774
Dan Luedtke1b40c192012-08-12 10:46:15 +0200775# output sections in html5
776sub output_section_html5(%) {
777 my %args = %{$_[0]};
778 my $section;
779
780 foreach $section (@{$args{'sectionlist'}}) {
781print "<section>\n";
782print "<h1>$section</h1>\n";
783print "<p>\n";
784output_highlight($args{'sections'}{$section});
785print "</p>\n";
786print "</section>\n";
787 }
788}
789
790# output enum in html5
791sub output_enum_html5(%) {
792 my %args = %{$_[0]};
793 my ($parameter);
794 my $count;
795 my $html5id;
796
797 $html5id = $args{'enum'};
798 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
799 print "<article class=\"enum\" id=\"enum:". $html5id . "\">";
800 print "<h1>enum " . $args{'enum'} . "</h1>\n";
801 print "<ol class=\"code\">\n";
802 print "<li>";
803 print "<span class=\"keyword\">enum</span> ";
804 print "<span class=\"identifier\">" . $args{'enum'} . "</span> {";
805 print "</li>\n";
806 $count = 0;
807 foreach $parameter (@{$args{'parameterlist'}}) {
808print "<li class=\"indent\">";
809print "<span class=\"param\">" . $parameter . "</span>";
810if ($count != $#{$args{'parameterlist'}}) {
811 $count++;
812 print ",";
813}
814print "</li>\n";
815 }
816 print "<li>};</li>\n";
817 print "</ol>\n";
818
819 print "<section>\n";
820 print "<h1>Constants</h1>\n";
821 print "<dl>\n";
822 foreach $parameter (@{$args{'parameterlist'}}) {
823print "<dt>" . $parameter . "</dt>\n";
824print "<dd>";
825output_highlight($args{'parameterdescs'}{$parameter});
826print "</dd>\n";
827 }
828 print "</dl>\n";
829 print "</section>\n";
830 output_section_html5(@_);
831 print "</article>\n";
832}
833
834# output typedef in html5
835sub output_typedef_html5(%) {
836 my %args = %{$_[0]};
837 my ($parameter);
838 my $count;
839 my $html5id;
840
841 $html5id = $args{'typedef'};
842 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
843 print "<article class=\"typedef\" id=\"typedef:" . $html5id . "\">\n";
844 print "<h1>typedef " . $args{'typedef'} . "</h1>\n";
845
846 print "<ol class=\"code\">\n";
847 print "<li>";
848 print "<span class=\"keyword\">typedef</span> ";
849 print "<span class=\"identifier\">" . $args{'typedef'} . "</span>";
850 print "</li>\n";
851 print "</ol>\n";
852 output_section_html5(@_);
853 print "</article>\n";
854}
855
856# output struct in html5
857sub output_struct_html5(%) {
858 my %args = %{$_[0]};
859 my ($parameter);
860 my $html5id;
861
862 $html5id = $args{'struct'};
863 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
864 print "<article class=\"struct\" id=\"struct:" . $html5id . "\">\n";
865 print "<hgroup>\n";
866 print "<h1>" . $args{'type'} . " " . $args{'struct'} . "</h1>";
867 print "<h2>". $args{'purpose'} . "</h2>\n";
868 print "</hgroup>\n";
869 print "<ol class=\"code\">\n";
870 print "<li>";
871 print "<span class=\"type\">" . $args{'type'} . "</span> ";
872 print "<span class=\"identifier\">" . $args{'struct'} . "</span> {";
873 print "</li>\n";
874 foreach $parameter (@{$args{'parameterlist'}}) {
875print "<li class=\"indent\">";
876if ($parameter =~ /^#/) {
877print "<span class=\"param\">" . $parameter ."</span>\n";
878print "</li>\n";
879next;
880}
881my $parameter_name = $parameter;
882$parameter_name =~ s/\[.*//;
883
884($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
885$type = $args{'parametertypes'}{$parameter};
886if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
887 # pointer-to-function
888 print "<span class=\"type\">$1</span> ";
889 print "<span class=\"param\">$parameter</span>";
890 print "<span class=\"type\">)</span> ";
891 print "(<span class=\"args\">$2</span>);";
892} elsif ($type =~ m/^(.*?)\s*(:.*)/) {
893 # bitfield
894 print "<span class=\"type\">$1</span> ";
895 print "<span class=\"param\">$parameter</span>";
896 print "<span class=\"bits\">$2</span>;";
897} else {
898 print "<span class=\"type\">$type</span> ";
899 print "<span class=\"param\">$parameter</span>;";
900}
901print "</li>\n";
902 }
903 print "<li>};</li>\n";
904 print "</ol>\n";
905
906 print "<section>\n";
907 print "<h1>Members</h1>\n";
908 print "<dl>\n";
909 foreach $parameter (@{$args{'parameterlist'}}) {
910($parameter =~ /^#/) && next;
911
912my $parameter_name = $parameter;
913$parameter_name =~ s/\[.*//;
914
915($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
916print "<dt>" . $parameter . "</dt>\n";
917print "<dd>";
918output_highlight($args{'parameterdescs'}{$parameter_name});
919print "</dd>\n";
920 }
921 print "</dl>\n";
922 print "</section>\n";
923 output_section_html5(@_);
924 print "</article>\n";
925}
926
927# output function in html5
928sub output_function_html5(%) {
929 my %args = %{$_[0]};
930 my ($parameter, $section);
931 my $count;
932 my $html5id;
933
934 $html5id = $args{'function'};
935 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
936 print "<article class=\"function\" id=\"func:". $html5id . "\">\n";
937 print "<hgroup>\n";
938 print "<h1>" . $args{'function'} . "</h1>";
939 print "<h2>" . $args{'purpose'} . "</h2>\n";
940 print "</hgroup>\n";
941 print "<ol class=\"code\">\n";
942 print "<li>";
943 print "<span class=\"type\">" . $args{'functiontype'} . "</span> ";
944 print "<span class=\"identifier\">" . $args{'function'} . "</span> (";
945 print "</li>";
946 $count = 0;
947 foreach $parameter (@{$args{'parameterlist'}}) {
948print "<li class=\"indent\">";
949$type = $args{'parametertypes'}{$parameter};
950if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
951 # pointer-to-function
952 print "<span class=\"type\">$1</span> ";
953 print "<span class=\"param\">$parameter</span>";
954 print "<span class=\"type\">)</span> ";
955 print "(<span class=\"args\">$2</span>)";
956} else {
957 print "<span class=\"type\">$type</span> ";
958 print "<span class=\"param\">$parameter</span>";
959}
960if ($count != $#{$args{'parameterlist'}}) {
961 $count++;
962 print ",";
963}
964print "</li>\n";
965 }
966 print "<li>)</li>\n";
967 print "</ol>\n";
968
969 print "<section>\n";
970 print "<h1>Arguments</h1>\n";
971 print "<p>\n";
972 print "<dl>\n";
973 foreach $parameter (@{$args{'parameterlist'}}) {
974my $parameter_name = $parameter;
975$parameter_name =~ s/\[.*//;
976
977($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
978print "<dt>" . $parameter . "</dt>\n";
979print "<dd>";
980output_highlight($args{'parameterdescs'}{$parameter_name});
981print "</dd>\n";
982 }
983 print "</dl>\n";
984 print "</section>\n";
985 output_section_html5(@_);
986 print "</article>\n";
987}
988
989# output DOC: block header in html5
990sub output_blockhead_html5(%) {
991 my %args = %{$_[0]};
992 my ($parameter, $section);
993 my $count;
994 my $html5id;
995
996 foreach $section (@{$args{'sectionlist'}}) {
997$html5id = $section;
998$html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
999print "<article class=\"doc\" id=\"doc:". $html5id . "\">\n";
1000print "<h1>$section</h1>\n";
1001print "<p>\n";
1002output_highlight($args{'sections'}{$section});
1003print "</p>\n";
1004 }
1005 print "</article>\n";
1006}
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008sub output_section_xml(%) {
1009 my %args = %{$_[0]};
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001010 my $section;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 # print out each section
1012 $lineprefix=" ";
1013 foreach $section (@{$args{'sectionlist'}}) {
Rich Walkerc73894c2005-05-01 08:59:26 -07001014print "<refsect1>\n";
1015print "<title>$section</title>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016if ($section =~ m/EXAMPLE/i) {
Rich Walkerc73894c2005-05-01 08:59:26 -07001017 print "<informalexample><programlisting>\n";
Daniel Santose314ba32012-10-04 17:15:08 -07001018 $output_preformatted = 1;
Rich Walkerc73894c2005-05-01 08:59:26 -07001019} else {
1020 print "<para>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-04 17:15:08 -07001023$output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024if ($section =~ m/EXAMPLE/i) {
Rich Walkerc73894c2005-05-01 08:59:26 -07001025 print "</programlisting></informalexample>\n";
1026} else {
1027 print "</para>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028}
Rich Walkerc73894c2005-05-01 08:59:26 -07001029print "</refsect1>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031}
1032
1033# output function in XML DocBook
1034sub output_function_xml(%) {
1035 my %args = %{$_[0]};
1036 my ($parameter, $section);
1037 my $count;
1038 my $id;
1039
Randy Dunlapb9d973282009-06-09 08:50:38 -07001040 $id = "API-" . $args{'function'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 $id =~ s/[^A-Za-z0-9]/-/g;
1042
Pavel Pisa5449bc92007-02-10 01:45:37 -08001043 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001044 print "<refentryinfo>\n";
1045 print " <title>LINUX</title>\n";
1046 print " <productname>Kernel Hackers Manual</productname>\n";
1047 print " <date>$man_date</date>\n";
1048 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001050 print " <refentrytitle><phrase>" . $args{'function'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001051 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 02:33:43 -07001052 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 print "</refmeta>\n";
1054 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001055 print " <refname>" . $args{'function'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 print " <refpurpose>\n";
1057 print " ";
1058 output_highlight ($args{'purpose'});
1059 print " </refpurpose>\n";
1060 print "</refnamediv>\n";
1061
1062 print "<refsynopsisdiv>\n";
1063 print " <title>Synopsis</title>\n";
1064 print " <funcsynopsis><funcprototype>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001065 print " <funcdef>" . $args{'functiontype'} . " ";
1066 print "<function>" . $args{'function'} . " </function></funcdef>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 $count = 0;
1069 if ($#{$args{'parameterlist'}} >= 0) {
1070foreach $parameter (@{$args{'parameterlist'}}) {
1071 $type = $args{'parametertypes'}{$parameter};
1072 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1073# pointer-to-function
1074print " <paramdef>$1<parameter>$parameter</parameter>)\n";
1075print " <funcparams>$2</funcparams></paramdef>\n";
1076 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001077print " <paramdef>" . $type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078print " <parameter>$parameter</parameter></paramdef>\n";
1079 }
1080}
1081 } else {
Martin Waitz6013d542005-05-01 08:59:25 -07001082print " <void/>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
1084 print " </funcprototype></funcsynopsis>\n";
1085 print "</refsynopsisdiv>\n";
1086
1087 # print parameters
1088 print "<refsect1>\n <title>Arguments</title>\n";
1089 if ($#{$args{'parameterlist'}} >= 0) {
1090print " <variablelist>\n";
1091foreach $parameter (@{$args{'parameterlist'}}) {
1092 my $parameter_name = $parameter;
1093 $parameter_name =~ s/\[.*//;
1094
1095 print " <varlistentry>\n <term><parameter>$parameter</parameter></term>\n";
1096 print " <listitem>\n <para>\n";
1097 $lineprefix=" ";
1098 output_highlight($args{'parameterdescs'}{$parameter_name});
1099 print " </para>\n </listitem>\n </varlistentry>\n";
1100}
1101print " </variablelist>\n";
1102 } else {
1103print " <para>\n None\n </para>\n";
1104 }
1105 print "</refsect1>\n";
1106
1107 output_section_xml(@_);
1108 print "</refentry>\n\n";
1109}
1110
1111# output struct in XML DocBook
1112sub output_struct_xml(%) {
1113 my %args = %{$_[0]};
1114 my ($parameter, $section);
1115 my $id;
1116
Randy Dunlapb9d973282009-06-09 08:50:38 -07001117 $id = "API-struct-" . $args{'struct'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 $id =~ s/[^A-Za-z0-9]/-/g;
1119
Pavel Pisa5449bc92007-02-10 01:45:37 -08001120 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001121 print "<refentryinfo>\n";
1122 print " <title>LINUX</title>\n";
1123 print " <productname>Kernel Hackers Manual</productname>\n";
1124 print " <date>$man_date</date>\n";
1125 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001127 print " <refentrytitle><phrase>" . $args{'type'} . " " . $args{'struct'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001128 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 02:33:43 -07001129 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 print "</refmeta>\n";
1131 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001132 print " <refname>" . $args{'type'} . " " . $args{'struct'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 print " <refpurpose>\n";
1134 print " ";
1135 output_highlight ($args{'purpose'});
1136 print " </refpurpose>\n";
1137 print "</refnamediv>\n";
1138
1139 print "<refsynopsisdiv>\n";
1140 print " <title>Synopsis</title>\n";
1141 print " <programlisting>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001142 print $args{'type'} . " " . $args{'struct'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 foreach $parameter (@{$args{'parameterlist'}}) {
1144if ($parameter =~ /^#/) {
Randy Dunlap2b35f4d2010-11-18 12:27:31 -08001145 my $prm = $parameter;
1146 # convert data read & converted thru xml_escape() into &xyz; format:
1147 # This allows us to have #define macros interspersed in a struct.
1148 $prm =~ s/\\\\\\/\&/g;
1149 print "$prm\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 next;
1151}
1152
1153my $parameter_name = $parameter;
1154$parameter_name =~ s/\[.*//;
1155
1156defined($args{'parameterdescs'}{$parameter_name}) || next;
Randy Dunlap3c308792007-05-08 00:24:39 -07001157($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158$type = $args{'parametertypes'}{$parameter};
1159if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1160 # pointer-to-function
1161 print " $1 $parameter) ($2);\n";
1162} elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07001163 # bitfield
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 print " $1 $parameter$2;\n";
1165} else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001166 print " " . $type . " " . $parameter . ";\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168 }
1169 print "};";
1170 print " </programlisting>\n";
1171 print "</refsynopsisdiv>\n";
1172
1173 print " <refsect1>\n";
1174 print " <title>Members</title>\n";
1175
Randy Dunlap39f00c02008-09-22 13:57:44 -07001176 if ($#{$args{'parameterlist'}} >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 print " <variablelist>\n";
1178 foreach $parameter (@{$args{'parameterlist'}}) {
1179 ($parameter =~ /^#/) && next;
1180
1181 my $parameter_name = $parameter;
1182 $parameter_name =~ s/\[.*//;
1183
1184 defined($args{'parameterdescs'}{$parameter_name}) || next;
1185 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1186 print " <varlistentry>";
1187 print " <term>$parameter</term>\n";
1188 print " <listitem><para>\n";
1189 output_highlight($args{'parameterdescs'}{$parameter_name});
1190 print " </para></listitem>\n";
1191 print " </varlistentry>\n";
1192 }
1193 print " </variablelist>\n";
Randy Dunlap39f00c02008-09-22 13:57:44 -07001194 } else {
1195print " <para>\n None\n </para>\n";
1196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 print " </refsect1>\n";
1198
1199 output_section_xml(@_);
1200
1201 print "</refentry>\n\n";
1202}
1203
1204# output enum in XML DocBook
1205sub output_enum_xml(%) {
1206 my %args = %{$_[0]};
1207 my ($parameter, $section);
1208 my $count;
1209 my $id;
1210
Randy Dunlapb9d973282009-06-09 08:50:38 -07001211 $id = "API-enum-" . $args{'enum'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 $id =~ s/[^A-Za-z0-9]/-/g;
1213
Pavel Pisa5449bc92007-02-10 01:45:37 -08001214 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001215 print "<refentryinfo>\n";
1216 print " <title>LINUX</title>\n";
1217 print " <productname>Kernel Hackers Manual</productname>\n";
1218 print " <date>$man_date</date>\n";
1219 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001221 print " <refentrytitle><phrase>enum " . $args{'enum'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001222 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 02:33:43 -07001223 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 print "</refmeta>\n";
1225 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001226 print " <refname>enum " . $args{'enum'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 print " <refpurpose>\n";
1228 print " ";
1229 output_highlight ($args{'purpose'});
1230 print " </refpurpose>\n";
1231 print "</refnamediv>\n";
1232
1233 print "<refsynopsisdiv>\n";
1234 print " <title>Synopsis</title>\n";
1235 print " <programlisting>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001236 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 $count = 0;
1238 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001239print " $parameter";
1240if ($count != $#{$args{'parameterlist'}}) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 $count++;
1242 print ",";
Randy Dunlap3c308792007-05-08 00:24:39 -07001243}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244print "\n";
1245 }
1246 print "};";
1247 print " </programlisting>\n";
1248 print "</refsynopsisdiv>\n";
1249
1250 print "<refsect1>\n";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001251 print " <title>Constants</title>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 print " <variablelist>\n";
1253 foreach $parameter (@{$args{'parameterlist'}}) {
1254 my $parameter_name = $parameter;
1255 $parameter_name =~ s/\[.*//;
1256
1257 print " <varlistentry>";
1258 print " <term>$parameter</term>\n";
1259 print " <listitem><para>\n";
1260 output_highlight($args{'parameterdescs'}{$parameter_name});
1261 print " </para></listitem>\n";
1262 print " </varlistentry>\n";
1263 }
1264 print " </variablelist>\n";
1265 print "</refsect1>\n";
1266
1267 output_section_xml(@_);
1268
1269 print "</refentry>\n\n";
1270}
1271
1272# output typedef in XML DocBook
1273sub output_typedef_xml(%) {
1274 my %args = %{$_[0]};
1275 my ($parameter, $section);
1276 my $id;
1277
Randy Dunlapb9d973282009-06-09 08:50:38 -07001278 $id = "API-typedef-" . $args{'typedef'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 $id =~ s/[^A-Za-z0-9]/-/g;
1280
Pavel Pisa5449bc92007-02-10 01:45:37 -08001281 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001282 print "<refentryinfo>\n";
1283 print " <title>LINUX</title>\n";
1284 print " <productname>Kernel Hackers Manual</productname>\n";
1285 print " <date>$man_date</date>\n";
1286 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001288 print " <refentrytitle><phrase>typedef " . $args{'typedef'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001289 print " <manvolnum>9</manvolnum>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 print "</refmeta>\n";
1291 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001292 print " <refname>typedef " . $args{'typedef'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 print " <refpurpose>\n";
1294 print " ";
1295 output_highlight ($args{'purpose'});
1296 print " </refpurpose>\n";
1297 print "</refnamediv>\n";
1298
1299 print "<refsynopsisdiv>\n";
1300 print " <title>Synopsis</title>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001301 print " <synopsis>typedef " . $args{'typedef'} . ";</synopsis>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 print "</refsynopsisdiv>\n";
1303
1304 output_section_xml(@_);
1305
1306 print "</refentry>\n\n";
1307}
1308
1309# output in XML DocBook
Johannes Bergb112e0f2007-10-24 15:08:48 -07001310sub output_blockhead_xml(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 my %args = %{$_[0]};
1312 my ($parameter, $section);
1313 my $count;
1314
1315 my $id = $args{'module'};
1316 $id =~ s/[^A-Za-z0-9]/-/g;
1317
1318 # print out each section
1319 $lineprefix=" ";
1320 foreach $section (@{$args{'sectionlist'}}) {
Johannes Bergb112e0f2007-10-24 15:08:48 -07001321if (!$args{'content-only'}) {
1322print "<refsect1>\n <title>$section</title>\n";
1323}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324if ($section =~ m/EXAMPLE/i) {
1325 print "<example><para>\n";
Daniel Santose314ba32012-10-04 17:15:08 -07001326 $output_preformatted = 1;
Johannes Bergb112e0f2007-10-24 15:08:48 -07001327} else {
1328 print "<para>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-04 17:15:08 -07001331$output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332if ($section =~ m/EXAMPLE/i) {
1333 print "</para></example>\n";
Johannes Bergb112e0f2007-10-24 15:08:48 -07001334} else {
1335 print "</para>";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336}
Johannes Bergb112e0f2007-10-24 15:08:48 -07001337if (!$args{'content-only'}) {
1338print "\n</refsect1>\n";
1339}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
1341
1342 print "\n\n";
1343}
1344
1345# output in XML DocBook
1346sub output_function_gnome {
1347 my %args = %{$_[0]};
1348 my ($parameter, $section);
1349 my $count;
1350 my $id;
1351
Randy Dunlapb9d973282009-06-09 08:50:38 -07001352 $id = $args{'module'} . "-" . $args{'function'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 $id =~ s/[^A-Za-z0-9]/-/g;
1354
1355 print "<sect2>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001356 print " <title id=\"$id\">" . $args{'function'} . "</title>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
1358 print " <funcsynopsis>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001359 print " <funcdef>" . $args{'functiontype'} . " ";
1360 print "<function>" . $args{'function'} . " ";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 print "</function></funcdef>\n";
1362
1363 $count = 0;
1364 if ($#{$args{'parameterlist'}} >= 0) {
1365foreach $parameter (@{$args{'parameterlist'}}) {
1366 $type = $args{'parametertypes'}{$parameter};
1367 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1368# pointer-to-function
1369print " <paramdef>$1 <parameter>$parameter</parameter>)\n";
1370print " <funcparams>$2</funcparams></paramdef>\n";
1371 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001372print " <paramdef>" . $type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373print " <parameter>$parameter</parameter></paramdef>\n";
1374 }
1375}
1376 } else {
1377print " <void>\n";
1378 }
1379 print " </funcsynopsis>\n";
1380 if ($#{$args{'parameterlist'}} >= 0) {
1381print " <informaltable pgwide=\"1\" frame=\"none\" role=\"params\">\n";
1382print "<tgroup cols=\"2\">\n";
1383print "<colspec colwidth=\"2*\">\n";
1384print "<colspec colwidth=\"8*\">\n";
1385print "<tbody>\n";
1386foreach $parameter (@{$args{'parameterlist'}}) {
1387 my $parameter_name = $parameter;
1388 $parameter_name =~ s/\[.*//;
1389
1390 print " <row><entry align=\"right\"><parameter>$parameter</parameter></entry>\n";
1391 print " <entry>\n";
1392 $lineprefix=" ";
1393 output_highlight($args{'parameterdescs'}{$parameter_name});
1394 print " </entry></row>\n";
1395}
1396print " </tbody></tgroup></informaltable>\n";
1397 } else {
1398print " <para>\n None\n </para>\n";
1399 }
1400
1401 # print out each section
1402 $lineprefix=" ";
1403 foreach $section (@{$args{'sectionlist'}}) {
1404print "<simplesect>\n <title>$section</title>\n";
1405if ($section =~ m/EXAMPLE/i) {
1406 print "<example><programlisting>\n";
Daniel Santose314ba32012-10-04 17:15:08 -07001407 $output_preformatted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408} else {
1409}
1410print "<para>\n";
1411output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-04 17:15:08 -07001412$output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413print "</para>\n";
1414if ($section =~ m/EXAMPLE/i) {
1415 print "</programlisting></example>\n";
1416} else {
1417}
1418print " </simplesect>\n";
1419 }
1420
1421 print "</sect2>\n\n";
1422}
1423
1424##
1425# output function in man
1426sub output_function_man(%) {
1427 my %args = %{$_[0]};
1428 my ($parameter, $section);
1429 my $count;
1430
1431 print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n";
1432
1433 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001434 print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
1436 print ".SH SYNOPSIS\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001437 if ($args{'functiontype'} ne "") {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001438print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001439 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001440print ".B \"" . $args{'function'} . "\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 $count = 0;
1443 my $parenth = "(";
1444 my $post = ",";
1445 foreach my $parameter (@{$args{'parameterlist'}}) {
1446if ($count == $#{$args{'parameterlist'}}) {
1447 $post = ");";
1448}
1449$type = $args{'parametertypes'}{$parameter};
1450if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1451 # pointer-to-function
Randy Dunlapb9d973282009-06-09 08:50:38 -07001452 print ".BI \"" . $parenth . $1 . "\" " . $parameter . " \") (" . $2 . ")" . $post . "\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453} else {
1454 $type =~ s/([^\*])$/$1 /;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001455 print ".BI \"" . $parenth . $type . "\" " . $parameter . " \"" . $post . "\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456}
1457$count++;
1458$parenth = "";
1459 }
1460
1461 print ".SH ARGUMENTS\n";
1462 foreach $parameter (@{$args{'parameterlist'}}) {
1463my $parameter_name = $parameter;
1464$parameter_name =~ s/\[.*//;
1465
Randy Dunlapb9d973282009-06-09 08:50:38 -07001466print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467output_highlight($args{'parameterdescs'}{$parameter_name});
1468 }
1469 foreach $section (@{$args{'sectionlist'}}) {
1470print ".SH \"", uc $section, "\"\n";
1471output_highlight($args{'sections'}{$section});
1472 }
1473}
1474
1475##
1476# output enum in man
1477sub output_enum_man(%) {
1478 my %args = %{$_[0]};
1479 my ($parameter, $section);
1480 my $count;
1481
1482 print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n";
1483
1484 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001485 print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
1487 print ".SH SYNOPSIS\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001488 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 $count = 0;
1490 foreach my $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001491print ".br\n.BI \" $parameter\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492if ($count == $#{$args{'parameterlist'}}) {
1493 print "\n};\n";
1494 last;
1495}
1496else {
1497 print ", \n.br\n";
1498}
1499$count++;
1500 }
1501
1502 print ".SH Constants\n";
1503 foreach $parameter (@{$args{'parameterlist'}}) {
1504my $parameter_name = $parameter;
1505$parameter_name =~ s/\[.*//;
1506
Randy Dunlapb9d973282009-06-09 08:50:38 -07001507print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508output_highlight($args{'parameterdescs'}{$parameter_name});
1509 }
1510 foreach $section (@{$args{'sectionlist'}}) {
1511print ".SH \"$section\"\n";
1512output_highlight($args{'sections'}{$section});
1513 }
1514}
1515
1516##
1517# output struct in man
1518sub output_struct_man(%) {
1519 my %args = %{$_[0]};
1520 my ($parameter, $section);
1521
Randy Dunlapb9d973282009-06-09 08:50:38 -07001522 print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001525 print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527 print ".SH SYNOPSIS\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001528 print $args{'type'} . " " . $args{'struct'} . " {\n.br\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530 foreach my $parameter (@{$args{'parameterlist'}}) {
1531if ($parameter =~ /^#/) {
1532 print ".BI \"$parameter\"\n.br\n";
1533 next;
1534}
1535my $parameter_name = $parameter;
1536$parameter_name =~ s/\[.*//;
1537
Randy Dunlap3c308792007-05-08 00:24:39 -07001538($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539$type = $args{'parametertypes'}{$parameter};
1540if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1541 # pointer-to-function
Randy Dunlapb9d973282009-06-09 08:50:38 -07001542 print ".BI \" " . $1 . "\" " . $parameter . " \") (" . $2 . ")" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543} elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy.Dunlap1d7e1d42006-07-01 04:36:34 -07001544 # bitfield
Randy Dunlapb9d973282009-06-09 08:50:38 -07001545 print ".BI \" " . $1 . "\ \" " . $parameter . $2 . " \"" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546} else {
1547 $type =~ s/([^\*])$/$1 /;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001548 print ".BI \" " . $type . "\" " . $parameter . " \"" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549}
1550print "\n.br\n";
1551 }
1552 print "};\n.br\n";
1553
Randy Dunlapc51d3dac2006-06-25 05:49:14 -07001554 print ".SH Members\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 foreach $parameter (@{$args{'parameterlist'}}) {
1556($parameter =~ /^#/) && next;
1557
1558my $parameter_name = $parameter;
1559$parameter_name =~ s/\[.*//;
1560
Randy Dunlap3c308792007-05-08 00:24:39 -07001561($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001562print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563output_highlight($args{'parameterdescs'}{$parameter_name});
1564 }
1565 foreach $section (@{$args{'sectionlist'}}) {
1566print ".SH \"$section\"\n";
1567output_highlight($args{'sections'}{$section});
1568 }
1569}
1570
1571##
1572# output typedef in man
1573sub output_typedef_man(%) {
1574 my %args = %{$_[0]};
1575 my ($parameter, $section);
1576
1577 print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n";
1578
1579 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001580 print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 foreach $section (@{$args{'sectionlist'}}) {
1583print ".SH \"$section\"\n";
1584output_highlight($args{'sections'}{$section});
1585 }
1586}
1587
Johannes Bergb112e0f2007-10-24 15:08:48 -07001588sub output_blockhead_man(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 my %args = %{$_[0]};
1590 my ($parameter, $section);
1591 my $count;
1592
1593 print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n";
1594
1595 foreach $section (@{$args{'sectionlist'}}) {
1596print ".SH \"$section\"\n";
1597output_highlight($args{'sections'}{$section});
1598 }
1599}
1600
1601##
1602# output in text
1603sub output_function_text(%) {
1604 my %args = %{$_[0]};
1605 my ($parameter, $section);
Randy Dunlapa21217d2007-02-10 01:46:04 -08001606 my $start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Randy Dunlapf47634b2006-07-01 04:36:36 -07001608 print "Name:\n\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001609 print $args{'function'} . " - " . $args{'purpose'} . "\n";
Randy Dunlapf47634b2006-07-01 04:36:36 -07001610
1611 print "\nSynopsis:\n\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001612 if ($args{'functiontype'} ne "") {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001613$start = $args{'functiontype'} . " " . $args{'function'} . " (";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001614 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001615$start = $args{'function'} . " (";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 print $start;
Randy Dunlapa21217d2007-02-10 01:46:04 -08001618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 my $count = 0;
1620 foreach my $parameter (@{$args{'parameterlist'}}) {
1621$type = $args{'parametertypes'}{$parameter};
1622if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1623 # pointer-to-function
Randy Dunlapb9d973282009-06-09 08:50:38 -07001624 print $1 . $parameter . ") (" . $2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625} else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001626 print $type . " " . $parameter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627}
1628if ($count != $#{$args{'parameterlist'}}) {
1629 $count++;
1630 print ",\n";
1631 print " " x length($start);
1632} else {
1633 print ");\n\n";
1634}
1635 }
1636
1637 print "Arguments:\n\n";
1638 foreach $parameter (@{$args{'parameterlist'}}) {
1639my $parameter_name = $parameter;
1640$parameter_name =~ s/\[.*//;
1641
Randy Dunlapb9d973282009-06-09 08:50:38 -07001642print $parameter . "\n\t" . $args{'parameterdescs'}{$parameter_name} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 }
1644 output_section_text(@_);
1645}
1646
1647#output sections in text
1648sub output_section_text(%) {
1649 my %args = %{$_[0]};
1650 my $section;
1651
1652 print "\n";
1653 foreach $section (@{$args{'sectionlist'}}) {
1654print "$section:\n\n";
1655output_highlight($args{'sections'}{$section});
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 print "\n\n";
1658}
1659
1660# output enum in text
1661sub output_enum_text(%) {
1662 my %args = %{$_[0]};
1663 my ($parameter);
1664 my $count;
1665 print "Enum:\n\n";
1666
Randy Dunlapb9d973282009-06-09 08:50:38 -07001667 print "enum " . $args{'enum'} . " - " . $args{'purpose'} . "\n\n";
1668 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 $count = 0;
1670 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001671print "\t$parameter";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672if ($count != $#{$args{'parameterlist'}}) {
1673 $count++;
1674 print ",";
1675}
1676print "\n";
1677 }
1678 print "};\n\n";
1679
1680 print "Constants:\n\n";
1681 foreach $parameter (@{$args{'parameterlist'}}) {
1682print "$parameter\n\t";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001683print $args{'parameterdescs'}{$parameter} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 }
1685
1686 output_section_text(@_);
1687}
1688
1689# output typedef in text
1690sub output_typedef_text(%) {
1691 my %args = %{$_[0]};
1692 my ($parameter);
1693 my $count;
1694 print "Typedef:\n\n";
1695
Randy Dunlapb9d973282009-06-09 08:50:38 -07001696 print "typedef " . $args{'typedef'} . " - " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 output_section_text(@_);
1698}
1699
1700# output struct as text
1701sub output_struct_text(%) {
1702 my %args = %{$_[0]};
1703 my ($parameter);
1704
Randy Dunlapb9d973282009-06-09 08:50:38 -07001705 print $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "\n\n";
1706 print $args{'type'} . " " . $args{'struct'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 foreach $parameter (@{$args{'parameterlist'}}) {
1708if ($parameter =~ /^#/) {
1709 print "$parameter\n";
1710 next;
1711}
1712
1713my $parameter_name = $parameter;
1714$parameter_name =~ s/\[.*//;
1715
Randy Dunlap3c308792007-05-08 00:24:39 -07001716($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717$type = $args{'parametertypes'}{$parameter};
1718if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1719 # pointer-to-function
1720 print "\t$1 $parameter) ($2);\n";
1721} elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07001722 # bitfield
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 print "\t$1 $parameter$2;\n";
1724} else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001725 print "\t" . $type . " " . $parameter . ";\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726}
1727 }
1728 print "};\n\n";
1729
1730 print "Members:\n\n";
1731 foreach $parameter (@{$args{'parameterlist'}}) {
1732($parameter =~ /^#/) && next;
1733
1734my $parameter_name = $parameter;
1735$parameter_name =~ s/\[.*//;
1736
Randy Dunlap3c308792007-05-08 00:24:39 -07001737($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738print "$parameter\n\t";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001739print $args{'parameterdescs'}{$parameter_name} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 }
1741 print "\n";
1742 output_section_text(@_);
1743}
1744
Johannes Bergb112e0f2007-10-24 15:08:48 -07001745sub output_blockhead_text(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 my %args = %{$_[0]};
1747 my ($parameter, $section);
1748
1749 foreach $section (@{$args{'sectionlist'}}) {
1750print " $section:\n";
1751print " -> ";
1752output_highlight($args{'sections'}{$section});
1753 }
1754}
1755
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001756##
1757# output in restructured text
1758#
1759
1760#
1761# This could use some work; it's used to output the DOC: sections, and
1762# starts by putting out the name of the doc section itself, but that tends
1763# to duplicate a header already in the template file.
1764#
1765sub output_blockhead_rst(%) {
1766 my %args = %{$_[0]};
1767 my ($parameter, $section);
1768
1769 foreach $section (@{$args{'sectionlist'}}) {
Jani Nikula9e721842016-05-29 22:27:35 +03001770if ($output_selection != OUTPUT_INCLUDE) {
1771 print "**$section**\n\n";
1772}
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001773output_highlight_rst($args{'sections'}{$section});
1774print "\n";
1775 }
1776}
1777
1778sub output_highlight_rst {
1779 my $contents = join "\n",@_;
1780 my $line;
1781
1782 # undo the evil effects of xml_escape() earlier
1783 $contents = xml_unescape($contents);
1784
1785 eval $dohighlight;
1786 die $@ if $@;
1787
1788 foreach $line (split "\n", $contents) {
1789if ($line eq "") {
1790 print $lineprefix, $blankline;
1791} else {
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001792 print $lineprefix, $line;
1793}
1794print "\n";
1795 }
1796}
1797
1798sub output_function_rst(%) {
1799 my %args = %{$_[0]};
1800 my ($parameter, $section);
Jani Nikulac099ff62016-05-26 17:18:17 +03001801 my $oldprefix = $lineprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001802 my $start;
1803
1804 print ".. c:function:: ";
1805 if ($args{'functiontype'} ne "") {
1806$start = $args{'functiontype'} . " " . $args{'function'} . " (";
1807 } else {
1808$start = $args{'function'} . " (";
1809 }
1810 print $start;
1811
1812 my $count = 0;
1813 foreach my $parameter (@{$args{'parameterlist'}}) {
1814if ($count ne 0) {
1815 print ", ";
1816}
1817$count++;
1818$type = $args{'parametertypes'}{$parameter};
1819if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1820 # pointer-to-function
1821 print $1 . $parameter . ") (" . $2;
1822} else {
1823 print $type . " " . $parameter;
1824}
1825 }
Jani Nikulac099ff62016-05-26 17:18:17 +03001826 print ")\n\n";
1827 $lineprefix = " ";
1828 output_highlight_rst($args{'purpose'});
1829 print "\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001830
1831 print ":Parameters:\n\n";
Jani Nikulac099ff62016-05-26 17:18:17 +03001832 $lineprefix = " ";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001833 foreach $parameter (@{$args{'parameterlist'}}) {
1834my $parameter_name = $parameter;
1835#$parameter_name =~ s/\[.*//;
1836$type = $args{'parametertypes'}{$parameter};
1837
1838if ($type ne "") {
1839 print " ``$type $parameter``\n";
1840} else {
1841 print " ``$parameter``\n";
1842}
Jani Nikula5e64fa92016-05-19 20:32:48 +03001843if (defined($args{'parameterdescs'}{$parameter_name}) &&
1844 $args{'parameterdescs'}{$parameter_name} ne $undescribed) {
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001845 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001846} else {
1847 print "\n _undescribed_\n";
1848}
1849print "\n";
1850 }
Jani Nikulac099ff62016-05-26 17:18:17 +03001851
1852 $lineprefix = $oldprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001853 output_section_rst(@_);
1854}
1855
1856sub output_section_rst(%) {
1857 my %args = %{$_[0]};
1858 my $section;
1859 my $oldprefix = $lineprefix;
1860 $lineprefix = " ";
1861
1862 foreach $section (@{$args{'sectionlist'}}) {
1863print ":$section:\n\n";
1864output_highlight_rst($args{'sections'}{$section});
1865print "\n";
1866 }
1867 print "\n";
1868 $lineprefix = $oldprefix;
1869}
1870
1871sub output_enum_rst(%) {
1872 my %args = %{$_[0]};
1873 my ($parameter);
Jani Nikulac099ff62016-05-26 17:18:17 +03001874 my $oldprefix = $lineprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001875 my $count;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001876 my $name = "enum " . $args{'enum'};
Jani Nikula62850972016-05-12 16:15:38 +03001877
1878 print "\n\n.. c:type:: " . $name . "\n\n";
Jani Nikulac099ff62016-05-26 17:18:17 +03001879 $lineprefix = " ";
1880 output_highlight_rst($args{'purpose'});
1881 print "\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001882
1883 print "..\n\n:Constants:\n\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001884 $lineprefix = " ";
1885 foreach $parameter (@{$args{'parameterlist'}}) {
1886print " `$parameter`\n";
1887if ($args{'parameterdescs'}{$parameter} ne $undescribed) {
1888 output_highlight_rst($args{'parameterdescs'}{$parameter});
1889} else {
1890 print " undescribed\n";
1891}
1892print "\n";
1893 }
Jani Nikulac099ff62016-05-26 17:18:17 +03001894
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001895 $lineprefix = $oldprefix;
1896 output_section_rst(@_);
1897}
1898
1899sub output_typedef_rst(%) {
1900 my %args = %{$_[0]};
1901 my ($parameter);
Jani Nikulac099ff62016-05-26 17:18:17 +03001902 my $oldprefix = $lineprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001903 my $name = "typedef " . $args{'typedef'};
1904
Jani Nikula62850972016-05-12 16:15:38 +03001905 ### FIXME: should the name below contain "typedef" or not?
1906 print "\n\n.. c:type:: " . $name . "\n\n";
Jani Nikulac099ff62016-05-26 17:18:17 +03001907 $lineprefix = " ";
1908 output_highlight_rst($args{'purpose'});
1909 print "\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001910
Jani Nikulac099ff62016-05-26 17:18:17 +03001911 $lineprefix = $oldprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001912 output_section_rst(@_);
1913}
1914
1915sub output_struct_rst(%) {
1916 my %args = %{$_[0]};
1917 my ($parameter);
Jani Nikulac099ff62016-05-26 17:18:17 +03001918 my $oldprefix = $lineprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001919 my $name = $args{'type'} . " " . $args{'struct'};
1920
Jani Nikula62850972016-05-12 16:15:38 +03001921 print "\n\n.. c:type:: " . $name . "\n\n";
Jani Nikulac099ff62016-05-26 17:18:17 +03001922 $lineprefix = " ";
1923 output_highlight_rst($args{'purpose'});
1924 print "\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001925
1926 print ":Definition:\n\n";
1927 print " ::\n\n";
1928 print " " . $args{'type'} . " " . $args{'struct'} . " {\n";
1929 foreach $parameter (@{$args{'parameterlist'}}) {
1930if ($parameter =~ /^#/) {
1931 print " " . "$parameter\n";
1932 next;
1933}
1934
1935my $parameter_name = $parameter;
1936$parameter_name =~ s/\[.*//;
1937
1938($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1939$type = $args{'parametertypes'}{$parameter};
1940if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1941 # pointer-to-function
1942 print " $1 $parameter) ($2);\n";
1943} elsif ($type =~ m/^(.*?)\s*(:.*)/) {
1944 # bitfield
1945 print " $1 $parameter$2;\n";
1946} else {
1947 print " " . $type . " " . $parameter . ";\n";
1948}
1949 }
1950 print " };\n\n";
1951
1952 print ":Members:\n\n";
Jani Nikulac099ff62016-05-26 17:18:17 +03001953 $lineprefix = " ";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001954 foreach $parameter (@{$args{'parameterlist'}}) {
1955($parameter =~ /^#/) && next;
1956
1957my $parameter_name = $parameter;
1958$parameter_name =~ s/\[.*//;
1959
1960($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1961$type = $args{'parametertypes'}{$parameter};
1962print " `$type $parameter`" . "\n";
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001963output_highlight_rst($args{'parameterdescs'}{$parameter_name});
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001964print "\n";
1965 }
1966 print "\n";
Jani Nikulac099ff62016-05-26 17:18:17 +03001967
1968 $lineprefix = $oldprefix;
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03001969 output_section_rst(@_);
1970}
1971
1972
Johannes Bergeda603f2010-09-11 15:55:22 -07001973## list mode output functions
1974
1975sub output_function_list(%) {
1976 my %args = %{$_[0]};
1977
1978 print $args{'function'} . "\n";
1979}
1980
1981# output enum in list
1982sub output_enum_list(%) {
1983 my %args = %{$_[0]};
1984 print $args{'enum'} . "\n";
1985}
1986
1987# output typedef in list
1988sub output_typedef_list(%) {
1989 my %args = %{$_[0]};
1990 print $args{'typedef'} . "\n";
1991}
1992
1993# output struct as list
1994sub output_struct_list(%) {
1995 my %args = %{$_[0]};
1996
1997 print $args{'struct'} . "\n";
1998}
1999
2000sub output_blockhead_list(%) {
2001 my %args = %{$_[0]};
2002 my ($parameter, $section);
2003
2004 foreach $section (@{$args{'sectionlist'}}) {
2005print "DOC: $section\n";
2006 }
2007}
2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009##
Randy Dunlap27205742006-10-11 01:22:12 -07002010# generic output function for all types (function, struct/union, typedef, enum);
2011# calls the generated, variable output_ function name based on
2012# functype and output_mode
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013sub output_declaration {
2014 no strict 'refs';
2015 my $name = shift;
2016 my $functype = shift;
2017 my $func = "output_${functype}_$output_mode";
Jani Nikulab6c3f452016-05-29 22:19:35 +03002018 if (($output_selection == OUTPUT_ALL) ||
2019(($output_selection == OUTPUT_INCLUDE ||
2020 $output_selection == OUTPUT_EXPORTED) &&
2021 defined($function_table{$name})) ||
2022(($output_selection == OUTPUT_EXCLUDE ||
2023 $output_selection == OUTPUT_INTERNAL) &&
2024 !($functype eq "function" && defined($function_table{$name}))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 {
Randy Dunlap3c308792007-05-08 00:24:39 -07002026&$func(@_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027$section_counter++;
2028 }
2029}
2030
2031##
Randy Dunlap27205742006-10-11 01:22:12 -07002032# generic output function - calls the right one based on current output mode.
Johannes Bergb112e0f2007-10-24 15:08:48 -07002033sub output_blockhead {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 no strict 'refs';
Randy Dunlapb9d973282009-06-09 08:50:38 -07002035 my $func = "output_blockhead_" . $output_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 &$func(@_);
2037 $section_counter++;
2038}
2039
2040##
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002041# takes a declaration (struct, union, enum, typedef) and
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042# invokes the right handler. NOT called for functions.
2043sub dump_declaration($$) {
2044 no strict 'refs';
2045 my ($prototype, $file) = @_;
Randy Dunlapb9d973282009-06-09 08:50:38 -07002046 my $func = "dump_" . $decl_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 &$func(@_);
2048}
2049
2050sub dump_union($$) {
2051 dump_struct(@_);
2052}
2053
2054sub dump_struct($$) {
2055 my $x = shift;
2056 my $file = shift;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002057 my $nested;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Randy Dunlap52dc5ae2009-04-30 15:08:53 -07002059 if ($x =~ /(struct|union)\s+(\w+)\s*{(.*)}/) {
2060#my $decl_type = $1;
Randy Dunlap3c308792007-05-08 00:24:39 -07002061$declaration_name = $2;
2062my $members = $3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
2064# ignore embedded structs or unions
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002065$members =~ s/({.*})//g;
2066$nested = $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Martin Waitzaeec46b2005-11-13 16:08:13 -08002068# ignore members marked private:
Mauro Carvalho Chehab0d8c39e2015-10-05 09:03:48 -03002069$members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi;
2070$members =~ s/\/\*\s*private:.*//gosi;
Martin Waitzaeec46b2005-11-13 16:08:13 -08002071# strip comments:
2072$members =~ s/\/\*.*?\*\///gos;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002073$nested =~ s/\/\*.*?\*\///gos;
Randy Dunlapd960eea2009-06-29 14:54:11 -07002074# strip kmemcheck_bitfield_{begin,end}.*;
2075$members =~ s/kmemcheck_bitfield_.*?;//gos;
Randy Dunlapef5da592010-03-23 13:35:14 -07002076# strip attributes
Jonathan Corbetf0074922015-08-23 13:35:23 -06002077$members =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
Johannes Berg7b990782014-12-10 15:41:28 -08002078$members =~ s/__aligned\s*\([^;]*\)//gos;
Jonathan Corbetf0074922015-08-23 13:35:23 -06002079$members =~ s/\s*CRYPTO_MINALIGN_ATTR//gos;
Conchúr Navidb22b5a92015-11-08 10:52:00 +01002080# replace DECLARE_BITMAP
2081$members =~ s/DECLARE_BITMAP\s*\(([^,)]+), ([^,)]+)\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos;
Martin Waitzaeec46b2005-11-13 16:08:13 -08002082
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083create_parameterlist($members, ';', $file);
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002084check_sections($file, $declaration_name, "struct", $sectcheck, $struct_actual, $nested);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
2086output_declaration($declaration_name,
2087 'struct',
2088 {'struct' => $declaration_name,
2089 'module' => $modulename,
2090 'parameterlist' => \@parameterlist,
2091 'parameterdescs' => \%parameterdescs,
2092 'parametertypes' => \%parametertypes,
2093 'sectionlist' => \@sectionlist,
2094 'sections' => \%sections,
2095 'purpose' => $declaration_purpose,
2096 'type' => $decl_type
2097 });
2098 }
2099 else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002100print STDERR "${file}:$.: error: Cannot parse struct or union!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101++$errors;
2102 }
2103}
2104
2105sub dump_enum($$) {
2106 my $x = shift;
2107 my $file = shift;
2108
Martin Waitzaeec46b2005-11-13 16:08:13 -08002109 $x =~ s@/\*.*?\*/@@gos;# strip comments.
Conchúr Navid4468e212015-11-08 10:48:05 +01002110 # strip #define macros inside enums
2111 $x =~ s@#\s*((define|ifdef)\s+|endif)[^;]*;@@gos;
Randy Dunlapb6d676d2010-08-10 18:02:50 -07002112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 if ($x =~ /enum\s+(\w+)\s*{(.*)}/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002114$declaration_name = $1;
2115my $members = $2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117foreach my $arg (split ',', $members) {
2118 $arg =~ s/^\s*(\w+).*/$1/;
2119 push @parameterlist, $arg;
2120 if (!$parameterdescs{$arg}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002121$parameterdescs{$arg} = $undescribed;
Bart Van Assched40e1e62015-09-04 15:43:21 -07002122print STDERR "${file}:$.: warning: Enum value '$arg' ".
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 "not described in enum '$declaration_name'\n";
2124 }
2125
2126}
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128output_declaration($declaration_name,
2129 'enum',
2130 {'enum' => $declaration_name,
2131 'module' => $modulename,
2132 'parameterlist' => \@parameterlist,
2133 'parameterdescs' => \%parameterdescs,
2134 'sectionlist' => \@sectionlist,
2135 'sections' => \%sections,
2136 'purpose' => $declaration_purpose
2137 });
2138 }
2139 else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002140print STDERR "${file}:$.: error: Cannot parse enum!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141++$errors;
2142 }
2143}
2144
2145sub dump_typedef($$) {
2146 my $x = shift;
2147 my $file = shift;
2148
Martin Waitzaeec46b2005-11-13 16:08:13 -08002149 $x =~ s@/\*.*?\*/@@gos;# strip comments.
Mauro Carvalho Chehab83766452015-10-08 16:14:45 -03002150
2151 # Parse function prototypes
2152 if ($x =~ /typedef\s+(\w+)\s*\(\*\s*(\w\S+)\s*\)\s*\((.*)\);/) {
2153# Function typedefs
2154$return_type = $1;
2155$declaration_name = $2;
2156my $args = $3;
2157
2158create_parameterlist($args, ',', $file);
2159
2160output_declaration($declaration_name,
2161 'function',
2162 {'function' => $declaration_name,
2163 'module' => $modulename,
2164 'functiontype' => $return_type,
2165 'parameterlist' => \@parameterlist,
2166 'parameterdescs' => \%parameterdescs,
2167 'parametertypes' => \%parametertypes,
2168 'sectionlist' => \@sectionlist,
2169 'sections' => \%sections,
2170 'purpose' => $declaration_purpose
2171 });
2172return;
2173 }
2174
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002176$x =~ s/\(*.\)\s*;$/;/;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177$x =~ s/\[*.\]\s*;$/;/;
2178 }
2179
2180 if ($x =~ /typedef.*\s+(\w+)\s*;/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002181$declaration_name = $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
2183output_declaration($declaration_name,
2184 'typedef',
2185 {'typedef' => $declaration_name,
2186 'module' => $modulename,
2187 'sectionlist' => \@sectionlist,
2188 'sections' => \%sections,
2189 'purpose' => $declaration_purpose
2190 });
2191 }
2192 else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002193print STDERR "${file}:$.: error: Cannot parse typedef!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194++$errors;
2195 }
2196}
2197
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002198sub save_struct_actual($) {
2199 my $actual = shift;
2200
2201 # strip all spaces from the actual param so that it looks like one string item
2202 $actual =~ s/\s*//g;
2203 $struct_actual = $struct_actual . $actual . " ";
2204}
2205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206sub create_parameterlist($$$) {
2207 my $args = shift;
2208 my $splitter = shift;
2209 my $file = shift;
2210 my $type;
2211 my $param;
2212
Martin Waitza6d3fe72006-01-09 20:53:55 -08002213 # temporarily replace commas inside function pointer definition
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 while ($args =~ /(\([^\),]+),/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002215$args =~ s/(\([^\),]+),/$1#/g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 }
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 foreach my $arg (split($splitter, $args)) {
2219# strip comments
2220$arg =~ s/\/\*.*\*\///;
Randy Dunlap3c308792007-05-08 00:24:39 -07002221# strip leading/trailing spaces
2222$arg =~ s/^\s*//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223$arg =~ s/\s*$//;
2224$arg =~ s/\s+/ /;
2225
2226if ($arg =~ /^#/) {
2227 # Treat preprocessor directive as a typeless variable just to fill
2228 # corresponding data structures "correctly". Catch it later in
2229 # output_* subs.
2230 push_parameter($arg, "", $file);
Richard Kennedy00d62962008-02-23 15:24:01 -08002231} elsif ($arg =~ m/\(.+\)\s*\(/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 # pointer-to-function
2233 $arg =~ tr/#/,/;
Richard Kennedy00d62962008-02-23 15:24:01 -08002234 $arg =~ m/[^\(]+\(\*?\s*(\w*)\s*\)/;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 $param = $1;
2236 $type = $arg;
Richard Kennedy00d62962008-02-23 15:24:01 -08002237 $type =~ s/([^\(]+\(\*?)\s*$param/$1/;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002238 save_struct_actual($param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 push_parameter($param, $type, $file);
Martin Waitzaeec46b2005-11-13 16:08:13 -08002240} elsif ($arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 $arg =~ s/\s*:\s*/:/g;
2242 $arg =~ s/\s*\[/\[/g;
2243
2244 my @args = split('\s*,\s*', $arg);
2245 if ($args[0] =~ m/\*/) {
2246$args[0] =~ s/(\*+)\s*/ $1/;
2247 }
Borislav Petkov884f2812007-05-08 00:29:05 -07002248
2249 my @first_arg;
2250 if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) {
2251 shift @args;
2252 push(@first_arg, split('\s+', $1));
2253 push(@first_arg, $2);
2254 } else {
2255 @first_arg = split('\s+', shift @args);
2256 }
2257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 unshift(@args, pop @first_arg);
2259 $type = join " ", @first_arg;
2260
2261 foreach $param (@args) {
2262if ($param =~ m/^(\*+)\s*(.*)/) {
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002263 save_struct_actual($2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 push_parameter($2, "$type $1", $file);
2265}
2266elsif ($param =~ m/(.*?):(\d+)/) {
Randy Dunlap7b978872008-05-16 15:45:52 -07002267 if ($type ne "") { # skip unnamed bit-fields
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002268save_struct_actual($1);
Randy Dunlap7b978872008-05-16 15:45:52 -07002269push_parameter($1, "$type:$2", $file)
2270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271}
2272else {
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002273 save_struct_actual($param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 push_parameter($param, $type, $file);
2275}
2276 }
2277}
2278 }
2279}
2280
2281sub push_parameter($$$) {
2282my $param = shift;
2283my $type = shift;
2284my $file = shift;
2285
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07002286if (($anon_struct_union == 1) && ($type eq "") &&
2287 ($param eq "}")) {
2288return;# ignore the ending }; from anon. struct/union
2289}
2290
2291$anon_struct_union = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292my $param_name = $param;
2293$param_name =~ s/\[.*//;
2294
Martin Waitza6d3fe72006-01-09 20:53:55 -08002295if ($type eq "" && $param =~ /\.\.\.$/)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296{
Randy Dunlapced69092008-12-01 13:14:03 -08002297 if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") {
2298$parameterdescs{$param} = "variable arguments";
2299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300}
2301elsif ($type eq "" && ($param eq "" or $param eq "void"))
2302{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 $param="void";
2304 $parameterdescs{void} = "no arguments";
2305}
Randy Dunlap134fe012006-12-22 01:10:50 -08002306elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
2307# handle unnamed (anonymous) union or struct:
2308{
2309$type = $param;
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07002310$param = "{unnamed_" . $param . "}";
Randy Dunlap134fe012006-12-22 01:10:50 -08002311$parameterdescs{$param} = "anonymous\n";
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07002312$anon_struct_union = 1;
Randy Dunlap134fe012006-12-22 01:10:50 -08002313}
2314
Martin Waitza6d3fe72006-01-09 20:53:55 -08002315# warn if parameter has no description
Randy Dunlap134fe012006-12-22 01:10:50 -08002316# (but ignore ones starting with # as these are not parameters
2317# but inline preprocessor statements);
2318# also ignore unnamed structs/unions;
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07002319if (!$anon_struct_union) {
Martin Waitza6d3fe72006-01-09 20:53:55 -08002320if (!defined $parameterdescs{$param_name} && $param_name !~ /^#/) {
2321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 $parameterdescs{$param_name} = $undescribed;
2323
2324 if (($type eq 'function') || ($type eq 'enum')) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002325print STDERR "${file}:$.: warning: Function parameter ".
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 "or member '$param' not " .
2327 "described in '$declaration_name'\n";
2328 }
Bart Van Assched40e1e62015-09-04 15:43:21 -07002329 print STDERR "${file}:$.: warning:" .
Randy Dunlap3c308792007-05-08 00:24:39 -07002330 " No description found for parameter '$param'\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 ++$warnings;
Randy Dunlap3c308792007-05-08 00:24:39 -07002332}
2333}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Randy Dunlap2b35f4d2010-11-18 12:27:31 -08002335$param = xml_escape($param);
2336
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002337# strip spaces from $param so that it is one continuous string
Randy Dunlape34e7db2009-06-17 17:37:47 -07002338# on @parameterlist;
2339# this fixes a problem where check_sections() cannot find
2340# a parameter like "addr[6 + 2]" because it actually appears
2341# as "addr[6", "+", "2]" on the parameter list;
2342# but it's better to maintain the param string unchanged for output,
2343# so just weaken the string compare in check_sections() to ignore
2344# "[blah" in a parameter string;
2345###$param =~ s/\s*//g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346push @parameterlist, $param;
2347$parametertypes{$param} = $type;
2348}
2349
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002350sub check_sections($$$$$$) {
2351my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck, $nested) = @_;
2352my @sects = split ' ', $sectcheck;
2353my @prms = split ' ', $prmscheck;
2354my $err;
2355my ($px, $sx);
2356my $prm_clean;# strip trailing "[array size]" and/or beginning "*"
2357
2358foreach $sx (0 .. $#sects) {
2359$err = 1;
2360foreach $px (0 .. $#prms) {
2361$prm_clean = $prms[$px];
2362$prm_clean =~ s/\[.*\]//;
Johannes Berg1f3a6682010-09-11 15:55:12 -07002363$prm_clean =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
Randy Dunlape34e7db2009-06-17 17:37:47 -07002364# ignore array size in a parameter string;
2365# however, the original param string may contain
2366# spaces, e.g.: addr[6 + 2]
2367# and this appears in @prms as "addr[6" since the
2368# parameter list is split at spaces;
2369# hence just ignore "[..." for the sections check;
2370$prm_clean =~ s/\[.*//;
2371
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002372##$prm_clean =~ s/^\**//;
2373if ($prm_clean eq $sects[$sx]) {
2374$err = 0;
2375last;
2376}
2377}
2378if ($err) {
2379if ($decl_type eq "function") {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002380print STDERR "${file}:$.: warning: " .
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002381"Excess function parameter " .
2382"'$sects[$sx]' " .
2383"description in '$decl_name'\n";
2384++$warnings;
2385} else {
2386if ($nested !~ m/\Q$sects[$sx]\E/) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002387 print STDERR "${file}:$.: warning: " .
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002388"Excess struct/union/enum/typedef member " .
2389"'$sects[$sx]' " .
2390"description in '$decl_name'\n";
2391 ++$warnings;
2392}
2393}
2394}
2395}
2396}
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398##
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002399# Checks the section describing the return value of a function.
2400sub check_return_section {
2401 my $file = shift;
2402 my $declaration_name = shift;
2403 my $return_type = shift;
2404
2405 # Ignore an empty return type (It's a macro)
2406 # Ignore functions with a "void" return type. (But don't ignore "void *")
2407 if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) {
2408 return;
2409 }
2410
2411 if (!defined($sections{$section_return}) ||
2412 $sections{$section_return} eq "") {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002413 print STDERR "${file}:$.: warning: " .
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002414 "No description found for return value of " .
2415 "'$declaration_name'\n";
2416 ++$warnings;
2417 }
2418}
2419
2420##
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421# takes a function prototype and the name of the current file being
2422# processed and spits out all the details stored in the global
2423# arrays/hashes.
2424sub dump_function($$) {
2425 my $prototype = shift;
2426 my $file = shift;
Horia Geantacbb4d3e2014-07-12 09:55:03 -07002427 my $noret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
2429 $prototype =~ s/^static +//;
2430 $prototype =~ s/^extern +//;
Pavel Pisa4dc3b162005-05-01 08:59:25 -07002431 $prototype =~ s/^asmlinkage +//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 $prototype =~ s/^inline +//;
2433 $prototype =~ s/^__inline__ +//;
Randy Dunlap32e79402006-10-11 01:22:10 -07002434 $prototype =~ s/^__inline +//;
2435 $prototype =~ s/^__always_inline +//;
2436 $prototype =~ s/^noinline +//;
Randy Dunlap74fc5c62008-06-19 16:03:29 -07002437 $prototype =~ s/__init +//;
Randy Dunlap20072202010-03-23 13:35:24 -07002438 $prototype =~ s/__init_or_module +//;
Randy Dunlap270a0092014-08-24 18:17:17 -07002439 $prototype =~ s/__meminit +//;
Randy Dunlap70c95b02012-01-21 10:31:54 -08002440 $prototype =~ s/__must_check +//;
Randy Dunlap0df7c0e2012-08-16 16:23:20 -07002441 $prototype =~ s/__weak +//;
Horia Geantacbb4d3e2014-07-12 09:55:03 -07002442 my $define = $prototype =~ s/^#\s*define\s+//; #ak added
Randy Dunlap328d2442007-02-28 20:12:10 -08002443 $prototype =~ s/__attribute__\s*\(\([a-z,]*\)\)//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
2445 # Yes, this truly is vile. We are looking for:
2446 # 1. Return type (may be nothing if we're looking at a macro)
2447 # 2. Function name
2448 # 3. Function parameters.
2449 #
2450 # All the while we have to watch out for function pointer parameters
2451 # (which IIRC is what the two sections are for), C types (these
2452 # regexps don't even start to express all the possibilities), and
2453 # so on.
2454 #
2455 # If you mess with these regexps, it's a good idea to check that
2456 # the following functions' documentation still comes out right:
2457 # - parport_register_device (function pointer parameters)
2458 # - atomic_set (macro)
Martin Waitz9598f912006-02-01 03:06:55 -08002459 # - pci_match_device, __copy_to_user (long return type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Horia Geantacbb4d3e2014-07-12 09:55:03 -07002461 if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) {
2462 # This is an object-like macro, it has no return type and no parameter
2463 # list.
2464 # Function-like macros are not allowed to have spaces between
2465 # declaration_name and opening parenthesis (notice the \s+).
2466 $return_type = $1;
2467 $declaration_name = $2;
2468 $noret = 1;
2469 } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470$prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2471$prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2472$prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Randy Dunlap94b3e032008-02-07 00:13:26 -08002473$prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474$prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2475$prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2476$prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2477$prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2478$prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2479$prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2480$prototype =~ m/^(\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2481$prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Martin Waitz9598f912006-02-01 03:06:55 -08002482$prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2483$prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Randy Dunlap412ecd772007-02-10 22:47:33 -08002484$prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2485$prototype =~ m/^(\w+\s+\w+\s*\*\s*\w+\s*\*\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486$return_type = $1;
2487$declaration_name = $2;
2488my $args = $3;
2489
2490create_parameterlist($args, ',', $file);
2491 } else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002492print STDERR "${file}:$.: warning: cannot understand function prototype: '$prototype'\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493return;
2494 }
2495
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002496my $prms = join " ", @parameterlist;
2497check_sections($file, $declaration_name, "function", $sectcheck, $prms, "");
2498
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002499 # This check emits a lot of warnings at the moment, because many
2500 # functions don't have a 'Return' doc section. So until the number
2501 # of warnings goes sufficiently down, the check is only performed in
2502 # verbose mode.
2503 # TODO: always perform the check.
Horia Geantacbb4d3e2014-07-12 09:55:03 -07002504 if ($verbose && !$noret) {
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002505 check_return_section($file, $declaration_name, $return_type);
2506 }
2507
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002508 output_declaration($declaration_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 'function',
2510 {'function' => $declaration_name,
2511'module' => $modulename,
2512'functiontype' => $return_type,
2513'parameterlist' => \@parameterlist,
2514'parameterdescs' => \%parameterdescs,
2515'parametertypes' => \%parametertypes,
2516'sectionlist' => \@sectionlist,
2517'sections' => \%sections,
2518'purpose' => $declaration_purpose
2519 });
2520}
2521
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522sub reset_state {
2523 $function = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 %parameterdescs = ();
2525 %parametertypes = ();
2526 @parameterlist = ();
2527 %sections = ();
2528 @sectionlist = ();
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002529 $sectcheck = "";
2530 $struct_actual = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 $prototype = "";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002532
Jani Nikula48af6062016-05-26 14:56:05 +03002533 $state = STATE_NORMAL;
2534 $inline_doc_state = STATE_INLINE_NA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535}
2536
Jason Baron56afb0f2009-04-30 13:29:36 -04002537sub tracepoint_munge($) {
2538my $file = shift;
2539my $tracepointname = 0;
2540my $tracepointargs = 0;
2541
Jason Baron3a9089f2009-12-01 12:18:49 -05002542if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
Jason Baron56afb0f2009-04-30 13:29:36 -04002543$tracepointname = $1;
2544}
Jason Baron3a9089f2009-12-01 12:18:49 -05002545if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
2546$tracepointname = $1;
2547}
2548if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
2549$tracepointname = $2;
2550}
2551$tracepointname =~ s/^\s+//; #strip leading whitespace
2552if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
Jason Baron56afb0f2009-04-30 13:29:36 -04002553$tracepointargs = $1;
2554}
2555if (($tracepointname eq 0) || ($tracepointargs eq 0)) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002556print STDERR "${file}:$.: warning: Unrecognized tracepoint format: \n".
Jason Baron56afb0f2009-04-30 13:29:36 -04002557 "$prototype\n";
2558} else {
2559$prototype = "static inline void trace_$tracepointname($tracepointargs)";
2560}
2561}
2562
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002563sub syscall_munge() {
2564my $void = 0;
2565
2566$prototype =~ s@[\r\n\t]+@ @gos; # strip newlines/CR's/tabs
2567## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
2568if ($prototype =~ m/SYSCALL_DEFINE0/) {
2569$void = 1;
2570## $prototype = "long sys_$1(void)";
2571}
2572
2573$prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
2574if ($prototype =~ m/long (sys_.*?),/) {
2575$prototype =~ s/,/\(/;
2576} elsif ($void) {
2577$prototype =~ s/\)/\(void\)/;
2578}
2579
2580# now delete all of the odd-number commas in $prototype
2581# so that arg types & arg names don't have a comma between them
2582my $count = 0;
2583my $len = length($prototype);
2584if ($void) {
2585$len = 0;# skip the for-loop
2586}
2587for (my $ix = 0; $ix < $len; $ix++) {
2588if (substr($prototype, $ix, 1) eq ',') {
2589$count++;
2590if ($count % 2 == 1) {
2591substr($prototype, $ix, 1) = ' ';
2592}
2593}
2594}
2595}
2596
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002597sub process_state3_function($$) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 my $x = shift;
2599 my $file = shift;
2600
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07002601 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
2602
Randy Dunlap890c78c2008-10-25 17:06:43 -07002603 if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604# do nothing
2605 }
2606 elsif ($x =~ /([^\{]*)/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002607$prototype .= $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 }
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002609
Randy Dunlap890c78c2008-10-25 17:06:43 -07002610 if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002611$prototype =~ s@/\*.*?\*/@@gos;# strip comments.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612$prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
2613$prototype =~ s@^\s+@@gos; # strip leading spaces
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002614if ($prototype =~ /SYSCALL_DEFINE/) {
2615syscall_munge();
2616}
Jason Baron3a9089f2009-12-01 12:18:49 -05002617if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
2618 $prototype =~ /DEFINE_SINGLE_EVENT/)
2619{
Jason Baron56afb0f2009-04-30 13:29:36 -04002620tracepoint_munge($file);
2621}
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002622dump_function($prototype, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623reset_state();
2624 }
2625}
2626
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002627sub process_state3_type($$) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 my $x = shift;
2629 my $file = shift;
2630
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
2632 $x =~ s@^\s+@@gos; # strip leading spaces
2633 $x =~ s@\s+$@@gos; # strip trailing spaces
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07002634 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
2635
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 if ($x =~ /^#/) {
2637# To distinguish preprocessor directive from regular declaration later.
2638$x .= ";";
2639 }
2640
2641 while (1) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002642if ( $x =~ /([^{};]*)([{};])(.*)/ ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 $prototype .= $1 . $2;
2644 ($2 eq '{') && $brcount++;
2645 ($2 eq '}') && $brcount--;
2646 if (($2 eq ';') && ($brcount == 0)) {
Randy Dunlapb9d973282009-06-09 08:50:38 -07002647dump_declaration($prototype, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648reset_state();
Randy Dunlap3c308792007-05-08 00:24:39 -07002649last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 }
2651 $x = $3;
Randy Dunlap3c308792007-05-08 00:24:39 -07002652} else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 $prototype .= $x;
2654 last;
2655}
2656 }
2657}
2658
Randy Dunlap6b5b55f2007-10-16 23:31:20 -07002659# xml_escape: replace <, >, and & in the text stream;
2660#
2661# however, formatting controls that are generated internally/locally in the
2662# kernel-doc script are not escaped here; instead, they begin life like
2663# $blankline_html (4 of '\' followed by a mnemonic + ':'), then these strings
2664# are converted to their mnemonic-expected output, without the 4 * '\' & ':',
2665# just before actual output; (this is done by local_unescape())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666sub xml_escape($) {
2667my $text = shift;
Randy Dunlapecfb2512006-06-25 05:49:13 -07002668if (($output_mode eq "text") || ($output_mode eq "man")) {
2669return $text;
2670}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671$text =~ s/\&/\\\\\\amp;/g;
2672$text =~ s/\</\\\\\\lt;/g;
2673$text =~ s/\>/\\\\\\gt;/g;
2674return $text;
2675}
2676
Jonathan Corbetc0d1b6e2016-05-12 16:15:37 +03002677# xml_unescape: reverse the effects of xml_escape
2678sub xml_unescape($) {
2679my $text = shift;
2680if (($output_mode eq "text") || ($output_mode eq "man")) {
2681return $text;
2682}
2683$text =~ s/\\\\\\amp;/\&/g;
2684$text =~ s/\\\\\\lt;/</g;
2685$text =~ s/\\\\\\gt;/>/g;
2686return $text;
2687}
2688
Randy Dunlap6b5b55f2007-10-16 23:31:20 -07002689# convert local escape strings to html
2690# local escape strings look like: '\\\\menmonic:' (that's 4 backslashes)
2691sub local_unescape($) {
2692my $text = shift;
2693if (($output_mode eq "text") || ($output_mode eq "man")) {
2694return $text;
2695}
2696$text =~ s/\\\\\\\\lt:/</g;
2697$text =~ s/\\\\\\\\gt:/>/g;
2698return $text;
2699}
2700
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701sub process_file($) {
Randy Dunlap2283a112005-07-07 15:39:26 -07002702 my $file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 my $identifier;
2704 my $func;
Randy Dunlapa21217d2007-02-10 01:46:04 -08002705 my $descr;
Johannes Weiner64231332009-09-17 19:26:53 -07002706 my $in_purpose = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 my $initial_section_counter = $section_counter;
Ben Hutchings68f86662015-09-01 23:48:49 +01002708 my ($orig_file) = @_;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Randy Dunlap2283a112005-07-07 15:39:26 -07002710 if (defined($ENV{'SRCTREE'})) {
Ben Hutchings68f86662015-09-01 23:48:49 +01002711$file = "$ENV{'SRCTREE'}" . "/" . $orig_file;
Randy Dunlap2283a112005-07-07 15:39:26 -07002712 }
2713 else {
Ben Hutchings68f86662015-09-01 23:48:49 +01002714$file = $orig_file;
Randy Dunlap2283a112005-07-07 15:39:26 -07002715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 if (defined($source_map{$file})) {
2717$file = $source_map{$file};
2718 }
2719
2720 if (!open(IN,"<$file")) {
2721print STDERR "Error: Cannot open file $file\n";
2722++$errors;
2723return;
2724 }
2725
Jani Nikula86ae2e32016-01-21 13:05:22 +02002726 # two passes for -export and -internal
Jani Nikulab6c3f452016-05-29 22:19:35 +03002727 if ($output_selection == OUTPUT_EXPORTED ||
2728$output_selection == OUTPUT_INTERNAL) {
Jani Nikula86ae2e32016-01-21 13:05:22 +02002729while (<IN>) {
2730 if (/$export_symbol/o) {
2731$function_table{$2} = 1;
2732 }
2733}
2734seek(IN, 0, 0);
2735 }
2736
Ilya Dryomova9e73142010-02-26 13:05:47 -08002737 $. = 1;
2738
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 $section_counter = 0;
2740 while (<IN>) {
Daniel Santos65478422012-10-04 17:15:05 -07002741while (s/\\\s*$//) {
2742 $_ .= <IN>;
2743}
Jani Nikula48af6062016-05-26 14:56:05 +03002744if ($state == STATE_NORMAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 if (/$doc_start/o) {
Jani Nikula48af6062016-05-26 14:56:05 +03002746$state = STATE_NAME;# next line is always the function name
Randy Dunlap850622d2006-06-25 05:48:55 -07002747$in_doc_sect = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 }
Jani Nikula48af6062016-05-26 14:56:05 +03002749} elsif ($state == STATE_NAME) {# this line is the function name (always)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 if (/$doc_block/o) {
Jani Nikula48af6062016-05-26 14:56:05 +03002751$state = STATE_DOCBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752$contents = "";
2753if ( $1 eq "" ) {
2754$section = $section_intro;
2755} else {
2756$section = $1;
2757}
Randy Dunlap3c308792007-05-08 00:24:39 -07002758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 elsif (/$doc_decl/o) {
2760$identifier = $1;
2761if (/\s*([\w\s]+?)\s*-/) {
2762 $identifier = $1;
2763}
2764
Jani Nikula48af6062016-05-26 14:56:05 +03002765$state = STATE_FIELD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766if (/-(.*)/) {
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07002767 # strip leading/trailing/multiple spaces
Randy Dunlapa21217d2007-02-10 01:46:04 -08002768 $descr= $1;
2769 $descr =~ s/^\s*//;
2770 $descr =~ s/\s*$//;
Daniel Santos12ae6772012-10-04 17:15:10 -07002771 $descr =~ s/\s+/ /g;
Randy Dunlapa21217d2007-02-10 01:46:04 -08002772 $declaration_purpose = xml_escape($descr);
Johannes Weiner64231332009-09-17 19:26:53 -07002773 $in_purpose = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774} else {
2775 $declaration_purpose = "";
2776}
Randy Dunlap77cc23b2008-02-07 00:13:42 -08002777
2778if (($declaration_purpose eq "") && $verbose) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002779print STDERR "${file}:$.: warning: missing initial short description on line:\n";
Randy Dunlap77cc23b2008-02-07 00:13:42 -08002780print STDERR $_;
2781++$warnings;
2782}
2783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784if ($identifier =~ m/^struct/) {
2785 $decl_type = 'struct';
2786} elsif ($identifier =~ m/^union/) {
2787 $decl_type = 'union';
2788} elsif ($identifier =~ m/^enum/) {
2789 $decl_type = 'enum';
2790} elsif ($identifier =~ m/^typedef/) {
2791 $decl_type = 'typedef';
2792} else {
2793 $decl_type = 'function';
2794}
2795
2796if ($verbose) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002797 print STDERR "${file}:$.: info: Scanning doc for $identifier\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798}
2799 } else {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002800print STDERR "${file}:$.: warning: Cannot understand $_ on line $.",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801" - I thought it was a doc line\n";
2802++$warnings;
Jani Nikula48af6062016-05-26 14:56:05 +03002803$state = STATE_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 }
Jani Nikula48af6062016-05-26 14:56:05 +03002805} elsif ($state == STATE_FIELD) {# look for head: lines, and include content
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 if (/$doc_sect/o) {
2807$newsection = $1;
2808$newcontents = $2;
2809
Randy Dunlap792aa2f2008-02-07 00:13:41 -08002810if (($contents ne "") && ($contents ne "\n")) {
Randy Dunlap850622d2006-06-25 05:48:55 -07002811 if (!$in_doc_sect && $verbose) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002812print STDERR "${file}:$.: warning: contents before sections\n";
Randy Dunlap850622d2006-06-25 05:48:55 -07002813++$warnings;
2814 }
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07002815 dump_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 $section = $section_default;
2817}
2818
Randy Dunlap850622d2006-06-25 05:48:55 -07002819$in_doc_sect = 1;
Johannes Weiner64231332009-09-17 19:26:53 -07002820$in_purpose = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821$contents = $newcontents;
2822if ($contents ne "") {
Randy Dunlap27205742006-10-11 01:22:12 -07002823 while ((substr($contents, 0, 1) eq " ") ||
2824substr($contents, 0, 1) eq "\t") {
2825 $contents = substr($contents, 1);
Randy Dunlap05189492006-06-25 05:47:47 -07002826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 $contents .= "\n";
2828}
2829$section = $newsection;
2830 } elsif (/$doc_end/) {
Randy Dunlap4c98eca2010-03-10 15:22:02 -08002831if (($contents ne "") && ($contents ne "\n")) {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07002832 dump_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 $section = $section_default;
2834 $contents = "";
2835}
Randy Dunlap46b958e2008-04-28 02:16:35 -07002836# look for doc_com + <text> + doc_end:
2837if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002838 print STDERR "${file}:$.: warning: suspicious ending line: $_";
Randy Dunlap46b958e2008-04-28 02:16:35 -07002839 ++$warnings;
2840}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
2842$prototype = "";
Jani Nikula48af6062016-05-26 14:56:05 +03002843$state = STATE_PROTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844$brcount = 0;
Randy Dunlap232acbc2006-06-25 05:47:48 -07002845# print STDERR "end of doc comment, looking for prototype\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 } elsif (/$doc_content/) {
2847# miguel-style comment kludge, look for blank lines after
2848# @parameter line to signify start of description
Johannes Weiner64231332009-09-17 19:26:53 -07002849if ($1 eq "") {
2850 if ($section =~ m/^@/ || $section eq $section_context) {
2851dump_section($file, $section, xml_escape($contents));
2852$section = $section_default;
2853$contents = "";
2854 } else {
2855$contents .= "\n";
2856 }
2857 $in_purpose = 0;
2858} elsif ($in_purpose == 1) {
2859 # Continued declaration purpose
2860 chomp($declaration_purpose);
2861 $declaration_purpose .= " " . xml_escape($1);
Daniel Santos12ae6772012-10-04 17:15:10 -07002862 $declaration_purpose =~ s/\s+/ /g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863} else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07002864 $contents .= $1 . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865}
2866 } else {
2867# i dont know - bad line? ignore.
Bart Van Assched40e1e62015-09-04 15:43:21 -07002868print STDERR "${file}:$.: warning: bad line: $_";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869++$warnings;
2870 }
Jani Nikula48af6062016-05-26 14:56:05 +03002871} elsif ($state == STATE_INLINE) { # scanning for inline parameters
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002872 # First line (state 1) needs to be a @parameter
Jani Nikula48af6062016-05-26 14:56:05 +03002873 if ($inline_doc_state == STATE_INLINE_NAME && /$doc_inline_sect/o) {
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002874$section = $1;
2875$contents = $2;
2876if ($contents ne "") {
2877 while ((substr($contents, 0, 1) eq " ") ||
2878 substr($contents, 0, 1) eq "\t") {
2879$contents = substr($contents, 1);
2880 }
2881$contents .= "\n";
2882}
Jani Nikula48af6062016-05-26 14:56:05 +03002883$inline_doc_state = STATE_INLINE_TEXT;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002884 # Documentation block end */
Jani Nikula48af6062016-05-26 14:56:05 +03002885 } elsif (/$doc_inline_end/) {
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002886if (($contents ne "") && ($contents ne "\n")) {
2887 dump_section($file, $section, xml_escape($contents));
2888 $section = $section_default;
2889 $contents = "";
2890}
Jani Nikula48af6062016-05-26 14:56:05 +03002891$state = STATE_PROTO;
2892$inline_doc_state = STATE_INLINE_NA;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002893 # Regular text
2894 } elsif (/$doc_content/) {
Jani Nikula48af6062016-05-26 14:56:05 +03002895if ($inline_doc_state == STATE_INLINE_TEXT) {
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002896 $contents .= $1 . "\n";
Jani Nikula48af6062016-05-26 14:56:05 +03002897} elsif ($inline_doc_state == STATE_INLINE_NAME) {
2898 $inline_doc_state = STATE_INLINE_ERROR;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002899 print STDERR "Warning(${file}:$.): ";
2900 print STDERR "Incorrect use of kernel-doc format: $_";
2901 ++$warnings;
2902}
2903 }
Jani Nikula48af6062016-05-26 14:56:05 +03002904} elsif ($state == STATE_PROTO) {# scanning for function '{' (end of prototype)
2905 if (/$doc_inline_start/) {
2906$state = STATE_INLINE;
2907$inline_doc_state = STATE_INLINE_NAME;
Danilo Cesar Lemes de Paulaa4c6ebe2015-08-04 09:04:08 -03002908 } elsif ($decl_type eq 'function') {
Randy Dunlap3c308792007-05-08 00:24:39 -07002909process_state3_function($_, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 } else {
Randy Dunlap3c308792007-05-08 00:24:39 -07002911process_state3_type($_, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 }
Jani Nikula48af6062016-05-26 14:56:05 +03002913} elsif ($state == STATE_DOCBLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914# Documentation block
Randy Dunlap3c308792007-05-08 00:24:39 -07002915if (/$doc_block/) {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07002916dump_doc_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917$contents = "";
2918$function = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919%parameterdescs = ();
2920%parametertypes = ();
2921@parameterlist = ();
2922%sections = ();
2923@sectionlist = ();
2924$prototype = "";
2925if ( $1 eq "" ) {
2926$section = $section_intro;
2927} else {
2928$section = $1;
2929}
Randy Dunlap3c308792007-05-08 00:24:39 -07002930}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931elsif (/$doc_end/)
2932{
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07002933dump_doc_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934$contents = "";
2935$function = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936%parameterdescs = ();
2937%parametertypes = ();
2938@parameterlist = ();
2939%sections = ();
2940@sectionlist = ();
2941$prototype = "";
Jani Nikula48af6062016-05-26 14:56:05 +03002942$state = STATE_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943}
2944elsif (/$doc_content/)
2945{
2946if ( $1 eq "" )
2947{
2948$contents .= $blankline;
2949}
2950else
2951{
2952$contents .= $1 . "\n";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002953}
Randy Dunlap3c308792007-05-08 00:24:39 -07002954}
2955}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 }
2957 if ($initial_section_counter == $section_counter) {
Bart Van Assched40e1e62015-09-04 15:43:21 -07002958print STDERR "${file}:1: warning: no structured comments found\n";
Jani Nikulab6c3f452016-05-29 22:19:35 +03002959if (($output_selection == OUTPUT_INCLUDE) && ($show_not_found == 1)) {
Johannes Berge946c43a2013-11-12 15:11:12 -08002960 print STDERR " Was looking for '$_'.\n" for keys %function_table;
2961}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962if ($output_mode eq "xml") {
2963 # The template wants at least one RefEntry here; make one.
2964 print "<refentry>\n";
2965 print " <refnamediv>\n";
2966 print " <refname>\n";
Ben Hutchings68f86662015-09-01 23:48:49 +01002967 print " ${orig_file}\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 print " </refname>\n";
2969 print " <refpurpose>\n";
2970 print " Document generation inconsistency\n";
2971 print " </refpurpose>\n";
2972 print " </refnamediv>\n";
2973 print " <refsect1>\n";
2974 print " <title>\n";
2975 print " Oops\n";
2976 print " </title>\n";
2977 print " <warning>\n";
2978 print " <para>\n";
2979 print " The template for this document tried to insert\n";
2980 print " the structured comment from the file\n";
Ben Hutchings68f86662015-09-01 23:48:49 +01002981 print " <filename>${orig_file}</filename> at this point,\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 print " but none was found.\n";
2983 print " This dummy section is inserted to allow\n";
2984 print " generation to continue.\n";
2985 print " </para>\n";
2986 print " </warning>\n";
2987 print " </refsect1>\n";
2988 print "</refentry>\n";
2989}
2990 }
2991}
Randy Dunlap8484baa2011-01-05 16:28:43 -08002992
2993
2994$kernelversion = get_kernel_version();
2995
2996# generate a sequence of code that will splice in highlighting information
2997# using the s// operator.
Mauro Carvalho Chehab1ef06232015-11-17 13:29:49 -02002998for (my $k = 0; $k < @highlights; $k++) {
Danilo Cesar Lemes de Paula4d732702015-09-07 17:01:59 -03002999 my $pattern = $highlights[$k][0];
3000 my $result = $highlights[$k][1];
3001# print STDERR "scanning pattern:$pattern, highlight:($result)\n";
3002 $dohighlight .= "\$contents =~ s:$pattern:$result:gs;\n";
Randy Dunlap8484baa2011-01-05 16:28:43 -08003003}
3004
3005# Read the file that maps relative names to absolute names for
3006# separate source and object directories and for shadow trees.
3007if (open(SOURCE_MAP, "<.tmp_filelist.txt")) {
3008my ($relname, $absname);
3009while(<SOURCE_MAP>) {
3010chop();
3011($relname, $absname) = (split())[0..1];
3012$relname =~ s:^/+::;
3013$source_map{$relname} = $absname;
3014}
3015close(SOURCE_MAP);
3016}
3017
3018foreach (@ARGV) {
3019 chomp;
3020 process_file($_);
3021}
3022if ($verbose && $errors) {
3023 print STDERR "$errors errors\n";
3024}
3025if ($verbose && $warnings) {
3026 print STDERR "$warnings warnings\n";
3027}
3028
3029exit($errors);