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