Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #!/usr/bin/perl -w |
| 2 | |
| 3 | use 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 Dunlap | 70c95b0 | 2012-01-21 10:31:54 -0800 | [diff] [blame] | 8 | ## Copyright (C) 2005-2012 Randy Dunlap ## |
Dan Luedtke | 1b40c19 | 2012-08-12 10:46:15 +0200 | [diff] [blame] | 9 | ## Copyright (C) 2012 Dan Luedtke ## |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | ## ## |
| 11 | ## #define enhancements by Armin Kuster <akuster@mvista.com> ## |
| 12 | ## Copyright (c) 2000 MontaVista Software, Inc. ## |
| 13 | ## ## |
| 14 | ## This software falls under the GNU General Public License. ## |
| 15 | ## Please read the COPYING file for more information ## |
| 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | # 18/01/2001 - Cleanups |
| 18 | # Functions prototyped as foo(void) same as foo() |
| 19 | # Stop eval'ing where we don't need to. |
| 20 | # -- huggie@earth.li |
| 21 | |
| 22 | # 27/06/2001 - Allowed whitespace after initial "/**" and |
| 23 | # allowed comments before function declarations. |
| 24 | # -- Christian Kreibich <ck@whoop.org> |
| 25 | |
| 26 | # Still to do: |
| 27 | # - add perldoc documentation |
| 28 | # - Look more closely at some of the scarier bits :) |
| 29 | |
| 30 | # 26/05/2001 - Support for separate source and object trees. |
| 31 | # Return error code. |
| 32 | # Keith Owens <kaos@ocs.com.au> |
| 33 | |
| 34 | # 23/09/2001 - Added support for typedefs, structs, enums and unions |
| 35 | # Support for Context section; can be terminated using empty line |
| 36 | # Small fixes (like spaces vs. \s in regex) |
| 37 | # -- Tim Jansen <tim@tjansen.de> |
| 38 | |
Dan Luedtke | 1b40c19 | 2012-08-12 10:46:15 +0200 | [diff] [blame] | 39 | # 25/07/2012 - Added support for HTML5 |
| 40 | # -- Dan Luedtke <mail@danrl.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Jani Nikula | fadc0b3 | 2016-05-12 16:15:36 +0300 | [diff] [blame] | 42 | sub usage { |
| 43 | my $message = <<"EOF"; |
| 44 | Usage: $0 [OPTION ...] FILE ... |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Jani Nikula | fadc0b3 | 2016-05-12 16:15:36 +0300 | [diff] [blame] | 46 | Read C language source or header FILEs, extract embedded documentation comments, |
| 47 | and print formatted documentation to standard output. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Jani Nikula | fadc0b3 | 2016-05-12 16:15:36 +0300 | [diff] [blame] | 49 | The documentation comments are identified by "/**" opening comment mark. See |
| 50 | Documentation/kernel-doc-nano-HOWTO.txt for the documentation comment syntax. |
| 51 | |
| 52 | Output format selection (mutually exclusive): |
| 53 | -docbook Output DocBook format. |
| 54 | -html Output HTML format. |
| 55 | -html5 Output HTML5 format. |
| 56 | -list Output symbol list format. This is for use by docproc. |
| 57 | -man Output troff manual page format. This is the default. |
Jonathan Corbet | c0d1b6e | 2016-05-12 16:15:37 +0300 | [diff] [blame] | 58 | -rst Output reStructuredText format. |
Jani Nikula | fadc0b3 | 2016-05-12 16:15:36 +0300 | [diff] [blame] | 59 | -text Output plain text format. |
| 60 | |
| 61 | Output selection (mutually exclusive): |
Jani Nikula | 86ae2e3 | 2016-01-21 13:05:22 +0200 | [diff] [blame] | 62 | -export Only output documentation for symbols that have been |
| 63 | exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL() |
| 64 | in the same FILE. |
| 65 | -internal Only output documentation for symbols that have NOT been |
| 66 | exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL() |
| 67 | in the same FILE. |
Jani Nikula | fadc0b3 | 2016-05-12 16:15:36 +0300 | [diff] [blame] | 68 | -function NAME Only output documentation for the given function(s) |
| 69 | or DOC: section title(s). All other functions and DOC: |
| 70 | sections are ignored. May be specified multiple times. |
| 71 | -nofunction NAME Do NOT output documentation for the given function(s); |
| 72 | only output documentation for the other functions and |
| 73 | DOC: sections. May be specified multiple times. |
| 74 | |
| 75 | Output selection modifiers: |
| 76 | -no-doc-sections Do not output DOC: sections. |
| 77 | |
| 78 | Other parameters: |
| 79 | -v Verbose output, more warnings and other information. |
| 80 | -h Print this help. |
| 81 | |
| 82 | EOF |
| 83 | print $message; |
| 84 | exit 1; |
| 85 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
| 87 | # |
| 88 | # format of comments. |
| 89 | # In the following table, (...)? signifies optional structure. |
| 90 | # (...)* signifies 0 or more structure elements |
| 91 | # /** |
| 92 | # * function_name(:)? (- short description)? |
| 93 | # (* @parameterx: (description of parameter x)?)* |
| 94 | # (* a blank line)? |
| 95 | # * (Description:)? (Description of function)? |
| 96 | # * (section header: (section description)? )* |
| 97 | # (*)?*/ |
| 98 | # |
| 99 | # So .. the trivial example would be: |
| 100 | # |
| 101 | # /** |
| 102 | # * my_function |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 103 | # */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | # |
Randy Dunlap | 891dcd2 | 2007-02-10 01:45:53 -0800 | [diff] [blame] | 105 | # If the Description: header tag is omitted, then there must be a blank line |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | # after the last parameter specification. |
| 107 | # e.g. |
| 108 | # /** |
| 109 | # * my_function - does my stuff |
| 110 | # * @my_arg: its mine damnit |
| 111 | # * |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 112 | # * Does my stuff explained. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | # */ |
| 114 | # |
| 115 | # or, could also use: |
| 116 | # /** |
| 117 | # * my_function - does my stuff |
| 118 | # * @my_arg: its mine damnit |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 119 | # * Description: Does my stuff explained. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | # */ |
| 121 | # etc. |
| 122 | # |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 123 | # Besides functions you can also write documentation for structs, unions, |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 124 | # enums and typedefs. Instead of the function name you must write the name |
| 125 | # of the declaration; the struct/union/enum/typedef must always precede |
| 126 | # the name. Nesting of declarations is not supported. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | # Use the argument mechanism to document members or constants. |
| 128 | # e.g. |
| 129 | # /** |
| 130 | # * struct my_struct - short description |
| 131 | # * @a: first member |
| 132 | # * @b: second member |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 133 | # * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | # * Longer description |
| 135 | # */ |
| 136 | # struct my_struct { |
| 137 | # int a; |
| 138 | # int b; |
Martin Waitz | aeec46b | 2005-11-13 16:08:13 -0800 | [diff] [blame] | 139 | # /* private: */ |
| 140 | # int c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | # }; |
| 142 | # |
| 143 | # All descriptions can be multiline, except the short function description. |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 144 | # |
Danilo Cesar Lemes de Paula | a4c6ebe | 2015-08-04 09:04:08 -0300 | [diff] [blame] | 145 | # For really longs structs, you can also describe arguments inside the |
| 146 | # body of the struct. |
| 147 | # eg. |
| 148 | # /** |
| 149 | # * struct my_struct - short description |
| 150 | # * @a: first member |
| 151 | # * @b: second member |
| 152 | # * |
| 153 | # * Longer description |
| 154 | # */ |
| 155 | # struct my_struct { |
| 156 | # int a; |
| 157 | # int b; |
| 158 | # /** |
| 159 | # * @c: This is longer description of C |
| 160 | # * |
| 161 | # * You can use paragraphs to describe arguments |
| 162 | # * using this method. |
| 163 | # */ |
| 164 | # int c; |
| 165 | # }; |
| 166 | # |
| 167 | # This should be use only for struct/enum members. |
| 168 | # |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 169 | # You can also add additional sections. When documenting kernel functions you |
| 170 | # should document the "Context:" of the function, e.g. whether the functions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | # can be called form interrupts. Unlike other sections you can end it with an |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 172 | # empty line. |
Yacine Belkadi | 4092bac | 2012-11-26 22:22:27 +0100 | [diff] [blame] | 173 | # A non-void function should have a "Return:" section describing the return |
| 174 | # value(s). |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 175 | # Example-sections should contain the string EXAMPLE so that they are marked |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | # appropriately in DocBook. |
| 177 | # |
| 178 | # Example: |
| 179 | # /** |
| 180 | # * user_function - function that can only be called in user context |
| 181 | # * @a: some argument |
| 182 | # * Context: !in_interrupt() |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 183 | # * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | # * Some description |
| 185 | # * Example: |
| 186 | # * user_function(22); |
| 187 | # */ |
| 188 | # ... |
| 189 | # |
| 190 | # |
| 191 | # All descriptive text is further processed, scanning for the following special |
| 192 | # patterns, which are highlighted appropriately. |
| 193 | # |
| 194 | # 'funcname()' - function |
| 195 | # '$ENVVAR' - environmental variable |
| 196 | # '&struct_name' - name of a structure (up to two words including 'struct') |
| 197 | # '@parameter' - name of a parameter |
| 198 | # '%CONST' - name of a constant. |
| 199 | |
Randy Dunlap | 8484baa | 2011-01-05 16:28:43 -0800 | [diff] [blame] | 200 | ## init lots of data |
| 201 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | my $errors = 0; |
| 203 | my $warnings = 0; |
Randy Dunlap | 5f8c7c9 | 2007-07-19 01:48:24 -0700 | [diff] [blame] | 204 | my $anon_struct_union = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
| 206 | # match expressions used to find embedded type information |
| 207 | my $type_constant = '\%([-_\w]+)'; |
| 208 | my $type_func = '(\w+)\(\)'; |
| 209 | my $type_param = '\@(\w+)'; |
Randy Dunlap | 3eb014a | 2007-05-08 00:29:51 -0700 | [diff] [blame] | 210 | my $type_struct = '\&((struct\s*)*[_\w]+)'; |
Randy Dunlap | 6b5b55f | 2007-10-16 23:31:20 -0700 | [diff] [blame] | 211 | my $type_struct_xml = '\\&((struct\s*)*[_\w]+)'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | my $type_env = '(\$\w+)'; |
Jonathan Corbet | c0d1b6e | 2016-05-12 16:15:37 +0300 | [diff] [blame] | 213 | my $type_enum_full = '\&(enum)\s*([_\w]+)'; |
| 214 | my $type_struct_full = '\&(struct)\s*([_\w]+)'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
| 216 | # Output conversion substitutions. |
| 217 | # One for each output format |
| 218 | |
| 219 | # these work fairly well |
Danilo Cesar Lemes de Paula | 4d73270 | 2015-09-07 17:01:59 -0300 | [diff] [blame] | 220 | my @highlights_html = ( |
| 221 | [$type_constant, "<i>\$1</i>"], |
| 222 | [$type_func, "<b>\$1</b>"], |
| 223 | [$type_struct_xml, "<i>\$1</i>"], |
| 224 | [$type_env, "<b><i>\$1</i></b>"], |
| 225 | [$type_param, "<tt><b>\$1</b></tt>"] |
| 226 | ); |
Randy Dunlap | 6b5b55f | 2007-10-16 23:31:20 -0700 | [diff] [blame] | 227 | my $local_lt = "\\\\\\\\lt:"; |
| 228 | my $local_gt = "\\\\\\\\gt:"; |
| 229 | my $blankline_html = $local_lt . "p" . $local_gt; # was "<p>" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
Dan Luedtke | 1b40c19 | 2012-08-12 10:46:15 +0200 | [diff] [blame] | 231 | # html version 5 |
Danilo Cesar Lemes de Paula | 4d73270 | 2015-09-07 17:01:59 -0300 | [diff] [blame] | 232 | my @highlights_html5 = ( |
| 233 | [$type_constant, "<span class=\"const\">\$1</span>"], |
| 234 | [$type_func, "<span class=\"func\">\$1</span>"], |
| 235 | [$type_struct_xml, "<span class=\"struct\">\$1</span>"], |
| 236 | [$type_env, "<span class=\"env\">\$1</span>"], |
| 237 | [$type_param, "<span class=\"param\">\$1</span>]"] |
| 238 | ); |
Dan Luedtke | 1b40c19 | 2012-08-12 10:46:15 +0200 | [diff] [blame] | 239 | my $blankline_html5 = $local_lt . "br /" . $local_gt; |
| 240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | # XML, docbook format |
Danilo Cesar Lemes de Paula | 4d73270 | 2015-09-07 17:01:59 -0300 | [diff] [blame] | 242 | my @highlights_xml = ( |
| 243 | ["([^=])\\\"([^\\\"<]+)\\\"", "\$1<quote>\$2</quote>"], |
| 244 | [$type_constant, "<constant>\$1</constant>"], |
| 245 | [$type_struct_xml, "<structname>\$1</structname>"], |
| 246 | [$type_param, "<parameter>\$1</parameter>"], |
| 247 | [$type_func, "<function>\$1</function>"], |
| 248 | [$type_env, "<envar>\$1</envar>"] |
| 249 | ); |
Johannes Berg | 5c98fc0 | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 250 | my $blankline_xml = $local_lt . "/para" . $local_gt . $local_lt . "para" . $local_gt . "\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
| 252 | # gnome, docbook format |
Danilo Cesar Lemes de Paula | 4d73270 | 2015-09-07 17:01:59 -0300 | [diff] [blame] | 253 | my @highlights_gnome = ( |
| 254 | [$type_constant, "<replaceable class=\"option\">\$1</replaceable>"], |
| 255 | [$type_func, "<function>\$1</function>"], |
| 256 | [$type_struct, "<structname>\$1</structname>"], |
| 257 | [$type_env, "<envar>\$1</envar>"], |
| 258 | [$type_param, "<parameter>\$1</parameter>" ] |
| 259 | ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | my $blankline_gnome = "</para><para>\n"; |
| 261 | |
| 262 | # these are pretty rough |
Danilo Cesar Lemes de Paula | 4d73270 | 2015-09-07 17:01:59 -0300 | [diff] [blame] | 263 | my @highlights_man = ( |
| 264 | [$type_constant, "\$1"], |
| 265 | [$type_func, "\\\\fB\$1\\\\fP"], |
| 266 | [$type_struct, "\\\\fI\$1\\\\fP"], |
| 267 | [$type_param, "\\\\fI\$1\\\\fP"] |
| 268 | ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | my $blankline_man = ""; |
| 270 | |
| 271 | # text-mode |
Danilo Cesar Lemes de Paula | 4d73270 | 2015-09-07 17:01:59 -0300 | [diff] [blame] | 272 | my @highlights_text = ( |
| 273 | [$type_constant, "\$1"], |
| 274 | [$type_func, "\$1"], |
| 275 | [$type_struct, "\$1"], |
| 276 | [$type_param, "\$1"] |
| 277 | ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | my $blankline_text = ""; |
| 279 | |
Jonathan Corbet | c0d1b6e | 2016-05-12 16:15:37 +0300 | [diff] [blame] | 280 | # rst-mode |
| 281 | my @highlights_rst = ( |
| 282 | [$type_constant, "``\$1``"], |
| 283 | [$type_func, "\\:c\\:func\\:`\$1`"], |
Jani Nikula | 6285097 | 2016-05-12 16:15:38 +0300 | [diff] [blame] | 284 | [$type_struct_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"], |
| 285 | [$type_enum_full, "\\:c\\:type\\:`\$1 \$2 <\$2>`"], |
| 286 | [$type_struct, "\\:c\\:type\\:`struct \$1 <\$1>`"], |
Jonathan Corbet | c0d1b6e | 2016-05-12 16:15:37 +0300 | [diff] [blame] | 287 | [$type_param, "**\$1**"] |
| 288 | ); |
| 289 | my $blankline_rst = "\n"; |
| 290 | |
Johannes Berg | eda603f | 2010-09-11 15:55:22 -0700 | [diff] [blame] | 291 | # list mode |
Danilo Cesar Lemes de Paula | 4d73270 | 2015-09-07 17:01:59 -0300 | [diff] [blame] | 292 | my @highlights_list = ( |
| 293 | [$type_constant, "\$1"], |
| 294 | [$type_func, "\$1"], |
| 295 | [$type_struct, "\$1"], |
| 296 | [$type_param, "\$1"] |
| 297 | ); |
Johannes Berg | eda603f | 2010-09-11 15:55:22 -0700 | [diff] [blame] | 298 | my $blankline_list = ""; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | # read arguments |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 301 | if ($#ARGV == -1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | usage(); |
| 303 | } |
| 304 | |
Randy Dunlap | 8484baa | 2011-01-05 16:28:43 -0800 | [diff] [blame] | 305 | my $kernelversion; |
| 306 | my $dohighlight = ""; |
| 307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | my $verbose = 0; |
| 309 | my $output_mode = "man"; |
Daniel Santos | e314ba3 | 2012-10-04 17:15:08 -0700 | [diff] [blame] | 310 | my $output_preformatted = 0; |
Johannes Berg | 4b44595 | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 311 | my $no_doc_sections = 0; |
Danilo Cesar Lemes de Paula | 4d73270 | 2015-09-07 17:01:59 -0300 | [diff] [blame] | 312 | my @highlights = @highlights_man; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | my $blankline = $blankline_man; |
| 314 | my $modulename = "Kernel API"; |
Jani Nikula | b6c3f45 | 2016-05-29 22:19:35 +0300 | [diff] [blame^] | 315 | |
| 316 | use constant { |
| 317 | OUTPUT_ALL => 0, # output all symbols and doc sections |
| 318 | OUTPUT_INCLUDE => 1, # output only specified symbols |
| 319 | OUTPUT_EXCLUDE => 2, # output everything except specified symbols |
| 320 | OUTPUT_EXPORTED => 3, # output exported symbols |
| 321 | OUTPUT_INTERNAL => 4, # output non-exported symbols |
| 322 | }; |
| 323 | my $output_selection = OUTPUT_ALL; |
Ben Hutchings | b2c4105 | 2015-07-08 20:07:16 +0100 | [diff] [blame] | 324 | my $show_not_found = 0; |
| 325 | |
| 326 | my @build_time; |
| 327 | if (defined($ENV{'KBUILD_BUILD_TIMESTAMP'}) && |
| 328 | (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') { |
| 329 | @build_time = gmtime($seconds); |
| 330 | } else { |
| 331 | @build_time = localtime; |
| 332 | } |
| 333 | |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 334 | my $man_date = ('January', 'February', 'March', 'April', 'May', 'June', |
| 335 | 'July', 'August', 'September', 'October', |
Ben Hutchings | b2c4105 | 2015-07-08 20:07:16 +0100 | [diff] [blame] | 336 | 'November', 'December')[$build_time[4]] . |
| 337 | " " . ($build_time[5]+1900); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | |
Randy Dunlap | 8484baa | 2011-01-05 16:28:43 -0800 | [diff] [blame] | 339 | # Essentially these are globals. |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 340 | # They probably want to be tidied up, made more localised or something. |
| 341 | # CAVEAT EMPTOR! Some of the others I localised may not want to be, which |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | # could cause "use of undefined value" or other bugs. |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 343 | my ($function, %function_table, %parametertypes, $declaration_purpose); |
| 344 | my ($type, $declaration_name, $return_type); |
Ilya Dryomov | 1c32fd0 | 2010-02-26 13:06:03 -0800 | [diff] [blame] | 345 | my ($newsection, $newcontents, $prototype, $brcount, %source_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
Randy Dunlap | bd0e88e | 2008-03-13 12:32:43 -0700 | [diff] [blame] | 347 | if (defined($ENV{'KBUILD_VERBOSE'})) { |
| 348 | $verbose = "$ENV{'KBUILD_VERBOSE'}"; |
| 349 | } |
| 350 | |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 351 | # Generated docbook code is inserted in a template at a point where |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | # docbook v3.1 requires a non-zero sequence of RefEntry's; see: |
| 353 | # http://www.oasis-open.org/docbook/documentation/reference/html/refentry.html |
| 354 | # We keep track of number of generated entries and generate a dummy |
| 355 | # if needs be to ensure the expanded template can be postprocessed |
| 356 | # into html. |
| 357 | my $section_counter = 0; |
| 358 | |
| 359 | my $lineprefix=""; |
| 360 | |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 361 | # Parser states |
| 362 | use constant { |
| 363 | STATE_NORMAL => 0, # normal code |
| 364 | STATE_NAME => 1, # looking for function name |
| 365 | STATE_FIELD => 2, # scanning field start |
| 366 | STATE_PROTO => 3, # scanning prototype |
| 367 | STATE_DOCBLOCK => 4, # documentation block |
| 368 | STATE_INLINE => 5, # gathering documentation outside main block |
| 369 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | my $state; |
Randy Dunlap | 850622d | 2006-06-25 05:48:55 -0700 | [diff] [blame] | 371 | my $in_doc_sect; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 373 | # Inline documentation state |
| 374 | use constant { |
| 375 | STATE_INLINE_NA => 0, # not applicable ($state != STATE_INLINE) |
| 376 | STATE_INLINE_NAME => 1, # looking for member name (@foo:) |
| 377 | STATE_INLINE_TEXT => 2, # looking for member documentation |
| 378 | STATE_INLINE_END => 3, # done |
| 379 | STATE_INLINE_ERROR => 4, # error - Comment without header was found. |
| 380 | # Spit a warning as it's not |
| 381 | # proper kernel-doc and ignore the rest. |
| 382 | }; |
| 383 | my $inline_doc_state; |
Danilo Cesar Lemes de Paula | a4c6ebe | 2015-08-04 09:04:08 -0300 | [diff] [blame] | 384 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | #declaration types: can be |
| 386 | # 'function', 'struct', 'union', 'enum', 'typedef' |
| 387 | my $decl_type; |
| 388 | |
| 389 | my $doc_special = "\@\%\$\&"; |
| 390 | |
| 391 | my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start. |
| 392 | my $doc_end = '\*/'; |
| 393 | my $doc_com = '\s*\*\s*'; |
Daniel Santos | 12ae677 | 2012-10-04 17:15:10 -0700 | [diff] [blame] | 394 | my $doc_com_body = '\s*\* ?'; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 395 | my $doc_decl = $doc_com . '(\w+)'; |
| 396 | my $doc_sect = $doc_com . '([' . $doc_special . ']?[\w\s]+):(.*)'; |
Daniel Santos | 12ae677 | 2012-10-04 17:15:10 -0700 | [diff] [blame] | 397 | my $doc_content = $doc_com_body . '(.*)'; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 398 | my $doc_block = $doc_com . 'DOC:\s*(.*)?'; |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 399 | my $doc_inline_start = '^\s*/\*\*\s*$'; |
| 400 | my $doc_inline_sect = '\s*\*\s*(@[\w\s]+):(.*)'; |
| 401 | my $doc_inline_end = '^\s*\*/\s*$'; |
Jani Nikula | 86ae2e3 | 2016-01-21 13:05:22 +0200 | [diff] [blame] | 402 | my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | |
| 404 | my %constants; |
| 405 | my %parameterdescs; |
| 406 | my @parameterlist; |
| 407 | my %sections; |
| 408 | my @sectionlist; |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 409 | my $sectcheck; |
| 410 | my $struct_actual; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | |
| 412 | my $contents = ""; |
| 413 | my $section_default = "Description"; # default section |
| 414 | my $section_intro = "Introduction"; |
| 415 | my $section = $section_default; |
| 416 | my $section_context = "Context"; |
Yacine Belkadi | 4092bac | 2012-11-26 22:22:27 +0100 | [diff] [blame] | 417 | my $section_return = "Return"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | |
| 419 | my $undescribed = "-- undescribed --"; |
| 420 | |
| 421 | reset_state(); |
| 422 | |
| 423 | while ($ARGV[0] =~ m/^-(.*)/) { |
| 424 | my $cmd = shift @ARGV; |
| 425 | if ($cmd eq "-html") { |
| 426 | $output_mode = "html"; |
Danilo Cesar Lemes de Paula | 4d73270 | 2015-09-07 17:01:59 -0300 | [diff] [blame] | 427 | @highlights = @highlights_html; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | $blankline = $blankline_html; |
Dan Luedtke | 1b40c19 | 2012-08-12 10:46:15 +0200 | [diff] [blame] | 429 | } elsif ($cmd eq "-html5") { |
| 430 | $output_mode = "html5"; |
Danilo Cesar Lemes de Paula | 4d73270 | 2015-09-07 17:01:59 -0300 | [diff] [blame] | 431 | @highlights = @highlights_html5; |
Dan Luedtke | 1b40c19 | 2012-08-12 10:46:15 +0200 | [diff] [blame] | 432 | $blankline = $blankline_html5; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | } elsif ($cmd eq "-man") { |
| 434 | $output_mode = "man"; |
Danilo Cesar Lemes de Paula | 4d73270 | 2015-09-07 17:01:59 -0300 | [diff] [blame] | 435 | @highlights = @highlights_man; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | $blankline = $blankline_man; |
| 437 | } elsif ($cmd eq "-text") { |
| 438 | $output_mode = "text"; |
Danilo Cesar Lemes de Paula | 4d73270 | 2015-09-07 17:01:59 -0300 | [diff] [blame] | 439 | @highlights = @highlights_text; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | $blankline = $blankline_text; |
Jonathan Corbet | c0d1b6e | 2016-05-12 16:15:37 +0300 | [diff] [blame] | 441 | } elsif ($cmd eq "-rst") { |
| 442 | $output_mode = "rst"; |
| 443 | @highlights = @highlights_rst; |
| 444 | $blankline = $blankline_rst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | } elsif ($cmd eq "-docbook") { |
| 446 | $output_mode = "xml"; |
Danilo Cesar Lemes de Paula | 4d73270 | 2015-09-07 17:01:59 -0300 | [diff] [blame] | 447 | @highlights = @highlights_xml; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | $blankline = $blankline_xml; |
Johannes Berg | eda603f | 2010-09-11 15:55:22 -0700 | [diff] [blame] | 449 | } elsif ($cmd eq "-list") { |
| 450 | $output_mode = "list"; |
Danilo Cesar Lemes de Paula | 4d73270 | 2015-09-07 17:01:59 -0300 | [diff] [blame] | 451 | @highlights = @highlights_list; |
Johannes Berg | eda603f | 2010-09-11 15:55:22 -0700 | [diff] [blame] | 452 | $blankline = $blankline_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | } elsif ($cmd eq "-gnome") { |
| 454 | $output_mode = "gnome"; |
Danilo Cesar Lemes de Paula | 4d73270 | 2015-09-07 17:01:59 -0300 | [diff] [blame] | 455 | @highlights = @highlights_gnome; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | $blankline = $blankline_gnome; |
| 457 | } elsif ($cmd eq "-module") { # not needed for XML, inherits from calling document |
| 458 | $modulename = shift @ARGV; |
| 459 | } elsif ($cmd eq "-function") { # to only output specific functions |
Jani Nikula | b6c3f45 | 2016-05-29 22:19:35 +0300 | [diff] [blame^] | 460 | $output_selection = OUTPUT_INCLUDE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | $function = shift @ARGV; |
| 462 | $function_table{$function} = 1; |
Jani Nikula | b6c3f45 | 2016-05-29 22:19:35 +0300 | [diff] [blame^] | 463 | } elsif ($cmd eq "-nofunction") { # output all except specific functions |
| 464 | $output_selection = OUTPUT_EXCLUDE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | $function = shift @ARGV; |
| 466 | $function_table{$function} = 1; |
Jani Nikula | 86ae2e3 | 2016-01-21 13:05:22 +0200 | [diff] [blame] | 467 | } elsif ($cmd eq "-export") { # only exported symbols |
Jani Nikula | b6c3f45 | 2016-05-29 22:19:35 +0300 | [diff] [blame^] | 468 | $output_selection = OUTPUT_EXPORTED; |
Jani Nikula | 86ae2e3 | 2016-01-21 13:05:22 +0200 | [diff] [blame] | 469 | %function_table = () |
| 470 | } elsif ($cmd eq "-internal") { # only non-exported symbols |
Jani Nikula | b6c3f45 | 2016-05-29 22:19:35 +0300 | [diff] [blame^] | 471 | $output_selection = OUTPUT_INTERNAL; |
Jani Nikula | 86ae2e3 | 2016-01-21 13:05:22 +0200 | [diff] [blame] | 472 | %function_table = () |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | } elsif ($cmd eq "-v") { |
| 474 | $verbose = 1; |
| 475 | } elsif (($cmd eq "-h") || ($cmd eq "--help")) { |
| 476 | usage(); |
Johannes Berg | 4b44595 | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 477 | } elsif ($cmd eq '-no-doc-sections') { |
| 478 | $no_doc_sections = 1; |
Johannes Berg | e946c43a | 2013-11-12 15:11:12 -0800 | [diff] [blame] | 479 | } elsif ($cmd eq '-show-not-found') { |
| 480 | $show_not_found = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | } |
| 482 | } |
| 483 | |
Randy Dunlap | 8484baa | 2011-01-05 16:28:43 -0800 | [diff] [blame] | 484 | # continue execution near EOF; |
| 485 | |
Borislav Petkov | 53f049f | 2007-05-08 00:30:54 -0700 | [diff] [blame] | 486 | # get kernel version from env |
| 487 | sub get_kernel_version() { |
Johannes Berg | 1b9bc22 | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 488 | my $version = 'unknown kernel version'; |
Borislav Petkov | 53f049f | 2007-05-08 00:30:54 -0700 | [diff] [blame] | 489 | |
| 490 | if (defined($ENV{'KERNELVERSION'})) { |
| 491 | $version = $ENV{'KERNELVERSION'}; |
| 492 | } |
| 493 | return $version; |
| 494 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
| 496 | ## |
| 497 | # dumps section contents to arrays/hashes intended for that purpose. |
| 498 | # |
| 499 | sub dump_section { |
Randy Dunlap | 94dc7ad | 2008-04-28 02:16:34 -0700 | [diff] [blame] | 500 | my $file = shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | my $name = shift; |
| 502 | my $contents = join "\n", @_; |
| 503 | |
| 504 | if ($name =~ m/$type_constant/) { |
| 505 | $name = $1; |
| 506 | # print STDERR "constant section '$1' = '$contents'\n"; |
| 507 | $constants{$name} = $contents; |
| 508 | } elsif ($name =~ m/$type_param/) { |
| 509 | # print STDERR "parameter def '$1' = '$contents'\n"; |
| 510 | $name = $1; |
| 511 | $parameterdescs{$name} = $contents; |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 512 | $sectcheck = $sectcheck . $name . " "; |
Randy Dunlap | ced6909 | 2008-12-01 13:14:03 -0800 | [diff] [blame] | 513 | } elsif ($name eq "@\.\.\.") { |
| 514 | # print STDERR "parameter def '...' = '$contents'\n"; |
| 515 | $name = "..."; |
| 516 | $parameterdescs{$name} = $contents; |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 517 | $sectcheck = $sectcheck . $name . " "; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | } else { |
| 519 | # print STDERR "other section '$name' = '$contents'\n"; |
Randy Dunlap | 94dc7ad | 2008-04-28 02:16:34 -0700 | [diff] [blame] | 520 | if (defined($sections{$name}) && ($sections{$name} ne "")) { |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 521 | print STDERR "${file}:$.: error: duplicate section name '$name'\n"; |
Randy Dunlap | 94dc7ad | 2008-04-28 02:16:34 -0700 | [diff] [blame] | 522 | ++$errors; |
| 523 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | $sections{$name} = $contents; |
| 525 | push @sectionlist, $name; |
| 526 | } |
| 527 | } |
| 528 | |
| 529 | ## |
Johannes Berg | b112e0f | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 530 | # dump DOC: section after checking that it should go out |
| 531 | # |
| 532 | sub dump_doc_section { |
Randy Dunlap | 94dc7ad | 2008-04-28 02:16:34 -0700 | [diff] [blame] | 533 | my $file = shift; |
Johannes Berg | b112e0f | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 534 | my $name = shift; |
| 535 | my $contents = join "\n", @_; |
| 536 | |
Johannes Berg | 4b44595 | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 537 | if ($no_doc_sections) { |
| 538 | return; |
| 539 | } |
| 540 | |
Jani Nikula | b6c3f45 | 2016-05-29 22:19:35 +0300 | [diff] [blame^] | 541 | if (($output_selection == OUTPUT_ALL) || |
| 542 | ($output_selection == OUTPUT_INCLUDE && |
| 543 | defined($function_table{$name})) || |
| 544 | ($output_selection == OUTPUT_EXCLUDE && |
| 545 | !defined($function_table{$name}))) |
Johannes Berg | b112e0f | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 546 | { |
Randy Dunlap | 94dc7ad | 2008-04-28 02:16:34 -0700 | [diff] [blame] | 547 | dump_section($file, $name, $contents); |
Johannes Berg | b112e0f | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 548 | output_blockhead({'sectionlist' => \@sectionlist, |
| 549 | 'sections' => \%sections, |
| 550 | 'module' => $modulename, |
Jani Nikula | b6c3f45 | 2016-05-29 22:19:35 +0300 | [diff] [blame^] | 551 | 'content-only' => ($output_selection != OUTPUT_ALL), }); |
Johannes Berg | b112e0f | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 552 | } |
| 553 | } |
| 554 | |
| 555 | ## |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | # output function |
| 557 | # |
| 558 | # parameterdescs, a hash. |
| 559 | # function => "function name" |
| 560 | # parameterlist => @list of parameters |
| 561 | # parameterdescs => %parameter descriptions |
| 562 | # sectionlist => @list of sections |
Randy Dunlap | a21217d | 2007-02-10 01:46:04 -0800 | [diff] [blame] | 563 | # sections => %section descriptions |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 564 | # |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | |
| 566 | sub output_highlight { |
| 567 | my $contents = join "\n",@_; |
| 568 | my $line; |
| 569 | |
| 570 | # DEBUG |
| 571 | # if (!defined $contents) { |
| 572 | # use Carp; |
| 573 | # confess "output_highlight got called with no args?\n"; |
| 574 | # } |
| 575 | |
Dan Luedtke | 1b40c19 | 2012-08-12 10:46:15 +0200 | [diff] [blame] | 576 | if ($output_mode eq "html" || $output_mode eq "html5" || |
| 577 | $output_mode eq "xml") { |
Randy Dunlap | 6b5b55f | 2007-10-16 23:31:20 -0700 | [diff] [blame] | 578 | $contents = local_unescape($contents); |
| 579 | # convert data read & converted thru xml_escape() into &xyz; format: |
Randy Dunlap | 2b35f4d | 2010-11-18 12:27:31 -0800 | [diff] [blame] | 580 | $contents =~ s/\\\\\\/\&/g; |
Randy Dunlap | 6b5b55f | 2007-10-16 23:31:20 -0700 | [diff] [blame] | 581 | } |
Randy Dunlap | 3eb014a | 2007-05-08 00:29:51 -0700 | [diff] [blame] | 582 | # print STDERR "contents b4:$contents\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | eval $dohighlight; |
| 584 | die $@ if $@; |
Randy Dunlap | 3eb014a | 2007-05-08 00:29:51 -0700 | [diff] [blame] | 585 | # print STDERR "contents af:$contents\n"; |
| 586 | |
Dan Luedtke | 1b40c19 | 2012-08-12 10:46:15 +0200 | [diff] [blame] | 587 | # strip whitespaces when generating html5 |
| 588 | if ($output_mode eq "html5") { |
| 589 | $contents =~ s/^\s+//; |
| 590 | $contents =~ s/\s+$//; |
| 591 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | foreach $line (split "\n", $contents) { |
Daniel Santos | 12ae677 | 2012-10-04 17:15:10 -0700 | [diff] [blame] | 593 | if (! $output_preformatted) { |
| 594 | $line =~ s/^\s*//; |
| 595 | } |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 596 | if ($line eq ""){ |
Daniel Santos | e314ba3 | 2012-10-04 17:15:08 -0700 | [diff] [blame] | 597 | if (! $output_preformatted) { |
| 598 | print $lineprefix, local_unescape($blankline); |
| 599 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | } else { |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 601 | $line =~ s/\\\\\\/\&/g; |
Randy Dunlap | cdccb31 | 2007-07-19 01:48:25 -0700 | [diff] [blame] | 602 | if ($output_mode eq "man" && substr($line, 0, 1) eq ".") { |
| 603 | print "\\&$line"; |
| 604 | } else { |
| 605 | print $lineprefix, $line; |
| 606 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | } |
| 608 | print "\n"; |
| 609 | } |
| 610 | } |
| 611 | |
Dan Luedtke | 1b40c19 | 2012-08-12 10:46:15 +0200 | [diff] [blame] | 612 | # output sections in html |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | sub output_section_html(%) { |
| 614 | my %args = %{$_[0]}; |
| 615 | my $section; |
| 616 | |
| 617 | foreach $section (@{$args{'sectionlist'}}) { |
| 618 | print "<h3>$section</h3>\n"; |
| 619 | print "<blockquote>\n"; |
| 620 | output_highlight($args{'sections'}{$section}); |
| 621 | print "</blockquote>\n"; |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 622 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | } |
| 624 | |
| 625 | # output enum in html |
| 626 | sub output_enum_html(%) { |
| 627 | my %args = %{$_[0]}; |
| 628 | my ($parameter); |
| 629 | my $count; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 630 | print "<h2>enum " . $args{'enum'} . "</h2>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 632 | print "<b>enum " . $args{'enum'} . "</b> {<br>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | $count = 0; |
| 634 | foreach $parameter (@{$args{'parameterlist'}}) { |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 635 | print " <b>" . $parameter . "</b>"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | if ($count != $#{$args{'parameterlist'}}) { |
| 637 | $count++; |
| 638 | print ",\n"; |
| 639 | } |
| 640 | print "<br>"; |
| 641 | } |
| 642 | print "};<br>\n"; |
| 643 | |
| 644 | print "<h3>Constants</h3>\n"; |
| 645 | print "<dl>\n"; |
| 646 | foreach $parameter (@{$args{'parameterlist'}}) { |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 647 | print "<dt><b>" . $parameter . "</b>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | print "<dd>"; |
| 649 | output_highlight($args{'parameterdescs'}{$parameter}); |
| 650 | } |
| 651 | print "</dl>\n"; |
| 652 | output_section_html(@_); |
| 653 | print "<hr>\n"; |
| 654 | } |
| 655 | |
Randy Dunlap | d28bee0 | 2006-02-01 03:06:57 -0800 | [diff] [blame] | 656 | # output typedef in html |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | sub output_typedef_html(%) { |
| 658 | my %args = %{$_[0]}; |
| 659 | my ($parameter); |
| 660 | my $count; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 661 | print "<h2>typedef " . $args{'typedef'} . "</h2>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 663 | print "<b>typedef " . $args{'typedef'} . "</b>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | output_section_html(@_); |
| 665 | print "<hr>\n"; |
| 666 | } |
| 667 | |
| 668 | # output struct in html |
| 669 | sub output_struct_html(%) { |
| 670 | my %args = %{$_[0]}; |
| 671 | my ($parameter); |
| 672 | |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 673 | print "<h2>" . $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "</h2>\n"; |
| 674 | print "<b>" . $args{'type'} . " " . $args{'struct'} . "</b> {<br>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 676 | if ($parameter =~ /^#/) { |
| 677 | print "$parameter<br>\n"; |
| 678 | next; |
| 679 | } |
| 680 | my $parameter_name = $parameter; |
| 681 | $parameter_name =~ s/\[.*//; |
| 682 | |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 683 | ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | $type = $args{'parametertypes'}{$parameter}; |
| 685 | if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { |
| 686 | # pointer-to-function |
Randy Dunlap | 3eb014a | 2007-05-08 00:29:51 -0700 | [diff] [blame] | 687 | print " <i>$1</i><b>$parameter</b>) <i>($2)</i>;<br>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | } elsif ($type =~ m/^(.*?)\s*(:.*)/) { |
Randy Dunlap | 3eb014a | 2007-05-08 00:29:51 -0700 | [diff] [blame] | 689 | # bitfield |
| 690 | print " <i>$1</i> <b>$parameter</b>$2;<br>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | } else { |
Randy Dunlap | 3eb014a | 2007-05-08 00:29:51 -0700 | [diff] [blame] | 692 | print " <i>$type</i> <b>$parameter</b>;<br>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | } |
| 694 | } |
| 695 | print "};<br>\n"; |
| 696 | |
| 697 | print "<h3>Members</h3>\n"; |
| 698 | print "<dl>\n"; |
| 699 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 700 | ($parameter =~ /^#/) && next; |
| 701 | |
| 702 | my $parameter_name = $parameter; |
| 703 | $parameter_name =~ s/\[.*//; |
| 704 | |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 705 | ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 706 | print "<dt><b>" . $parameter . "</b>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | print "<dd>"; |
| 708 | output_highlight($args{'parameterdescs'}{$parameter_name}); |
| 709 | } |
| 710 | print "</dl>\n"; |
| 711 | output_section_html(@_); |
| 712 | print "<hr>\n"; |
| 713 | } |
| 714 | |
| 715 | # output function in html |
| 716 | sub output_function_html(%) { |
| 717 | my %args = %{$_[0]}; |
| 718 | my ($parameter, $section); |
| 719 | my $count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 721 | print "<h2>" . $args{'function'} . " - " . $args{'purpose'} . "</h2>\n"; |
| 722 | print "<i>" . $args{'functiontype'} . "</i>\n"; |
| 723 | print "<b>" . $args{'function'} . "</b>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | print "("; |
| 725 | $count = 0; |
| 726 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 727 | $type = $args{'parametertypes'}{$parameter}; |
| 728 | if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { |
| 729 | # pointer-to-function |
| 730 | print "<i>$1</i><b>$parameter</b>) <i>($2)</i>"; |
| 731 | } else { |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 732 | print "<i>" . $type . "</i> <b>" . $parameter . "</b>"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | } |
| 734 | if ($count != $#{$args{'parameterlist'}}) { |
| 735 | $count++; |
| 736 | print ",\n"; |
| 737 | } |
| 738 | } |
| 739 | print ")\n"; |
| 740 | |
| 741 | print "<h3>Arguments</h3>\n"; |
| 742 | print "<dl>\n"; |
| 743 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 744 | my $parameter_name = $parameter; |
| 745 | $parameter_name =~ s/\[.*//; |
| 746 | |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 747 | ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 748 | print "<dt><b>" . $parameter . "</b>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | print "<dd>"; |
| 750 | output_highlight($args{'parameterdescs'}{$parameter_name}); |
| 751 | } |
| 752 | print "</dl>\n"; |
| 753 | output_section_html(@_); |
| 754 | print "<hr>\n"; |
| 755 | } |
| 756 | |
Johannes Berg | b112e0f | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 757 | # output DOC: block header in html |
| 758 | sub output_blockhead_html(%) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | my %args = %{$_[0]}; |
| 760 | my ($parameter, $section); |
| 761 | my $count; |
| 762 | |
| 763 | foreach $section (@{$args{'sectionlist'}}) { |
| 764 | print "<h3>$section</h3>\n"; |
| 765 | print "<ul>\n"; |
| 766 | output_highlight($args{'sections'}{$section}); |
| 767 | print "</ul>\n"; |
| 768 | } |
| 769 | print "<hr>\n"; |
| 770 | } |
| 771 | |
Dan Luedtke | 1b40c19 | 2012-08-12 10:46:15 +0200 | [diff] [blame] | 772 | # output sections in html5 |
| 773 | sub output_section_html5(%) { |
| 774 | my %args = %{$_[0]}; |
| 775 | my $section; |
| 776 | |
| 777 | foreach $section (@{$args{'sectionlist'}}) { |
| 778 | print "<section>\n"; |
| 779 | print "<h1>$section</h1>\n"; |
| 780 | print "<p>\n"; |
| 781 | output_highlight($args{'sections'}{$section}); |
| 782 | print "</p>\n"; |
| 783 | print "</section>\n"; |
| 784 | } |
| 785 | } |
| 786 | |
| 787 | # output enum in html5 |
| 788 | sub output_enum_html5(%) { |
| 789 | my %args = %{$_[0]}; |
| 790 | my ($parameter); |
| 791 | my $count; |
| 792 | my $html5id; |
| 793 | |
| 794 | $html5id = $args{'enum'}; |
| 795 | $html5id =~ s/[^a-zA-Z0-9\-]+/_/g; |
| 796 | print "<article class=\"enum\" id=\"enum:". $html5id . "\">"; |
| 797 | print "<h1>enum " . $args{'enum'} . "</h1>\n"; |
| 798 | print "<ol class=\"code\">\n"; |
| 799 | print "<li>"; |
| 800 | print "<span class=\"keyword\">enum</span> "; |
| 801 | print "<span class=\"identifier\">" . $args{'enum'} . "</span> {"; |
| 802 | print "</li>\n"; |
| 803 | $count = 0; |
| 804 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 805 | print "<li class=\"indent\">"; |
| 806 | print "<span class=\"param\">" . $parameter . "</span>"; |
| 807 | if ($count != $#{$args{'parameterlist'}}) { |
| 808 | $count++; |
| 809 | print ","; |
| 810 | } |
| 811 | print "</li>\n"; |
| 812 | } |
| 813 | print "<li>};</li>\n"; |
| 814 | print "</ol>\n"; |
| 815 | |
| 816 | print "<section>\n"; |
| 817 | print "<h1>Constants</h1>\n"; |
| 818 | print "<dl>\n"; |
| 819 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 820 | print "<dt>" . $parameter . "</dt>\n"; |
| 821 | print "<dd>"; |
| 822 | output_highlight($args{'parameterdescs'}{$parameter}); |
| 823 | print "</dd>\n"; |
| 824 | } |
| 825 | print "</dl>\n"; |
| 826 | print "</section>\n"; |
| 827 | output_section_html5(@_); |
| 828 | print "</article>\n"; |
| 829 | } |
| 830 | |
| 831 | # output typedef in html5 |
| 832 | sub output_typedef_html5(%) { |
| 833 | my %args = %{$_[0]}; |
| 834 | my ($parameter); |
| 835 | my $count; |
| 836 | my $html5id; |
| 837 | |
| 838 | $html5id = $args{'typedef'}; |
| 839 | $html5id =~ s/[^a-zA-Z0-9\-]+/_/g; |
| 840 | print "<article class=\"typedef\" id=\"typedef:" . $html5id . "\">\n"; |
| 841 | print "<h1>typedef " . $args{'typedef'} . "</h1>\n"; |
| 842 | |
| 843 | print "<ol class=\"code\">\n"; |
| 844 | print "<li>"; |
| 845 | print "<span class=\"keyword\">typedef</span> "; |
| 846 | print "<span class=\"identifier\">" . $args{'typedef'} . "</span>"; |
| 847 | print "</li>\n"; |
| 848 | print "</ol>\n"; |
| 849 | output_section_html5(@_); |
| 850 | print "</article>\n"; |
| 851 | } |
| 852 | |
| 853 | # output struct in html5 |
| 854 | sub output_struct_html5(%) { |
| 855 | my %args = %{$_[0]}; |
| 856 | my ($parameter); |
| 857 | my $html5id; |
| 858 | |
| 859 | $html5id = $args{'struct'}; |
| 860 | $html5id =~ s/[^a-zA-Z0-9\-]+/_/g; |
| 861 | print "<article class=\"struct\" id=\"struct:" . $html5id . "\">\n"; |
| 862 | print "<hgroup>\n"; |
| 863 | print "<h1>" . $args{'type'} . " " . $args{'struct'} . "</h1>"; |
| 864 | print "<h2>". $args{'purpose'} . "</h2>\n"; |
| 865 | print "</hgroup>\n"; |
| 866 | print "<ol class=\"code\">\n"; |
| 867 | print "<li>"; |
| 868 | print "<span class=\"type\">" . $args{'type'} . "</span> "; |
| 869 | print "<span class=\"identifier\">" . $args{'struct'} . "</span> {"; |
| 870 | print "</li>\n"; |
| 871 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 872 | print "<li class=\"indent\">"; |
| 873 | if ($parameter =~ /^#/) { |
| 874 | print "<span class=\"param\">" . $parameter ."</span>\n"; |
| 875 | print "</li>\n"; |
| 876 | next; |
| 877 | } |
| 878 | my $parameter_name = $parameter; |
| 879 | $parameter_name =~ s/\[.*//; |
| 880 | |
| 881 | ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; |
| 882 | $type = $args{'parametertypes'}{$parameter}; |
| 883 | if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { |
| 884 | # pointer-to-function |
| 885 | print "<span class=\"type\">$1</span> "; |
| 886 | print "<span class=\"param\">$parameter</span>"; |
| 887 | print "<span class=\"type\">)</span> "; |
| 888 | print "(<span class=\"args\">$2</span>);"; |
| 889 | } elsif ($type =~ m/^(.*?)\s*(:.*)/) { |
| 890 | # bitfield |
| 891 | print "<span class=\"type\">$1</span> "; |
| 892 | print "<span class=\"param\">$parameter</span>"; |
| 893 | print "<span class=\"bits\">$2</span>;"; |
| 894 | } else { |
| 895 | print "<span class=\"type\">$type</span> "; |
| 896 | print "<span class=\"param\">$parameter</span>;"; |
| 897 | } |
| 898 | print "</li>\n"; |
| 899 | } |
| 900 | print "<li>};</li>\n"; |
| 901 | print "</ol>\n"; |
| 902 | |
| 903 | print "<section>\n"; |
| 904 | print "<h1>Members</h1>\n"; |
| 905 | print "<dl>\n"; |
| 906 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 907 | ($parameter =~ /^#/) && next; |
| 908 | |
| 909 | my $parameter_name = $parameter; |
| 910 | $parameter_name =~ s/\[.*//; |
| 911 | |
| 912 | ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; |
| 913 | print "<dt>" . $parameter . "</dt>\n"; |
| 914 | print "<dd>"; |
| 915 | output_highlight($args{'parameterdescs'}{$parameter_name}); |
| 916 | print "</dd>\n"; |
| 917 | } |
| 918 | print "</dl>\n"; |
| 919 | print "</section>\n"; |
| 920 | output_section_html5(@_); |
| 921 | print "</article>\n"; |
| 922 | } |
| 923 | |
| 924 | # output function in html5 |
| 925 | sub output_function_html5(%) { |
| 926 | my %args = %{$_[0]}; |
| 927 | my ($parameter, $section); |
| 928 | my $count; |
| 929 | my $html5id; |
| 930 | |
| 931 | $html5id = $args{'function'}; |
| 932 | $html5id =~ s/[^a-zA-Z0-9\-]+/_/g; |
| 933 | print "<article class=\"function\" id=\"func:". $html5id . "\">\n"; |
| 934 | print "<hgroup>\n"; |
| 935 | print "<h1>" . $args{'function'} . "</h1>"; |
| 936 | print "<h2>" . $args{'purpose'} . "</h2>\n"; |
| 937 | print "</hgroup>\n"; |
| 938 | print "<ol class=\"code\">\n"; |
| 939 | print "<li>"; |
| 940 | print "<span class=\"type\">" . $args{'functiontype'} . "</span> "; |
| 941 | print "<span class=\"identifier\">" . $args{'function'} . "</span> ("; |
| 942 | print "</li>"; |
| 943 | $count = 0; |
| 944 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 945 | print "<li class=\"indent\">"; |
| 946 | $type = $args{'parametertypes'}{$parameter}; |
| 947 | if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { |
| 948 | # pointer-to-function |
| 949 | print "<span class=\"type\">$1</span> "; |
| 950 | print "<span class=\"param\">$parameter</span>"; |
| 951 | print "<span class=\"type\">)</span> "; |
| 952 | print "(<span class=\"args\">$2</span>)"; |
| 953 | } else { |
| 954 | print "<span class=\"type\">$type</span> "; |
| 955 | print "<span class=\"param\">$parameter</span>"; |
| 956 | } |
| 957 | if ($count != $#{$args{'parameterlist'}}) { |
| 958 | $count++; |
| 959 | print ","; |
| 960 | } |
| 961 | print "</li>\n"; |
| 962 | } |
| 963 | print "<li>)</li>\n"; |
| 964 | print "</ol>\n"; |
| 965 | |
| 966 | print "<section>\n"; |
| 967 | print "<h1>Arguments</h1>\n"; |
| 968 | print "<p>\n"; |
| 969 | print "<dl>\n"; |
| 970 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 971 | my $parameter_name = $parameter; |
| 972 | $parameter_name =~ s/\[.*//; |
| 973 | |
| 974 | ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; |
| 975 | print "<dt>" . $parameter . "</dt>\n"; |
| 976 | print "<dd>"; |
| 977 | output_highlight($args{'parameterdescs'}{$parameter_name}); |
| 978 | print "</dd>\n"; |
| 979 | } |
| 980 | print "</dl>\n"; |
| 981 | print "</section>\n"; |
| 982 | output_section_html5(@_); |
| 983 | print "</article>\n"; |
| 984 | } |
| 985 | |
| 986 | # output DOC: block header in html5 |
| 987 | sub output_blockhead_html5(%) { |
| 988 | my %args = %{$_[0]}; |
| 989 | my ($parameter, $section); |
| 990 | my $count; |
| 991 | my $html5id; |
| 992 | |
| 993 | foreach $section (@{$args{'sectionlist'}}) { |
| 994 | $html5id = $section; |
| 995 | $html5id =~ s/[^a-zA-Z0-9\-]+/_/g; |
| 996 | print "<article class=\"doc\" id=\"doc:". $html5id . "\">\n"; |
| 997 | print "<h1>$section</h1>\n"; |
| 998 | print "<p>\n"; |
| 999 | output_highlight($args{'sections'}{$section}); |
| 1000 | print "</p>\n"; |
| 1001 | } |
| 1002 | print "</article>\n"; |
| 1003 | } |
| 1004 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | sub output_section_xml(%) { |
| 1006 | my %args = %{$_[0]}; |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 1007 | my $section; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | # print out each section |
| 1009 | $lineprefix=" "; |
| 1010 | foreach $section (@{$args{'sectionlist'}}) { |
Rich Walker | c73894c | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 1011 | print "<refsect1>\n"; |
| 1012 | print "<title>$section</title>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | if ($section =~ m/EXAMPLE/i) { |
Rich Walker | c73894c | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 1014 | print "<informalexample><programlisting>\n"; |
Daniel Santos | e314ba3 | 2012-10-04 17:15:08 -0700 | [diff] [blame] | 1015 | $output_preformatted = 1; |
Rich Walker | c73894c | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 1016 | } else { |
| 1017 | print "<para>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | } |
| 1019 | output_highlight($args{'sections'}{$section}); |
Daniel Santos | e314ba3 | 2012-10-04 17:15:08 -0700 | [diff] [blame] | 1020 | $output_preformatted = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | if ($section =~ m/EXAMPLE/i) { |
Rich Walker | c73894c | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 1022 | print "</programlisting></informalexample>\n"; |
| 1023 | } else { |
| 1024 | print "</para>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | } |
Rich Walker | c73894c | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 1026 | print "</refsect1>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | } |
| 1028 | } |
| 1029 | |
| 1030 | # output function in XML DocBook |
| 1031 | sub output_function_xml(%) { |
| 1032 | my %args = %{$_[0]}; |
| 1033 | my ($parameter, $section); |
| 1034 | my $count; |
| 1035 | my $id; |
| 1036 | |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1037 | $id = "API-" . $args{'function'}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | $id =~ s/[^A-Za-z0-9]/-/g; |
| 1039 | |
Pavel Pisa | 5449bc9 | 2007-02-10 01:45:37 -0800 | [diff] [blame] | 1040 | print "<refentry id=\"$id\">\n"; |
Martin Waitz | 8b0c2d9 | 2005-05-01 08:59:27 -0700 | [diff] [blame] | 1041 | print "<refentryinfo>\n"; |
| 1042 | print " <title>LINUX</title>\n"; |
| 1043 | print " <productname>Kernel Hackers Manual</productname>\n"; |
| 1044 | print " <date>$man_date</date>\n"; |
| 1045 | print "</refentryinfo>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | print "<refmeta>\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1047 | print " <refentrytitle><phrase>" . $args{'function'} . "</phrase></refentrytitle>\n"; |
Martin Waitz | 8b0c2d9 | 2005-05-01 08:59:27 -0700 | [diff] [blame] | 1048 | print " <manvolnum>9</manvolnum>\n"; |
Borislav Petkov | 0366299 | 2007-05-09 02:33:43 -0700 | [diff] [blame] | 1049 | print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | print "</refmeta>\n"; |
| 1051 | print "<refnamediv>\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1052 | print " <refname>" . $args{'function'} . "</refname>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | print " <refpurpose>\n"; |
| 1054 | print " "; |
| 1055 | output_highlight ($args{'purpose'}); |
| 1056 | print " </refpurpose>\n"; |
| 1057 | print "</refnamediv>\n"; |
| 1058 | |
| 1059 | print "<refsynopsisdiv>\n"; |
| 1060 | print " <title>Synopsis</title>\n"; |
| 1061 | print " <funcsynopsis><funcprototype>\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1062 | print " <funcdef>" . $args{'functiontype'} . " "; |
| 1063 | print "<function>" . $args{'function'} . " </function></funcdef>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | |
| 1065 | $count = 0; |
| 1066 | if ($#{$args{'parameterlist'}} >= 0) { |
| 1067 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1068 | $type = $args{'parametertypes'}{$parameter}; |
| 1069 | if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { |
| 1070 | # pointer-to-function |
| 1071 | print " <paramdef>$1<parameter>$parameter</parameter>)\n"; |
| 1072 | print " <funcparams>$2</funcparams></paramdef>\n"; |
| 1073 | } else { |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1074 | print " <paramdef>" . $type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | print " <parameter>$parameter</parameter></paramdef>\n"; |
| 1076 | } |
| 1077 | } |
| 1078 | } else { |
Martin Waitz | 6013d54 | 2005-05-01 08:59:25 -0700 | [diff] [blame] | 1079 | print " <void/>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | } |
| 1081 | print " </funcprototype></funcsynopsis>\n"; |
| 1082 | print "</refsynopsisdiv>\n"; |
| 1083 | |
| 1084 | # print parameters |
| 1085 | print "<refsect1>\n <title>Arguments</title>\n"; |
| 1086 | if ($#{$args{'parameterlist'}} >= 0) { |
| 1087 | print " <variablelist>\n"; |
| 1088 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1089 | my $parameter_name = $parameter; |
| 1090 | $parameter_name =~ s/\[.*//; |
| 1091 | |
| 1092 | print " <varlistentry>\n <term><parameter>$parameter</parameter></term>\n"; |
| 1093 | print " <listitem>\n <para>\n"; |
| 1094 | $lineprefix=" "; |
| 1095 | output_highlight($args{'parameterdescs'}{$parameter_name}); |
| 1096 | print " </para>\n </listitem>\n </varlistentry>\n"; |
| 1097 | } |
| 1098 | print " </variablelist>\n"; |
| 1099 | } else { |
| 1100 | print " <para>\n None\n </para>\n"; |
| 1101 | } |
| 1102 | print "</refsect1>\n"; |
| 1103 | |
| 1104 | output_section_xml(@_); |
| 1105 | print "</refentry>\n\n"; |
| 1106 | } |
| 1107 | |
| 1108 | # output struct in XML DocBook |
| 1109 | sub output_struct_xml(%) { |
| 1110 | my %args = %{$_[0]}; |
| 1111 | my ($parameter, $section); |
| 1112 | my $id; |
| 1113 | |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1114 | $id = "API-struct-" . $args{'struct'}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | $id =~ s/[^A-Za-z0-9]/-/g; |
| 1116 | |
Pavel Pisa | 5449bc9 | 2007-02-10 01:45:37 -0800 | [diff] [blame] | 1117 | print "<refentry id=\"$id\">\n"; |
Martin Waitz | 8b0c2d9 | 2005-05-01 08:59:27 -0700 | [diff] [blame] | 1118 | print "<refentryinfo>\n"; |
| 1119 | print " <title>LINUX</title>\n"; |
| 1120 | print " <productname>Kernel Hackers Manual</productname>\n"; |
| 1121 | print " <date>$man_date</date>\n"; |
| 1122 | print "</refentryinfo>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | print "<refmeta>\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1124 | print " <refentrytitle><phrase>" . $args{'type'} . " " . $args{'struct'} . "</phrase></refentrytitle>\n"; |
Martin Waitz | 8b0c2d9 | 2005-05-01 08:59:27 -0700 | [diff] [blame] | 1125 | print " <manvolnum>9</manvolnum>\n"; |
Borislav Petkov | 0366299 | 2007-05-09 02:33:43 -0700 | [diff] [blame] | 1126 | print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | print "</refmeta>\n"; |
| 1128 | print "<refnamediv>\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1129 | print " <refname>" . $args{'type'} . " " . $args{'struct'} . "</refname>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | print " <refpurpose>\n"; |
| 1131 | print " "; |
| 1132 | output_highlight ($args{'purpose'}); |
| 1133 | print " </refpurpose>\n"; |
| 1134 | print "</refnamediv>\n"; |
| 1135 | |
| 1136 | print "<refsynopsisdiv>\n"; |
| 1137 | print " <title>Synopsis</title>\n"; |
| 1138 | print " <programlisting>\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1139 | print $args{'type'} . " " . $args{'struct'} . " {\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1141 | if ($parameter =~ /^#/) { |
Randy Dunlap | 2b35f4d | 2010-11-18 12:27:31 -0800 | [diff] [blame] | 1142 | my $prm = $parameter; |
| 1143 | # convert data read & converted thru xml_escape() into &xyz; format: |
| 1144 | # This allows us to have #define macros interspersed in a struct. |
| 1145 | $prm =~ s/\\\\\\/\&/g; |
| 1146 | print "$prm\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | next; |
| 1148 | } |
| 1149 | |
| 1150 | my $parameter_name = $parameter; |
| 1151 | $parameter_name =~ s/\[.*//; |
| 1152 | |
| 1153 | defined($args{'parameterdescs'}{$parameter_name}) || next; |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 1154 | ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | $type = $args{'parametertypes'}{$parameter}; |
| 1156 | if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { |
| 1157 | # pointer-to-function |
| 1158 | print " $1 $parameter) ($2);\n"; |
| 1159 | } elsif ($type =~ m/^(.*?)\s*(:.*)/) { |
Randy Dunlap | 51f5a0c | 2007-07-19 01:48:24 -0700 | [diff] [blame] | 1160 | # bitfield |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | print " $1 $parameter$2;\n"; |
| 1162 | } else { |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1163 | print " " . $type . " " . $parameter . ";\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | } |
| 1165 | } |
| 1166 | print "};"; |
| 1167 | print " </programlisting>\n"; |
| 1168 | print "</refsynopsisdiv>\n"; |
| 1169 | |
| 1170 | print " <refsect1>\n"; |
| 1171 | print " <title>Members</title>\n"; |
| 1172 | |
Randy Dunlap | 39f00c0 | 2008-09-22 13:57:44 -0700 | [diff] [blame] | 1173 | if ($#{$args{'parameterlist'}} >= 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | print " <variablelist>\n"; |
| 1175 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1176 | ($parameter =~ /^#/) && next; |
| 1177 | |
| 1178 | my $parameter_name = $parameter; |
| 1179 | $parameter_name =~ s/\[.*//; |
| 1180 | |
| 1181 | defined($args{'parameterdescs'}{$parameter_name}) || next; |
| 1182 | ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; |
| 1183 | print " <varlistentry>"; |
| 1184 | print " <term>$parameter</term>\n"; |
| 1185 | print " <listitem><para>\n"; |
| 1186 | output_highlight($args{'parameterdescs'}{$parameter_name}); |
| 1187 | print " </para></listitem>\n"; |
| 1188 | print " </varlistentry>\n"; |
| 1189 | } |
| 1190 | print " </variablelist>\n"; |
Randy Dunlap | 39f00c0 | 2008-09-22 13:57:44 -0700 | [diff] [blame] | 1191 | } else { |
| 1192 | print " <para>\n None\n </para>\n"; |
| 1193 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | print " </refsect1>\n"; |
| 1195 | |
| 1196 | output_section_xml(@_); |
| 1197 | |
| 1198 | print "</refentry>\n\n"; |
| 1199 | } |
| 1200 | |
| 1201 | # output enum in XML DocBook |
| 1202 | sub output_enum_xml(%) { |
| 1203 | my %args = %{$_[0]}; |
| 1204 | my ($parameter, $section); |
| 1205 | my $count; |
| 1206 | my $id; |
| 1207 | |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1208 | $id = "API-enum-" . $args{'enum'}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | $id =~ s/[^A-Za-z0-9]/-/g; |
| 1210 | |
Pavel Pisa | 5449bc9 | 2007-02-10 01:45:37 -0800 | [diff] [blame] | 1211 | print "<refentry id=\"$id\">\n"; |
Martin Waitz | 8b0c2d9 | 2005-05-01 08:59:27 -0700 | [diff] [blame] | 1212 | print "<refentryinfo>\n"; |
| 1213 | print " <title>LINUX</title>\n"; |
| 1214 | print " <productname>Kernel Hackers Manual</productname>\n"; |
| 1215 | print " <date>$man_date</date>\n"; |
| 1216 | print "</refentryinfo>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | print "<refmeta>\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1218 | print " <refentrytitle><phrase>enum " . $args{'enum'} . "</phrase></refentrytitle>\n"; |
Martin Waitz | 8b0c2d9 | 2005-05-01 08:59:27 -0700 | [diff] [blame] | 1219 | print " <manvolnum>9</manvolnum>\n"; |
Borislav Petkov | 0366299 | 2007-05-09 02:33:43 -0700 | [diff] [blame] | 1220 | print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | print "</refmeta>\n"; |
| 1222 | print "<refnamediv>\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1223 | print " <refname>enum " . $args{'enum'} . "</refname>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | print " <refpurpose>\n"; |
| 1225 | print " "; |
| 1226 | output_highlight ($args{'purpose'}); |
| 1227 | print " </refpurpose>\n"; |
| 1228 | print "</refnamediv>\n"; |
| 1229 | |
| 1230 | print "<refsynopsisdiv>\n"; |
| 1231 | print " <title>Synopsis</title>\n"; |
| 1232 | print " <programlisting>\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1233 | print "enum " . $args{'enum'} . " {\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | $count = 0; |
| 1235 | foreach $parameter (@{$args{'parameterlist'}}) { |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 1236 | print " $parameter"; |
| 1237 | if ($count != $#{$args{'parameterlist'}}) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | $count++; |
| 1239 | print ","; |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 1240 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | print "\n"; |
| 1242 | } |
| 1243 | print "};"; |
| 1244 | print " </programlisting>\n"; |
| 1245 | print "</refsynopsisdiv>\n"; |
| 1246 | |
| 1247 | print "<refsect1>\n"; |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 1248 | print " <title>Constants</title>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | print " <variablelist>\n"; |
| 1250 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1251 | my $parameter_name = $parameter; |
| 1252 | $parameter_name =~ s/\[.*//; |
| 1253 | |
| 1254 | print " <varlistentry>"; |
| 1255 | print " <term>$parameter</term>\n"; |
| 1256 | print " <listitem><para>\n"; |
| 1257 | output_highlight($args{'parameterdescs'}{$parameter_name}); |
| 1258 | print " </para></listitem>\n"; |
| 1259 | print " </varlistentry>\n"; |
| 1260 | } |
| 1261 | print " </variablelist>\n"; |
| 1262 | print "</refsect1>\n"; |
| 1263 | |
| 1264 | output_section_xml(@_); |
| 1265 | |
| 1266 | print "</refentry>\n\n"; |
| 1267 | } |
| 1268 | |
| 1269 | # output typedef in XML DocBook |
| 1270 | sub output_typedef_xml(%) { |
| 1271 | my %args = %{$_[0]}; |
| 1272 | my ($parameter, $section); |
| 1273 | my $id; |
| 1274 | |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1275 | $id = "API-typedef-" . $args{'typedef'}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | $id =~ s/[^A-Za-z0-9]/-/g; |
| 1277 | |
Pavel Pisa | 5449bc9 | 2007-02-10 01:45:37 -0800 | [diff] [blame] | 1278 | print "<refentry id=\"$id\">\n"; |
Martin Waitz | 8b0c2d9 | 2005-05-01 08:59:27 -0700 | [diff] [blame] | 1279 | print "<refentryinfo>\n"; |
| 1280 | print " <title>LINUX</title>\n"; |
| 1281 | print " <productname>Kernel Hackers Manual</productname>\n"; |
| 1282 | print " <date>$man_date</date>\n"; |
| 1283 | print "</refentryinfo>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | print "<refmeta>\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1285 | print " <refentrytitle><phrase>typedef " . $args{'typedef'} . "</phrase></refentrytitle>\n"; |
Martin Waitz | 8b0c2d9 | 2005-05-01 08:59:27 -0700 | [diff] [blame] | 1286 | print " <manvolnum>9</manvolnum>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | print "</refmeta>\n"; |
| 1288 | print "<refnamediv>\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1289 | print " <refname>typedef " . $args{'typedef'} . "</refname>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | print " <refpurpose>\n"; |
| 1291 | print " "; |
| 1292 | output_highlight ($args{'purpose'}); |
| 1293 | print " </refpurpose>\n"; |
| 1294 | print "</refnamediv>\n"; |
| 1295 | |
| 1296 | print "<refsynopsisdiv>\n"; |
| 1297 | print " <title>Synopsis</title>\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1298 | print " <synopsis>typedef " . $args{'typedef'} . ";</synopsis>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | print "</refsynopsisdiv>\n"; |
| 1300 | |
| 1301 | output_section_xml(@_); |
| 1302 | |
| 1303 | print "</refentry>\n\n"; |
| 1304 | } |
| 1305 | |
| 1306 | # output in XML DocBook |
Johannes Berg | b112e0f | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 1307 | sub output_blockhead_xml(%) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | my %args = %{$_[0]}; |
| 1309 | my ($parameter, $section); |
| 1310 | my $count; |
| 1311 | |
| 1312 | my $id = $args{'module'}; |
| 1313 | $id =~ s/[^A-Za-z0-9]/-/g; |
| 1314 | |
| 1315 | # print out each section |
| 1316 | $lineprefix=" "; |
| 1317 | foreach $section (@{$args{'sectionlist'}}) { |
Johannes Berg | b112e0f | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 1318 | if (!$args{'content-only'}) { |
| 1319 | print "<refsect1>\n <title>$section</title>\n"; |
| 1320 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 | if ($section =~ m/EXAMPLE/i) { |
| 1322 | print "<example><para>\n"; |
Daniel Santos | e314ba3 | 2012-10-04 17:15:08 -0700 | [diff] [blame] | 1323 | $output_preformatted = 1; |
Johannes Berg | b112e0f | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 1324 | } else { |
| 1325 | print "<para>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | } |
| 1327 | output_highlight($args{'sections'}{$section}); |
Daniel Santos | e314ba3 | 2012-10-04 17:15:08 -0700 | [diff] [blame] | 1328 | $output_preformatted = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | if ($section =~ m/EXAMPLE/i) { |
| 1330 | print "</para></example>\n"; |
Johannes Berg | b112e0f | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 1331 | } else { |
| 1332 | print "</para>"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | } |
Johannes Berg | b112e0f | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 1334 | if (!$args{'content-only'}) { |
| 1335 | print "\n</refsect1>\n"; |
| 1336 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | } |
| 1338 | |
| 1339 | print "\n\n"; |
| 1340 | } |
| 1341 | |
| 1342 | # output in XML DocBook |
| 1343 | sub output_function_gnome { |
| 1344 | my %args = %{$_[0]}; |
| 1345 | my ($parameter, $section); |
| 1346 | my $count; |
| 1347 | my $id; |
| 1348 | |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1349 | $id = $args{'module'} . "-" . $args{'function'}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | $id =~ s/[^A-Za-z0-9]/-/g; |
| 1351 | |
| 1352 | print "<sect2>\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1353 | print " <title id=\"$id\">" . $args{'function'} . "</title>\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | |
| 1355 | print " <funcsynopsis>\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1356 | print " <funcdef>" . $args{'functiontype'} . " "; |
| 1357 | print "<function>" . $args{'function'} . " "; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | print "</function></funcdef>\n"; |
| 1359 | |
| 1360 | $count = 0; |
| 1361 | if ($#{$args{'parameterlist'}} >= 0) { |
| 1362 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1363 | $type = $args{'parametertypes'}{$parameter}; |
| 1364 | if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { |
| 1365 | # pointer-to-function |
| 1366 | print " <paramdef>$1 <parameter>$parameter</parameter>)\n"; |
| 1367 | print " <funcparams>$2</funcparams></paramdef>\n"; |
| 1368 | } else { |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1369 | print " <paramdef>" . $type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | print " <parameter>$parameter</parameter></paramdef>\n"; |
| 1371 | } |
| 1372 | } |
| 1373 | } else { |
| 1374 | print " <void>\n"; |
| 1375 | } |
| 1376 | print " </funcsynopsis>\n"; |
| 1377 | if ($#{$args{'parameterlist'}} >= 0) { |
| 1378 | print " <informaltable pgwide=\"1\" frame=\"none\" role=\"params\">\n"; |
| 1379 | print "<tgroup cols=\"2\">\n"; |
| 1380 | print "<colspec colwidth=\"2*\">\n"; |
| 1381 | print "<colspec colwidth=\"8*\">\n"; |
| 1382 | print "<tbody>\n"; |
| 1383 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1384 | my $parameter_name = $parameter; |
| 1385 | $parameter_name =~ s/\[.*//; |
| 1386 | |
| 1387 | print " <row><entry align=\"right\"><parameter>$parameter</parameter></entry>\n"; |
| 1388 | print " <entry>\n"; |
| 1389 | $lineprefix=" "; |
| 1390 | output_highlight($args{'parameterdescs'}{$parameter_name}); |
| 1391 | print " </entry></row>\n"; |
| 1392 | } |
| 1393 | print " </tbody></tgroup></informaltable>\n"; |
| 1394 | } else { |
| 1395 | print " <para>\n None\n </para>\n"; |
| 1396 | } |
| 1397 | |
| 1398 | # print out each section |
| 1399 | $lineprefix=" "; |
| 1400 | foreach $section (@{$args{'sectionlist'}}) { |
| 1401 | print "<simplesect>\n <title>$section</title>\n"; |
| 1402 | if ($section =~ m/EXAMPLE/i) { |
| 1403 | print "<example><programlisting>\n"; |
Daniel Santos | e314ba3 | 2012-10-04 17:15:08 -0700 | [diff] [blame] | 1404 | $output_preformatted = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | } else { |
| 1406 | } |
| 1407 | print "<para>\n"; |
| 1408 | output_highlight($args{'sections'}{$section}); |
Daniel Santos | e314ba3 | 2012-10-04 17:15:08 -0700 | [diff] [blame] | 1409 | $output_preformatted = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | print "</para>\n"; |
| 1411 | if ($section =~ m/EXAMPLE/i) { |
| 1412 | print "</programlisting></example>\n"; |
| 1413 | } else { |
| 1414 | } |
| 1415 | print " </simplesect>\n"; |
| 1416 | } |
| 1417 | |
| 1418 | print "</sect2>\n\n"; |
| 1419 | } |
| 1420 | |
| 1421 | ## |
| 1422 | # output function in man |
| 1423 | sub output_function_man(%) { |
| 1424 | my %args = %{$_[0]}; |
| 1425 | my ($parameter, $section); |
| 1426 | my $count; |
| 1427 | |
| 1428 | print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n"; |
| 1429 | |
| 1430 | print ".SH NAME\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1431 | print $args{'function'} . " \\- " . $args{'purpose'} . "\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | |
| 1433 | print ".SH SYNOPSIS\n"; |
Randy Dunlap | a21217d | 2007-02-10 01:46:04 -0800 | [diff] [blame] | 1434 | if ($args{'functiontype'} ne "") { |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1435 | print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n"; |
Randy Dunlap | a21217d | 2007-02-10 01:46:04 -0800 | [diff] [blame] | 1436 | } else { |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1437 | print ".B \"" . $args{'function'} . "\n"; |
Randy Dunlap | a21217d | 2007-02-10 01:46:04 -0800 | [diff] [blame] | 1438 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | $count = 0; |
| 1440 | my $parenth = "("; |
| 1441 | my $post = ","; |
| 1442 | foreach my $parameter (@{$args{'parameterlist'}}) { |
| 1443 | if ($count == $#{$args{'parameterlist'}}) { |
| 1444 | $post = ");"; |
| 1445 | } |
| 1446 | $type = $args{'parametertypes'}{$parameter}; |
| 1447 | if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { |
| 1448 | # pointer-to-function |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1449 | print ".BI \"" . $parenth . $1 . "\" " . $parameter . " \") (" . $2 . ")" . $post . "\"\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | } else { |
| 1451 | $type =~ s/([^\*])$/$1 /; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1452 | print ".BI \"" . $parenth . $type . "\" " . $parameter . " \"" . $post . "\"\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | } |
| 1454 | $count++; |
| 1455 | $parenth = ""; |
| 1456 | } |
| 1457 | |
| 1458 | print ".SH ARGUMENTS\n"; |
| 1459 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1460 | my $parameter_name = $parameter; |
| 1461 | $parameter_name =~ s/\[.*//; |
| 1462 | |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1463 | print ".IP \"" . $parameter . "\" 12\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1464 | output_highlight($args{'parameterdescs'}{$parameter_name}); |
| 1465 | } |
| 1466 | foreach $section (@{$args{'sectionlist'}}) { |
| 1467 | print ".SH \"", uc $section, "\"\n"; |
| 1468 | output_highlight($args{'sections'}{$section}); |
| 1469 | } |
| 1470 | } |
| 1471 | |
| 1472 | ## |
| 1473 | # output enum in man |
| 1474 | sub output_enum_man(%) { |
| 1475 | my %args = %{$_[0]}; |
| 1476 | my ($parameter, $section); |
| 1477 | my $count; |
| 1478 | |
| 1479 | print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n"; |
| 1480 | |
| 1481 | print ".SH NAME\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1482 | print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | |
| 1484 | print ".SH SYNOPSIS\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1485 | print "enum " . $args{'enum'} . " {\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | $count = 0; |
| 1487 | foreach my $parameter (@{$args{'parameterlist'}}) { |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 1488 | print ".br\n.BI \" $parameter\"\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | if ($count == $#{$args{'parameterlist'}}) { |
| 1490 | print "\n};\n"; |
| 1491 | last; |
| 1492 | } |
| 1493 | else { |
| 1494 | print ", \n.br\n"; |
| 1495 | } |
| 1496 | $count++; |
| 1497 | } |
| 1498 | |
| 1499 | print ".SH Constants\n"; |
| 1500 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1501 | my $parameter_name = $parameter; |
| 1502 | $parameter_name =~ s/\[.*//; |
| 1503 | |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1504 | print ".IP \"" . $parameter . "\" 12\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1505 | output_highlight($args{'parameterdescs'}{$parameter_name}); |
| 1506 | } |
| 1507 | foreach $section (@{$args{'sectionlist'}}) { |
| 1508 | print ".SH \"$section\"\n"; |
| 1509 | output_highlight($args{'sections'}{$section}); |
| 1510 | } |
| 1511 | } |
| 1512 | |
| 1513 | ## |
| 1514 | # output struct in man |
| 1515 | sub output_struct_man(%) { |
| 1516 | my %args = %{$_[0]}; |
| 1517 | my ($parameter, $section); |
| 1518 | |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1519 | print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | |
| 1521 | print ".SH NAME\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1522 | print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | |
| 1524 | print ".SH SYNOPSIS\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1525 | print $args{'type'} . " " . $args{'struct'} . " {\n.br\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | |
| 1527 | foreach my $parameter (@{$args{'parameterlist'}}) { |
| 1528 | if ($parameter =~ /^#/) { |
| 1529 | print ".BI \"$parameter\"\n.br\n"; |
| 1530 | next; |
| 1531 | } |
| 1532 | my $parameter_name = $parameter; |
| 1533 | $parameter_name =~ s/\[.*//; |
| 1534 | |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 1535 | ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1536 | $type = $args{'parametertypes'}{$parameter}; |
| 1537 | if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { |
| 1538 | # pointer-to-function |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1539 | print ".BI \" " . $1 . "\" " . $parameter . " \") (" . $2 . ")" . "\"\n;\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | } elsif ($type =~ m/^(.*?)\s*(:.*)/) { |
Randy.Dunlap | 1d7e1d4 | 2006-07-01 04:36:34 -0700 | [diff] [blame] | 1541 | # bitfield |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1542 | print ".BI \" " . $1 . "\ \" " . $parameter . $2 . " \"" . "\"\n;\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | } else { |
| 1544 | $type =~ s/([^\*])$/$1 /; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1545 | print ".BI \" " . $type . "\" " . $parameter . " \"" . "\"\n;\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | } |
| 1547 | print "\n.br\n"; |
| 1548 | } |
| 1549 | print "};\n.br\n"; |
| 1550 | |
Randy Dunlap | c51d3dac | 2006-06-25 05:49:14 -0700 | [diff] [blame] | 1551 | print ".SH Members\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1553 | ($parameter =~ /^#/) && next; |
| 1554 | |
| 1555 | my $parameter_name = $parameter; |
| 1556 | $parameter_name =~ s/\[.*//; |
| 1557 | |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 1558 | ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1559 | print ".IP \"" . $parameter . "\" 12\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | output_highlight($args{'parameterdescs'}{$parameter_name}); |
| 1561 | } |
| 1562 | foreach $section (@{$args{'sectionlist'}}) { |
| 1563 | print ".SH \"$section\"\n"; |
| 1564 | output_highlight($args{'sections'}{$section}); |
| 1565 | } |
| 1566 | } |
| 1567 | |
| 1568 | ## |
| 1569 | # output typedef in man |
| 1570 | sub output_typedef_man(%) { |
| 1571 | my %args = %{$_[0]}; |
| 1572 | my ($parameter, $section); |
| 1573 | |
| 1574 | print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n"; |
| 1575 | |
| 1576 | print ".SH NAME\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1577 | print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | |
| 1579 | foreach $section (@{$args{'sectionlist'}}) { |
| 1580 | print ".SH \"$section\"\n"; |
| 1581 | output_highlight($args{'sections'}{$section}); |
| 1582 | } |
| 1583 | } |
| 1584 | |
Johannes Berg | b112e0f | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 1585 | sub output_blockhead_man(%) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | my %args = %{$_[0]}; |
| 1587 | my ($parameter, $section); |
| 1588 | my $count; |
| 1589 | |
| 1590 | print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n"; |
| 1591 | |
| 1592 | foreach $section (@{$args{'sectionlist'}}) { |
| 1593 | print ".SH \"$section\"\n"; |
| 1594 | output_highlight($args{'sections'}{$section}); |
| 1595 | } |
| 1596 | } |
| 1597 | |
| 1598 | ## |
| 1599 | # output in text |
| 1600 | sub output_function_text(%) { |
| 1601 | my %args = %{$_[0]}; |
| 1602 | my ($parameter, $section); |
Randy Dunlap | a21217d | 2007-02-10 01:46:04 -0800 | [diff] [blame] | 1603 | my $start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1604 | |
Randy Dunlap | f47634b | 2006-07-01 04:36:36 -0700 | [diff] [blame] | 1605 | print "Name:\n\n"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1606 | print $args{'function'} . " - " . $args{'purpose'} . "\n"; |
Randy Dunlap | f47634b | 2006-07-01 04:36:36 -0700 | [diff] [blame] | 1607 | |
| 1608 | print "\nSynopsis:\n\n"; |
Randy Dunlap | a21217d | 2007-02-10 01:46:04 -0800 | [diff] [blame] | 1609 | if ($args{'functiontype'} ne "") { |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1610 | $start = $args{'functiontype'} . " " . $args{'function'} . " ("; |
Randy Dunlap | a21217d | 2007-02-10 01:46:04 -0800 | [diff] [blame] | 1611 | } else { |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1612 | $start = $args{'function'} . " ("; |
Randy Dunlap | a21217d | 2007-02-10 01:46:04 -0800 | [diff] [blame] | 1613 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | print $start; |
Randy Dunlap | a21217d | 2007-02-10 01:46:04 -0800 | [diff] [blame] | 1615 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | my $count = 0; |
| 1617 | foreach my $parameter (@{$args{'parameterlist'}}) { |
| 1618 | $type = $args{'parametertypes'}{$parameter}; |
| 1619 | if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { |
| 1620 | # pointer-to-function |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1621 | print $1 . $parameter . ") (" . $2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | } else { |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1623 | print $type . " " . $parameter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | } |
| 1625 | if ($count != $#{$args{'parameterlist'}}) { |
| 1626 | $count++; |
| 1627 | print ",\n"; |
| 1628 | print " " x length($start); |
| 1629 | } else { |
| 1630 | print ");\n\n"; |
| 1631 | } |
| 1632 | } |
| 1633 | |
| 1634 | print "Arguments:\n\n"; |
| 1635 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1636 | my $parameter_name = $parameter; |
| 1637 | $parameter_name =~ s/\[.*//; |
| 1638 | |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1639 | print $parameter . "\n\t" . $args{'parameterdescs'}{$parameter_name} . "\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | } |
| 1641 | output_section_text(@_); |
| 1642 | } |
| 1643 | |
| 1644 | #output sections in text |
| 1645 | sub output_section_text(%) { |
| 1646 | my %args = %{$_[0]}; |
| 1647 | my $section; |
| 1648 | |
| 1649 | print "\n"; |
| 1650 | foreach $section (@{$args{'sectionlist'}}) { |
| 1651 | print "$section:\n\n"; |
| 1652 | output_highlight($args{'sections'}{$section}); |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 1653 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | print "\n\n"; |
| 1655 | } |
| 1656 | |
| 1657 | # output enum in text |
| 1658 | sub output_enum_text(%) { |
| 1659 | my %args = %{$_[0]}; |
| 1660 | my ($parameter); |
| 1661 | my $count; |
| 1662 | print "Enum:\n\n"; |
| 1663 | |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1664 | print "enum " . $args{'enum'} . " - " . $args{'purpose'} . "\n\n"; |
| 1665 | print "enum " . $args{'enum'} . " {\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | $count = 0; |
| 1667 | foreach $parameter (@{$args{'parameterlist'}}) { |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 1668 | print "\t$parameter"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | if ($count != $#{$args{'parameterlist'}}) { |
| 1670 | $count++; |
| 1671 | print ","; |
| 1672 | } |
| 1673 | print "\n"; |
| 1674 | } |
| 1675 | print "};\n\n"; |
| 1676 | |
| 1677 | print "Constants:\n\n"; |
| 1678 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1679 | print "$parameter\n\t"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1680 | print $args{'parameterdescs'}{$parameter} . "\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | } |
| 1682 | |
| 1683 | output_section_text(@_); |
| 1684 | } |
| 1685 | |
| 1686 | # output typedef in text |
| 1687 | sub output_typedef_text(%) { |
| 1688 | my %args = %{$_[0]}; |
| 1689 | my ($parameter); |
| 1690 | my $count; |
| 1691 | print "Typedef:\n\n"; |
| 1692 | |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1693 | print "typedef " . $args{'typedef'} . " - " . $args{'purpose'} . "\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1694 | output_section_text(@_); |
| 1695 | } |
| 1696 | |
| 1697 | # output struct as text |
| 1698 | sub output_struct_text(%) { |
| 1699 | my %args = %{$_[0]}; |
| 1700 | my ($parameter); |
| 1701 | |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1702 | print $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "\n\n"; |
| 1703 | print $args{'type'} . " " . $args{'struct'} . " {\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1705 | if ($parameter =~ /^#/) { |
| 1706 | print "$parameter\n"; |
| 1707 | next; |
| 1708 | } |
| 1709 | |
| 1710 | my $parameter_name = $parameter; |
| 1711 | $parameter_name =~ s/\[.*//; |
| 1712 | |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 1713 | ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1714 | $type = $args{'parametertypes'}{$parameter}; |
| 1715 | if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { |
| 1716 | # pointer-to-function |
| 1717 | print "\t$1 $parameter) ($2);\n"; |
| 1718 | } elsif ($type =~ m/^(.*?)\s*(:.*)/) { |
Randy Dunlap | 51f5a0c | 2007-07-19 01:48:24 -0700 | [diff] [blame] | 1719 | # bitfield |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | print "\t$1 $parameter$2;\n"; |
| 1721 | } else { |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1722 | print "\t" . $type . " " . $parameter . ";\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1723 | } |
| 1724 | } |
| 1725 | print "};\n\n"; |
| 1726 | |
| 1727 | print "Members:\n\n"; |
| 1728 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1729 | ($parameter =~ /^#/) && next; |
| 1730 | |
| 1731 | my $parameter_name = $parameter; |
| 1732 | $parameter_name =~ s/\[.*//; |
| 1733 | |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 1734 | ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | print "$parameter\n\t"; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 1736 | print $args{'parameterdescs'}{$parameter_name} . "\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | } |
| 1738 | print "\n"; |
| 1739 | output_section_text(@_); |
| 1740 | } |
| 1741 | |
Johannes Berg | b112e0f | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 1742 | sub output_blockhead_text(%) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1743 | my %args = %{$_[0]}; |
| 1744 | my ($parameter, $section); |
| 1745 | |
| 1746 | foreach $section (@{$args{'sectionlist'}}) { |
| 1747 | print " $section:\n"; |
| 1748 | print " -> "; |
| 1749 | output_highlight($args{'sections'}{$section}); |
| 1750 | } |
| 1751 | } |
| 1752 | |
Jonathan Corbet | c0d1b6e | 2016-05-12 16:15:37 +0300 | [diff] [blame] | 1753 | ## |
| 1754 | # output in restructured text |
| 1755 | # |
| 1756 | |
| 1757 | # |
| 1758 | # This could use some work; it's used to output the DOC: sections, and |
| 1759 | # starts by putting out the name of the doc section itself, but that tends |
| 1760 | # to duplicate a header already in the template file. |
| 1761 | # |
| 1762 | sub output_blockhead_rst(%) { |
| 1763 | my %args = %{$_[0]}; |
| 1764 | my ($parameter, $section); |
| 1765 | |
| 1766 | foreach $section (@{$args{'sectionlist'}}) { |
| 1767 | print "**$section**\n\n"; |
| 1768 | output_highlight_rst($args{'sections'}{$section}); |
| 1769 | print "\n"; |
| 1770 | } |
| 1771 | } |
| 1772 | |
| 1773 | sub output_highlight_rst { |
| 1774 | my $contents = join "\n",@_; |
| 1775 | my $line; |
| 1776 | |
| 1777 | # undo the evil effects of xml_escape() earlier |
| 1778 | $contents = xml_unescape($contents); |
| 1779 | |
| 1780 | eval $dohighlight; |
| 1781 | die $@ if $@; |
| 1782 | |
| 1783 | foreach $line (split "\n", $contents) { |
| 1784 | if ($line eq "") { |
| 1785 | print $lineprefix, $blankline; |
| 1786 | } else { |
| 1787 | $line =~ s/\\\\\\/\&/g; |
| 1788 | print $lineprefix, $line; |
| 1789 | } |
| 1790 | print "\n"; |
| 1791 | } |
| 1792 | } |
| 1793 | |
| 1794 | sub output_function_rst(%) { |
| 1795 | my %args = %{$_[0]}; |
| 1796 | my ($parameter, $section); |
| 1797 | my $start; |
| 1798 | |
| 1799 | print ".. c:function:: "; |
| 1800 | if ($args{'functiontype'} ne "") { |
| 1801 | $start = $args{'functiontype'} . " " . $args{'function'} . " ("; |
| 1802 | } else { |
| 1803 | $start = $args{'function'} . " ("; |
| 1804 | } |
| 1805 | print $start; |
| 1806 | |
| 1807 | my $count = 0; |
| 1808 | foreach my $parameter (@{$args{'parameterlist'}}) { |
| 1809 | if ($count ne 0) { |
| 1810 | print ", "; |
| 1811 | } |
| 1812 | $count++; |
| 1813 | $type = $args{'parametertypes'}{$parameter}; |
| 1814 | if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { |
| 1815 | # pointer-to-function |
| 1816 | print $1 . $parameter . ") (" . $2; |
| 1817 | } else { |
| 1818 | print $type . " " . $parameter; |
| 1819 | } |
| 1820 | } |
| 1821 | print ")\n\n " . $args{'purpose'} . "\n\n"; |
| 1822 | |
| 1823 | print ":Parameters:\n\n"; |
| 1824 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1825 | my $parameter_name = $parameter; |
| 1826 | #$parameter_name =~ s/\[.*//; |
| 1827 | $type = $args{'parametertypes'}{$parameter}; |
| 1828 | |
| 1829 | if ($type ne "") { |
| 1830 | print " ``$type $parameter``\n"; |
| 1831 | } else { |
| 1832 | print " ``$parameter``\n"; |
| 1833 | } |
Jani Nikula | 5e64fa9 | 2016-05-19 20:32:48 +0300 | [diff] [blame] | 1834 | if (defined($args{'parameterdescs'}{$parameter_name}) && |
| 1835 | $args{'parameterdescs'}{$parameter_name} ne $undescribed) { |
Jonathan Corbet | c0d1b6e | 2016-05-12 16:15:37 +0300 | [diff] [blame] | 1836 | my $oldprefix = $lineprefix; |
| 1837 | $lineprefix = " "; |
| 1838 | output_highlight_rst($args{'parameterdescs'}{$parameter_name}); |
| 1839 | $lineprefix = $oldprefix; |
| 1840 | } else { |
| 1841 | print "\n _undescribed_\n"; |
| 1842 | } |
| 1843 | print "\n"; |
| 1844 | } |
| 1845 | output_section_rst(@_); |
| 1846 | } |
| 1847 | |
| 1848 | sub output_section_rst(%) { |
| 1849 | my %args = %{$_[0]}; |
| 1850 | my $section; |
| 1851 | my $oldprefix = $lineprefix; |
| 1852 | $lineprefix = " "; |
| 1853 | |
| 1854 | foreach $section (@{$args{'sectionlist'}}) { |
| 1855 | print ":$section:\n\n"; |
| 1856 | output_highlight_rst($args{'sections'}{$section}); |
| 1857 | print "\n"; |
| 1858 | } |
| 1859 | print "\n"; |
| 1860 | $lineprefix = $oldprefix; |
| 1861 | } |
| 1862 | |
| 1863 | sub output_enum_rst(%) { |
| 1864 | my %args = %{$_[0]}; |
| 1865 | my ($parameter); |
| 1866 | my $count; |
Jonathan Corbet | c0d1b6e | 2016-05-12 16:15:37 +0300 | [diff] [blame] | 1867 | my $name = "enum " . $args{'enum'}; |
Jani Nikula | 6285097 | 2016-05-12 16:15:38 +0300 | [diff] [blame] | 1868 | |
| 1869 | print "\n\n.. c:type:: " . $name . "\n\n"; |
Jonathan Corbet | c0d1b6e | 2016-05-12 16:15:37 +0300 | [diff] [blame] | 1870 | print " " . $args{'purpose'} . "\n\n"; |
| 1871 | |
| 1872 | print "..\n\n:Constants:\n\n"; |
| 1873 | my $oldprefix = $lineprefix; |
| 1874 | $lineprefix = " "; |
| 1875 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1876 | print " `$parameter`\n"; |
| 1877 | if ($args{'parameterdescs'}{$parameter} ne $undescribed) { |
| 1878 | output_highlight_rst($args{'parameterdescs'}{$parameter}); |
| 1879 | } else { |
| 1880 | print " undescribed\n"; |
| 1881 | } |
| 1882 | print "\n"; |
| 1883 | } |
| 1884 | $lineprefix = $oldprefix; |
| 1885 | output_section_rst(@_); |
| 1886 | } |
| 1887 | |
| 1888 | sub output_typedef_rst(%) { |
| 1889 | my %args = %{$_[0]}; |
| 1890 | my ($parameter); |
| 1891 | my $count; |
| 1892 | my $name = "typedef " . $args{'typedef'}; |
| 1893 | |
Jani Nikula | 6285097 | 2016-05-12 16:15:38 +0300 | [diff] [blame] | 1894 | ### FIXME: should the name below contain "typedef" or not? |
| 1895 | print "\n\n.. c:type:: " . $name . "\n\n"; |
| 1896 | print " " . $args{'purpose'} . "\n\n"; |
Jonathan Corbet | c0d1b6e | 2016-05-12 16:15:37 +0300 | [diff] [blame] | 1897 | |
| 1898 | output_section_rst(@_); |
| 1899 | } |
| 1900 | |
| 1901 | sub output_struct_rst(%) { |
| 1902 | my %args = %{$_[0]}; |
| 1903 | my ($parameter); |
| 1904 | my $name = $args{'type'} . " " . $args{'struct'}; |
| 1905 | |
Jani Nikula | 6285097 | 2016-05-12 16:15:38 +0300 | [diff] [blame] | 1906 | print "\n\n.. c:type:: " . $name . "\n\n"; |
Jonathan Corbet | c0d1b6e | 2016-05-12 16:15:37 +0300 | [diff] [blame] | 1907 | print " " . $args{'purpose'} . "\n\n"; |
| 1908 | |
| 1909 | print ":Definition:\n\n"; |
| 1910 | print " ::\n\n"; |
| 1911 | print " " . $args{'type'} . " " . $args{'struct'} . " {\n"; |
| 1912 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1913 | if ($parameter =~ /^#/) { |
| 1914 | print " " . "$parameter\n"; |
| 1915 | next; |
| 1916 | } |
| 1917 | |
| 1918 | my $parameter_name = $parameter; |
| 1919 | $parameter_name =~ s/\[.*//; |
| 1920 | |
| 1921 | ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; |
| 1922 | $type = $args{'parametertypes'}{$parameter}; |
| 1923 | if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) { |
| 1924 | # pointer-to-function |
| 1925 | print " $1 $parameter) ($2);\n"; |
| 1926 | } elsif ($type =~ m/^(.*?)\s*(:.*)/) { |
| 1927 | # bitfield |
| 1928 | print " $1 $parameter$2;\n"; |
| 1929 | } else { |
| 1930 | print " " . $type . " " . $parameter . ";\n"; |
| 1931 | } |
| 1932 | } |
| 1933 | print " };\n\n"; |
| 1934 | |
| 1935 | print ":Members:\n\n"; |
| 1936 | foreach $parameter (@{$args{'parameterlist'}}) { |
| 1937 | ($parameter =~ /^#/) && next; |
| 1938 | |
| 1939 | my $parameter_name = $parameter; |
| 1940 | $parameter_name =~ s/\[.*//; |
| 1941 | |
| 1942 | ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next; |
| 1943 | $type = $args{'parametertypes'}{$parameter}; |
| 1944 | print " `$type $parameter`" . "\n"; |
| 1945 | my $oldprefix = $lineprefix; |
| 1946 | $lineprefix = " "; |
| 1947 | output_highlight_rst($args{'parameterdescs'}{$parameter_name}); |
| 1948 | $lineprefix = $oldprefix; |
| 1949 | print "\n"; |
| 1950 | } |
| 1951 | print "\n"; |
| 1952 | output_section_rst(@_); |
| 1953 | } |
| 1954 | |
| 1955 | |
Johannes Berg | eda603f | 2010-09-11 15:55:22 -0700 | [diff] [blame] | 1956 | ## list mode output functions |
| 1957 | |
| 1958 | sub output_function_list(%) { |
| 1959 | my %args = %{$_[0]}; |
| 1960 | |
| 1961 | print $args{'function'} . "\n"; |
| 1962 | } |
| 1963 | |
| 1964 | # output enum in list |
| 1965 | sub output_enum_list(%) { |
| 1966 | my %args = %{$_[0]}; |
| 1967 | print $args{'enum'} . "\n"; |
| 1968 | } |
| 1969 | |
| 1970 | # output typedef in list |
| 1971 | sub output_typedef_list(%) { |
| 1972 | my %args = %{$_[0]}; |
| 1973 | print $args{'typedef'} . "\n"; |
| 1974 | } |
| 1975 | |
| 1976 | # output struct as list |
| 1977 | sub output_struct_list(%) { |
| 1978 | my %args = %{$_[0]}; |
| 1979 | |
| 1980 | print $args{'struct'} . "\n"; |
| 1981 | } |
| 1982 | |
| 1983 | sub output_blockhead_list(%) { |
| 1984 | my %args = %{$_[0]}; |
| 1985 | my ($parameter, $section); |
| 1986 | |
| 1987 | foreach $section (@{$args{'sectionlist'}}) { |
| 1988 | print "DOC: $section\n"; |
| 1989 | } |
| 1990 | } |
| 1991 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1992 | ## |
Randy Dunlap | 2720574 | 2006-10-11 01:22:12 -0700 | [diff] [blame] | 1993 | # generic output function for all types (function, struct/union, typedef, enum); |
| 1994 | # calls the generated, variable output_ function name based on |
| 1995 | # functype and output_mode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1996 | sub output_declaration { |
| 1997 | no strict 'refs'; |
| 1998 | my $name = shift; |
| 1999 | my $functype = shift; |
| 2000 | my $func = "output_${functype}_$output_mode"; |
Jani Nikula | b6c3f45 | 2016-05-29 22:19:35 +0300 | [diff] [blame^] | 2001 | if (($output_selection == OUTPUT_ALL) || |
| 2002 | (($output_selection == OUTPUT_INCLUDE || |
| 2003 | $output_selection == OUTPUT_EXPORTED) && |
| 2004 | defined($function_table{$name})) || |
| 2005 | (($output_selection == OUTPUT_EXCLUDE || |
| 2006 | $output_selection == OUTPUT_INTERNAL) && |
| 2007 | !($functype eq "function" && defined($function_table{$name})))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2008 | { |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2009 | &$func(@_); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2010 | $section_counter++; |
| 2011 | } |
| 2012 | } |
| 2013 | |
| 2014 | ## |
Randy Dunlap | 2720574 | 2006-10-11 01:22:12 -0700 | [diff] [blame] | 2015 | # generic output function - calls the right one based on current output mode. |
Johannes Berg | b112e0f | 2007-10-24 15:08:48 -0700 | [diff] [blame] | 2016 | sub output_blockhead { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | no strict 'refs'; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 2018 | my $func = "output_blockhead_" . $output_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2019 | &$func(@_); |
| 2020 | $section_counter++; |
| 2021 | } |
| 2022 | |
| 2023 | ## |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 2024 | # takes a declaration (struct, union, enum, typedef) and |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2025 | # invokes the right handler. NOT called for functions. |
| 2026 | sub dump_declaration($$) { |
| 2027 | no strict 'refs'; |
| 2028 | my ($prototype, $file) = @_; |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 2029 | my $func = "dump_" . $decl_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2030 | &$func(@_); |
| 2031 | } |
| 2032 | |
| 2033 | sub dump_union($$) { |
| 2034 | dump_struct(@_); |
| 2035 | } |
| 2036 | |
| 2037 | sub dump_struct($$) { |
| 2038 | my $x = shift; |
| 2039 | my $file = shift; |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 2040 | my $nested; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2041 | |
Randy Dunlap | 52dc5ae | 2009-04-30 15:08:53 -0700 | [diff] [blame] | 2042 | if ($x =~ /(struct|union)\s+(\w+)\s*{(.*)}/) { |
| 2043 | #my $decl_type = $1; |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2044 | $declaration_name = $2; |
| 2045 | my $members = $3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2046 | |
| 2047 | # ignore embedded structs or unions |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 2048 | $members =~ s/({.*})//g; |
| 2049 | $nested = $1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2050 | |
Martin Waitz | aeec46b | 2005-11-13 16:08:13 -0800 | [diff] [blame] | 2051 | # ignore members marked private: |
Mauro Carvalho Chehab | 0d8c39e | 2015-10-05 09:03:48 -0300 | [diff] [blame] | 2052 | $members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi; |
| 2053 | $members =~ s/\/\*\s*private:.*//gosi; |
Martin Waitz | aeec46b | 2005-11-13 16:08:13 -0800 | [diff] [blame] | 2054 | # strip comments: |
| 2055 | $members =~ s/\/\*.*?\*\///gos; |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 2056 | $nested =~ s/\/\*.*?\*\///gos; |
Randy Dunlap | d960eea | 2009-06-29 14:54:11 -0700 | [diff] [blame] | 2057 | # strip kmemcheck_bitfield_{begin,end}.*; |
| 2058 | $members =~ s/kmemcheck_bitfield_.*?;//gos; |
Randy Dunlap | ef5da59 | 2010-03-23 13:35:14 -0700 | [diff] [blame] | 2059 | # strip attributes |
Jonathan Corbet | f007492 | 2015-08-23 13:35:23 -0600 | [diff] [blame] | 2060 | $members =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i; |
Johannes Berg | 7b99078 | 2014-12-10 15:41:28 -0800 | [diff] [blame] | 2061 | $members =~ s/__aligned\s*\([^;]*\)//gos; |
Jonathan Corbet | f007492 | 2015-08-23 13:35:23 -0600 | [diff] [blame] | 2062 | $members =~ s/\s*CRYPTO_MINALIGN_ATTR//gos; |
Conchúr Navid | b22b5a9 | 2015-11-08 10:52:00 +0100 | [diff] [blame] | 2063 | # replace DECLARE_BITMAP |
| 2064 | $members =~ s/DECLARE_BITMAP\s*\(([^,)]+), ([^,)]+)\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos; |
Martin Waitz | aeec46b | 2005-11-13 16:08:13 -0800 | [diff] [blame] | 2065 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2066 | create_parameterlist($members, ';', $file); |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 2067 | check_sections($file, $declaration_name, "struct", $sectcheck, $struct_actual, $nested); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2068 | |
| 2069 | output_declaration($declaration_name, |
| 2070 | 'struct', |
| 2071 | {'struct' => $declaration_name, |
| 2072 | 'module' => $modulename, |
| 2073 | 'parameterlist' => \@parameterlist, |
| 2074 | 'parameterdescs' => \%parameterdescs, |
| 2075 | 'parametertypes' => \%parametertypes, |
| 2076 | 'sectionlist' => \@sectionlist, |
| 2077 | 'sections' => \%sections, |
| 2078 | 'purpose' => $declaration_purpose, |
| 2079 | 'type' => $decl_type |
| 2080 | }); |
| 2081 | } |
| 2082 | else { |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2083 | print STDERR "${file}:$.: error: Cannot parse struct or union!\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2084 | ++$errors; |
| 2085 | } |
| 2086 | } |
| 2087 | |
| 2088 | sub dump_enum($$) { |
| 2089 | my $x = shift; |
| 2090 | my $file = shift; |
| 2091 | |
Martin Waitz | aeec46b | 2005-11-13 16:08:13 -0800 | [diff] [blame] | 2092 | $x =~ s@/\*.*?\*/@@gos; # strip comments. |
Conchúr Navid | 4468e21 | 2015-11-08 10:48:05 +0100 | [diff] [blame] | 2093 | # strip #define macros inside enums |
| 2094 | $x =~ s@#\s*((define|ifdef)\s+|endif)[^;]*;@@gos; |
Randy Dunlap | b6d676d | 2010-08-10 18:02:50 -0700 | [diff] [blame] | 2095 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2096 | if ($x =~ /enum\s+(\w+)\s*{(.*)}/) { |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2097 | $declaration_name = $1; |
| 2098 | my $members = $2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | |
| 2100 | foreach my $arg (split ',', $members) { |
| 2101 | $arg =~ s/^\s*(\w+).*/$1/; |
| 2102 | push @parameterlist, $arg; |
| 2103 | if (!$parameterdescs{$arg}) { |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2104 | $parameterdescs{$arg} = $undescribed; |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2105 | print STDERR "${file}:$.: warning: Enum value '$arg' ". |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2106 | "not described in enum '$declaration_name'\n"; |
| 2107 | } |
| 2108 | |
| 2109 | } |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 2110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2111 | output_declaration($declaration_name, |
| 2112 | 'enum', |
| 2113 | {'enum' => $declaration_name, |
| 2114 | 'module' => $modulename, |
| 2115 | 'parameterlist' => \@parameterlist, |
| 2116 | 'parameterdescs' => \%parameterdescs, |
| 2117 | 'sectionlist' => \@sectionlist, |
| 2118 | 'sections' => \%sections, |
| 2119 | 'purpose' => $declaration_purpose |
| 2120 | }); |
| 2121 | } |
| 2122 | else { |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2123 | print STDERR "${file}:$.: error: Cannot parse enum!\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2124 | ++$errors; |
| 2125 | } |
| 2126 | } |
| 2127 | |
| 2128 | sub dump_typedef($$) { |
| 2129 | my $x = shift; |
| 2130 | my $file = shift; |
| 2131 | |
Martin Waitz | aeec46b | 2005-11-13 16:08:13 -0800 | [diff] [blame] | 2132 | $x =~ s@/\*.*?\*/@@gos; # strip comments. |
Mauro Carvalho Chehab | 8376645 | 2015-10-08 16:14:45 -0300 | [diff] [blame] | 2133 | |
| 2134 | # Parse function prototypes |
| 2135 | if ($x =~ /typedef\s+(\w+)\s*\(\*\s*(\w\S+)\s*\)\s*\((.*)\);/) { |
| 2136 | # Function typedefs |
| 2137 | $return_type = $1; |
| 2138 | $declaration_name = $2; |
| 2139 | my $args = $3; |
| 2140 | |
| 2141 | create_parameterlist($args, ',', $file); |
| 2142 | |
| 2143 | output_declaration($declaration_name, |
| 2144 | 'function', |
| 2145 | {'function' => $declaration_name, |
| 2146 | 'module' => $modulename, |
| 2147 | 'functiontype' => $return_type, |
| 2148 | 'parameterlist' => \@parameterlist, |
| 2149 | 'parameterdescs' => \%parameterdescs, |
| 2150 | 'parametertypes' => \%parametertypes, |
| 2151 | 'sectionlist' => \@sectionlist, |
| 2152 | 'sections' => \%sections, |
| 2153 | 'purpose' => $declaration_purpose |
| 2154 | }); |
| 2155 | return; |
| 2156 | } |
| 2157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2158 | while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) { |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2159 | $x =~ s/\(*.\)\s*;$/;/; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | $x =~ s/\[*.\]\s*;$/;/; |
| 2161 | } |
| 2162 | |
| 2163 | if ($x =~ /typedef.*\s+(\w+)\s*;/) { |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2164 | $declaration_name = $1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2165 | |
| 2166 | output_declaration($declaration_name, |
| 2167 | 'typedef', |
| 2168 | {'typedef' => $declaration_name, |
| 2169 | 'module' => $modulename, |
| 2170 | 'sectionlist' => \@sectionlist, |
| 2171 | 'sections' => \%sections, |
| 2172 | 'purpose' => $declaration_purpose |
| 2173 | }); |
| 2174 | } |
| 2175 | else { |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2176 | print STDERR "${file}:$.: error: Cannot parse typedef!\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | ++$errors; |
| 2178 | } |
| 2179 | } |
| 2180 | |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 2181 | sub save_struct_actual($) { |
| 2182 | my $actual = shift; |
| 2183 | |
| 2184 | # strip all spaces from the actual param so that it looks like one string item |
| 2185 | $actual =~ s/\s*//g; |
| 2186 | $struct_actual = $struct_actual . $actual . " "; |
| 2187 | } |
| 2188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2189 | sub create_parameterlist($$$) { |
| 2190 | my $args = shift; |
| 2191 | my $splitter = shift; |
| 2192 | my $file = shift; |
| 2193 | my $type; |
| 2194 | my $param; |
| 2195 | |
Martin Waitz | a6d3fe7 | 2006-01-09 20:53:55 -0800 | [diff] [blame] | 2196 | # temporarily replace commas inside function pointer definition |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2197 | while ($args =~ /(\([^\),]+),/) { |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2198 | $args =~ s/(\([^\),]+),/$1#/g; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2199 | } |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 2200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | foreach my $arg (split($splitter, $args)) { |
| 2202 | # strip comments |
| 2203 | $arg =~ s/\/\*.*\*\///; |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2204 | # strip leading/trailing spaces |
| 2205 | $arg =~ s/^\s*//; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | $arg =~ s/\s*$//; |
| 2207 | $arg =~ s/\s+/ /; |
| 2208 | |
| 2209 | if ($arg =~ /^#/) { |
| 2210 | # Treat preprocessor directive as a typeless variable just to fill |
| 2211 | # corresponding data structures "correctly". Catch it later in |
| 2212 | # output_* subs. |
| 2213 | push_parameter($arg, "", $file); |
Richard Kennedy | 00d6296 | 2008-02-23 15:24:01 -0800 | [diff] [blame] | 2214 | } elsif ($arg =~ m/\(.+\)\s*\(/) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2215 | # pointer-to-function |
| 2216 | $arg =~ tr/#/,/; |
Richard Kennedy | 00d6296 | 2008-02-23 15:24:01 -0800 | [diff] [blame] | 2217 | $arg =~ m/[^\(]+\(\*?\s*(\w*)\s*\)/; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2218 | $param = $1; |
| 2219 | $type = $arg; |
Richard Kennedy | 00d6296 | 2008-02-23 15:24:01 -0800 | [diff] [blame] | 2220 | $type =~ s/([^\(]+\(\*?)\s*$param/$1/; |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 2221 | save_struct_actual($param); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2222 | push_parameter($param, $type, $file); |
Martin Waitz | aeec46b | 2005-11-13 16:08:13 -0800 | [diff] [blame] | 2223 | } elsif ($arg) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2224 | $arg =~ s/\s*:\s*/:/g; |
| 2225 | $arg =~ s/\s*\[/\[/g; |
| 2226 | |
| 2227 | my @args = split('\s*,\s*', $arg); |
| 2228 | if ($args[0] =~ m/\*/) { |
| 2229 | $args[0] =~ s/(\*+)\s*/ $1/; |
| 2230 | } |
Borislav Petkov | 884f281 | 2007-05-08 00:29:05 -0700 | [diff] [blame] | 2231 | |
| 2232 | my @first_arg; |
| 2233 | if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) { |
| 2234 | shift @args; |
| 2235 | push(@first_arg, split('\s+', $1)); |
| 2236 | push(@first_arg, $2); |
| 2237 | } else { |
| 2238 | @first_arg = split('\s+', shift @args); |
| 2239 | } |
| 2240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | unshift(@args, pop @first_arg); |
| 2242 | $type = join " ", @first_arg; |
| 2243 | |
| 2244 | foreach $param (@args) { |
| 2245 | if ($param =~ m/^(\*+)\s*(.*)/) { |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 2246 | save_struct_actual($2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2247 | push_parameter($2, "$type $1", $file); |
| 2248 | } |
| 2249 | elsif ($param =~ m/(.*?):(\d+)/) { |
Randy Dunlap | 7b97887 | 2008-05-16 15:45:52 -0700 | [diff] [blame] | 2250 | if ($type ne "") { # skip unnamed bit-fields |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 2251 | save_struct_actual($1); |
Randy Dunlap | 7b97887 | 2008-05-16 15:45:52 -0700 | [diff] [blame] | 2252 | push_parameter($1, "$type:$2", $file) |
| 2253 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2254 | } |
| 2255 | else { |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 2256 | save_struct_actual($param); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2257 | push_parameter($param, $type, $file); |
| 2258 | } |
| 2259 | } |
| 2260 | } |
| 2261 | } |
| 2262 | } |
| 2263 | |
| 2264 | sub push_parameter($$$) { |
| 2265 | my $param = shift; |
| 2266 | my $type = shift; |
| 2267 | my $file = shift; |
| 2268 | |
Randy Dunlap | 5f8c7c9 | 2007-07-19 01:48:24 -0700 | [diff] [blame] | 2269 | if (($anon_struct_union == 1) && ($type eq "") && |
| 2270 | ($param eq "}")) { |
| 2271 | return; # ignore the ending }; from anon. struct/union |
| 2272 | } |
| 2273 | |
| 2274 | $anon_struct_union = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2275 | my $param_name = $param; |
| 2276 | $param_name =~ s/\[.*//; |
| 2277 | |
Martin Waitz | a6d3fe7 | 2006-01-09 20:53:55 -0800 | [diff] [blame] | 2278 | if ($type eq "" && $param =~ /\.\.\.$/) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2279 | { |
Randy Dunlap | ced6909 | 2008-12-01 13:14:03 -0800 | [diff] [blame] | 2280 | if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") { |
| 2281 | $parameterdescs{$param} = "variable arguments"; |
| 2282 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2283 | } |
| 2284 | elsif ($type eq "" && ($param eq "" or $param eq "void")) |
| 2285 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2286 | $param="void"; |
| 2287 | $parameterdescs{void} = "no arguments"; |
| 2288 | } |
Randy Dunlap | 134fe01 | 2006-12-22 01:10:50 -0800 | [diff] [blame] | 2289 | elsif ($type eq "" && ($param eq "struct" or $param eq "union")) |
| 2290 | # handle unnamed (anonymous) union or struct: |
| 2291 | { |
| 2292 | $type = $param; |
Randy Dunlap | 5f8c7c9 | 2007-07-19 01:48:24 -0700 | [diff] [blame] | 2293 | $param = "{unnamed_" . $param . "}"; |
Randy Dunlap | 134fe01 | 2006-12-22 01:10:50 -0800 | [diff] [blame] | 2294 | $parameterdescs{$param} = "anonymous\n"; |
Randy Dunlap | 5f8c7c9 | 2007-07-19 01:48:24 -0700 | [diff] [blame] | 2295 | $anon_struct_union = 1; |
Randy Dunlap | 134fe01 | 2006-12-22 01:10:50 -0800 | [diff] [blame] | 2296 | } |
| 2297 | |
Martin Waitz | a6d3fe7 | 2006-01-09 20:53:55 -0800 | [diff] [blame] | 2298 | # warn if parameter has no description |
Randy Dunlap | 134fe01 | 2006-12-22 01:10:50 -0800 | [diff] [blame] | 2299 | # (but ignore ones starting with # as these are not parameters |
| 2300 | # but inline preprocessor statements); |
| 2301 | # also ignore unnamed structs/unions; |
Randy Dunlap | 5f8c7c9 | 2007-07-19 01:48:24 -0700 | [diff] [blame] | 2302 | if (!$anon_struct_union) { |
Martin Waitz | a6d3fe7 | 2006-01-09 20:53:55 -0800 | [diff] [blame] | 2303 | if (!defined $parameterdescs{$param_name} && $param_name !~ /^#/) { |
| 2304 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2305 | $parameterdescs{$param_name} = $undescribed; |
| 2306 | |
| 2307 | if (($type eq 'function') || ($type eq 'enum')) { |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2308 | print STDERR "${file}:$.: warning: Function parameter ". |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2309 | "or member '$param' not " . |
| 2310 | "described in '$declaration_name'\n"; |
| 2311 | } |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2312 | print STDERR "${file}:$.: warning:" . |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2313 | " No description found for parameter '$param'\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2314 | ++$warnings; |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2315 | } |
| 2316 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2317 | |
Randy Dunlap | 2b35f4d | 2010-11-18 12:27:31 -0800 | [diff] [blame] | 2318 | $param = xml_escape($param); |
| 2319 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2320 | # strip spaces from $param so that it is one continuous string |
Randy Dunlap | e34e7db | 2009-06-17 17:37:47 -0700 | [diff] [blame] | 2321 | # on @parameterlist; |
| 2322 | # this fixes a problem where check_sections() cannot find |
| 2323 | # a parameter like "addr[6 + 2]" because it actually appears |
| 2324 | # as "addr[6", "+", "2]" on the parameter list; |
| 2325 | # but it's better to maintain the param string unchanged for output, |
| 2326 | # so just weaken the string compare in check_sections() to ignore |
| 2327 | # "[blah" in a parameter string; |
| 2328 | ###$param =~ s/\s*//g; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2329 | push @parameterlist, $param; |
| 2330 | $parametertypes{$param} = $type; |
| 2331 | } |
| 2332 | |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 2333 | sub check_sections($$$$$$) { |
| 2334 | my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck, $nested) = @_; |
| 2335 | my @sects = split ' ', $sectcheck; |
| 2336 | my @prms = split ' ', $prmscheck; |
| 2337 | my $err; |
| 2338 | my ($px, $sx); |
| 2339 | my $prm_clean; # strip trailing "[array size]" and/or beginning "*" |
| 2340 | |
| 2341 | foreach $sx (0 .. $#sects) { |
| 2342 | $err = 1; |
| 2343 | foreach $px (0 .. $#prms) { |
| 2344 | $prm_clean = $prms[$px]; |
| 2345 | $prm_clean =~ s/\[.*\]//; |
Johannes Berg | 1f3a668 | 2010-09-11 15:55:12 -0700 | [diff] [blame] | 2346 | $prm_clean =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i; |
Randy Dunlap | e34e7db | 2009-06-17 17:37:47 -0700 | [diff] [blame] | 2347 | # ignore array size in a parameter string; |
| 2348 | # however, the original param string may contain |
| 2349 | # spaces, e.g.: addr[6 + 2] |
| 2350 | # and this appears in @prms as "addr[6" since the |
| 2351 | # parameter list is split at spaces; |
| 2352 | # hence just ignore "[..." for the sections check; |
| 2353 | $prm_clean =~ s/\[.*//; |
| 2354 | |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 2355 | ##$prm_clean =~ s/^\**//; |
| 2356 | if ($prm_clean eq $sects[$sx]) { |
| 2357 | $err = 0; |
| 2358 | last; |
| 2359 | } |
| 2360 | } |
| 2361 | if ($err) { |
| 2362 | if ($decl_type eq "function") { |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2363 | print STDERR "${file}:$.: warning: " . |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 2364 | "Excess function parameter " . |
| 2365 | "'$sects[$sx]' " . |
| 2366 | "description in '$decl_name'\n"; |
| 2367 | ++$warnings; |
| 2368 | } else { |
| 2369 | if ($nested !~ m/\Q$sects[$sx]\E/) { |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2370 | print STDERR "${file}:$.: warning: " . |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 2371 | "Excess struct/union/enum/typedef member " . |
| 2372 | "'$sects[$sx]' " . |
| 2373 | "description in '$decl_name'\n"; |
| 2374 | ++$warnings; |
| 2375 | } |
| 2376 | } |
| 2377 | } |
| 2378 | } |
| 2379 | } |
| 2380 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2381 | ## |
Yacine Belkadi | 4092bac | 2012-11-26 22:22:27 +0100 | [diff] [blame] | 2382 | # Checks the section describing the return value of a function. |
| 2383 | sub check_return_section { |
| 2384 | my $file = shift; |
| 2385 | my $declaration_name = shift; |
| 2386 | my $return_type = shift; |
| 2387 | |
| 2388 | # Ignore an empty return type (It's a macro) |
| 2389 | # Ignore functions with a "void" return type. (But don't ignore "void *") |
| 2390 | if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) { |
| 2391 | return; |
| 2392 | } |
| 2393 | |
| 2394 | if (!defined($sections{$section_return}) || |
| 2395 | $sections{$section_return} eq "") { |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2396 | print STDERR "${file}:$.: warning: " . |
Yacine Belkadi | 4092bac | 2012-11-26 22:22:27 +0100 | [diff] [blame] | 2397 | "No description found for return value of " . |
| 2398 | "'$declaration_name'\n"; |
| 2399 | ++$warnings; |
| 2400 | } |
| 2401 | } |
| 2402 | |
| 2403 | ## |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2404 | # takes a function prototype and the name of the current file being |
| 2405 | # processed and spits out all the details stored in the global |
| 2406 | # arrays/hashes. |
| 2407 | sub dump_function($$) { |
| 2408 | my $prototype = shift; |
| 2409 | my $file = shift; |
Horia Geanta | cbb4d3e | 2014-07-12 09:55:03 -0700 | [diff] [blame] | 2410 | my $noret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2411 | |
| 2412 | $prototype =~ s/^static +//; |
| 2413 | $prototype =~ s/^extern +//; |
Pavel Pisa | 4dc3b16 | 2005-05-01 08:59:25 -0700 | [diff] [blame] | 2414 | $prototype =~ s/^asmlinkage +//; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2415 | $prototype =~ s/^inline +//; |
| 2416 | $prototype =~ s/^__inline__ +//; |
Randy Dunlap | 32e7940 | 2006-10-11 01:22:10 -0700 | [diff] [blame] | 2417 | $prototype =~ s/^__inline +//; |
| 2418 | $prototype =~ s/^__always_inline +//; |
| 2419 | $prototype =~ s/^noinline +//; |
Randy Dunlap | 74fc5c6 | 2008-06-19 16:03:29 -0700 | [diff] [blame] | 2420 | $prototype =~ s/__init +//; |
Randy Dunlap | 2007220 | 2010-03-23 13:35:24 -0700 | [diff] [blame] | 2421 | $prototype =~ s/__init_or_module +//; |
Randy Dunlap | 270a009 | 2014-08-24 18:17:17 -0700 | [diff] [blame] | 2422 | $prototype =~ s/__meminit +//; |
Randy Dunlap | 70c95b0 | 2012-01-21 10:31:54 -0800 | [diff] [blame] | 2423 | $prototype =~ s/__must_check +//; |
Randy Dunlap | 0df7c0e | 2012-08-16 16:23:20 -0700 | [diff] [blame] | 2424 | $prototype =~ s/__weak +//; |
Horia Geanta | cbb4d3e | 2014-07-12 09:55:03 -0700 | [diff] [blame] | 2425 | my $define = $prototype =~ s/^#\s*define\s+//; #ak added |
Randy Dunlap | 328d244 | 2007-02-28 20:12:10 -0800 | [diff] [blame] | 2426 | $prototype =~ s/__attribute__\s*\(\([a-z,]*\)\)//; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2427 | |
| 2428 | # Yes, this truly is vile. We are looking for: |
| 2429 | # 1. Return type (may be nothing if we're looking at a macro) |
| 2430 | # 2. Function name |
| 2431 | # 3. Function parameters. |
| 2432 | # |
| 2433 | # All the while we have to watch out for function pointer parameters |
| 2434 | # (which IIRC is what the two sections are for), C types (these |
| 2435 | # regexps don't even start to express all the possibilities), and |
| 2436 | # so on. |
| 2437 | # |
| 2438 | # If you mess with these regexps, it's a good idea to check that |
| 2439 | # the following functions' documentation still comes out right: |
| 2440 | # - parport_register_device (function pointer parameters) |
| 2441 | # - atomic_set (macro) |
Martin Waitz | 9598f91 | 2006-02-01 03:06:55 -0800 | [diff] [blame] | 2442 | # - pci_match_device, __copy_to_user (long return type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2443 | |
Horia Geanta | cbb4d3e | 2014-07-12 09:55:03 -0700 | [diff] [blame] | 2444 | if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) { |
| 2445 | # This is an object-like macro, it has no return type and no parameter |
| 2446 | # list. |
| 2447 | # Function-like macros are not allowed to have spaces between |
| 2448 | # declaration_name and opening parenthesis (notice the \s+). |
| 2449 | $return_type = $1; |
| 2450 | $declaration_name = $2; |
| 2451 | $noret = 1; |
| 2452 | } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2453 | $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || |
| 2454 | $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || |
| 2455 | $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || |
Randy Dunlap | 94b3e03 | 2008-02-07 00:13:26 -0800 | [diff] [blame] | 2456 | $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2457 | $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || |
| 2458 | $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ || |
| 2459 | $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
| 2460 | $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
| 2461 | $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
| 2462 | $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
| 2463 | $prototype =~ m/^(\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
| 2464 | $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
Martin Waitz | 9598f91 | 2006-02-01 03:06:55 -0800 | [diff] [blame] | 2465 | $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
| 2466 | $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
Randy Dunlap | 412ecd77 | 2007-02-10 22:47:33 -0800 | [diff] [blame] | 2467 | $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ || |
| 2468 | $prototype =~ m/^(\w+\s+\w+\s*\*\s*\w+\s*\*\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2469 | $return_type = $1; |
| 2470 | $declaration_name = $2; |
| 2471 | my $args = $3; |
| 2472 | |
| 2473 | create_parameterlist($args, ',', $file); |
| 2474 | } else { |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2475 | print STDERR "${file}:$.: warning: cannot understand function prototype: '$prototype'\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2476 | return; |
| 2477 | } |
| 2478 | |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 2479 | my $prms = join " ", @parameterlist; |
| 2480 | check_sections($file, $declaration_name, "function", $sectcheck, $prms, ""); |
| 2481 | |
Yacine Belkadi | 4092bac | 2012-11-26 22:22:27 +0100 | [diff] [blame] | 2482 | # This check emits a lot of warnings at the moment, because many |
| 2483 | # functions don't have a 'Return' doc section. So until the number |
| 2484 | # of warnings goes sufficiently down, the check is only performed in |
| 2485 | # verbose mode. |
| 2486 | # TODO: always perform the check. |
Horia Geanta | cbb4d3e | 2014-07-12 09:55:03 -0700 | [diff] [blame] | 2487 | if ($verbose && !$noret) { |
Yacine Belkadi | 4092bac | 2012-11-26 22:22:27 +0100 | [diff] [blame] | 2488 | check_return_section($file, $declaration_name, $return_type); |
| 2489 | } |
| 2490 | |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 2491 | output_declaration($declaration_name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2492 | 'function', |
| 2493 | {'function' => $declaration_name, |
| 2494 | 'module' => $modulename, |
| 2495 | 'functiontype' => $return_type, |
| 2496 | 'parameterlist' => \@parameterlist, |
| 2497 | 'parameterdescs' => \%parameterdescs, |
| 2498 | 'parametertypes' => \%parametertypes, |
| 2499 | 'sectionlist' => \@sectionlist, |
| 2500 | 'sections' => \%sections, |
| 2501 | 'purpose' => $declaration_purpose |
| 2502 | }); |
| 2503 | } |
| 2504 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2505 | sub reset_state { |
| 2506 | $function = ""; |
| 2507 | %constants = (); |
| 2508 | %parameterdescs = (); |
| 2509 | %parametertypes = (); |
| 2510 | @parameterlist = (); |
| 2511 | %sections = (); |
| 2512 | @sectionlist = (); |
Randy Dunlap | a1d94aa | 2008-12-19 08:49:30 -0800 | [diff] [blame] | 2513 | $sectcheck = ""; |
| 2514 | $struct_actual = ""; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2515 | $prototype = ""; |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 2516 | |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2517 | $state = STATE_NORMAL; |
| 2518 | $inline_doc_state = STATE_INLINE_NA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2519 | } |
| 2520 | |
Jason Baron | 56afb0f | 2009-04-30 13:29:36 -0400 | [diff] [blame] | 2521 | sub tracepoint_munge($) { |
| 2522 | my $file = shift; |
| 2523 | my $tracepointname = 0; |
| 2524 | my $tracepointargs = 0; |
| 2525 | |
Jason Baron | 3a9089f | 2009-12-01 12:18:49 -0500 | [diff] [blame] | 2526 | if ($prototype =~ m/TRACE_EVENT\((.*?),/) { |
Jason Baron | 56afb0f | 2009-04-30 13:29:36 -0400 | [diff] [blame] | 2527 | $tracepointname = $1; |
| 2528 | } |
Jason Baron | 3a9089f | 2009-12-01 12:18:49 -0500 | [diff] [blame] | 2529 | if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) { |
| 2530 | $tracepointname = $1; |
| 2531 | } |
| 2532 | if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) { |
| 2533 | $tracepointname = $2; |
| 2534 | } |
| 2535 | $tracepointname =~ s/^\s+//; #strip leading whitespace |
| 2536 | if ($prototype =~ m/TP_PROTO\((.*?)\)/) { |
Jason Baron | 56afb0f | 2009-04-30 13:29:36 -0400 | [diff] [blame] | 2537 | $tracepointargs = $1; |
| 2538 | } |
| 2539 | if (($tracepointname eq 0) || ($tracepointargs eq 0)) { |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2540 | print STDERR "${file}:$.: warning: Unrecognized tracepoint format: \n". |
Jason Baron | 56afb0f | 2009-04-30 13:29:36 -0400 | [diff] [blame] | 2541 | "$prototype\n"; |
| 2542 | } else { |
| 2543 | $prototype = "static inline void trace_$tracepointname($tracepointargs)"; |
| 2544 | } |
| 2545 | } |
| 2546 | |
Randy Dunlap | b4870bc | 2009-02-11 13:04:33 -0800 | [diff] [blame] | 2547 | sub syscall_munge() { |
| 2548 | my $void = 0; |
| 2549 | |
| 2550 | $prototype =~ s@[\r\n\t]+@ @gos; # strip newlines/CR's/tabs |
| 2551 | ## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) { |
| 2552 | if ($prototype =~ m/SYSCALL_DEFINE0/) { |
| 2553 | $void = 1; |
| 2554 | ## $prototype = "long sys_$1(void)"; |
| 2555 | } |
| 2556 | |
| 2557 | $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name |
| 2558 | if ($prototype =~ m/long (sys_.*?),/) { |
| 2559 | $prototype =~ s/,/\(/; |
| 2560 | } elsif ($void) { |
| 2561 | $prototype =~ s/\)/\(void\)/; |
| 2562 | } |
| 2563 | |
| 2564 | # now delete all of the odd-number commas in $prototype |
| 2565 | # so that arg types & arg names don't have a comma between them |
| 2566 | my $count = 0; |
| 2567 | my $len = length($prototype); |
| 2568 | if ($void) { |
| 2569 | $len = 0; # skip the for-loop |
| 2570 | } |
| 2571 | for (my $ix = 0; $ix < $len; $ix++) { |
| 2572 | if (substr($prototype, $ix, 1) eq ',') { |
| 2573 | $count++; |
| 2574 | if ($count % 2 == 1) { |
| 2575 | substr($prototype, $ix, 1) = ' '; |
| 2576 | } |
| 2577 | } |
| 2578 | } |
| 2579 | } |
| 2580 | |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 2581 | sub process_state3_function($$) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2582 | my $x = shift; |
| 2583 | my $file = shift; |
| 2584 | |
Randy Dunlap | 51f5a0c | 2007-07-19 01:48:24 -0700 | [diff] [blame] | 2585 | $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line |
| 2586 | |
Randy Dunlap | 890c78c | 2008-10-25 17:06:43 -0700 | [diff] [blame] | 2587 | if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2588 | # do nothing |
| 2589 | } |
| 2590 | elsif ($x =~ /([^\{]*)/) { |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2591 | $prototype .= $1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2592 | } |
Randy Dunlap | b4870bc | 2009-02-11 13:04:33 -0800 | [diff] [blame] | 2593 | |
Randy Dunlap | 890c78c | 2008-10-25 17:06:43 -0700 | [diff] [blame] | 2594 | if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) { |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2595 | $prototype =~ s@/\*.*?\*/@@gos; # strip comments. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2596 | $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's. |
| 2597 | $prototype =~ s@^\s+@@gos; # strip leading spaces |
Randy Dunlap | b4870bc | 2009-02-11 13:04:33 -0800 | [diff] [blame] | 2598 | if ($prototype =~ /SYSCALL_DEFINE/) { |
| 2599 | syscall_munge(); |
| 2600 | } |
Jason Baron | 3a9089f | 2009-12-01 12:18:49 -0500 | [diff] [blame] | 2601 | if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ || |
| 2602 | $prototype =~ /DEFINE_SINGLE_EVENT/) |
| 2603 | { |
Jason Baron | 56afb0f | 2009-04-30 13:29:36 -0400 | [diff] [blame] | 2604 | tracepoint_munge($file); |
| 2605 | } |
Randy Dunlap | b4870bc | 2009-02-11 13:04:33 -0800 | [diff] [blame] | 2606 | dump_function($prototype, $file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2607 | reset_state(); |
| 2608 | } |
| 2609 | } |
| 2610 | |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 2611 | sub process_state3_type($$) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2612 | my $x = shift; |
| 2613 | my $file = shift; |
| 2614 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2615 | $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's. |
| 2616 | $x =~ s@^\s+@@gos; # strip leading spaces |
| 2617 | $x =~ s@\s+$@@gos; # strip trailing spaces |
Randy Dunlap | 51f5a0c | 2007-07-19 01:48:24 -0700 | [diff] [blame] | 2618 | $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line |
| 2619 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2620 | if ($x =~ /^#/) { |
| 2621 | # To distinguish preprocessor directive from regular declaration later. |
| 2622 | $x .= ";"; |
| 2623 | } |
| 2624 | |
| 2625 | while (1) { |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2626 | if ( $x =~ /([^{};]*)([{};])(.*)/ ) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2627 | $prototype .= $1 . $2; |
| 2628 | ($2 eq '{') && $brcount++; |
| 2629 | ($2 eq '}') && $brcount--; |
| 2630 | if (($2 eq ';') && ($brcount == 0)) { |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 2631 | dump_declaration($prototype, $file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2632 | reset_state(); |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2633 | last; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2634 | } |
| 2635 | $x = $3; |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2636 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2637 | $prototype .= $x; |
| 2638 | last; |
| 2639 | } |
| 2640 | } |
| 2641 | } |
| 2642 | |
Randy Dunlap | 6b5b55f | 2007-10-16 23:31:20 -0700 | [diff] [blame] | 2643 | # xml_escape: replace <, >, and & in the text stream; |
| 2644 | # |
| 2645 | # however, formatting controls that are generated internally/locally in the |
| 2646 | # kernel-doc script are not escaped here; instead, they begin life like |
| 2647 | # $blankline_html (4 of '\' followed by a mnemonic + ':'), then these strings |
| 2648 | # are converted to their mnemonic-expected output, without the 4 * '\' & ':', |
| 2649 | # just before actual output; (this is done by local_unescape()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2650 | sub xml_escape($) { |
| 2651 | my $text = shift; |
Randy Dunlap | ecfb251 | 2006-06-25 05:49:13 -0700 | [diff] [blame] | 2652 | if (($output_mode eq "text") || ($output_mode eq "man")) { |
| 2653 | return $text; |
| 2654 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2655 | $text =~ s/\&/\\\\\\amp;/g; |
| 2656 | $text =~ s/\</\\\\\\lt;/g; |
| 2657 | $text =~ s/\>/\\\\\\gt;/g; |
| 2658 | return $text; |
| 2659 | } |
| 2660 | |
Jonathan Corbet | c0d1b6e | 2016-05-12 16:15:37 +0300 | [diff] [blame] | 2661 | # xml_unescape: reverse the effects of xml_escape |
| 2662 | sub xml_unescape($) { |
| 2663 | my $text = shift; |
| 2664 | if (($output_mode eq "text") || ($output_mode eq "man")) { |
| 2665 | return $text; |
| 2666 | } |
| 2667 | $text =~ s/\\\\\\amp;/\&/g; |
| 2668 | $text =~ s/\\\\\\lt;/</g; |
| 2669 | $text =~ s/\\\\\\gt;/>/g; |
| 2670 | return $text; |
| 2671 | } |
| 2672 | |
Randy Dunlap | 6b5b55f | 2007-10-16 23:31:20 -0700 | [diff] [blame] | 2673 | # convert local escape strings to html |
| 2674 | # local escape strings look like: '\\\\menmonic:' (that's 4 backslashes) |
| 2675 | sub local_unescape($) { |
| 2676 | my $text = shift; |
| 2677 | if (($output_mode eq "text") || ($output_mode eq "man")) { |
| 2678 | return $text; |
| 2679 | } |
| 2680 | $text =~ s/\\\\\\\\lt:/</g; |
| 2681 | $text =~ s/\\\\\\\\gt:/>/g; |
| 2682 | return $text; |
| 2683 | } |
| 2684 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2685 | sub process_file($) { |
Randy Dunlap | 2283a11 | 2005-07-07 15:39:26 -0700 | [diff] [blame] | 2686 | my $file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2687 | my $identifier; |
| 2688 | my $func; |
Randy Dunlap | a21217d | 2007-02-10 01:46:04 -0800 | [diff] [blame] | 2689 | my $descr; |
Johannes Weiner | 6423133 | 2009-09-17 19:26:53 -0700 | [diff] [blame] | 2690 | my $in_purpose = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2691 | my $initial_section_counter = $section_counter; |
Ben Hutchings | 68f8666 | 2015-09-01 23:48:49 +0100 | [diff] [blame] | 2692 | my ($orig_file) = @_; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2693 | |
Randy Dunlap | 2283a11 | 2005-07-07 15:39:26 -0700 | [diff] [blame] | 2694 | if (defined($ENV{'SRCTREE'})) { |
Ben Hutchings | 68f8666 | 2015-09-01 23:48:49 +0100 | [diff] [blame] | 2695 | $file = "$ENV{'SRCTREE'}" . "/" . $orig_file; |
Randy Dunlap | 2283a11 | 2005-07-07 15:39:26 -0700 | [diff] [blame] | 2696 | } |
| 2697 | else { |
Ben Hutchings | 68f8666 | 2015-09-01 23:48:49 +0100 | [diff] [blame] | 2698 | $file = $orig_file; |
Randy Dunlap | 2283a11 | 2005-07-07 15:39:26 -0700 | [diff] [blame] | 2699 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2700 | if (defined($source_map{$file})) { |
| 2701 | $file = $source_map{$file}; |
| 2702 | } |
| 2703 | |
| 2704 | if (!open(IN,"<$file")) { |
| 2705 | print STDERR "Error: Cannot open file $file\n"; |
| 2706 | ++$errors; |
| 2707 | return; |
| 2708 | } |
| 2709 | |
Jani Nikula | 86ae2e3 | 2016-01-21 13:05:22 +0200 | [diff] [blame] | 2710 | # two passes for -export and -internal |
Jani Nikula | b6c3f45 | 2016-05-29 22:19:35 +0300 | [diff] [blame^] | 2711 | if ($output_selection == OUTPUT_EXPORTED || |
| 2712 | $output_selection == OUTPUT_INTERNAL) { |
Jani Nikula | 86ae2e3 | 2016-01-21 13:05:22 +0200 | [diff] [blame] | 2713 | while (<IN>) { |
| 2714 | if (/$export_symbol/o) { |
| 2715 | $function_table{$2} = 1; |
| 2716 | } |
| 2717 | } |
| 2718 | seek(IN, 0, 0); |
| 2719 | } |
| 2720 | |
Ilya Dryomov | a9e7314 | 2010-02-26 13:05:47 -0800 | [diff] [blame] | 2721 | $. = 1; |
| 2722 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2723 | $section_counter = 0; |
| 2724 | while (<IN>) { |
Daniel Santos | 6547842 | 2012-10-04 17:15:05 -0700 | [diff] [blame] | 2725 | while (s/\\\s*$//) { |
| 2726 | $_ .= <IN>; |
| 2727 | } |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2728 | if ($state == STATE_NORMAL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2729 | if (/$doc_start/o) { |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2730 | $state = STATE_NAME; # next line is always the function name |
Randy Dunlap | 850622d | 2006-06-25 05:48:55 -0700 | [diff] [blame] | 2731 | $in_doc_sect = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2732 | } |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2733 | } elsif ($state == STATE_NAME) {# this line is the function name (always) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2734 | if (/$doc_block/o) { |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2735 | $state = STATE_DOCBLOCK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2736 | $contents = ""; |
| 2737 | if ( $1 eq "" ) { |
| 2738 | $section = $section_intro; |
| 2739 | } else { |
| 2740 | $section = $1; |
| 2741 | } |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2742 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2743 | elsif (/$doc_decl/o) { |
| 2744 | $identifier = $1; |
| 2745 | if (/\s*([\w\s]+?)\s*-/) { |
| 2746 | $identifier = $1; |
| 2747 | } |
| 2748 | |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2749 | $state = STATE_FIELD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2750 | if (/-(.*)/) { |
Randy Dunlap | 51f5a0c | 2007-07-19 01:48:24 -0700 | [diff] [blame] | 2751 | # strip leading/trailing/multiple spaces |
Randy Dunlap | a21217d | 2007-02-10 01:46:04 -0800 | [diff] [blame] | 2752 | $descr= $1; |
| 2753 | $descr =~ s/^\s*//; |
| 2754 | $descr =~ s/\s*$//; |
Daniel Santos | 12ae677 | 2012-10-04 17:15:10 -0700 | [diff] [blame] | 2755 | $descr =~ s/\s+/ /g; |
Randy Dunlap | a21217d | 2007-02-10 01:46:04 -0800 | [diff] [blame] | 2756 | $declaration_purpose = xml_escape($descr); |
Johannes Weiner | 6423133 | 2009-09-17 19:26:53 -0700 | [diff] [blame] | 2757 | $in_purpose = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2758 | } else { |
| 2759 | $declaration_purpose = ""; |
| 2760 | } |
Randy Dunlap | 77cc23b | 2008-02-07 00:13:42 -0800 | [diff] [blame] | 2761 | |
| 2762 | if (($declaration_purpose eq "") && $verbose) { |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2763 | print STDERR "${file}:$.: warning: missing initial short description on line:\n"; |
Randy Dunlap | 77cc23b | 2008-02-07 00:13:42 -0800 | [diff] [blame] | 2764 | print STDERR $_; |
| 2765 | ++$warnings; |
| 2766 | } |
| 2767 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2768 | if ($identifier =~ m/^struct/) { |
| 2769 | $decl_type = 'struct'; |
| 2770 | } elsif ($identifier =~ m/^union/) { |
| 2771 | $decl_type = 'union'; |
| 2772 | } elsif ($identifier =~ m/^enum/) { |
| 2773 | $decl_type = 'enum'; |
| 2774 | } elsif ($identifier =~ m/^typedef/) { |
| 2775 | $decl_type = 'typedef'; |
| 2776 | } else { |
| 2777 | $decl_type = 'function'; |
| 2778 | } |
| 2779 | |
| 2780 | if ($verbose) { |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2781 | print STDERR "${file}:$.: info: Scanning doc for $identifier\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2782 | } |
| 2783 | } else { |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2784 | print STDERR "${file}:$.: warning: Cannot understand $_ on line $.", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2785 | " - I thought it was a doc line\n"; |
| 2786 | ++$warnings; |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2787 | $state = STATE_NORMAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2788 | } |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2789 | } elsif ($state == STATE_FIELD) { # look for head: lines, and include content |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2790 | if (/$doc_sect/o) { |
| 2791 | $newsection = $1; |
| 2792 | $newcontents = $2; |
| 2793 | |
Randy Dunlap | 792aa2f | 2008-02-07 00:13:41 -0800 | [diff] [blame] | 2794 | if (($contents ne "") && ($contents ne "\n")) { |
Randy Dunlap | 850622d | 2006-06-25 05:48:55 -0700 | [diff] [blame] | 2795 | if (!$in_doc_sect && $verbose) { |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2796 | print STDERR "${file}:$.: warning: contents before sections\n"; |
Randy Dunlap | 850622d | 2006-06-25 05:48:55 -0700 | [diff] [blame] | 2797 | ++$warnings; |
| 2798 | } |
Randy Dunlap | 94dc7ad | 2008-04-28 02:16:34 -0700 | [diff] [blame] | 2799 | dump_section($file, $section, xml_escape($contents)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2800 | $section = $section_default; |
| 2801 | } |
| 2802 | |
Randy Dunlap | 850622d | 2006-06-25 05:48:55 -0700 | [diff] [blame] | 2803 | $in_doc_sect = 1; |
Johannes Weiner | 6423133 | 2009-09-17 19:26:53 -0700 | [diff] [blame] | 2804 | $in_purpose = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2805 | $contents = $newcontents; |
| 2806 | if ($contents ne "") { |
Randy Dunlap | 2720574 | 2006-10-11 01:22:12 -0700 | [diff] [blame] | 2807 | while ((substr($contents, 0, 1) eq " ") || |
| 2808 | substr($contents, 0, 1) eq "\t") { |
| 2809 | $contents = substr($contents, 1); |
Randy Dunlap | 0518949 | 2006-06-25 05:47:47 -0700 | [diff] [blame] | 2810 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2811 | $contents .= "\n"; |
| 2812 | } |
| 2813 | $section = $newsection; |
| 2814 | } elsif (/$doc_end/) { |
Randy Dunlap | 4c98eca | 2010-03-10 15:22:02 -0800 | [diff] [blame] | 2815 | if (($contents ne "") && ($contents ne "\n")) { |
Randy Dunlap | 94dc7ad | 2008-04-28 02:16:34 -0700 | [diff] [blame] | 2816 | dump_section($file, $section, xml_escape($contents)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2817 | $section = $section_default; |
| 2818 | $contents = ""; |
| 2819 | } |
Randy Dunlap | 46b958e | 2008-04-28 02:16:35 -0700 | [diff] [blame] | 2820 | # look for doc_com + <text> + doc_end: |
| 2821 | if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') { |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2822 | print STDERR "${file}:$.: warning: suspicious ending line: $_"; |
Randy Dunlap | 46b958e | 2008-04-28 02:16:35 -0700 | [diff] [blame] | 2823 | ++$warnings; |
| 2824 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2825 | |
| 2826 | $prototype = ""; |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2827 | $state = STATE_PROTO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2828 | $brcount = 0; |
Randy Dunlap | 232acbc | 2006-06-25 05:47:48 -0700 | [diff] [blame] | 2829 | # print STDERR "end of doc comment, looking for prototype\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2830 | } elsif (/$doc_content/) { |
| 2831 | # miguel-style comment kludge, look for blank lines after |
| 2832 | # @parameter line to signify start of description |
Johannes Weiner | 6423133 | 2009-09-17 19:26:53 -0700 | [diff] [blame] | 2833 | if ($1 eq "") { |
| 2834 | if ($section =~ m/^@/ || $section eq $section_context) { |
| 2835 | dump_section($file, $section, xml_escape($contents)); |
| 2836 | $section = $section_default; |
| 2837 | $contents = ""; |
| 2838 | } else { |
| 2839 | $contents .= "\n"; |
| 2840 | } |
| 2841 | $in_purpose = 0; |
| 2842 | } elsif ($in_purpose == 1) { |
| 2843 | # Continued declaration purpose |
| 2844 | chomp($declaration_purpose); |
| 2845 | $declaration_purpose .= " " . xml_escape($1); |
Daniel Santos | 12ae677 | 2012-10-04 17:15:10 -0700 | [diff] [blame] | 2846 | $declaration_purpose =~ s/\s+/ /g; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2847 | } else { |
Randy Dunlap | b9d97328 | 2009-06-09 08:50:38 -0700 | [diff] [blame] | 2848 | $contents .= $1 . "\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2849 | } |
| 2850 | } else { |
| 2851 | # i dont know - bad line? ignore. |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2852 | print STDERR "${file}:$.: warning: bad line: $_"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2853 | ++$warnings; |
| 2854 | } |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2855 | } elsif ($state == STATE_INLINE) { # scanning for inline parameters |
Danilo Cesar Lemes de Paula | a4c6ebe | 2015-08-04 09:04:08 -0300 | [diff] [blame] | 2856 | # First line (state 1) needs to be a @parameter |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2857 | if ($inline_doc_state == STATE_INLINE_NAME && /$doc_inline_sect/o) { |
Danilo Cesar Lemes de Paula | a4c6ebe | 2015-08-04 09:04:08 -0300 | [diff] [blame] | 2858 | $section = $1; |
| 2859 | $contents = $2; |
| 2860 | if ($contents ne "") { |
| 2861 | while ((substr($contents, 0, 1) eq " ") || |
| 2862 | substr($contents, 0, 1) eq "\t") { |
| 2863 | $contents = substr($contents, 1); |
| 2864 | } |
| 2865 | $contents .= "\n"; |
| 2866 | } |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2867 | $inline_doc_state = STATE_INLINE_TEXT; |
Danilo Cesar Lemes de Paula | a4c6ebe | 2015-08-04 09:04:08 -0300 | [diff] [blame] | 2868 | # Documentation block end */ |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2869 | } elsif (/$doc_inline_end/) { |
Danilo Cesar Lemes de Paula | a4c6ebe | 2015-08-04 09:04:08 -0300 | [diff] [blame] | 2870 | if (($contents ne "") && ($contents ne "\n")) { |
| 2871 | dump_section($file, $section, xml_escape($contents)); |
| 2872 | $section = $section_default; |
| 2873 | $contents = ""; |
| 2874 | } |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2875 | $state = STATE_PROTO; |
| 2876 | $inline_doc_state = STATE_INLINE_NA; |
Danilo Cesar Lemes de Paula | a4c6ebe | 2015-08-04 09:04:08 -0300 | [diff] [blame] | 2877 | # Regular text |
| 2878 | } elsif (/$doc_content/) { |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2879 | if ($inline_doc_state == STATE_INLINE_TEXT) { |
Danilo Cesar Lemes de Paula | a4c6ebe | 2015-08-04 09:04:08 -0300 | [diff] [blame] | 2880 | $contents .= $1 . "\n"; |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2881 | } elsif ($inline_doc_state == STATE_INLINE_NAME) { |
| 2882 | $inline_doc_state = STATE_INLINE_ERROR; |
Danilo Cesar Lemes de Paula | a4c6ebe | 2015-08-04 09:04:08 -0300 | [diff] [blame] | 2883 | print STDERR "Warning(${file}:$.): "; |
| 2884 | print STDERR "Incorrect use of kernel-doc format: $_"; |
| 2885 | ++$warnings; |
| 2886 | } |
| 2887 | } |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2888 | } elsif ($state == STATE_PROTO) { # scanning for function '{' (end of prototype) |
| 2889 | if (/$doc_inline_start/) { |
| 2890 | $state = STATE_INLINE; |
| 2891 | $inline_doc_state = STATE_INLINE_NAME; |
Danilo Cesar Lemes de Paula | a4c6ebe | 2015-08-04 09:04:08 -0300 | [diff] [blame] | 2892 | } elsif ($decl_type eq 'function') { |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2893 | process_state3_function($_, $file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2894 | } else { |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2895 | process_state3_type($_, $file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2896 | } |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2897 | } elsif ($state == STATE_DOCBLOCK) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2898 | # Documentation block |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2899 | if (/$doc_block/) { |
Randy Dunlap | 94dc7ad | 2008-04-28 02:16:34 -0700 | [diff] [blame] | 2900 | dump_doc_section($file, $section, xml_escape($contents)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2901 | $contents = ""; |
| 2902 | $function = ""; |
| 2903 | %constants = (); |
| 2904 | %parameterdescs = (); |
| 2905 | %parametertypes = (); |
| 2906 | @parameterlist = (); |
| 2907 | %sections = (); |
| 2908 | @sectionlist = (); |
| 2909 | $prototype = ""; |
| 2910 | if ( $1 eq "" ) { |
| 2911 | $section = $section_intro; |
| 2912 | } else { |
| 2913 | $section = $1; |
| 2914 | } |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2915 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2916 | elsif (/$doc_end/) |
| 2917 | { |
Randy Dunlap | 94dc7ad | 2008-04-28 02:16:34 -0700 | [diff] [blame] | 2918 | dump_doc_section($file, $section, xml_escape($contents)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2919 | $contents = ""; |
| 2920 | $function = ""; |
| 2921 | %constants = (); |
| 2922 | %parameterdescs = (); |
| 2923 | %parametertypes = (); |
| 2924 | @parameterlist = (); |
| 2925 | %sections = (); |
| 2926 | @sectionlist = (); |
| 2927 | $prototype = ""; |
Jani Nikula | 48af606 | 2016-05-26 14:56:05 +0300 | [diff] [blame] | 2928 | $state = STATE_NORMAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2929 | } |
| 2930 | elsif (/$doc_content/) |
| 2931 | { |
| 2932 | if ( $1 eq "" ) |
| 2933 | { |
| 2934 | $contents .= $blankline; |
| 2935 | } |
| 2936 | else |
| 2937 | { |
| 2938 | $contents .= $1 . "\n"; |
Randy Dunlap | 3c3b809 | 2006-02-01 03:06:58 -0800 | [diff] [blame] | 2939 | } |
Randy Dunlap | 3c30879 | 2007-05-08 00:24:39 -0700 | [diff] [blame] | 2940 | } |
| 2941 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2942 | } |
| 2943 | if ($initial_section_counter == $section_counter) { |
Bart Van Assche | d40e1e6 | 2015-09-04 15:43:21 -0700 | [diff] [blame] | 2944 | print STDERR "${file}:1: warning: no structured comments found\n"; |
Jani Nikula | b6c3f45 | 2016-05-29 22:19:35 +0300 | [diff] [blame^] | 2945 | if (($output_selection == OUTPUT_INCLUDE) && ($show_not_found == 1)) { |
Johannes Berg | e946c43a | 2013-11-12 15:11:12 -0800 | [diff] [blame] | 2946 | print STDERR " Was looking for '$_'.\n" for keys %function_table; |
| 2947 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2948 | if ($output_mode eq "xml") { |
| 2949 | # The template wants at least one RefEntry here; make one. |
| 2950 | print "<refentry>\n"; |
| 2951 | print " <refnamediv>\n"; |
| 2952 | print " <refname>\n"; |
Ben Hutchings | 68f8666 | 2015-09-01 23:48:49 +0100 | [diff] [blame] | 2953 | print " ${orig_file}\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2954 | print " </refname>\n"; |
| 2955 | print " <refpurpose>\n"; |
| 2956 | print " Document generation inconsistency\n"; |
| 2957 | print " </refpurpose>\n"; |
| 2958 | print " </refnamediv>\n"; |
| 2959 | print " <refsect1>\n"; |
| 2960 | print " <title>\n"; |
| 2961 | print " Oops\n"; |
| 2962 | print " </title>\n"; |
| 2963 | print " <warning>\n"; |
| 2964 | print " <para>\n"; |
| 2965 | print " The template for this document tried to insert\n"; |
| 2966 | print " the structured comment from the file\n"; |
Ben Hutchings | 68f8666 | 2015-09-01 23:48:49 +0100 | [diff] [blame] | 2967 | print " <filename>${orig_file}</filename> at this point,\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2968 | print " but none was found.\n"; |
| 2969 | print " This dummy section is inserted to allow\n"; |
| 2970 | print " generation to continue.\n"; |
| 2971 | print " </para>\n"; |
| 2972 | print " </warning>\n"; |
| 2973 | print " </refsect1>\n"; |
| 2974 | print "</refentry>\n"; |
| 2975 | } |
| 2976 | } |
| 2977 | } |
Randy Dunlap | 8484baa | 2011-01-05 16:28:43 -0800 | [diff] [blame] | 2978 | |
| 2979 | |
| 2980 | $kernelversion = get_kernel_version(); |
| 2981 | |
| 2982 | # generate a sequence of code that will splice in highlighting information |
| 2983 | # using the s// operator. |
Mauro Carvalho Chehab | 1ef0623 | 2015-11-17 13:29:49 -0200 | [diff] [blame] | 2984 | for (my $k = 0; $k < @highlights; $k++) { |
Danilo Cesar Lemes de Paula | 4d73270 | 2015-09-07 17:01:59 -0300 | [diff] [blame] | 2985 | my $pattern = $highlights[$k][0]; |
| 2986 | my $result = $highlights[$k][1]; |
| 2987 | # print STDERR "scanning pattern:$pattern, highlight:($result)\n"; |
| 2988 | $dohighlight .= "\$contents =~ s:$pattern:$result:gs;\n"; |
Randy Dunlap | 8484baa | 2011-01-05 16:28:43 -0800 | [diff] [blame] | 2989 | } |
| 2990 | |
| 2991 | # Read the file that maps relative names to absolute names for |
| 2992 | # separate source and object directories and for shadow trees. |
| 2993 | if (open(SOURCE_MAP, "<.tmp_filelist.txt")) { |
| 2994 | my ($relname, $absname); |
| 2995 | while(<SOURCE_MAP>) { |
| 2996 | chop(); |
| 2997 | ($relname, $absname) = (split())[0..1]; |
| 2998 | $relname =~ s:^/+::; |
| 2999 | $source_map{$relname} = $absname; |
| 3000 | } |
| 3001 | close(SOURCE_MAP); |
| 3002 | } |
| 3003 | |
| 3004 | foreach (@ARGV) { |
| 3005 | chomp; |
| 3006 | process_file($_); |
| 3007 | } |
| 3008 | if ($verbose && $errors) { |
| 3009 | print STDERR "$errors errors\n"; |
| 3010 | } |
| 3011 | if ($verbose && $warnings) { |
| 3012 | print STDERR "$warnings warnings\n"; |
| 3013 | } |
| 3014 | |
| 3015 | exit($errors); |