b03eacb3c037ec0c16a384e8f7f5d78c05e62f1b
[silc.git] / scripts / silcdoc / silcdoc
1 #!/bin/sh
2 #
3 # Author: Pekka Riikonen <priikone@silcnet.org>
4 #
5 # Copyright (C) GNU GPL 2001 Pekka Riikonen
6 #
7 # SILC Toolkit Reference Manual documentation script.  This will automatically
8 # generate documentation from the source tree.  This will require the 
9 # robodoc compiled in util/robodoc and php utility installed in your system.
10 #
11 # This will tarverse the given directory and all subdirectories for the
12 # SILC style header files.  All header files starting with prefix `silc' 
13 # will be checked.  For example, silcpkcs.h.
14 #
15 # Usage: ./sildoc <type> <source directory> <destination directory> <robodoc>
16 #
17 # The <source directory> is the directory where this starts checking for
18 # the headers and will traverse all subdirectories.  The <destination
19 # directory> is the directory to where the documentation is generated.
20 #
21
22 # Arguments checking
23 if [ $# -lt "4" ]; then
24   echo "Usage: ./silcdoc <type> <source directory> <destination directory> <robodoc>"
25   echo "Supported types: HTML"
26 #  echo "Supported types: HTML, ASCII, LATEX or RTF"
27   exit 1
28 fi
29
30 TYPE=$1
31 SRC=$2
32 DST=$3
33 ROBO=$4
34
35 # Get all headers in the source directory
36 headers=`find $SRC -name "silc*.h"`
37
38 #
39 # HTML documentation
40 #
41 if [ "$TYPE" = "HTML" ]; then
42   mkdir /tmp/silcdoc.html
43   cp $headers /tmp/silcdoc.html
44
45   # Generate indes template from the DIRECTORY files
46   files=`find $SRC -name "DIRECTORY"`
47   for i in $files
48   do
49     # Get library name
50     name=`grep "@LIBRARY=" $i |cut -d=  -f2`
51     fname=`grep "@FILENAME=" $i |cut -d=  -f2`
52     links=`grep "@LINK=" $i |cut -d=  -f2 |cut -d:  -f1`
53
54     # Generate links to template file that can be included into various
55     # places on the webpage.
56     echo "<A HREF="$fname">$name</A><BR>" >>$DST/index.tmpl
57     for k in $links
58     do
59       n=`grep $k $i |cut -d=  -f2 |cut -d:  -f2`
60       echo "<LI><A HREF="$k">$n</A>" >>$DST/$fname.links
61       echo "&nbsp;&nbsp;&nbsp;> <A HREF="$k">$n</A><BR>" >>$DST/index.tmpl
62     done
63   done
64
65   # Generate the actual detailed documentation
66   path=`pwd`
67   cd /tmp/silcdoc.html
68   headers=`find . -name "silc*.h" |cut -d/  -f2 |cut -d.  -f1`
69   cd $path
70   for i in $headers
71   do
72     $ROBO /tmp/silcdoc.html/$i.h $DST/$i.html $TYPE
73
74     # Generate the TOC file
75     sh gen.sh $DST gen_toc.php $DST/$i.html $DST/$i.html
76     sh gen.sh $DST index.php $DST/$i.html $DST/$i.html
77
78     # Generate the details and the layour
79     files=`find $DST -name ""$i"_*.html"`
80     for k in $files
81     do
82       sh gen.sh $DST gen_detail.php $k $k
83       sh gen.sh $DST index.php $k $k
84     done
85
86     rm -f $DST/$i_index.tmpl
87   done
88
89   # Generate the index and TOC files from the DIRECTORY files
90   files=`find $SRC -name "DIRECTORY"`
91   for i in $files
92   do
93     # Get library name
94     name=`grep "@LIBRARY=" $i |cut -d=  -f2`
95     fname=`grep "@FILENAME=" $i |cut -d=  -f2`
96
97     # Generate links for this library
98     sed -e "/@LINKS@/ r $DST/$fname.links" -e s/@LINKS@//g $i >$DST/$fname
99
100     # Generate the TOC file for the library
101     sh gen.sh $DST gen_toc.php $DST/$fname $DST/$fname
102     sh gen.sh $DST index.php $DST/$fname $DST/$fname
103
104     # Generate the link for the top index.html for this library
105     echo "<LI><A HREF="$fname">$name</A>" >>$DST/index.html.tmp
106     rm -f $DST/$fname.links
107   done
108
109   # Generate the top index.html file
110   index=`find $SRC -name "LIBINDEX"`
111   curdate=`date`
112   sed -e "/@DATE@/s//$curdate/" -e "/@BODY@/ r $DST/index.html.tmp" -e s/@BODY@//g $index >$DST/index.html
113   sh gen.sh $DST gen_toc.php $DST/index.html $DST/index.html
114   sh gen.sh $DST index.php $DST/index.html $DST/index.html
115
116   rm -rf $DST/index.html.tmp
117   rm -rf /tmp/silcdoc.html
118 fi