aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2020-03-06 11:11:54 +0000
committerPeter Maydell <peter.maydell@linaro.org>2020-03-06 11:11:54 +0000
commitf4c4357fbfca0fb14e477bf661ae7384b4b9b283 (patch)
tree8d56c6fc38f2568e5d2b2f75a8e088aa10bca1a7 /scripts
parent6b02fca71329ed858423b710699952b7f017034e (diff)
parent29f9dff79073cfdc336466a950294be91b90f514 (diff)
downloadqemu-f4c4357fbfca0fb14e477bf661ae7384b4b9b283.zip
qemu-f4c4357fbfca0fb14e477bf661ae7384b4b9b283.tar.gz
qemu-f4c4357fbfca0fb14e477bf661ae7384b4b9b283.tar.bz2
Merge remote-tracking branch 'remotes/pmaydell/tags/pull-docs-20200306' into staging
docs: * Convert qemu-doc from Texinfo to rST # gpg: Signature made Fri 06 Mar 2020 11:08:15 GMT # gpg: using RSA key E1A5C593CD419DE28E8315CF3C2525ED14360CDE # gpg: issuer "peter.maydell@linaro.org" # gpg: Good signature from "Peter Maydell <peter.maydell@linaro.org>" [ultimate] # gpg: aka "Peter Maydell <pmaydell@gmail.com>" [ultimate] # gpg: aka "Peter Maydell <pmaydell@chiark.greenend.org.uk>" [ultimate] # Primary key fingerprint: E1A5 C593 CD41 9DE2 8E83 15CF 3C25 25ED 1436 0CDE * remotes/pmaydell/tags/pull-docs-20200306: (33 commits) *.hx: Remove all the STEXI/ETEXI blocks docs: Remove old texinfo sources docs: Stop building qemu-doc ui/cocoa.m: Update documentation file and pathname docs: Generate qemu.1 manpage with Sphinx docs: Split out sections for the manpage into .rst.inc files qemu-options.hx: Fix up the autogenerated rST qemu-options.hx: Add rST documentation fragments scripts/hxtool-conv: Archive script used in qemu-options.hx conversion docs: Roll -prom-env and -g target-specific info into qemu-options.hx docs: Roll semihosting option information into qemu-options.hx doc/scripts/hxtool.py: Strip trailing ':' from DEFHEADING/ARCHHEADING hmp-commands-info.hx: Add rST documentation fragments hmp-commands.hx: Add rST documentation fragments docs/system: convert Texinfo documentation to rST docs/system: convert the documentation of deprecated features to rST. docs/system: convert managed startup to rST. docs/system: Convert security.texi to rST format docs/system: Convert qemu-cpu-models.texi to rST docs: Create defs.rst.inc as a place to define substitutions ... Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/hxtool-conv.pl137
-rwxr-xr-xscripts/texi2pod.pl36
2 files changed, 155 insertions, 18 deletions
diff --git a/scripts/hxtool-conv.pl b/scripts/hxtool-conv.pl
new file mode 100755
index 0000000..eede40b
--- /dev/null
+++ b/scripts/hxtool-conv.pl
@@ -0,0 +1,137 @@
+#!/usr/bin/perl -w
+#
+# Script to convert .hx file STEXI/ETEXI blocks to SRST/ERST
+#
+# Copyright (C) 2020 Linaro
+#
+# This work is licensed under the terms of the GNU GPL, version 2 or
+# (at your option) any later version. See the COPYING file in the
+# top-level directory.
+
+# This script was only ever intended as a one-off conversion operation.
+# Please excuse the places where it is a bit hacky.
+# Some manual intervention after the conversion is expected, as are
+# some warnings from makeinfo.
+# Warning: this script is not idempotent: don't try to run it on
+# a .hx file that already has SRST/ERST sections.
+
+# Expected usage:
+# scripts/hxtool-conv.pl file.hx > file.hx.new
+
+use utf8;
+
+my $reading_texi = 0;
+my $texiblock = '';
+my @tables = ();
+
+sub update_tables($) {
+ my ($texi) = @_;
+ # Update our list of open table directives: every @table
+ # line in the texi fragment is added to the list, and every
+ # @end table line means we remove an entry from the list.
+ # If this fragment had a completely self contained table with
+ # both the @table and @end table lines, this will be a no-op.
+ foreach (split(/\n/, $texi)) {
+ push @tables, $_ if /^\@table/;
+ pop @tables if /^\@end table/;
+ }
+}
+
+sub only_table_directives($) {
+ # Return true if every line in the fragment is a start or end table directive
+ my ($texi) = @_;
+ foreach (split(/\n/, $texi)) {
+ return 0 unless /^\@table/ or /^\@end table/;
+ }
+ return 1;
+}
+
+sub output_rstblock($) {
+ # Write the output to /tmp/frag.texi, wrapped in whatever current @table
+ # lines we need.
+ my ($texi) = @_;
+
+ # As a special case, if this fragment is only table directives and
+ # nothing else, update our set of open table directives but otherwise
+ # ignore it. This avoids emitting an empty SRST/ERST block.
+ if (only_table_directives($texi)) {
+ update_tables($texi);
+ return;
+ }
+
+ open(my $fragfh, '>', '/tmp/frag.texi');
+ # First output the currently active set of open table directives
+ print $fragfh join("\n", @tables);
+ # Next, update our list of open table directives.
+ # We need to do this before we emit the closing table directives
+ # so that we emit the right number if this fragment had an
+ # unbalanced set of directives.
+ update_tables($texi);
+ # Then emit the texi fragment itself.
+ print $fragfh "\n$texi\n";
+ # Finally, add the necessary closing table directives.
+ print $fragfh "\@end table\n" x scalar @tables;
+ close $fragfh;
+
+ # Now invoke makeinfo/pandoc on it and slurp the results into a string
+ open(my $fh, '-|', "makeinfo --force -o - --docbook "
+ . "-D 'qemu_system_x86 QEMU_SYSTEM_X86_MACRO' "
+ . "-D 'qemu_system QEMU_SYSTEM_MACRO' /tmp/frag.texi "
+ . " | pandoc -f docbook -t rst")
+ or die "can't start makeinfo/pandoc: $!";
+
+ binmode $fh, ':encoding(utf8)';
+
+ print "SRST\n";
+
+ # Slurp the whole thing into a string so we can do multiline
+ # string matches on it.
+ my $rst = do {
+ local $/ = undef;
+ <$fh>;
+ };
+ $rst =~ s/^- − /- /gm;
+ $rst =~ s/“/"/gm;
+ $rst =~ s/”/"/gm;
+ $rst =~ s/‘/'/gm;
+ $rst =~ s/’/'/gm;
+ $rst =~ s/QEMU_SYSTEM_MACRO/|qemu_system|/g;
+ $rst =~ s/QEMU_SYSTEM_X86_MACRO/|qemu_system_x86|/g;
+ $rst =~ s/(?=::\n\n +\|qemu)/.. parsed-literal/g;
+ $rst =~ s/:\n\n::$/::/gm;
+
+ # Fix up the invalid reference format makeinfo/pandoc emit:
+ # `Some string here <#anchorname>`__
+ # should be:
+ # :ref:`anchorname`
+ $rst =~ s/\`[^<`]+\<\#([^>]+)\>\`__/:ref:`$1`/gm;
+ print $rst;
+
+ close $fh or die "error on close: $!";
+ print "ERST\n";
+}
+
+# Read the whole .hx input file.
+while (<>) {
+ # Always print the current line
+ print;
+ if (/STEXI/) {
+ $reading_texi = 1;
+ $texiblock = '';
+ next;
+ }
+ if (/ETEXI/) {
+ $reading_texi = 0;
+ # dump RST version of block
+ output_rstblock($texiblock);
+ next;
+ }
+ if ($reading_texi) {
+ # Accumulate the texi into a string
+ # but drop findex entries as they will confuse makeinfo
+ next if /^\@findex/;
+ $texiblock .= $_;
+ }
+}
+
+die "Unexpectedly still in texi block at EOF" if $reading_texi;
diff --git a/scripts/texi2pod.pl b/scripts/texi2pod.pl
index 839b791..8bfc6f6 100755
--- a/scripts/texi2pod.pl
+++ b/scripts/texi2pod.pl
@@ -143,6 +143,24 @@ while(<$inf>) {
next;
};
+ # Single line command handlers.
+
+ /^\@include\s+(.+)$/ and do {
+ push @instack, $inf;
+ $inf = gensym();
+ $file = postprocess($1);
+
+ # Try cwd and $ibase, then explicit -I paths.
+ $done = 0;
+ foreach $path ("", $ibase, @ipath) {
+ $mypath = $file;
+ $mypath = $path . "/" . $mypath if ($path ne "");
+ open($inf, "<" . $mypath) and ($done = 1, last);
+ }
+ die "cannot find $file" if !$done;
+ next;
+ };
+
next unless $output;
# Discard comments. (Can't do it above, because then we'd never see
@@ -242,24 +260,6 @@ while(<$inf>) {
s/>/&GT;/g;
}
- # Single line command handlers.
-
- /^\@include\s+(.+)$/ and do {
- push @instack, $inf;
- $inf = gensym();
- $file = postprocess($1);
-
- # Try cwd and $ibase, then explicit -I paths.
- $done = 0;
- foreach $path ("", $ibase, @ipath) {
- $mypath = $file;
- $mypath = $path . "/" . $mypath if ($path ne "");
- open($inf, "<" . $mypath) and ($done = 1, last);
- }
- die "cannot find $file" if !$done;
- next;
- };
-
/^\@(?:section|unnumbered|unnumberedsec|center)\s+(.+)$/
and $_ = "\n=head2 $1\n";
/^\@subsection\s+(.+)$/