3 # Copyright (C) 1999, 2000, 2001, 2003, 2010 Free Software Foundation, Inc.
5 # This file is part of GCC.
7 # GCC is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3, or (at your option)
12 # GCC is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with GCC; see the file COPYING. If not, write to
19 # the Free Software Foundation, 51 Franklin Street, Fifth Floor,
20 # Boston MA 02110-1301, USA.
22 # This does trivial (and I mean _trivial_) conversion of Texinfo
23 # markup to Perl POD format. It's intended to be used to extract
24 # something suitable for a manpage from a Texinfo document.
49 ($flag, $value) = ($flag =~ /^([^=]+)(?:=(.+))?/);
50 die "no flag specified for -D\n"
52 die "flags may only contain letters, digits, hyphens, dashes and underscores\n"
53 unless $flag =~ /^[a-zA-Z0-9_-]+$/;
54 $defs{$flag} = $value;
55 } elsif (/^-I(.*)$/) {
65 $in = $_, next unless defined $in;
66 $out = $_, next unless defined $out;
73 open($inf, "<$in") or die "opening \"$in\": $!\n";
74 $ibase = $1 if $in =~ m
|^(.+)/[^/]+$|;
80 open(STDOUT
, ">$out") or die "opening \"$out\": $!\n";
85 # Certain commands are discarded without further processing.
87 [a
-z
]+index # @*index: useful only in complete manual
88 |need
# @need: useful only in printed manual
89 |(?
:end\s
+)?group
# @group .. @end group: ditto
91 |node
# @node: useful only in .info file
92 |(?
:end\s
+)?ifnottex
# @ifnottex .. @end ifnottex: use contents
97 # Look for filename and title markers.
98 /^\@setfilename\s+([^.]+)/ and $fn = $1, next;
99 /^\@settitle\s+([^.]+)/ and $tl = postprocess
($1), next;
101 # Identify a man title but keep only the one we are interested in.
102 /^\@c\s+man\s+title\s+([A-Za-z0-9-]+)\s+(.+)/ and do {
103 if (exists $defs{$1}) {
105 $tl = postprocess
($2);
110 # Look for blocks surrounded by @c man begin SECTION ... @c man end.
111 # This really oughta be @ifman ... @end ifman and the like, but such
112 # would require rev'ing all other Texinfo translators.
113 /^\@c\s+man\s+begin\s+([A-Z]+)\s+([A-Za-z0-9-]+)/ and do {
114 $output = 1 if exists $defs{$2};
118 /^\@c\s+man\s+begin\s+([A-Z]+)/ and $sect = $1, $output = 1, next;
119 /^\@c\s+man\s+end/ and do {
120 $sects{$sect} = "" unless exists $sects{$sect};
121 $sects{$sect} .= postprocess
($section);
128 /^\@set\s+([a-zA-Z0-9_-]+)\s*(.*)$/ and do {
132 /^\@clear\s+([a-zA-Z0-9_-]+)/ and do {
139 # Discard comments. (Can't do it above, because then we'd never see
143 # End-block handler goes up here because it needs to operate even
144 # if we are skipping.
145 /^\@end\s+([a-z]+)/ and do {
146 # Ignore @end foo, where foo is not an operation which may
147 # cause us to skip, if we are presently skipping.
149 next if $skipping && $ended !~ /^(?:ifset|ifclear|ignore|menu|iftex|copying)$/;
151 die "\@end $ended without \@$ended at line $.\n" unless defined $endw;
152 die "\@$endw ended by \@end $ended at line $.\n" unless $ended eq $endw;
154 $endw = pop @endwstack;
156 if ($ended =~ /^(?:ifset|ifclear|ignore|menu|iftex)$/) {
157 $skipping = pop @skstack;
159 } elsif ($ended =~ /^(?:example|smallexample|display)$/) {
161 $_ = ""; # need a paragraph break
162 } elsif ($ended =~ /^(?:itemize|enumerate|[fv]?table)$/) {
165 } elsif ($ended eq "multitable") {
168 die "unknown command \@end $ended at line $.\n";
172 # We must handle commands which can cause skipping even while we
173 # are skipping, otherwise we will not process nested conditionals
175 /^\@ifset\s+([a-zA-Z0-9_-]+)/ and do {
176 push @endwstack, $endw;
177 push @skstack, $skipping;
179 $skipping = 1 unless exists $defs{$1};
183 /^\@ifclear\s+([a-zA-Z0-9_-]+)/ and do {
184 push @endwstack, $endw;
185 push @skstack, $skipping;
187 $skipping = 1 if exists $defs{$1};
191 /^\@(ignore|menu|iftex|copying)\b/ and do {
192 push @endwstack, $endw;
193 push @skstack, $skipping;
201 # Character entities. First the ones that can be replaced by raw text
202 # or discarded outright:
203 s/\@copyright\{\}/(c)/g;
205 s/\@enddots\{\}/..../g;
208 s/\@bullet(?:\{\})?/*/g;
211 s/\@minus(?:\{\})?/-/g;
214 # Now the ones that have to be replaced by special escapes
215 # (which will be turned back into text by unmunge())
216 # Replace @@ before @{ and @} in order to parse @samp{@@} correctly.
221 s/\@`\{(.)\}/&$1grave;/g;
223 # Inside a verbatim block, handle @var, @samp and @url specially.
225 s/\@var\{([^\}]*)\}/<$1>/g;
226 s/\@samp\{([^\}]*)\}/"$1"/g;
227 s/\@url\{([^\}]*)\}/<$1>/g;
230 # POD doesn't interpret E<> inside a verbatim block.
239 # Single line command handlers.
241 /^\@include\s+(.+)$/ and do {
244 $file = postprocess
($1);
246 # Try cwd and $ibase, then explicit -I paths.
248 foreach $path ("", $ibase, @ipath) {
250 $mypath = $path . "/" . $mypath if ($path ne "");
251 open($inf, "<" . $mypath) and ($done = 1, last);
253 die "cannot find $file" if !$done;
257 /^\@(?:section|unnumbered|unnumberedsec|center|heading)\s+(.+)$/
258 and $_ = "\n=head2 $1\n";
259 /^\@subsection\s+(.+)$/
260 and $_ = "\n=head3 $1\n";
261 /^\@subsubsection\s+(.+)$/
262 and $_ = "\n=head4 $1\n";
264 # Block command handlers:
265 /^\@itemize(?:\s+(\@[a-z]+|\*|-))?/ and do {
266 push @endwstack, $endw;
277 /^\@enumerate(?:\s+([a-zA-Z0-9]+))?/ and do {
278 push @endwstack, $endw;
289 /^\@multitable\s.*/ and do {
290 push @endwstack, $endw;
291 $endw = "multitable";
295 /^\@([fv]?table)\s+(\@[a-z]+)/ and do {
296 push @endwstack, $endw;
300 $ic =~ s/\@(?:samp|strong|key|gcctabopt|env)/B/;
301 $ic =~ s/\@(?:code|kbd)/C/;
302 $ic =~ s/\@(?:dfn|var|emph|cite|i)/I/;
303 $ic =~ s/\@(?:file)/F/;
304 $ic =~ s/\@(?:asis)//;
308 /^\@((?:small)?example|display)/ and do {
309 push @endwstack, $endw;
312 $_ = ""; # need a paragraph break
315 /^\@item\s+(.*\S)\s*$/ and $endw eq "multitable" and do {
317 for $column (split (/\s*\@tab\s*/, $1)) {
318 # @strong{...} is used a @headitem work-alike
319 $column =~ s/^\@strong{(.*)}$/$1/;
320 push @columns, $column;
322 $_ = "\n=item ".join (" : ", @columns)."\n";
325 /^\@itemx?\s*(.+)?$/ and do {
328 if ($endw eq "enumerate") {
329 $_ = "\n=item $ic $1\n";
330 $ic =~ s/(\d+)/$1 + 1/eg;
332 # Entity escapes prevent munging by the <>
334 $_ = "\n=item $ic\<$1\>\n";
340 $_ = "\n=item $ic\n";
341 $ic =~ y/A-Ya-y/B-Zb-z/;
342 $ic =~ s/(\d+)/$1 + 1/eg;
346 $section .= $shift.$_."\n";
348 # End of current file.
353 die "No filename or title\n" unless defined $fn && defined $tl;
355 $sects{NAME
} = "$fn \- $tl\n";
356 $sects{FOOTNOTES
} .= "=back\n" if exists $sects{FOOTNOTES
};
358 for $sect (qw(NAME SYNOPSIS DESCRIPTION OPTIONS ENVIRONMENT FILES
359 BUGS NOTES FOOTNOTES SEEALSO AUTHOR COPYRIGHT)) {
360 if(exists $sects{$sect}) {
362 $head =~ s/SEEALSO/SEE ALSO/;
363 print "=head1 $head\n\n";
364 print scalar unmunge
($sects{$sect});
371 die "usage: $0 [-D toggle...] [infile [outfile]]\n";
378 # @value{foo} is replaced by whatever 'foo' is defined as.
379 while (m/(\@value\{([a-zA-Z0-9_-]+)\})/g) {
380 if (! exists $defs{$2}) {
381 print STDERR
"Option $2 not defined\n";
389 # Formatting commands.
390 # Temporary escape for @r.
391 s/\@r\{([^\}]*)\}/R<$1>/g;
392 s/\@(?:dfn|var|emph|cite|i)\{([^\}]*)\}/I<$1>/g;
393 s/\@(?:code|kbd)\{([^\}]*)\}/C<$1>/g;
394 s/\@(?:samp|strong|key|option|env|command|b)\{([^\}]*)\}/B<$1>/g;
395 s/\@sc\{([^\}]*)\}/\U$1/g;
396 s/\@acronym\{([^\}]*)\}/\U$1/g;
397 s/\@file\{([^\}]*)\}/F<$1>/g;
398 s/\@w\{([^\}]*)\}/S<$1>/g;
399 s/\@(?:dmn|math)\{([^\}]*)\}/$1/g;
402 # keep references of the form @ref{...}, print them bold
403 s/\@(?:ref)\{([^\}]*)\}/B<$1>/g;
405 # Change double single quotes to double quotes.
409 # Cross references are thrown away, as are @noindent and @refill.
410 # (@noindent is impossible in .pod, and @refill is unnecessary.)
411 # @* is also impossible in .pod; we discard it and any newline that
412 # follows it. Similarly, our macro @gol must be discarded.
414 s/\(?\@xref\{(?:[^\}]*)\}(?:[^.<]|(?:<[^<>]*>))*\.\)?//g;
415 s/\s+\(\@pxref\{(?:[^\}]*)\}\)//g;
416 s/;\s+\@pxref\{(?:[^\}]*)\}//g;
422 # Anchors are thrown away
423 s/\@anchor\{(?:[^\}]*)\}//g;
425 # @uref can take one, two, or three arguments, with different
426 # semantics each time. @url and @email are just like @uref with
427 # one argument, for our purposes.
428 s/\@(?:uref|url|email)\{([^\},]*)\}/<B<$1>>/g;
429 s/\@uref\{([^\},]*),([^\},]*)\}/$2 (C<$1>)/g;
430 s/\@uref\{([^\},]*),([^\},]*),([^\},]*)\}/$3/g;
432 # Handle gccoptlist here, so it can contain the above formatting
434 s/\@gccoptlist\{([^\}]*)\}/B<$1>/g;
436 # Un-escape <> at this point.
440 # Now un-nest all B<>, I<>, R<>. Theoretically we could have
441 # indefinitely deep nesting; in practice, one level suffices.
442 1 while s/([BIR])<([^<>]*)([BIR])<([^<>]*)>/$1<$2>$3<$4>$1</g;
444 # Replace R<...> with bare ...; eliminate empty markup, B<>;
445 # shift white space at the ends of [BI]<...> expressions outside
449 s/([BI])<(\s+)([^>]+)>/$2$1<$3>/g;
450 s/([BI])<([^>]+?)(\s+)>/$1<$2>$3/g;
452 # Extract footnotes. This has to be done after all other
453 # processing because otherwise the regexp will choke on formatting
455 while (/\@footnote/g) {
456 s/\@footnote\{([^\}]+)\}/[$fnno]/;
457 add_footnote
($1, $fnno);
466 # Replace escaped symbols with their equivalents.
469 s/&(.)grave;/E<$1grave>/g;
481 unless (exists $sects{FOOTNOTES
}) {
482 $sects{FOOTNOTES
} = "\n=over 4\n\n";
485 $sects{FOOTNOTES
} .= "=item $fnno.\n\n"; $fnno++;
486 $sects{FOOTNOTES
} .= $_[0];
487 $sects{FOOTNOTES
} .= "\n\n";
490 # stolen from Symbol.pm
495 my $name = "GEN" . $genseq++;