chiark / gitweb /
slightly improve messages
[jarrg-ian.git] / jpctb
1 #!/bin/bash -e
2
3 # This is jpctb, a wrapper script for plumbing Ted Pearson's Java PCTB
4 # client into a JVM on Linux.
5
6 # This program is Free Software.  Copyright (C) 2009 Ian Jackson.
7 #
8 # Permission is hereby granted, free of charge, to any person obtaining a copy
9 # of this software and associated documentation files (the "Software"), to deal
10 # in the Software without restriction, including without limitation the rights
11 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 # copies of the Software, and to permit persons to whom the Software is fur-
13 # nished to do so, subject to the following conditions:
14
15 # The above copyright notice and this permission notice shall be included in
16 # all copies or substantial portions of the Software.
17
18 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
20 # NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
21 # XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
22 # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
23 # NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24
25
26 usage () { cat <<END
27 usage: .../jpctb /path/to/yohoho/yohoho [...]
28 END
29 }
30
31 fail () {
32         echo >&2 "jpctb: $*"
33         exit 127
34 }
35
36 nojre () {
37         fail "couldn't find the right jre: $*
38  perhaps you should make ypp's java symlink (normally yohoho/java)
39  point to your jre, eg to /usr/lib/jvm/java-6-sun"
40 }
41
42 badusage () {
43         fail "bad usage: $*"
44 }
45
46 check_only=false
47 setup_only=false
48 setup_only_simulate=''
49
50 while [ $# -ge 1 ]; do
51         case "$1" in
52         -)              shift; break;;
53         --jpctb)
54                         shift
55                         srcjardir="$1"
56                         shift || badusage "--jpctb needs a value"
57                         ;;
58         --check-only)
59                         check_only=true
60                         shift
61                         ;;
62         --setup-only)
63                         setup_only=true
64                         setup_only_simulate=echo
65                         shift
66                         ;;
67         -*)             badusage "unknown option \`$1'"
68                         ;;
69         *)
70                         break
71         esac
72 done
73
74 if [ $# -lt 1 ]; then usage; badusage "need path to yohoho"; exit 127; fi
75
76 yohoho="$1"; shift
77
78 #---------- find ourselves ----------
79
80 jpctbdir="$0"
81 jpctbdir="${jpctbdir%/*}"
82
83 case "$jpctbdir" in
84 /*)     ;;
85 *)      jpctbdir="$PWD/$jpctbdir" ;;
86 esac
87
88 if [ x"$srcjardir" = x ]; then
89         srcjardir="$jpctbdir"
90 fi
91
92 #---------- find YPP client and the Java installation it uses ----------
93
94 yppdir="${yohoho%/*}"
95
96 # this replicates the java-searching logic from yohoho/yohoho:
97 if [ -x "$yppdir/java/bin/java" ]; then
98         yppjava="$yppdir/java/bin/java"
99 elif [ -x "$JAVA_HOME/bin/java" ]; then
100         yppjava="$JAVA_HOME/bin/java"
101 else
102         set +e
103         yppjava=`type -p java 2>&1`
104         set -e
105 fi
106
107 cat <<END
108 jpctb:
109    jpctb tree:   "$jpctbdir"
110    yohoho:       "$yohoho"
111    ypp dir:      "$yppdir"
112    ypp uses:     "$yppjava"
113 END
114
115 if ! [ -x "$yppjava" ]; then
116         nojre "bad java ypp"
117 fi
118
119 javadir="${yppjava%/bin/java}"
120 if [ -x "$javadir/jre/bin/java" ]; then
121         echo "   java/ points to the jre, good"
122         jreleaf=jre
123 else
124         echo "   java/ has just the executable bin/java, trying readlink"
125         absjava=`readlink -f "$yppjava"`
126         echo "   abs. java:    \"$absjava\""
127         case "$absjava" in
128         */*/bin/java)
129                 javadir="${absjava%/bin/java}"
130                 jreleaf="${javadir##*/}"
131                 javadir="${javadir%/*}"
132                 echo "   jre leaf dir: \"$jreleaf\""
133                 case "$jreleaf" in
134                 jre)    echo "   found jre directory, good";;
135                 jre1.*) echo "   found versioned jre directory $jreleaf, ok";;
136                 *)      nojre "java binary not in jre dir ($jreleaf)";;
137                 esac
138                 ;;
139         *)
140                 nojre "real java binary not in ../bin/java dir";;
141         esac
142 fi
143
144 case "$javadir" in
145 ''|/|/usr)      nojre "javadir is $javadir (and even found $javadir/jre!)" ;;
146 /*)             ;;
147 *)              javadir="$PWD/$javadir" ;;
148 esac
149
150 jtmp="$jpctbdir/tmp"
151 linkfarm="$jtmp/linkfarm"
152 extdir="$jtmp/ext"
153
154 export JPCTB_JRE="$javadir/$jreleaf"
155 realjava="$JPCTB_JRE/bin/java"
156
157 #---------- confirm for the user which paths we're using ----------
158
159 cat <<END
160    java dir.:    "$javadir"
161    jre:          "$JPCTB_JRE"
162    primary java: "$realjava"
163    jpctb jars:   "$srcjardir"
164    jpctb tmpdir: "$jtmp"
165 END
166
167 #---------- run the control panel ----------
168
169 if $check_only; then echo "Check successful."; exit 0; fi
170
171 set +e
172 $setup_only_simulate "$realjava" \
173  -Dcom.tedpearson.ypp.market.controlpanel.exitstatus=12 \
174  -jar "$srcjardir/PCTB-ControlPanel.jar"
175 rc=$?
176 set -e
177
178 if $setup_only; then rc=12; fi
179
180 case $rc in
181 0)      echo "launcher dialogue closed, quitting"; exit 0 ;;
182 12)     ;;
183 *)      echo >&2 "control panel failed with exit status $rc"; exit "$rc" ;;
184 esac
185
186
187 #---------- create the temporary are and link farm ----------
188
189 rm -rf -- "$jtmp"
190 mkdir -- "$jtmp" "$extdir" "$linkfarm"
191 cp "$srcjardir"/PCTB*.jar "$extdir"
192
193 cp -Rs "$javadir"/. "$linkfarm"/.
194
195 #---------- edit the linkfarm to have our jvm wrapper ----------
196
197 wrapper="$linkfarm"/$jreleaf/bin/java
198 rm -- "$wrapper"
199
200 export JPCTB_EXTDIR="$extdir"
201
202 cat <<'END' >"$wrapper"
203 #!/bin/bash
204         set -e$JPCTB_JWRAP_X
205
206         log () {
207                 lh=`date +'%Y/%m/%d %H:%M:%S jpctb'`
208                 printf >&2 "%s: %s |\f\n" "$lh" "$*"
209         }
210
211         log "invoked as $*"
212
213 #echo >&2 "$djava-wrap 
214 #exec 4>>/home/ian/u
215 #date >&4
216 #exec 4>&-
217
218         yppclass=com.threerings.yohoho.client.YoApp
219         atclass=com.tedpearson.ypp.market.MarketUploader
220
221         args=( "$@" )
222         nargs=${#args[*]}
223         lastarg="${args[$(( $nargs - 1 ))]}"
224
225         fail () { echo >&2 "jpctb-java: $*"; exit 127; }
226
227         if [ x"$lastarg" = x"$yppclass" ]; then
228
229                 [ x"$JPCTB_EXTDIR" != x ] || fail 'JPCTB_EXTDIR not set'
230
231                 set     -e$JPCTB_JWRAP_X -- \
232                         -Djavax.accessibility.assistive_technologies=$atclass \
233                         -Djava.ext.dirs="$JPCTB_EXTDIR:$JPCTB_JRE/lib/ext" \
234                         "$@"
235         fi
236
237         real="$JPCTB_JRE/bin/java"
238         log "running $real $*"
239         exec "$real" "$@"
240 END
241
242 chmod +x -- "$wrapper"
243
244 #---------- now run it ----------
245
246 exec $setup_only_simulate "$yohoho" -Djava.home="$linkfarm/$jreleaf"