5 # Uncomment if debug is needed
8 # change to 1 to generate some debug prints
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;
26 # read the file and get identifiers
31 open IN
, $file_in or die "Can't open $file_in";
37 $ln =~ s
,/\*.*(\*/),,g
;
39 $is_comment = 1 if ($ln =~ s
,/\
*.*,,);
41 if ($ln =~ s
,^(.*\
*/),,) {
48 if ($is_enum && $ln =~ m/^\s*([_\w][\w\d_]+)\s*[\,=]?/) {
54 $enum_symbols{$s} = $n;
56 $is_enum = 0 if ($is_enum && m/\}/);
59 $is_enum = 0 if ($is_enum && m/\}/);
61 if ($ln =~ m/^\s*#\s*define\s+([_\w][\w\d_]+)\s+_IO/) {
70 if ($ln =~ m/^\s*#\s*define\s+([_\w][\w\d_]+)\s+/) {
80 if ($ln =~ m/^\s*typedef\s+.*\s+([_\w][\w\d_]+);/) {
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_]+)$/) {
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_]+)$/
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) {
136 # Handle exceptions, if any
139 if ($file_exceptions) {
140 open IN
, $file_exceptions or die "Can't read $file_exceptions";
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}));
150 if (m/^ignore\s+define\s+(\S+)/) {
151 delete $defines{$1} if (exists($defines{$1}));
154 if (m/^ignore\s+typedef\s+(\S+)/) {
155 delete $typedefs{$1} if (exists($typedefs{$1}));
158 if (m/^ignore\s+enum\s+(\S+)/) {
159 delete $enums{$1} if (exists($enums{$1}));
162 if (m/^ignore\s+struct\s+(\S+)/) {
163 delete $structs{$1} if (exists($structs{$1}));
166 if (m/^ignore\s+symbol\s+(\S+)/) {
167 delete $enum_symbols{$1} if (exists($enum_symbols{$1}));
171 # Parsers to replace a symbol
173 if (m/^replace\s+ioctl\s+(\S+)\s+(\S+)/) {
174 $ioctls{$1} = $2 if (exists($ioctls{$1}));
177 if (m/^replace\s+define\s+(\S+)\s+(\S+)/) {
178 $defines{$1} = $2 if (exists($defines{$1}));
181 if (m/^replace\s+typedef\s+(\S+)\s+(\S+)/) {
182 $typedefs{$1} = $2 if (exists($typedefs{$1}));
185 if (m/^replace\s+enum\s+(\S+)\s+(\S+)/) {
186 $enums{$1} = $2 if (exists($enums{$1}));
189 if (m/^replace\s+symbol\s+(\S+)\s+(\S+)/) {
190 $enum_symbols{$1} = $2 if (exists($enum_symbols{$1}));
193 if (m/^replace\s+struct\s+(\S+)\s+(\S+)/) {
194 $structs{$1} = $2 if (exists($structs{$1}));
198 die "Can't parse $file_exceptions: $_";
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);
214 $data = expand
($data);
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;
231 my $start_delim = "[ \n\t\(\=\*\@]";
232 my $end_delim = "(\\s|,|\\\\=|\\\\:|\\;|\\\)|\\}|\\{)";
234 foreach my $r (keys %ioctls) {
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) {
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;
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";