d245ba09833619e81b7b3b1619cfff67fef8f1ae
[platform/upstream/automake.git] / lib / ylwrap
1 #! /bin/sh
2 # ylwrap - wrapper for lex/yacc invocations.
3
4 scriptversion=2012-07-13.14; # UTC
5
6 # Copyright (C) 1996-2012 Free Software Foundation, Inc.
7 #
8 # Written by Tom Tromey <tromey@cygnus.com>.
9 #
10 # This program 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 # This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
22
23 # As a special exception to the GNU General Public License, if you
24 # distribute this file as part of a program that contains a
25 # configuration script generated by Autoconf, you may include it under
26 # the same distribution terms that you use for the rest of that program.
27
28 # This file is maintained in Automake, please report
29 # bugs to <bug-automake@gnu.org> or send patches to
30 # <automake-patches@gnu.org>.
31
32 get_dirname ()
33 {
34   case $1 in
35     */*|*\\*) printf '%s\n' "$1" | sed -e 's|\([\\/]\)[^\\/]*$|\1|';;
36     # Otherwise,  we want the empty string (not ".").
37   esac
38 }
39
40 # guard FILE
41 # ----------
42 # The CPP macro used to guard inclusion of FILE.
43 guard()
44 {
45   printf '%s\n' "$from" \
46     | sed \
47         -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'\
48         -e 's/[^ABCDEFGHIJKLMNOPQRSTUVWXYZ]/_/g'
49 }
50
51 # quote_for_sed [STRING]
52 # ----------------------
53 # Return STRING (or stdin) quoted to be used as a sed pattern.
54 quote_for_sed ()
55 {
56   case $# in
57     0) cat;;
58     1) printf '%s\n' "$1";;
59   esac \
60     | sed -e 's|[][\\.*]|\\&|g'
61 }
62
63 case "$1" in
64   '')
65     echo "$0: No files given.  Try '$0 --help' for more information." 1>&2
66     exit 1
67     ;;
68   --basedir)
69     basedir=$2
70     shift 2
71     ;;
72   -h|--h*)
73     cat <<\EOF
74 Usage: ylwrap [--help|--version] INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]...
75
76 Wrapper for lex/yacc invocations, renaming files as desired.
77
78   INPUT is the input file
79   OUTPUT is one file PROG generates
80   DESIRED is the file we actually want instead of OUTPUT
81   PROGRAM is program to run
82   ARGS are passed to PROG
83
84 Any number of OUTPUT,DESIRED pairs may be used.
85
86 Report bugs to <bug-automake@gnu.org>.
87 EOF
88     exit $?
89     ;;
90   -v|--v*)
91     echo "ylwrap $scriptversion"
92     exit $?
93     ;;
94 esac
95
96
97 # The input.
98 input="$1"
99 shift
100 # We'll later need for a correct munging of "#line" directives.
101 input_sub_rx=`get_dirname "$input" | quote_for_sed`
102 case "$input" in
103   [\\/]* | ?:[\\/]*)
104     # Absolute path; do nothing.
105     ;;
106   *)
107     # Relative path.  Make it absolute.
108     input="`pwd`/$input"
109     ;;
110 esac
111
112 # Since DOS filename conventions don't allow two dots,
113 # the DOS version of Bison writes out y_tab.c instead of y.tab.c
114 # and y_tab.h instead of y.tab.h. Test to see if this is the case.
115 y_tab_nodot=false
116 if test -f y_tab.c || test -f y_tab.h; then
117   y_tab_nodot=true
118 fi
119
120 # The parser itself, the first file, is the destination of the .y.c
121 # rule in the Makefile.
122 parser=$1
123 # The list of file to rename: FROM TO...
124 pairlist=
125 # A sed program to s/FROM/TO/g for all the FROM/TO so that, for
126 # instance, we rename #include "y.tab.h" into #include "parse.h"
127 # during the conversion from y.tab.c to parse.c.
128 rename_sed=
129 while test "$#" -ne 0; do
130   if test "$1" = "--"; then
131     shift
132     break
133   fi
134   from=$1
135   # Handle y_tab.c and y_tab.h output by DOS
136   if $y_tab_nodot; then
137     case $from in
138       "y.tab.c") from=y_tab.c;;
139       "y.tab.h") from=y_tab.h;;
140     esac
141   fi
142   shift
143   to=$1
144   shift
145   pairlist="$pairlist $from $to"
146   rename_sed="${rename_sed}s|"`quote_for_sed "$from"`"|$to|g;"
147 done
148
149 # The program to run.
150 prog="$1"
151 shift
152 # Make any relative path in $prog absolute.
153 case "$prog" in
154   [\\/]* | ?:[\\/]*) ;;
155   *[\\/]*) prog="`pwd`/$prog" ;;
156 esac
157
158 # FIXME: add hostname here for parallel makes that run commands on
159 # other machines.  But that might take us over the 14-char limit.
160 dirname=ylwrap$$
161 do_exit="cd '`pwd`' && rm -rf $dirname > /dev/null 2>&1;"' (exit $ret); exit $ret'
162 trap "ret=129; $do_exit" 1
163 trap "ret=130; $do_exit" 2
164 trap "ret=141; $do_exit" 13
165 trap "ret=143; $do_exit" 15
166 mkdir $dirname || exit 1
167
168 cd $dirname
169
170 case $# in
171   0) "$prog" "$input" ;;
172   *) "$prog" "$@" "$input" ;;
173 esac
174 ret=$?
175
176 if test $ret -eq 0; then
177   set X $pairlist
178   shift
179
180   input_rx=`get_dirname "$input" | quote_for_sed`
181
182   while test "$#" -ne 0; do
183     from=$1
184     to=$2
185     if test -f "$from"; then
186       # If $2 is an absolute path name, then just use that,
187       # otherwise prepend '../'.
188       case $to in
189         [\\/]* | ?:[\\/]*) target=$to;;
190         *) target="../$to";;
191       esac
192
193       # Do not overwrite unchanged header files to avoid useless
194       # recompilations.  Always update the parser itself: it is the
195       # destination of the .y.c rule in the Makefile.  Divert the
196       # output of all other files to a temporary file so we can
197       # compare them to existing versions.
198       if test $from != $parser; then
199         realtarget="$target"
200         target=tmp-`printf '%s\n' "$target" | sed s/.*[\\/]//g`
201       fi
202
203       # Munge "#line" or "#" directives.  Don't let the resulting
204       # debug information point at an absolute srcdir.  Use the real
205       # output file name, not yy.lex.c for instance.  Adjust the
206       # include guards too.
207       FROM=`guard "$from"`
208       TARGET=`guard "$to"`
209       sed -e "/^#/!b" -e "s|$input_rx|$input_sub_rx|" -e "$rename_sed" \
210           -e "s|$FROM|$TARGET|" "$from" >"$target" || ret=$?
211
212       # Check whether files must be updated.
213       if test "$from" != "$parser"; then
214         if test -f "$realtarget" && cmp -s "$realtarget" "$target"; then
215           echo "$to is unchanged"
216           rm -f "$target"
217         else
218           echo "updating $to"
219           mv -f "$target" "$realtarget"
220         fi
221       fi
222     else
223       # A missing file is only an error for the parser.  This is a
224       # blatant hack to let us support using "yacc -d".  If -d is not
225       # specified, don't fail when the header file is "missing".
226       if test "$from" = "$parser"; then
227         ret=1
228       fi
229     fi
230     shift
231     shift
232   done
233 else
234   ret=$?
235 fi
236
237 # Remove the directory.
238 cd ..
239 rm -rf $dirname
240
241 exit $ret
242
243 # Local Variables:
244 # mode: shell-script
245 # sh-indentation: 2
246 # eval: (add-hook 'write-file-hooks 'time-stamp)
247 # time-stamp-start: "scriptversion="
248 # time-stamp-format: "%:y-%02m-%02d.%02H"
249 # time-stamp-time-zone: "UTC"
250 # time-stamp-end: "; # UTC"
251 # End: