net: switchdev: Add support for querying supported bridge flags by hardware
[linux-2.6/btrfs-unstable.git] / scripts / kernel-doc-xml-ref
blob104a5a5ba2c8e2bc2c1fa3792818c10cc5c8d90a
1 #!/usr/bin/perl -w
3 use strict;
5 ## Copyright (C) 2015 Intel Corporation ##
6 # ##
7 ## This software falls under the GNU General Public License. ##
8 ## Please read the COPYING file for more information ##
11 # This software reads a XML file and a list of valid interal
12 # references to replace Docbook tags with links.
14 # The list of "valid internal references" must be one-per-line in the following format:
15 # API-struct-foo
16 # API-enum-bar
17 # API-my-function
19 # The software walks over the XML file looking for xml tags representing possible references
20 # to the Document. Each reference will be cross checked against the "Valid Internal Reference" list. If
21 # the referece is found it replaces its content by a <link> tag.
23 # usage:
24 # kernel-doc-xml-ref -db filename
25 # xml filename > outputfile
27 # read arguments
28 if ($#ARGV != 2) {
29 usage();
32 #Holds the database filename
33 my $databasefile;
34 my @database;
36 #holds the inputfile
37 my $inputfile;
38 my $errors = 0;
40 my %highlights = (
41 "<function>(.*?)</function>",
42 "\"<function>\" . convert_function(\$1, \$line) . \"</function>\"",
43 "<structname>(.*?)</structname>",
44 "\"<structname>\" . convert_struct(\$1) . \"</structname>\"",
45 "<funcdef>(.*?)<function>(.*?)</function></funcdef>",
46 "\"<funcdef>\" . convert_param(\$1) . \"<function>\$2</function></funcdef>\"",
47 "<paramdef>(.*?)<parameter>(.*?)</parameter></paramdef>",
48 "\"<paramdef>\" . convert_param(\$1) . \"<parameter>\$2</parameter></paramdef>\"");
50 while($ARGV[0] =~ m/^-(.*)/) {
51 my $cmd = shift @ARGV;
52 if ($cmd eq "-db") {
53 $databasefile = shift @ARGV
54 } else {
55 usage();
58 $inputfile = shift @ARGV;
60 sub open_database {
61 open (my $handle, '<', $databasefile) or die "Cannot open $databasefile";
62 chomp(my @lines = <$handle>);
63 close $handle;
65 @database = @lines;
68 sub process_file {
69 open_database();
71 my $dohighlight;
72 foreach my $pattern (keys %highlights) {
73 $dohighlight .= "\$line =~ s:$pattern:$highlights{$pattern}:eg;\n";
76 open(FILE, $inputfile) or die("Could not open $inputfile") or die ("Cannot open $inputfile");
77 foreach my $line (<FILE>) {
78 eval $dohighlight;
79 print $line;
83 sub trim($_)
85 my $str = $_[0];
86 $str =~ s/^\s+|\s+$//g;
87 return $str
90 sub has_key_defined($_)
92 if ( grep( /^$_[0]$/, @database)) {
93 return 1;
95 return 0;
98 # Gets a <function> content and add it a hyperlink if possible.
99 sub convert_function($_)
101 my $arg = $_[0];
102 my $key = $_[0];
104 my $line = $_[1];
106 $key = trim($key);
108 $key =~ s/[^A-Za-z0-9]/-/g;
109 $key = "API-" . $key;
111 # We shouldn't add links to <funcdef> prototype
112 if (!has_key_defined($key) || $line =~ m/\s+<funcdef/i) {
113 return $arg;
116 my $head = $arg;
117 my $tail = "";
118 if ($arg =~ /(.*?)( ?)$/) {
119 $head = $1;
120 $tail = $2;
122 return "<link linkend=\"$key\">$head</link>$tail";
125 # Converting a struct text to link
126 sub convert_struct($_)
128 my $arg = $_[0];
129 my $key = $_[0];
130 $key =~ s/(struct )?(\w)/$2/g;
131 $key =~ s/[^A-Za-z0-9]/-/g;
132 $key = "API-struct-" . $key;
134 if (!has_key_defined($key)) {
135 return $arg;
138 my ($head, $tail) = split_pointer($arg);
139 return "<link linkend=\"$key\">$head</link>$tail";
142 # Identify "object *" elements
143 sub split_pointer($_)
145 my $arg = $_[0];
146 if ($arg =~ /(.*?)( ?\* ?)/) {
147 return ($1, $2);
149 return ($arg, "");
152 sub convert_param($_)
154 my $type = $_[0];
155 my $keyname = convert_key_name($type);
157 if (!has_key_defined($keyname)) {
158 return $type;
161 my ($head, $tail) = split_pointer($type);
162 return "<link linkend=\"$keyname\">$head</link>$tail";
166 # DocBook links are in the API-<TYPE>-<STRUCT-NAME> format
167 # This method gets an element and returns a valid DocBook reference for it.
168 sub convert_key_name($_)
170 #Pattern $2 is optional and might be uninitialized
171 no warnings 'uninitialized';
173 my $str = $_[0];
174 $str =~ s/(const|static)? ?(struct)? ?([a-zA-Z0-9_]+) ?(\*|&)?/$2 $3/g ;
176 # trim
177 $str =~ s/^\s+|\s+$//g;
179 # spaces and _ to -
180 $str =~ s/[^A-Za-z0-9]/-/g;
182 return "API-" . $str;
185 sub usage {
186 print "Usage: $0 -db database filename\n";
187 print " xml source file(s) > outputfile\n";
188 exit 1;
191 # starting point
192 process_file();
194 if ($errors) {
195 print STDERR "$errors errors\n";
198 exit($errors);