Intro.3: Update with new (proper) names.
[gcc.git] / libstdc++-v3 / docs / doxygen / run_doxygen
1 #!/bin/sh
2
3 # Runs doxygen and massages the output files.
4 # Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
5 #
6 # Synopsis: run_doxygen --mode=[user|maint|man] v3srcdir v3builddir
7 #
8 # Originally hacked together by Phil Edwards <pme@gcc.gnu.org>
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 # The following bit of line noise changes annoying
158 # std::foo < typename _Ugly1, typename _Ugly2, .... _DefaultUgly17 >
159 # to user-friendly
160 # std::foo
161 # in the major "Compound List" page.
162 sed -e 's=\(::[[:alnum:]_]*\)&lt; .* &gt;=\1=' annotated.html > annstrip.html
163 mv annstrip.html annotated.html
164 cp ${srcdir}/docs/doxygen/tables.html tables.html
165 echo ::
166 echo :: HTML pages begin with
167 echo :: ${outdir}/html_${mode}/index.html
168 }
169
170 # Mess with the man pages. We don't need documentation of the internal
171 # headers, since the man pages for those contain nothing useful anyhow. The
172 # man pages for doxygen modules need to be renamed (or deleted). And the
173 # generated #include lines need to be changed from the internal names to the
174 # standard ones (e.g., "#include <stl_tempbuf.h>" -> "#include <memory>").
175 test $do_man = yes && {
176 echo ::
177 echo :: Fixing up the man pages...
178 cd $outdir/man/man3
179
180 # here's the other end of the "stupid doxygen bug" mentioned above
181 rm -rf ext
182
183 # File names with embedded spaces (EVIL!) need to be....? renamed or removed?
184 find . -name "* *" -print0 | xargs -0 rm # requires GNU tools
185
186 # can leave SGIextensions.3 alone, it's an okay name
187 mv s20_3_1_base.3 Intro_functors.3
188 mv s20_3_2_arithmetic.3 Arithmetic_functors.3
189 mv s20_3_3_comparisons.3 Comparison_functors.3
190 mv s20_3_4_logical.3 Logical_functors.3
191 mv s20_3_5_negators.3 Negation_functors.3
192 mv s20_3_6_binder.3 Binder_functors.3
193 mv s20_3_7_adaptors.3 Func_ptr_functors.3
194 mv s20_3_8_memadaptors.3 Member_ptr_functors.3
195 mv std.3 Namespace_Std.3
196 mv iterator_tags.3 Iterator_types.3
197
198 # man pages are for functions/types/other entities, not source files
199 # directly. who the heck would type "man foo.h" anyhow?
200 find . -name "[a-z]*" -a ! -name "std_*" -print | xargs rm
201 rm -f *.h.3 *config* *.cc.3 *.tcc.3
202 rm -f *_t.3 # workaround doxygen template parsing bug for now
203 # this is used to examine what we would have deleted, for debugging
204 #mkdir trash
205 #find . -name "[a-z]*" -a ! -name "std_*" -print | xargs -i mv {} trash
206 #mv *.h.3 *config* *.cc.3 *.tcc.3 *_t.3 trash
207
208 # Standardize the displayed header names. If anyone who knows perl cares
209 # enough to rewrite all this, feel free. This only gets run once a century,
210 # and I'm off getting coffee then anyhow, so I didn't care enough to make
211 # this super-fast.
212 g++ ${srcdir}/docs/doxygen/stdheader.cc -o ./stdheader
213 problematic=`egrep -l '#include <.*_.*>' [a-z]*.3`
214 for f in $problematic; do
215 # this is also slow, but safe and easy to debug
216 oldh=`sed -n '/fC#include </s/.*<\(.*\)>.*/\1/p' $f`
217 newh=`echo $oldh | ./stdheader`
218 sed "s=${oldh}=${newh}=" $f > TEMP
219 mv TEMP $f
220 done
221 rm stdheader
222
223 # Some of the pages for generated modules have text that confuses certain
224 # implementations of man(1), e.g., Linux's. We need to have another top-level
225 # *roff tag to /stop/ the .SH NAME entry.
226 #problematic=`egrep --files-without-match '^\.SH SYNOPSIS' [A-Z]*.3`
227 problematic='Containers.3 Sequences.3 Assoc_containers.3 Allocators.3
228 Iterator_types.3'
229 for f in $problematic; do
230 sed '/^\.SH NAME/{
231 n
232 a\
233 \
234 .SH SYNOPSIS
235 }' $f > TEMP
236 mv TEMP $f
237 done
238
239 # Also, break this (generated) line up. It's ugly as sin.
240 problematic=`grep -l '[^^]Definition at line' *.3`
241 for f in $problematic; do
242 sed 's/Definition at line/\
243 .PP\
244 &/' $f > TEMP
245 mv TEMP $f
246 done
247
248 cp ${srcdir}/docs/doxygen/Intro.3 C++Intro.3
249
250 # Why didn't I do this at the start? Were rabid weasels eating my brain?
251 # Who the fsck would "man std_vector" when the class isn't named that?
252 for f in std_*; do
253 newname=`echo $f | sed 's/^std_/std::/'`
254 mv $f $newname
255 done
256 for f in __gnu_cxx_*; do
257 newname=`echo $f | sed 's/^__gnu_cxx_/__gnu_cxx::/'`
258 mv $f $newname
259 done
260 for f in *__policy_*; do
261 newname=`echo $f | sed 's/__policy_/__policy::/'`
262 mv $f $newname
263 done
264
265 # Also, for some reason, typedefs don't get their own man pages. Sigh.
266 for f in ios streambuf istream ostream iostream stringbuf \
267 istringstream ostringstream stringstream filebuf ifstream \
268 ofstream fstream string;
269 do
270 echo ".so man3/std::basic_${f}.3" > std::${f}.3
271 echo ".so man3/std::basic_${f}.3" > std::w${f}.3
272 done
273
274 echo ::
275 echo :: Man pages in ${outdir}/man
276 }
277
278 # all done
279 echo ::
280
281 exit 0
282
283 # vim:ts=4:et: