3 # Copyright (C) 1999, 2000, 2001, 2003 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 2, 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,
19 # see <http://www.gnu.org/licenses/>.
21 # This does trivial (and I mean _trivial_) conversion of Texinfo
22 # markup to Perl POD format. It's intended to be used to extract
23 # something suitable for a manpage from a Texinfo document.
50 ($flag, $value) = ($flag =~ /^([^=]+)(?:=(.+))?/);
51 die "no flag specified for -D\n"
53 die "flags may only contain letters, digits, hyphens, dashes and underscores\n"
54 unless $flag =~ /^[a-zA-Z0-9_-]+$/;
55 $defs{$flag} = $value;
56 } elsif (/^-I(.*)$/) {
66 $in = $_, next unless defined $in;
67 $out = $_, next unless defined $out;
74 open($inf, "<$in") or die "opening \"$in\": $!\n";
75 $ibase = $1 if $in =~ m
|^(.+)/[^/]+$|;
81 open(STDOUT
, ">$out") or die "opening \"$out\": $!\n";
86 # Certain commands are discarded without further processing.
88 [a
-z
]+index # @*index: useful only in complete manual
89 |need
# @need: useful only in printed manual
90 |(?
:end\s
+)?group
# @group .. @end group: ditto
92 |node
# @node: useful only in .info file
93 |(?
:end\s
+)?ifnottex
# @ifnottex .. @end ifnottex: use contents
98 # Look for filename and title markers.
99 /^\@setfilename\s+([^.]+)/ and $fn = $1, next;
100 /^\@settitle\s+([^.]+)/ and $tl = postprocess
($1), next;
102 # Look for document encoding
103 /^\@documentencoding\s+([^.]+)/ and do {
104 $encoding = $1 unless defined $encoding;
108 # Identify a man title but keep only the one we are interested in.
109 /^\@c\s+man\s+title\s+([A-Za-z0-9-]+)\s+(.+)/ and do {
110 if (exists $defs{$1}) {
112 $tl = postprocess
($2);
117 # Look for blocks surrounded by @c man begin SECTION ... @c man end.
118 # This really oughta be @ifman ... @end ifman and the like, but such
119 # would require rev'ing all other Texinfo translators.
120 /^\@c\s+man\s+begin\s+([A-Z]+)\s+([A-Za-z0-9-]+)/ and do {
121 $output = 1 if exists $defs{$2};
125 /^\@c\s+man\s+begin\s+([A-Z]+)/ and $sect = $1, $output = 1, next;
126 /^\@c\s+man\s+end/ and do {
127 $sects{$sect} = "" unless exists $sects{$sect};
128 $sects{$sect} .= postprocess
($section);
135 /^\@set\s+([a-zA-Z0-9_-]+)\s*(.*)$/ and do {
139 /^\@clear\s+([a-zA-Z0-9_-]+)/ and do {
146 # Discard comments. (Can't do it above, because then we'd never see
150 # End-block handler goes up here because it needs to operate even
151 # if we are skipping.
152 /^\@end\s+([a-z]+)/ and do {
153 # Ignore @end foo, where foo is not an operation which may
154 # cause us to skip, if we are presently skipping.
156 next if $skipping && $ended !~ /^(?:ifset|ifclear|ignore|menu|iftex|copying)$/;
158 die "\@end $ended without \@$ended at line $.\n" unless defined $endw;
159 die "\@$endw ended by \@end $ended at line $.\n" unless $ended eq $endw;
161 $endw = pop @endwstack;
163 if ($ended =~ /^(?:ifset|ifclear|ignore|menu|iftex)$/) {
164 $skipping = pop @skstack;
166 } elsif ($ended =~ /^(?
:example
|smallexample
|display
167 |quotation
|deftp
|deftypefn
)$/x
) {
169 $_ = ""; # need a paragraph break
170 } elsif ($ended =~ /^(?:itemize|enumerate|[fv]?table)$/) {
173 } elsif ($ended eq "multitable") {
176 die "unknown command \@end $ended at line $.\n";
180 # We must handle commands which can cause skipping even while we
181 # are skipping, otherwise we will not process nested conditionals
183 /^\@ifset\s+([a-zA-Z0-9_-]+)/ and do {
184 push @endwstack, $endw;
185 push @skstack, $skipping;
187 $skipping = 1 unless exists $defs{$1};
191 /^\@ifclear\s+([a-zA-Z0-9_-]+)/ and do {
192 push @endwstack, $endw;
193 push @skstack, $skipping;
195 $skipping = 1 if exists $defs{$1};
199 /^\@(ignore|menu|iftex|copying)\b/ and do {
200 push @endwstack, $endw;
201 push @skstack, $skipping;
209 # Character entities. First the ones that can be replaced by raw text
210 # or discarded outright:
211 s/\@copyright\{\}/(c)/g;
213 s/\@enddots\{\}/..../g;
216 s/\@bullet(?:\{\})?/*/g;
219 s/\@minus(?:\{\})?/-/g;
222 # Now the ones that have to be replaced by special escapes
223 # (which will be turned back into text by unmunge())
229 # Inside a verbatim block, handle @var specially.
231 s/\@var\{([^\}]*)\}/<$1>/g;
234 # POD doesn't interpret E<> inside a verbatim block.
243 # Single line command handlers.
245 /^\@include\s+(.+)$/ and do {
248 $file = postprocess
($1);
250 # Try cwd and $ibase, then explicit -I paths.
252 foreach $path ("", $ibase, @ipath) {
254 $mypath = $path . "/" . $mypath if ($path ne "");
255 open($inf, "<" . $mypath) and ($done = 1, last);
257 die "cannot find $file" if !$done;
261 /^\@(?:section|unnumbered|unnumberedsec|center)\s+(.+)$/
262 and $_ = "\n=head2 $1\n";
263 /^\@subsection\s+(.+)$/
264 and $_ = "\n=head3 $1\n";
265 /^\@subsubsection\s+(.+)$/
266 and $_ = "\n=head4 $1\n";
268 # Block command handlers:
269 /^\@itemize(?:\s+(\@[a-z]+|\*|-))?/ and do {
270 push @endwstack, $endw;
281 /^\@enumerate(?:\s+([a-zA-Z0-9]+))?/ and do {
282 push @endwstack, $endw;
293 /^\@multitable\s.*/ and do {
294 push @endwstack, $endw;
295 $endw = "multitable";
299 /^\@([fv]?table)\s+(\@[a-z]+)/ and do {
300 push @endwstack, $endw;
304 $ic =~ s/\@(?:samp|strong|key|gcctabopt|option|env)/B/;
305 $ic =~ s/\@(?:code|kbd)/C/;
306 $ic =~ s/\@(?:dfn|var|emph|cite|i)/I/;
307 $ic =~ s/\@(?:file)/F/;
308 $ic =~ s/\@(?:asis)//;
312 /^\@((?:small)?example|display)/ and do {
313 push @endwstack, $endw;
316 $_ = ""; # need a paragraph break
319 /^\@item\s+(.*\S)\s*$/ and $endw eq "multitable" and do {
321 for $column (split (/\s*\@tab\s*/, $1)) {
322 # @strong{...} is used a @headitem work-alike
323 $column =~ s/^\@strong\{(.*)\}$/$1/;
324 push @columns, $column;
326 $_ = "\n=item ".join (" : ", @columns)."\n";
329 /^\@(quotation)\s*(.+)?$/ and do {
330 push @endwstack, $endw;
335 /^{(.*)}$|^(.*)$/ and $#args > 0 and do {
337 $arguments = $1 // "";
338 if ($endw eq "deftypefn") {
340 $fname = "B<$args[2]>";
341 $_ = $ret ?
"$ret " : "";
342 $_ .= "$fname $arguments ($kind)";
344 $_ = "B<$args[1]> ($kind)\n\n$arguments";
349 /^\@(deftp)\s*(.+)?$/ and do {
350 push @endwstack, $endw;
353 $arg =~ s/{([^}]*)}/$1/g;
355 @args = split (/ /, $arg);
359 /^\@(deftypefn)\s*(.+)?$/ and do {
360 push @endwstack, $endw;
363 $arg =~ s/{([^}]*)}/$1/g;
365 @args = split (/ /, $arg);
369 /^\@itemx?\s*(.+)?$/ and do {
374 # Entity escapes prevent munging by the <> processing below.
375 $_ = "\n=item $ic\<$1\>\n";
378 $_ = "\n=item $ic\n";
379 $ic =~ y/A-Ya-y/B-Zb-z/;
380 $ic =~ s/(\d+)/$1 + 1/eg;
384 $section .= $shift.$_."\n";
386 # End of current file.
391 die "No filename or title\n" unless defined $fn && defined $tl;
393 print "=encoding $encoding\n\n" if defined $encoding;
395 $sects{NAME
} = "$fn \- $tl\n";
396 $sects{FOOTNOTES
} .= "=back\n" if exists $sects{FOOTNOTES
};
398 for $sect (qw(NAME SYNOPSIS DESCRIPTION OPTIONS ENVIRONMENT FILES
399 BUGS NOTES FOOTNOTES SEEALSO AUTHOR COPYRIGHT)) {
400 if(exists $sects{$sect}) {
402 $head =~ s/SEEALSO/SEE ALSO/;
403 print "=head1 $head\n\n";
404 print scalar unmunge
($sects{$sect});
411 die "usage: $0 [-D toggle...] [infile [outfile]]\n";
418 # @value{foo} is replaced by whatever 'foo' is defined as.
419 while (m/(\@value\{([a-zA-Z0-9_-]+)\})/g) {
420 if (! exists $defs{$2}) {
421 print STDERR
"Option $2 not defined\n";
429 # Formatting commands.
430 # Temporary escape for @r.
431 s/\@r\{([^\}]*)\}/R<$1>/g;
432 s/\@(?:dfn|var|emph|cite|i)\{([^\}]*)\}/I<$1>/g;
433 s/\@(?:code|kbd)\{([^\}]*)\}/C<$1>/g;
434 s/\@(?:gccoptlist|samp|strong|key|option|env|command|b)\{([^\}]*)\}/B<$1>/g;
435 s/\@sc\{([^\}]*)\}/\U$1/g;
436 s/\@file\{([^\}]*)\}/F<$1>/g;
437 s/\@w\{([^\}]*)\}/S<$1>/g;
438 s/\@t\{([^\}]*)\}/$1/g;
439 s/\@(?:dmn|math)\{([^\}]*)\}/$1/g;
441 # keep references of the form @ref{...}, print them bold
442 s/\@(?:ref)\{([^\}]*)\}/B<$1>/g;
444 # Change double single quotes to double quotes.
448 # Cross references are thrown away, as are @noindent and @refill.
449 # (@noindent is impossible in .pod, and @refill is unnecessary.)
450 # @* is also impossible in .pod; we discard it and any newline that
451 # follows it. Similarly, our macro @gol must be discarded.
453 s/\(?\@xref\{(?:[^\}]*)\}(?:[^.<]|(?:<[^<>]*>))*\.\)?//g;
454 s/\s+\(\@pxref\{(?:[^\}]*)\}\)//g;
455 s/;\s+\@pxref\{(?:[^\}]*)\}//g;
461 # Anchors are thrown away
462 s/\@anchor\{(?:[^\}]*)\}//g;
464 # @uref can take one, two, or three arguments, with different
465 # semantics each time. @url and @email are just like @uref with
466 # one argument, for our purposes.
467 s/\@(?:uref|url|email)\{([^\},]*)\}/<B<$1>>/g;
468 s/\@uref\{([^\},]*),([^\},]*)\}/$2 (C<$1>)/g;
469 s/\@uref\{([^\},]*),([^\},]*),([^\},]*)\}/$3/g;
471 # Un-escape <> at this point.
475 # Now un-nest all B<>, I<>, R<>. Theoretically we could have
476 # indefinitely deep nesting; in practice, one level suffices.
477 1 while s/([BIR])<([^<>]*)([BIR])<([^<>]*)>/$1<$2>$3<$4>$1</g;
479 # Replace R<...> with bare ...; eliminate empty markup, B<>;
480 # shift white space at the ends of [BI]<...> expressions outside
484 s/([BI])<(\s+)([^>]+)>/$2$1<$3>/g;
485 s/([BI])<([^>]+?)(\s+)>/$1<$2>$3/g;
487 # Extract footnotes. This has to be done after all other
488 # processing because otherwise the regexp will choke on formatting
490 while (/\@footnote/g) {
491 s/\@footnote\{([^\}]+)\}/[$fnno]/;
492 add_footnote
($1, $fnno);
501 # Replace escaped symbols with their equivalents.
515 unless (exists $sects{FOOTNOTES
}) {
516 $sects{FOOTNOTES
} = "\n=over 4\n\n";
519 $sects{FOOTNOTES
} .= "=item $fnno.\n\n"; $fnno++;
520 $sects{FOOTNOTES
} .= $_[0];
521 $sects{FOOTNOTES
} .= "\n\n";
524 # stolen from Symbol.pm
529 my $name = "GEN" . $genseq++;