blob: eee67cf09e5f625deb33876cac6ce581c0acbd5b [file] [log] [blame]
Eric Andersene13bc0b2001-02-22 22:47:06 +00001#!/usr/bin/perl -w
Eric Andersene13bc0b2001-02-22 22:47:06 +00002
3use strict;
John Beppu4a25d8c2001-02-23 02:33:28 +00004use Getopt::Long;
Eric Andersene13bc0b2001-02-22 22:47:06 +00005
Eric Andersen55c704c2004-03-13 08:32:14 +00006# collect lines continued with a '\' into an array
John Beppu4a25d8c2001-02-23 02:33:28 +00007sub continuation {
8 my $fh = shift;
9 my @line;
Eric Andersene13bc0b2001-02-22 22:47:06 +000010
John Beppu4a25d8c2001-02-23 02:33:28 +000011 while (<$fh>) {
12 my $s = $_;
13 $s =~ s/\\\s*$//;
John Beppu79359d82001-04-05 20:03:33 +000014 #$s =~ s/#.*$//;
John Beppu4a25d8c2001-02-23 02:33:28 +000015 push @line, $s;
16 last unless (/\\\s*$/);
17 }
18 return @line;
19}
Eric Andersene13bc0b2001-02-22 22:47:06 +000020
John Beppu4a25d8c2001-02-23 02:33:28 +000021# regex && eval away unwanted strings from documentation
22sub beautify {
23 my $text = shift;
John Beppudbfff6c2001-02-23 17:55:03 +000024 $text =~ s/USAGE_NOT\w+\(.*?"\s*\)//sxg;
John Beppudf1e9da2001-02-23 16:15:34 +000025 $text =~ s/USAGE_\w+\(\s*?(.*?)"\s*\)/$1"/sxg;
26 $text =~ s/"\s*"//sg;
John Beppu4a25d8c2001-02-23 02:33:28 +000027 my @line = split("\n", $text);
28 $text = join('',
Eric Andersen55c704c2004-03-13 08:32:14 +000029 map {
Matt Kraai4e853562001-04-10 00:00:05 +000030 s/^\s*"//;
31 s/"\s*$//;
John Beppu7d597c42001-02-24 14:37:48 +000032 s/%/%%/g;
John Beppud11578f2001-02-26 02:50:11 +000033 s/\$/\\\$/g;
John Beppu79359d82001-04-05 20:03:33 +000034 eval qq[ sprintf(qq{$_}) ]
John Beppu7d597c42001-02-24 14:37:48 +000035 } @line
John Beppu4a25d8c2001-02-23 02:33:28 +000036 );
37 return $text;
38}
Eric Andersene13bc0b2001-02-22 22:47:06 +000039
John Beppu4a25d8c2001-02-23 02:33:28 +000040# generate POD for an applet
41sub pod_for_usage {
42 my $name = shift;
43 my $usage = shift;
44
Eric Andersen55c704c2004-03-13 08:32:14 +000045 # Sigh. Fixup the known odd-name applets.
46 $name =~ s/dpkg_deb/dpkg-deb/g;
47 $name =~ s/fsck_minix/fsck.minix/g;
48 $name =~ s/mkfs_minix/mkfs.minix/g;
49 $name =~ s/run_parts/run-parts/g;
50 $name =~ s/start_stop_daemon/start-stop-daemon/g;
51
John Beppu8373e702001-02-23 17:41:41 +000052 # make options bold
John Beppu4a25d8c2001-02-23 02:33:28 +000053 my $trivial = $usage->{trivial};
John Beppud11578f2001-02-26 02:50:11 +000054 $trivial =~ s/(?<!\w)(-\w+)/B<$1>/sxg;
Eric Andersen55c704c2004-03-13 08:32:14 +000055 my @f0 =
John Beppu4a25d8c2001-02-23 02:33:28 +000056 map { $_ !~ /^\s/ && s/(?<!\w)(-\w+)/B<$1>/g; $_ }
John Beppu8373e702001-02-23 17:41:41 +000057 split("\n", $usage->{full});
John Beppu4a25d8c2001-02-23 02:33:28 +000058
John Beppu8373e702001-02-23 17:41:41 +000059 # add "\n" prior to certain lines to make indented
60 # lines look right
John Beppu7d597c42001-02-24 14:37:48 +000061 my @f1;
John Beppu8373e702001-02-23 17:41:41 +000062 my $len = @f0;
63 for (my $i = 0; $i < $len; $i++) {
64 push @f1, $f0[$i];
65 if (($i+1) != $len && $f0[$i] !~ /^\s/ && $f0[$i+1] =~ /^\s/) {
66 next if ($f0[$i] =~ /^$/);
67 push(@f1, "") unless ($f0[$i+1] =~ /^\s*$/s);
68 }
69 }
John Beppu8373e702001-02-23 17:41:41 +000070 my $full = join("\n", @f1);
John Beppud11578f2001-02-26 02:50:11 +000071
John Beppu5d817682001-04-17 17:09:34 +000072 # prepare notes if they exist
Eric Andersen0d3a02e2001-03-15 18:14:25 +000073 my $notes = (defined $usage->{notes})
74 ? "$usage->{notes}\n\n"
75 : "";
76
John Beppu5d817682001-04-17 17:09:34 +000077 # prepare examples if they exist
John Beppud11578f2001-02-26 02:50:11 +000078 my $example = (defined $usage->{example})
Eric Andersen55c704c2004-03-13 08:32:14 +000079 ?
John Beppue708cb52001-03-15 21:08:01 +000080 "Example:\n\n" .
Eric Andersen55c704c2004-03-13 08:32:14 +000081 join ("\n",
82 map { "\t$_" }
John Beppue708cb52001-03-15 21:08:01 +000083 split("\n", $usage->{example})) . "\n\n"
John Beppud11578f2001-02-26 02:50:11 +000084 : "";
85
John Beppu4a25d8c2001-02-23 02:33:28 +000086 return
John Beppu9a1395b2001-04-05 19:35:17 +000087 "=item B<$name>".
Eric Andersen55c704c2004-03-13 08:32:14 +000088 "\n\n$name $trivial\n\n".
89 "$full\n\n" .
90 "$notes" .
91 "$example" .
John Beppud11578f2001-02-26 02:50:11 +000092 "-------------------------------".
John Beppu4a25d8c2001-02-23 02:33:28 +000093 "\n\n"
94 ;
95}
96
Eric Andersen55c704c2004-03-13 08:32:14 +000097# the keys are applet names, and
John Beppu8c16bc52001-02-23 02:54:31 +000098# the values will contain hashrefs of the form:
99#
John Beppu4a25d8c2001-02-23 02:33:28 +0000100# {
101# trivial => "...",
102# full => "...",
John Beppu5d817682001-04-17 17:09:34 +0000103# notes => "...",
John Beppu138ece02001-03-06 19:25:25 +0000104# example => "...",
John Beppu4a25d8c2001-02-23 02:33:28 +0000105# }
106my %docs;
107
John Beppu7d597c42001-02-24 14:37:48 +0000108
John Beppu4a25d8c2001-02-23 02:33:28 +0000109# get command-line options
John Beppu7d597c42001-02-24 14:37:48 +0000110
John Beppu4a25d8c2001-02-23 02:33:28 +0000111my %opt;
112
113GetOptions(
114 \%opt,
115 "help|h",
John Beppu4a25d8c2001-02-23 02:33:28 +0000116 "pod|p",
117 "verbose|v",
118);
119
120if (defined $opt{help}) {
121 print
122 "$0 [OPTION]... [FILE]...\n",
123 "\t--help\n",
John Beppu4a25d8c2001-02-23 02:33:28 +0000124 "\t--pod\n",
125 "\t--verbose\n",
126 ;
127 exit 1;
128}
129
John Beppu7d597c42001-02-24 14:37:48 +0000130
John Beppu4a25d8c2001-02-23 02:33:28 +0000131# collect documenation into %docs
John Beppu7d597c42001-02-24 14:37:48 +0000132
John Beppu4a25d8c2001-02-23 02:33:28 +0000133foreach (@ARGV) {
John Beppud11578f2001-02-26 02:50:11 +0000134 open(USAGE, $_) || die("$0: $_: $!");
John Beppu4a25d8c2001-02-23 02:33:28 +0000135 my $fh = *USAGE;
136 my ($applet, $type, @line);
137 while (<$fh>) {
John Beppu4a25d8c2001-02-23 02:33:28 +0000138 if (/^#define (\w+)_(\w+)_usage/) {
139 $applet = $1;
140 $type = $2;
141 @line = continuation($fh);
142 my $doc = $docs{$applet} ||= { };
John Beppu4a25d8c2001-02-23 02:33:28 +0000143 my $text = join("\n", @line);
144 $doc->{$type} = beautify($text);
Eric Andersene13bc0b2001-02-22 22:47:06 +0000145 }
Eric Andersene13bc0b2001-02-22 22:47:06 +0000146 }
147}
John Beppu4a25d8c2001-02-23 02:33:28 +0000148
John Beppu7d597c42001-02-24 14:37:48 +0000149
150# generate structured documentation
151
John Beppue6967b22001-02-23 17:51:08 +0000152my $generator = \&pod_for_usage;
John Beppu7d597c42001-02-24 14:37:48 +0000153foreach my $applet (sort keys %docs) {
154 print $generator->($applet, $docs{$applet});
John Beppu4a25d8c2001-02-23 02:33:28 +0000155}
156
157exit 0;
158
159__END__
160
161=head1 NAME
162
163autodocifier.pl - generate docs for busybox based on usage.h
164
165=head1 SYNOPSIS
166
John Beppu5d817682001-04-17 17:09:34 +0000167autodocifier.pl [OPTION]... [FILE]...
168
169Example:
170
171 ( cat docs/busybox_header.pod; \
172 docs/autodocifier.pl usage.h; \
173 cat docs/busybox_footer.pod ) > docs/busybox.pod
John Beppu4a25d8c2001-02-23 02:33:28 +0000174
175=head1 DESCRIPTION
176
Eric Andersenf7300882004-04-06 15:26:25 +0000177The purpose of this script is to automagically generate
178documentation for busybox using its usage.h as the original source
179for content. It used to be that same content has to be duplicated
180in 3 places in slightly different formats -- F<usage.h>,
181F<docs/busybox.pod>. This was tedious and error-prone, so it was
John Beppuce22fee2001-10-31 04:29:18 +0000182decided that F<usage.h> would contain all the text in a
183machine-readable form, and scripts could be used to transform this
184text into other forms if necessary.
John Beppu4a25d8c2001-02-23 02:33:28 +0000185
Eric Andersenf7300882004-04-06 15:26:25 +0000186F<autodocifier.pl> is one such script. It is based on a script by
187Erik Andersen <andersen@codepoet.org> which was in turn based on a
188script by Mark Whitley <markw@codepoet.org>
John Beppu4a25d8c2001-02-23 02:33:28 +0000189
190=head1 OPTIONS
191
John Beppue6967b22001-02-23 17:51:08 +0000192=over 4
John Beppu4a25d8c2001-02-23 02:33:28 +0000193
John Beppu9a1395b2001-04-05 19:35:17 +0000194=item B<--help>
John Beppu4a25d8c2001-02-23 02:33:28 +0000195
196This displays the help message.
197
John Beppu9a1395b2001-04-05 19:35:17 +0000198=item B<--pod>
John Beppue6967b22001-02-23 17:51:08 +0000199
200Generate POD (this is the default)
201
John Beppu9a1395b2001-04-05 19:35:17 +0000202=item B<--verbose>
John Beppue6967b22001-02-23 17:51:08 +0000203
204Be verbose (not implemented)
205
John Beppu4a25d8c2001-02-23 02:33:28 +0000206=back
207
John Beppu9a1395b2001-04-05 19:35:17 +0000208=head1 FORMAT
209
210The following is an example of some data this script might parse.
211
212 #define length_trivial_usage \
213 "STRING"
214 #define length_full_usage \
215 "Prints out the length of the specified STRING."
216 #define length_example_usage \
John Beppu5d817682001-04-17 17:09:34 +0000217 "$ length Hello\n" \
John Beppu9a1395b2001-04-05 19:35:17 +0000218 "5\n"
219
220Each entry is a cpp macro that defines a string. The macros are
221named systematically in the form:
222
223 $name_$type_usage
224
225$name is the name of the applet. $type can be "trivial", "full", "notes",
226or "example". Every documentation macro must end with "_usage".
227
228The definition of the types is as follows:
229
230=over 4
231
232=item B<trivial>
233
234This should be a brief, one-line description of parameters that
235the command expects. This will be displayed when B<-h> is issued to
236a command. I<REQUIRED>
237
238=item B<full>
239
240This should contain descriptions of each option. This will also
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000241be displayed along with the trivial help if CONFIG_FEATURE_TRIVIAL_HELP
John Beppu9a1395b2001-04-05 19:35:17 +0000242is disabled. I<REQUIRED>
243
244=item B<notes>
245
246This is documentation that is intended to go in the POD or SGML, but
John Beppu5d817682001-04-17 17:09:34 +0000247not be printed when a B<-h> is given to a command. To see an example
John Beppuce22fee2001-10-31 04:29:18 +0000248of notes being used, see init_notes_usage in F<usage.h>. I<OPTIONAL>
John Beppu9a1395b2001-04-05 19:35:17 +0000249
250=item B<example>
251
John Beppuce22fee2001-10-31 04:29:18 +0000252This should be an example of how the command is actually used.
John Beppu5d817682001-04-17 17:09:34 +0000253This will not be printed when a B<-h> is given to a command -- it
John Beppuce22fee2001-10-31 04:29:18 +0000254will only be included in the POD or SGML documentation. I<OPTIONAL>
John Beppu9a1395b2001-04-05 19:35:17 +0000255
256=back
257
John Beppu4a25d8c2001-02-23 02:33:28 +0000258=head1 FILES
259
John Beppue6967b22001-02-23 17:51:08 +0000260F<usage.h>
John Beppu4a25d8c2001-02-23 02:33:28 +0000261
262=head1 COPYRIGHT
263
264Copyright (c) 2001 John BEPPU. All rights reserved. This program is
265free software; you can redistribute it and/or modify it under the same
266terms as Perl itself.
267
268=head1 AUTHOR
269
John Beppuce22fee2001-10-31 04:29:18 +0000270John BEPPU <b@ax9.org>
John Beppu4a25d8c2001-02-23 02:33:28 +0000271
272=cut
273
Eric Andersenf7300882004-04-06 15:26:25 +0000274# $Id: autodocifier.pl,v 1.26 2004/04/06 15:26:25 andersen Exp $