File: help2man

package info (click to toggle)
cod-tools 2.3%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 114,852 kB
  • sloc: perl: 53,336; sh: 23,842; ansic: 6,318; xml: 1,982; yacc: 1,112; makefile: 716; python: 158; sql: 73
file content (280 lines) | stat: -rwxr-xr-x 7,628 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
#!/bin/sh
#!perl -w # --*- Perl -*--
eval 'exec perl -x $0 ${1+"$@"}'
    if 0;
#------------------------------------------------------------------------------
#$Author: antanas $
#$Date: 2016-01-16 03:08:50 +0200 (Sat, 16 Jan 2016) $
#$Revision: 563 $
#$URL: svn+ssh://saulius-grazulis.lt/home/saulius/svn-repositories/scripts/help2man $
#------------------------------------------------------------------------------
#*
# Generate man page for a script, marked up according to SOptions Perl
# module.
#**

use strict;
use warnings;
use File::Basename qw( basename );
use COD::SOptions qw( getOptions );
use COD::SUsage qw( usage options );

my $name;
my $bugs_url;
my $bugs_email;

my $format = 'man';

my $read_stdin = 0;

#* USAGE:
#*     $0 --options script script*
#*
#* OPTIONS:
#*     --man
#*          Generate a man page. Default option.
#*
#*     --wiki
#*          Generate a wiki page.
#*
#*     --mdwn, --markdown
#*          Generate output in Markdown format.
#*
#*     --name
#*          Name of the program.
#*
#*     --stdin, --read-stdin
#*          Read help file from STDIN.
#*
#*     --bugs-url
#*          Specify Web URL for bug reporting.
#*
#*     --bugs-email
#*          Specify e-mail address for bug reporting.
#*
#*     --help, --usage
#*          Print a short usage message (this message) and exit.
#**
@ARGV = getOptions(
    "--man"             => sub { $format = 'man' },
    "--wiki"            => sub { $format = 'wiki' },
    "--mdwn,--markdown" => sub { $format = 'markdown' },

    "--name" => \$name,
    "--stdin,--read-stdin" => sub { $read_stdin = 1 },

    "--bugs-url"   => \$bugs_url,
    "--bugs-email" => \$bugs_email,

    "--options"      => sub { options; exit },
    "--help,--usage" => sub { usage; exit }
);

@ARGV = ( '-' ) unless @ARGV;

