mainpage.html: Doxygen logo is now a PNG file.
[official-gcc.git] / libstdc++-v3 / docs / doxygen / run_doxygen
blob20b3447ab807f88f381fed2879c102e4185c22e1
1 #!/bin/sh
3 # Runs doxygen and massages the output files.
4 # Copyright (C) 2001, 2002 Free Software Foundation, Inc.
6 # Synopsis: run_doxygen --mode=[user|maint|man] v3srcdir v3builddir
8 # Originally hacked together by Phil Edwards <pme@gcc.gnu.org>
11 # We can check now that the version of doxygen is >= this variable.
12 DOXYVER=1.2.15
13 doxygen=
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
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
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
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.
50 more options when i think of them
52 Note: Requires Doxygen ${DOXYVER} or later; get it at
53 ftp://ftp.stack.nl/pub/users/dimitri/doxygen-${DOXYVER}.src.tar.gz
55 EOF
56 exit 1
59 parse_options() {
60 for o
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
69 case "$o" in
70 --mode=*)
71 mode=$arg ;;
72 --mode | --help | -h)
73 print_usage ;;
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
86 esac
87 done
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'`
100 parse_options $*
101 find_doxygen
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
109 case x"$mode" in
110 xuser) do_html=yes
111 LEVELtext='User'
113 xmaint) do_html=yes
114 enabled_sections=maint
115 LEVELtext='Maintainer'
117 xman) do_man=yes
120 echo run_doxygen error: $mode is an invalid mode 1>&2
121 exit 1 ;;
122 esac
124 #rm -rf $outdir
125 mkdir -p $outdir
126 chmod u+w $outdir
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
134 set -e
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 $?
150 set +e
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 cp ${srcdir}/docs/doxygen/tables.html ${outdir}/html_${mode}/tables.html
157 echo ::
158 echo :: HTML pages begin with
159 echo :: ${outdir}/html_${mode}/index.html
162 # Mess with the man pages. We don't need documentation of the internal
163 # headers, since the man pages for those contain nothing useful anyhow. The
164 # man pages for doxygen modules need to be renamed (or deleted). And the
165 # generated #include lines need to be changed from the internal names to the
166 # standard ones (e.g., "#include <stl_tempbuf.h>" -> "#include <memory>").
167 test $do_man = yes && {
168 echo ::
169 echo :: Fixing up the man pages...
170 cd $outdir/man/man3
172 # here's the other end of the "stupid doxygen bug" mentioned above
173 rm -rf ext
175 # File names with embedded spaces (EVIL!) need to be....? renamed or removed?
176 find . -name "* *" -print0 | xargs -0 rm # requires GNU tools
178 # can leave SGIextensions.3 alone, it's an okay name
179 mv s20_3_1_base.3 Intro_functors.3
180 mv s20_3_2_arithmetic.3 Arithmetic_functors.3
181 mv s20_3_3_comparisons.3 Comparison_functors.3
182 mv s20_3_4_logical.3 Logical_functors.3
183 mv s20_3_5_negators.3 Negation_functors.3
184 mv s20_3_6_binder.3 Binder_functors.3
185 mv s20_3_7_adaptors.3 Func_ptr_functors.3
186 mv s20_3_8_memadaptors.3 Member_ptr_functors.3
187 mv std.3 Namespace_Std.3
188 mv iterator_tags.3 Iterator_types.3
190 # man pages are for functions/types/other entities, not source files
191 # directly. who the heck would type "man foo.h" anyhow?
192 find . -name "[a-z]*" -a ! -name "std_*" -print | xargs rm
193 rm -f *.h.3 *config* *.cc.3 *.tcc.3
194 rm -f *_t.3 # workaround doxygen template parsing bug for now
195 # this is used to examine what we would have deleted, for debugging
196 #mkdir trash
197 #find . -name "[a-z]*" -a ! -name "std_*" -print | xargs -i mv {} trash
198 #mv *.h.3 *config* *.cc.3 *.tcc.3 *_t.3 trash
200 # Standardize the displayed header names. If anyone who knows perl cares
201 # enough to rewrite all this, feel free. This only gets run once a century,
202 # and I'm off getting coffee then anyhow, so I didn't care enough to make
203 # this super-fast.
204 g++ ${srcdir}/docs/doxygen/stdheader.cc -o ./stdheader
205 problematic=`egrep -l '#include <.*_.*>' [a-z]*.3`
206 for f in $problematic; do
207 # this is also slow, but safe and easy to debug
208 oldh=`sed -n '/#include </s/.*<\(.*\)>.*/\1/p' $f`
209 newh=`echo $oldh | ./stdheader`
210 sed "s=${oldh}=${newh}=" $f > TEMP
211 mv TEMP $f
212 done
213 rm stdheader
215 # Some of the pages for generated modules have text that confuses certain
216 # implementations of man(1), e.g., Linux's. We need to have another top-level
217 # *roff tag to /stop/ the .SH NAME entry.
218 #problematic=`egrep --files-without-match '^\.SH SYNOPSIS' [A-Z]*.3`
219 problematic='Containers.3 Sequences.3 Assoc_containers.3 Allocators.3'
220 for f in $problematic; do
221 sed '/^\.SH NAME/{
225 .SH SYNOPSIS
226 }' $f > TEMP
227 mv TEMP $f
228 done
230 cp ${srcdir}/docs/doxygen/Intro.3 .
232 echo ::
233 echo :: Man pages in ${outdir}/man
236 # all done
237 echo ::
239 exit 0
241 # vim:ts=4:et: