| 1 | #!/bin/sh
|
|---|
| 2 |
|
|---|
| 3 | # Runs doxygen and massages the output files.
|
|---|
| 4 | # Copyright (C) 2001, 2002 Free Software Foundation, Inc.
|
|---|
| 5 | #
|
|---|
| 6 | # Synopsis: run_doxygen --mode=[user|maint|man] v3srcdir v3builddir
|
|---|
| 7 | #
|
|---|
| 8 | # Originally hacked together by Phil Edwards <[email protected]>
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 | # We can check now that the version of doxygen is >= this variable.
|
|---|
| 12 | DOXYVER=1.2.15
|
|---|
| 13 | doxygen=
|
|---|
| 14 |
|
|---|
| 15 | find_doxygen() {
|
|---|
| 16 | v_required=`echo $DOXYVER | \
|
|---|
| 17 | awk -F. '{if(NF<3)$3=0;print ($1*100+$2)*100+$3}'`
|
|---|
| 18 | testing_version=
|
|---|
| 19 | # thank you goat book
|
|---|
| 20 | set `IFS=:; X="$PATH:/usr/local/bin:/bin:/usr/bin"; echo $X`
|
|---|
| 21 | for dir
|
|---|
| 22 | do
|
|---|
| 23 | # AC_EXEEXT could come in useful here
|
|---|
| 24 | maybedoxy="$dir/doxygen"
|
|---|
| 25 | test -f "$maybedoxy" && testing_version=`$maybedoxy --version`
|
|---|
| 26 | if test -n "$testing_version"; then
|
|---|
| 27 | v_found=`echo $testing_version | \
|
|---|
| 28 | awk -F. '{if(NF<3)$3=0;print ($1*100+$2)*100+$3}'`
|
|---|
| 29 | if test $v_found -ge $v_required; then
|
|---|
| 30 | doxygen="$maybedoxy"
|
|---|
| 31 | break
|
|---|
| 32 | fi
|
|---|
| 33 | fi
|
|---|
| 34 | done
|
|---|
| 35 | if test -z "$doxygen"; then
|
|---|
| 36 | echo run_doxygen error: Could not find Doxygen $DOXYVER in path. 1>&2
|
|---|
| 37 | print_usage
|
|---|
| 38 | fi
|
|---|
| 39 | }
|
|---|
| 40 |
|
|---|
| 41 | print_usage() {
|
|---|
| 42 | cat 1>&2 <<EOF
|
|---|
| 43 | Usage: run_doxygen --mode=MODE [<options>] <v3-src-dir> <v3-build-dir>
|
|---|
| 44 | MODE is one of:
|
|---|
| 45 | user Generate user-level HTML library documentation.
|
|---|
| 46 | maint Generate maintainers' HTML documentation (lots more;
|
|---|
| 47 | exposes non-public members, etc).
|
|---|
| 48 | man Generate user-level man pages.
|
|---|
| 49 |
|
|---|
| 50 | more options when i think of them
|
|---|
| 51 |
|
|---|
| 52 | Note: Requires Doxygen ${DOXYVER} or later; get it at
|
|---|
| 53 | ftp://ftp.stack.nl/pub/users/dimitri/doxygen-${DOXYVER}.src.tar.gz
|
|---|
| 54 |
|
|---|
| 55 | EOF
|
|---|
| 56 | exit 1
|
|---|
| 57 | }
|
|---|
| 58 |
|
|---|
| 59 | parse_options() {
|
|---|
| 60 | for o
|
|---|
| 61 | do
|
|---|
| 62 | # Blatantly ripped from autoconf, er, I mean, "gratefully standing
|
|---|
| 63 | # on the shoulders of those giants who have gone before us."
|
|---|
| 64 | case "$o" in
|
|---|
| 65 | -*=*) arg=`echo "$o" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
|
|---|
| 66 | *) arg= ;;
|
|---|
| 67 | esac
|
|---|
| 68 |
|
|---|
| 69 | case "$o" in
|
|---|
| 70 | --mode=*)
|
|---|
| 71 | mode=$arg ;;
|
|---|
| 72 | --mode | --help | -h)
|
|---|
| 73 | print_usage ;;
|
|---|
| 74 | *)
|
|---|
| 75 | # this turned out to be a mess, maybe change to --srcdir=, etc
|
|---|
| 76 | if test $srcdir = unset; then
|
|---|
| 77 | srcdir=$o
|
|---|
| 78 | elif test $outdir = unset; then
|
|---|
| 79 | builddir=${o}
|
|---|
| 80 | outdir=${o}/docs/doxygen
|
|---|
| 81 | else
|
|---|
| 82 | echo run_doxygen error: Too many arguments 1>&2
|
|---|
| 83 | exit 1
|
|---|
| 84 | fi
|
|---|
| 85 | ;;
|
|---|
| 86 | esac
|
|---|
| 87 | done
|
|---|
| 88 | }
|
|---|
| 89 |
|
|---|
| 90 |
|
|---|
| 91 | # script begins here
|
|---|
| 92 | mode=unset
|
|---|
| 93 | srcdir=unset
|
|---|
| 94 | outdir=unset
|
|---|
| 95 | do_html=no
|
|---|
| 96 | do_man=no
|
|---|
| 97 | enabled_sections=
|
|---|
| 98 | DATEtext=`date '+%Y-%m-%d'`
|
|---|
| 99 |
|
|---|
| 100 | parse_options $*
|
|---|
| 101 | find_doxygen
|
|---|
| 102 |
|
|---|
| 103 | if test $srcdir = unset || test $outdir = unset || test $mode = unset; then
|
|---|
| 104 | # this could be better
|
|---|
| 105 | echo run_doxygen error: You have not given enough information...! 1>&2
|
|---|
| 106 | print_usage
|
|---|
| 107 | fi
|
|---|
| 108 |
|
|---|
| 109 | case x"$mode" in
|
|---|
| 110 | xuser) do_html=yes
|
|---|
| 111 | LEVELtext='User'
|
|---|
| 112 | ;;
|
|---|
| 113 | xmaint) do_html=yes
|
|---|
| 114 | enabled_sections=maint
|
|---|
| 115 | LEVELtext='Maintainer'
|
|---|
| 116 | ;;
|
|---|
| 117 | xman) do_man=yes
|
|---|
| 118 | ;;
|
|---|
| 119 | *)
|
|---|
| 120 | echo run_doxygen error: $mode is an invalid mode 1>&2
|
|---|
| 121 | exit 1 ;;
|
|---|
| 122 | esac
|
|---|
| 123 |
|
|---|
| 124 | #rm -rf $outdir
|
|---|
| 125 | mkdir -p $outdir
|
|---|
| 126 | chmod u+w $outdir
|
|---|
| 127 |
|
|---|
| 128 | # work around a stupid doxygen bug
|
|---|
| 129 | test $do_man = yes && {
|
|---|
| 130 | mkdir -p $outdir/man/man3/ext
|
|---|
| 131 | chmod -R u+w $outdir/man/man3/ext
|
|---|
| 132 | }
|
|---|
| 133 |
|
|---|
| 134 | set -e
|
|---|
| 135 | (
|
|---|
| 136 | set -e
|
|---|
| 137 | cd $builddir
|
|---|
| 138 | sed -e "s=@outdir@=${outdir}=" \
|
|---|
| 139 | -e "s=@srcdir@=${srcdir}=" \
|
|---|
| 140 | -e "s=@html_output_dir@=html_${mode}=" \
|
|---|
| 141 | -e "s=@enabled_sections@=${enabled_sections}=" \
|
|---|
| 142 | -e "s=@do_html@=${do_html}=" \
|
|---|
| 143 | -e "s=@do_man@=${do_man}=" \
|
|---|
| 144 | ${srcdir}/docs/doxygen/user.cfg.in > ${outdir}/${mode}.cfg
|
|---|
| 145 | echo :: NOTE that this may take some time...
|
|---|
| 146 | echo $doxygen ${outdir}/${mode}.cfg
|
|---|
| 147 | $doxygen ${outdir}/${mode}.cfg
|
|---|
| 148 | echo :: Finished, exit code was $?
|
|---|
| 149 | )
|
|---|
| 150 | set +e
|
|---|
| 151 |
|
|---|
| 152 | test $do_html = yes && {
|
|---|
| 153 | sed -e "s=@LEVEL@=${LEVELtext}=" \
|
|---|
| 154 | -e "s=@DATE@=${DATEtext}=" \
|
|---|
| 155 | ${srcdir}/docs/doxygen/mainpage.html > ${outdir}/html_${mode}/index.html
|
|---|
| 156 | cd ${outdir}/html_${mode}
|
|---|
| 157 | sed -e 's=\(::[[:alnum:]_]*\)< .* >=\1=' annotated.html > annstrip.html
|
|---|
| 158 | mv annstrip.html annotated.html
|
|---|
| 159 | cp ${srcdir}/docs/doxygen/tables.html tables.html
|
|---|
| 160 | echo ::
|
|---|
| 161 | echo :: HTML pages begin with
|
|---|
| 162 | echo :: ${outdir}/html_${mode}/index.html
|
|---|
| 163 | }
|
|---|
| 164 |
|
|---|
| 165 | # Mess with the man pages. We don't need documentation of the internal
|
|---|
| 166 | # headers, since the man pages for those contain nothing useful anyhow. The
|
|---|
| 167 | # man pages for doxygen modules need to be renamed (or deleted). And the
|
|---|
| 168 | # generated #include lines need to be changed from the internal names to the
|
|---|
| 169 | # standard ones (e.g., "#include <stl_tempbuf.h>" -> "#include <memory>").
|
|---|
| 170 | test $do_man = yes && {
|
|---|
| 171 | echo ::
|
|---|
| 172 | echo :: Fixing up the man pages...
|
|---|
| 173 | cd $outdir/man/man3
|
|---|
| 174 |
|
|---|
| 175 | # here's the other end of the "stupid doxygen bug" mentioned above
|
|---|
| 176 | rm -rf ext
|
|---|
| 177 |
|
|---|
| 178 | # File names with embedded spaces (EVIL!) need to be....? renamed or removed?
|
|---|
| 179 | find . -name "* *" -print0 | xargs -0 rm # requires GNU tools
|
|---|
| 180 |
|
|---|
| 181 | # can leave SGIextensions.3 alone, it's an okay name
|
|---|
| 182 | mv s20_3_1_base.3 Intro_functors.3
|
|---|
| 183 | mv s20_3_2_arithmetic.3 Arithmetic_functors.3
|
|---|
| 184 | mv s20_3_3_comparisons.3 Comparison_functors.3
|
|---|
| 185 | mv s20_3_4_logical.3 Logical_functors.3
|
|---|
| 186 | mv s20_3_5_negators.3 Negation_functors.3
|
|---|
| 187 | mv s20_3_6_binder.3 Binder_functors.3
|
|---|
| 188 | mv s20_3_7_adaptors.3 Func_ptr_functors.3
|
|---|
| 189 | mv s20_3_8_memadaptors.3 Member_ptr_functors.3
|
|---|
| 190 | mv std.3 Namespace_Std.3
|
|---|
| 191 | mv iterator_tags.3 Iterator_types.3
|
|---|
| 192 |
|
|---|
| 193 | # man pages are for functions/types/other entities, not source files
|
|---|
| 194 | # directly. who the heck would type "man foo.h" anyhow?
|
|---|
| 195 | find . -name "[a-z]*" -a ! -name "std_*" -print | xargs rm
|
|---|
| 196 | rm -f *.h.3 *config* *.cc.3 *.tcc.3
|
|---|
| 197 | rm -f *_t.3 # workaround doxygen template parsing bug for now
|
|---|
| 198 | # this is used to examine what we would have deleted, for debugging
|
|---|
| 199 | #mkdir trash
|
|---|
| 200 | #find . -name "[a-z]*" -a ! -name "std_*" -print | xargs -i mv {} trash
|
|---|
| 201 | #mv *.h.3 *config* *.cc.3 *.tcc.3 *_t.3 trash
|
|---|
| 202 |
|
|---|
| 203 | # Standardize the displayed header names. If anyone who knows perl cares
|
|---|
| 204 | # enough to rewrite all this, feel free. This only gets run once a century,
|
|---|
| 205 | # and I'm off getting coffee then anyhow, so I didn't care enough to make
|
|---|
| 206 | # this super-fast.
|
|---|
| 207 | g++ ${srcdir}/docs/doxygen/stdheader.cc -o ./stdheader
|
|---|
| 208 | problematic=`egrep -l '#include <.*_.*>' [a-z]*.3`
|
|---|
| 209 | for f in $problematic; do
|
|---|
| 210 | # this is also slow, but safe and easy to debug
|
|---|
| 211 | oldh=`sed -n '/fC#include </s/.*<\(.*\)>.*/\1/p' $f`
|
|---|
| 212 | newh=`echo $oldh | ./stdheader`
|
|---|
| 213 | sed "s=${oldh}=${newh}=" $f > TEMP
|
|---|
| 214 | mv TEMP $f
|
|---|
| 215 | done
|
|---|
| 216 | rm stdheader
|
|---|
| 217 |
|
|---|
| 218 | # Some of the pages for generated modules have text that confuses certain
|
|---|
| 219 | # implementations of man(1), e.g., Linux's. We need to have another top-level
|
|---|
| 220 | # *roff tag to /stop/ the .SH NAME entry.
|
|---|
| 221 | #problematic=`egrep --files-without-match '^\.SH SYNOPSIS' [A-Z]*.3`
|
|---|
| 222 | problematic='Containers.3 Sequences.3 Assoc_containers.3 Allocators.3
|
|---|
| 223 | Iterator_types.3'
|
|---|
| 224 | for f in $problematic; do
|
|---|
| 225 | sed '/^\.SH NAME/{
|
|---|
| 226 | n
|
|---|
| 227 | a\
|
|---|
| 228 | \
|
|---|
| 229 | .SH SYNOPSIS
|
|---|
| 230 | }' $f > TEMP
|
|---|
| 231 | mv TEMP $f
|
|---|
| 232 | done
|
|---|
| 233 |
|
|---|
| 234 | cp ${srcdir}/docs/doxygen/Intro.3 .
|
|---|
| 235 |
|
|---|
| 236 | echo ::
|
|---|
| 237 | echo :: Man pages in ${outdir}/man
|
|---|
| 238 | }
|
|---|
| 239 |
|
|---|
| 240 | # all done
|
|---|
| 241 | echo ::
|
|---|
| 242 |
|
|---|
| 243 | exit 0
|
|---|
| 244 |
|
|---|
| 245 | # vim:ts=4:et:
|
|---|
| 246 |
|
|---|