for my $filename (@ARGV) {
    $name = basename( $filename ) unless defined $name;
    my( $help, $errors );
    if( $read_stdin ) {
        $help = join '', <>;
    } else {
        do {
            local *STDOUT;
            local *STDERR;
            local $0 = $name;
            open( STDOUT, '>', \$help );
            open( STDERR, '>', \$errors );
            usage( $filename );
        };
        die $errors if $errors;
    }

    my @help = split( "\n", $help );

    my @head;
    my @usage;
    my @options;

    my %flags = ( in_head => 1 );
    my $opt_indent;
    while( @help ) {
        $_ = shift @help;

        if(    /^\s*usage:\s*$/i ) {
            %flags = ( in_usage => 1 );
            next;
        }
        elsif( /^\s*options:\s*$/i ) {
            %flags = ( in_options => 1 );
            next;
        }

        if(    exists $flags{in_head} ) {
            s/^\s+//;
            push( @head, $_ );
        }
        elsif( exists $flags{in_usage} ) {
            s/^\s+//;
            push( @usage, $_ );
        }
        elsif( exists $flags{in_options} ) {
            # Require all options to be prefixed by the same amount
            # of whitespace
            if( /^(\s*)\-\S/ ) {
                if( !defined $opt_indent ) {
                    $opt_indent = length( $1 );
                }
                if( length( $1 ) == $opt_indent && @options ) {
                    push @options, '';
                }
            }
            push( @options, $_ );
        }
    }

    my $indent_length;
    foreach( @options ) {
        next if $_ eq "";
        /^(\s*)/;
        if( !defined $indent_length ||
            $indent_length > length( $1 ) ) {
            $indent_length = length( $1 );
        }
    }

    @options = map { $_ ne ""
                            ? substr( $_, $indent_length )
                            : "" } @options;

    my $options;
    if( $format eq 'man' ) {
        @head    = map { s/\-/\\-/g; $_ } @head;
        @usage   = map { s/\-/\\-/g; $_ } @usage;
        @options = map { s/\-/\\-/g; $_ } @options;
        $options = join "\n", @options;
    } elsif( $format eq 'wiki' || $format eq 'markdown' ) {
        my @options_now;
        my $last_line;
        if( $format eq 'wiki' ) {
            push @options_now, ";";
        } else {
            push @options_now, "* `";
        }
        foreach( grep { !/^$/ } @options ) {
            if( !defined $last_line ) {
                $last_line = $_;
                next;
            }
            if( /^-/ ) {
                if( $last_line =~ /^-/ ) {
                    push @options_now, "$last_line ";
                } else {
                    push @options_now, "$last_line\n";
                    if( $format eq 'wiki' ) {
                        push @options_now, ";";
                    } else {
                        push @options_now, "\n* `";
                    }
                }
            } else {
                s/^\s+//;
                if( $last_line =~ /^-/ ) {
                    if( $format eq 'wiki' ) {
                        push @options_now, "$last_line\n";
                        push @options_now, ":";
                    } else {
                        push @options_now, "$last_line`\n";
                        push @options_now, "\n  ";
                    }
                } else {
                    push @options_now, "$last_line ";
                }
            }
            $last_line = $_;
        }
        push @options_now, $last_line;
        $options = join "", @options_now;
    } else {
        die "$0: unknown format: '$format'"
    }

    my $head    = join "\n", @head;
    my $usage   = join "\n\n", @usage;

    my $head_first_line;
    if( $head ) {
        $head_first_line = $head;
        $head_first_line =~ s/\n+/ /g;
        $head_first_line =~ s/^\s+//;
    } else {
        $head_first_line = "to be described...";
    }

    $head    = "to be described..." unless $head;
    $usage   = "$name [options] [input files]" unless $usage;
    $options = "to be described..." unless $options;

    if( $format eq 'man' ) {
        print <<END;
.TH $name
.SH NAME
$name \\- $head_first_line
.SH SYNOPSIS
$usage
.SH DESCRIPTION
$head
.SH OPTIONS
$options
END
    } elsif( $format eq 'wiki' ) {
        $head =~ s/^\s*//;
        $head = lcfirst( $head );
        print <<END;
'''$name''' &ndash; $head
== Synopsis ==
  $usage
== Options ==
$options
END
    } elsif( $format eq 'markdown' ) {
        $head =~ s/^\s*//;
        $head = lcfirst( $head );
        print <<END;
**$name** &ndash; $head
# Synopsis
    $usage
# Options
$options
END
    } else {
        die "$0: unknown format: '$format'"
    }

    my @bugs_contacts;
    if( $format eq 'markdown' ) {
        push( @bugs_contacts, "Report **$name** bugs using Web: <$bugs_url>" )
            if defined $bugs_url;
        push( @bugs_contacts, "Report **$name** bugs using e-mail: <$bugs_email>" )
            if defined $bugs_email;
    } else {
        push( @bugs_contacts, "Report $name bugs using Web: $bugs_url" )
            if defined $bugs_url;
        push( @bugs_contacts, "Report $name bugs using e-mail: $bugs_email" )
            if defined $bugs_email;
    }

    if( @bugs_contacts > 0 ) {
        if( $format eq 'man' ) {
            print ".SH \"REPORTING BUGS\"\n" .
                  join( "\n.br\n",
                        map { s/\-/\\-/g; $_ }
                            @bugs_contacts ) . "\n";
        } elsif( $format eq 'wiki' ) {
            print "== Reporting bugs ==\n" . join( "\n\n", @bugs_contacts ) . "\n";
        } elsif( $format eq 'markdown' ) {
            print "\n# Reporting bugs\n" . join( "\n\n", @bugs_contacts ) . "\n";
        } else {
            die "$0: unknown format: '$format'"
        }
    }
}