summaryrefslogtreecommitdiff
path: root/open-vm-tools/scripts/build/rpcgen_wrapper.sh.in
blob: a6882d853048587e5366c448af669ea67d01ea54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#!/bin/sh
################################################################################
### Copyright 2011 VMware, Inc.  All rights reserved.
###
### This program is free software; you can redistribute it and/or modify
### it under the terms of version 2 of the GNU General Public License as
### published by the Free Software Foundation.
###
### This program is distributed in the hope that it will be useful,
### but WITHOUT ANY WARRANTY; without even the implied warranty of
### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
### GNU General Public License for more details.
###
### You should have received a copy of the GNU General Public License
### along with this program; if not, write to the Free Software
### Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
################################################################################

#
# rpcgen_wrapper.sh - executes rpcgen.
#
# rpcgen is very finicky in the way it's invoked. It tends to pollute the
# generated files with all sorts of weird stuff if you specify full paths to the
# files being compiled. So this script copies the source file (plus any other
# needed files) to the build directory before invoking rpcgen.
#
# The pattern to use in Makefile.am is:
#
# . have separate rules for generating the header and the source files, both
#   invoking rpcgen_wrapper.sh
# . make the source depend on the header
#
# The script assumes that $(builddir) is ".". The generated header is copied
# to the "lib/include" directory under $(top_builddir).
#
# Arguments:
#  input       ($1): path of .x file, relative to $(top_srcdir)
#  output      ($2): name of output header file
#  extra       ($@): other files to copy into the build directory; paths
#                    relative to $(top_srcdir)
#

set -e

rpcgen=@RPCGEN@
rpcgenflags="@RPCGENFLAGS@"
top_srcdir="@abs_top_srcdir@"
top_builddir="@abs_top_builddir@"
input=$1
output=$2

if [ -z "$output" ]; then
   echo "Invalid arguments." >&2
   exit 1
fi

shift 2

# need_update($target, $source)
need_update()
{
   test ! -f $1 -o $1 -ot $2
}


# do_rpcgen($type)
# type is either "-h" or "-c"
do_rpcgen()
{
   if need_update $output `basename $input`; then
      rm -f $output
   fi

   $rpcgen $rpcgenflags $1 -o $output `basename $input`
   sed 's,rpc/rpc\.h,vmxrpc.h,' $output > ${output}.tmp
   mv ${output}.tmp $output
}


do_header()
{
   #
   # Check both if srcdir != blddir, and also if we're copying a .x file from
   # a different component.
   #
   top_builddir=`cd $top_builddir && pwd`
   top_srcdir=`cd $top_srcdir && pwd`

   if test $top_builddir != $top_srcdir -o \
      `pwd` != `dirname $top_builddir/$input`; then
      for f in $@; do
         if need_update `basename $f` $top_srcdir/$f; then
            cp -f $top_srcdir/$f .
         fi
      done
      if need_update `basename $input` $top_srcdir/$input; then
         cp -f $top_srcdir/$input .
      fi
   fi

   do_rpcgen "-h"

   # Export the generated header.
   mkdir -p $top_builddir/lib/include/guestrpc
   cp $output $top_builddir/lib/include/guestrpc
}


do_impl()
{
   do_rpcgen "-c"
}


case $output in
   *.h) do_header "$@" ;;
   *.c) do_impl "$@" ;;
   *) echo "Unknown output file type: $output" ;;
esac