Salome HOME
Management of scripts+args in SALOME shell and TUI (not yet in GUI)
[modules/yacs.git] / bin / runSession.py
1 #  -*- coding: iso-8859-1 -*-
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 import os
25 import sys
26 from optparse import OptionParser
27 from NSparam import getNSparams
28
29 # Use to display newlines (\n) in epilog
30 class MyParser(OptionParser):
31     def format_epilog(self, formatter):
32         return self.epilog
33 #
34
35 def configureSession(args=[]):
36   usage = "Usage: %prog [options] [command]"
37   epilog  = """\n
38 If the command is not given a shell is opened; else execute the given command.
39 Command may be a series of Python scripts with arguments: [PYTHON_FILE [args] [PYTHON_FILE [args]...]]
40 Python file arguments, if any, must be comma-separated (without blank characters) and prefixed by "args:" (without quotes), e.g. myscript.py args:arg1,arg2=val,...
41 \n
42 If PORT and MACHINE are not given, try to connect to the last active session on the local machine.
43 If PORT and MACHINE are given, try to connect to the remote session associated with PORT on MACHINE.
44 If MACHINE is not given, try to connect to the session associated to PORT on the local machine.
45 If PORT is not given, try to connect to the remote session associated to port 2810 on MACHINE.\n\n"""
46   parser = MyParser(usage=usage, epilog=epilog)
47   parser.add_option("-p", "--port", metavar="<port>", default=0,
48                     action="store", type="int", dest="port",
49                     help="The port to connect to."
50                     )
51   parser.add_option("-m", "--machine", metavar="<machine>", default=0,
52                     action="store", type="int", dest="machine",
53                     help="The machine to connect to."
54                     )
55   try:
56     (options, args) = parser.parse_args(args)
57   except Exception, e:
58     print e
59     return
60
61   port = options.port
62   machine = options.machine
63
64   # :GLITCH: this code defines specific environment variables (OMNIORB_CONFIG, NSPORT,
65   # NSHOST) which are later used by other modules. Working, but not really "safe"...
66   if not port:
67     if not machine:
68       # neither MACHINE nor PORT are given
69       # --- set omniORB configuration to current session if any
70       omniorbUserPath = os.environ['OMNIORB_USER_PATH']
71       fileOmniConfig = omniorbUserPath + '/.omniORB_' + os.environ['USER'] + '_last.cfg'
72       if os.path.isfile(fileOmniConfig):
73         os.environ['OMNIORB_CONFIG'] = fileOmniConfig
74         # --- set environment variables for port and hostname of NamingService
75         host, port = getNSparams()
76         os.environ['NSHOST'] = host
77         os.environ['NSPORT'] = port
78       else:
79         # No running session
80         os.environ['NSHOST'] = "no_host"
81         os.environ['NSPORT'] = "no_port"
82         pass
83     else:
84       # only MACHINE is given
85       _writeConfigFile(2810, os.environ['NSHOST'])
86     #
87   else:
88     if not machine:
89       # only PORT is given
90       os.environ['NSHOST'] = `hostname`
91       pass
92     # both MACHINE and PORT are given
93     _writeConfigFile(os.environ['NSPORT'], os.environ['NSHOST'])
94   #
95 #
96
97 # --- set the OMNIORB_CONFIG file and environment relative to this run of SALOME
98 def _writeConfigFile(port, host):
99   os.environ['NSPORT'] = port
100   os.environ['NSHOST'] = host
101
102   path = os.environ['OMNIORB_USER_PATH']
103   kwargs = {'with_username' : os.environ['USER']}
104
105   from ORBConfigFile import writeORBConfigFile
106   [ filename, msgSize ] = writeORBConfigFile(path, host, port, kwargs)
107
108   os.environ['OMNIORB_CONFIG'] = filename
109 #