Home | History | Annotate | Line # | Download | only in mantools
fixman revision 1.1
      1  1.1  tron #!/usr/bin/perl
      2  1.1  tron 
      3  1.1  tron use Getopt::Std;
      4  1.1  tron 
      5  1.1  tron # Usage: fixman [-f] postconf.proto filename.c >filename.c.new
      6  1.1  tron 
      7  1.1  tron # fixman - fix parameter text in embedded man pages
      8  1.1  tron 
      9  1.1  tron # Basic operation:
     10  1.1  tron #
     11  1.1  tron # - Read definitions fron postconf.proto like file
     12  1.1  tron #
     13  1.1  tron # - Read source file with embedded manual page
     14  1.1  tron #
     15  1.1  tron # - Write to stdout the updated source file.
     16  1.1  tron #
     17  1.1  tron 
     18  1.1  tron #use Getopt::Std;
     19  1.1  tron 
     20  1.1  tron #$opt_h = undef;
     21  1.1  tron #$opt_v = undef;
     22  1.1  tron #getopts("hv");
     23  1.1  tron 
     24  1.1  tron #push @ARGV, "/dev/null"; # XXX
     25  1.1  tron 
     26  1.1  tron $opt_f = undef;
     27  1.1  tron $opt_v = undef;
     28  1.1  tron getopts("fv");
     29  1.1  tron 
     30  1.1  tron die "Usage: $0 [-fv] protofile [sourcefile...]
     31  1.1  tron -f: include full parameter description instead of one-line summary
     32  1.1  tron -v: verbose mode\n"
     33  1.1  tron         unless $protofile = shift(@ARGV);
     34  1.1  tron 
     35  1.1  tron # Save one definition.
     36  1.1  tron 
     37  1.1  tron sub save_text 
     38  1.1  tron {
     39  1.1  tron     if ($category eq "PARAM") {
     40  1.1  tron 	$text =~ s/\.\s.*/.\n/s unless $opt_f;
     41  1.1  tron         $param_text{$name} = $text;
     42  1.1  tron 	$defval = "empty" unless $defval ne "";
     43  1.1  tron 	$defval_text{$name} = $defval;
     44  1.1  tron         if ($opt_v) {
     45  1.1  tron             printf "saving entry %s %.20s..\n", $name, $text;
     46  1.1  tron         } 
     47  1.1  tron     } elsif ($category eq "CLASS") {
     48  1.1  tron         $class_text{$name} = $text;
     49  1.1  tron         if ($opt_v) {
     50  1.1  tron             printf "saving class %s %.20s..\n", $name, $text;
     51  1.1  tron         } 
     52  1.1  tron     } else {
     53  1.1  tron         die "Unknown category: $category. Need PARAM or CLASS.\n";
     54  1.1  tron     }
     55  1.1  tron }
     56  1.1  tron 
     57  1.1  tron # Emit one parameter name and text
     58  1.1  tron 
     59  1.1  tron sub emit_text
     60  1.1  tron {
     61  1.1  tron     my ($delim) = @_;
     62  1.1  tron     if ($block = $param_text{$name}) {
     63  1.1  tron 	print "$delim .IP \"\\fB$name ($defval_text{$name})\\fR\"\n";
     64  1.1  tron 	$wantpp = 0;
     65  1.1  tron 	$block =~ s/<a [^>]*>//g;
     66  1.1  tron 	$block =~ s/<\/a>//g;
     67  1.1  tron 	$block =~ s/<b>/\\fB/g;
     68  1.1  tron 	$block =~ s/<i>/\\fI/g;
     69  1.1  tron 	$block =~ s/<\/b>/\\fR/g;
     70  1.1  tron 	$block =~ s/<\/i>/\\fR/g;
     71  1.1  tron 	$block =~ s/\n(<p(re)?>)/\n.sp\n\1/g ; # if ($wantpp);
     72  1.1  tron 	$block =~ s/^(<p(re)?>)/.sp\n\1/ ; # if ($wantpp);
     73  1.1  tron 	$block =~ s/<p> */\n/g;
     74  1.1  tron 	$block =~ s/<\/p>/\n/g;
     75  1.1  tron 	$block =~ s/<pre>/\n.nf\n.na\n.ft C\n/g;
     76  1.1  tron 	$block =~ s/<\/pre>/\n.fi\n.ad\n.ft R\n/g;
     77  1.1  tron 	$block =~ s/<dl[^>]*>/\n.RS\n/g;
     78  1.1  tron 	$block =~ s/<ul>/\n.RS\n/g;
     79  1.1  tron 	#$block =~ s/<\/dl>/\n.PP\n/g;
     80  1.1  tron 	#$block =~ s/<\/ul>/\n.PP\n/g;
     81  1.1  tron 	$block =~ s/<\/dl>/\n.RE\n.IP ""\n/g;
     82  1.1  tron 	$block =~ s/<\/ul>/\n.RE\n.IP ""\n/g;
     83  1.1  tron 	$block =~ s/<dd>/\n/g;
     84  1.1  tron 	$block =~ s/<\/dd>/\n/g;
     85  1.1  tron 	$block =~ s/<li>\s*/\n.IP \\(bu\n/g;
     86  1.1  tron 	$block =~ s/<dt>\s*/\n.IP "/g;
     87  1.1  tron 	$block =~ s/\s*<\/dt>/"/g;
     88  1.1  tron 	$block =~ s/<blockquote>/\n.na\n.nf\n.in +4\n/g;
     89  1.1  tron 	$block =~ s/<\/blockquote>/\n.in -4\n.fi\n.ad\n/g;
     90  1.1  tron 	$block =~ s/\n<br>/\n.br\n/g;
     91  1.1  tron 	$block =~ s/<br>\s*/\n.br\n/g;
     92  1.1  tron 	$block =~ s/&lt;/</g;
     93  1.1  tron 	$block =~ s/&gt;/>/g;
     94  1.1  tron 
     95  1.1  tron 	# Peep-hole optimizer.
     96  1.1  tron 	$block =~ s/^\s+//g;
     97  1.1  tron 	$block =~ s/\s+\n/\n/g;
     98  1.1  tron 	$block =~ s/^\n//g;
     99  1.1  tron 	$block =~ s/\.IP ""\n(\.sp\n)+/.IP ""\n/g;
    100  1.1  tron 	$block =~ s/\.IP ""\n(\.[A-Z][A-Z])/\1/g;
    101  1.1  tron 	$block =~ s/(.IP ""\n)+$//;
    102  1.1  tron 	$block =~ s/^(\.(PP|sp)\n)+//;
    103  1.1  tron 	#$wantpp = !($block =~ /^\.(SH|IP)/);
    104  1.1  tron 
    105  1.1  tron 	# Boldify man page references.
    106  1.1  tron 	$block =~ s/([_a-zA-Z0-9-]+)(\([0-9]\))/\\fB\1\\fR\2/g;
    107  1.1  tron 
    108  1.1  tron 	# Encapsulate as C code comment.
    109  1.1  tron 	$block =~ s/^([^.])/$delim\t\1/;
    110  1.1  tron 	$block =~ s/^\./$delim ./;
    111  1.1  tron 	$block =~ s/\n([^.])/\n$delim\t\1/g;
    112  1.1  tron 	$block =~ s/\n\./\n$delim ./g;
    113  1.1  tron 
    114  1.1  tron 	print $block;
    115  1.1  tron     } else {
    116  1.1  tron 	print "$delim .IP \"\\fB$name ($defval)\\fR\"\n";
    117  1.1  tron 	print $text;
    118  1.1  tron     }
    119  1.1  tron     $name = "";
    120  1.1  tron }
    121  1.1  tron 
    122  1.1  tron # Read the whole file even if we want to print only one parameter.
    123  1.1  tron 
    124  1.1  tron open(POSTCONF, $protofile) || die " cannot open $protofile: $!\n";
    125  1.1  tron 
    126  1.1  tron while(<POSTCONF>) {
    127  1.1  tron 
    128  1.1  tron     next if /^#/;
    129  1.1  tron     next unless ($name || /\S/);
    130  1.1  tron 
    131  1.1  tron     if (/^%(PARAM|CLASS)/) {
    132  1.1  tron 
    133  1.1  tron         # Save the accumulated text.
    134  1.1  tron 
    135  1.1  tron         if ($name && $text) {
    136  1.1  tron             save_text();
    137  1.1  tron         }
    138  1.1  tron 
    139  1.1  tron         # Reset the parameter name and accumulated text.
    140  1.1  tron 
    141  1.1  tron         $name = $text = "";
    142  1.1  tron         $category = $1;
    143  1.1  tron 
    144  1.1  tron         # Accumulate the parameter name and default value.
    145  1.1  tron 
    146  1.1  tron         do {
    147  1.1  tron             $text .= $_;
    148  1.1  tron         } while(($_ = <POSTCONF>) && /\S/);
    149  1.1  tron         ($junk, $name, $defval) = split(/\s+/, $text, 3);
    150  1.1  tron 
    151  1.1  tron 	$defval =~ s/\s+/ /g;
    152  1.1  tron 	$defval =~ s/\s+$//;
    153  1.1  tron 	$defval =~ s/&lt;/</g;
    154  1.1  tron 	$defval =~ s/&gt;/>/g;
    155  1.1  tron 	$defval =~ s/"/'/g;
    156  1.1  tron 	$text = "";
    157  1.1  tron 	next;
    158  1.1  tron     } 
    159  1.1  tron 
    160  1.1  tron     # Accumulate the text in the class or parameter definition.
    161  1.1  tron 
    162  1.1  tron     $text .= $_;
    163  1.1  tron 
    164  1.1  tron }
    165  1.1  tron 
    166  1.1  tron # Save the last definition.
    167  1.1  tron 
    168  1.1  tron if ($name && $text) {
    169  1.1  tron     save_text();
    170  1.1  tron }
    171  1.1  tron 
    172  1.1  tron # Process source file with embedded text. For now, hard-coded for C & sh.
    173  1.1  tron 
    174  1.1  tron while(<>) {
    175  1.1  tron 
    176  1.1  tron     if (/^(\/\*|#)\+\+/) {
    177  1.1  tron 	$incomment = 1;
    178  1.1  tron 	$name = "";
    179  1.1  tron 	print;
    180  1.1  tron 	next;
    181  1.1  tron     }
    182  1.1  tron 
    183  1.1  tron     if (/^(\/\*|#)--/) {
    184  1.1  tron 	emit_text($1) if ($name ne "");
    185  1.1  tron 	$incomment = 0;
    186  1.1  tron 	print;
    187  1.1  tron 	next;
    188  1.1  tron     }
    189  1.1  tron 
    190  1.1  tron     if (!$incomment) {
    191  1.1  tron 	print;
    192  1.1  tron 	next;
    193  1.1  tron     }
    194  1.1  tron 
    195  1.1  tron     if (/(\/\*|#) +CONFIGURATION +PARAM/) {
    196  1.1  tron 	$incomment = 2;
    197  1.1  tron     }
    198  1.1  tron 
    199  1.1  tron     # Delete text after nested itemized list.
    200  1.1  tron     if ($incomment == 2 && /^(\/\*|#) +\.IP ""/) {
    201  1.1  tron 	$text .= $_;
    202  1.1  tron 	while (<>) {
    203  1.1  tron 	    last if /^(\/\*|#) +([A-Z][A-Z][A-Z]+|\.[A-Z][A-Z])/;
    204  1.1  tron 	    $text .= $_;
    205  1.1  tron 	}
    206  1.1  tron     }
    207  1.1  tron 
    208  1.1  tron     # Delete nested itemized list.
    209  1.1  tron     if ($incomment == 2 && /^(\/\*|#) +\.RS/) {
    210  1.1  tron 	$text .= $_;
    211  1.1  tron 	$rsnest++;
    212  1.1  tron 	while (<>) {
    213  1.1  tron 	    $text .= $_;
    214  1.1  tron 	    $rsnest++ if /^(\/\*|#) +\.RS/;
    215  1.1  tron 	    $rsnest-- if /(\/\*|#) +\.RE/;
    216  1.1  tron 	    last if $rsnest == 0;
    217  1.1  tron 	}
    218  1.1  tron 	next;
    219  1.1  tron     }
    220  1.1  tron 
    221  1.1  tron     if ($incomment == 2 && /^(\/\*|#) +\.IP +"?\\fB([a-zA-Z0-9_]+)( +\((.*)\))?/) {
    222  1.1  tron 	emit_text($1) if ($name ne "");
    223  1.1  tron 	$name = $2;
    224  1.1  tron 	$defval = $4;
    225  1.1  tron 	$text = "";
    226  1.1  tron 	next;
    227  1.1  tron     }
    228  1.1  tron 
    229  1.1  tron     if ($incomment == 2 && /^(\/\*|#) +([A-Z][A-Z][A-Z]+|\.[A-Z][A-Z])/) {
    230  1.1  tron 	emit_text($1) if ($name ne "");
    231  1.1  tron 	$incomment = 0 if /^(\/\*|#) +(SEE +ALSO|README +FILES|LICENSE|AUTHOR)/;
    232  1.1  tron 	print;
    233  1.1  tron 	next;
    234  1.1  tron     }
    235  1.1  tron 
    236  1.1  tron     if ($name ne "") {
    237  1.1  tron 	$text .= $_;
    238  1.1  tron 	next;
    239  1.1  tron     }
    240  1.1  tron 
    241  1.1  tron     print;
    242  1.1  tron     next;
    243  1.1  tron }
    244  1.1  tron 
    245  1.1  tron die "Unterminated comment\n" if $incomment;
    246