Salome HOME
32ee2a7a48f16d028b3f5b62d228da58a83c8e83
[samples/atomsolv.git] / bin / runAppli.in
1 #!/bin/sh
2
3 # Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
4 #
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License.
9 #
10 # This library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # Lesser General Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 #
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21
22 export KERNEL_ROOT_DIR=@KERNEL_ROOT_DIR@
23 export ATOMSOLV_ROOT_DIR=@prefix@
24
25 searchFreePort() {
26     echo -n "Searching for a free port for naming service: "
27     export NSPORT=2810
28     local limit=$NSPORT
29     let limit=limit+100
30     while [ 1 ]
31     do
32         aRes=`netstat -ltn | grep -E :${NSPORT}`
33         if [ -z "$aRes" ]; then
34             echo ${NSPORT} - Ok
35             local myhost=`hostname`
36             export OMNIORB_CONFIG=${HOME}/.omniORB_${myhost}_${NSPORT}.cfg
37             local initref="NameService=corbaname::"`hostname`":$NSPORT"
38             if [[ `python -c "import CORBA; print CORBA.ORB_ID"` = "omniORB4" ]]; then
39                 echo "InitRef = $initref" > $OMNIORB_CONFIG
40             else
41                 echo "ORBInitRef $initref" > $OMNIORB_CONFIG
42             fi
43             break
44         fi
45         echo -n "${NSPORT} "
46         if [[ $NSPORT -eq $limit ]] ; then
47             echo
48             echo "Can't find a free port to launch omniNames"
49             echo "Try to kill the running servers and then launch SALOME again."
50             exit
51         fi
52         let NSPORT=NSPORT+1
53     done
54 }
55
56 searchFreePort
57
58
59 ${KERNEL_ROOT_DIR}/bin/salome/envSalome.py python -i $ATOMSOLV_ROOT_DIR/bin/salome/myrunSalome.py --modules=ATOMSOLV --containers=cpp,python --killall