Merge "fix of Bug 314"
[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 cd $basedir
168
169 if [ "${stopdaemon}" -eq 1 ]; then
170     if [ -e "${pidfile}" ]; then
171         daemonpid=`cat "${pidfile}"`
172         kill "${daemonpid}"
173         rm -f "${pidfile}"
174         echo "Controller with PID: ${daemonpid} -- Stopped!"
175         exit 0
176     else
177         echo "Doesn't seem any Controller daemon is currently running"
178         exit -1
179     fi
180 fi
181
182 if [ "${statusdaemon}" -eq 1 ]; then
183     if [ -e "${pidfile}" ]; then
184         daemonpid=`cat "${pidfile}"`
185         ps -p ${daemonpid} > /dev/null
186         daemonexists=$?
187         if [ "${daemonexists}" -eq 0 ]; then
188             echo "Controller with PID: ${daemonpid} -- Running!"
189             exit 0
190         else
191             echo "Controller with PID: ${daemonpid} -- Doesn't seem to exist"
192             rm -f "${pidfile}"
193             exit 1
194         fi
195     else
196         echo "Doesn't seem any Controller daemon is currently running, at least no PID file has been found"
197         exit -1
198     fi
199 fi
200
201 iotmpdir=`echo "${datadir}" | sed 's/ /\\ /g'`
202 bdir=`echo "${basedir}" | sed 's/ /\\ /g'`
203 confarea=`echo "${datadir}" | sed 's/ /\\ /g'`
204 fwclasspath=`echo "${FWCLASSPATH}" | sed 's/ /\\ /g'`
205
206 if [ "${startdaemon}" -eq 1 ]; then
207     if [ -e "${pidfile}" ]; then
208         echo "Another instance of controller running, check with $0 -status"
209         exit -1
210     fi
211     $JAVA_HOME/bin/java ${extraJVMOpts} \
212         -Djava.io.tmpdir="${iotmpdir}/work/tmp" \
213         -Dosgi.install.area="${bdir}" \
214         -Dosgi.configuration.area="${confarea}/configuration" \
215         -Dosgi.frameworkClassPath="${fwclasspath}" \
216         -Dosgi.framework=file:"${bdir}/lib/org.eclipse.osgi-3.8.1.v20120830-144521.jar" \
217         -Djava.awt.headless=true \
218         -classpath "${CLASSPATH}" \
219         org.eclipse.equinox.launcher.Main \
220         -console ${daemonport} \
221         -consoleLog &
222     daemonpid=$!
223     echo ${daemonpid} > ${pidfile}
224 elif [ "${consolestart}" -eq 1 ]; then
225     if [ -e "${pidfile}" ]; then
226         echo "Another instance of controller running, check with $0 -status"
227         exit -1
228     fi
229     $JAVA_HOME/bin/java ${extraJVMOpts} \
230         -Djava.io.tmpdir="${iotmpdir}/work/tmp" \
231         -Dosgi.install.area="${bdir}" \
232         -Dosgi.configuration.area="${confarea}/configuration" \
233         -Dosgi.frameworkClassPath="${fwclasspath}" \
234         -Dosgi.framework=file:"${bdir}/lib/org.eclipse.osgi-3.8.1.v20120830-144521.jar" \
235         -Djava.awt.headless=true \
236         -classpath "${CLASSPATH}" \
237         org.eclipse.equinox.launcher.Main \
238         -console \
239         -consoleLog
240 fi