blob: dbd3e1ebbdada403bb5074669494428791ea2ba3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#!/usr/bin/perl -w
2
3use strict;
4
5## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ##
6## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ##
7## Copyright (C) 2001 Simon Huggins ##
Randy Dunlap70c95b02012-01-21 10:31:54 -08008## Copyright (C) 2005-2012 Randy Dunlap ##
Dan Luedtke1b40c192012-08-12 10:46:15 +02009## Copyright (C) 2012 Dan Luedtke ##
Linus Torvalds1da177e2005-04-16 15:20:36 -070010## ##
11## #define enhancements by Armin Kuster <akuster@mvista.com> ##
12## Copyright (c) 2000 MontaVista Software, Inc. ##
13## ##
14## This software falls under the GNU General Public License. ##
15## Please read the COPYING file for more information ##
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017# 18/01/2001 - Cleanups
18# Functions prototyped as foo(void) same as foo()
19# Stop eval'ing where we don't need to.
20# -- huggie@earth.li
21
22# 27/06/2001 - Allowed whitespace after initial "/**" and
23# allowed comments before function declarations.
24# -- Christian Kreibich <ck@whoop.org>
25
26# Still to do:
27# - add perldoc documentation
28# - Look more closely at some of the scarier bits :)
29
30# 26/05/2001 - Support for separate source and object trees.
31# Return error code.
32# Keith Owens <kaos@ocs.com.au>
33
34# 23/09/2001 - Added support for typedefs, structs, enums and unions
35# Support for Context section; can be terminated using empty line
36# Small fixes (like spaces vs. \s in regex)
37# -- Tim Jansen <tim@tjansen.de>
38
Dan Luedtke1b40c192012-08-12 10:46:15 +020039# 25/07/2012 - Added support for HTML5
40# -- Dan Luedtke <mail@danrl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
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 10:46:15 +020050# 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 15:20:36 -070054# or
Dan Luedtke1b40c192012-08-12 10:46:15 +020055# [ -nofunction funcname [ -function funcname ...] ]
56# c file(s)s > outputfile
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#
Dan Luedtke1b40c192012-08-12 10:46:15 +020058# Set output format using one of -docbook -html -html5 -text or -man.
59# Default is man.
Johannes Bergeda603f2010-09-11 15:55:22 -070060# The -list format is for internal use by docproc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#
Johannes Berg4b445952007-10-24 15:08:48 -070062# -no-doc-sections
63# Do not output DOC: sections
64#
Linus Torvalds1da177e2005-04-16 15:20:36 -070065# -function funcname
Johannes Bergb112e0f2007-10-24 15:08:48 -070066# 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 15:20:36 -070068#
69# -nofunction funcname
Johannes Bergb112e0f2007-10-24 15:08:48 -070070# 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 15:20:36 -070073#
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 08:50:38 -070094# */
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#
Randy Dunlap891dcd22007-02-10 01:45:53 -080096# If the Description: header tag is omitted, then there must be a blank line
Linus Torvalds1da177e2005-04-16 15:20:36 -070097# 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 03:06:58 -0800103# * Does my stuff explained.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104# */
105#
106# or, could also use:
107# /**
108# * my_function - does my stuff
109# * @my_arg: its mine damnit
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800110# * Description: Does my stuff explained.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111# */
112# etc.
113#
Randy Dunlapb9d973282009-06-09 08:50:38 -0700114# Besides functions you can also write documentation for structs, unions,
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800115# 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 15:20:36 -0700118# 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 03:06:58 -0800124# *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125# * Longer description
126# */
127# struct my_struct {
128# int a;
129# int b;
Martin Waitzaeec46b2005-11-13 16:08:13 -0800130# /* private: */
131# int c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132# };
133#
134# All descriptions can be multiline, except the short function description.
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800135#
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 15:20:36 -0700138# can be called form interrupts. Unlike other sections you can end it with an
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800139# empty line.
Yacine Belkadi4092bac2012-11-26 22:22:27 +0100140# A non-void function should have a "Return:" section describing the return
141# value(s).
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800142# Example-sections should contain the string EXAMPLE so that they are marked
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143# 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 03:06:58 -0800150# *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151# * 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-05 16:28:43 -0800167## init lots of data
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169my $errors = 0;
170my $warnings = 0;
Randy Dunlap5f8c7c92007-07-19 01:48:24 -0700171my $anon_struct_union = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
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 00:29:51 -0700177my $type_struct = '\&((struct\s*)*[_\w]+)';
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700178my $type_struct_xml = '\\&amp;((struct\s*)*[_\w]+)';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179my $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 00:29:51 -0700187 $type_struct_xml, "<i>\$1</i>",
188 $type_env, "<b><i>\$1</i></b>",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 $type_param, "<tt><b>\$1</b></tt>" );
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700190my $local_lt = "\\\\\\\\lt:";
191my $local_gt = "\\\\\\\\gt:";
192my $blankline_html = $local_lt . "p" . $local_gt; # was "<p>"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Dan Luedtke1b40c192012-08-12 10:46:15 +0200194# 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 15:20:36 -0700202# 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 15:08:48 -0700206 $type_struct_xml, "<structname>\$1</structname>",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 $type_env, "<envar>\$1</envar>",
208 $type_param, "<parameter>\$1</parameter>" );
Johannes Berg5c98fc02007-10-24 15:08:48 -0700209my $blankline_xml = $local_lt . "/para" . $local_gt . $local_lt . "para" . $local_gt . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
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 15:55:22 -0700233# 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 15:20:36 -0700239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240# read arguments
Randy Dunlapb9d973282009-06-09 08:50:38 -0700241if ($#ARGV == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 usage();
243}
244
Randy Dunlap8484baa2011-01-05 16:28:43 -0800245my $kernelversion;
246my $dohighlight = "";
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248my $verbose = 0;
249my $output_mode = "man";
Daniel Santose314ba32012-10-04 17:15:08 -0700250my $output_preformatted = 0;
Johannes Berg4b445952007-10-24 15:08:48 -0700251my $no_doc_sections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252my %highlights = %highlights_man;
253my $blankline = $blankline_man;
254my $modulename = "Kernel API";
255my $function_only = 0;
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800256my $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
257 'July', 'August', 'September', 'October',
258 'November', 'December')[(localtime)[4]] .
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 " " . ((localtime)[5]+1900);
Johannes Berge946c43a2013-11-12 15:11:12 -0800260my $show_not_found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Randy Dunlap8484baa2011-01-05 16:28:43 -0800262# Essentially these are globals.
Randy Dunlapb9d973282009-06-09 08:50:38 -0700263# 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 15:20:36 -0700265# could cause "use of undefined value" or other bugs.
Randy Dunlapb9d973282009-06-09 08:50:38 -0700266my ($function, %function_table, %parametertypes, $declaration_purpose);
267my ($type, $declaration_name, $return_type);
Ilya Dryomov1c32fd02010-02-26 13:06:03 -0800268my ($newsection, $newcontents, $prototype, $brcount, %source_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Randy Dunlapbd0e88e2008-03-13 12:32:43 -0700270if (defined($ENV{'KBUILD_VERBOSE'})) {
271 $verbose = "$ENV{'KBUILD_VERBOSE'}";
272}
273
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800274# Generated docbook code is inserted in a template at a point where
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275# 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 05:48:55 -0700291my $in_doc_sect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
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-04 17:15:10 -0700302my $doc_com_body = '\s*\* ?';
Randy Dunlapb9d973282009-06-09 08:50:38 -0700303my $doc_decl = $doc_com . '(\w+)';
304my $doc_sect = $doc_com . '([' . $doc_special . ']?[\w\s]+):(.*)';
Daniel Santos12ae6772012-10-04 17:15:10 -0700305my $doc_content = $doc_com_body . '(.*)';
Randy Dunlapb9d973282009-06-09 08:50:38 -0700306my $doc_block = $doc_com . 'DOC:\s*(.*)?';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308my %constants;
309my %parameterdescs;
310my @parameterlist;
311my %sections;
312my @sectionlist;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800313my $sectcheck;
314my $struct_actual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316my $contents = "";
317my $section_default = "Description"; # default section
318my $section_intro = "Introduction";
319my $section = $section_default;
320my $section_context = "Context";
Yacine Belkadi4092bac2012-11-26 22:22:27 +0100321my $section_return = "Return";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
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 10:46:15 +0200333 } elsif ($cmd eq "-html5") {
334 $output_mode = "html5";
335 %highlights = %highlights_html5;
336 $blankline = $blankline_html5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 } 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 15:55:22 -0700349 } elsif ($cmd eq "-list") {
350 $output_mode = "list";
351 %highlights = %highlights_list;
352 $blankline = $blankline_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 } 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")) {
370 usage();
Johannes Berg4b445952007-10-24 15:08:48 -0700371 } elsif ($cmd eq '-no-doc-sections') {
372 $no_doc_sections = 1;
Johannes Berge946c43a2013-11-12 15:11:12 -0800373 } elsif ($cmd eq '-show-not-found') {
374 $show_not_found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376}
377
Randy Dunlap8484baa2011-01-05 16:28:43 -0800378# continue execution near EOF;
379
380sub usage {
Dan Luedtke1b40c192012-08-12 10:46:15 +0200381 print "Usage: $0 [ -docbook | -html | -html5 | -text | -man | -list ]\n";
Randy Dunlap8484baa2011-01-05 16:28:43 -0800382 print " [ -no-doc-sections ]\n";
383 print " [ -function funcname [ -function funcname ...] ]\n";
384 print " [ -nofunction funcname [ -nofunction funcname ...] ]\n";
Dan Luedtke1b40c192012-08-12 10:46:15 +0200385 print " [ -v ]\n";
Randy Dunlap8484baa2011-01-05 16:28:43 -0800386 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 00:30:54 -0700391# get kernel version from env
392sub get_kernel_version() {
Johannes Berg1b9bc222007-10-24 15:08:48 -0700393 my $version = 'unknown kernel version';
Borislav Petkov53f049f2007-05-08 00:30:54 -0700394
395 if (defined($ENV{'KERNELVERSION'})) {
396 $version = $ENV{'KERNELVERSION'};
397 }
398 return $version;
399}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401##
402# dumps section contents to arrays/hashes intended for that purpose.
403#
404sub dump_section {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700405 my $file = shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 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 08:49:30 -0800417 $sectcheck = $sectcheck . $name . " ";
Randy Dunlapced69092008-12-01 13:14:03 -0800418 } elsif ($name eq "@\.\.\.") {
419# print STDERR "parameter def '...' = '$contents'\n";
420 $name = "...";
421 $parameterdescs{$name} = $contents;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -0800422 $sectcheck = $sectcheck . $name . " ";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 } else {
424# print STDERR "other section '$name' = '$contents'\n";
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700425 if (defined($sections{$name}) && ($sections{$name} ne "")) {
426 print STDERR "Error(${file}:$.): duplicate section name '$name'\n";
427 ++$errors;
428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 $sections{$name} = $contents;
430 push @sectionlist, $name;
431 }
432}
433
434##
Johannes Bergb112e0f2007-10-24 15:08:48 -0700435# dump DOC: section after checking that it should go out
436#
437sub dump_doc_section {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -0700438 my $file = shift;
Johannes Bergb112e0f2007-10-24 15:08:48 -0700439 my $name = shift;
440 my $contents = join "\n", @_;
441
Johannes Berg4b445952007-10-24 15:08:48 -0700442 if ($no_doc_sections) {
443 return;
444 }
445
Johannes Bergb112e0f2007-10-24 15:08:48 -0700446 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 02:16:34 -0700450 dump_section($file, $name, $contents);
Johannes Bergb112e0f2007-10-24 15:08:48 -0700451 output_blockhead({'sectionlist' => \@sectionlist,
452 'sections' => \%sections,
453 'module' => $modulename,
454 'content-only' => ($function_only != 0), });
455 }
456}
457
458##
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459# 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 Dunlapa21217d2007-02-10 01:46:04 -0800466# sections => %section descriptions
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800467#
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
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 10:46:15 +0200479 if ($output_mode eq "html" || $output_mode eq "html5" ||
480 $output_mode eq "xml") {
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700481 $contents = local_unescape($contents);
482 # convert data read & converted thru xml_escape() into &xyz; format:
Randy Dunlap2b35f4d2010-11-18 12:27:31 -0800483 $contents =~ s/\\\\\\/\&/g;
Randy Dunlap6b5b55f2007-10-16 23:31:20 -0700484 }
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700485# print STDERR "contents b4:$contents\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 eval $dohighlight;
487 die $@ if $@;
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700488# print STDERR "contents af:$contents\n";
489
Dan Luedtke1b40c192012-08-12 10:46:15 +0200490# strip whitespaces when generating html5
491 if ($output_mode eq "html5") {
492 $contents =~ s/^\s+//;
493 $contents =~ s/\s+$//;
494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 foreach $line (split "\n", $contents) {
Daniel Santos12ae6772012-10-04 17:15:10 -0700496 if (! $output_preformatted) {
497 $line =~ s/^\s*//;
498 }
Randy Dunlap3c308792007-05-08 00:24:39 -0700499 if ($line eq ""){
Daniel Santose314ba32012-10-04 17:15:08 -0700500 if (! $output_preformatted) {
501 print $lineprefix, local_unescape($blankline);
502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 } else {
Randy Dunlap3c308792007-05-08 00:24:39 -0700504 $line =~ s/\\\\\\/\&/g;
Randy Dunlapcdccb312007-07-19 01:48:25 -0700505 if ($output_mode eq "man" && substr($line, 0, 1) eq ".") {
506 print "\\&$line";
507 } else {
508 print $lineprefix, $line;
509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511 print "\n";
512 }
513}
514
Dan Luedtke1b40c192012-08-12 10:46:15 +0200515# output sections in html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516sub output_section_html(%) {
517 my %args = %{$_[0]};
518 my $section;
519
520 foreach $section (@{$args{'sectionlist'}}) {
521 print "<h3>$section</h3>\n";
522 print "<blockquote>\n";
523 output_highlight($args{'sections'}{$section});
524 print "</blockquote>\n";
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
528# output enum in html
529sub output_enum_html(%) {
530 my %args = %{$_[0]};
531 my ($parameter);
532 my $count;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700533 print "<h2>enum " . $args{'enum'} . "</h2>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Randy Dunlapb9d973282009-06-09 08:50:38 -0700535 print "<b>enum " . $args{'enum'} . "</b> {<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 $count = 0;
537 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlapb9d973282009-06-09 08:50:38 -0700538 print " <b>" . $parameter . "</b>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if ($count != $#{$args{'parameterlist'}}) {
540 $count++;
541 print ",\n";
542 }
543 print "<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 08:50:38 -0700550 print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 print "<dd>";
552 output_highlight($args{'parameterdescs'}{$parameter});
553 }
554 print "</dl>\n";
555 output_section_html(@_);
556 print "<hr>\n";
557}
558
Randy Dunlapd28bee02006-02-01 03:06:57 -0800559# output typedef in html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560sub output_typedef_html(%) {
561 my %args = %{$_[0]};
562 my ($parameter);
563 my $count;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700564 print "<h2>typedef " . $args{'typedef'} . "</h2>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Randy Dunlapb9d973282009-06-09 08:50:38 -0700566 print "<b>typedef " . $args{'typedef'} . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 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 08:50:38 -0700576 print "<h2>" . $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "</h2>\n";
577 print "<b>" . $args{'type'} . " " . $args{'struct'} . "</b> {<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 foreach $parameter (@{$args{'parameterlist'}}) {
579 if ($parameter =~ /^#/) {
580 print "$parameter<br>\n";
581 next;
582 }
583 my $parameter_name = $parameter;
584 $parameter_name =~ s/\[.*//;
585
Randy Dunlap3c308792007-05-08 00:24:39 -0700586 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 $type = $args{'parametertypes'}{$parameter};
588 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
589 # pointer-to-function
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700590 print "&nbsp; &nbsp; <i>$1</i><b>$parameter</b>) <i>($2)</i>;<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700592 # bitfield
593 print "&nbsp; &nbsp; <i>$1</i> <b>$parameter</b>$2;<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 } else {
Randy Dunlap3eb014a2007-05-08 00:29:51 -0700595 print "&nbsp; &nbsp; <i>$type</i> <b>$parameter</b>;<br>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
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
605 my $parameter_name = $parameter;
606 $parameter_name =~ s/\[.*//;
607
Randy Dunlap3c308792007-05-08 00:24:39 -0700608 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700609 print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 print "<dd>";
611 output_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 15:20:36 -0700623
Randy Dunlapb9d973282009-06-09 08:50:38 -0700624 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 15:20:36 -0700627 print "(";
628 $count = 0;
629 foreach $parameter (@{$args{'parameterlist'}}) {
630 $type = $args{'parametertypes'}{$parameter};
631 if ($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 08:50:38 -0700635 print "<i>" . $type . "</i> <b>" . $parameter . "</b>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
637 if ($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'}}) {
647 my $parameter_name = $parameter;
648 $parameter_name =~ s/\[.*//;
649
Randy Dunlap3c308792007-05-08 00:24:39 -0700650 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 08:50:38 -0700651 print "<dt><b>" . $parameter . "</b>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 print "<dd>";
653 output_highlight($args{'parameterdescs'}{$parameter_name});
654 }
655 print "</dl>\n";
656 output_section_html(@_);
657 print "<hr>\n";
658}
659
Johannes Bergb112e0f2007-10-24 15:08:48 -0700660# output DOC: block header in html
661sub output_blockhead_html(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 my %args = %{$_[0]};
663 my ($parameter, $section);
664 my $count;
665
666 foreach $section (@{$args{'sectionlist'}}) {
667 print "<h3>$section</h3>\n";
668 print "<ul>\n";
669 output_highlight($args{'sections'}{$section});
670 print "</ul>\n";
671 }
672 print "<hr>\n";
673}
674
Dan Luedtke1b40c192012-08-12 10:46:15 +0200675# output sections in html5
676sub output_section_html5(%) {
677 my %args = %{$_[0]};
678 my $section;
679
680 foreach $section (@{$args{'sectionlist'}}) {
681 print "<section>\n";
682 print "<h1>$section</h1>\n";
683 print "<p>\n";
684 output_highlight($args{'sections'}{$section});
685 print "</p>\n";
686 print "</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'}}) {
708 print "<li class=\"indent\">";
709 print "<span class=\"param\">" . $parameter . "</span>";
710 if ($count != $#{$args{'parameterlist'}}) {
711 $count++;
712 print ",";
713 }
714 print "</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'}}) {
723 print "<dt>" . $parameter . "</dt>\n";
724 print "<dd>";
725 output_highlight($args{'parameterdescs'}{$parameter});
726 print "</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'}}) {
775 print "<li class=\"indent\">";
776 if ($parameter =~ /^#/) {
777 print "<span class=\"param\">" . $parameter ."</span>\n";
778 print "</li>\n";
779 next;
780 }
781 my $parameter_name = $parameter;
782 $parameter_name =~ s/\[.*//;
783
784 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
785 $type = $args{'parametertypes'}{$parameter};
786 if ($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 }
801 print "</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
812 my $parameter_name = $parameter;
813 $parameter_name =~ s/\[.*//;
814
815 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
816 print "<dt>" . $parameter . "</dt>\n";
817 print "<dd>";
818 output_highlight($args{'parameterdescs'}{$parameter_name});
819 print "</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'}}) {
848 print "<li class=\"indent\">";
849 $type = $args{'parametertypes'}{$parameter};
850 if ($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 }
860 if ($count != $#{$args{'parameterlist'}}) {
861 $count++;
862 print ",";
863 }
864 print "</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'}}) {
874 my $parameter_name = $parameter;
875 $parameter_name =~ s/\[.*//;
876
877 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
878 print "<dt>" . $parameter . "</dt>\n";
879 print "<dd>";
880 output_highlight($args{'parameterdescs'}{$parameter_name});
881 print "</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;
899 print "<article class=\"doc\" id=\"doc:". $html5id . "\">\n";
900 print "<h1>$section</h1>\n";
901 print "<p>\n";
902 output_highlight($args{'sections'}{$section});
903 print "</p>\n";
904 }
905 print "</article>\n";
906}
907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908sub output_section_xml(%) {
909 my %args = %{$_[0]};
Randy Dunlap3c3b8092006-02-01 03:06:58 -0800910 my $section;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 # print out each section
912 $lineprefix=" ";
913 foreach $section (@{$args{'sectionlist'}}) {
Rich Walkerc73894c2005-05-01 08:59:26 -0700914 print "<refsect1>\n";
915 print "<title>$section</title>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if ($section =~ m/EXAMPLE/i) {
Rich Walkerc73894c2005-05-01 08:59:26 -0700917 print "<informalexample><programlisting>\n";
Daniel Santose314ba32012-10-04 17:15:08 -0700918 $output_preformatted = 1;
Rich Walkerc73894c2005-05-01 08:59:26 -0700919 } else {
920 print "<para>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 }
922 output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-04 17:15:08 -0700923 $output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 if ($section =~ m/EXAMPLE/i) {
Rich Walkerc73894c2005-05-01 08:59:26 -0700925 print "</programlisting></informalexample>\n";
926 } else {
927 print "</para>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
Rich Walkerc73894c2005-05-01 08:59:26 -0700929 print "</refsect1>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
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 08:50:38 -0700940 $id = "API-" . $args{'function'};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 $id =~ s/[^A-Za-z0-9]/-/g;
942
Pavel Pisa5449bc92007-02-10 01:45:37 -0800943 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -0700944 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 15:20:36 -0700949 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -0700950 print " <refentrytitle><phrase>" . $args{'function'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -0700951 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 02:33:43 -0700952 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 print "</refmeta>\n";
954 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -0700955 print " <refname>" . $args{'function'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 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 08:50:38 -0700965 print " <funcdef>" . $args{'functiontype'} . " ";
966 print "<function>" . $args{'function'} . " </function></funcdef>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 $count = 0;
969 if ($#{$args{'parameterlist'}} >= 0) {
970 foreach $parameter (@{$args{'parameterlist'}}) {
971 $type = $args{'parametertypes'}{$parameter};
972 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
973 # pointer-to-function
974 print " <paramdef>$1<parameter>$parameter</parameter>)\n";
975 print " <funcparams>$2</funcparams></paramdef>\n";
976 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -0700977 print " <paramdef>" . $type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 print " <parameter>$parameter</parameter></paramdef>\n";
979 }
980 }
981 } else {
Martin Waitz6013d542005-05-01 08:59:25 -0700982 print " <void/>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
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) {
990 print " <variablelist>\n";
991 foreach $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 }
1001 print " </variablelist>\n";
1002 } else {
1003 print " <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 08:50:38 -07001017 $id = "API-struct-" . $args{'struct'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 $id =~ s/[^A-Za-z0-9]/-/g;
1019
Pavel Pisa5449bc92007-02-10 01:45:37 -08001020 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001021 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 15:20:36 -07001026 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001027 print " <refentrytitle><phrase>" . $args{'type'} . " " . $args{'struct'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001028 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 02:33:43 -07001029 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 print "</refmeta>\n";
1031 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001032 print " <refname>" . $args{'type'} . " " . $args{'struct'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 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 08:50:38 -07001042 print $args{'type'} . " " . $args{'struct'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 foreach $parameter (@{$args{'parameterlist'}}) {
1044 if ($parameter =~ /^#/) {
Randy Dunlap2b35f4d2010-11-18 12:27:31 -08001045 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 15:20:36 -07001050 next;
1051 }
1052
1053 my $parameter_name = $parameter;
1054 $parameter_name =~ s/\[.*//;
1055
1056 defined($args{'parameterdescs'}{$parameter_name}) || next;
Randy Dunlap3c308792007-05-08 00:24:39 -07001057 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 $type = $args{'parametertypes'}{$parameter};
1059 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1060 # pointer-to-function
1061 print " $1 $parameter) ($2);\n";
1062 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07001063 # bitfield
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 print " $1 $parameter$2;\n";
1065 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001066 print " " . $type . " " . $parameter . ";\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 }
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 13:57:44 -07001076 if ($#{$args{'parameterlist'}} >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 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 13:57:44 -07001094 } else {
1095 print " <para>\n None\n </para>\n";
1096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 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 08:50:38 -07001111 $id = "API-enum-" . $args{'enum'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 $id =~ s/[^A-Za-z0-9]/-/g;
1113
Pavel Pisa5449bc92007-02-10 01:45:37 -08001114 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001115 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 15:20:36 -07001120 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001121 print " <refentrytitle><phrase>enum " . $args{'enum'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001122 print " <manvolnum>9</manvolnum>\n";
Borislav Petkov03662992007-05-09 02:33:43 -07001123 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 print "</refmeta>\n";
1125 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001126 print " <refname>enum " . $args{'enum'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 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 08:50:38 -07001136 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 $count = 0;
1138 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001139 print " $parameter";
1140 if ($count != $#{$args{'parameterlist'}}) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 $count++;
1142 print ",";
Randy Dunlap3c308792007-05-08 00:24:39 -07001143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 print "\n";
1145 }
1146 print "};";
1147 print " </programlisting>\n";
1148 print "</refsynopsisdiv>\n";
1149
1150 print "<refsect1>\n";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001151 print " <title>Constants</title>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 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 08:50:38 -07001178 $id = "API-typedef-" . $args{'typedef'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 $id =~ s/[^A-Za-z0-9]/-/g;
1180
Pavel Pisa5449bc92007-02-10 01:45:37 -08001181 print "<refentry id=\"$id\">\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001182 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 15:20:36 -07001187 print "<refmeta>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001188 print " <refentrytitle><phrase>typedef " . $args{'typedef'} . "</phrase></refentrytitle>\n";
Martin Waitz8b0c2d92005-05-01 08:59:27 -07001189 print " <manvolnum>9</manvolnum>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 print "</refmeta>\n";
1191 print "<refnamediv>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001192 print " <refname>typedef " . $args{'typedef'} . "</refname>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 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 08:50:38 -07001201 print " <synopsis>typedef " . $args{'typedef'} . ";</synopsis>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 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 15:08:48 -07001210sub output_blockhead_xml(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 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 15:08:48 -07001221 if (!$args{'content-only'}) {
1222 print "<refsect1>\n <title>$section</title>\n";
1223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if ($section =~ m/EXAMPLE/i) {
1225 print "<example><para>\n";
Daniel Santose314ba32012-10-04 17:15:08 -07001226 $output_preformatted = 1;
Johannes Bergb112e0f2007-10-24 15:08:48 -07001227 } else {
1228 print "<para>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
1230 output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-04 17:15:08 -07001231 $output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 if ($section =~ m/EXAMPLE/i) {
1233 print "</para></example>\n";
Johannes Bergb112e0f2007-10-24 15:08:48 -07001234 } else {
1235 print "</para>";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
Johannes Bergb112e0f2007-10-24 15:08:48 -07001237 if (!$args{'content-only'}) {
1238 print "\n</refsect1>\n";
1239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 }
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 08:50:38 -07001252 $id = $args{'module'} . "-" . $args{'function'};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 $id =~ s/[^A-Za-z0-9]/-/g;
1254
1255 print "<sect2>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001256 print " <title id=\"$id\">" . $args{'function'} . "</title>\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 print " <funcsynopsis>\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001259 print " <funcdef>" . $args{'functiontype'} . " ";
1260 print "<function>" . $args{'function'} . " ";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 print "</function></funcdef>\n";
1262
1263 $count = 0;
1264 if ($#{$args{'parameterlist'}} >= 0) {
1265 foreach $parameter (@{$args{'parameterlist'}}) {
1266 $type = $args{'parametertypes'}{$parameter};
1267 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1268 # pointer-to-function
1269 print " <paramdef>$1 <parameter>$parameter</parameter>)\n";
1270 print " <funcparams>$2</funcparams></paramdef>\n";
1271 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001272 print " <paramdef>" . $type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 print " <parameter>$parameter</parameter></paramdef>\n";
1274 }
1275 }
1276 } else {
1277 print " <void>\n";
1278 }
1279 print " </funcsynopsis>\n";
1280 if ($#{$args{'parameterlist'}} >= 0) {
1281 print " <informaltable pgwide=\"1\" frame=\"none\" role=\"params\">\n";
1282 print "<tgroup cols=\"2\">\n";
1283 print "<colspec colwidth=\"2*\">\n";
1284 print "<colspec colwidth=\"8*\">\n";
1285 print "<tbody>\n";
1286 foreach $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 }
1296 print " </tbody></tgroup></informaltable>\n";
1297 } else {
1298 print " <para>\n None\n </para>\n";
1299 }
1300
1301 # print out each section
1302 $lineprefix=" ";
1303 foreach $section (@{$args{'sectionlist'}}) {
1304 print "<simplesect>\n <title>$section</title>\n";
1305 if ($section =~ m/EXAMPLE/i) {
1306 print "<example><programlisting>\n";
Daniel Santose314ba32012-10-04 17:15:08 -07001307 $output_preformatted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 } else {
1309 }
1310 print "<para>\n";
1311 output_highlight($args{'sections'}{$section});
Daniel Santose314ba32012-10-04 17:15:08 -07001312 $output_preformatted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 print "</para>\n";
1314 if ($section =~ m/EXAMPLE/i) {
1315 print "</programlisting></example>\n";
1316 } else {
1317 }
1318 print " </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 08:50:38 -07001334 print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 print ".SH SYNOPSIS\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001337 if ($args{'functiontype'} ne "") {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001338 print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001339 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001340 print ".B \"" . $args{'function'} . "\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 $count = 0;
1343 my $parenth = "(";
1344 my $post = ",";
1345 foreach my $parameter (@{$args{'parameterlist'}}) {
1346 if ($count == $#{$args{'parameterlist'}}) {
1347 $post = ");";
1348 }
1349 $type = $args{'parametertypes'}{$parameter};
1350 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1351 # pointer-to-function
Randy Dunlapb9d973282009-06-09 08:50:38 -07001352 print ".BI \"" . $parenth . $1 . "\" " . $parameter . " \") (" . $2 . ")" . $post . "\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 } else {
1354 $type =~ s/([^\*])$/$1 /;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001355 print ".BI \"" . $parenth . $type . "\" " . $parameter . " \"" . $post . "\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 }
1357 $count++;
1358 $parenth = "";
1359 }
1360
1361 print ".SH ARGUMENTS\n";
1362 foreach $parameter (@{$args{'parameterlist'}}) {
1363 my $parameter_name = $parameter;
1364 $parameter_name =~ s/\[.*//;
1365
Randy Dunlapb9d973282009-06-09 08:50:38 -07001366 print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 output_highlight($args{'parameterdescs'}{$parameter_name});
1368 }
1369 foreach $section (@{$args{'sectionlist'}}) {
1370 print ".SH \"", uc $section, "\"\n";
1371 output_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 08:50:38 -07001385 print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
1387 print ".SH SYNOPSIS\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001388 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 $count = 0;
1390 foreach my $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001391 print ".br\n.BI \" $parameter\"\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if ($count == $#{$args{'parameterlist'}}) {
1393 print "\n};\n";
1394 last;
1395 }
1396 else {
1397 print ", \n.br\n";
1398 }
1399 $count++;
1400 }
1401
1402 print ".SH Constants\n";
1403 foreach $parameter (@{$args{'parameterlist'}}) {
1404 my $parameter_name = $parameter;
1405 $parameter_name =~ s/\[.*//;
1406
Randy Dunlapb9d973282009-06-09 08:50:38 -07001407 print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 output_highlight($args{'parameterdescs'}{$parameter_name});
1409 }
1410 foreach $section (@{$args{'sectionlist'}}) {
1411 print ".SH \"$section\"\n";
1412 output_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 08:50:38 -07001422 print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
1424 print ".SH NAME\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001425 print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
1427 print ".SH SYNOPSIS\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001428 print $args{'type'} . " " . $args{'struct'} . " {\n.br\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 foreach my $parameter (@{$args{'parameterlist'}}) {
1431 if ($parameter =~ /^#/) {
1432 print ".BI \"$parameter\"\n.br\n";
1433 next;
1434 }
1435 my $parameter_name = $parameter;
1436 $parameter_name =~ s/\[.*//;
1437
Randy Dunlap3c308792007-05-08 00:24:39 -07001438 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 $type = $args{'parametertypes'}{$parameter};
1440 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1441 # pointer-to-function
Randy Dunlapb9d973282009-06-09 08:50:38 -07001442 print ".BI \" " . $1 . "\" " . $parameter . " \") (" . $2 . ")" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy.Dunlap1d7e1d42006-07-01 04:36:34 -07001444 # bitfield
Randy Dunlapb9d973282009-06-09 08:50:38 -07001445 print ".BI \" " . $1 . "\ \" " . $parameter . $2 . " \"" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 } else {
1447 $type =~ s/([^\*])$/$1 /;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001448 print ".BI \" " . $type . "\" " . $parameter . " \"" . "\"\n;\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
1450 print "\n.br\n";
1451 }
1452 print "};\n.br\n";
1453
Randy Dunlapc51d3dac2006-06-25 05:49:14 -07001454 print ".SH Members\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 foreach $parameter (@{$args{'parameterlist'}}) {
1456 ($parameter =~ /^#/) && next;
1457
1458 my $parameter_name = $parameter;
1459 $parameter_name =~ s/\[.*//;
1460
Randy Dunlap3c308792007-05-08 00:24:39 -07001461 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001462 print ".IP \"" . $parameter . "\" 12\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 output_highlight($args{'parameterdescs'}{$parameter_name});
1464 }
1465 foreach $section (@{$args{'sectionlist'}}) {
1466 print ".SH \"$section\"\n";
1467 output_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 08:50:38 -07001480 print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
1482 foreach $section (@{$args{'sectionlist'}}) {
1483 print ".SH \"$section\"\n";
1484 output_highlight($args{'sections'}{$section});
1485 }
1486}
1487
Johannes Bergb112e0f2007-10-24 15:08:48 -07001488sub output_blockhead_man(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 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'}}) {
1496 print ".SH \"$section\"\n";
1497 output_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 Dunlapa21217d2007-02-10 01:46:04 -08001506 my $start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Randy Dunlapf47634b2006-07-01 04:36:36 -07001508 print "Name:\n\n";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001509 print $args{'function'} . " - " . $args{'purpose'} . "\n";
Randy Dunlapf47634b2006-07-01 04:36:36 -07001510
1511 print "\nSynopsis:\n\n";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001512 if ($args{'functiontype'} ne "") {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001513 $start = $args{'functiontype'} . " " . $args{'function'} . " (";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001514 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001515 $start = $args{'function'} . " (";
Randy Dunlapa21217d2007-02-10 01:46:04 -08001516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 print $start;
Randy Dunlapa21217d2007-02-10 01:46:04 -08001518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 my $count = 0;
1520 foreach my $parameter (@{$args{'parameterlist'}}) {
1521 $type = $args{'parametertypes'}{$parameter};
1522 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1523 # pointer-to-function
Randy Dunlapb9d973282009-06-09 08:50:38 -07001524 print $1 . $parameter . ") (" . $2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001526 print $type . " " . $parameter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 }
1528 if ($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'}}) {
1539 my $parameter_name = $parameter;
1540 $parameter_name =~ s/\[.*//;
1541
Randy Dunlapb9d973282009-06-09 08:50:38 -07001542 print $parameter . "\n\t" . $args{'parameterdescs'}{$parameter_name} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 }
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'}}) {
1554 print "$section:\n\n";
1555 output_highlight($args{'sections'}{$section});
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 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 08:50:38 -07001567 print "enum " . $args{'enum'} . " - " . $args{'purpose'} . "\n\n";
1568 print "enum " . $args{'enum'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 $count = 0;
1570 foreach $parameter (@{$args{'parameterlist'}}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001571 print "\t$parameter";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 if ($count != $#{$args{'parameterlist'}}) {
1573 $count++;
1574 print ",";
1575 }
1576 print "\n";
1577 }
1578 print "};\n\n";
1579
1580 print "Constants:\n\n";
1581 foreach $parameter (@{$args{'parameterlist'}}) {
1582 print "$parameter\n\t";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001583 print $args{'parameterdescs'}{$parameter} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 }
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 08:50:38 -07001596 print "typedef " . $args{'typedef'} . " - " . $args{'purpose'} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 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 08:50:38 -07001605 print $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "\n\n";
1606 print $args{'type'} . " " . $args{'struct'} . " {\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 foreach $parameter (@{$args{'parameterlist'}}) {
1608 if ($parameter =~ /^#/) {
1609 print "$parameter\n";
1610 next;
1611 }
1612
1613 my $parameter_name = $parameter;
1614 $parameter_name =~ s/\[.*//;
1615
Randy Dunlap3c308792007-05-08 00:24:39 -07001616 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 $type = $args{'parametertypes'}{$parameter};
1618 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1619 # pointer-to-function
1620 print "\t$1 $parameter) ($2);\n";
1621 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07001622 # bitfield
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 print "\t$1 $parameter$2;\n";
1624 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07001625 print "\t" . $type . " " . $parameter . ";\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 }
1627 }
1628 print "};\n\n";
1629
1630 print "Members:\n\n";
1631 foreach $parameter (@{$args{'parameterlist'}}) {
1632 ($parameter =~ /^#/) && next;
1633
1634 my $parameter_name = $parameter;
1635 $parameter_name =~ s/\[.*//;
1636
Randy Dunlap3c308792007-05-08 00:24:39 -07001637 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 print "$parameter\n\t";
Randy Dunlapb9d973282009-06-09 08:50:38 -07001639 print $args{'parameterdescs'}{$parameter_name} . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 }
1641 print "\n";
1642 output_section_text(@_);
1643}
1644
Johannes Bergb112e0f2007-10-24 15:08:48 -07001645sub output_blockhead_text(%) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 my %args = %{$_[0]};
1647 my ($parameter, $section);
1648
1649 foreach $section (@{$args{'sectionlist'}}) {
1650 print " $section:\n";
1651 print " -> ";
1652 output_highlight($args{'sections'}{$section});
1653 }
1654}
1655
Johannes Bergeda603f2010-09-11 15:55:22 -07001656## 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'}}) {
1688 print "DOC: $section\n";
1689 }
1690}
1691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692##
Randy Dunlap27205742006-10-11 01:22:12 -07001693# 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 15:20:36 -07001696sub 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 03:06:58 -08001701 if (($function_only==0) ||
1702 ( $function_only == 1 && defined($function_table{$name})) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 ( $function_only == 2 && !defined($function_table{$name})))
1704 {
Randy Dunlap3c308792007-05-08 00:24:39 -07001705 &$func(@_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 $section_counter++;
1707 }
1708}
1709
1710##
Randy Dunlap27205742006-10-11 01:22:12 -07001711# generic output function - calls the right one based on current output mode.
Johannes Bergb112e0f2007-10-24 15:08:48 -07001712sub output_blockhead {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 no strict 'refs';
Randy Dunlapb9d973282009-06-09 08:50:38 -07001714 my $func = "output_blockhead_" . $output_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 &$func(@_);
1716 $section_counter++;
1717}
1718
1719##
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001720# takes a declaration (struct, union, enum, typedef) and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721# invokes the right handler. NOT called for functions.
1722sub dump_declaration($$) {
1723 no strict 'refs';
1724 my ($prototype, $file) = @_;
Randy Dunlapb9d973282009-06-09 08:50:38 -07001725 my $func = "dump_" . $decl_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 &$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 08:49:30 -08001736 my $nested;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Randy Dunlap52dc5ae2009-04-30 15:08:53 -07001738 if ($x =~ /(struct|union)\s+(\w+)\s*{(.*)}/) {
1739 #my $decl_type = $1;
Randy Dunlap3c308792007-05-08 00:24:39 -07001740 $declaration_name = $2;
1741 my $members = $3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
1743 # ignore embedded structs or unions
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001744 $members =~ s/({.*})//g;
1745 $nested = $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Martin Waitzaeec46b2005-11-13 16:08:13 -08001747 # ignore members marked private:
Randy Dunlap52dc5ae2009-04-30 15:08:53 -07001748 $members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gos;
1749 $members =~ s/\/\*\s*private:.*//gos;
Martin Waitzaeec46b2005-11-13 16:08:13 -08001750 # strip comments:
1751 $members =~ s/\/\*.*?\*\///gos;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001752 $nested =~ s/\/\*.*?\*\///gos;
Randy Dunlapd960eea2009-06-29 14:54:11 -07001753 # strip kmemcheck_bitfield_{begin,end}.*;
1754 $members =~ s/kmemcheck_bitfield_.*?;//gos;
Randy Dunlapef5da592010-03-23 13:35:14 -07001755 # strip attributes
Nishanth Menon9dc30912013-02-27 17:02:46 -08001756 $members =~ s/__aligned\s*\(.+\)//gos;
Martin Waitzaeec46b2005-11-13 16:08:13 -08001757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 create_parameterlist($members, ';', $file);
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001759 check_sections($file, $declaration_name, "struct", $sectcheck, $struct_actual, $nested);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
1761 output_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 00:24:39 -07001775 print STDERR "Error(${file}:$.): Cannot parse struct or union!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 ++$errors;
1777 }
1778}
1779
1780sub dump_enum($$) {
1781 my $x = shift;
1782 my $file = shift;
1783
Martin Waitzaeec46b2005-11-13 16:08:13 -08001784 $x =~ s@/\*.*?\*/@@gos; # strip comments.
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001785 $x =~ s/^#\s*define\s+.*$//; # strip #define macros inside enums
1786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 if ($x =~ /enum\s+(\w+)\s*{(.*)}/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001788 $declaration_name = $1;
1789 my $members = $2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
1791 foreach my $arg (split ',', $members) {
1792 $arg =~ s/^\s*(\w+).*/$1/;
1793 push @parameterlist, $arg;
1794 if (!$parameterdescs{$arg}) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001795 $parameterdescs{$arg} = $undescribed;
1796 print STDERR "Warning(${file}:$.): Enum value '$arg' ".
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 "not described in enum '$declaration_name'\n";
1798 }
1799
1800 }
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 output_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 00:24:39 -07001814 print STDERR "Error(${file}:$.): Cannot parse enum!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 ++$errors;
1816 }
1817}
1818
1819sub dump_typedef($$) {
1820 my $x = shift;
1821 my $file = shift;
1822
Martin Waitzaeec46b2005-11-13 16:08:13 -08001823 $x =~ s@/\*.*?\*/@@gos; # strip comments.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001825 $x =~ s/\(*.\)\s*;$/;/;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 $x =~ s/\[*.\]\s*;$/;/;
1827 }
1828
1829 if ($x =~ /typedef.*\s+(\w+)\s*;/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001830 $declaration_name = $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
1832 output_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 00:24:39 -07001842 print STDERR "Error(${file}:$.): Cannot parse typedef!\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 ++$errors;
1844 }
1845}
1846
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001847sub 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 15:20:36 -07001855sub create_parameterlist($$$) {
1856 my $args = shift;
1857 my $splitter = shift;
1858 my $file = shift;
1859 my $type;
1860 my $param;
1861
Martin Waitza6d3fe72006-01-09 20:53:55 -08001862 # temporarily replace commas inside function pointer definition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 while ($args =~ /(\([^\),]+),/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001864 $args =~ s/(\([^\),]+),/$1#/g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 }
Randy Dunlap3c3b8092006-02-01 03:06:58 -08001866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 foreach my $arg (split($splitter, $args)) {
1868 # strip comments
1869 $arg =~ s/\/\*.*\*\///;
Randy Dunlap3c308792007-05-08 00:24:39 -07001870 # strip leading/trailing spaces
1871 $arg =~ s/^\s*//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 $arg =~ s/\s*$//;
1873 $arg =~ s/\s+/ /;
1874
1875 if ($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 15:24:01 -08001880 } elsif ($arg =~ m/\(.+\)\s*\(/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 # pointer-to-function
1882 $arg =~ tr/#/,/;
Richard Kennedy00d62962008-02-23 15:24:01 -08001883 $arg =~ m/[^\(]+\(\*?\s*(\w*)\s*\)/;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 $param = $1;
1885 $type = $arg;
Richard Kennedy00d62962008-02-23 15:24:01 -08001886 $type =~ s/([^\(]+\(\*?)\s*$param/$1/;
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001887 save_struct_actual($param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 push_parameter($param, $type, $file);
Martin Waitzaeec46b2005-11-13 16:08:13 -08001889 } elsif ($arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 $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 00:29:05 -07001897
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 15:20:36 -07001907 unshift(@args, pop @first_arg);
1908 $type = join " ", @first_arg;
1909
1910 foreach $param (@args) {
1911 if ($param =~ m/^(\*+)\s*(.*)/) {
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001912 save_struct_actual($2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 push_parameter($2, "$type $1", $file);
1914 }
1915 elsif ($param =~ m/(.*?):(\d+)/) {
Randy Dunlap7b978872008-05-16 15:45:52 -07001916 if ($type ne "") { # skip unnamed bit-fields
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001917 save_struct_actual($1);
Randy Dunlap7b978872008-05-16 15:45:52 -07001918 push_parameter($1, "$type:$2", $file)
1919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 }
1921 else {
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001922 save_struct_actual($param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 push_parameter($param, $type, $file);
1924 }
1925 }
1926 }
1927 }
1928}
1929
1930sub push_parameter($$$) {
1931 my $param = shift;
1932 my $type = shift;
1933 my $file = shift;
1934
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07001935 if (($anon_struct_union == 1) && ($type eq "") &&
1936 ($param eq "}")) {
1937 return; # ignore the ending }; from anon. struct/union
1938 }
1939
1940 $anon_struct_union = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 my $param_name = $param;
1942 $param_name =~ s/\[.*//;
1943
Martin Waitza6d3fe72006-01-09 20:53:55 -08001944 if ($type eq "" && $param =~ /\.\.\.$/)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 {
Randy Dunlapced69092008-12-01 13:14:03 -08001946 if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") {
1947 $parameterdescs{$param} = "variable arguments";
1948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 }
1950 elsif ($type eq "" && ($param eq "" or $param eq "void"))
1951 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 $param="void";
1953 $parameterdescs{void} = "no arguments";
1954 }
Randy Dunlap134fe012006-12-22 01:10:50 -08001955 elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
1956 # handle unnamed (anonymous) union or struct:
1957 {
1958 $type = $param;
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07001959 $param = "{unnamed_" . $param . "}";
Randy Dunlap134fe012006-12-22 01:10:50 -08001960 $parameterdescs{$param} = "anonymous\n";
Randy Dunlap5f8c7c92007-07-19 01:48:24 -07001961 $anon_struct_union = 1;
Randy Dunlap134fe012006-12-22 01:10:50 -08001962 }
1963
Martin Waitza6d3fe72006-01-09 20:53:55 -08001964 # warn if parameter has no description
Randy Dunlap134fe012006-12-22 01:10:50 -08001965 # (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 01:48:24 -07001968 if (!$anon_struct_union) {
Martin Waitza6d3fe72006-01-09 20:53:55 -08001969 if (!defined $parameterdescs{$param_name} && $param_name !~ /^#/) {
1970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 $parameterdescs{$param_name} = $undescribed;
1972
1973 if (($type eq 'function') || ($type eq 'enum')) {
Randy Dunlap3c308792007-05-08 00:24:39 -07001974 print STDERR "Warning(${file}:$.): Function parameter ".
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 "or member '$param' not " .
1976 "described in '$declaration_name'\n";
1977 }
Randy Dunlapb9d973282009-06-09 08:50:38 -07001978 print STDERR "Warning(${file}:$.):" .
Randy Dunlap3c308792007-05-08 00:24:39 -07001979 " No description found for parameter '$param'\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 ++$warnings;
Randy Dunlap3c308792007-05-08 00:24:39 -07001981 }
1982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
Randy Dunlap2b35f4d2010-11-18 12:27:31 -08001984 $param = xml_escape($param);
1985
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001986 # strip spaces from $param so that it is one continuous string
Randy Dunlape34e7db2009-06-17 17:37:47 -07001987 # 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 15:20:36 -07001995 push @parameterlist, $param;
1996 $parametertypes{$param} = $type;
1997}
1998
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08001999sub check_sections($$$$$$) {
2000 my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck, $nested) = @_;
2001 my @sects = split ' ', $sectcheck;
2002 my @prms = split ' ', $prmscheck;
2003 my $err;
2004 my ($px, $sx);
2005 my $prm_clean; # strip trailing "[array size]" and/or beginning "*"
2006
2007 foreach $sx (0 .. $#sects) {
2008 $err = 1;
2009 foreach $px (0 .. $#prms) {
2010 $prm_clean = $prms[$px];
2011 $prm_clean =~ s/\[.*\]//;
Johannes Berg1f3a6682010-09-11 15:55:12 -07002012 $prm_clean =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
Randy Dunlape34e7db2009-06-17 17:37:47 -07002013 # 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 08:49:30 -08002021 ##$prm_clean =~ s/^\**//;
2022 if ($prm_clean eq $sects[$sx]) {
2023 $err = 0;
2024 last;
2025 }
2026 }
2027 if ($err) {
2028 if ($decl_type eq "function") {
2029 print STDERR "Warning(${file}:$.): " .
2030 "Excess function parameter " .
2031 "'$sects[$sx]' " .
2032 "description in '$decl_name'\n";
2033 ++$warnings;
2034 } else {
2035 if ($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 15:20:36 -07002047##
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002048# 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 15:20:36 -07002070# 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;
2076
2077 $prototype =~ s/^static +//;
2078 $prototype =~ s/^extern +//;
Pavel Pisa4dc3b162005-05-01 08:59:25 -07002079 $prototype =~ s/^asmlinkage +//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 $prototype =~ s/^inline +//;
2081 $prototype =~ s/^__inline__ +//;
Randy Dunlap32e79402006-10-11 01:22:10 -07002082 $prototype =~ s/^__inline +//;
2083 $prototype =~ s/^__always_inline +//;
2084 $prototype =~ s/^noinline +//;
Randy Dunlap74fc5c62008-06-19 16:03:29 -07002085 $prototype =~ s/__init +//;
Randy Dunlap20072202010-03-23 13:35:24 -07002086 $prototype =~ s/__init_or_module +//;
Randy Dunlap70c95b02012-01-21 10:31:54 -08002087 $prototype =~ s/__must_check +//;
Randy Dunlap0df7c0e2012-08-16 16:23:20 -07002088 $prototype =~ s/__weak +//;
Randy Dunlap890c78c2008-10-25 17:06:43 -07002089 $prototype =~ s/^#\s*define\s+//; #ak added
Randy Dunlap328d2442007-02-28 20:12:10 -08002090 $prototype =~ s/__attribute__\s*\(\([a-z,]*\)\)//;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
2092 # Yes, this truly is vile. We are looking for:
2093 # 1. Return type (may be nothing if we're looking at a macro)
2094 # 2. Function name
2095 # 3. Function parameters.
2096 #
2097 # All the while we have to watch out for function pointer parameters
2098 # (which IIRC is what the two sections are for), C types (these
2099 # regexps don't even start to express all the possibilities), and
2100 # so on.
2101 #
2102 # If you mess with these regexps, it's a good idea to check that
2103 # the following functions' documentation still comes out right:
2104 # - parport_register_device (function pointer parameters)
2105 # - atomic_set (macro)
Martin Waitz9598f912006-02-01 03:06:55 -08002106 # - pci_match_device, __copy_to_user (long return type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
2108 if ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2109 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2110 $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2111 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Randy Dunlap94b3e032008-02-07 00:13:26 -08002112 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2114 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2115 $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2116 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2117 $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2118 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2119 $prototype =~ m/^(\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2120 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Martin Waitz9598f912006-02-01 03:06:55 -08002121 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2122 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
Randy Dunlap412ecd772007-02-10 22:47:33 -08002123 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2124 $prototype =~ m/^(\w+\s+\w+\s*\*\s*\w+\s*\*\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 $return_type = $1;
2126 $declaration_name = $2;
2127 my $args = $3;
2128
2129 create_parameterlist($args, ',', $file);
2130 } else {
2131 print STDERR "Error(${file}:$.): cannot understand prototype: '$prototype'\n";
2132 ++$errors;
2133 return;
2134 }
2135
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002136 my $prms = join " ", @parameterlist;
2137 check_sections($file, $declaration_name, "function", $sectcheck, $prms, "");
2138
Yacine Belkadi4092bac2012-11-26 22:22:27 +01002139 # This check emits a lot of warnings at the moment, because many
2140 # functions don't have a 'Return' doc section. So until the number
2141 # of warnings goes sufficiently down, the check is only performed in
2142 # verbose mode.
2143 # TODO: always perform the check.
2144 if ($verbose) {
2145 check_return_section($file, $declaration_name, $return_type);
2146 }
2147
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002148 output_declaration($declaration_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 'function',
2150 {'function' => $declaration_name,
2151 'module' => $modulename,
2152 'functiontype' => $return_type,
2153 'parameterlist' => \@parameterlist,
2154 'parameterdescs' => \%parameterdescs,
2155 'parametertypes' => \%parametertypes,
2156 'sectionlist' => \@sectionlist,
2157 'sections' => \%sections,
2158 'purpose' => $declaration_purpose
2159 });
2160}
2161
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162sub reset_state {
2163 $function = "";
2164 %constants = ();
2165 %parameterdescs = ();
2166 %parametertypes = ();
2167 @parameterlist = ();
2168 %sections = ();
2169 @sectionlist = ();
Randy Dunlapa1d94aa2008-12-19 08:49:30 -08002170 $sectcheck = "";
2171 $struct_actual = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 $prototype = "";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002173
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 $state = 0;
2175}
2176
Jason Baron56afb0f2009-04-30 13:29:36 -04002177sub tracepoint_munge($) {
2178 my $file = shift;
2179 my $tracepointname = 0;
2180 my $tracepointargs = 0;
2181
Jason Baron3a9089f2009-12-01 12:18:49 -05002182 if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
Jason Baron56afb0f2009-04-30 13:29:36 -04002183 $tracepointname = $1;
2184 }
Jason Baron3a9089f2009-12-01 12:18:49 -05002185 if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
2186 $tracepointname = $1;
2187 }
2188 if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
2189 $tracepointname = $2;
2190 }
2191 $tracepointname =~ s/^\s+//; #strip leading whitespace
2192 if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
Jason Baron56afb0f2009-04-30 13:29:36 -04002193 $tracepointargs = $1;
2194 }
2195 if (($tracepointname eq 0) || ($tracepointargs eq 0)) {
2196 print STDERR "Warning(${file}:$.): Unrecognized tracepoint format: \n".
2197 "$prototype\n";
2198 } else {
2199 $prototype = "static inline void trace_$tracepointname($tracepointargs)";
2200 }
2201}
2202
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002203sub syscall_munge() {
2204 my $void = 0;
2205
2206 $prototype =~ s@[\r\n\t]+@ @gos; # strip newlines/CR's/tabs
2207## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
2208 if ($prototype =~ m/SYSCALL_DEFINE0/) {
2209 $void = 1;
2210## $prototype = "long sys_$1(void)";
2211 }
2212
2213 $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
2214 if ($prototype =~ m/long (sys_.*?),/) {
2215 $prototype =~ s/,/\(/;
2216 } elsif ($void) {
2217 $prototype =~ s/\)/\(void\)/;
2218 }
2219
2220 # now delete all of the odd-number commas in $prototype
2221 # so that arg types & arg names don't have a comma between them
2222 my $count = 0;
2223 my $len = length($prototype);
2224 if ($void) {
2225 $len = 0; # skip the for-loop
2226 }
2227 for (my $ix = 0; $ix < $len; $ix++) {
2228 if (substr($prototype, $ix, 1) eq ',') {
2229 $count++;
2230 if ($count % 2 == 1) {
2231 substr($prototype, $ix, 1) = ' ';
2232 }
2233 }
2234 }
2235}
2236
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002237sub process_state3_function($$) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 my $x = shift;
2239 my $file = shift;
2240
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07002241 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
2242
Randy Dunlap890c78c2008-10-25 17:06:43 -07002243 if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 # do nothing
2245 }
2246 elsif ($x =~ /([^\{]*)/) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002247 $prototype .= $1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 }
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002249
Randy Dunlap890c78c2008-10-25 17:06:43 -07002250 if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002251 $prototype =~ s@/\*.*?\*/@@gos; # strip comments.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
2253 $prototype =~ s@^\s+@@gos; # strip leading spaces
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002254 if ($prototype =~ /SYSCALL_DEFINE/) {
2255 syscall_munge();
2256 }
Jason Baron3a9089f2009-12-01 12:18:49 -05002257 if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
2258 $prototype =~ /DEFINE_SINGLE_EVENT/)
2259 {
Jason Baron56afb0f2009-04-30 13:29:36 -04002260 tracepoint_munge($file);
2261 }
Randy Dunlapb4870bc2009-02-11 13:04:33 -08002262 dump_function($prototype, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 reset_state();
2264 }
2265}
2266
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002267sub process_state3_type($$) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 my $x = shift;
2269 my $file = shift;
2270
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
2272 $x =~ s@^\s+@@gos; # strip leading spaces
2273 $x =~ s@\s+$@@gos; # strip trailing spaces
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07002274 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
2275
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 if ($x =~ /^#/) {
2277 # To distinguish preprocessor directive from regular declaration later.
2278 $x .= ";";
2279 }
2280
2281 while (1) {
Randy Dunlap3c308792007-05-08 00:24:39 -07002282 if ( $x =~ /([^{};]*)([{};])(.*)/ ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 $prototype .= $1 . $2;
2284 ($2 eq '{') && $brcount++;
2285 ($2 eq '}') && $brcount--;
2286 if (($2 eq ';') && ($brcount == 0)) {
Randy Dunlapb9d973282009-06-09 08:50:38 -07002287 dump_declaration($prototype, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 reset_state();
Randy Dunlap3c308792007-05-08 00:24:39 -07002289 last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 }
2291 $x = $3;
Randy Dunlap3c308792007-05-08 00:24:39 -07002292 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 $prototype .= $x;
2294 last;
2295 }
2296 }
2297}
2298
Randy Dunlap6b5b55f2007-10-16 23:31:20 -07002299# xml_escape: replace <, >, and & in the text stream;
2300#
2301# however, formatting controls that are generated internally/locally in the
2302# kernel-doc script are not escaped here; instead, they begin life like
2303# $blankline_html (4 of '\' followed by a mnemonic + ':'), then these strings
2304# are converted to their mnemonic-expected output, without the 4 * '\' & ':',
2305# just before actual output; (this is done by local_unescape())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306sub xml_escape($) {
2307 my $text = shift;
Randy Dunlapecfb2512006-06-25 05:49:13 -07002308 if (($output_mode eq "text") || ($output_mode eq "man")) {
2309 return $text;
2310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 $text =~ s/\&/\\\\\\amp;/g;
2312 $text =~ s/\</\\\\\\lt;/g;
2313 $text =~ s/\>/\\\\\\gt;/g;
2314 return $text;
2315}
2316
Randy Dunlap6b5b55f2007-10-16 23:31:20 -07002317# convert local escape strings to html
2318# local escape strings look like: '\\\\menmonic:' (that's 4 backslashes)
2319sub local_unescape($) {
2320 my $text = shift;
2321 if (($output_mode eq "text") || ($output_mode eq "man")) {
2322 return $text;
2323 }
2324 $text =~ s/\\\\\\\\lt:/</g;
2325 $text =~ s/\\\\\\\\gt:/>/g;
2326 return $text;
2327}
2328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329sub process_file($) {
Randy Dunlap2283a112005-07-07 15:39:26 -07002330 my $file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 my $identifier;
2332 my $func;
Randy Dunlapa21217d2007-02-10 01:46:04 -08002333 my $descr;
Johannes Weiner64231332009-09-17 19:26:53 -07002334 my $in_purpose = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 my $initial_section_counter = $section_counter;
2336
Randy Dunlap2283a112005-07-07 15:39:26 -07002337 if (defined($ENV{'SRCTREE'})) {
2338 $file = "$ENV{'SRCTREE'}" . "/" . "@_";
2339 }
2340 else {
2341 $file = "@_";
2342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 if (defined($source_map{$file})) {
2344 $file = $source_map{$file};
2345 }
2346
2347 if (!open(IN,"<$file")) {
2348 print STDERR "Error: Cannot open file $file\n";
2349 ++$errors;
2350 return;
2351 }
2352
Ilya Dryomova9e73142010-02-26 13:05:47 -08002353 $. = 1;
2354
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 $section_counter = 0;
2356 while (<IN>) {
Daniel Santos65478422012-10-04 17:15:05 -07002357 while (s/\\\s*$//) {
2358 $_ .= <IN>;
2359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 if ($state == 0) {
2361 if (/$doc_start/o) {
2362 $state = 1; # next line is always the function name
Randy Dunlap850622d2006-06-25 05:48:55 -07002363 $in_doc_sect = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 }
2365 } elsif ($state == 1) { # this line is the function name (always)
2366 if (/$doc_block/o) {
2367 $state = 4;
2368 $contents = "";
2369 if ( $1 eq "" ) {
2370 $section = $section_intro;
2371 } else {
2372 $section = $1;
2373 }
Randy Dunlap3c308792007-05-08 00:24:39 -07002374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 elsif (/$doc_decl/o) {
2376 $identifier = $1;
2377 if (/\s*([\w\s]+?)\s*-/) {
2378 $identifier = $1;
2379 }
2380
2381 $state = 2;
2382 if (/-(.*)/) {
Randy Dunlap51f5a0c2007-07-19 01:48:24 -07002383 # strip leading/trailing/multiple spaces
Randy Dunlapa21217d2007-02-10 01:46:04 -08002384 $descr= $1;
2385 $descr =~ s/^\s*//;
2386 $descr =~ s/\s*$//;
Daniel Santos12ae6772012-10-04 17:15:10 -07002387 $descr =~ s/\s+/ /g;
Randy Dunlapa21217d2007-02-10 01:46:04 -08002388 $declaration_purpose = xml_escape($descr);
Johannes Weiner64231332009-09-17 19:26:53 -07002389 $in_purpose = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 } else {
2391 $declaration_purpose = "";
2392 }
Randy Dunlap77cc23b2008-02-07 00:13:42 -08002393
2394 if (($declaration_purpose eq "") && $verbose) {
2395 print STDERR "Warning(${file}:$.): missing initial short description on line:\n";
2396 print STDERR $_;
2397 ++$warnings;
2398 }
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 if ($identifier =~ m/^struct/) {
2401 $decl_type = 'struct';
2402 } elsif ($identifier =~ m/^union/) {
2403 $decl_type = 'union';
2404 } elsif ($identifier =~ m/^enum/) {
2405 $decl_type = 'enum';
2406 } elsif ($identifier =~ m/^typedef/) {
2407 $decl_type = 'typedef';
2408 } else {
2409 $decl_type = 'function';
2410 }
2411
2412 if ($verbose) {
2413 print STDERR "Info(${file}:$.): Scanning doc for $identifier\n";
2414 }
2415 } else {
2416 print STDERR "Warning(${file}:$.): Cannot understand $_ on line $.",
2417 " - I thought it was a doc line\n";
2418 ++$warnings;
2419 $state = 0;
2420 }
2421 } elsif ($state == 2) { # look for head: lines, and include content
2422 if (/$doc_sect/o) {
2423 $newsection = $1;
2424 $newcontents = $2;
2425
Randy Dunlap792aa2f2008-02-07 00:13:41 -08002426 if (($contents ne "") && ($contents ne "\n")) {
Randy Dunlap850622d2006-06-25 05:48:55 -07002427 if (!$in_doc_sect && $verbose) {
2428 print STDERR "Warning(${file}:$.): contents before sections\n";
2429 ++$warnings;
2430 }
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07002431 dump_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 $section = $section_default;
2433 }
2434
Randy Dunlap850622d2006-06-25 05:48:55 -07002435 $in_doc_sect = 1;
Johannes Weiner64231332009-09-17 19:26:53 -07002436 $in_purpose = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 $contents = $newcontents;
2438 if ($contents ne "") {
Randy Dunlap27205742006-10-11 01:22:12 -07002439 while ((substr($contents, 0, 1) eq " ") ||
2440 substr($contents, 0, 1) eq "\t") {
2441 $contents = substr($contents, 1);
Randy Dunlap05189492006-06-25 05:47:47 -07002442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 $contents .= "\n";
2444 }
2445 $section = $newsection;
2446 } elsif (/$doc_end/) {
2447
Randy Dunlap4c98eca2010-03-10 15:22:02 -08002448 if (($contents ne "") && ($contents ne "\n")) {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07002449 dump_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 $section = $section_default;
2451 $contents = "";
2452 }
Randy Dunlap46b958e2008-04-28 02:16:35 -07002453 # look for doc_com + <text> + doc_end:
2454 if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') {
2455 print STDERR "Warning(${file}:$.): suspicious ending line: $_";
2456 ++$warnings;
2457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
2459 $prototype = "";
2460 $state = 3;
2461 $brcount = 0;
Randy Dunlap232acbc2006-06-25 05:47:48 -07002462# print STDERR "end of doc comment, looking for prototype\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 } elsif (/$doc_content/) {
2464 # miguel-style comment kludge, look for blank lines after
2465 # @parameter line to signify start of description
Johannes Weiner64231332009-09-17 19:26:53 -07002466 if ($1 eq "") {
2467 if ($section =~ m/^@/ || $section eq $section_context) {
2468 dump_section($file, $section, xml_escape($contents));
2469 $section = $section_default;
2470 $contents = "";
2471 } else {
2472 $contents .= "\n";
2473 }
2474 $in_purpose = 0;
2475 } elsif ($in_purpose == 1) {
2476 # Continued declaration purpose
2477 chomp($declaration_purpose);
2478 $declaration_purpose .= " " . xml_escape($1);
Daniel Santos12ae6772012-10-04 17:15:10 -07002479 $declaration_purpose =~ s/\s+/ /g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 } else {
Randy Dunlapb9d973282009-06-09 08:50:38 -07002481 $contents .= $1 . "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 }
2483 } else {
2484 # i dont know - bad line? ignore.
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002485 print STDERR "Warning(${file}:$.): bad line: $_";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 ++$warnings;
2487 }
Randy Dunlap232acbc2006-06-25 05:47:48 -07002488 } elsif ($state == 3) { # scanning for function '{' (end of prototype)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 if ($decl_type eq 'function') {
Randy Dunlap3c308792007-05-08 00:24:39 -07002490 process_state3_function($_, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 } else {
Randy Dunlap3c308792007-05-08 00:24:39 -07002492 process_state3_type($_, $file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 }
2494 } elsif ($state == 4) {
2495 # Documentation block
Randy Dunlap3c308792007-05-08 00:24:39 -07002496 if (/$doc_block/) {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07002497 dump_doc_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 $contents = "";
2499 $function = "";
2500 %constants = ();
2501 %parameterdescs = ();
2502 %parametertypes = ();
2503 @parameterlist = ();
2504 %sections = ();
2505 @sectionlist = ();
2506 $prototype = "";
2507 if ( $1 eq "" ) {
2508 $section = $section_intro;
2509 } else {
2510 $section = $1;
2511 }
Randy Dunlap3c308792007-05-08 00:24:39 -07002512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 elsif (/$doc_end/)
2514 {
Randy Dunlap94dc7ad2008-04-28 02:16:34 -07002515 dump_doc_section($file, $section, xml_escape($contents));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 $contents = "";
2517 $function = "";
2518 %constants = ();
2519 %parameterdescs = ();
2520 %parametertypes = ();
2521 @parameterlist = ();
2522 %sections = ();
2523 @sectionlist = ();
2524 $prototype = "";
2525 $state = 0;
2526 }
2527 elsif (/$doc_content/)
2528 {
2529 if ( $1 eq "" )
2530 {
2531 $contents .= $blankline;
2532 }
2533 else
2534 {
2535 $contents .= $1 . "\n";
Randy Dunlap3c3b8092006-02-01 03:06:58 -08002536 }
Randy Dunlap3c308792007-05-08 00:24:39 -07002537 }
2538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 }
2540 if ($initial_section_counter == $section_counter) {
2541 print STDERR "Warning(${file}): no structured comments found\n";
Johannes Berge946c43a2013-11-12 15:11:12 -08002542 if (($function_only == 1) && ($show_not_found == 1)) {
2543 print STDERR " Was looking for '$_'.\n" for keys %function_table;
2544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 if ($output_mode eq "xml") {
2546 # The template wants at least one RefEntry here; make one.
2547 print "<refentry>\n";
2548 print " <refnamediv>\n";
2549 print " <refname>\n";
2550 print " ${file}\n";
2551 print " </refname>\n";
2552 print " <refpurpose>\n";
2553 print " Document generation inconsistency\n";
2554 print " </refpurpose>\n";
2555 print " </refnamediv>\n";
2556 print " <refsect1>\n";
2557 print " <title>\n";
2558 print " Oops\n";
2559 print " </title>\n";
2560 print " <warning>\n";
2561 print " <para>\n";
2562 print " The template for this document tried to insert\n";
2563 print " the structured comment from the file\n";
2564 print " <filename>${file}</filename> at this point,\n";
2565 print " but none was found.\n";
2566 print " This dummy section is inserted to allow\n";
2567 print " generation to continue.\n";
2568 print " </para>\n";
2569 print " </warning>\n";
2570 print " </refsect1>\n";
2571 print "</refentry>\n";
2572 }
2573 }
2574}
Randy Dunlap8484baa2011-01-05 16:28:43 -08002575
2576
2577$kernelversion = get_kernel_version();
2578
2579# generate a sequence of code that will splice in highlighting information
2580# using the s// operator.
2581foreach my $pattern (keys %highlights) {
2582# print STDERR "scanning pattern:$pattern, highlight:($highlights{$pattern})\n";
2583 $dohighlight .= "\$contents =~ s:$pattern:$highlights{$pattern}:gs;\n";
2584}
2585
2586# Read the file that maps relative names to absolute names for
2587# separate source and object directories and for shadow trees.
2588if (open(SOURCE_MAP, "<.tmp_filelist.txt")) {
2589 my ($relname, $absname);
2590 while(<SOURCE_MAP>) {
2591 chop();
2592 ($relname, $absname) = (split())[0..1];
2593 $relname =~ s:^/+::;
2594 $source_map{$relname} = $absname;
2595 }
2596 close(SOURCE_MAP);
2597}
2598
2599foreach (@ARGV) {
2600 chomp;
2601 process_file($_);
2602}
2603if ($verbose && $errors) {
2604 print STDERR "$errors errors\n";
2605}
2606if ($verbose && $warnings) {
2607 print STDERR "$warnings warnings\n";
2608}
2609
2610exit($errors);