blob: 9922e66883a5b763eb2b24345b9925cbe06db3c3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 22:20:361#!/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 18:31:548## Copyright (C) 2005-2012 Randy Dunlap ##
Dan Luedtke1b40c192012-08-12 08:46:159## Copyright (C) 2012 Dan Luedtke ##
Linus Torvalds1da177e2005-04-16 22:20:3610## ##
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 22:20:3617# 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 08:46:1539# 25/07/2012 - Added support for HTML5
40# -- Dan Luedtke <mail@danrl.de>
Linus Torvalds1da177e2005-04-16 22:20:3641
42#
43# This will read a 'c' file and scan for embedded comments in the
44# style of gnome comments (+minor extensions - see below).
45#
46
47# Note: This only supports 'c'.
48
49# usage:
Dan Luedtke1b40c192012-08-12 08:46:1550# kernel-doc [ -docbook | -html | -html5 | -text | -man | -list ]
51# [ -no-doc-sections ]
52# [ -function funcname [ -function funcname ...] ]
53# c file(s)s > outputfile
Linus Torvalds1da177e2005-04-16 22:20:3654# or
Dan Luedtke1b40c192012-08-12 08:46:1555# [ -nofunction funcname [ -function funcname ...] ]
56# c file(s)s > outputfile
Linus Torvalds1da177e2005-04-16 22:20:3657#
Dan Luedtke1b40c192012-08-12 08:46:1558# Set output format using one of -docbook -html -html5 -text or -man.
59# Default is man.
Johannes Bergeda603f2010-09-11 22:55:2260# The -list format is for internal use by docproc.
Linus Torvalds1da177e2005-04-16 22:20:3661#
Johannes Berg4b445952007-10-24 22:08:4862# -no-doc-sections
63# Do not output DOC: sections
64#
Linus Torvalds1da177e2005-04-16 22:20:3665# -function funcname
Johannes Bergb112e0f2007-10-24 22:08:4866# If set, then only generate documentation for the given function(s) or
67# DOC: section titles. All other functions and DOC: sections are ignored.
Linus Torvalds1da177e2005-04-16 22:20:3668#
69# -nofunction funcname
Johannes Bergb112e0f2007-10-24 22:08:4870# If set, then only generate documentation for the other function(s)/DOC:
71# sections. Cannot be used together with -function (yes, that's a bug --
72# perl hackers can fix it 8))
Linus Torvalds1da177e2005-04-16 22:20:3673#
74# c files - list of 'c' files to process
75#
76# All output goes to stdout, with errors to stderr.
77
78#
79# format of comments.
80# In the following table, (...)? signifies optional structure.
81# (...)* signifies 0 or more structure elements
82# /**
83# * function_name(:)? (- short description)?
84# (* @parameterx: (description of parameter x)?)*
85# (* a blank line)?
86# * (Description:)? (Description of function)?
87# * (section header: (section description)? )*
88# (*)?*/
89#
90# So .. the trivial example would be:
91#
92# /**
93# * my_function
Randy Dunlapb9d973282009-06-09 15:50:3894# */
Linus Torvalds1da177e2005-04-16 22:20:3695#
Randy Dunlap891dcd22007-02-10 09:45:5396# If the Description: header tag is omitted, then there must be a blank line
Linus Torvalds1da177e2005-04-16 22:20:3697# after the last parameter specification.
98# e.g.
99# /**
100# * my_function - does my stuff
101# * @my_arg: its mine damnit
102# *
Randy Dunlap3c3b8092006-02-01 11:06:58103# * Does my stuff explained.
Linus Torvalds1da177e2005-04-16 22:20:36104# */
105#
106# or, could also use:
107# /**
108# * my_function - does my stuff
109# * @my_arg: its mine damnit
Randy Dunlap3c3b8092006-02-01 11:06:58110# * Description: Does my stuff explained.
Linus Torvalds1da177e2005-04-16 22:20:36111# */
112# etc.
113#
Randy Dunlapb9d973282009-06-09 15:50:38114# Besides functions you can also write documentation for structs, unions,
Randy Dunlap3c3b8092006-02-01 11:06:58115# enums and typedefs. Instead of the function name you must write the name
116# of the declaration; the struct/union/enum/typedef must always precede
117# the name. Nesting of declarations is not supported.
Linus Torvalds1da177e2005-04-16 22:20:36118# Use the argument mechanism to document members or constants.
119# e.g.
120# /**
121# * struct my_struct - short description
122# * @a: first member
123# * @b: second member
Randy Dunlap3c3b8092006-02-01 11:06:58124# *
Linus Torvalds1da177e2005-04-16 22:20:36125# * Longer description
126# */
127# struct my_struct {
128# int a;
129# int b;
Martin Waitzaeec46b2005-11-14 00:08:13130# /* private: */
131# int c;
Linus Torvalds1da177e2005-04-16 22:20:36132# };
133#
134# All descriptions can be multiline, except the short function description.
Randy Dunlap3c3b8092006-02-01 11:06:58135#
136# You can also add additional sections. When documenting kernel functions you
137# should document the "Context:" of the function, e.g. whether the functions
Linus Torvalds1da177e2005-04-16 22:20:36138# can be called form interrupts. Unlike other sections you can end it with an
Randy Dunlap3c3b8092006-02-01 11:06:58139# empty line.
Yacine Belkadi4092bac2012-11-26 21:22:27140# A non-void function should have a "Return:" section describing the return
141# value(s).
Randy Dunlap3c3b8092006-02-01 11:06:58142# Example-sections should contain the string EXAMPLE so that they are marked
Linus Torvalds1da177e2005-04-16 22:20:36143# appropriately in DocBook.
144#
145# Example:
146# /**
147# * user_function - function that can only be called in user context
148# * @a: some argument
149# * Context: !in_interrupt()
Randy Dunlap3c3b8092006-02-01 11:06:58150# *
Linus Torvalds1da177e2005-04-16 22:20:36151# * Some description
152# * Example:
153# * user_function(22);
154# */
155# ...
156#
157#
158# All descriptive text is further processed, scanning for the following special
159# patterns, which are highlighted appropriately.
160#
161# 'funcname()' - function
162# '$ENVVAR' - environmental variable
163# '&struct_name' - name of a structure (up to two words including 'struct')
164# '@parameter' - name of a parameter
165# '%CONST' - name of a constant.
166
Randy Dunlap8484baa2011-01-06 00:28:43167## init lots of data
168
Linus Torvalds1da177e2005-04-16 22:20:36169my $errors = 0;
170my $warnings = 0;
Randy Dunlap5f8c7c92007-07-19 08:48:24171my $anon_struct_union = 0;
Linus Torvalds1da177e2005-04-16 22:20:36172
173# match expressions used to find embedded type information
174my $type_constant = '\%([-_\w]+)';
175my $type_func = '(\w+)\(\)';
176my $type_param = '\@(\w+)';
Randy Dunlap3eb014a2007-05-08 07:29:51177my $type_struct = '\&((struct\s*)*[_\w]+)';
Randy Dunlap6b5b55f2007-10-17 06:31:20178my $type_struct_xml = '\\&amp;((struct\s*)*[_\w]+)';
Linus Torvalds1da177e2005-04-16 22:20:36179my $type_env = '(\$\w+)';
180
181# Output conversion substitutions.
182# One for each output format
183
184# these work fairly well
185my %highlights_html = ( $type_constant, "<i>\$1</i>",
186$type_func, "<b>\$1</b>",
Randy Dunlap3eb014a2007-05-08 07:29:51187$type_struct_xml, "<i>\$1</i>",
188$type_env, "<b><i>\$1</i></b>",
Linus Torvalds1da177e2005-04-16 22:20:36189$type_param, "<tt><b>\$1</b></tt>" );
Randy Dunlap6b5b55f2007-10-17 06:31:20190my $local_lt = "\\\\\\\\lt:";
191my $local_gt = "\\\\\\\\gt:";
192my $blankline_html = $local_lt . "p" . $local_gt;# was "<p>"
Linus Torvalds1da177e2005-04-16 22:20:36193
Dan Luedtke1b40c192012-08-12 08:46:15194# html version 5
195my %highlights_html5 = ( $type_constant, "<span class=\"const\">\$1</span>",
196$type_func, "<span class=\"func\">\$1</span>",
197$type_struct_xml, "<span class=\"struct\">\$1</span>",
198$type_env, "<span class=\"env\">\$1</span>",
199$type_param, "<span class=\"param\">\$1</span>" );
200my $blankline_html5 = $local_lt . "br /" . $local_gt;
201
Linus Torvalds1da177e2005-04-16 22:20:36202# XML, docbook format
203my %highlights_xml = ( "([^=])\\\"([^\\\"<]+)\\\"", "\$1<quote>\$2</quote>",
204$type_constant, "<constant>\$1</constant>",
205$type_func, "<function>\$1</function>",
Johannes Berg5c98fc02007-10-24 22:08:48206$type_struct_xml, "<structname>\$1</structname>",
Linus Torvalds1da177e2005-04-16 22:20:36207$type_env, "<envar>\$1</envar>",
208$type_param, "<parameter>\$1</parameter>" );
Johannes Berg5c98fc02007-10-24 22:08:48209my $blankline_xml = $local_lt . "/para" . $local_gt . $local_lt . "para" . $local_gt . "\n";
Linus Torvalds1da177e2005-04-16 22:20:36210
211# gnome, docbook format
212my %highlights_gnome = ( $type_constant, "<replaceable class=\"option\">\$1</replaceable>",
213 $type_func, "<function>\$1</function>",
214 $type_struct, "<structname>\$1</structname>",
215 $type_env, "<envar>\$1</envar>",
216 $type_param, "<parameter>\$1</parameter>" );
217my $blankline_gnome = "</para><para>\n";
218
219# these are pretty rough
220my %highlights_man = ( $type_constant, "\$1",
221 $type_func, "\\\\fB\$1\\\\fP",
222 $type_struct, "\\\\fI\$1\\\\fP",
223 $type_param, "\\\\fI\$1\\\\fP" );
224my $blankline_man = "";
225
226# text-mode
227my %highlights_text = ( $type_constant, "\$1",
228$type_func, "\$1",
229$type_struct, "\$1",
230$type_param, "\$1" );
231my $blankline_text = "";
232
Johannes Bergeda603f2010-09-11 22:55:22233# list mode
234my %highlights_list = ( $type_constant, "\$1",
235$type_func, "\$1",
236$type_struct, "\$1",
237$type_param, "\$1" );
238my $blankline_list = "";
Linus Torvalds1da177e2005-04-16 22:20:36239
Linus Torvalds1da177e2005-04-16 22:20:36240# read arguments
Randy Dunlapb9d973282009-06-09 15:50:38241if ($#ARGV == -1) {
Linus Torvalds1da177e2005-04-16 22:20:36242 usage();
243}
244
Randy Dunlap8484baa2011-01-06 00:28:43245my $kernelversion;
246my $dohighlight = "";
247
Linus Torvalds1da177e2005-04-16 22:20:36248my $verbose = 0;
249my $output_mode = "man";
Daniel Santose314ba32012-10-05 00:15:08250my $output_preformatted = 0;
Johannes Berg4b445952007-10-24 22:08:48251my $no_doc_sections = 0;
Linus Torvalds1da177e2005-04-16 22:20:36252my %highlights = %highlights_man;
253my $blankline = $blankline_man;
254my $modulename = "Kernel API";
255my $function_only = 0;
Randy Dunlap3c3b8092006-02-01 11:06:58256my $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
257'July', 'August', 'September', 'October',
258'November', 'December')[(localtime)[4]] .
Linus Torvalds1da177e2005-04-16 22:20:36259 " " . ((localtime)[5]+1900);
Johannes Berge946c43a2013-11-12 23:11:12260my $show_not_found = 0;
Linus Torvalds1da177e2005-04-16 22:20:36261
Randy Dunlap8484baa2011-01-06 00:28:43262# Essentially these are globals.
Randy Dunlapb9d973282009-06-09 15:50:38263# They probably want to be tidied up, made more localised or something.
264# CAVEAT EMPTOR! Some of the others I localised may not want to be, which
Linus Torvalds1da177e2005-04-16 22:20:36265# could cause "use of undefined value" or other bugs.
Randy Dunlapb9d973282009-06-09 15:50:38266my ($function, %function_table, %parametertypes, $declaration_purpose);
267my ($type, $declaration_name, $return_type);
Ilya Dryomov1c32fd02010-02-26 21:06:03268my ($newsection, $newcontents, $prototype, $brcount, %source_map);
Linus Torvalds1da177e2005-04-16 22:20:36269
Randy Dunlapbd0e88e2008-03-13 19:32:43270if (defined($ENV{'KBUILD_VERBOSE'})) {
271$verbose = "$ENV{'KBUILD_VERBOSE'}";
272}
273
Randy Dunlap3c3b8092006-02-01 11:06:58274# Generated docbook code is inserted in a template at a point where
Linus Torvalds1da177e2005-04-16 22:20:36275# docbook v3.1 requires a non-zero sequence of RefEntry's; see:
276# http://www.oasis-open.org/docbook/documentation/reference/html/refentry.html
277# We keep track of number of generated entries and generate a dummy
278# if needs be to ensure the expanded template can be postprocessed
279# into html.
280my $section_counter = 0;
281
282my $lineprefix="";
283
284# states
285# 0 - normal code
286# 1 - looking for function name
287# 2 - scanning field start.
288# 3 - scanning prototype.
289# 4 - documentation block
290my $state;
Randy Dunlap850622d2006-06-25 12:48:55291my $in_doc_sect;
Linus Torvalds1da177e2005-04-16 22:20:36292
293#declaration types: can be
294# 'function', 'struct', 'union', 'enum', 'typedef'
295my $decl_type;
296
297my $doc_special = "\@\%\$\&";
298
299my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
300my $doc_end = '\*/';
301my $doc_com = '\s*\*\s*';
Daniel Santos12ae6772012-10-05 00:15:10302my $doc_com_body = '\s*\* ?';
Randy Dunlapb9d973282009-06-09 15:50:38303my $doc_decl = $doc_com . '(\w+)';
304my $doc_sect = $doc_com . '([' . $doc_special . ']?[\w\s]+):(.*)';
Daniel Santos12ae6772012-10-05 00:15:10305my $doc_content = $doc_com_body . '(.*)';
Randy Dunlapb9d973282009-06-09 15:50:38306my $doc_block = $doc_com . 'DOC:\s*(.*)?';
Linus Torvalds1da177e2005-04-16 22:20:36307
308my %constants;
309my %parameterdescs;
310my @parameterlist;
311my %sections;
312my @sectionlist;
Randy Dunlapa1d94aa2008-12-19 16:49:30313my $sectcheck;
314my $struct_actual;
Linus Torvalds1da177e2005-04-16 22:20:36315
316my $contents = "";
317my $section_default = "Description";# default section
318my $section_intro = "Introduction";
319my $section = $section_default;
320my $section_context = "Context";
Yacine Belkadi4092bac2012-11-26 21:22:27321my $section_return = "Return";
Linus Torvalds1da177e2005-04-16 22:20:36322
323my $undescribed = "-- undescribed --";
324
325reset_state();
326
327while ($ARGV[0] =~ m/^-(.*)/) {
328 my $cmd = shift @ARGV;
329 if ($cmd eq "-html") {
330$output_mode = "html";
331%highlights = %highlights_html;
332$blankline = $blankline_html;
Dan Luedtke1b40c192012-08-12 08:46:15333 } elsif ($cmd eq "-html5") {
334$output_mode = "html5";
335%highlights = %highlights_html5;
336$blankline = $blankline_html5;
Linus Torvalds1da177e2005-04-16 22:20:36337 } elsif ($cmd eq "-man") {
338$output_mode = "man";
339%highlights = %highlights_man;
340$blankline = $blankline_man;
341 } elsif ($cmd eq "-text") {
342$output_mode = "text";
343%highlights = %highlights_text;
344$blankline = $blankline_text;
345 } elsif ($cmd eq "-docbook") {
346$output_mode = "xml";
347%highlights = %highlights_xml;
348$blankline = $blankline_xml;
Johannes Bergeda603f2010-09-11 22:55:22349 } elsif ($cmd eq "-list") {
350$output_mode = "list";
351%highlights = %highlights_list;
352$blankline = $blankline_list;
Linus Torvalds1da177e2005-04-16 22:20:36353 } elsif ($cmd eq "-gnome") {
354$output_mode = "gnome";
355%highlights = %highlights_gnome;
356$blankline = $blankline_gnome;
357 } elsif ($cmd eq "-module") { # not needed for XML, inherits from calling document
358$modulename = shift @ARGV;
359 } elsif ($cmd eq "-function") { # to only output specific functions
360$function_only = 1;
361$function = shift @ARGV;
362$function_table{$function} = 1;
363 } elsif ($cmd eq "-nofunction") { # to only output specific functions
364$function_only = 2;
365$function = shift @ARGV;
366$function_table{$function} = 1;
367 } elsif ($cmd eq "-v") {
368$verbose = 1;
369 } elsif (($cmd eq "-h") || ($cmd eq "--help")) {
370usage();
Johannes Berg4b445952007-10-24 22:08:48371 } elsif ($cmd eq '-no-doc-sections') {
372 $no_doc_sections = 1;
Johannes Berge946c43a2013-11-12 23:11:12373 } elsif ($cmd eq '-show-not-found') {
374$show_not_found = 1;
Linus Torvalds1da177e2005-04-16 22:20:36375 }
376}
377
Randy Dunlap8484baa2011-01-06 00:28:43378# continue execution near EOF;
379
380sub usage {
Dan Luedtke1b40c192012-08-12 08:46:15381 print "Usage: $0 [ -docbook | -html | -html5 | -text | -man | -list ]\n";
Randy Dunlap8484baa2011-01-06 00:28:43382 print " [ -no-doc-sections ]\n";
383 print " [ -function funcname [ -function funcname ...] ]\n";
384 print " [ -nofunction funcname [ -nofunction funcname ...] ]\n";
Dan Luedtke1b40c192012-08-12 08:46:15385 print " [ -v ]\n";
Randy Dunlap8484baa2011-01-06 00:28:43386 print " c source file(s) > outputfile\n";
387 print " -v : verbose output, more warnings & other info listed\n";
388 exit 1;
389}
390
Borislav Petkov53f049f2007-05-08 07:30:54391# get kernel version from env
392sub get_kernel_version() {
Johannes Berg1b9bc222007-10-24 22:08:48393 my $version = 'unknown kernel version';
Borislav Petkov53f049f2007-05-08 07:30:54394
395 if (defined($ENV{'KERNELVERSION'})) {
396$version = $ENV{'KERNELVERSION'};
397 }
398 return $version;
399}
Linus Torvalds1da177e2005-04-16 22:20:36400
401##
402# dumps section contents to arrays/hashes intended for that purpose.
403#
404sub dump_section {
Randy Dunlap94dc7ad2008-04-28 09:16:34405 my $file = shift;
Linus Torvalds1da177e2005-04-16 22:20:36406 my $name = shift;
407 my $contents = join "\n", @_;
408
409 if ($name =~ m/$type_constant/) {
410$name = $1;
411# print STDERR "constant section '$1' = '$contents'\n";
412$constants{$name} = $contents;
413 } elsif ($name =~ m/$type_param/) {
414# print STDERR "parameter def '$1' = '$contents'\n";
415$name = $1;
416$parameterdescs{$name} = $contents;
Randy Dunlapa1d94aa2008-12-19 16:49:30417$sectcheck = $sectcheck . $name . " ";
Randy Dunlapced69092008-12-01 21:14:03418 } elsif ($name eq "@\.\.\.") {
419# print STDERR "parameter def '...' = '$contents'\n";
420$name = "...";
421$parameterdescs{$name} = $contents;
Randy Dunlapa1d94aa2008-12-19 16:49:30422$sectcheck = $sectcheck . $name . " ";
Linus Torvalds1da177e2005-04-16 22:20:36423 } else {
424# print STDERR "other section '$name' = '$contents'\n";
Randy Dunlap94dc7ad2008-04-28 09:16:34425if (defined($sections{$name}) && ($sections{$name} ne "")) {
426print STDERR "Error(${file}:$.): duplicate section name '$name'\n";
427++$errors;
428}
Linus Torvalds1da177e2005-04-16 22:20:36429$sections{$name} = $contents;
430push @sectionlist, $name;
431 }
432}
433
434##
Johannes Bergb112e0f2007-10-24 22:08:48435# dump DOC: section after checking that it should go out
436#
437sub dump_doc_section {
Randy Dunlap94dc7ad2008-04-28 09:16:34438 my $file = shift;
Johannes Bergb112e0f2007-10-24 22:08:48439 my $name = shift;
440 my $contents = join "\n", @_;
441
Johannes Berg4b445952007-10-24 22:08:48442 if ($no_doc_sections) {
443 return;
444 }
445
Johannes Bergb112e0f2007-10-24 22:08:48446 if (($function_only == 0) ||
447( $function_only == 1 && defined($function_table{$name})) ||
448( $function_only == 2 && !defined($function_table{$name})))
449 {
Randy Dunlap94dc7ad2008-04-28 09:16:34450dump_section($file, $name, $contents);
Johannes Bergb112e0f2007-10-24 22:08:48451output_blockhead({'sectionlist' => \@sectionlist,
452 'sections' => \%sections,
453 'module' => $modulename,
454 'content-only' => ($function_only != 0), });
455 }
456}
457
458##
Linus Torvalds1da177e2005-04-16 22:20:36459# output function
460#
461# parameterdescs, a hash.
462# function => "function name"
463# parameterlist => @list of parameters
464# parameterdescs => %parameter descriptions
465# sectionlist => @list of sections
Randy Dunlapa21217da2007-02-10 09:46:04466# sections => %section descriptions
Randy Dunlap3c3b8092006-02-01 11:06:58467#
Linus Torvalds1da177e2005-04-16 22:20:36468
469sub output_highlight {
470 my $contents = join "\n",@_;
471 my $line;
472
473# DEBUG
474# if (!defined $contents) {
475# use Carp;
476# confess "output_highlight got called with no args?\n";
477# }
478
Dan Luedtke1b40c192012-08-12 08:46:15479 if ($output_mode eq "html" || $output_mode eq "html5" ||
480$output_mode eq "xml") {
Randy Dunlap6b5b55f2007-10-17 06:31:20481$contents = local_unescape($contents);
482# convert data read & converted thru xml_escape() into &xyz; format:
Randy Dunlap2b35f4d2010-11-18 20:27:31483$contents =~ s/\\\\\\/\&/g;
Randy Dunlap6b5b55f2007-10-17 06:31:20484 }
Randy Dunlap3eb014a2007-05-08 07:29:51485# print STDERR "contents b4:$contents\n";
Linus Torvalds1da177e2005-04-16 22:20:36486 eval $dohighlight;
487 die $@ if $@;
Randy Dunlap3eb014a2007-05-08 07:29:51488# print STDERR "contents af:$contents\n";
489
Dan Luedtke1b40c192012-08-12 08:46:15490# strip whitespaces when generating html5
491 if ($output_mode eq "html5") {
492$contents =~ s/^\s+//;
493$contents =~ s/\s+$//;
494 }
Linus Torvalds1da177e2005-04-16 22:20:36495 foreach $line (split "\n", $contents) {
Daniel Santos12ae6772012-10-05 00:15:10496if (! $output_preformatted) {
497 $line =~ s/^\s*//;
498}
Randy Dunlap3c308792007-05-08 07:24:39499if ($line eq ""){
Daniel Santose314ba32012-10-05 00:15:08500 if (! $output_preformatted) {
501print $lineprefix, local_unescape($blankline);
502 }
Linus Torvalds1da177e2005-04-16 22:20:36503} else {
Randy Dunlap3c308792007-05-08 07:24:39504 $line =~ s/\\\\\\/\&/g;
Randy Dunlapcdccb312007-07-19 08:48:25505 if ($output_mode eq "man" && substr($line, 0, 1) eq ".") {
506print "\\&$line";
507 } else {
508print $lineprefix, $line;
509 }
Linus Torvalds1da177e2005-04-16 22:20:36510}
511print "\n";
512 }
513}
514
Dan Luedtke1b40c192012-08-12 08:46:15515# output sections in html
Linus Torvalds1da177e2005-04-16 22:20:36516sub output_section_html(%) {
517 my %args = %{$_[0]};
518 my $section;
519
520 foreach $section (@{$args{'sectionlist'}}) {
521print "<h3>$section</h3>\n";
522print "<blockquote>\n";
523output_highlight($args{'sections'}{$section});
524print "</blockquote>\n";
Randy Dunlap3c3b8092006-02-01 11:06:58525 }
Linus Torvalds1da177e2005-04-16 22:20:36526}
527
528# output enum in html
529sub output_enum_html(%) {
530 my %args = %{$_[0]};
531 my ($parameter);
532 my $count;
Randy Dunlapb9d973282009-06-09 15:50:38533 print "<h2>enum " . $args{'enum'} . "</h2>\n";
Linus Torvalds1da177e2005-04-16 22:20:36534
Randy Dunlapb9d973282009-06-09 15:50:38535 print "<b>enum " . $args{'enum'} . "</b> {<br>\n";
Linus Torvalds1da177e2005-04-16 22:20:36536 $count = 0;
537 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlapb9d973282009-06-09 15:50:38538print " <b>" . $parameter . "</b>";
Linus Torvalds1da177e2005-04-16 22:20:36539if ($count != $#{$args{'parameterlist'}}) {
540 $count++;
541 print ",\n";
542}
543print "<br>";
544 }
545 print "};<br>\n";
546
547 print "<h3>Constants</h3>\n";
548 print "<dl>\n";
549 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlapb9d973282009-06-09 15:50:38550print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 22:20:36551print "<dd>";
552output_highlight($args{'parameterdescs'}{$parameter});
553 }
554 print "</dl>\n";
555 output_section_html(@_);
556 print "<hr>\n";
557}
558
Randy Dunlapd28bee02006-02-01 11:06:57559# output typedef in html
Linus Torvalds1da177e2005-04-16 22:20:36560sub output_typedef_html(%) {
561 my %args = %{$_[0]};
562 my ($parameter);
563 my $count;
Randy Dunlapb9d973282009-06-09 15:50:38564 print "<h2>typedef " . $args{'typedef'} . "</h2>\n";
Linus Torvalds1da177e2005-04-16 22:20:36565
Randy Dunlapb9d973282009-06-09 15:50:38566 print "<b>typedef " . $args{'typedef'} . "</b>\n";
Linus Torvalds1da177e2005-04-16 22:20:36567 output_section_html(@_);
568 print "<hr>\n";
569}
570
571# output struct in html
572sub output_struct_html(%) {
573 my %args = %{$_[0]};
574 my ($parameter);
575
Randy Dunlapb9d973282009-06-09 15:50:38576 print "<h2>" . $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "</h2>\n";
577 print "<b>" . $args{'type'} . " " . $args{'struct'} . "</b> {<br>\n";
Linus Torvalds1da177e2005-04-16 22:20:36578 foreach $parameter (@{$args{'parameterlist'}}) {
579if ($parameter =~ /^#/) {
580print "$parameter<br>\n";
581next;
582}
583my $parameter_name = $parameter;
584$parameter_name =~ s/\[.*//;
585
Randy Dunlap3c308792007-05-08 07:24:39586($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 22:20:36587$type = $args{'parametertypes'}{$parameter};
588if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
589 # pointer-to-function
Randy Dunlap3eb014a2007-05-08 07:29:51590 print "&nbsp; &nbsp; <i>$1</i><b>$parameter</b>) <i>($2)</i>;<br>\n";
Linus Torvalds1da177e2005-04-16 22:20:36591} elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap3eb014a2007-05-08 07:29:51592 # bitfield
593 print "&nbsp; &nbsp; <i>$1</i> <b>$parameter</b>$2;<br>\n";
Linus Torvalds1da177e2005-04-16 22:20:36594} else {
Randy Dunlap3eb014a2007-05-08 07:29:51595 print "&nbsp; &nbsp; <i>$type</i> <b>$parameter</b>;<br>\n";
Linus Torvalds1da177e2005-04-16 22:20:36596}
597 }
598 print "};<br>\n";
599
600 print "<h3>Members</h3>\n";
601 print "<dl>\n";
602 foreach $parameter (@{$args{'parameterlist'}}) {
603($parameter =~ /^#/) && next;
604
605my $parameter_name = $parameter;
606$parameter_name =~ s/\[.*//;
607
Randy Dunlap3c308792007-05-08 07:24:39608($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 15:50:38609print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 22:20:36610print "<dd>";
611output_highlight($args{'parameterdescs'}{$parameter_name});
612 }
613 print "</dl>\n";
614 output_section_html(@_);
615 print "<hr>\n";
616}
617
618# output function in html
619sub output_function_html(%) {
620 my %args = %{$_[0]};
621 my ($parameter, $section);
622 my $count;
Linus Torvalds1da177e2005-04-16 22:20:36623
Randy Dunlapb9d973282009-06-09 15:50:38624 print "<h2>" . $args{'function'} . " - " . $args{'purpose'} . "</h2>\n";
625 print "<i>" . $args{'functiontype'} . "</i>\n";
626 print "<b>" . $args{'function'} . "</b>\n";
Linus Torvalds1da177e2005-04-16 22:20:36627 print "(";
628 $count = 0;
629 foreach $parameter (@{$args{'parameterlist'}}) {
630$type = $args{'parametertypes'}{$parameter};
631if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
632 # pointer-to-function
633 print "<i>$1</i><b>$parameter</b>) <i>($2)</i>";
634} else {
Randy Dunlapb9d973282009-06-09 15:50:38635 print "<i>" . $type . "</i> <b>" . $parameter . "</b>";
Linus Torvalds1da177e2005-04-16 22:20:36636}
637if ($count != $#{$args{'parameterlist'}}) {
638 $count++;
639 print ",\n";
640}
641 }
642 print ")\n";
643
644 print "<h3>Arguments</h3>\n";
645 print "<dl>\n";
646 foreach $parameter (@{$args{'parameterlist'}}) {
647my $parameter_name = $parameter;
648$parameter_name =~ s/\[.*//;
649
Randy Dunlap3c308792007-05-08 07:24:39650($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 15:50:38651print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 22:20:36652print "<dd>";
653output_highlight($args{'parameterdescs'}{$parameter_name});
654 }
655 print "</dl>\n";
656 output_section_html(@_);
657 print "<hr>\n";
658}
659
Johannes Bergb112e0f2007-10-24 22:08:48660# output DOC: block header in html
661sub output_blockhead_html(%) {
Linus Torvalds1da177e2005-04-16 22:20:36662 my %args = %{$_[0]};
663 my ($parameter, $section);
664 my $count;
665
666 foreach $section (@{$args{'sectionlist'}}) {
667print "<h3>$section</h3>\n";
668print "<ul>\n";
669output_highlight($args{'sections'}{$section});
670print "</ul>\n";
671 }
672 print "<hr>\n";
673}
674
Dan Luedtke1b40c192012-08-12 08:46:15675# output sections in html5
676sub output_section_html5(%) {
677 my %args = %{$_[0]};
678 my $section;
679
680 foreach $section (@{$args{'sectionlist'}}) {
681print "<section>\n";
682print "<h1>$section</h1>\n";
683print "<p>\n";
684output_highlight($args{'sections'}{$section});
685print "</p>\n";
686print "</section>\n";
687 }
688}
689
690# output enum in html5
691sub output_enum_html5(%) {
692 my %args = %{$_[0]};
693 my ($parameter);
694 my $count;
695 my $html5id;
696
697 $html5id = $args{'enum'};
698 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
699 print "<article class=\"enum\" id=\"enum:". $html5id . "\">";
700 print "<h1>enum " . $args{'enum'} . "</h1>\n";
701 print "<ol class=\"code\">\n";
702 print "<li>";
703 print "<span class=\"keyword\">enum</span> ";
704 print "<span class=\"identifier\">" . $args{'enum'} . "</span> {";
705 print "</li>\n";
706 $count = 0;
707 foreach $parameter (@{$args{'parameterlist'}}) {
708print "<li class=\"indent\">";
709print "<span class=\"param\">" . $parameter . "</span>";
710if ($count != $#{$args{'parameterlist'}}) {
711 $count++;
712 print ",";
713}
714print "</li>\n";
715 }
716 print "<li>};</li>\n";
717 print "</ol>\n";
718
719 print "<section>\n";
720 print "<h1>Constants</h1>\n";
721 print "<dl>\n";
722 foreach $parameter (@{$args{'parameterlist'}}) {
723print "<dt>" . $parameter . "</dt>\n";
724print "<dd>";
725output_highlight($args{'parameterdescs'}{$parameter});
726print "</dd>\n";
727 }
728 print "</dl>\n";
729 print "</section>\n";
730 output_section_html5(@_);
731 print "</article>\n";
732}
733
734# output typedef in html5
735sub output_typedef_html5(%) {
736 my %args = %{$_[0]};
737 my ($parameter);
738 my $count;
739 my $html5id;
740
741 $html5id = $args{'typedef'};
742 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
743 print "<article class=\"typedef\" id=\"typedef:" . $html5id . "\">\n";
744 print "<h1>typedef " . $args{'typedef'} . "</h1>\n";
745
746 print "<ol class=\"code\">\n";
747 print "<li>";
748 print "<span class=\"keyword\">typedef</span> ";
749 print "<span class=\"identifier\">" . $args{'typedef'} . "</span>";
750 print "</li>\n";
751 print "</ol>\n";
752 output_section_html5(@_);
753 print "</article>\n";
754}
755
756# output struct in html5
757sub output_struct_html5(%) {
758 my %args = %{$_[0]};
759 my ($parameter);
760 my $html5id;
761
762 $html5id = $args{'struct'};
763 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
764 print "<article class=\"struct\" id=\"struct:" . $html5id . "\">\n";
765 print "<hgroup>\n";
766 print "<h1>" . $args{'type'} . " " . $args{'struct'} . "</h1>";
767 print "<h2>". $args{'purpose'} . "</h2>\n";
768 print "</hgroup>\n";
769 print "<ol class=\"code\">\n";
770 print "<li>";
771 print "<span class=\"type\">" . $args{'type'} . "</span> ";
772 print "<span class=\"identifier\">" . $args{'struct'} . "</span> {";
773 print "</li>\n";
774 foreach $parameter (@{$args{'parameterlist'}}) {
775print "<li class=\"indent\">";
776if ($parameter =~ /^#/) {
777print "<span class=\"param\">" . $parameter ."</span>\n";
778print "</li>\n";
779next;
780}
781my $parameter_name = $parameter;
782$parameter_name =~ s/\[.*//;
783
784($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
785$type = $args{'parametertypes'}{$parameter};
786if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
787 # pointer-to-function
788 print "<span class=\"type\">$1</span> ";
789 print "<span class=\"param\">$parameter</span>";
790 print "<span class=\"type\">)</span> ";
791 print "(<span class=\"args\">$2</span>);";
792} elsif ($type =~ m/^(.*?)\s*(:.*)/) {
793 # bitfield
794 print "<span class=\"type\">$1</span> ";
795 print "<span class=\"param\">$parameter</span>";
796 print "<span class=\"bits\">$2</span>;";
797} else {
798 print "<span class=\"type\">$type</span> ";
799 print "<span class=\"param\">$parameter</span>;";
800}
801print "</li>\n";
802 }
803 print "<li>};</li>\n";
804 print "</ol>\n";
805
806 print "<section>\n";
807 print "<h1>Members</h1>\n";
808 print "<dl>\n";
809 foreach $parameter (@{$args{'parameterlist'}}) {
810($parameter =~ /^#/) && next;
811
812my $parameter_name = $parameter;
813$parameter_name =~ s/\[.*//;
814
815($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
816print "<dt>" . $parameter . "</dt>\n";
817print "<dd>";
818output_highlight($args{'parameterdescs'}{$parameter_name});
819print "</dd>\n";
820 }
821 print "</dl>\n";
822 print "</section>\n";
823 output_section_html5(@_);
824 print "</article>\n";
825}
826
827# output function in html5
828sub output_function_html5(%) {
829 my %args = %{$_[0]};
830 my ($parameter, $section);
831 my $count;
832 my $html5id;
833
834 $html5id = $args{'function'};
835 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
836 print "<article class=\"function\" id=\"func:". $html5id . "\">\n";
837 print "<hgroup>\n";
838 print "<h1>" . $args{'function'} . "</h1>";
839 print "<h2>" . $args{'purpose'} . "</h2>\n";
840 print "</hgroup>\n";
841 print "<ol class=\"code\">\n";
842 print "<li>";
843 print "<span class=\"type\">" . $args{'functiontype'} . "</span> ";
844 print "<span class=\"identifier\">" . $args{'function'} . "</span> (";
845 print "</li>";
846 $count = 0;
847 foreach $parameter (@{$args{'parameterlist'}}) {
848print "<li class=\"indent\">";
849$type = $args{'parametertypes'}{$parameter};
850if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
851 # pointer-to-function
852 print "<span class=\"type\">$1</span> ";
853 print "<span class=\"param\">$parameter</span>";
854 print "<span class=\"type\">)</span> ";
855 print "(<span class=\"args\">$2</span>)";
856} else {
857 print "<span class=\"type\">$type</span> ";
858 print "<span class=\"param\">$parameter</span>";
859}
860if ($count != $#{$args{'parameterlist'}}) {
861 $count++;
862 print ",";
863}
864print "</li>\n";
865 }
866 print "<li>)</li>\n";
867 print "</ol>\n";
868
869 print "<section>\n";
870 print "<h1>Arguments</h1>\n";
871 print "<p>\n";
872 print "<dl>\n";
873 foreach $parameter (@{$args{'parameterlist'}}) {
874my $parameter_name = $parameter;
875$parameter_name =~ s/\[.*//;
876
877($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
878print "<dt>" . $parameter . "</dt>\n";
879print "<dd>";
880output_highlight($args{'parameterdescs'}{$parameter_name});
881print "</dd>\n";
882 }
883 print "</dl>\n";
884 print "</section>\n";
885 output_section_html5(@_);
886 print "</article>\n";
887}
888
889# output DOC: block header in html5
890sub output_blockhead_html5(%) {
891 my %args = %{$_[0]};
892 my ($parameter, $section);
893 my $count;
894 my $html5id;
895
896 foreach $section (@{$args{'sectionlist'}}) {
897$html5id = $section;
898$html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
899print "<article class=\"doc\" id=\"doc:". $html5id . "\">\n";
900print "<h1>$section</h1>\n";
901print "<p>\n";
902output_highlight($args{'sections'}{$section});
903print "</p>\n";
904 }
905 print "</article>\n";
906}
907
Linus Torvalds1da177e2005-04-16 22:20:36908sub output_section_xml(%) {
909 my %args = %{$_[0]};
Randy Dunlap3c3b8092006-02-01 11:06:58910 my $section;
Linus Torvalds1da177e2005-04-16 22:20:36911 # print out each section
912 $lineprefix=" ";
913 foreach $section (@{$args{'sectionlist'}}) {
Rich Walkerc73894c2005-05-01 15:59:26914print "<refsect1>\n";
915print "<title>$section</title>\n";
Linus Torvalds1da177e2005-04-16 22:20:36916if ($section =~ m/EXAMPLE/i) {
Rich Walkerc73894c2005-05-01 15:59:26917 print "<informalexample><programlisting>\n";
Daniel Santose314ba32012-10-05 00:15:08918 $output_preformatted = 1;
Rich Walkerc73894c2005-05-01 15:59:26919} else {
920 print "<para>\n";
Linus Torvalds1da177e2005-04-16 22:20:36921}
922output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-05 00:15:08923$output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 22:20:36924if ($section =~ m/EXAMPLE/i) {
Rich Walkerc73894c2005-05-01 15:59:26925 print "</programlisting></informalexample>\n";
926} else {
927 print "</para>\n";
Linus Torvalds1da177e2005-04-16 22:20:36928}
Rich Walkerc73894c2005-05-01 15:59:26929print "</refsect1>\n";
Linus Torvalds1da177e2005-04-16 22:20:36930 }
931}
932
933# output function in XML DocBook
934sub output_function_xml(%) {
935 my %args = %{$_[0]};
936 my ($parameter, $section);
937 my $count;
938 my $id;
939
Randy Dunlapb9d973282009-06-09 15:50:38940 $id = "API-" . $args{'function'};
Linus Torvalds1da177e2005-04-16 22:20:36941 $id =~ s/[^A-Za-z0-9]/-/g;
942
Pavel Pisa5449bc942007-02-10 09:45:37943 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 15:59:27944 print "<refentryinfo>\n";
945 print " <title>LINUX</title>\n";
946 print " <productname>Kernel Hackers Manual</productname>\n";
947 print " <date>$man_date</date>\n";
948 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 22:20:36949 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 15:50:38950 print " <refentrytitle><phrase>" . $args{'function'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 15:59:27951 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 09:33:43952 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 22:20:36953 print "</refmeta>\n";
954 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 15:50:38955 print " <refname>" . $args{'function'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 22:20:36956 print " <refpurpose>\n";
957 print " ";
958 output_highlight ($args{'purpose'});
959 print " </refpurpose>\n";
960 print "</refnamediv>\n";
961
962 print "<refsynopsisdiv>\n";
963 print " <title>Synopsis</title>\n";
964 print " <funcsynopsis><funcprototype>\n";
Randy Dunlapb9d973282009-06-09 15:50:38965 print " <funcdef>" . $args{'functiontype'} . " ";
966 print "<function>" . $args{'function'} . " </function></funcdef>\n";
Linus Torvalds1da177e2005-04-16 22:20:36967
968 $count = 0;
969 if ($#{$args{'parameterlist'}} >= 0) {
970foreach $parameter (@{$args{'parameterlist'}}) {
971 $type = $args{'parametertypes'}{$parameter};
972 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
973# pointer-to-function
974print " <paramdef>$1<parameter>$parameter</parameter>)\n";
975print " <funcparams>$2</funcparams></paramdef>\n";
976 } else {
Randy Dunlapb9d973282009-06-09 15:50:38977print " <paramdef>" . $type;
Linus Torvalds1da177e2005-04-16 22:20:36978print " <parameter>$parameter</parameter></paramdef>\n";
979 }
980}
981 } else {
Martin Waitz6013d542005-05-01 15:59:25982print " <void/>\n";
Linus Torvalds1da177e2005-04-16 22:20:36983 }
984 print " </funcprototype></funcsynopsis>\n";
985 print "</refsynopsisdiv>\n";
986
987 # print parameters
988 print "<refsect1>\n <title>Arguments</title>\n";
989 if ($#{$args{'parameterlist'}} >= 0) {
990print " <variablelist>\n";
991foreach $parameter (@{$args{'parameterlist'}}) {
992 my $parameter_name = $parameter;
993 $parameter_name =~ s/\[.*//;
994
995 print " <varlistentry>\n <term><parameter>$parameter</parameter></term>\n";
996 print " <listitem>\n <para>\n";
997 $lineprefix=" ";
998 output_highlight($args{'parameterdescs'}{$parameter_name});
999 print " </para>\n </listitem>\n </varlistentry>\n";
1000}
1001print " </variablelist>\n";
1002 } else {
1003print " <para>\n None\n </para>\n";
1004 }
1005 print "</refsect1>\n";
1006
1007 output_section_xml(@_);
1008 print "</refentry>\n\n";
1009}
1010
1011# output struct in XML DocBook
1012sub output_struct_xml(%) {
1013 my %args = %{$_[0]};
1014 my ($parameter, $section);
1015 my $id;
1016
Randy Dunlapb9d973282009-06-09 15:50:381017 $id = "API-struct-" . $args{'struct'};
Linus Torvalds1da177e2005-04-16 22:20:361018 $id =~ s/[^A-Za-z0-9]/-/g;
1019
Pavel Pisa5449bc942007-02-10 09:45:371020 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 15:59:271021 print "<refentryinfo>\n";
1022 print " <title>LINUX</title>\n";
1023 print " <productname>Kernel Hackers Manual</productname>\n";
1024 print " <date>$man_date</date>\n";
1025 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 22:20:361026 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 15:50:381027 print " <refentrytitle><phrase>" . $args{'type'} . " " . $args{'struct'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 15:59:271028 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 09:33:431029 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 22:20:361030 print "</refmeta>\n";
1031 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 15:50:381032 print " <refname>" . $args{'type'} . " " . $args{'struct'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 22:20:361033 print " <refpurpose>\n";
1034 print " ";
1035 output_highlight ($args{'purpose'});
1036 print " </refpurpose>\n";
1037 print "</refnamediv>\n";
1038
1039 print "<refsynopsisdiv>\n";
1040 print " <title>Synopsis</title>\n";
1041 print " <programlisting>\n";
Randy Dunlapb9d973282009-06-09 15:50:381042 print $args{'type'} . " " . $args{'struct'} . " {\n";
Linus Torvalds1da177e2005-04-16 22:20:361043 foreach $parameter (@{$args{'parameterlist'}}) {
1044if ($parameter =~ /^#/) {
Randy Dunlap2b35f4d2010-11-18 20:27:311045 my $prm = $parameter;
1046 # convert data read & converted thru xml_escape() into &xyz; format:
1047 # This allows us to have #define macros interspersed in a struct.
1048 $prm =~ s/\\\\\\/\&/g;
1049 print "$prm\n";
Linus Torvalds1da177e2005-04-16 22:20:361050 next;
1051}
1052
1053my $parameter_name = $parameter;
1054$parameter_name =~ s/\[.*//;
1055
1056defined($args{'parameterdescs'}{$parameter_name}) || next;
Randy Dunlap3c308792007-05-08 07:24:391057($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 22:20:361058$type = $args{'parametertypes'}{$parameter};
1059if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1060 # pointer-to-function
1061 print " $1 $parameter) ($2);\n";
1062} elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap51f5a0c2007-07-19 08:48:241063 # bitfield
Linus Torvalds1da177e2005-04-16 22:20:361064 print " $1 $parameter$2;\n";
1065} else {
Randy Dunlapb9d973282009-06-09 15:50:381066 print " " . $type . " " . $parameter . ";\n";
Linus Torvalds1da177e2005-04-16 22:20:361067}
1068 }
1069 print "};";
1070 print " </programlisting>\n";
1071 print "</refsynopsisdiv>\n";
1072
1073 print " <refsect1>\n";
1074 print " <title>Members</title>\n";
1075
Randy Dunlap39f00c02008-09-22 20:57:441076 if ($#{$args{'parameterlist'}} >= 0) {
Linus Torvalds1da177e2005-04-16 22:20:361077 print " <variablelist>\n";
1078 foreach $parameter (@{$args{'parameterlist'}}) {
1079 ($parameter =~ /^#/) && next;
1080
1081 my $parameter_name = $parameter;
1082 $parameter_name =~ s/\[.*//;
1083
1084 defined($args{'parameterdescs'}{$parameter_name}) || next;
1085 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1086 print " <varlistentry>";
1087 print " <term>$parameter</term>\n";
1088 print " <listitem><para>\n";
1089 output_highlight($args{'parameterdescs'}{$parameter_name});
1090 print " </para></listitem>\n";
1091 print " </varlistentry>\n";
1092 }
1093 print " </variablelist>\n";
Randy Dunlap39f00c02008-09-22 20:57:441094 } else {
1095print " <para>\n None\n </para>\n";
1096 }
Linus Torvalds1da177e2005-04-16 22:20:361097 print " </refsect1>\n";
1098
1099 output_section_xml(@_);
1100
1101 print "</refentry>\n\n";
1102}
1103
1104# output enum in XML DocBook
1105sub output_enum_xml(%) {
1106 my %args = %{$_[0]};
1107 my ($parameter, $section);
1108 my $count;
1109 my $id;
1110
Randy Dunlapb9d973282009-06-09 15:50:381111 $id = "API-enum-" . $args{'enum'};
Linus Torvalds1da177e2005-04-16 22:20:361112 $id =~ s/[^A-Za-z0-9]/-/g;
1113
Pavel Pisa5449bc942007-02-10 09:45:371114 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 15:59:271115 print "<refentryinfo>\n";
1116 print " <title>LINUX</title>\n";
1117 print " <productname>Kernel Hackers Manual</productname>\n";
1118 print " <date>$man_date</date>\n";
1119 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 22:20:361120 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 15:50:381121 print " <refentrytitle><phrase>enum " . $args{'enum'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 15:59:271122 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 09:33:431123 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 22:20:361124 print "</refmeta>\n";
1125 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 15:50:381126 print " <refname>enum " . $args{'enum'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 22:20:361127 print " <refpurpose>\n";
1128 print " ";
1129 output_highlight ($args{'purpose'});
1130 print " </refpurpose>\n";
1131 print "</refnamediv>\n";
1132
1133 print "<refsynopsisdiv>\n";
1134 print " <title>Synopsis</title>\n";
1135 print " <programlisting>\n";
Randy Dunlapb9d973282009-06-09 15:50:381136 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 22:20:361137 $count = 0;
1138 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 07:24:391139print " $parameter";
1140if ($count != $#{$args{'parameterlist'}}) {
Linus Torvalds1da177e2005-04-16 22:20:361141 $count++;
1142 print ",";
Randy Dunlap3c308792007-05-08 07:24:391143}
Linus Torvalds1da177e2005-04-16 22:20:361144print "\n";
1145 }
1146 print "};";
1147 print " </programlisting>\n";
1148 print "</refsynopsisdiv>\n";
1149
1150 print "<refsect1>\n";
Randy Dunlap3c3b8092006-02-01 11:06:581151 print " <title>Constants</title>\n";
Linus Torvalds1da177e2005-04-16 22:20:361152 print " <variablelist>\n";
1153 foreach $parameter (@{$args{'parameterlist'}}) {
1154 my $parameter_name = $parameter;
1155 $parameter_name =~ s/\[.*//;
1156
1157 print " <varlistentry>";
1158 print " <term>$parameter</term>\n";
1159 print " <listitem><para>\n";
1160 output_highlight($args{'parameterdescs'}{$parameter_name});
1161 print " </para></listitem>\n";
1162 print " </varlistentry>\n";
1163 }
1164 print " </variablelist>\n";
1165 print "</refsect1>\n";
1166
1167 output_section_xml(@_);
1168
1169 print "</refentry>\n\n";
1170}
1171
1172# output typedef in XML DocBook
1173sub output_typedef_xml(%) {
1174 my %args = %{$_[0]};
1175 my ($parameter, $section);
1176 my $id;
1177
Randy Dunlapb9d973282009-06-09 15:50:381178 $id = "API-typedef-" . $args{'typedef'};
Linus Torvalds1da177e2005-04-16 22:20:361179 $id =~ s/[^A-Za-z0-9]/-/g;
1180
Pavel Pisa5449bc942007-02-10 09:45:371181 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 15:59:271182 print "<refentryinfo>\n";
1183 print " <title>LINUX</title>\n";
1184 print " <productname>Kernel Hackers Manual</productname>\n";
1185 print " <date>$man_date</date>\n";
1186 print "</refentryinfo>\n";
Linus Torvalds1da177e2005-04-16 22:20:361187 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 15:50:381188 print " <refentrytitle><phrase>typedef " . $args{'typedef'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 15:59:271189 print " <manvolnum>9</manvolnum>\n";
Linus Torvalds1da177e2005-04-16 22:20:361190 print "</refmeta>\n";
1191 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 15:50:381192 print " <refname>typedef " . $args{'typedef'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 22:20:361193 print " <refpurpose>\n";
1194 print " ";
1195 output_highlight ($args{'purpose'});
1196 print " </refpurpose>\n";
1197 print "</refnamediv>\n";
1198
1199 print "<refsynopsisdiv>\n";
1200 print " <title>Synopsis</title>\n";
Randy Dunlapb9d973282009-06-09 15:50:381201 print " <synopsis>typedef " . $args{'typedef'} . ";</synopsis>\n";
Linus Torvalds1da177e2005-04-16 22:20:361202 print "</refsynopsisdiv>\n";
1203
1204 output_section_xml(@_);
1205
1206 print "</refentry>\n\n";
1207}
1208
1209# output in XML DocBook
Johannes Bergb112e0f2007-10-24 22:08:481210sub output_blockhead_xml(%) {
Linus Torvalds1da177e2005-04-16 22:20:361211 my %args = %{$_[0]};
1212 my ($parameter, $section);
1213 my $count;
1214
1215 my $id = $args{'module'};
1216 $id =~ s/[^A-Za-z0-9]/-/g;
1217
1218 # print out each section
1219 $lineprefix=" ";
1220 foreach $section (@{$args{'sectionlist'}}) {
Johannes Bergb112e0f2007-10-24 22:08:481221if (!$args{'content-only'}) {
1222print "<refsect1>\n <title>$section</title>\n";
1223}
Linus Torvalds1da177e2005-04-16 22:20:361224if ($section =~ m/EXAMPLE/i) {
1225 print "<example><para>\n";
Daniel Santose314ba32012-10-05 00:15:081226 $output_preformatted = 1;
Johannes Bergb112e0f2007-10-24 22:08:481227} else {
1228 print "<para>\n";
Linus Torvalds1da177e2005-04-16 22:20:361229}
1230output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-05 00:15:081231$output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 22:20:361232if ($section =~ m/EXAMPLE/i) {
1233 print "</para></example>\n";
Johannes Bergb112e0f2007-10-24 22:08:481234} else {
1235 print "</para>";
Linus Torvalds1da177e2005-04-16 22:20:361236}
Johannes Bergb112e0f2007-10-24 22:08:481237if (!$args{'content-only'}) {
1238print "\n</refsect1>\n";
1239}
Linus Torvalds1da177e2005-04-16 22:20:361240 }
1241
1242 print "\n\n";
1243}
1244
1245# output in XML DocBook
1246sub output_function_gnome {
1247 my %args = %{$_[0]};
1248 my ($parameter, $section);
1249 my $count;
1250 my $id;
1251
Randy Dunlapb9d973282009-06-09 15:50:381252 $id = $args{'module'} . "-" . $args{'function'};
Linus Torvalds1da177e2005-04-16 22:20:361253 $id =~ s/[^A-Za-z0-9]/-/g;
1254
1255 print "<sect2>\n";
Randy Dunlapb9d973282009-06-09 15:50:381256 print " <title id=\"$id\">" . $args{'function'} . "</title>\n";
Linus Torvalds1da177e2005-04-16 22:20:361257
1258 print " <funcsynopsis>\n";
Randy Dunlapb9d973282009-06-09 15:50:381259 print " <funcdef>" . $args{'functiontype'} . " ";
1260 print "<function>" . $args{'function'} . " ";
Linus Torvalds1da177e2005-04-16 22:20:361261 print "</function></funcdef>\n";
1262
1263 $count = 0;
1264 if ($#{$args{'parameterlist'}} >= 0) {
1265foreach $parameter (@{$args{'parameterlist'}}) {
1266 $type = $args{'parametertypes'}{$parameter};
1267 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1268# pointer-to-function
1269print " <paramdef>$1 <parameter>$parameter</parameter>)\n";
1270print " <funcparams>$2</funcparams></paramdef>\n";
1271 } else {
Randy Dunlapb9d973282009-06-09 15:50:381272print " <paramdef>" . $type;
Linus Torvalds1da177e2005-04-16 22:20:361273print " <parameter>$parameter</parameter></paramdef>\n";
1274 }
1275}
1276 } else {
1277print " <void>\n";
1278 }
1279 print " </funcsynopsis>\n";
1280 if ($#{$args{'parameterlist'}} >= 0) {
1281print " <informaltable pgwide=\"1\" frame=\"none\" role=\"params\">\n";
1282print "<tgroup cols=\"2\">\n";
1283print "<colspec colwidth=\"2*\">\n";
1284print "<colspec colwidth=\"8*\">\n";
1285print "<tbody>\n";
1286foreach $parameter (@{$args{'parameterlist'}}) {
1287 my $parameter_name = $parameter;
1288 $parameter_name =~ s/\[.*//;
1289
1290 print " <row><entry align=\"right\"><parameter>$parameter</parameter></entry>\n";
1291 print " <entry>\n";
1292 $lineprefix=" ";
1293 output_highlight($args{'parameterdescs'}{$parameter_name});
1294 print " </entry></row>\n";
1295}
1296print " </tbody></tgroup></informaltable>\n";
1297 } else {
1298print " <para>\n None\n </para>\n";
1299 }
1300
1301 # print out each section
1302 $lineprefix=" ";
1303 foreach $section (@{$args{'sectionlist'}}) {
1304print "<simplesect>\n <title>$section</title>\n";
1305if ($section =~ m/EXAMPLE/i) {
1306 print "<example><programlisting>\n";
Daniel Santose314ba32012-10-05 00:15:081307 $output_preformatted = 1;
Linus Torvalds1da177e2005-04-16 22:20:361308} else {
1309}
1310print "<para>\n";
1311output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-05 00:15:081312$output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 22:20:361313print "</para>\n";
1314if ($section =~ m/EXAMPLE/i) {
1315 print "</programlisting></example>\n";
1316} else {
1317}
1318print " </simplesect>\n";
1319 }
1320
1321 print "</sect2>\n\n";
1322}
1323
1324##
1325# output function in man
1326sub output_function_man(%) {
1327 my %args = %{$_[0]};
1328 my ($parameter, $section);
1329 my $count;
1330
1331 print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n";
1332
1333 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 15:50:381334 print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 22:20:361335
1336 print ".SH SYNOPSIS\n";
Randy Dunlapa21217da2007-02-10 09:46:041337 if ($args{'functiontype'} ne "") {
Randy Dunlapb9d973282009-06-09 15:50:381338print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
Randy Dunlapa21217da2007-02-10 09:46:041339 } else {
Randy Dunlapb9d973282009-06-09 15:50:381340print ".B \"" . $args{'function'} . "\n";
Randy Dunlapa21217da2007-02-10 09:46:041341 }
Linus Torvalds1da177e2005-04-16 22:20:361342 $count = 0;
1343 my $parenth = "(";
1344 my $post = ",";
1345 foreach my $parameter (@{$args{'parameterlist'}}) {
1346if ($count == $#{$args{'parameterlist'}}) {
1347 $post = ");";
1348}
1349$type = $args{'parametertypes'}{$parameter};
1350if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1351 # pointer-to-function
Randy Dunlapb9d973282009-06-09 15:50:381352 print ".BI \"" . $parenth . $1 . "\" " . $parameter . " \") (" . $2 . ")" . $post . "\"\n";
Linus Torvalds1da177e2005-04-16 22:20:361353} else {
1354 $type =~ s/([^\*])$/$1 /;
Randy Dunlapb9d973282009-06-09 15:50:381355 print ".BI \"" . $parenth . $type . "\" " . $parameter . " \"" . $post . "\"\n";
Linus Torvalds1da177e2005-04-16 22:20:361356}
1357$count++;
1358$parenth = "";
1359 }
1360
1361 print ".SH ARGUMENTS\n";
1362 foreach $parameter (@{$args{'parameterlist'}}) {
1363my $parameter_name = $parameter;
1364$parameter_name =~ s/\[.*//;
1365
Randy Dunlapb9d973282009-06-09 15:50:381366print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 22:20:361367output_highlight($args{'parameterdescs'}{$parameter_name});
1368 }
1369 foreach $section (@{$args{'sectionlist'}}) {
1370print ".SH \"", uc $section, "\"\n";
1371output_highlight($args{'sections'}{$section});
1372 }
1373}
1374
1375##
1376# output enum in man
1377sub output_enum_man(%) {
1378 my %args = %{$_[0]};
1379 my ($parameter, $section);
1380 my $count;
1381
1382 print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n";
1383
1384 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 15:50:381385 print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 22:20:361386
1387 print ".SH SYNOPSIS\n";
Randy Dunlapb9d973282009-06-09 15:50:381388 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 22:20:361389 $count = 0;
1390 foreach my $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 07:24:391391print ".br\n.BI \" $parameter\"\n";
Linus Torvalds1da177e2005-04-16 22:20:361392if ($count == $#{$args{'parameterlist'}}) {
1393 print "\n};\n";
1394 last;
1395}
1396else {
1397 print ", \n.br\n";
1398}
1399$count++;
1400 }
1401
1402 print ".SH Constants\n";
1403 foreach $parameter (@{$args{'parameterlist'}}) {
1404my $parameter_name = $parameter;
1405$parameter_name =~ s/\[.*//;
1406
Randy Dunlapb9d973282009-06-09 15:50:381407print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 22:20:361408output_highlight($args{'parameterdescs'}{$parameter_name});
1409 }
1410 foreach $section (@{$args{'sectionlist'}}) {
1411print ".SH \"$section\"\n";
1412output_highlight($args{'sections'}{$section});
1413 }
1414}
1415
1416##
1417# output struct in man
1418sub output_struct_man(%) {
1419 my %args = %{$_[0]};
1420 my ($parameter, $section);
1421
Randy Dunlapb9d973282009-06-09 15:50:381422 print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n";
Linus Torvalds1da177e2005-04-16 22:20:361423
1424 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 15:50:381425 print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 22:20:361426
1427 print ".SH SYNOPSIS\n";
Randy Dunlapb9d973282009-06-09 15:50:381428 print $args{'type'} . " " . $args{'struct'} . " {\n.br\n";
Linus Torvalds1da177e2005-04-16 22:20:361429
1430 foreach my $parameter (@{$args{'parameterlist'}}) {
1431if ($parameter =~ /^#/) {
1432 print ".BI \"$parameter\"\n.br\n";
1433 next;
1434}
1435my $parameter_name = $parameter;
1436$parameter_name =~ s/\[.*//;
1437
Randy Dunlap3c308792007-05-08 07:24:391438($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 22:20:361439$type = $args{'parametertypes'}{$parameter};
1440if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1441 # pointer-to-function
Randy Dunlapb9d973282009-06-09 15:50:381442 print ".BI \" " . $1 . "\" " . $parameter . " \") (" . $2 . ")" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 22:20:361443} elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy.Dunlap1d7e1d42006-07-01 11:36:341444 # bitfield
Randy Dunlapb9d973282009-06-09 15:50:381445 print ".BI \" " . $1 . "\ \" " . $parameter . $2 . " \"" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 22:20:361446} else {
1447 $type =~ s/([^\*])$/$1 /;
Randy Dunlapb9d973282009-06-09 15:50:381448 print ".BI \" " . $type . "\" " . $parameter . " \"" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 22:20:361449}
1450print "\n.br\n";
1451 }
1452 print "};\n.br\n";
1453
Randy Dunlapc51d3dac2006-06-25 12:49:141454 print ".SH Members\n";
Linus Torvalds1da177e2005-04-16 22:20:361455 foreach $parameter (@{$args{'parameterlist'}}) {
1456($parameter =~ /^#/) && next;
1457
1458my $parameter_name = $parameter;
1459$parameter_name =~ s/\[.*//;
1460
Randy Dunlap3c308792007-05-08 07:24:391461($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 15:50:381462print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 22:20:361463output_highlight($args{'parameterdescs'}{$parameter_name});
1464 }
1465 foreach $section (@{$args{'sectionlist'}}) {
1466print ".SH \"$section\"\n";
1467output_highlight($args{'sections'}{$section});
1468 }
1469}
1470
1471##
1472# output typedef in man
1473sub output_typedef_man(%) {
1474 my %args = %{$_[0]};
1475 my ($parameter, $section);
1476
1477 print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n";
1478
1479 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 15:50:381480 print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 22:20:361481
1482 foreach $section (@{$args{'sectionlist'}}) {
1483print ".SH \"$section\"\n";
1484output_highlight($args{'sections'}{$section});
1485 }
1486}
1487
Johannes Bergb112e0f2007-10-24 22:08:481488sub output_blockhead_man(%) {
Linus Torvalds1da177e2005-04-16 22:20:361489 my %args = %{$_[0]};
1490 my ($parameter, $section);
1491 my $count;
1492
1493 print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n";
1494
1495 foreach $section (@{$args{'sectionlist'}}) {
1496print ".SH \"$section\"\n";
1497output_highlight($args{'sections'}{$section});
1498 }
1499}
1500
1501##
1502# output in text
1503sub output_function_text(%) {
1504 my %args = %{$_[0]};
1505 my ($parameter, $section);
Randy Dunlapa21217da2007-02-10 09:46:041506 my $start;
Linus Torvalds1da177e2005-04-16 22:20:361507
Randy Dunlapf47634b2006-07-01 11:36:361508 print "Name:\n\n";
Randy Dunlapb9d973282009-06-09 15:50:381509 print $args{'function'} . " - " . $args{'purpose'} . "\n";
Randy Dunlapf47634b2006-07-01 11:36:361510
1511 print "\nSynopsis:\n\n";
Randy Dunlapa21217da2007-02-10 09:46:041512 if ($args{'functiontype'} ne "") {
Randy Dunlapb9d973282009-06-09 15:50:381513$start = $args{'functiontype'} . " " . $args{'function'} . " (";
Randy Dunlapa21217da2007-02-10 09:46:041514 } else {
Randy Dunlapb9d973282009-06-09 15:50:381515$start = $args{'function'} . " (";
Randy Dunlapa21217da2007-02-10 09:46:041516 }
Linus Torvalds1da177e2005-04-16 22:20:361517 print $start;
Randy Dunlapa21217da2007-02-10 09:46:041518
Linus Torvalds1da177e2005-04-16 22:20:361519 my $count = 0;
1520 foreach my $parameter (@{$args{'parameterlist'}}) {
1521$type = $args{'parametertypes'}{$parameter};
1522if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1523 # pointer-to-function
Randy Dunlapb9d973282009-06-09 15:50:381524 print $1 . $parameter . ") (" . $2;
Linus Torvalds1da177e2005-04-16 22:20:361525} else {
Randy Dunlapb9d973282009-06-09 15:50:381526 print $type . " " . $parameter;
Linus Torvalds1da177e2005-04-16 22:20:361527}
1528if ($count != $#{$args{'parameterlist'}}) {
1529 $count++;
1530 print ",\n";
1531 print " " x length($start);
1532} else {
1533 print ");\n\n";
1534}
1535 }
1536
1537 print "Arguments:\n\n";
1538 foreach $parameter (@{$args{'parameterlist'}}) {
1539my $parameter_name = $parameter;
1540$parameter_name =~ s/\[.*//;
1541
Randy Dunlapb9d973282009-06-09 15:50:381542print $parameter . "\n\t" . $args{'parameterdescs'}{$parameter_name} . "\n";
Linus Torvalds1da177e2005-04-16 22:20:361543 }
1544 output_section_text(@_);
1545}
1546
1547#output sections in text
1548sub output_section_text(%) {
1549 my %args = %{$_[0]};
1550 my $section;
1551
1552 print "\n";
1553 foreach $section (@{$args{'sectionlist'}}) {
1554print "$section:\n\n";
1555output_highlight($args{'sections'}{$section});
Randy Dunlap3c3b8092006-02-01 11:06:581556 }
Linus Torvalds1da177e2005-04-16 22:20:361557 print "\n\n";
1558}
1559
1560# output enum in text
1561sub output_enum_text(%) {
1562 my %args = %{$_[0]};
1563 my ($parameter);
1564 my $count;
1565 print "Enum:\n\n";
1566
Randy Dunlapb9d973282009-06-09 15:50:381567 print "enum " . $args{'enum'} . " - " . $args{'purpose'} . "\n\n";
1568 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 22:20:361569 $count = 0;
1570 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 07:24:391571print "\t$parameter";
Linus Torvalds1da177e2005-04-16 22:20:361572if ($count != $#{$args{'parameterlist'}}) {
1573 $count++;
1574 print ",";
1575}
1576print "\n";
1577 }
1578 print "};\n\n";
1579
1580 print "Constants:\n\n";
1581 foreach $parameter (@{$args{'parameterlist'}}) {
1582print "$parameter\n\t";
Randy Dunlapb9d973282009-06-09 15:50:381583print $args{'parameterdescs'}{$parameter} . "\n";
Linus Torvalds1da177e2005-04-16 22:20:361584 }
1585
1586 output_section_text(@_);
1587}
1588
1589# output typedef in text
1590sub output_typedef_text(%) {
1591 my %args = %{$_[0]};
1592 my ($parameter);
1593 my $count;
1594 print "Typedef:\n\n";
1595
Randy Dunlapb9d973282009-06-09 15:50:381596 print "typedef " . $args{'typedef'} . " - " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 22:20:361597 output_section_text(@_);
1598}
1599
1600# output struct as text
1601sub output_struct_text(%) {
1602 my %args = %{$_[0]};
1603 my ($parameter);
1604
Randy Dunlapb9d973282009-06-09 15:50:381605 print $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "\n\n";
1606 print $args{'type'} . " " . $args{'struct'} . " {\n";
Linus Torvalds1da177e2005-04-16 22:20:361607 foreach $parameter (@{$args{'parameterlist'}}) {
1608if ($parameter =~ /^#/) {
1609 print "$parameter\n";
1610 next;
1611}
1612
1613my $parameter_name = $parameter;
1614$parameter_name =~ s/\[.*//;
1615
Randy Dunlap3c308792007-05-08 07:24:391616($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 22:20:361617$type = $args{'parametertypes'}{$parameter};
1618if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1619 # pointer-to-function
1620 print "\t$1 $parameter) ($2);\n";
1621} elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap51f5a0c2007-07-19 08:48:241622 # bitfield
Linus Torvalds1da177e2005-04-16 22:20:361623 print "\t$1 $parameter$2;\n";
1624} else {
Randy Dunlapb9d973282009-06-09 15:50:381625 print "\t" . $type . " " . $parameter . ";\n";
Linus Torvalds1da177e2005-04-16 22:20:361626}
1627 }
1628 print "};\n\n";
1629
1630 print "Members:\n\n";
1631 foreach $parameter (@{$args{'parameterlist'}}) {
1632($parameter =~ /^#/) && next;
1633
1634my $parameter_name = $parameter;
1635$parameter_name =~ s/\[.*//;
1636
Randy Dunlap3c308792007-05-08 07:24:391637($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 22:20:361638print "$parameter\n\t";
Randy Dunlapb9d973282009-06-09 15:50:381639print $args{'parameterdescs'}{$parameter_name} . "\n";
Linus Torvalds1da177e2005-04-16 22:20:361640 }
1641 print "\n";
1642 output_section_text(@_);
1643}
1644
Johannes Bergb112e0f2007-10-24 22:08:481645sub output_blockhead_text(%) {
Linus Torvalds1da177e2005-04-16 22:20:361646 my %args = %{$_[0]};
1647 my ($parameter, $section);
1648
1649 foreach $section (@{$args{'sectionlist'}}) {
1650print " $section:\n";
1651print " -> ";
1652output_highlight($args{'sections'}{$section});
1653 }
1654}
1655
Johannes Bergeda603f2010-09-11 22:55:221656## list mode output functions
1657
1658sub output_function_list(%) {
1659 my %args = %{$_[0]};
1660
1661 print $args{'function'} . "\n";
1662}
1663
1664# output enum in list
1665sub output_enum_list(%) {
1666 my %args = %{$_[0]};
1667 print $args{'enum'} . "\n";
1668}
1669
1670# output typedef in list
1671sub output_typedef_list(%) {
1672 my %args = %{$_[0]};
1673 print $args{'typedef'} . "\n";
1674}
1675
1676# output struct as list
1677sub output_struct_list(%) {
1678 my %args = %{$_[0]};
1679
1680 print $args{'struct'} . "\n";
1681}
1682
1683sub output_blockhead_list(%) {
1684 my %args = %{$_[0]};
1685 my ($parameter, $section);
1686
1687 foreach $section (@{$args{'sectionlist'}}) {
1688print "DOC: $section\n";
1689 }
1690}
1691
Linus Torvalds1da177e2005-04-16 22:20:361692##
Randy Dunlap27205742006-10-11 08:22:121693# generic output function for all types (function, struct/union, typedef, enum);
1694# calls the generated, variable output_ function name based on
1695# functype and output_mode
Linus Torvalds1da177e2005-04-16 22:20:361696sub output_declaration {
1697 no strict 'refs';
1698 my $name = shift;
1699 my $functype = shift;
1700 my $func = "output_${functype}_$output_mode";
Randy Dunlap3c3b8092006-02-01 11:06:581701 if (($function_only==0) ||
1702( $function_only == 1 && defined($function_table{$name})) ||
Linus Torvalds1da177e2005-04-16 22:20:361703( $function_only == 2 && !defined($function_table{$name})))
1704 {
Randy Dunlap3c308792007-05-08 07:24:391705&$func(@_);
Linus Torvalds1da177e2005-04-16 22:20:361706$section_counter++;
1707 }
1708}
1709
1710##
Randy Dunlap27205742006-10-11 08:22:121711# generic output function - calls the right one based on current output mode.
Johannes Bergb112e0f2007-10-24 22:08:481712sub output_blockhead {
Linus Torvalds1da177e2005-04-16 22:20:361713 no strict 'refs';
Randy Dunlapb9d973282009-06-09 15:50:381714 my $func = "output_blockhead_" . $output_mode;
Linus Torvalds1da177e2005-04-16 22:20:361715 &$func(@_);
1716 $section_counter++;
1717}
1718
1719##
Randy Dunlap3c3b8092006-02-01 11:06:581720# takes a declaration (struct, union, enum, typedef) and
Linus Torvalds1da177e2005-04-16 22:20:361721# invokes the right handler. NOT called for functions.
1722sub dump_declaration($$) {
1723 no strict 'refs';
1724 my ($prototype, $file) = @_;
Randy Dunlapb9d973282009-06-09 15:50:381725 my $func = "dump_" . $decl_type;
Linus Torvalds1da177e2005-04-16 22:20:361726 &$func(@_);
1727}
1728
1729sub dump_union($$) {
1730 dump_struct(@_);
1731}
1732
1733sub dump_struct($$) {
1734 my $x = shift;
1735 my $file = shift;
Randy Dunlapa1d94aa2008-12-19 16:49:301736 my $nested;
Linus Torvalds1da177e2005-04-16 22:20:361737
Randy Dunlap52dc5ae2009-04-30 22:08:531738 if ($x =~ /(struct|union)\s+(\w+)\s*{(.*)}/) {
1739#my $decl_type = $1;
Randy Dunlap3c308792007-05-08 07:24:391740$declaration_name = $2;
1741my $members = $3;
Linus Torvalds1da177e2005-04-16 22:20:361742
1743# ignore embedded structs or unions
Randy Dunlapa1d94aa2008-12-19 16:49:301744$members =~ s/({.*})//g;
1745$nested = $1;
Linus Torvalds1da177e2005-04-16 22:20:361746
Martin Waitzaeec46b2005-11-14 00:08:131747# ignore members marked private:
Randy Dunlap52dc5ae2009-04-30 22:08:531748$members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gos;
1749$members =~ s/\/\*\s*private:.*//gos;
Martin Waitzaeec46b2005-11-14 00:08:131750# strip comments:
1751$members =~ s/\/\*.*?\*\///gos;
Randy Dunlapa1d94aa2008-12-19 16:49:301752$nested =~ s/\/\*.*?\*\///gos;
Randy Dunlapd960eea2009-06-29 21:54:111753# strip kmemcheck_bitfield_{begin,end}.*;
1754$members =~ s/kmemcheck_bitfield_.*?;//gos;
Randy Dunlapef5da592010-03-23 20:35:141755# strip attributes
Johannes Berg7b990782014-12-10 23:41:281756$members =~ s/__aligned\s*\([^;]*\)//gos;
Martin Waitzaeec46b2005-11-14 00:08:131757
Linus Torvalds1da177e2005-04-16 22:20:361758create_parameterlist($members, ';', $file);
Randy Dunlapa1d94aa2008-12-19 16:49:301759check_sections($file, $declaration_name, "struct", $sectcheck, $struct_actual, $nested);
Linus Torvalds1da177e2005-04-16 22:20:361760
1761output_declaration($declaration_name,
1762 'struct',
1763 {'struct' => $declaration_name,
1764 'module' => $modulename,
1765 'parameterlist' => \@parameterlist,
1766 'parameterdescs' => \%parameterdescs,
1767 'parametertypes' => \%parametertypes,
1768 'sectionlist' => \@sectionlist,
1769 'sections' => \%sections,
1770 'purpose' => $declaration_purpose,
1771 'type' => $decl_type
1772 });
1773 }
1774 else {
Randy Dunlap3c308792007-05-08 07:24:391775print STDERR "Error(${file}:$.): Cannot parse struct or union!\n";
Linus Torvalds1da177e2005-04-16 22:20:361776++$errors;
1777 }
1778}
1779
1780sub dump_enum($$) {
1781 my $x = shift;
1782 my $file = shift;
1783
Martin Waitzaeec46b2005-11-14 00:08:131784 $x =~ s@/\*.*?\*/@@gos;# strip comments.
Randy Dunlapb6d676d2010-08-11 01:02:501785 $x =~ s/^#\s*define\s+.*$//; # strip #define macros inside enums
1786
Linus Torvalds1da177e2005-04-16 22:20:361787 if ($x =~ /enum\s+(\w+)\s*{(.*)}/) {
Randy Dunlap3c308792007-05-08 07:24:391788$declaration_name = $1;
1789my $members = $2;
Linus Torvalds1da177e2005-04-16 22:20:361790
1791foreach my $arg (split ',', $members) {
1792 $arg =~ s/^\s*(\w+).*/$1/;
1793 push @parameterlist, $arg;
1794 if (!$parameterdescs{$arg}) {
Randy Dunlap3c308792007-05-08 07:24:391795$parameterdescs{$arg} = $undescribed;
1796print STDERR "Warning(${file}:$.): Enum value '$arg' ".
Linus Torvalds1da177e2005-04-16 22:20:361797 "not described in enum '$declaration_name'\n";
1798 }
1799
1800}
Randy Dunlap3c3b8092006-02-01 11:06:581801
Linus Torvalds1da177e2005-04-16 22:20:361802output_declaration($declaration_name,
1803 'enum',
1804 {'enum' => $declaration_name,
1805 'module' => $modulename,
1806 'parameterlist' => \@parameterlist,
1807 'parameterdescs' => \%parameterdescs,
1808 'sectionlist' => \@sectionlist,
1809 'sections' => \%sections,
1810 'purpose' => $declaration_purpose
1811 });
1812 }
1813 else {
Randy Dunlap3c308792007-05-08 07:24:391814print STDERR "Error(${file}:$.): Cannot parse enum!\n";
Linus Torvalds1da177e2005-04-16 22:20:361815++$errors;
1816 }
1817}
1818
1819sub dump_typedef($$) {
1820 my $x = shift;
1821 my $file = shift;
1822
Martin Waitzaeec46b2005-11-14 00:08:131823 $x =~ s@/\*.*?\*/@@gos;# strip comments.
Linus Torvalds1da177e2005-04-16 22:20:361824 while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
Randy Dunlap3c308792007-05-08 07:24:391825$x =~ s/\(*.\)\s*;$/;/;
Linus Torvalds1da177e2005-04-16 22:20:361826$x =~ s/\[*.\]\s*;$/;/;
1827 }
1828
1829 if ($x =~ /typedef.*\s+(\w+)\s*;/) {
Randy Dunlap3c308792007-05-08 07:24:391830$declaration_name = $1;
Linus Torvalds1da177e2005-04-16 22:20:361831
1832output_declaration($declaration_name,
1833 'typedef',
1834 {'typedef' => $declaration_name,
1835 'module' => $modulename,
1836 'sectionlist' => \@sectionlist,
1837 'sections' => \%sections,
1838 'purpose' => $declaration_purpose
1839 });
1840 }
1841 else {
Randy Dunlap3c308792007-05-08 07:24:391842print STDERR "Error(${file}:$.): Cannot parse typedef!\n";
Linus Torvalds1da177e2005-04-16 22:20:361843++$errors;
1844 }
1845}
1846
Randy Dunlapa1d94aa2008-12-19 16:49:301847sub save_struct_actual($) {
1848 my $actual = shift;
1849
1850 # strip all spaces from the actual param so that it looks like one string item
1851 $actual =~ s/\s*//g;
1852 $struct_actual = $struct_actual . $actual . " ";
1853}
1854
Linus Torvalds1da177e2005-04-16 22:20:361855sub create_parameterlist($$$) {
1856 my $args = shift;
1857 my $splitter = shift;
1858 my $file = shift;
1859 my $type;
1860 my $param;
1861
Martin Waitza6d3fe72006-01-10 04:53:551862 # temporarily replace commas inside function pointer definition
Linus Torvalds1da177e2005-04-16 22:20:361863 while ($args =~ /(\([^\),]+),/) {
Randy Dunlap3c308792007-05-08 07:24:391864$args =~ s/(\([^\),]+),/$1#/g;
Linus Torvalds1da177e2005-04-16 22:20:361865 }
Randy Dunlap3c3b8092006-02-01 11:06:581866
Linus Torvalds1da177e2005-04-16 22:20:361867 foreach my $arg (split($splitter, $args)) {
1868# strip comments
1869$arg =~ s/\/\*.*\*\///;
Randy Dunlap3c308792007-05-08 07:24:391870# strip leading/trailing spaces
1871$arg =~ s/^\s*//;
Linus Torvalds1da177e2005-04-16 22:20:361872$arg =~ s/\s*$//;
1873$arg =~ s/\s+/ /;
1874
1875if ($arg =~ /^#/) {
1876 # Treat preprocessor directive as a typeless variable just to fill
1877 # corresponding data structures "correctly". Catch it later in
1878 # output_* subs.
1879 push_parameter($arg, "", $file);
Richard Kennedy00d62962008-02-23 23:24:011880} elsif ($arg =~ m/\(.+\)\s*\(/) {
Linus Torvalds1da177e2005-04-16 22:20:361881 # pointer-to-function
1882 $arg =~ tr/#/,/;
Richard Kennedy00d62962008-02-23 23:24:011883 $arg =~ m/[^\(]+\(\*?\s*(\w*)\s*\)/;
Linus Torvalds1da177e2005-04-16 22:20:361884 $param = $1;
1885 $type = $arg;
Richard Kennedy00d62962008-02-23 23:24:011886 $type =~ s/([^\(]+\(\*?)\s*$param/$1/;
Randy Dunlapa1d94aa2008-12-19 16:49:301887 save_struct_actual($param);
Linus Torvalds1da177e2005-04-16 22:20:361888 push_parameter($param, $type, $file);
Martin Waitzaeec46b2005-11-14 00:08:131889} elsif ($arg) {
Linus Torvalds1da177e2005-04-16 22:20:361890 $arg =~ s/\s*:\s*/:/g;
1891 $arg =~ s/\s*\[/\[/g;
1892
1893 my @args = split('\s*,\s*', $arg);
1894 if ($args[0] =~ m/\*/) {
1895$args[0] =~ s/(\*+)\s*/ $1/;
1896 }
Borislav Petkov884f2812007-05-08 07:29:051897
1898 my @first_arg;
1899 if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) {
1900 shift @args;
1901 push(@first_arg, split('\s+', $1));
1902 push(@first_arg, $2);
1903 } else {
1904 @first_arg = split('\s+', shift @args);
1905 }
1906
Linus Torvalds1da177e2005-04-16 22:20:361907 unshift(@args, pop @first_arg);
1908 $type = join " ", @first_arg;
1909
1910 foreach $param (@args) {
1911if ($param =~ m/^(\*+)\s*(.*)/) {
Randy Dunlapa1d94aa2008-12-19 16:49:301912 save_struct_actual($2);
Linus Torvalds1da177e2005-04-16 22:20:361913 push_parameter($2, "$type $1", $file);
1914}
1915elsif ($param =~ m/(.*?):(\d+)/) {
Randy Dunlap7b978872008-05-16 22:45:521916 if ($type ne "") { # skip unnamed bit-fields
Randy Dunlapa1d94aa2008-12-19 16:49:301917save_struct_actual($1);
Randy Dunlap7b978872008-05-16 22:45:521918push_parameter($1, "$type:$2", $file)
1919 }
Linus Torvalds1da177e2005-04-16 22:20:361920}
1921else {
Randy Dunlapa1d94aa2008-12-19 16:49:301922 save_struct_actual($param);
Linus Torvalds1da177e2005-04-16 22:20:361923 push_parameter($param, $type, $file);
1924}
1925 }
1926}
1927 }
1928}
1929
1930sub push_parameter($$$) {
1931my $param = shift;
1932my $type = shift;
1933my $file = shift;
1934
Randy Dunlap5f8c7c92007-07-19 08:48:241935if (($anon_struct_union == 1) && ($type eq "") &&
1936 ($param eq "}")) {
1937return;# ignore the ending }; from anon. struct/union
1938}
1939
1940$anon_struct_union = 0;
Linus Torvalds1da177e2005-04-16 22:20:361941my $param_name = $param;
1942$param_name =~ s/\[.*//;
1943
Martin Waitza6d3fe72006-01-10 04:53:551944if ($type eq "" && $param =~ /\.\.\.$/)
Linus Torvalds1da177e2005-04-16 22:20:361945{
Randy Dunlapced69092008-12-01 21:14:031946 if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") {
1947$parameterdescs{$param} = "variable arguments";
1948 }
Linus Torvalds1da177e2005-04-16 22:20:361949}
1950elsif ($type eq "" && ($param eq "" or $param eq "void"))
1951{
Linus Torvalds1da177e2005-04-16 22:20:361952 $param="void";
1953 $parameterdescs{void} = "no arguments";
1954}
Randy Dunlap134fe012006-12-22 09:10:501955elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
1956# handle unnamed (anonymous) union or struct:
1957{
1958$type = $param;
Randy Dunlap5f8c7c92007-07-19 08:48:241959$param = "{unnamed_" . $param . "}";
Randy Dunlap134fe012006-12-22 09:10:501960$parameterdescs{$param} = "anonymous\n";
Randy Dunlap5f8c7c92007-07-19 08:48:241961$anon_struct_union = 1;
Randy Dunlap134fe012006-12-22 09:10:501962}
1963
Martin Waitza6d3fe72006-01-10 04:53:551964# warn if parameter has no description
Randy Dunlap134fe012006-12-22 09:10:501965# (but ignore ones starting with # as these are not parameters
1966# but inline preprocessor statements);
1967# also ignore unnamed structs/unions;
Randy Dunlap5f8c7c92007-07-19 08:48:241968if (!$anon_struct_union) {
Martin Waitza6d3fe72006-01-10 04:53:551969if (!defined $parameterdescs{$param_name} && $param_name !~ /^#/) {
1970
Linus Torvalds1da177e2005-04-16 22:20:361971 $parameterdescs{$param_name} = $undescribed;
1972
1973 if (($type eq 'function') || ($type eq 'enum')) {
Randy Dunlap3c308792007-05-08 07:24:391974print STDERR "Warning(${file}:$.): Function parameter ".
Linus Torvalds1da177e2005-04-16 22:20:361975 "or member '$param' not " .
1976 "described in '$declaration_name'\n";
1977 }
Randy Dunlapb9d973282009-06-09 15:50:381978 print STDERR "Warning(${file}:$.):" .
Randy Dunlap3c308792007-05-08 07:24:391979 " No description found for parameter '$param'\n";
Linus Torvalds1da177e2005-04-16 22:20:361980 ++$warnings;
Randy Dunlap3c308792007-05-08 07:24:391981}
1982}
Linus Torvalds1da177e2005-04-16 22:20:361983
Randy Dunlap2b35f4d2010-11-18 20:27:311984$param = xml_escape($param);
1985
Lucas De Marchi25985ed2011-03-31 01:57:331986# strip spaces from $param so that it is one continuous string
Randy Dunlape34e7db2009-06-18 00:37:471987# on @parameterlist;
1988# this fixes a problem where check_sections() cannot find
1989# a parameter like "addr[6 + 2]" because it actually appears
1990# as "addr[6", "+", "2]" on the parameter list;
1991# but it's better to maintain the param string unchanged for output,
1992# so just weaken the string compare in check_sections() to ignore
1993# "[blah" in a parameter string;
1994###$param =~ s/\s*//g;
Linus Torvalds1da177e2005-04-16 22:20:361995push @parameterlist, $param;
1996$parametertypes{$param} = $type;
1997}
1998
Randy Dunlapa1d94aa2008-12-19 16:49:301999sub check_sections($$$$$$) {
2000my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck, $nested) = @_;
2001my @sects = split ' ', $sectcheck;
2002my @prms = split ' ', $prmscheck;
2003my $err;
2004my ($px, $sx);
2005my $prm_clean;# strip trailing "[array size]" and/or beginning "*"
2006
2007foreach $sx (0 .. $#sects) {
2008$err = 1;
2009foreach $px (0 .. $#prms) {
2010$prm_clean = $prms[$px];
2011$prm_clean =~ s/\[.*\]//;
Johannes Berg1f3a6682010-09-11 22:55:122012$prm_clean =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
Randy Dunlape34e7db2009-06-18 00:37:472013# ignore array size in a parameter string;
2014# however, the original param string may contain
2015# spaces, e.g.: addr[6 + 2]
2016# and this appears in @prms as "addr[6" since the
2017# parameter list is split at spaces;
2018# hence just ignore "[..." for the sections check;
2019$prm_clean =~ s/\[.*//;
2020
Randy Dunlapa1d94aa2008-12-19 16:49:302021##$prm_clean =~ s/^\**//;
2022if ($prm_clean eq $sects[$sx]) {
2023$err = 0;
2024last;
2025}
2026}
2027if ($err) {
2028if ($decl_type eq "function") {
2029print STDERR "Warning(${file}:$.): " .
2030"Excess function parameter " .
2031"'$sects[$sx]' " .
2032"description in '$decl_name'\n";
2033++$warnings;
2034} else {
2035if ($nested !~ m/\Q$sects[$sx]\E/) {
2036 print STDERR "Warning(${file}:$.): " .
2037"Excess struct/union/enum/typedef member " .
2038"'$sects[$sx]' " .
2039"description in '$decl_name'\n";
2040 ++$warnings;
2041}
2042}
2043}
2044}
2045}
2046
Linus Torvalds1da177e2005-04-16 22:20:362047##
Yacine Belkadi4092bac2012-11-26 21:22:272048# Checks the section describing the return value of a function.
2049sub check_return_section {
2050 my $file = shift;
2051 my $declaration_name = shift;
2052 my $return_type = shift;
2053
2054 # Ignore an empty return type (It's a macro)
2055 # Ignore functions with a "void" return type. (But don't ignore "void *")
2056 if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) {
2057 return;
2058 }
2059
2060 if (!defined($sections{$section_return}) ||
2061 $sections{$section_return} eq "") {
2062 print STDERR "Warning(${file}:$.): " .
2063 "No description found for return value of " .
2064 "'$declaration_name'\n";
2065 ++$warnings;
2066 }
2067}
2068
2069##
Linus Torvalds1da177e2005-04-16 22:20:362070# takes a function prototype and the name of the current file being
2071# processed and spits out all the details stored in the global
2072# arrays/hashes.
2073sub dump_function($$) {
2074 my $prototype = shift;
2075 my $file = shift;
Horia Geantacbb4d3e2014-07-12 16:55:032076 my $noret = 0;
Linus Torvalds1da177e2005-04-16 22:20:362077
2078 $prototype =~ s/^static +//;
2079 $prototype =~ s/^extern +//;
Pavel Pisa4dc3b162005-05-01 15:59:252080 $prototype =~ s/^asmlinkage +//;
Linus Torvalds1da177e2005-04-16 22:20:362081 $prototype =~ s/^inline +//;
2082 $prototype =~ s/^__inline__ +//;
Randy Dunlap32e79402006-10-11 08:22:102083 $prototype =~ s/^__inline +//;
2084 $prototype =~ s/^__always_inline +//;
2085 $prototype =~ s/^noinline +//;
Randy Dunlap74fc5c62008-06-19 23:03:292086 $prototype =~ s/__init +//;
Randy Dunlap20072202010-03-23 20:35:242087 $prototype =~ s/__init_or_module +//;
Randy Dunlap270a0092014-08-25 01:17:172088 $prototype =~ s/__meminit +//;
Randy Dunlap70c95b02012-01-21 18:31:542089 $prototype =~ s/__must_check +//;
Randy Dunlap0df7c0e2012-08-16 23:23:202090 $prototype =~ s/__weak +//;
Horia Geantacbb4d3e2014-07-12 16:55:032091 my $define = $prototype =~ s/^#\s*define\s+//; #ak added
Randy Dunlap328d2442007-03-01 04:12:102092 $prototype =~ s/__attribute__\s*\(\([a-z,]*\)\)//;
Linus Torvalds1da177e2005-04-16 22:20:362093
2094 # Yes, this truly is vile. We are looking for:
2095 # 1. Return type (may be nothing if we're looking at a macro)
2096 # 2. Function name
2097 # 3. Function parameters.
2098 #
2099 # All the while we have to watch out for function pointer parameters
2100 # (which IIRC is what the two sections are for), C types (these
2101 # regexps don't even start to express all the possibilities), and
2102 # so on.
2103 #
2104 # If you mess with these regexps, it's a good idea to check that
2105 # the following functions' documentation still comes out right:
2106 # - parport_register_device (function pointer parameters)
2107 # - atomic_set (macro)
Martin Waitz9598f912006-02-01 11:06:552108 # - pci_match_device, __copy_to_user (long return type)
Linus Torvalds1da177e2005-04-16 22:20:362109
Horia Geantacbb4d3e2014-07-12 16:55:032110 if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) {
2111 # This is an object-like macro, it has no return type and no parameter
2112 # list.
2113 # Function-like macros are not allowed to have spaces between
2114 # declaration_name and opening parenthesis (notice the \s+).
2115 $return_type = $1;
2116 $declaration_name = $2;
2117 $noret = 1;
2118 } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 22:20:362119$prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2120$prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2121$prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Randy Dunlap94b3e032008-02-07 08:13:262122$prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 22:20:362123$prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2124$prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2125$prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2126$prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2127$prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2128$prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2129$prototype =~ m/^(\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2130$prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Martin Waitz9598f912006-02-01 11:06:552131$prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2132$prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Randy Dunlap412ecd772007-02-11 06:47:332133$prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2134$prototype =~ m/^(\w+\s+\w+\s*\*\s*\w+\s*\*\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) {
Linus Torvalds1da177e2005-04-16 22:20:362135$return_type = $1;
2136$declaration_name = $2;
2137my $args = $3;
2138
2139create_parameterlist($args, ',', $file);
2140 } else {
Randy Dunlap9645ae82013-10-17 23:32:012141print STDERR "Warning(${file}:$.): cannot understand function prototype: '$prototype'\n";
Linus Torvalds1da177e2005-04-16 22:20:362142return;
2143 }
2144
Randy Dunlapa1d94aa2008-12-19 16:49:302145my $prms = join " ", @parameterlist;
2146check_sections($file, $declaration_name, "function", $sectcheck, $prms, "");
2147
Yacine Belkadi4092bac2012-11-26 21:22:272148 # This check emits a lot of warnings at the moment, because many
2149 # functions don't have a 'Return' doc section. So until the number
2150 # of warnings goes sufficiently down, the check is only performed in
2151 # verbose mode.
2152 # TODO: always perform the check.
Horia Geantacbb4d3e2014-07-12 16:55:032153 if ($verbose && !$noret) {
Yacine Belkadi4092bac2012-11-26 21:22:272154 check_return_section($file, $declaration_name, $return_type);
2155 }
2156
Randy Dunlap3c3b8092006-02-01 11:06:582157 output_declaration($declaration_name,
Linus Torvalds1da177e2005-04-16 22:20:362158 'function',
2159 {'function' => $declaration_name,
2160'module' => $modulename,
2161'functiontype' => $return_type,
2162'parameterlist' => \@parameterlist,
2163'parameterdescs' => \%parameterdescs,
2164'parametertypes' => \%parametertypes,
2165'sectionlist' => \@sectionlist,
2166'sections' => \%sections,
2167'purpose' => $declaration_purpose
2168 });
2169}
2170
Linus Torvalds1da177e2005-04-16 22:20:362171sub reset_state {
2172 $function = "";
2173 %constants = ();
2174 %parameterdescs = ();
2175 %parametertypes = ();
2176 @parameterlist = ();
2177 %sections = ();
2178 @sectionlist = ();
Randy Dunlapa1d94aa2008-12-19 16:49:302179 $sectcheck = "";
2180 $struct_actual = "";
Linus Torvalds1da177e2005-04-16 22:20:362181 $prototype = "";
Randy Dunlap3c3b8092006-02-01 11:06:582182
Linus Torvalds1da177e2005-04-16 22:20:362183 $state = 0;
2184}
2185
Jason Baron56afb0f2009-04-30 17:29:362186sub tracepoint_munge($) {
2187my $file = shift;
2188my $tracepointname = 0;
2189my $tracepointargs = 0;
2190
Jason Baron3a9089f2009-12-01 17:18:492191if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
Jason Baron56afb0f2009-04-30 17:29:362192$tracepointname = $1;
2193}
Jason Baron3a9089f2009-12-01 17:18:492194if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
2195$tracepointname = $1;
2196}
2197if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
2198$tracepointname = $2;
2199}
2200$tracepointname =~ s/^\s+//; #strip leading whitespace
2201if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
Jason Baron56afb0f2009-04-30 17:29:362202$tracepointargs = $1;
2203}
2204if (($tracepointname eq 0) || ($tracepointargs eq 0)) {
2205print STDERR "Warning(${file}:$.): Unrecognized tracepoint format: \n".
2206 "$prototype\n";
2207} else {
2208$prototype = "static inline void trace_$tracepointname($tracepointargs)";
2209}
2210}
2211
Randy Dunlapb4870bc2009-02-11 21:04:332212sub syscall_munge() {
2213my $void = 0;
2214
2215$prototype =~ s@[\r\n\t]+@ @gos; # strip newlines/CR's/tabs
2216## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
2217if ($prototype =~ m/SYSCALL_DEFINE0/) {
2218$void = 1;
2219## $prototype = "long sys_$1(void)";
2220}
2221
2222$prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
2223if ($prototype =~ m/long (sys_.*?),/) {
2224$prototype =~ s/,/\(/;
2225} elsif ($void) {
2226$prototype =~ s/\)/\(void\)/;
2227}
2228
2229# now delete all of the odd-number commas in $prototype
2230# so that arg types & arg names don't have a comma between them
2231my $count = 0;
2232my $len = length($prototype);
2233if ($void) {
2234$len = 0;# skip the for-loop
2235}
2236for (my $ix = 0; $ix < $len; $ix++) {
2237if (substr($prototype, $ix, 1) eq ',') {
2238$count++;
2239if ($count % 2 == 1) {
2240substr($prototype, $ix, 1) = ' ';
2241}
2242}
2243}
2244}
2245
Randy Dunlap3c3b8092006-02-01 11:06:582246sub process_state3_function($$) {
Linus Torvalds1da177e2005-04-16 22:20:362247 my $x = shift;
2248 my $file = shift;
2249
Randy Dunlap51f5a0c2007-07-19 08:48:242250 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
2251
Randy Dunlap890c78c2008-10-26 00:06:432252 if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) {
Linus Torvalds1da177e2005-04-16 22:20:362253# do nothing
2254 }
2255 elsif ($x =~ /([^\{]*)/) {
Randy Dunlap3c308792007-05-08 07:24:392256$prototype .= $1;
Linus Torvalds1da177e2005-04-16 22:20:362257 }
Randy Dunlapb4870bc2009-02-11 21:04:332258
Randy Dunlap890c78c2008-10-26 00:06:432259 if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) {
Randy Dunlap3c308792007-05-08 07:24:392260$prototype =~ s@/\*.*?\*/@@gos;# strip comments.
Linus Torvalds1da177e2005-04-16 22:20:362261$prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
2262$prototype =~ s@^\s+@@gos; # strip leading spaces
Randy Dunlapb4870bc2009-02-11 21:04:332263if ($prototype =~ /SYSCALL_DEFINE/) {
2264syscall_munge();
2265}
Jason Baron3a9089f2009-12-01 17:18:492266if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
2267 $prototype =~ /DEFINE_SINGLE_EVENT/)
2268{
Jason Baron56afb0f2009-04-30 17:29:362269tracepoint_munge($file);
2270}
Randy Dunlapb4870bc2009-02-11 21:04:332271dump_function($prototype, $file);
Linus Torvalds1da177e2005-04-16 22:20:362272reset_state();
2273 }
2274}
2275
Randy Dunlap3c3b8092006-02-01 11:06:582276sub process_state3_type($$) {
Linus Torvalds1da177e2005-04-16 22:20:362277 my $x = shift;
2278 my $file = shift;
2279
Linus Torvalds1da177e2005-04-16 22:20:362280 $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
2281 $x =~ s@^\s+@@gos; # strip leading spaces
2282 $x =~ s@\s+$@@gos; # strip trailing spaces
Randy Dunlap51f5a0c2007-07-19 08:48:242283 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
2284
Linus Torvalds1da177e2005-04-16 22:20:362285 if ($x =~ /^#/) {
2286# To distinguish preprocessor directive from regular declaration later.
2287$x .= ";";
2288 }
2289
2290 while (1) {
Randy Dunlap3c308792007-05-08 07:24:392291if ( $x =~ /([^{};]*)([{};])(.*)/ ) {
Linus Torvalds1da177e2005-04-16 22:20:362292 $prototype .= $1 . $2;
2293 ($2 eq '{') && $brcount++;
2294 ($2 eq '}') && $brcount--;
2295 if (($2 eq ';') && ($brcount == 0)) {
Randy Dunlapb9d973282009-06-09 15:50:382296dump_declaration($prototype, $file);
Linus Torvalds1da177e2005-04-16 22:20:362297reset_state();
Randy Dunlap3c308792007-05-08 07:24:392298last;
Linus Torvalds1da177e2005-04-16 22:20:362299 }
2300 $x = $3;
Randy Dunlap3c308792007-05-08 07:24:392301} else {
Linus Torvalds1da177e2005-04-16 22:20:362302 $prototype .= $x;
2303 last;
2304}
2305 }
2306}
2307
Randy Dunlap6b5b55f2007-10-17 06:31:202308# xml_escape: replace <, >, and & in the text stream;
2309#
2310# however, formatting controls that are generated internally/locally in the
2311# kernel-doc script are not escaped here; instead, they begin life like
2312# $blankline_html (4 of '\' followed by a mnemonic + ':'), then these strings
2313# are converted to their mnemonic-expected output, without the 4 * '\' & ':',
2314# just before actual output; (this is done by local_unescape())
Linus Torvalds1da177e2005-04-16 22:20:362315sub xml_escape($) {
2316my $text = shift;
Randy Dunlapecfb2512006-06-25 12:49:132317if (($output_mode eq "text") || ($output_mode eq "man")) {
2318return $text;
2319}
Linus Torvalds1da177e2005-04-16 22:20:362320$text =~ s/\&/\\\\\\amp;/g;
2321$text =~ s/\</\\\\\\lt;/g;
2322$text =~ s/\>/\\\\\\gt;/g;
2323return $text;
2324}
2325
Randy Dunlap6b5b55f2007-10-17 06:31:202326# convert local escape strings to html
2327# local escape strings look like: '\\\\menmonic:' (that's 4 backslashes)
2328sub local_unescape($) {
2329my $text = shift;
2330if (($output_mode eq "text") || ($output_mode eq "man")) {
2331return $text;
2332}
2333$text =~ s/\\\\\\\\lt:/</g;
2334$text =~ s/\\\\\\\\gt:/>/g;
2335return $text;
2336}
2337
Linus Torvalds1da177e2005-04-16 22:20:362338sub process_file($) {
Randy Dunlap2283a112005-07-07 22:39:262339 my $file;
Linus Torvalds1da177e2005-04-16 22:20:362340 my $identifier;
2341 my $func;
Randy Dunlapa21217da2007-02-10 09:46:042342 my $descr;
Johannes Weiner64231332009-09-18 02:26:532343 my $in_purpose = 0;
Linus Torvalds1da177e2005-04-16 22:20:362344 my $initial_section_counter = $section_counter;
2345
Randy Dunlap2283a112005-07-07 22:39:262346 if (defined($ENV{'SRCTREE'})) {
2347$file = "$ENV{'SRCTREE'}" . "/" . "@_";
2348 }
2349 else {
2350$file = "@_";
2351 }
Linus Torvalds1da177e2005-04-16 22:20:362352 if (defined($source_map{$file})) {
2353$file = $source_map{$file};
2354 }
2355
2356 if (!open(IN,"<$file")) {
2357print STDERR "Error: Cannot open file $file\n";
2358++$errors;
2359return;
2360 }
2361
Ilya Dryomova9e73142010-02-26 21:05:472362 $. = 1;
2363
Linus Torvalds1da177e2005-04-16 22:20:362364 $section_counter = 0;
2365 while (<IN>) {
Daniel Santos65478422012-10-05 00:15:052366while (s/\\\s*$//) {
2367 $_ .= <IN>;
2368}
Linus Torvalds1da177e2005-04-16 22:20:362369if ($state == 0) {
2370 if (/$doc_start/o) {
2371$state = 1;# next line is always the function name
Randy Dunlap850622d2006-06-25 12:48:552372$in_doc_sect = 0;
Linus Torvalds1da177e2005-04-16 22:20:362373 }
2374} elsif ($state == 1) {# this line is the function name (always)
2375 if (/$doc_block/o) {
2376$state = 4;
2377$contents = "";
2378if ( $1 eq "" ) {
2379$section = $section_intro;
2380} else {
2381$section = $1;
2382}
Randy Dunlap3c308792007-05-08 07:24:392383 }
Linus Torvalds1da177e2005-04-16 22:20:362384 elsif (/$doc_decl/o) {
2385$identifier = $1;
2386if (/\s*([\w\s]+?)\s*-/) {
2387 $identifier = $1;
2388}
2389
2390$state = 2;
2391if (/-(.*)/) {
Randy Dunlap51f5a0c2007-07-19 08:48:242392 # strip leading/trailing/multiple spaces
Randy Dunlapa21217da2007-02-10 09:46:042393 $descr= $1;
2394 $descr =~ s/^\s*//;
2395 $descr =~ s/\s*$//;
Daniel Santos12ae6772012-10-05 00:15:102396 $descr =~ s/\s+/ /g;
Randy Dunlapa21217da2007-02-10 09:46:042397 $declaration_purpose = xml_escape($descr);
Johannes Weiner64231332009-09-18 02:26:532398 $in_purpose = 1;
Linus Torvalds1da177e2005-04-16 22:20:362399} else {
2400 $declaration_purpose = "";
2401}
Randy Dunlap77cc23b2008-02-07 08:13:422402
2403if (($declaration_purpose eq "") && $verbose) {
2404print STDERR "Warning(${file}:$.): missing initial short description on line:\n";
2405print STDERR $_;
2406++$warnings;
2407}
2408
Linus Torvalds1da177e2005-04-16 22:20:362409if ($identifier =~ m/^struct/) {
2410 $decl_type = 'struct';
2411} elsif ($identifier =~ m/^union/) {
2412 $decl_type = 'union';
2413} elsif ($identifier =~ m/^enum/) {
2414 $decl_type = 'enum';
2415} elsif ($identifier =~ m/^typedef/) {
2416 $decl_type = 'typedef';
2417} else {
2418 $decl_type = 'function';
2419}
2420
2421if ($verbose) {
2422 print STDERR "Info(${file}:$.): Scanning doc for $identifier\n";
2423}
2424 } else {
2425print STDERR "Warning(${file}:$.): Cannot understand $_ on line $.",
2426" - I thought it was a doc line\n";
2427++$warnings;
2428$state = 0;
2429 }
2430} elsif ($state == 2) {# look for head: lines, and include content
2431 if (/$doc_sect/o) {
2432$newsection = $1;
2433$newcontents = $2;
2434
Randy Dunlap792aa2f2008-02-07 08:13:412435if (($contents ne "") && ($contents ne "\n")) {
Randy Dunlap850622d2006-06-25 12:48:552436 if (!$in_doc_sect && $verbose) {
2437print STDERR "Warning(${file}:$.): contents before sections\n";
2438++$warnings;
2439 }
Randy Dunlap94dc7ad2008-04-28 09:16:342440 dump_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 22:20:362441 $section = $section_default;
2442}
2443
Randy Dunlap850622d2006-06-25 12:48:552444$in_doc_sect = 1;
Johannes Weiner64231332009-09-18 02:26:532445$in_purpose = 0;
Linus Torvalds1da177e2005-04-16 22:20:362446$contents = $newcontents;
2447if ($contents ne "") {
Randy Dunlap27205742006-10-11 08:22:122448 while ((substr($contents, 0, 1) eq " ") ||
2449substr($contents, 0, 1) eq "\t") {
2450 $contents = substr($contents, 1);
Randy Dunlap05189492006-06-25 12:47:472451 }
Linus Torvalds1da177e2005-04-16 22:20:362452 $contents .= "\n";
2453}
2454$section = $newsection;
2455 } elsif (/$doc_end/) {
2456
Randy Dunlap4c98eca2010-03-10 23:22:022457if (($contents ne "") && ($contents ne "\n")) {
Randy Dunlap94dc7ad2008-04-28 09:16:342458 dump_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 22:20:362459 $section = $section_default;
2460 $contents = "";
2461}
Randy Dunlap46b958e2008-04-28 09:16:352462# look for doc_com + <text> + doc_end:
2463if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') {
2464 print STDERR "Warning(${file}:$.): suspicious ending line: $_";
2465 ++$warnings;
2466}
Linus Torvalds1da177e2005-04-16 22:20:362467
2468$prototype = "";
2469$state = 3;
2470$brcount = 0;
Randy Dunlap232acbc2006-06-25 12:47:482471# print STDERR "end of doc comment, looking for prototype\n";
Linus Torvalds1da177e2005-04-16 22:20:362472 } elsif (/$doc_content/) {
2473# miguel-style comment kludge, look for blank lines after
2474# @parameter line to signify start of description
Johannes Weiner64231332009-09-18 02:26:532475if ($1 eq "") {
2476 if ($section =~ m/^@/ || $section eq $section_context) {
2477dump_section($file, $section, xml_escape($contents));
2478$section = $section_default;
2479$contents = "";
2480 } else {
2481$contents .= "\n";
2482 }
2483 $in_purpose = 0;
2484} elsif ($in_purpose == 1) {
2485 # Continued declaration purpose
2486 chomp($declaration_purpose);
2487 $declaration_purpose .= " " . xml_escape($1);
Daniel Santos12ae6772012-10-05 00:15:102488 $declaration_purpose =~ s/\s+/ /g;
Linus Torvalds1da177e2005-04-16 22:20:362489} else {
Randy Dunlapb9d973282009-06-09 15:50:382490 $contents .= $1 . "\n";
Linus Torvalds1da177e2005-04-16 22:20:362491}
2492 } else {
2493# i dont know - bad line? ignore.
Randy Dunlap3c3b8092006-02-01 11:06:582494print STDERR "Warning(${file}:$.): bad line: $_";
Linus Torvalds1da177e2005-04-16 22:20:362495++$warnings;
2496 }
Randy Dunlap232acbc2006-06-25 12:47:482497} elsif ($state == 3) {# scanning for function '{' (end of prototype)
Linus Torvalds1da177e2005-04-16 22:20:362498 if ($decl_type eq 'function') {
Randy Dunlap3c308792007-05-08 07:24:392499process_state3_function($_, $file);
Linus Torvalds1da177e2005-04-16 22:20:362500 } else {
Randy Dunlap3c308792007-05-08 07:24:392501process_state3_type($_, $file);
Linus Torvalds1da177e2005-04-16 22:20:362502 }
2503} elsif ($state == 4) {
2504# Documentation block
Randy Dunlap3c308792007-05-08 07:24:392505if (/$doc_block/) {
Randy Dunlap94dc7ad2008-04-28 09:16:342506dump_doc_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 22:20:362507$contents = "";
2508$function = "";
2509%constants = ();
2510%parameterdescs = ();
2511%parametertypes = ();
2512@parameterlist = ();
2513%sections = ();
2514@sectionlist = ();
2515$prototype = "";
2516if ( $1 eq "" ) {
2517$section = $section_intro;
2518} else {
2519$section = $1;
2520}
Randy Dunlap3c308792007-05-08 07:24:392521}
Linus Torvalds1da177e2005-04-16 22:20:362522elsif (/$doc_end/)
2523{
Randy Dunlap94dc7ad2008-04-28 09:16:342524dump_doc_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 22:20:362525$contents = "";
2526$function = "";
2527%constants = ();
2528%parameterdescs = ();
2529%parametertypes = ();
2530@parameterlist = ();
2531%sections = ();
2532@sectionlist = ();
2533$prototype = "";
2534$state = 0;
2535}
2536elsif (/$doc_content/)
2537{
2538if ( $1 eq "" )
2539{
2540$contents .= $blankline;
2541}
2542else
2543{
2544$contents .= $1 . "\n";
Randy Dunlap3c3b8092006-02-01 11:06:582545}
Randy Dunlap3c308792007-05-08 07:24:392546}
2547}
Linus Torvalds1da177e2005-04-16 22:20:362548 }
2549 if ($initial_section_counter == $section_counter) {
2550print STDERR "Warning(${file}): no structured comments found\n";
Johannes Berge946c43a2013-11-12 23:11:122551if (($function_only == 1) && ($show_not_found == 1)) {
2552 print STDERR " Was looking for '$_'.\n" for keys %function_table;
2553}
Linus Torvalds1da177e2005-04-16 22:20:362554if ($output_mode eq "xml") {
2555 # The template wants at least one RefEntry here; make one.
2556 print "<refentry>\n";
2557 print " <refnamediv>\n";
2558 print " <refname>\n";
2559 print " ${file}\n";
2560 print " </refname>\n";
2561 print " <refpurpose>\n";
2562 print " Document generation inconsistency\n";
2563 print " </refpurpose>\n";
2564 print " </refnamediv>\n";
2565 print " <refsect1>\n";
2566 print " <title>\n";
2567 print " Oops\n";
2568 print " </title>\n";
2569 print " <warning>\n";
2570 print " <para>\n";
2571 print " The template for this document tried to insert\n";
2572 print " the structured comment from the file\n";
2573 print " <filename>${file}</filename> at this point,\n";
2574 print " but none was found.\n";
2575 print " This dummy section is inserted to allow\n";
2576 print " generation to continue.\n";
2577 print " </para>\n";
2578 print " </warning>\n";
2579 print " </refsect1>\n";
2580 print "</refentry>\n";
2581}
2582 }
2583}
Randy Dunlap8484baa2011-01-06 00:28:432584
2585
2586$kernelversion = get_kernel_version();
2587
2588# generate a sequence of code that will splice in highlighting information
2589# using the s// operator.
2590foreach my $pattern (keys %highlights) {
2591# print STDERR "scanning pattern:$pattern, highlight:($highlights{$pattern})\n";
2592 $dohighlight .= "\$contents =~ s:$pattern:$highlights{$pattern}:gs;\n";
2593}
2594
2595# Read the file that maps relative names to absolute names for
2596# separate source and object directories and for shadow trees.
2597if (open(SOURCE_MAP, "<.tmp_filelist.txt")) {
2598my ($relname, $absname);
2599while(<SOURCE_MAP>) {
2600chop();
2601($relname, $absname) = (split())[0..1];
2602$relname =~ s:^/+::;
2603$source_map{$relname} = $absname;
2604}
2605close(SOURCE_MAP);
2606}
2607
2608foreach (@ARGV) {
2609 chomp;
2610 process_file($_);
2611}
2612if ($verbose && $errors) {
2613 print STDERR "$errors errors\n";
2614}
2615if ($verbose && $warnings) {
2616 print STDERR "$warnings warnings\n";
2617}
2618
2619exit($errors);