Salome HOME
CCAR: improve SALOME application generation : links all subdirectories in share/salome
[modules/kernel.git] / bin / appliskel / runSession
1 #!/bin/bash
2 #  Copyright (C) 2007-2008  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 APPLI_HOME=`dirname $0`
30
31 NSPORT=last
32 NSHOST=localhost
33
34 usage()
35 {
36         echo "Connect to a SALOME session (local or remote)"
37         echo ""
38         echo "Usage: $(basename $0) [ -p PORT ] [ -m MACHINE ] [ -h ] [command]"
39         echo ""
40         echo "  -p PORT          : The port to connect to "
41         echo "  -m MACHINE       : The machine to connect to "
42         echo "  -h               : Print this message"
43         echo "  command          : The command to execute in the SALOME session"
44         echo ""
45         echo "If the command is not given a shell is opened"
46         echo "If PORT and MACHINE are not given, try to connect to the last active session on the local machine"
47         echo "If PORT and MACHINE are given, try to connect to the remote session associated with PORT on MACHINE"
48         echo "If MACHINE is not given, try to connect to the session associated to PORT on the local machine"
49         echo "If PORT is not given, try to connect to the remote session associated to port 2810 on MACHINE"
50         echo ""
51 }
52
53 while getopts 'm:p:h' OPTION
54   do
55     case $OPTION in
56       m)NSHOST="$OPTARG" ;;
57       p)NSPORT="$OPTARG" ;;
58       h|?) usage
59           exit 1 ;;
60     esac
61   done
62 shift $(($OPTIND - 1))
63
64 # --- retrieve APPLI path, relative to $HOME, set ${APPLI}
65
66 export APPLI=`${APPLI_HOME}/getAppliPath.py`
67
68 # --- set the SALOME environment (prerequisites, MODULES_ROOT_DIR...)
69
70 . ${HOME}/${APPLI}/envd ${HOME}/${APPLI}
71
72 if test "x${NSPORT}" == "xlast"; then
73   #PORT is not given
74   if test "x${NSHOST}" == "xlocalhost"; then
75     #MACHINE and PORT are not given
76     # --- set omniORB configuration to current session if any
77     fileOmniConfig=${HOME}/${APPLI}/USERS/.omniORB_${USER}_last.cfg
78     if [ -f $fileOmniConfig ]; then
79       OMNIORB_CONFIG=${HOME}/${APPLI}/USERS/.omniORB_${USER}_last.cfg
80       export OMNIORB_CONFIG
81       # --- set environment variables for port and hostname of NamingService
82       NSHOST=`${KERNEL_ROOT_DIR}/bin/salome/NSparam.py host`
83       NSPORT=`${KERNEL_ROOT_DIR}/bin/salome/NSparam.py port`
84       export NSPORT
85       export NSHOST
86     fi
87   else
88     #MACHINE is given PORT is not given
89     NSPORT=2810
90     OMNIORB_CONFIG=${HOME}/${APPLI}/USERS/.omniORB_${USER}_${NSHOST}_${NSPORT}.cfg
91     export OMNIORB_CONFIG
92     #if omniorb config file exists do not override (perhaps too conservative)
93     if [ ! -f ${OMNIORB_CONFIG} ]; then
94       echo "InitRef = NameService=corbaname::${NSHOST}:${NSPORT}" > ${OMNIORB_CONFIG}
95     fi
96     export NSPORT
97     export NSHOST
98   fi
99 else
100   #PORT is given
101   if test "x${NSHOST}" == "xlocalhost"; then
102     #MACHINE is not given PORT is given
103     NSHOST=`hostname`
104   fi
105   OMNIORB_CONFIG=${HOME}/${APPLI}/USERS/.omniORB_${USER}_${NSHOST}_${NSPORT}.cfg
106   export OMNIORB_CONFIG
107   #if omniorb config file exists do not override (perhaps too conservative)
108   if [ ! -f ${OMNIORB_CONFIG} ]; then
109     echo "InitRef = NameService=corbaname::${NSHOST}:${NSPORT}" > ${OMNIORB_CONFIG}
110   fi
111   export NSPORT
112   export NSHOST
113 fi
114
115 # --- invoke shell with or without args
116
117 if [ $# -ne 0 ] ; then
118     ${KERNEL_ROOT_DIR}/bin/salome/envSalome.py $*
119 else
120
121     ${KERNEL_ROOT_DIR}/bin/salome/envSalome.py /bin/bash --rcfile ${HOME}/${APPLI}/.bashrc
122 fi