Salome HOME
CMake: Sphinx: simplifying Win32 command
[modules/kernel.git] / bin / searchFreePort.py
1 #!/usr/bin/env python
2 #  -*- coding: iso-8859-1 -*-
3 # Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
4 #
5 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
6 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
7 #
8 # This library is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU Lesser General Public
10 # License as published by the Free Software Foundation; either
11 # version 2.1 of the License.
12 #
13 # This library is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 # Lesser General Public License for more details.
17 #
18 # You should have received a copy of the GNU Lesser General Public
19 # License along with this library; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 #
22 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #
24
25 def searchFreePort(args={}, save_config=1, use_port=None):
26   """
27   Search free port for SALOME session.
28   Returns first found free port number.
29   """
30   import sys, os, re, shutil
31
32   # :NOTE: Under windows:
33   #        netstat options -l and -t are unavailable
34   #        grep command is unavailable
35
36   from subprocess import Popen, PIPE
37   (stdout, stderr) = Popen(['netstat','-an'], stdout=PIPE).communicate()
38   import StringIO
39   buf = StringIO.StringIO(stdout)
40   ports = buf.readlines()
41
42   #
43   def portIsUsed(port, data):
44     regObj = re.compile( ".*tcp.*:([0-9]+).*:.*listen", re.IGNORECASE );
45     for item in data:
46       try:
47         p = int(regObj.match(item).group(1))
48         if p == port: return True
49         pass
50       except:
51         pass
52       pass
53     return False
54   #
55
56   def setup_config(nsport):
57       #
58       from salome_utils import generateFileName, getHostName
59       hostname = getHostName()
60       #
61       omniorbUserPath = os.getenv("OMNIORB_USER_PATH")
62       kwargs={}
63       if omniorbUserPath is not None:
64         kwargs["with_username"]=True
65       #
66       from ORBConfigFile import writeORBConfigFile
67       omniorb_config, giopsize = writeORBConfigFile(omniorbUserPath, hostname, nsport, kwargs)
68       args['port'] = os.environ['NSPORT']
69       #
70       if save_config:
71         last_running_config = generateFileName(omniorbUserPath, prefix="omniORB",
72                                                suffix="last",
73                                                extension="cfg",
74                                                hidden=True,
75                                                **kwargs)
76         os.environ['LAST_RUNNING_CONFIG'] = last_running_config
77         try:
78           if sys.platform == "win32":
79             import shutil
80             shutil.copyfile(omniorb_config, last_running_config)
81           else:
82             try:
83               if os.access(last_running_config, os.F_OK):
84                 os.remove(last_running_config)
85             except OSError:
86               pass
87             os.symlink(omniorb_config, last_running_config)
88             pass
89           pass
90         except:
91           pass
92       #
93
94   if use_port:
95     print "Check if port can be used: %d" % use_port,
96     if not portIsUsed(use_port, ports):
97       print "- OK"
98       setup_config(use_port)
99       return
100     else:
101       print "- KO: port is busy"
102     pass
103   #
104
105   print "Searching for a free port for naming service:",
106   #
107
108   NSPORT=2810
109   limit=NSPORT+100
110   #
111
112   while 1:
113     if not portIsUsed(NSPORT, ports):
114       print "%s - OK"%(NSPORT)
115       setup_config(NSPORT)
116       break
117     print "%s"%(NSPORT),
118     if NSPORT == limit:
119       msg  = "\n"
120       msg += "Can't find a free port to launch omniNames\n"
121       msg += "Try to kill the running servers and then launch SALOME again.\n"
122       raise RuntimeError, msg
123     NSPORT=NSPORT+1
124     pass
125   #
126
127   return