Home | History | Annotate | Line # | Download | only in dist
ylwrap revision 1.1
      1  1.1  mrg #! /bin/sh
      2  1.1  mrg # ylwrap - wrapper for lex/yacc invocations.
      3  1.1  mrg 
      4  1.1  mrg scriptversion=2009-04-28.21; # UTC
      5  1.1  mrg 
      6  1.1  mrg # Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004, 2005,
      7  1.1  mrg # 2007, 2009 Free Software Foundation, Inc.
      8  1.1  mrg #
      9  1.1  mrg # Written by Tom Tromey <tromey (at] cygnus.com>.
     10  1.1  mrg #
     11  1.1  mrg # This program is free software; you can redistribute it and/or modify
     12  1.1  mrg # it under the terms of the GNU General Public License as published by
     13  1.1  mrg # the Free Software Foundation; either version 2, or (at your option)
     14  1.1  mrg # any later version.
     15  1.1  mrg #
     16  1.1  mrg # This program is distributed in the hope that it will be useful,
     17  1.1  mrg # but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  1.1  mrg # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     19  1.1  mrg # GNU General Public License for more details.
     20  1.1  mrg #
     21  1.1  mrg # You should have received a copy of the GNU General Public License
     22  1.1  mrg # along with this program.  If not, see <http://www.gnu.org/licenses/>.
     23  1.1  mrg 
     24  1.1  mrg # As a special exception to the GNU General Public License, if you
     25  1.1  mrg # distribute this file as part of a program that contains a
     26  1.1  mrg # configuration script generated by Autoconf, you may include it under
     27  1.1  mrg # the same distribution terms that you use for the rest of that program.
     28  1.1  mrg 
     29  1.1  mrg # This file is maintained in Automake, please report
     30  1.1  mrg # bugs to <bug-automake (at] gnu.org> or send patches to
     31  1.1  mrg # <automake-patches (at] gnu.org>.
     32  1.1  mrg 
     33  1.1  mrg case "$1" in
     34  1.1  mrg   '')
     35  1.1  mrg     echo "$0: No files given.  Try \`$0 --help' for more information." 1>&2
     36  1.1  mrg     exit 1
     37  1.1  mrg     ;;
     38  1.1  mrg   --basedir)
     39  1.1  mrg     basedir=$2
     40  1.1  mrg     shift 2
     41  1.1  mrg     ;;
     42  1.1  mrg   -h|--h*)
     43  1.1  mrg     cat <<\EOF
     44  1.1  mrg Usage: ylwrap [--help|--version] INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]...
     45  1.1  mrg 
     46  1.1  mrg Wrapper for lex/yacc invocations, renaming files as desired.
     47  1.1  mrg 
     48  1.1  mrg   INPUT is the input file
     49  1.1  mrg   OUTPUT is one file PROG generates
     50  1.1  mrg   DESIRED is the file we actually want instead of OUTPUT
     51  1.1  mrg   PROGRAM is program to run
     52  1.1  mrg   ARGS are passed to PROG
     53  1.1  mrg 
     54  1.1  mrg Any number of OUTPUT,DESIRED pairs may be used.
     55  1.1  mrg 
     56  1.1  mrg Report bugs to <bug-automake (at] gnu.org>.
     57  1.1  mrg EOF
     58  1.1  mrg     exit $?
     59  1.1  mrg     ;;
     60  1.1  mrg   -v|--v*)
     61  1.1  mrg     echo "ylwrap $scriptversion"
     62  1.1  mrg     exit $?
     63  1.1  mrg     ;;
     64  1.1  mrg esac
     65  1.1  mrg 
     66  1.1  mrg 
     67  1.1  mrg # The input.
     68  1.1  mrg input="$1"
     69  1.1  mrg shift
     70  1.1  mrg case "$input" in
     71  1.1  mrg   [\\/]* | ?:[\\/]*)
     72  1.1  mrg     # Absolute path; do nothing.
     73  1.1  mrg     ;;
     74  1.1  mrg   *)
     75  1.1  mrg     # Relative path.  Make it absolute.
     76  1.1  mrg     input="`pwd`/$input"
     77  1.1  mrg     ;;
     78  1.1  mrg esac
     79  1.1  mrg 
     80  1.1  mrg pairlist=
     81  1.1  mrg while test "$#" -ne 0; do
     82  1.1  mrg   if test "$1" = "--"; then
     83  1.1  mrg     shift
     84  1.1  mrg     break
     85  1.1  mrg   fi
     86  1.1  mrg   pairlist="$pairlist $1"
     87  1.1  mrg   shift
     88  1.1  mrg done
     89  1.1  mrg 
     90  1.1  mrg # The program to run.
     91  1.1  mrg prog="$1"
     92  1.1  mrg shift
     93  1.1  mrg # Make any relative path in $prog absolute.
     94  1.1  mrg case "$prog" in
     95  1.1  mrg   [\\/]* | ?:[\\/]*) ;;
     96  1.1  mrg   *[\\/]*) prog="`pwd`/$prog" ;;
     97  1.1  mrg esac
     98  1.1  mrg 
     99  1.1  mrg # FIXME: add hostname here for parallel makes that run commands on
    100  1.1  mrg # other machines.  But that might take us over the 14-char limit.
    101  1.1  mrg dirname=ylwrap$$
    102  1.1  mrg trap "cd '`pwd`'; rm -rf $dirname > /dev/null 2>&1" 1 2 3 15
    103  1.1  mrg mkdir $dirname || exit 1
    104  1.1  mrg 
    105  1.1  mrg cd $dirname
    106  1.1  mrg 
    107  1.1  mrg case $# in
    108  1.1  mrg   0) "$prog" "$input" ;;
    109  1.1  mrg   *) "$prog" "$@" "$input" ;;
    110  1.1  mrg esac
    111  1.1  mrg ret=$?
    112  1.1  mrg 
    113  1.1  mrg if test $ret -eq 0; then
    114  1.1  mrg   set X $pairlist
    115  1.1  mrg   shift
    116  1.1  mrg   first=yes
    117  1.1  mrg   # Since DOS filename conventions don't allow two dots,
    118  1.1  mrg   # the DOS version of Bison writes out y_tab.c instead of y.tab.c
    119  1.1  mrg   # and y_tab.h instead of y.tab.h. Test to see if this is the case.
    120  1.1  mrg   y_tab_nodot="no"
    121  1.1  mrg   if test -f y_tab.c || test -f y_tab.h; then
    122  1.1  mrg     y_tab_nodot="yes"
    123  1.1  mrg   fi
    124  1.1  mrg 
    125  1.1  mrg   # The directory holding the input.
    126  1.1  mrg   input_dir=`echo "$input" | sed -e 's,\([\\/]\)[^\\/]*$,\1,'`
    127  1.1  mrg   # Quote $INPUT_DIR so we can use it in a regexp.
    128  1.1  mrg   # FIXME: really we should care about more than `.' and `\'.
    129  1.1  mrg   input_rx=`echo "$input_dir" | sed 's,\\\\,\\\\\\\\,g;s,\\.,\\\\.,g'`
    130  1.1  mrg 
    131  1.1  mrg   while test "$#" -ne 0; do
    132  1.1  mrg     from="$1"
    133  1.1  mrg     # Handle y_tab.c and y_tab.h output by DOS
    134  1.1  mrg     if test $y_tab_nodot = "yes"; then
    135  1.1  mrg       if test $from = "y.tab.c"; then
    136  1.1  mrg     	from="y_tab.c"
    137  1.1  mrg       else
    138  1.1  mrg     	if test $from = "y.tab.h"; then
    139  1.1  mrg     	  from="y_tab.h"
    140  1.1  mrg     	fi
    141  1.1  mrg       fi
    142  1.1  mrg     fi
    143  1.1  mrg     if test -f "$from"; then
    144  1.1  mrg       # If $2 is an absolute path name, then just use that,
    145  1.1  mrg       # otherwise prepend `../'.
    146  1.1  mrg       case "$2" in
    147  1.1  mrg     	[\\/]* | ?:[\\/]*) target="$2";;
    148  1.1  mrg     	*) target="../$2";;
    149  1.1  mrg       esac
    150  1.1  mrg 
    151  1.1  mrg       # We do not want to overwrite a header file if it hasn't
    152  1.1  mrg       # changed.  This avoid useless recompilations.  However the
    153  1.1  mrg       # parser itself (the first file) should always be updated,
    154  1.1  mrg       # because it is the destination of the .y.c rule in the
    155  1.1  mrg       # Makefile.  Divert the output of all other files to a temporary
    156  1.1  mrg       # file so we can compare them to existing versions.
    157  1.1  mrg       if test $first = no; then
    158  1.1  mrg 	realtarget="$target"
    159  1.1  mrg 	target="tmp-`echo $target | sed s/.*[\\/]//g`"
    160  1.1  mrg       fi
    161  1.1  mrg       # Edit out `#line' or `#' directives.
    162  1.1  mrg       #
    163  1.1  mrg       # We don't want the resulting debug information to point at
    164  1.1  mrg       # an absolute srcdir; it is better for it to just mention the
    165  1.1  mrg       # .y file with no path.
    166  1.1  mrg       #
    167  1.1  mrg       # We want to use the real output file name, not yy.lex.c for
    168  1.1  mrg       # instance.
    169  1.1  mrg       #
    170  1.1  mrg       # We want the include guards to be adjusted too.
    171  1.1  mrg       FROM=`echo "$from" | sed \
    172  1.1  mrg             -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'\
    173  1.1  mrg             -e 's/[^ABCDEFGHIJKLMNOPQRSTUVWXYZ]/_/g'`
    174  1.1  mrg       TARGET=`echo "$2" | sed \
    175  1.1  mrg             -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'\
    176  1.1  mrg             -e 's/[^ABCDEFGHIJKLMNOPQRSTUVWXYZ]/_/g'`
    177  1.1  mrg 
    178  1.1  mrg       sed -e "/^#/!b" -e "s,$input_rx,," -e "s,$from,$2," \
    179  1.1  mrg           -e "s,$FROM,$TARGET," "$from" >"$target" || ret=$?
    180  1.1  mrg 
    181  1.1  mrg       # Check whether header files must be updated.
    182  1.1  mrg       if test $first = no; then
    183  1.1  mrg 	if test -f "$realtarget" && cmp -s "$realtarget" "$target"; then
    184  1.1  mrg 	  echo "$2" is unchanged
    185  1.1  mrg 	  rm -f "$target"
    186  1.1  mrg 	else
    187  1.1  mrg           echo updating "$2"
    188  1.1  mrg           mv -f "$target" "$realtarget"
    189  1.1  mrg         fi
    190  1.1  mrg       fi
    191  1.1  mrg     else
    192  1.1  mrg       # A missing file is only an error for the first file.  This
    193  1.1  mrg       # is a blatant hack to let us support using "yacc -d".  If -d
    194  1.1  mrg       # is not specified, we don't want an error when the header
    195  1.1  mrg       # file is "missing".
    196  1.1  mrg       if test $first = yes; then
    197  1.1  mrg         ret=1
    198  1.1  mrg       fi
    199  1.1  mrg     fi
    200  1.1  mrg     shift
    201  1.1  mrg     shift
    202  1.1  mrg     first=no
    203  1.1  mrg   done
    204  1.1  mrg else
    205  1.1  mrg   ret=$?
    206  1.1  mrg fi
    207  1.1  mrg 
    208  1.1  mrg # Remove the directory.
    209  1.1  mrg cd ..
    210  1.1  mrg rm -rf $dirname
    211  1.1  mrg 
    212  1.1  mrg exit $ret
    213  1.1  mrg 
    214  1.1  mrg # Local Variables:
    215  1.1  mrg # mode: shell-script
    216  1.1  mrg # sh-indentation: 2
    217  1.1  mrg # eval: (add-hook 'write-file-hooks 'time-stamp)
    218  1.1  mrg # time-stamp-start: "scriptversion="
    219  1.1  mrg # time-stamp-format: "%:y-%02m-%02d.%02H"
    220  1.1  mrg # time-stamp-time-zone: "UTC"
    221  1.1  mrg # time-stamp-end: "; # UTC"
    222  1.1  mrg # End:
    223