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