Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/kernel.git] / bin / appliskel / searchFreePort.sh
1 #!/bin/bash
2
3 # Copyright (C) 2005  OPEN CASCADE, CEA, EDF R&D, LEG
4 #           PRINCIPIA R&D, EADS CCR, Lip6, BV, CEDRAT
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 # --- define port for CORBA naming service
23
24 searchFreePort() {
25     echo -n "Searching for a free port for naming service: "
26     NSPORT=2810
27     export NSPORT
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             OMNIORB_CONFIG=${HOME}/${APPLI}/.omniORB_${myhost}_${NSPORT}.cfg
37             export OMNIORB_CONFIG
38             export NSPORT
39             NSHOST=${myhost}
40             export NSHOST
41             local initref="NameService=corbaname::"`hostname`":$NSPORT"
42             #echo "ORBInitRef $initref" > $OMNIORB_CONFIG
43             echo "InitRef = $initref" > $OMNIORB_CONFIG
44             LAST_RUNNING_CONFIG=${HOME}/${APPLI}/.omniORB_last.cfg
45             export LAST_RUNNING_CONFIG
46             rm ${LAST_RUNNING_CONFIG}
47             ln -s ${OMNIORB_CONFIG} ${LAST_RUNNING_CONFIG}
48             break
49         fi
50         echo -n "${NSPORT} "
51         if [[ $NSPORT -eq $limit ]] ; then
52             echo
53             echo "Can't find a free port to launch omniNames"
54             echo "Try to kill the running servers and then launch SALOME again."
55             exit
56         fi
57         let NSPORT=NSPORT+1
58     done
59 }
60