Salome HOME
Try to kill Salome application when a YACS Launcher job is killed
[modules/kernel.git] / bin / runSalome.ksh
1 #!/bin/ksh
2 # Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 #
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License.
11 #
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20 #
21 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #
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}/.omniORB_${myhost}_${NSPORT}.cfg
37             export OMNIORB_CONFIG
38             local initref="NameService=corbaname::"`hostname`":$NSPORT"
39             export NSPORT
40             if [[ `python -c "import CORBA; print CORBA.ORB_ID"` = "omniORB4" ]]; then
41                 echo "InitRef = $initref" > $OMNIORB_CONFIG
42             else
43                 echo "ORBInitRef $initref" > $OMNIORB_CONFIG
44             fi
45             break
46         fi
47         echo -n "${NSPORT} "
48         if [[ $NSPORT -eq $limit ]] ; then
49             echo
50             echo "Can't find a free port to launch omniNames"
51             echo "Try to kill the running servers and then launch SALOME again."
52             exit
53         fi
54         let NSPORT=NSPORT+1
55     done
56 }
57
58 searchFreePort
59
60 if [[ "$*" = "-nothing" ]]; then
61     echo "port:$NSPORT"
62 elif [ $# -ne 0 ] ; then
63     python ${KERNEL_ROOT_DIR}/bin/salome/runSalome.py $* 
64 else
65     python ${KERNEL_ROOT_DIR}/bin/salome/runSalome.py
66 fi
67
68 # -----------------------------------------------------------------------------
69 # examples:
70 # ---------
71 #  $: ${KERNEL_ROOT_DIR}/bin/salome/runSalome
72 #
73 #     - parameters for launching are taken from SalomeApp.xml;
74 #     - if the config file does not exist, it is created with default values.
75 #
76 #  
77 #  $: ${KERNEL_ROOT_DIR}/bin/salome/runSalome --modules=GEOM,SMESH,VISU,MED --embedded=registry,study,moduleCatalog,cppContainer --standalone=pyContainer --xterm --killall
78 #
79 #     parameters from command line supersede those from SalomeApp.xml
80 #
81 # Some CORBA servers can be launched in the SALOME_Session_Server's process
82 # (embedded = same process) or in a separate process (standalone):
83 # --> registry,study,moduleCatalog,cppContainer
84 # Other CORBA servers could only be launched in separate process (standalone):
85 # --> pyContainer
86 #
87 # $: ${KERNEL_ROOT_DIR}/bin/salome/runSalome -h
88 #    help
89 # -----------------------------------------------------------------------------
90 #
91 # l'option -i permet de garder l'interpreteur python ouvert :
92 # par defaut, les differents serveurs ouvrent des fenĂȘtres xterm
93 # (cf. runSalome.py)
94 # le serveur Logger n'est pas obligatoire (commentĂ© dans runSalome.py)
95
96 # -----------------------------------------------------------------------------
97 # Example on CCRT (without ihm) :
98 # ${KERNEL_ROOT_DIR}/bin/salome/runSalome.py --terminal --modules=MED,CALCULATOR,COMPONENT --standalone=registry,study,moduleCatalog,cppContainer,pyContainer --killall