Update for release
[oweals/busybox.git] / docs / autodocifier.pl
index 7c3aa50bc94c10a28f65a42a5d637e44fe11581f..eee67cf09e5f625deb33876cac6ce581c0acbd5b 100755 (executable)
@@ -3,7 +3,7 @@
 use strict;
 use Getopt::Long;
 
-# collect lines continued with a '\' into an array 
+# collect lines continued with a '\' into an array
 sub continuation {
        my $fh = shift;
        my @line;
@@ -11,7 +11,7 @@ sub continuation {
        while (<$fh>) {
                my $s = $_;
                $s =~ s/\\\s*$//;
-               $s =~ s/#.*$//;
+               #$s =~ s/#.*$//;
                push @line, $s;
                last unless (/\\\s*$/);
        }
@@ -26,12 +26,12 @@ sub beautify {
        $text =~ s/"\s*"//sg;
        my @line = split("\n", $text);
        $text = join('',
-               map { 
-                       s/^\s*//;
-                       s/"//g;
+               map {
+                       s/^\s*"//;
+                       s/"\s*$//;
                        s/%/%%/g;
                        s/\$/\\\$/g;
-                       eval qq[ sprintf(qq#$_#) ]
+                       eval qq[ sprintf(qq{$_}) ]
                } @line
        );
        return $text;
@@ -42,10 +42,17 @@ sub pod_for_usage {
        my $name  = shift;
        my $usage = shift;
 
+       # Sigh.  Fixup the known odd-name applets.
+       $name =~ s/dpkg_deb/dpkg-deb/g;
+       $name =~ s/fsck_minix/fsck.minix/g;
+       $name =~ s/mkfs_minix/mkfs.minix/g;
+       $name =~ s/run_parts/run-parts/g;
+       $name =~ s/start_stop_daemon/start-stop-daemon/g;
+
        # make options bold
        my $trivial = $usage->{trivial};
        $trivial =~ s/(?<!\w)(-\w+)/B<$1>/sxg;
-       my @f0 = 
+       my @f0 =
                map { $_ !~ /^\s/ && s/(?<!\w)(-\w+)/B<$1>/g; $_ }
                split("\n", $usage->{full});
 
@@ -62,52 +69,38 @@ sub pod_for_usage {
        }
        my $full = join("\n", @f1);
 
-       # prepare notes if they exists
+       # prepare notes if they exist
        my $notes = (defined $usage->{notes})
                ? "$usage->{notes}\n\n"
                : "";
 
-       # prepare example if one exists
+       # prepare examples if they exist
        my $example = (defined $usage->{example})
-               ? $usage->{example}
+               ?
+                       "Example:\n\n" .
+                       join ("\n",
+                       map  { "\t$_" }
+                       split("\n", $usage->{example})) . "\n\n"
                : "";
-        $example = 
-               "Example:\n\n" .
-               join ("\n", 
-               map  { "    $_" } 
-               split("\n", $example)) . "\n\n";
 
        return
-               "=item I<$name>".
-               "\n\n"  .
-               "$name $trivial".
-               "\n\n"  .
-               $full   .
-               "\n\n"  .
-               $notes  .
-               $example.
+               "=item B<$name>".
+               "\n\n$name $trivial\n\n".
+               "$full\n\n"   .
+               "$notes"  .
+               "$example" .
                "-------------------------------".
                "\n\n"
        ;
 }
 
-# FIXME | generate SGML for an applet
-sub sgml_for_usage {
-       my $name  = shift;
-       my $usage = shift;
-       return
-               "<fixme>\n".
-               "  $name\n".
-               "</fixme>\n"
-       ;
-}
-
-# the keys are applet names, and 
+# the keys are applet names, and
 # the values will contain hashrefs of the form:
 #
 # {
 #     trivial => "...",
 #     full    => "...",
+#     notes   => "...",
 #     example => "...",
 # }
 my %docs;
@@ -120,7 +113,6 @@ my %opt;
 GetOptions(
        \%opt,
        "help|h",
-       "sgml|s",
        "pod|p",
        "verbose|v",
 );
@@ -129,7 +121,6 @@ if (defined $opt{help}) {
        print
                "$0 [OPTION]... [FILE]...\n",
                "\t--help\n",
-               "\t--sgml\n",
                "\t--pod\n",
                "\t--verbose\n",
        ;
@@ -159,10 +150,6 @@ foreach (@ARGV) {
 # generate structured documentation
 
 my $generator = \&pod_for_usage;
-if (defined $opt{sgml}) {
-       $generator = \&sgml_for_usage;
-}
-
 foreach my $applet (sort keys %docs) {
        print $generator->($applet, $docs{$applet});
 }
@@ -177,37 +164,94 @@ autodocifier.pl - generate docs for busybox based on usage.h
 
 =head1 SYNOPSIS
 
-autodocifier.pl usage.h > something
+autodocifier.pl [OPTION]... [FILE]...
+
+Example:
+
+    ( cat docs/busybox_header.pod; \
+      docs/autodocifier.pl usage.h; \
+      cat docs/busybox_footer.pod ) > docs/busybox.pod
 
 =head1 DESCRIPTION
 
-The purpose of this script is to automagically generate documentation
-for busybox using its usage.h as the original source for content.
-Currently, the same content has to be duplicated in 3 places in
-slightly different formats -- F<usage.h>, F<docs/busybox.pod>, and
-F<docs/busybox.sgml>.  This is tedious, so Perl has come to the rescue.
+The purpose of this script is to automagically generate
+documentation for busybox using its usage.h as the original source
+for content.  It used to be that same content has to be duplicated
+in 3 places in slightly different formats -- F<usage.h>,
+F<docs/busybox.pod>.  This was tedious and error-prone, so it was
+decided that F<usage.h> would contain all the text in a
+machine-readable form, and scripts could be used to transform this
+text into other forms if necessary.
 
-This script was based on a script by Erik Andersen (andersen@lineo.com).
+F<autodocifier.pl> is one such script.  It is based on a script by
+Erik Andersen <andersen@codepoet.org> which was in turn based on a
+script by Mark Whitley <markw@codepoet.org>
 
 =head1 OPTIONS
 
 =over 4
 
-=item --help
+=item B<--help>
 
 This displays the help message.
 
-=item --pod
+=item B<--pod>
 
 Generate POD (this is the default)
 
-=item --sgml
+=item B<--verbose>
 
-Generate SGML
+Be verbose (not implemented)
 
-=item --verbose
+=back
 
-Be verbose (not implemented)
+=head1 FORMAT
+
+The following is an example of some data this script might parse.
+
+    #define length_trivial_usage \
+            "STRING"
+    #define length_full_usage \
+            "Prints out the length of the specified STRING."
+    #define length_example_usage \
+            "$ length Hello\n" \
+            "5\n"
+
+Each entry is a cpp macro that defines a string.  The macros are
+named systematically in the form:
+
+    $name_$type_usage
+
+$name is the name of the applet.  $type can be "trivial", "full", "notes",
+or "example".  Every documentation macro must end with "_usage".
+
+The definition of the types is as follows:
+
+=over 4
+
+=item B<trivial>
+
+This should be a brief, one-line description of parameters that
+the command expects.  This will be displayed when B<-h> is issued to
+a command.  I<REQUIRED>
+
+=item B<full>
+
+This should contain descriptions of each option.  This will also
+be displayed along with the trivial help if CONFIG_FEATURE_TRIVIAL_HELP
+is disabled.  I<REQUIRED>
+
+=item B<notes>
+
+This is documentation that is intended to go in the POD or SGML, but
+not be printed when a B<-h> is given to a command.  To see an example
+of notes being used, see init_notes_usage in F<usage.h>.  I<OPTIONAL>
+
+=item B<example>
+
+This should be an example of how the command is actually used.
+This will not be printed when a B<-h> is given to a command -- it
+will only be included in the POD or SGML documentation.  I<OPTIONAL>
 
 =back
 
@@ -223,8 +267,8 @@ terms as Perl itself.
 
 =head1 AUTHOR
 
-John BEPPU <beppu@lineo.com>
+John BEPPU <b@ax9.org>
 
 =cut
 
-# $Id: autodocifier.pl,v 1.16 2001/03/15 20:49:25 beppu Exp $
+# $Id: autodocifier.pl,v 1.26 2004/04/06 15:26:25 andersen Exp $