Add env vars to set the controller working directory.
[controller.git] / opendaylight / distribution / opendaylight / src / main / resources / run.sh
1 #!/bin/bash
2
3 platform='unknown'
4 unamestr=`uname`
5 if [[ "$unamestr" == 'Linux' ]]; then
6    platform='linux'
7 elif [[ "$unamestr" == 'Darwin' ]]; then
8    platform='osx'
9 fi
10
11 if [[ $platform == 'linux' ]]; then
12    fullpath=`readlink -f $0`
13
14    if [[ -z ${JAVA_HOME} ]]; then
15       # Find the actual location of the Java launcher:
16       java_launcher=`which java`
17       java_launcher=`readlink -f "${java_launcher}"`
18
19       # Compute the Java home from the location of the Java launcher:
20       export JAVA_HOME="${java_launcher%/bin/java}"
21     fi
22 elif [[ $platform == 'osx' ]]; then
23    TARGET_FILE=$0
24    cd `dirname $TARGET_FILE`
25    TARGET_FILE=`basename $TARGET_FILE`
26
27    # Iterate down a (possible) chain of symlinks
28    while [ -L "$TARGET_FILE" ]
29    do
30        TARGET_FILE=`readlink $TARGET_FILE`
31        cd `dirname $TARGET_FILE`
32        TARGET_FILE=`basename $TARGET_FILE`
33    done
34
35    # Compute the canonicalized name by finding the physical path
36    # for the directory we're in and appending the target file.
37    PHYS_DIR=`pwd -P`
38    RESULT=$PHYS_DIR/$TARGET_FILE
39    fullpath=$RESULT
40
41    [[ -z ${JAVA_HOME} ]] && [[ -x "/usr/libexec/java_home" ]] && export JAVA_HOME=`/usr/libexec/java_home -v 1.7`;
42
43 fi
44
45 [[ -z ${JAVA_HOME} ]] && echo "Need to set JAVA_HOME environment variable" && exit -1;
46 [[ ! -x ${JAVA_HOME}/bin/java ]] && echo "Cannot find an executable \
47 JVM at path ${JAVA_HOME}/bin/java check your JAVA_HOME" && exit -1;
48
49 if [ -z ${ODL_BASEDIR} ]; then
50     basedir=`dirname ${fullpath}`
51 else
52     basedir=${ODL_BASEDIR}
53 fi
54
55 if [ -z ${ODL_DATADIR} ]; then
56     datadir=`dirname ${fullpath}`
57 else
58     datadir=${ODL_DATADIR}
59 fi
60
61 function usage {
62     echo "Usage: $0 [-jmx] [-jmxport <num>] [-debug] [-debugsuspend] [-debugport <num>] [-start [<console port>]] [-stop] [-status] [-console] [-help] [<other args will automatically be used for the JVM>]"
63     exit 1
64 }
65
66 if [ -z ${TMP} ]; then
67     pidfile="/tmp/opendaylight.PID"
68 else
69     pidfile="${TMP}/opendaylight.PID"
70 fi
71 debug=0
72 debugsuspend=0
73 debugport=8000
74 debugportread=""
75 startdaemon=0
76 daemonport=2400
77 daemonportread=""
78 jmxport=1088
79 jmxportread=""
80 startjmx=0
81 stopdaemon=0
82 statusdaemon=0
83 consolestart=1
84 dohelp=0
85 extraJVMOpts=""
86 unknown_option=0
87 while true ; do
88     case "$1" in
89         -debug) debug=1; shift ;;
90         -jmx) startjmx=1; shift ;;
91         -debugsuspend) debugsuspend=1; shift ;;
92         -debugport) shift; debugportread="$1"; if [[ "${debugportread}" =~ ^[0-9]+$ ]] ; then debugport=${debugportread}; shift; else echo "-debugport expects a number but was not found"; exit -1; fi;;
93         -jmxport) shift; jmxportread="$1"; if [[ "${jmxportread}" =~ ^[0-9]+$ ]] ; then jmxport=${jmxportread}; shift; else echo "-jmxport expects a number but was not found"; exit -1; fi;;
94         -start) startdaemon=1; shift; daemonportread="$1"; if [[ "${daemonportread}" =~ ^[0-9]+$ ]] ; then daemonport=${daemonportread}; shift; fi;;
95         -stop) stopdaemon=1; shift ;;
96         -status) statusdaemon=1; shift ;;
97         -console) shift ;;
98         -help) dohelp=1; shift;;
99         -D*) extraJVMOpts="${extraJVMOpts} $1"; shift;;
100         -X*) extraJVMOpts="${extraJVMOpts} $1"; shift;;
101         "") break ;;
102         *) echo "Unknown option $1"; unknown_option=1; shift ;;
103     esac
104 done
105
106 # Unknown Options and help
107 if [ "${unknown_option}" -eq 1 ]; then
108     usage
109 fi
110
111 if [ "${dohelp}" -eq 1 ]; then
112     usage
113 fi
114
115 # Validate debug port
116 if [[ "${debugport}" -lt 1024 ]] || [[ "${debugport}" -gt 65535 ]]; then
117     echo "Debug Port not in the range [1024,65535] ${debugport}"
118     exit -1
119 fi
120
121 # Validate daemon console port
122 if [[ "${daemonport}" -lt 1024 ]] || [[ "${daemonport}" -gt 65535 ]]; then
123     echo "Daemon console Port not in the range [1024,65535] value is ${daemonport}"
124     exit -1
125 fi
126
127 # Validate jmx port
128 if [[ "${jmxport}" -lt 1024 ]] || [[ "${jmxport}" -gt 65535 ]]; then
129     echo "JMX Port not in the range [1024,65535] value is ${jmxport}"
130     exit -1
131 fi
132
133 # Debug options
134 if [ "${debugsuspend}" -eq 1 ]; then
135     extraJVMOpts="${extraJVMOpts} -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=${debugport}"
136 elif [ "${debug}" -eq 1 ]; then
137     extraJVMOpts="${extraJVMOpts} -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=${debugport}"
138 fi
139
140 # Add JMX support
141 if [ "${startjmx}" -eq 1 ]; then
142     extraJVMOpts="${extraJVMOpts} -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.port=${jmxport} -Dcom.sun.management.jmxremote"
143 fi
144
145 ########################################
146 # Now add to classpath the OSGi JAR
147 ########################################
148 CLASSPATH=${basedir}/lib/org.eclipse.osgi-3.8.1.v20120830-144521.jar
149 FWCLASSPATH=file:${basedir}/lib/org.eclipse.osgi-3.8.1.v20120830-144521.jar
150
151 ########################################
152 # Now add the extensions
153 ########################################
154
155 # Extension 1: this is used to be able to convert all the
156 # bundleresouce: URL in file: so packages that are not OSGi ready can
157 # still work. Notably this is the case for spring classes
158 CLASSPATH=${CLASSPATH}:${basedir}/lib/org.eclipse.virgo.kernel.equinox.extensions-3.6.0.RELEASE.jar
159 FWCLASSPATH=${FWCLASSPATH},file:${basedir}/lib/org.eclipse.virgo.kernel.equinox.extensions-3.6.0.RELEASE.jar
160
161 ########################################
162 # Now add the launcher
163 ########################################
164 CLASSPATH=${CLASSPATH}:${basedir}/lib/org.eclipse.equinox.launcher-1.3.0.v20120522-1813.jar
165 FWCLASSPATH=${FWCLASSPATH},file:${basedir}/lib/org.eclipse.equinox.launcher-1.3.0.v20120522-1813.jar
166
167 if [ "${stopdaemon}" -eq 1 ]; then
168     if [ -e "${pidfile}" ]; then
169         daemonpid=`cat "${pidfile}"`
170         kill "${daemonpid}"
171         rm -f "${pidfile}"
172         echo "Controller with PID: ${daemonpid} -- Stopped!"
173         exit 0
174     else
175         echo "Doesn't seem any Controller daemon is currently running"
176         exit -1
177     fi
178 fi
179
180 if [ "${statusdaemon}" -eq 1 ]; then
181     if [ -e "${pidfile}" ]; then
182         daemonpid=`cat "${pidfile}"`
183         ps -p ${daemonpid} > /dev/null
184         daemonexists=$?
185         if [ "${daemonexists}" -eq 0 ]; then
186             echo "Controller with PID: ${daemonpid} -- Running!"
187             exit 0
188         else
189             echo "Controller with PID: ${daemonpid} -- Doesn't seem to exist"
190             rm -f "${pidfile}"
191             exit 0
192         fi
193     else
194         echo "Doesn't seem any Controller daemon is currently running, at least no PID file has been found"
195         exit -1
196     fi
197 fi
198
199 if [ "${startdaemon}" -eq 1 ]; then
200     if [ -e "${pidfile}" ]; then
201         echo "Another instance of controller running, check with $0 -status"
202         exit -1
203     fi
204     $JAVA_HOME/bin/java ${extraJVMOpts} \
205         -Djava.io.tmpdir=${datadir}/work/tmp \
206         -Dosgi.install.area=${basedir} \
207         -Dosgi.configuration.area=${datadir}/configuration \
208         -Dosgi.frameworkClassPath=${FWCLASSPATH} \
209         -Dosgi.framework=file:${basedir}/lib/org.eclipse.osgi-3.8.1.v20120830-144521.jar \
210         -classpath ${CLASSPATH} \
211         org.eclipse.equinox.launcher.Main \
212         -console ${daemonport} \
213         -consoleLog &
214     daemonpid=$!
215     echo ${daemonpid} > ${pidfile}
216 elif [ "${consolestart}" -eq 1 ]; then
217     if [ -e "${pidfile}" ]; then
218         echo "Another instance of controller running, check with $0 -status"
219         exit -1
220     fi
221     $JAVA_HOME/bin/java ${extraJVMOpts} \
222         -Djava.io.tmpdir=${datadir}/work/tmp \
223         -Dosgi.install.area=${basedir} \
224         -Dosgi.configuration.area=${datadir}/configuration \
225         -Dosgi.frameworkClassPath=${FWCLASSPATH} \
226         -Dosgi.framework=file:${basedir}/lib/org.eclipse.osgi-3.8.1.v20120830-144521.jar \
227         -classpath ${CLASSPATH} \
228         org.eclipse.equinox.launcher.Main \
229         -console \
230         -consoleLog
231 fi