Salome HOME
7eea87deb3eaba69b6f6f670892871b57a7f92ea
[samples/atomsolv.git] / bin / runATOMSOLV.in
1 #!/bin/bash
2
3 # Copyright (C) 2007-2020  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, or (at your option) any later version.
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 if [ -z "${KERNEL_ROOT_DIR}" ] ; then 
23 export KERNEL_ROOT_DIR=@KERNEL_ROOT_DIR@
24 fi
25 if [ -z "${ATOMSOLV_ROOT_DIR}" ] ; then 
26 export ATOMSOLV_ROOT_DIR=@CMAKE_INSTALL_PREFIX@
27 fi
28
29 searchFreePort() {
30     echo -n "Searching for a free port for naming service: "
31     export NSPORT=2810
32     local limit=$NSPORT
33     let limit=limit+100
34     while [ 1 ]
35     do
36         aRes=`netstat -ltn | grep -E :${NSPORT}`
37         if [ -z "$aRes" ]; then
38             echo ${NSPORT} - Ok
39             local myhost=`hostname`
40             export OMNIORB_CONFIG=${HOME}/.omniORB_${myhost}_${NSPORT}.cfg
41             local initref="NameService=corbaname::"`hostname`":$NSPORT"
42             if [[ `python3 -c "import CORBA; print(CORBA.ORB_ID)"` = "omniORB4" ]]; then
43                 echo "InitRef = $initref" > $OMNIORB_CONFIG
44             else
45                 echo "ORBInitRef $initref" > $OMNIORB_CONFIG
46             fi
47             break
48         fi
49         echo -n "${NSPORT} "
50         if [[ $NSPORT -eq $limit ]] ; then
51             echo
52             echo "Can't find a free port to launch omniNames"
53             echo "Try to kill the running servers and then launch SALOME again."
54             exit
55         fi
56         let NSPORT=NSPORT+1
57     done
58 }
59
60 searchFreePort
61
62
63 ${KERNEL_ROOT_DIR}/bin/salome/envSalome.py python3 -i $ATOMSOLV_ROOT_DIR/bin/salome/runATOMSOLV.py --modules=ATOMGEN,ATOMSOLV --killall