2
|
1 |
#!/bin/sh
|
|
2 |
|
|
3 |
#
|
|
4 |
# Copyright 2005 Sun Microsystems, Inc. All Rights Reserved.
|
|
5 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
6 |
#
|
|
7 |
# This code is free software; you can redistribute it and/or modify it
|
|
8 |
# under the terms of the GNU General Public License version 2 only, as
|
|
9 |
# published by the Free Software Foundation.
|
|
10 |
#
|
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT
|
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that
|
|
15 |
# accompanied this code).
|
|
16 |
#
|
|
17 |
# You should have received a copy of the GNU General Public License version
|
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation,
|
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
20 |
#
|
|
21 |
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
|
|
22 |
# CA 95054 USA or visit www.sun.com if you need additional information or
|
|
23 |
# have any questions.
|
|
24 |
#
|
|
25 |
|
|
26 |
|
|
27 |
#
|
|
28 |
#
|
|
29 |
# Application Setup - creates ${TESTCLASSES}/Application.jar and the following
|
|
30 |
# procedures:
|
|
31 |
# startApplication - starts target application
|
|
32 |
# stopApplication $1 - stops application via TCP shutdown port $1
|
|
33 |
|
|
34 |
$JAVAC -d "${TESTCLASSES}" "${TESTSRC}"/Application.java "${TESTSRC}"/Shutdown.java
|
|
35 |
$JAR -cfm "${TESTCLASSES}"/Application.jar "${TESTSRC}"/application.mf \
|
|
36 |
-C "${TESTCLASSES}" Application.class
|
|
37 |
|
|
38 |
OUTPUTFILE=${TESTCLASSES}/Application.out
|
|
39 |
rm -f ${OUTPUTFILE}
|
|
40 |
|
|
41 |
startApplication()
|
|
42 |
{
|
|
43 |
${JAVA} $1 $2 $3 -jar "${TESTCLASSES}"/Application.jar > ${OUTPUTFILE} &
|
|
44 |
pid="$!"
|
|
45 |
|
|
46 |
# MKS creates an intermediate shell to launch ${JAVA} so
|
|
47 |
# ${pid} is not the actual pid. We have put in a small sleep
|
|
48 |
# to give the intermediate shell process time to launch the
|
|
49 |
# "java" process.
|
|
50 |
if [ "$OS" = "Windows" ]; then
|
|
51 |
sleep 2
|
|
52 |
realpid=`ps -o pid,ppid,comm|grep ${pid}|grep "java"|cut -c1-6`
|
|
53 |
pid=${realpid}
|
|
54 |
fi
|
|
55 |
|
|
56 |
echo "Waiting for Application to initialize..."
|
|
57 |
attempts=0
|
|
58 |
while true; do
|
|
59 |
sleep 1
|
|
60 |
port=`tail -1 ${OUTPUTFILE}`
|
|
61 |
if [ ! -z "$port" ]; then
|
|
62 |
# In case of errors wait time for output to be flushed
|
|
63 |
sleep 1
|
|
64 |
cat ${OUTPUTFILE}
|
|
65 |
break
|
|
66 |
fi
|
|
67 |
attempts=`expr $attempts + 1`
|
|
68 |
echo "Waiting $attempts second(s) ..."
|
|
69 |
done
|
|
70 |
echo "Application is process $pid, shutdown port is $port"
|
|
71 |
return $port
|
|
72 |
}
|
|
73 |
|
|
74 |
stopApplication()
|
|
75 |
{
|
|
76 |
$JAVA -classpath "${TESTCLASSES}" Shutdown $1
|
|
77 |
}
|
|
78 |
|