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