Use acceptMessage as a symmetric response to rejectMessage
[aquarium] / scripts / aquarium.sh
1 #!/usr/bin/env bash
2 #
3 # Copyright 2012 GRNET S.A. All rights reserved.
4 #
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
7 # are met:
8 #
9 #   1. Redistributions of source code must retain the above copyright
10 #      notice, this list of conditions and the following disclaimer.
11 #
12 #  2. Redistributions in binary form must reproduce the above copyright
13 #     notice, this list of conditions and the following disclaimer in the
14 #     documentation and/or other materials provided with the distribution.
15 #
16 # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 # ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 # SUCH DAMAGE.
27 #
28 # The views and conclusions contained in the software and documentation are
29 # those of the authors and should not be interpreted as representing official
30 # policies, either expressed or implied, of GRNET S.A.
31
32 #
33 # Init script for Aquarium
34 #
35 #-----------------------
36 # Supported environment variables
37 #
38 # JAVA_OPTS       Runtime options for the JVM that runs Aquarium
39 #                 (default: -Xms1024M -Xmx4096M)
40 #
41 # AQUARIUM_PROP   Java system properties understood by Aquarium
42 #                 (default: -Dlog4j.debug=true)
43 #
44 # AQUARIUM_OPTS   Runtime options for Aquarium
45 #                 (default: "")
46 #
47 # AQUARIUM_HOME   Location of the top level Aquarium dir
48 #                 (default: .)
49 #----------------------
50
51 #set -x
52
53 # resolve links - $0 may be a softlink
54 PRG="$0"
55
56 while [ -h "$PRG" ]; do
57   ls=`ls -ld "$PRG"`
58   link=`expr "$ls" : '.*-> \(.*\)$'`
59   if expr "$link" : '/.*' > /dev/null; then
60     PRG="$link"
61   else
62     PRG=`dirname "$PRG"`/"$link"
63   fi
64 done
65
66 # Get standard environment variables
67 PRGDIR=`dirname "$PRG"`
68
69 # Only set supported environment variables if not already set
70 [ -z "$AQUARIUM_HOME" ] && AQUARIUM_HOME=`cd "$PRGDIR/.." >/dev/null; pwd`
71 [ -z "$AQUARIUM_PROP" ] && AQUARIUM_PROP=""
72 [ -z "$AQUARIUM_OPTS" ] && AQUARIUM_OPTS=""
73 [ -z "$JAVA_OPTS" ]     && JAVA_OPTS="-Xms1024M -Xmx4096M"
74
75 export AQUARIUM_HOME
76
77 PID_FILE=$AQUARIUM_HOME/bin/aquarium.pid
78
79 AQUARIUM_LIB=$AQUARIUM_HOME/lib
80 AQUARIUM_CONF=$AQUARIUM_HOME/conf
81 AQUARIUM_LOGFILE=$AQUARIUM_HOME/logs/aquarium.log
82
83 AQUARIUM_MAIN_CLASS=gr.grnet.aquarium.Main
84
85 # We use jbootstrap to start the application.
86 # No need to manually setup the CLASSPATH
87 JBOOT_JAR=$AQUARIUM_LIB/jbootstrap-3.0.0.jar
88 JBOOT_MAIN_CLASS=com.ckkloverdos.jbootstrap.Main
89
90 # Check the application status
91 check_status() {
92     if [ -f $PID_FILE ]
93     then
94         aqrunning=`ps -ef|grep java|grep $AQUARIUM_MAIN_CLASS`
95         if [ -z "$aqrunning" ]
96         then
97             return 0
98             echo "Aquarium running, but no pid file found"
99         else
100             return 1
101         fi 
102     else
103        return 0
104     fi
105     
106     return 1
107 }
108
109 # Starts the application. If "debug" is passed as argument, aquarium starts
110 # in debug mode
111 start() {
112     check_status
113     if [ $? -ne 0 ]
114     then
115         echo "Aquarium is running"
116         exit 1
117     fi
118
119     echo "Starting Aquarium"
120     echo >> $AQUARIUM_LOGFILE
121
122     CLASSPATH=$JBOOT_JAR
123
124     echo "Using CLASSPATH=$CLASSPATH"
125     echo "Using AQUARIUM_HOME=$AQUARIUM_HOME"
126     echo "Using AQUARIUM_MAIN_CLASS=$AQUARIUM_MAIN_CLASS"
127     echo "Using AQUARIUM_PROP=$AQUARIUM_PROP"
128     echo "Using JAVA_OPTS=$JAVA_OPTS"
129     echo "nohup java $JAVA_OPTS -cp $CLASSPATH $AQUARIUM_PROP $JBOOT_MAIN_CLASS -lib $AQUARIUM_LIB $AQUARIUM_MAIN_CLASS >> $AQUARIUM_LOGFILE"
130
131     nohup java $JAVA_OPTS -cp $CLASSPATH $AQUARIUM_PROP $JBOOT_MAIN_CLASS -lib $AQUARIUM_LIB $AQUARIUM_MAIN_CLASS >> $AQUARIUM_LOGFILE 2>&1 &
132     PID=$!
133     echo $PID > $PID_FILE
134     echo "PID=$PID"
135 }
136
137 # Stops the application
138 stop() {
139     check_status
140     if [ $? -eq 0 ]
141     then
142         echo "Aquarium is not running"
143         exit 1
144     fi
145
146     # Kills the application process
147     echo -n "Stopping Aquarium: "
148     kill `cat $PID_FILE`
149     rm $PID_FILE
150     echo "OK"
151 }
152
153 # Show the application status
154 status() {
155     check_status
156     if [ $? -ne 0 ]
157     then
158         echo "Aquarium is running (pid="`cat $PID_FILE`")"
159     else
160         echo "Aquarium is stopped"
161     fi
162 }
163
164 ps_aquarium() {
165   ps -ef | grep java | grep gr.grnet.aquarium.Main
166 }
167
168 forcekill() {
169   local PIDS=`ps_aquarium | awk '{print $2}'`
170   for pid in $PIDS; do
171     echo Killing $pid
172     kill -9 $pid
173   done
174 }
175
176 # Main logic, a simple case to call functions
177 case "$1" in
178   start)
179     start
180     ;;
181   stop)
182     stop
183     ;;
184   status)
185     status
186     ;;
187   restart)
188     stop
189     start
190     ;;
191   ps)
192     ps_aquarium
193     ;;
194   forcekill)
195     forcekill
196     ;;
197   *)
198       echo "Usage: $0 {start|stop|restart|status|ps|forcekill}"
199       exit 1
200     esac
201 exit 0
202
203 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :
204