source: trunk/src/gcc/libstdc++-v3/docs/doxygen/run_doxygen@ 70

Last change on this file since 70 was 2, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 7.1 KB
Line 
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.
12DOXYVER=1.2.15
13doxygen=
14
15find_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
41print_usage() {
42 cat 1>&2 <<EOF
43Usage: 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
52Note: Requires Doxygen ${DOXYVER} or later; get it at
53 ftp://ftp.stack.nl/pub/users/dimitri/doxygen-${DOXYVER}.src.tar.gz
54
55EOF
56 exit 1
57}
58
59parse_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
92mode=unset
93srcdir=unset
94outdir=unset
95do_html=no
96do_man=no
97enabled_sections=
98DATEtext=`date '+%Y-%m-%d'`
99
100parse_options $*
101find_doxygen
102
103if 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
107fi
108
109case 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 ;;
122esac
123
124#rm -rf $outdir
125mkdir -p $outdir
126chmod u+w $outdir
127
128# work around a stupid doxygen bug
129test $do_man = yes && {
130 mkdir -p $outdir/man/man3/ext
131 chmod -R u+w $outdir/man/man3/ext
132}
133
134set -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)
150set +e
151
152test $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:]_]*\)&lt; .* &gt;=\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>").
170test $do_man = yes && {
171echo ::
172echo :: Fixing up the man pages...
173cd $outdir/man/man3
174
175# here's the other end of the "stupid doxygen bug" mentioned above
176rm -rf ext
177
178# File names with embedded spaces (EVIL!) need to be....? renamed or removed?
179find . -name "* *" -print0 | xargs -0 rm # requires GNU tools
180
181# can leave SGIextensions.3 alone, it's an okay name
182mv s20_3_1_base.3 Intro_functors.3
183mv s20_3_2_arithmetic.3 Arithmetic_functors.3
184mv s20_3_3_comparisons.3 Comparison_functors.3
185mv s20_3_4_logical.3 Logical_functors.3
186mv s20_3_5_negators.3 Negation_functors.3
187mv s20_3_6_binder.3 Binder_functors.3
188mv s20_3_7_adaptors.3 Func_ptr_functors.3
189mv s20_3_8_memadaptors.3 Member_ptr_functors.3
190mv std.3 Namespace_Std.3
191mv 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?
195find . -name "[a-z]*" -a ! -name "std_*" -print | xargs rm
196rm -f *.h.3 *config* *.cc.3 *.tcc.3
197rm -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.
207g++ ${srcdir}/docs/doxygen/stdheader.cc -o ./stdheader
208problematic=`egrep -l '#include <.*_.*>' [a-z]*.3`
209for 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
215done
216rm 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`
222problematic='Containers.3 Sequences.3 Assoc_containers.3 Allocators.3
223 Iterator_types.3'
224for f in $problematic; do
225 sed '/^\.SH NAME/{
226n
227a\
228\
229.SH SYNOPSIS
230 }' $f > TEMP
231 mv TEMP $f
232done
233
234cp ${srcdir}/docs/doxygen/Intro.3 .
235
236echo ::
237echo :: Man pages in ${outdir}/man
238}
239
240# all done
241echo ::
242
243exit 0
244
245# vim:ts=4:et:
246
Note: See TracBrowser for help on using the repository browser.