]> SALOME platform Git repositories - modules/yacs.git/blob - bin/appliskel/runRemote.sh
Salome HOME
dead646a762619e7c6f52d08a81db8cdccaceb0e
[modules/yacs.git] / bin / appliskel / runRemote.sh
1 #!/bin/bash
2 # Copyright (C) 2007-2012  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 # --- run command in SALOME environment from remote call, ssh or rsh
25 #     - SALOME configuration is defined by :
26 #        - list of MODULE_ROOT_DIR
27 #        - prerequisite environment
28 #        - specific configuration for a particular SALOME application
29 #     - These elements of configuration are defined locally on each computer
30 #       in the directory APPLI:
31 #     - A SALOME application distributed on several computers needs APPLI
32 #       directories on the same path ($APPLI) relative to $HOME directory
33 #       of the user, on each computer.
34 # --- call example (from cli76cd to cli76ce):
35 # ssh cli76ce ${APPLI}/runRemote.sh cli76cd 2810 SALOME_Container myContainerName
36 # --- local arguments
37 #     $0 : ${APPLI}/runRemote.sh: from arg name, rebuild and export $APPLI variable
38 #     $1 : computer name for CORBA name service (where SALOME was launched)
39 #     $2 : port for CORBA name service
40 #     $3 : WORKINGDIR (if $3 == WORKINDIR a working dir is given in $4. If not the working dir is $HOME)
41 #     $4 : if $3 == WORKINGDIR, the path to the workingdir
42 #     $5 (or $3 if no workingdir given) and following : local command to execute, with args
43 # --- retrieve APPLI path, relative to $HOME, set ${APPLI}
44
45 APPLI_HOME=`dirname $0`
46 export APPLI=`${APPLI_HOME}/getAppliPath.py`
47
48 # --- set the SALOME environment (prerequisites, MODULES_ROOT_DIR...)
49
50 . ${HOME}/${APPLI}/envd ${HOME}/${APPLI}
51
52 # --- set the OMNIORB_CONFIG file and environment relative to this run of SALOME
53
54 OMNIORB_CONFIG=${HOME}/${APPLI}/USERS/.omniORB_${USER}_$1_$2.cfg
55 export OMNIORB_CONFIG
56 NSHOST=$1
57 export NSHOST
58 NSPORT=$2
59 export NSPORT
60 initref="NameService=corbaname::"$1":$2"
61 echo "InitRef = $initref" > $OMNIORB_CONFIG
62
63 #go to the requested working directory if any
64 if test "x$3" == "xWORKINGDIR"; then
65   if test "x$4" = "x\$TEMPDIR"; then
66     #create a temp working dir and change to it
67     WDIR=`mktemp -d` && {
68       cd $WDIR
69     }
70   else
71     if test -d $4; then
72       #the dir exists, go to it
73       cd $4
74     else
75       if test -a $4; then
76         # It's a file do nothing
77         echo $4 "is an existing file. Can't use it as a working directory"
78       else
79         #It does not exists, create it
80         mkdir -p $4 && {
81           cd $4
82         }
83       fi
84     fi
85   fi
86   shift 4
87 else
88   shift 2
89 fi
90
91 # --- execute the command in the SALOME environment
92
93
94 # suppress --rcfile option because of problem on Mandriva2006 - B Secher mai 2007
95 #${KERNEL_ROOT_DIR}/bin/salome/envSalome.py /bin/sh --rcfile $HOME/$APPLI/.bashrc -c "$*"
96 ${KERNEL_ROOT_DIR}/bin/salome/envSalome.py /bin/sh -c "$*"