]> gcc.gnu.org Git - gcc.git/blame - gcc/fixproto
Make more robust in two places.
[gcc.git] / gcc / fixproto
CommitLineData
7afe1b4d
PB
1#!/bin/sh
2#
3# SYNOPSIS
d7943819 4# fixproto TARGET-DIR SOURCE-DIR-ALL SOURCE-DIR-STD
7afe1b4d
PB
5#
6# COPYRIGHT
7# Copyright (C) 1993 Free Software Foundation, Inc.
8# This file is part of GNU CC.
9#
10# GNU CC is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2, or (at your option)
13# any later version.
14#
15# GNU CC is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with GNU CC; see the file COPYING. If not, write to
22# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23#
24# DESCRIPTION
25# Adjunct script for GNU CC to populate a directory with ANSI,
26# Posix.1, and C++ compatible header files.
27#
d7943819
PB
28# Each file found under SOURCE-DIR-ALL is analyzed and "fixed."
29# Only standard ANSI/POSIX files found under SOURCE-DIR-STD
30# are analyzed and "fixed."
7afe1b4d
PB
31# The SOURCE-DIRs are searched in order; a file found
32# under multiple SOURCE-DIRs is only handled for the first one.
33#
34# STRATEGY
35# Each include file is fed through cpp, and the scan-decls program
36# parses it, and emits any found function declarations.
aab7bd19 37# The fix-header program analyzes the scan-decls output,
7afe1b4d
PB
38# together with the original include file, and writes a "fixed"
39# include file, if needed.
40#
aab7bd19 41# The comment at the beginning of fix-header.c lists specifically
7afe1b4d
PB
42# what kind of changes are made.
43#
44# NOTE
45# Some file space will be wasted, because the original header
46# files are copied. An earlier version just included the original
47# by "reference", using GNU cpp's #include_next mechanism.
48# This is currently not done, partly because #include_next is
49# fragile (susceptible to version incompatibilties, and depends
50# and GCC-specific features), and partly for performance reasons.
51#
52# AUTHORS
53# Ron Guilmette (rfg@netcom.com) (original idea and code)
54# Per Bothner (bothner@cygnus.com) (major re-write)
55
56progname=$0
57progname=`basename $progname`
58original_dir=`pwd`
7afe1b4d 59CPP=${CPP-./cpp}
e9cd0b25 60
7afe1b4d
PB
61if [ `echo $1 | wc -w` = 0 ] ; then
62 echo $progname\: usage\: $progname target-dir \[ source-dir \.\.\. \]
63 exit 1
64fi
d7943819
PB
65
66std_files="ctype.h dirent.h errno.h curses.h fcntl.h grp.h locale.h math.h pwd.h setjmp.h signal.h stdio.h stdlib.h string.h sys/stat.h sys/times.h sys/resource.h sys/utsname.h sys/wait.h tar.h termios.h time.h unistd.h"
67
7afe1b4d 68rel_target_dir=$1
d7943819
PB
69# All files in $src_dir_all (normally same as $rel_target_dir) are
70# processed.
71src_dir_all=$2
72# In $src_dir_std (normally same as /usr/include), only the
73# "standard" ANSI/POSIX files listed in $std_files are processed.
74src_dir_std=$3
7afe1b4d
PB
75
76if [ `expr $rel_target_dir : '\(.\)'` != '/' ] ; then
77 abs_target_dir=$original_dir/$rel_target_dir
78else
79 abs_target_dir=$rel_target_dir
80fi
81
e9cd0b25
PB
82# Determine whether this system has symbolic links.
83if ln -s X $rel_target_dir/ShouldNotExist 2>/dev/null; then
84 rm -f $rel_target_dir/ShouldNotExist
85 LINKS=true
86elif ln -s X /tmp/ShouldNotExist 2>/dev/null; then
87 rm -f /tmp/ShouldNotExist
88 LINKS=true
89else
90 LINKS=false
91fi
92
7afe1b4d
PB
93if [ \! -d $abs_target_dir ] ; then
94 echo $progname\: creating directory $rel_target_dir
95 mkdir $abs_target_dir
96fi
97
98echo $progname\: populating \`$rel_target_dir\'
99
7afe1b4d
PB
100include_path=""
101
102if [ `echo $* | wc -w` != 0 ] ; then
d7943819 103 for rel_source_dir in $src_dir_all $src_dir_std; do
7afe1b4d
PB
104 if [ `expr $rel_source_dir : '\(.\)'` != '/' ] ; then
105 abs_source_dir=$original_dir/$rel_source_dir
106 else
107 abs_source_dir=$rel_source_dir
108 fi
109 include_path="$include_path -I$abs_source_dir"
110 done
111fi
112
e9cd0b25
PB
113required_stdlib_h="abort abs atexit atof atoi atol bsearch calloc exit free getenv labs malloc qsort rand realloc srand strtod strtol strtoul system"
114# "div ldiv", - ignored because these depend on div_t, ldiv_t
115# ignore these: "mblen mbstowcs mbstowc wcstombs wctomb"
116# Should perhaps also add NULL
117required_unistd_h="_exit access alarm chdir chown close ctermid cuserid dup dup2 execl execle execlp execv execve execvp fork fpathconf getcwd getegid geteuid getgid getgroups getlogin getpgrp getpid getppid getuid isatty link lseek pathconf pause pipe read rmdir setgid setpgid setsid setuid sleep sysconf tcgetpgrp tcsetpgrp ttyname unlink write"
118
7afe1b4d 119done_dirs=""
e9cd0b25 120echo "" >fixproto.list
7afe1b4d 121
d7943819
PB
122for code in ALL STD ; do
123
124 subdirs="."
125
126 case $code in
127 ALL)
128 rel_source_dir=$src_dir_all
e9cd0b25 129
d7943819
PB
130 dirs="."
131 levels=2
132 while $LINKS && test -n "$dirs" -a $levels -gt 0
133 do
134 levels=`expr $levels - 1`
135 newdirs=
136 for d in $dirs ; do
137 # Find all directories under $d, relative to $d, excluding $d itself.
138 subdirs="$subdirs "`cd $rel_source_dir/$d; find . -type d -print | \
139 sed -e '/^\.$/d' -e "s|^\./|${d}/|" -e 's|^\./||'`
140 links=
141 links=`cd $rel_source_dir; find $d/. -type l -print | \
e9cd0b25 142 sed -e "s|$d/./|$d/|" -e 's|^\./||'`
d7943819
PB
143 for link in $links --dummy-- ; do
144 test -d $rel_source_dir/$link/. && newdirs="$newdirs $link"
145 done
e9cd0b25 146 done
d7943819
PB
147 dirs="$newdirs"
148 subdirs="$subdirs $newdirs"
7afe1b4d 149 done
d7943819
PB
150 ;;
151 STD)
152 rel_source_dir=$src_dir_std
153 ;;
154 esac
155
156 if [ `expr $rel_source_dir : '\(.\)'` != '/' ] ; then
157 abs_source_dir=$original_dir/$rel_source_dir
158 else
159 abs_source_dir=$rel_source_dir
160 fi
161
162 if [ \! -d $abs_source_dir ] ; then
163 echo $progname\: warning\: no such directory\: \`$rel_source_dir\'
164 continue
165 fi
166
167 for rel_source_subdir in $subdirs; do
e9cd0b25 168
e9cd0b25
PB
169 abs_target_subdir=${abs_target_dir}/${rel_source_subdir}
170 if [ \! -d $abs_target_subdir ] ; then
171 mkdir $abs_target_subdir
172 fi
173 # Append "/"; remove initial "./". Hence "." -> "" and "sys" -> "sys/".
174 rel_source_prefix=`echo $rel_source_subdir | sed -e 's|$|/|' -e 's|^./||'`
7afe1b4d 175
d7943819
PB
176 case $code in
177 ALL)
178 # The 'sed' is in case the *.h matches nothing, which yields "*.h"
179 # which would then get re-globbed in the current directory. Sigh.
180 rel_source_files=`cd ${abs_source_dir}/${rel_source_subdir}; echo *.h | sed -e 's|[*].h|NONE|'`
181 ;;
182
183 STD)
184 files_to_check="$std_files"
185 rel_source_files=""
186
187 # Also process files #included by the $std_files.
188 while [ -n "${files_to_check}" ]
189 do
190 new_files_to_check=""
191 for file in $files_to_check ; do
192 case " $rel_source_files " in
193 *" ${file} "*)
194 # Already seen $file; nothing to do
195 ;;
196 *)
41b21cfc
PB
197 if test -f $src_dir_std/$file ; then
198 rel_dir=`echo $file | sed -n -e 's|^\(.*/\)[^/]*$|\1|p'`
199 # For #include "foo.h", that might be either "foo.h"
200 # or "${rel_dir}foo.h (or something bogus).
201 new_files_to_check="$new_files_to_check "`sed -n \
d7943819 202 -e 's@ @ @g' \
41b21cfc
PB
203 -e 's@^ *# *include *<\([^>]*\)>.*$@\1@p' -e \
204 's@^ *# *include *\"\([^\"]*\)\".*$@\1 '$rel_dir'\1@p'\
205 <$src_dir_std/$file`
206 rel_source_files="$rel_source_files $file"
207 fi
d7943819
PB
208 ;;
209 esac
210 done
211 files_to_check="$new_files_to_check"
212 done
213 rel_source_files="$rel_source_files"
214 ;;
215 esac
7afe1b4d 216
e9cd0b25
PB
217 for filename in $rel_source_files ; do
218 rel_source_file=${rel_source_prefix}${filename}
7afe1b4d
PB
219 abs_source_file=$abs_source_dir/$rel_source_file
220 abs_target_file=$abs_target_dir/$rel_source_file
221
e9cd0b25
PB
222 if test "$filename" = 'NONE' ; then
223 echo "(No *.h files in $abs_source_dir/$rel_source_subdir)"
7afe1b4d
PB
224 # If target file exists, check if was written while processing one
225 # of the earlier source directories; if so ignore it.
e9cd0b25
PB
226 elif test -f $abs_target_file -a -n "$done_dirs" \
227 && grep "$rel_source_file" fixproto.list >/dev/null
228 then true
7afe1b4d
PB
229 else
230 # echo doing $rel_source_file from $abs_source_dir
e9cd0b25
PB
231 required_list=
232 extra_check_list=
233 case $rel_source_file in
234 ctype.h)
235 required_list="isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper" ;;
236 dirent.h)
237 required_list="closedir opendir readdir rewinddir" ;;
238 errno.h)
239 extra_check_list="errno" ;;
240 curses.h)
241 required_list="box delwin endwin getcurx getcury initscr mvcur mvwprintw mvwscanw newwin overlay overwrite scroll subwin touchwin waddstr wclear wclrtobot wclrtoeol waddch wdelch wdeleteln werase wgetch wgetstr winsch winsertln wmove wprintw wrefresh wscanw wstandend wstandout" ;;
242 fcntl.h)
243 required_list="creat fcntl open" ;;
244 grp.h)
245 #Maybe also "getgrent fgetgrent setgrent endgrent" */
246 required_list="getgrgid getgrnam" ;;
247 limit.h)
248 required_list= /* Lots of macros */ ;;
249 locale.h)
250 required_list="localeconv setlocale" ;;
251 math.h)
252 required_list="acos asin atan atan2 ceil cos cosh exp fabs floor fmod frexp ldexp log10 log modf pow sin sinh sqrt tan tanh"
253 extra_check_list="HUGE_VAL" ;;
254 pwd.h)
255 required_list="getpwnam getpwuid" ;;
256 setjmp.h)
0663081e
RS
257 # Left out siglongjmp sigsetjmp - these depend on sigjmp_buf.
258 required_list="longjmp setjmp" ;;
e9cd0b25 259 signal.h)
e9cd0b25 260 # Left out signal() - its prototype is too complex for us!
fc51af1a
RS
261 # Also left out "sigaction sigaddset sigdelset sigemptyset
262 # sigfillset sigismember sigpending sigprocmask sigsuspend"
263 # because these need sigset_t or struct sigaction.
264 # Most systems that provide them will also declare them.
265 required_list="kill raise" ;;
e9cd0b25
PB
266 stdio.h)
267 required_list="clearerr fclose feof ferror fflush fgetc fgetpos fgets fopen fprintf fputc fputs fread freopen fscanf fseek fsetpos ftell fwrite getc getchar gets perror printf putc putchar puts remove rename rewind scanf setbuf setvbuf sprintf sscanf tmpfile tmpnam ungetc vfprintf vprintf vsprintf"
41b21cfc 268 if grep '[^_a-zA-Z0-9]_flsbuf' <$abs_source_file >/dev/null; then
e9cd0b25
PB
269 required_list="$required_list _flsbuf _filbuf"
270 fi
271 # Should perhaps also handle NULL, EOF, ... ?
272 ;;
273 stdlib.h)
274 required_list="$required_stdlib_h" ;;
275 string.h)
276 required_list="memchr memcmp memcpy memmove memset strcat strchr strcmp strcoll strcpy strcspn strerror strlen strncat strncmp" ;;
277# Should perhaps also add NULL and size_t
278 sys/stat.h)
279 required_list="chmod fstat mkdir mkfifo stat umask"
280 extra_check_list="S_ISDIR S_ISBLK S_ISCHR S_ISFIFO S_ISREG S_ISLNK S_IFDIR S_IFBLK S_IFCHR S_IFIFO S_IFREG S_IFLNK" ;;
281 sys/times.h)
282 required_list="times" ;;
283# "sys/types.h" add types (not in old g++-include)
e9cd0b25
PB
284 sys/utsname.h)
285 required_list="uname" ;;
286 sys/wait.h)
287 required_list="wait waitpid"
288 extra_check_list="WEXITSTATUS WIFEXITED WIFSIGNALED WIFSTOPPED WSTOPSIG WTERMSIG WNOHANG WNOTRACED" ;;
289 tar.h)
290 required_list= ;;
291 termios.h)
292 required_list="cfgetispeed cfgetospeed cfsetispeed cfsetospeed tcdrain tcflow tcflush tcgetattr tcsendbreak tcsetattr" ;;
293 time.h)
294 required_list="asctime clock ctime difftime gmtime localtime mktime strftime time tzset" ;;
295 unistd.h)
296 required_list="$required_unistd_h" ;;
297 esac
298 rm -f fixtmp.c fixtmp.i
299 echo "#include <${rel_source_file}>" >fixtmp.c
7afe1b4d
PB
300 for macro in ${required_list} ${extra_check_list}
301 do
e9cd0b25
PB
302 echo "#ifdef ${macro}" >>fixtmp.c
303 echo "__DEFINED_MACRO_${macro};" >>fixtmp.c
304 echo "#endif" >>fixtmp.c
7afe1b4d 305 done
e9cd0b25 306 if ${CPP} -D__STDC__ -D__cplusplus -D_POSIX_SOURCE $include_path fixtmp.c >fixtmp.i 2>/dev/null
7afe1b4d 307 then
aab7bd19 308 $original_dir/fix-header $rel_source_file $abs_source_file $abs_target_file "$required_list" <fixtmp.i
7afe1b4d 309 else
e9cd0b25 310 echo "${progname}: cpp could not parse ${abs_source_file} (ignored)"
7afe1b4d 311 fi
e9cd0b25 312 echo "${rel_source_file}" >>fixproto.list
7afe1b4d
PB
313 fi
314 done
e9cd0b25
PB
315 rm -f fixtmp.c fixtmp.i
316 done
7afe1b4d
PB
317 # check for broken assert.h that needs stdio.h
318 if test -f $abs_source_dir/assert.h -a \! -f $abs_target_dir/assert.h \
319 && grep 'stderr' $abs_source_dir/assert.h >/dev/null
320 then
321 if grep 'include.*stdio.h' $abs_source_dir/assert.h >/dev/null
322 then true
323 else
324 echo 'Fixing broken assert.h (needs stdio.h)'
325 cat $abs_source_dir/assert.h >$abs_target_dir/assert.h
326 echo '#include <stdio.h>' >>$abs_target_dir/assert.h
327 fi
328 fi
329 done_dirs="$done_dir $rel_source_dir"
d7943819 330done
7afe1b4d 331
e9cd0b25
PB
332# This might be more cleanly moved into the main loop, by adding
333# a <dummy> source directory at the end. FIXME!
7afe1b4d
PB
334for rel_source_file in unistd.h stdlib.h
335do
e9cd0b25 336 if grep "$rel_source_file" fixproto.list >/dev/null
7afe1b4d
PB
337 then true
338 else
339 echo Adding missing $rel_source_file
e9cd0b25 340 rel_source_ident=`echo $rel_source_file | tr ./ __`
7afe1b4d
PB
341 required_list=`eval echo '${required_'${rel_source_ident}'-}'`
342 cat >tmp.h <<EOF
343#ifndef ${rel_source_ident}
344#define ${rel_source_ident}
345#endif
346EOF
aab7bd19 347 $original_dir/fix-header $rel_source_file tmp.h $abs_target_dir/$rel_source_file "$required_list" </dev/null
7afe1b4d
PB
348 rm tmp.h
349 fi
350done
351exit 0
This page took 0.098131 seconds and 5 git commands to generate.