Salome HOME
Add short option -w for --shutdown-servers
[modules/kernel.git] / bin / appliskel / runSession
1 #!/bin/bash
2 # Copyright (C) 2007-2014  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, or (at your option) any later version.
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 # Useful shell to run executable progs or shells under Salome env
25 # Use it with args to run a program : runSession python -i myprog.py
26 # Use it without args to run an interactive shell under Salome env
27
28
29 ###############################################
30 ############### IMPORTANT NOTE ################
31 ###############################################
32 # The runSession script is obsolete.          #
33 # Please consider the new salome launcher.    #
34 ###############################################
35
36
37 APPLI_HOME=`dirname $0`
38
39 NSPORT=last
40 NSHOST=localhost
41
42 usage()
43 {
44         echo "Connect to a SALOME session (local or remote)"
45         echo ""
46         echo "Usage: $(basename $0) [ -p PORT ] [ -m MACHINE ] [ -h ] [command]"
47         echo ""
48         echo "  -p PORT          : The port to connect to "
49         echo "  -m MACHINE       : The machine to connect to "
50         echo "  -h               : Print this message"
51         echo "  command          : The command to execute in the SALOME session"
52         echo ""
53         echo "If the command is not given a shell is opened"
54         echo "If PORT and MACHINE are not given, try to connect to the last active session on the local machine"
55         echo "If PORT and MACHINE are given, try to connect to the remote session associated with PORT on MACHINE"
56         echo "If MACHINE is not given, try to connect to the session associated to PORT on the local machine"
57         echo "If PORT is not given, try to connect to the remote session associated to port 2810 on MACHINE"
58         echo ""
59 }
60
61 while getopts 'm:p:h' OPTION
62   do
63     case $OPTION in
64       m)NSHOST="$OPTARG" ;;
65       p)NSPORT="$OPTARG" ;;
66       h|?) usage
67           exit 1 ;;
68     esac
69   done
70 shift $(($OPTIND - 1))
71
72 # --- retrieve APPLI path, relative to $HOME, set ${APPLI}
73
74 export APPLI=`${APPLI_HOME}/getAppliPath.py`
75
76 # --- set the SALOME environment (prerequisites, MODULES_ROOT_DIR...)
77
78 . ${HOME}/${APPLI}/envd ${HOME}/${APPLI}
79
80 #export OMNIORB_USER_PATH="${HOME}/.salomeConfig/USERS"
81 export OMNIORB_USER_PATH="${HOME}/${APPLI}/USERS"
82
83 # --- set the OMNIORB_CONFIG file and environment relative to this run of SALOME
84 # Usage: writeConfigFile PORT HOST
85 function writeConfigFile
86 {
87   if [ $# -ne 2 ]; then
88     echo "Usage: $0 PORT HOST"
89     return
90   fi
91   export NSPORT=$1
92   export NSHOST=$2
93
94   # Get (in bash) the configuration filename from (Python) ORBConfigFile return values
95   RETURN_VALUES=$(${KERNEL_ROOT_DIR}/bin/salome/envSalome.py python ${KERNEL_ROOT_DIR}/bin/salome/ORBConfigFile.py ${OMNIORB_USER_PATH} ${NSHOST} ${NSPORT} with_username=${USER})
96   export OMNIORB_CONFIG=$(echo ${RETURN_VALUES} | cut -d' ' -f1)
97 }
98
99
100 if test "x${NSPORT}" == "xlast"; then
101   #PORT is not given
102   if test "x${NSHOST}" == "xlocalhost"; then
103     #MACHINE and PORT are not given
104     # --- set omniORB configuration to current session if any
105     fileOmniConfig=${OMNIORB_USER_PATH}/.omniORB_${USER}_last.cfg
106     if [ -f $fileOmniConfig ]; then
107       export OMNIORB_CONFIG=${OMNIORB_USER_PATH}/.omniORB_${USER}_last.cfg
108       # --- set environment variables for port and hostname of NamingService
109       export NSHOST=`${KERNEL_ROOT_DIR}/bin/salome/NSparam.py host`
110       export NSPORT=`${KERNEL_ROOT_DIR}/bin/salome/NSparam.py port`
111     fi
112   else
113     #MACHINE is given PORT is not given
114     writeConfigFile 2810 ${NSHOST}
115   fi
116 else
117   #PORT is given
118   if test "x${NSHOST}" == "xlocalhost"; then
119     #MACHINE is not given PORT is given
120       NSHOST=`hostname`
121   fi
122   writeConfigFile ${NSPORT} ${NSHOST}
123 fi
124
125 # --- invoke shell with or without args
126
127 if [ $# -ne 0 ] ; then
128   ${KERNEL_ROOT_DIR}/bin/salome/envSalome.py -exec $*
129 else
130   ${KERNEL_ROOT_DIR}/bin/salome/envSalome.py /bin/bash --rcfile ${HOME}/${APPLI}/.bashrc
131 fi