2006-09-05 17:50:55 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
echo This script takes a minute to run. Be patient. 1>&2
|
|
|
|
|
|
|
|
# pad stdin to multiple of 120 lines
|
|
|
|
pad()
|
|
|
|
{
|
|
|
|
awk '{print} END{for(; NR%120!=0; NR++) print ""}'
|
|
|
|
}
|
|
|
|
|
|
|
|
# create formatted (numbered) files
|
|
|
|
mkdir -p fmt
|
|
|
|
rm fmt/*
|
|
|
|
cp README fmt
|
|
|
|
files=`grep -v '^#' runoff.list | awk '{print $1}'`
|
|
|
|
n=99
|
|
|
|
for i in $files
|
|
|
|
do
|
2006-09-08 15:53:18 +02:00
|
|
|
runoff1 -n $n $i >fmt/$i
|
2006-09-07 15:07:29 +02:00
|
|
|
nn=`tail -1 fmt/$i | sed 's/ .*//; s/^0*//'`
|
|
|
|
if [ "x$nn" != x ]; then
|
|
|
|
n=$nn
|
|
|
|
fi
|
2006-09-05 17:50:55 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
# create table of contents
|
2006-09-08 15:53:18 +02:00
|
|
|
cat toc.hdr >fmt/toc
|
2006-09-05 17:50:55 +02:00
|
|
|
pr -e8 -t runoff.list | awk '
|
2006-09-08 15:53:18 +02:00
|
|
|
/^[a-z0-9]/ {
|
2006-09-05 17:50:55 +02:00
|
|
|
s=$0
|
|
|
|
f="fmt/"$1
|
|
|
|
getline<f
|
|
|
|
close(f)
|
|
|
|
n=$1
|
|
|
|
printf("%02d %s\n", n/100, s);
|
|
|
|
next
|
|
|
|
}
|
|
|
|
{
|
|
|
|
print
|
2006-09-08 15:53:18 +02:00
|
|
|
}' | pr -3 -t >>fmt/toc
|
|
|
|
cat toc.ftr >>fmt/toc
|
2006-09-05 17:50:55 +02:00
|
|
|
|
|
|
|
# make definition list
|
|
|
|
cd fmt
|
2006-09-06 21:43:59 +02:00
|
|
|
perl -e '
|
|
|
|
while(<>) {
|
|
|
|
chomp;
|
|
|
|
|
|
|
|
s!//.*!!;
|
|
|
|
s!/\*([^*]|[*][^/])*\*/!!g;
|
|
|
|
s!\s! !g;
|
|
|
|
s! +$!!;
|
|
|
|
|
|
|
|
# look for declarations like char* x;
|
|
|
|
if (/^[0-9]+ typedef .* u(int|short|long|char);/) {
|
|
|
|
next;
|
2006-09-05 17:50:55 +02:00
|
|
|
}
|
2006-09-06 21:43:59 +02:00
|
|
|
if (/^[0-9]+ extern/) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
if (/^[0-9]+ struct [a-zA-Z0-9_]+;/) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
if (/\(/) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (/^([0-9]+) (((static|struct|extern|union|enum) +)*([A-Za-z0-9_]+))( .*)? +([A-Za-z_][A-Za-z0-9_]*)[,;]/) {
|
|
|
|
|
|
|
|
print "$1 $7\n"
|
|
|
|
}
|
|
|
|
|
|
|
|
elsif (/^([0-9]+) #define +([A-za-z0-9_]+) +?\(.*/) {
|
|
|
|
print "$1 $2\n"
|
|
|
|
}
|
|
|
|
|
|
|
|
elsif (/^([0-9]+) #define +([A-Za-z0-9_]+) +([^ ]+)$/) {
|
|
|
|
print "$1 $2 $3\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
elsif (/^([0-9]+) #define +([A-Za-z0-9_]+)/) {
|
|
|
|
print "$1 $2\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
elsif(/^([0-9]+) (enum|struct|union) +([A-Za-z0-9_]+) +{/){
|
|
|
|
print "$1 $3\n";
|
|
|
|
}
|
|
|
|
# TODO: enum members
|
2006-09-05 17:50:55 +02:00
|
|
|
}
|
|
|
|
' $files >defs
|
2006-09-06 21:22:24 +02:00
|
|
|
|
|
|
|
perl -n -e 'print if s/^([0-9]+ [a-zA-Z0-9_]+)\(.*$/\1/;' $files |
|
2006-09-05 17:50:55 +02:00
|
|
|
egrep -v ' (usage|main|if|for)$' >>defs
|
|
|
|
(
|
|
|
|
>s.defs
|
|
|
|
|
|
|
|
# make reference list
|
|
|
|
for i in `awk '{print $2}' defs | sort -fu`
|
|
|
|
do
|
|
|
|
defs=`egrep '^[0-9]+ '$i'( |$)' defs | awk '{print $1}'`
|
|
|
|
echo $i $defs >>s.defs
|
|
|
|
uses=`egrep -h '([^a-zA-Z_0-9])'$i'($|[^a-zA-Z_0-9])' $files | awk '{print $1}'`
|
|
|
|
echo $i $defs
|
|
|
|
echo $uses |fmt -24 | sed 's/^/ /'
|
|
|
|
done
|
|
|
|
) >refs
|
|
|
|
|
|
|
|
# build defs list
|
|
|
|
awk '
|
|
|
|
{
|
|
|
|
printf("%04d %s\n", $2, $1);
|
|
|
|
for(i=3; i<=NF; i++)
|
|
|
|
printf("%04d \" \n", $i);
|
|
|
|
}
|
|
|
|
' s.defs > t.defs
|
|
|
|
|
|
|
|
# format the whole thing
|
|
|
|
(
|
2006-09-08 15:53:18 +02:00
|
|
|
../pr.pl README
|
|
|
|
../pr.pl -h "table of contents" toc
|
|
|
|
# pr -t -2 t.defs | ../pr.pl -h "definitions" | pad
|
|
|
|
pr -t -l50 -2 refs | ../pr.pl -h "cross-references" | pad
|
|
|
|
# pr.pl -h "definitions" -2 t.defs | pad
|
|
|
|
# pr.pl -h "cross-references" -2 refs | pad
|
2006-09-06 21:43:59 +02:00
|
|
|
for i in $files
|
|
|
|
do
|
2006-09-08 15:53:18 +02:00
|
|
|
../pr.pl -h "xv6/$i" $i
|
2006-09-06 21:43:59 +02:00
|
|
|
done
|
|
|
|
) | mpage -m50t50b -o -bLetter -T -t -2 -FCourier -L60 >all.ps
|
2006-09-05 17:50:55 +02:00
|
|
|
grep Pages: all.ps
|
|
|
|
|
|
|
|
# if we have the nice font, use it
|
2006-09-06 21:22:24 +02:00
|
|
|
nicefont=~rsc/plan9/sys/lib/postscript/font/LucidaSans-Typewriter83
|
2006-09-05 17:50:55 +02:00
|
|
|
if [ -f $nicefont ]
|
|
|
|
then
|
|
|
|
(sed 1q all.ps; cat $nicefont; sed '1d; s/Courier/LucidaSans-Typewriter83/' all.ps) >allf.ps
|
|
|
|
else
|
|
|
|
cp all.ps allf.ps
|
|
|
|
fi
|
|
|
|
ps2pdf allf.ps ../xv6.pdf
|