Salome HOME
Integration of 0019971: A patch for cmake compilation.
[modules/kernel.git] / bin / NSparam.py
1 #!/usr/bin/env python
2
3 # Copyright (C) 2005  OPEN CASCADE, CEA, EDF R&D, LEG
4 #           PRINCIPIA R&D, EADS CCR, Lip6, BV, CEDRAT
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either 
8 # version 2.1 of the License.
9
10 # This library is distributed in the hope that it will be useful 
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 # Lesser General Public License for more details.
14
15 # You should have received a copy of the GNU Lesser General Public  
16 # License along with this library; if not, write to the Free Software 
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20
21
22 import sys,os
23
24 def getNSparams(info=""):
25     """
26     check environment for omniORB configuration file.
27     parse the file to find the line defining naming service  host and port,
28     set environment variables NSPORT and NSHOST,
29     get host and port,
30     if   info==host print host
31     elif info==port print host
32     else    print 2 strings on stdout on one line: host port
33     """
34     from salome_utils import getORBcfgInfo
35     my_version, my_host, my_port = getORBcfgInfo()
36     if info=='host':
37         # keep print, stdout used in shell
38         print my_host
39         os.environ['NSHOST']=my_host
40         return my_host
41         pass
42     elif info=='port':
43         # keep print, stdout used in shell
44         print my_port
45         os.environ['NSPORT']=my_port
46         return my_port
47         pass
48     else:
49         # keep print, stdout used in shell
50         print  my_host, my_port
51         return my_host, my_port
52     pass
53
54 # ------------------------------------------------------------------------
55
56 if __name__ == "__main__":
57     if len(sys.argv) >1:        
58         if sys.argv[1]=='host':
59             getNSparams('host')
60             pass
61         elif sys.argv[1]=='port':
62             getNSparams('port')
63             pass
64         else:
65             getNSparams()
66             pass
67         pass
68     else:
69         getNSparams()
70         pass
71     pass