File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / bird / tools / progdoc
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Mar 17 19:50:23 2021 UTC (3 years, 2 months ago) by misho
Branches: bird, MAIN
CVS tags: v1_6_8p3, HEAD
bird 1.6.8

#!/usr/bin/perl

$srcdir = $ARGV[0];

open(OUT, ">prog.sgml") || die "Cannot create output file";
process("", "doc/prog-root");
close OUT;
exit 0;

sub include {
  my $f = shift @_;
  open(IN, "$srcdir/$f") || die "Unable to find $f";
  while (<IN>) {
    print OUT;
  }
  close IN;
}

sub process {
  my $dir = shift @_;
  my $doc = "$dir/" . shift @_;
  print "$doc\n";
  open(IN, "$srcdir/$doc") || die "Unable to read $doc";
  my @docfile = <IN>;
  close IN;
  foreach $_ (@docfile) {
    chomp;
    /^#/ && next;
    /^([A-Z]+)\s*(.*)/ || die "Parse error: $_";
    $cmd = $1;
    $arg = $2;
    if ($cmd eq "C") { process("$dir/$arg", "Doc"); }
    elsif ($cmd eq "H") {
      push @stack, "H";
      print OUT "<chapt>$arg\n";
    } elsif ($cmd eq "S") {
      print "    $arg\n";
      open(DOC, "cd $srcdir/$dir ; $srcdir/doc/kernel-doc -bird $arg |") || die "Unable to start kernel-doc";
      while (<DOC>) { print OUT; }
      close DOC;
    } elsif ($cmd eq "D") {
      print "    $arg\n";
      include("$dir/$arg");
    } else { die "Unknown command: $cmd"; }
  }
}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>