/usr/bin/cli-generate is in libbg1-dev 1.106-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 | #! /usr/bin/perl
# WARNING: This file was auto-generated. Do not edit!
use strict;
use Getopt::Std;
my %opts;
getopts('chmw', \%opts);
if (scalar(@ARGV) != 1
|| $opts{'c'} + $opts{'h'} + $opts{'m'} + $opts{'w'} != 1) {
print
"usage: $0 -c|-h|-m|-w program.cli >FILE\n",
"Generate command-line parsing structures from a description file.\n",
"\n",
" -c Generate C source code\n",
" -h Generate C header code\n",
" -m Generate man page source\n",
" -w Generate HTML (web) source\n";
exit(1);
}
my $filename = $ARGV[0];
open(IN, '<', $filename)
|| die "Could not open '$filename': $!\n";
my $program = $filename;
$program =~ s/\.cli$//;
$program =~ s/^.*\///;
my %sections;
my @options;
my %decls;
my %defns;
my %header = ( 'include' => "<cli/cli.h>\n" );
my @sections = ('return value',
'errors',
'examples',
'environment',
'files',
'see also',
'notes',
'caveats',
'warnings',
'diagnostics',
'bugs',
'restrictions',
'author',
'authors',
'history');
my %type_suffix = (
'STRING' => '=VALUE',
'INTEGER' => '=INT',
'UINTEGER' => '=UNS',
'STRINGLIST' => '=ITEM',
'FUNCTION' => '=VALUE',
'FLAG' => undef,
'COUNTER' => undef,
);
my %type_decl = (
'STRING' => "extern const char* %s;\n",
'INTEGER' => "extern int %s;\n",
'UINTEGER' => "extern unsigned int %s;\n",
'STRINGLIST' => "extern cli_stringlist* %s;\n",
'FUNCTION' => "extern void %s(const char*, const struct cli_option*);\n",
'FLAG' => "extern int %s;\n",
'COUNTER' => "extern int %s;\n",
);
my %type_defn = (
'STRING' => "const char* %s = %s;\n",
'INTEGER' => "int %s = %s;\n",
'UINTEGER' => "unsigned int %s = %s;\n",
'STRINGLIST' => "cli_stringlist* %s = %s;\n",
'FUNCTION' => "extern void %s(const char*, const struct cli_option*);\n",
'FLAG' => "int %s = %s;\n",
'COUNTER' => "int %s = %s;\n",
);
sub parse_options {
my @lines = split('\n', $sections{'options'});
my $line;
while ($line = shift(@lines)) {
$line =~ s/\s+$//;
next if !$line;
if ($line =~ /^--\s+(.+)$/) {
push(@options, {
'short' => undef,
'long' => undef,
'type' => 'SEPARATOR',
'flag' => '0',
'varname' => undef,
'init' => '0',
'help' => $1,
'default' => undef,
'description' => undef,
});
}
elsif ($line =~ /^(-([^-])\s+)?(--([^=]+)\s+)?([A-Z]+)(\s*=\s*(\S+))?\s+(\S+)(\s*=\s*("[^\"]*"|-?\d+))?$/
&& ($2 ne '' || $4 ne '')) {
my $shortopt = $2;
my $longopt = $4;
my $type = $5;
my $flag = $7 || '0';
my $var = $8;
my $init = $10;
my $helpstr = shift(@lines);
chomp($helpstr);
my $default = ($helpstr =~ s/\s*=\s*([^=]+)$//) ? $1 : undef;
my $description;
while ($line = shift(@lines)) {
chomp($line);
last if $line =~ /^-/;
if ($description || $line) {
$description =~ s/$/\n$line/;
}
}
push(@options, {
'short' => $shortopt,
'long' => $longopt,
'type' => $type,
'flag' => $flag,
'varname' => $var,
'init' => $init || '0',
'help' => $helpstr,
'default' => $default,
'description' => $description,
});
}
else {
die "Option line is misformatted:\n $line\n";
}
}
}
sub read_header {
my $line;
while ($line = <IN>) {
chomp($line);
last unless $line;
unless ($line =~ /^([^\s:]+):\s*(.*)$/) {
die "Invalid header line:\n $line\n";
}
my $field = $1;
my $value = $2;
$field =~ tr/A-Z/a-z/;
$header{$field} .= "$value\n";
}
}
sub read_sections {
my $line;
my $section;
my $text;
$line = <IN>;
unless ($line =~ /^\[(.+)\]\s*$/) {
die "Invalid section marker:\n $line\n";
}
$section = $1;
while ($line = <IN>) {
if ($line =~ /^\[(.+)\]\s*$/) {
my $newsection = $1;
$text =~ s/\s+$//;
$sections{$section} = $text;
$section = $newsection;
$text = '';
}
else {
$text .= $line;
}
}
if ($section) {
$text =~ s/\s+$//;
$sections{$section} = $text;
}
}
sub header_num {
my ($key,$default) = @_;
$header{$key} = defined($header{$key}) ? $header{$key} + 0 : $default;
}
sub parse_header {
my $line;
my $key;
foreach $key (keys %header) {
chomp($header{$key});
}
foreach $line (split('\n', $header{'include'})) {
$header{'includes'} .= "#include $line\n";
}
header_num('min', 0);
header_num('max', -1);
header_num('show-pid', 0);
header_num('debug-bits', 0);
}
sub postprocess_options {
foreach my $option (@options) {
my $var = $$option{'varname'};
my $type = $$option{'type'};
if (my $decl = $type_decl{$type}) {
$decls{$var} = sprintf($decl, $var);
}
if (my $defn = $type_defn{$type}) {
$defns{$var} = sprintf($defn, $var, $$option{'init'});
}
$$option{'help'} =~ s/([^\.])$/$1\./;
my $short = defined($$option{'short'})
? "-$$option{'short'}"
: ' ';
my $long = defined($$option{'long'})
? "--$$option{'long'}$type_suffix{$type}"
: '';
my $mid = (defined($$option{'short'}) && defined($$option{'long'}))
? ', '
: ' ';
$$option{'prehelp'} = "$short$mid$long";
}
}
sub parse_text {
$_ = shift;
s/^\n+//;
s/\n*$/\n/;
# Split the text into paragraphs
my @lines = split("\n", $_);
my @parts;
my $part;
my $mode;
while (@lines) {
$_ = shift(@lines);
# Major modes, match everything up to the following "@end MODE"
if (/^\@(example|verbatim)$/) {
push @parts, $part if $part;
$mode = $1;
$part = $_;
while (@lines) {
$_ = shift(@lines);
last if /^\@end\s+$mode$/;
$part =~ s/$/\n$_/;
}
push @parts, $part;
$part = '';
}
# single line sections, keep them seperate from the text paragraphs
elsif (/^\@(table\s+\S+|end\s+table)$/) {
push @parts, $part if $part;
push @parts, $_;
$part = '';
}
elsif (!$_ || /^\@item($|\s)/) {
push @parts, $part if $part;
$part = $_;
}
else {
$part .= ' ' if $part;
$part .= $_;
}
}
push @parts, $part if $part;
foreach (@parts) {
s/[ \t]+/ /g;
}
@parts;
}
###############################################################################
# Functions for outputting C header file
###############################################################################
sub output_h {
my $guard = $filename;
$guard =~ tr/a-z/A-Z/;
$guard =~ s/[^0-9A-Z]/_/g;
print "#ifndef ${guard}_H\n";
print "#define ${guard}_H\n";
print "/* This file was automatically generated from ${filename}, do not edit. */\n";
print $header{'includes'};
foreach my $var (sort keys %decls) {
print $decls{$var};
}
print "#endif\n";
}
###############################################################################
# Functions for outputting C source
###############################################################################
sub max_width {
my $max = 10;
foreach my $option (@options) {
my $width = length($$option{'prehelp'});
$max = $width if $width > $max;
}
$max;
}
sub c_escape {
my ($s) = @_;
$s =~ s/\"/\\\"/g;
$s =~ s/\n/\\n"\n"/g;
$s;
}
sub make_helpstr {
my $width = max_width();
my $text;
$text .= "$header{'description'}\n" if $header{'description'};
$text .= "$sections{'prefix'}\n" if $sections{'prefix'};
$text .= "\n";
foreach my $option (@options) {
if ($$option{'type'} eq 'SEPARATOR') {
$text .= sprintf("\n%s:\n", $$option{'help'});
}
else {
$text .= sprintf(" %-${width}s %s\n",
$$option{'prehelp'}, $$option{'help'});
if (defined($$option{'default'})) {
$text .= sprintf(" %${width}s (Defaults to %s)\n",
'', $$option{'default'});
}
}
}
$text .= sprintf("\n %-${width}s %s\n",
'-h, --help',
'Display this help and exit');
$text .= $sections{'suffix'};
$text .= "\n";
$text;
}
sub output_c {
print "/* This file was automatically generated from ${filename}, do not edit. */\n";
print "#include <string.h>\n";
print "#include <iobuf/obuf.h>\n";
print $header{'includes'};
print "const char program[] = \"$program\";\n";
print "const char cli_args_usage[] = \"$header{'usage'}\";\n";
print "const int cli_args_min = $header{'min'};\n";
print "const int cli_args_max = $header{'max'};\n";
print "const int msg_show_pid = $header{'show-pid'};\n";
print "int msg_debug_bits = $header{'debug-bits'};\n";
my $helpstr = c_escape(make_helpstr());
print
"void cli_show_help(void) {\n",
" obuf_puts(&outbuf,\n",
"\"$helpstr\");\n",
"}\n";
foreach my $var (sort keys %defns) {
print $defns{$var};
}
print "cli_option cli_options[] = {\n";
foreach my $option (@options) {
if ($$option{'type'} ne 'SEPARATOR') {
my $default = c_escape($$option{'default'});
my $varptr = $$option{'varname'};
if (defined($varptr)) {
if ($$option{'type'} ne 'FUNCTION') {
$varptr = "&$varptr";
}
}
else {
$varptr = '0';
}
printf
" { %s, %s, CLI_%s, %s, %s, 0, 0 },\n",
defined($$option{'short'}) ? "'$$option{'short'}'" : 0,
defined($$option{'long'}) ? "\"$$option{'long'}\"" : 0,
$$option{'type'},
$$option{'flag'},
$varptr;
}
}
print " {0,0,0,0,0,0,0}\n";
print "};\n";
}
###############################################################################
# Functions for outputting man page source
###############################################################################
sub reformat_m_tag {
my ($tag, $text) = @_;
# TeXinfo tags:
# kbd key verb dfn
# cite abbr acronym indicateurl email
if ($tag eq 'strong'
|| $tag eq 'command'
|| $tag eq 'option') {
"\\fB$text\\fR";
}
elsif ($tag eq 'emph'
|| $tag eq 'var'
|| $tag eq 'file'
|| $tag eq 'env') {
"\\fI$text\\fR";
}
elsif ($tag eq 'samp') {
"\"$text\"";
}
elsif ($tag eq 'code') {
"'$text'";
}
elsif ($tag eq 'asis') {
$text;
}
else {
print STDERR "Warning, unknown tag \@$tag, ignoring\n";
$text;
}
}
sub reformat_m_tags {
my $line = shift;
s/^\./\\./gm;
$line =~ s/\@program\b/\\fB$program\\fR/g;
$line =~ s/\@([a-zA-Z]+)\{(.*?)\}/reformat_m_tag($1,$2)/eg;
$line;
}
sub parse_m_text {
my @parts = parse_text(shift);
my $tmode;
foreach (@parts) {
if (s/^\@verbatim($|\n)//) {
s/^\./\\./gm;
s/^/.nf\n/;
s/$/\n.fi/;
}
elsif (s/^\@example($|\n)//) {
$_ = reformat_m_tags($_);
s/^/.RS\n/;
s/$/\n.RE/;
}
elsif (/^\@table( (\@\S+))?$/) {
$tmode = $2 || '@asis';
$_ = '';
}
elsif (/^\@end table$/) {
$_ = '.PP';
}
elsif (s/^\@itemx? //s) {
$_ = reformat_m_tags("$tmode\{$_\}");
s/^/.TP\n/;
}
else {
$_ = reformat_m_tags($_);
}
s/$/\n/;
}
$_ = join("\n", @parts);
# 3 or more line feeds always need to be reduced to 2.
s/\n{3,}/\n\n/g;
# Blank lines before .TP or .PP need to be removed.
s/\n{2,}(\.(TP|PP))/\n$1/g;
# Blank lines after .PP need to be removed.
s/^\.PP\n{2,}/.PP\n/gm;
# Remove blank lines betwee the first (unindented) and second
# (indented) paragraphs in the .TP formatter.
s/^(\.TP\n[^\n]+)\n+/$1\n/gm;
# Strip leading blank lines in this section.
s/^\n+//;
# Strip extraneous trailing .PP lines.
s/\.PP\n*$//;
# Strip remaining trailing blank lines.
s/\n+$//;
$_;
}
sub output_m_section {
my ($section) = @_;
my $text = $sections{$section};
if ($text) {
$section =~ tr/a-z/A-Z/;
print ".SH $section\n";
print parse_m_text($text), "\n";
}
}
sub output_m_options {
print ".SH OPTIONS\n";
foreach my $option (@options) {
if ($$option{'type'} eq 'SEPARATOR') {
print ".SS $$option{'help'}\n";
}
else {
print ".TP\n";
print ".B $$option{'prehelp'}\n";
print $$option{'help'}, "\n";
print parse_m_text($$option{'description'}), "\n"
if $$option{'description'};
print "Defaults to $$option{'default'}.\n"
if defined($$option{'default'});
}
}
print
".TP\n",
".B -h, --help\n",
"Display usage information and exit.\n";
}
sub output_m {
my $section;
if (!$header{'description'}) {
print STDERR "Warning: The header is missing a 'description' field.\n";
}
print
".\\\" This file was automatically generated from ${filename}, do not edit.\n",
".TH $program 1\n",
".SH NAME\n",
"$program \\- $header{'description'}\n",
".SH SYNOPSIS\n",
".B $program\n";
$_ = $header{'usage'};
s/([\[\]])/\\fR$1\\fI/g;
s/(^|\s+)(-\S+)/\\fB$1\\fI/g;
print ".I $_\n";
output_m_section('description');
output_m_options() if @options;
foreach $section (@sections) {
output_m_section($section);
}
}
###############################################################################
# Functions for outputting HTML source
###############################################################################
sub reformat_w_tag {
my ($tag, $text) = @_;
if ($tag eq 'strong') {
"<strong>$text</strong>";
}
elsif ($tag eq 'emph') {
"<em>$text</em>";
}
elsif ($tag eq 'var') {
"<var>$text</var>";
}
elsif ($tag eq 'command'
|| $tag eq 'option'
|| $tag eq 'file'
|| $tag eq 'env') {
"<tt>$text</tt>";
}
elsif ($tag eq 'samp') {
"\"<samp>$text</samp>\"";
}
elsif ($tag eq 'code') {
"<code>$text</code>";
}
elsif ($tag eq 'asis') {
$text;
}
else {
print STDERR "Warning, unknown tag \@$tag, ignoring\n";
$text;
}
}
sub reformat_w_tags {
my $line = shift;
s/^\./\\./gm;
$line =~ s/\@program\b/<b><tt>$program<\/tt><\/b>/g;
$line =~ s/\@([a-zA-Z]+)\{(.*?)\}/reformat_w_tag($1,$2)/eg;
$line;
}
sub parse_w_text {
my @parts = parse_text(shift);
my $tmode;
my $par = 'p';
foreach (@parts) {
if (s/^\@verbatim($| )//) {
s/\&/\&/g;
s/</\</g;
s/>/\>/g;
s/^/<pre>/;
s/$/<\/pre>/;
}
elsif (s/^\@example($| )//) {
$_ = reformat_w_tags($_);
s/^/<blockquote>/;
s/$/<\/blockquote>/;
}
elsif (/^\@table( (\@\S+))?$/) {
$tmode = $2 || '@asis';
$_ = '<dl>';
}
elsif (/^\@end table$/) {
$_ = '</dl>';
$par = 'p';
}
elsif (s/^\@itemx? //s) {
$_ = reformat_w_tags("$tmode\{$_\}");
s/^/<dt>/;
s/$/<\/dt>/;
$par = 'dd';
}
else {
$_ = reformat_w_tags($_);
s/^/<$par>/;
s/$/<\/$par>/;
}
}
join("\n", @parts);
}
sub output_w_section {
my ($section) = @_;
my $text = $sections{$section};
if ($text) {
$section =~ tr/a-z/A-Z/;
print "<a name=\"$section\"></a><h2>$section</h2>\n";
print parse_w_text($text), "\n";
}
}
sub output_w_options {
}
sub output_w {
my $section;
my $usection;
if (!$header{'description'}) {
print STDERR "Warning: The header is missing a 'description' field.\n";
}
print
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n",
"<!-- This file was automatically generated from ${filename} -->\n",
"<html>\n",
"<head>\n",
"<title>Manual page for $program</title>\n",
"</head>\n",
"<body>\n",
"<h1>$program</h1>\n",
"<hr />\n",
"<a name=\"index\"></a><h2>Index</h2>\n",
"<dl>\n",
"<dt><a href=\"#NAME\">NAME</a></dt>\n",
"<dt><a href=\"#SYNOPSIS\">SYNOPSIS</a></dt>\n";
print "<dt><a href=\"#DESCRIPTION\">DESCRIPTION</a></dt>\n"
if $sections{'description'};
print "<dt><a href=\"#OPTIONS\">OPTIONS</a></dt>\n"
if @options;
foreach $section (@sections) {
if ($sections{$section}) {
$section =~ tr/a-z/A-Z/;
print "<dt><a href=\"#$section\">$section</a></dt>\n";
}
}
print
"</dl>\n",
"<hr />\n",
"<a name=\"NAME\"></a><h2>NAME</h2>\n",
"<p>$program - $header{'description'}</p>\n",
"<a name=\"SYNOPSIS\"></a><h2>SYNOPSIS</h2>\n";
$_ = $header{'usage'};
s{([\[\]])}{</i>$1<i>}g;
s{(^|\s+)(-\S+)}{</i><b>$1</b><i>}g;
print "<p><i>$_</i></p>\n";
output_w_section('description');
output_w_options() if @options;
foreach $section (@sections) {
output_w_section($section);
}
print
"</body>\n",
"</html>\n";
}
###############################################################################
# Main routine
###############################################################################
read_header();
read_sections();
parse_header();
parse_options();
postprocess_options();
if ($opts{'c'}) {
output_c();
}
elsif ($opts{'h'}) {
output_h();
}
elsif ($opts{'m'}) {
output_m();
}
elsif ($opts{'w'}) {
output_w();
}
|