Linux 4.8.3
[linux/fpc-iii.git] / Documentation / sphinx / parse-headers.pl
blob34bd9e2630b0e7a8582edb226136c483199d354e
1 #!/usr/bin/perl
2 use strict;
3 use Text::Tabs;
5 # Uncomment if debug is needed
6 #use Data::Dumper;
8 # change to 1 to generate some debug prints
9 my $debug = 0;
11 if (scalar @ARGV < 2 || scalar @ARGV > 3) {
12 die "Usage:\n\t$0 <file in> <file out> [<exceptions file>]\n";
15 my ($file_in, $file_out, $file_exceptions) = @ARGV;
17 my $data;
18 my %ioctls;
19 my %defines;
20 my %typedefs;
21 my %enums;
22 my %enum_symbols;
23 my %structs;
26 # read the file and get identifiers
29 my $is_enum = 0;
30 my $is_comment = 0;
31 open IN, $file_in or die "Can't open $file_in";
32 while (<IN>) {
33 $data .= $_;
35 my $ln = $_;
36 if (!$is_comment) {
37 $ln =~ s,/\*.*(\*/),,g;
39 $is_comment = 1 if ($ln =~ s,/\*.*,,);
40 } else {
41 if ($ln =~ s,^(.*\*/),,) {
42 $is_comment = 0;
43 } else {
44 next;
48 if ($is_enum && $ln =~ m/^\s*([_\w][\w\d_]+)\s*[\,=]?/) {
49 my $s = $1;
50 my $n = $1;
51 $n =~ tr/A-Z/a-z/;
52 $n =~ tr/_/-/;
54 $enum_symbols{$s} = $n;
56 $is_enum = 0 if ($is_enum && m/\}/);
57 next;
59 $is_enum = 0 if ($is_enum && m/\}/);
61 if ($ln =~ m/^\s*#\s*define\s+([_\w][\w\d_]+)\s+_IO/) {
62 my $s = $1;
63 my $n = $1;
64 $n =~ tr/A-Z/a-z/;
66 $ioctls{$s} = $n;
67 next;
70 if ($ln =~ m/^\s*#\s*define\s+([_\w][\w\d_]+)\s+/) {
71 my $s = $1;
72 my $n = $1;
73 $n =~ tr/A-Z/a-z/;
74 $n =~ tr/_/-/;
76 $defines{$s} = $n;
77 next;
80 if ($ln =~ m/^\s*typedef\s+.*\s+([_\w][\w\d_]+);/) {
81 my $s = $1;
82 my $n = $1;
83 $n =~ tr/A-Z/a-z/;
84 $n =~ tr/_/-/;
86 $typedefs{$s} = $n;
87 next;
89 if ($ln =~ m/^\s*enum\s+([_\w][\w\d_]+)\s+\{/
90 || $ln =~ m/^\s*enum\s+([_\w][\w\d_]+)$/
91 || $ln =~ m/^\s*typedef\s*enum\s+([_\w][\w\d_]+)\s+\{/
92 || $ln =~ m/^\s*typedef\s*enum\s+([_\w][\w\d_]+)$/) {
93 my $s = $1;
94 my $n = $1;
95 $n =~ tr/A-Z/a-z/;
96 $n =~ tr/_/-/;
98 $enums{$s} = $n;
100 $is_enum = $1;
101 next;
103 if ($ln =~ m/^\s*struct\s+([_\w][\w\d_]+)\s+\{/
104 || $ln =~ m/^\s*struct\s+([[_\w][\w\d_]+)$/
105 || $ln =~ m/^\s*typedef\s*struct\s+([_\w][\w\d_]+)\s+\{/
106 || $ln =~ m/^\s*typedef\s*struct\s+([[_\w][\w\d_]+)$/
108 my $s = $1;
109 my $n = $1;
110 $n =~ tr/A-Z/a-z/;
111 $n =~ tr/_/-/;
113 $structs{$s} = $n;
114 next;
117 close IN;
120 # Handle multi-line typedefs
123 my @matches = ($data =~ m/typedef\s+struct\s+\S+?\s*\{[^\}]+\}\s*(\S+)\s*\;/g,
124 $data =~ m/typedef\s+enum\s+\S+?\s*\{[^\}]+\}\s*(\S+)\s*\;/g,);
125 foreach my $m (@matches) {
126 my $s = $m;
127 my $n = $m;
128 $n =~ tr/A-Z/a-z/;
129 $n =~ tr/_/-/;
131 $typedefs{$s} = $n;
132 next;
136 # Handle exceptions, if any
139 if ($file_exceptions) {
140 open IN, $file_exceptions or die "Can't read $file_exceptions";
141 while (<IN>) {
142 next if (m/^\s*$/ || m/^\s*#/);
144 # Parsers to ignore a symbol
146 if (m/^ignore\s+ioctl\s+(\S+)/) {
147 delete $ioctls{$1} if (exists($ioctls{$1}));
148 next;
150 if (m/^ignore\s+define\s+(\S+)/) {
151 delete $defines{$1} if (exists($defines{$1}));
152 next;
154 if (m/^ignore\s+typedef\s+(\S+)/) {
155 delete $typedefs{$1} if (exists($typedefs{$1}));
156 next;
158 if (m/^ignore\s+enum\s+(\S+)/) {
159 delete $enums{$1} if (exists($enums{$1}));
160 next;
162 if (m/^ignore\s+struct\s+(\S+)/) {
163 delete $structs{$1} if (exists($structs{$1}));
164 next;
166 if (m/^ignore\s+symbol\s+(\S+)/) {
167 delete $enum_symbols{$1} if (exists($enum_symbols{$1}));
168 next;
171 # Parsers to replace a symbol
173 if (m/^replace\s+ioctl\s+(\S+)\s+(\S+)/) {
174 $ioctls{$1} = $2 if (exists($ioctls{$1}));
175 next;
177 if (m/^replace\s+define\s+(\S+)\s+(\S+)/) {
178 $defines{$1} = $2 if (exists($defines{$1}));
179 next;
181 if (m/^replace\s+typedef\s+(\S+)\s+(\S+)/) {
182 $typedefs{$1} = $2 if (exists($typedefs{$1}));
183 next;
185 if (m/^replace\s+enum\s+(\S+)\s+(\S+)/) {
186 $enums{$1} = $2 if (exists($enums{$1}));
187 next;
189 if (m/^replace\s+symbol\s+(\S+)\s+(\S+)/) {
190 $enum_symbols{$1} = $2 if (exists($enum_symbols{$1}));
191 next;
193 if (m/^replace\s+struct\s+(\S+)\s+(\S+)/) {
194 $structs{$1} = $2 if (exists($structs{$1}));
195 next;
198 die "Can't parse $file_exceptions: $_";
202 if ($debug) {
203 print Data::Dumper->Dump([\%ioctls], [qw(*ioctls)]) if (%ioctls);
204 print Data::Dumper->Dump([\%typedefs], [qw(*typedefs)]) if (%typedefs);
205 print Data::Dumper->Dump([\%enums], [qw(*enums)]) if (%enums);
206 print Data::Dumper->Dump([\%structs], [qw(*structs)]) if (%structs);
207 print Data::Dumper->Dump([\%defines], [qw(*defines)]) if (%defines);
208 print Data::Dumper->Dump([\%enum_symbols], [qw(*enum_symbols)]) if (%enum_symbols);
212 # Align block
214 $data = expand($data);
215 $data = " " . $data;
216 $data =~ s/\n/\n /g;
217 $data =~ s/\n\s+$/\n/g;
218 $data =~ s/\n\s+\n/\n\n/g;
221 # Add escape codes for special characters
223 $data =~ s,([\_\`\*\<\>\&\\\\:\/\|]),\\$1,g;
225 $data =~ s,DEPRECATED,**DEPRECATED**,g;
228 # Add references
231 my $start_delim = "[ \n\t\(\=\*\@]";
232 my $end_delim = "(\\s|,|\\\\=|\\\\:|\\;|\\\)|\\}|\\{)";
234 foreach my $r (keys %ioctls) {
235 my $n = $ioctls{$r};
237 my $s = "\\ :ref:`$r <$n>`\\ ";
239 $r =~ s,([\_\`\*\<\>\&\\\\:\/]),\\\\$1,g;
241 print "$r -> $s\n" if ($debug);
243 $data =~ s/($start_delim)($r)$end_delim/$1$s$3/g;
246 foreach my $r (keys %defines) {
247 my $n = $defines{$r};
249 my $s = "\\ :ref:`$r <$n>`\\ ";
251 $r =~ s,([\_\`\*\<\>\&\\\\:\/]),\\\\$1,g;
253 print "$r -> $s\n" if ($debug);
255 $data =~ s/($start_delim)($r)$end_delim/$1$s$3/g;
258 foreach my $r (keys %enum_symbols) {
259 my $n = $enum_symbols{$r};
261 my $s = "\\ :ref:`$r <$n>`\\ ";
263 $r =~ s,([\_\`\*\<\>\&\\\\:\/]),\\\\$1,g;
265 print "$r -> $s\n" if ($debug);
267 $data =~ s/($start_delim)($r)$end_delim/$1$s$3/g;
270 foreach my $r (keys %enums) {
271 my $n = $enums{$r};
273 my $s = "\\ :ref:`enum $r <$n>`\\ ";
275 $r =~ s,([\_\`\*\<\>\&\\\\:\/]),\\\\$1,g;
277 print "$r -> $s\n" if ($debug);
279 $data =~ s/enum\s+($r)$end_delim/$s$2/g;
282 foreach my $r (keys %structs) {
283 my $n = $structs{$r};
285 my $s = "\\ :ref:`struct $r <$n>`\\ ";
287 $r =~ s,([\_\`\*\<\>\&\\\\:\/]),\\\\$1,g;
289 print "$r -> $s\n" if ($debug);
291 $data =~ s/struct\s+($r)$end_delim/$s$2/g;
294 foreach my $r (keys %typedefs) {
295 my $n = $typedefs{$r};
297 my $s = "\\ :ref:`$r <$n>`\\ ";
299 $r =~ s,([\_\`\*\<\>\&\\\\:\/]),\\\\$1,g;
301 print "$r -> $s\n" if ($debug);
303 $data =~ s/($start_delim)($r)$end_delim/$1$s$3/g;
306 $data =~ s/\\ \n/\n/g;
309 # Generate output file
312 my $title = $file_in;
313 $title =~ s,.*/,,;
315 open OUT, "> $file_out" or die "Can't open $file_out";
316 print OUT ".. -*- coding: utf-8; mode: rst -*-\n\n";
317 print OUT "$title\n";
318 print OUT "=" x length($title);
319 print OUT "\n\n.. parsed-literal::\n\n";
320 print OUT $data;
321 close OUT;