Salome HOME
Some Python refactoring and use argparse instead of optparse
[modules/kernel.git] / bin / PortManager.py
1 #!/usr/bin/env python
2 #  -*- coding: iso-8859-1 -*-
3 # Copyright (C) 2007-2014  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, or (at your option) any later version.
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 import os
25 import sys
26
27 try:
28   import cPickle as pickle #@UnusedImport
29 except:
30   import pickle #@Reimport
31
32 import logging
33 def createLogger():
34   logger = logging.getLogger(__name__)
35 #  logger.setLevel(logging.DEBUG)
36   ch = logging.StreamHandler()
37   ch.setLevel(logging.DEBUG)
38   formatter = logging.Formatter("%(levelname)s:%(threadName)s:%(message)s")
39   ch.setFormatter(formatter)
40   logger.addHandler(ch)
41   return logger
42 #
43 logger = createLogger()
44
45 #------------------------------------
46 # A file locker (Linux only)
47 def __acquire_lock(lock):
48   if sys.platform == "win32":
49     import msvcrt
50     # lock 1 byte: file is supposed to be zero-byte long
51     msvcrt.locking(lock.fileno(), msvcrt.LK_LOCK, 1)
52   else:
53     import fcntl
54     fcntl.flock(lock, fcntl.LOCK_EX)
55 #
56 def __release_lock(lock):
57   if sys.platform == "win32":
58     import msvcrt
59     msvcrt.locking(lock.fileno(), msvcrt.LK_UNLCK, 1)
60   else:
61     import fcntl
62     fcntl.flock(lock, fcntl.LOCK_UN)
63 #
64
65 def _getConfigurationFilename():
66   omniorbUserPath = os.getenv("OMNIORB_USER_PATH")
67
68   from salome_utils import generateFileName
69   portmanager_config = generateFileName(omniorbUserPath,
70                                         prefix="omniORB",
71                                         suffix="PortManager",
72                                         extension="cfg",
73                                         hidden=True)
74   import tempfile
75   temp = tempfile.NamedTemporaryFile()
76   lock_file = os.path.join(os.path.dirname(temp.name), ".omniORB_PortManager.lock")
77   temp.close()
78
79   return (portmanager_config, lock_file)
80 #
81
82 def __isPortUsed(port, busy_ports):
83   return (port in busy_ports) or __isNetworkConnectionActiveOnPort(port)
84 #
85
86 def __isNetworkConnectionActiveOnPort(port):
87   # :NOTE: Under windows:
88   #        netstat options -l and -t are unavailable
89   #        grep command is unavailable
90   from subprocess import Popen, PIPE
91   stdout, _ = Popen(['netstat','-an'], stdout=PIPE).communicate()
92   import StringIO
93   buf = StringIO.StringIO(stdout)
94   ports = buf.readlines()
95   # search for TCP - LISTEN connections
96   import re
97   regObj = re.compile( ".*tcp.*:([0-9]+).*:.*listen", re.IGNORECASE );
98   for item in ports:
99     try:
100       p = int(regObj.match(item).group(1))
101       if p == port: return True
102     except:
103       pass
104 #
105
106 def getPort(preferedPort=None):
107   logger.debug("GET PORT")
108
109   config_file, lock_file = _getConfigurationFilename()
110   oldmask = os.umask(0)
111   with open(lock_file, 'w') as lock:
112     # acquire lock
113     __acquire_lock(lock)
114
115     # read config
116     config = {'busy_ports':[]}
117     logger.debug("read configuration file")
118     try:
119       with open(config_file, 'r') as f:
120         config = pickle.load(f)
121     except IOError: # empty file
122       pass
123
124     logger.debug("load busy_ports: %s"%str(config["busy_ports"]))
125
126     # append port
127     busy_ports = config["busy_ports"]
128     port = preferedPort
129     if not port or __isPortUsed(port, busy_ports):
130       port = 2810
131       while __isPortUsed(port, busy_ports):
132         if port == 2810+100:
133           msg  = "\n"
134           msg += "Can't find a free port to launch omniNames\n"
135           msg += "Try to kill the running servers and then launch SALOME again.\n"
136           raise RuntimeError, msg
137         port = port + 1
138     logger.debug("found free port: %s"%str(port))
139     config["busy_ports"].append(port)
140
141     # write config
142     logger.debug("write busy_ports: %s"%str(config["busy_ports"]))
143     try:
144       with open(config_file, 'w') as f:
145         pickle.dump(config, f)
146     except IOError:
147       pass
148
149     # release lock
150     __release_lock(lock)
151   #
152
153   os.umask(oldmask)
154   logger.debug("get port: %s"%str(port))
155   return port
156 #
157
158 def releasePort(port):
159   port = int(port)
160   logger.debug("RELEASE PORT (%s)"%port)
161
162   config_file, lock_file = _getConfigurationFilename()
163   with open(lock_file, 'w') as lock:
164     # acquire lock
165     __acquire_lock(lock)
166
167     # read config
168     config = {'busy_ports':[]}
169     logger.debug("read configuration file")
170     try:
171       with open(config_file, 'r') as f:
172         config = pickle.load(f)
173     except IOError: # empty file
174       pass
175
176     logger.debug("load busy_ports: %s"%str(config["busy_ports"]))
177
178     # remove port from list
179     busy_ports = config["busy_ports"]
180
181     if port in busy_ports:
182       busy_ports.remove(port)
183       config["busy_ports"] = busy_ports
184
185     # write config
186     logger.debug("write busy_ports: %s"%str(config["busy_ports"]))
187     try:
188       with open(config_file, 'w') as f:
189         pickle.dump(config, f)
190     except IOError:
191       pass
192
193     # release lock
194     __release_lock(lock)
195
196     logger.debug("released port port: %s"%str(port))
197 #
198
199 def getBusyPorts():
200   config_file, lock_file = _getConfigurationFilename()
201   with open(lock_file, 'w') as lock:
202     # acquire lock
203     __acquire_lock(lock)
204
205     # read config
206     config = {'busy_ports':[]}
207     logger.debug("read configuration file")
208     try:
209       with open(config_file, 'r') as f:
210         config = pickle.load(f)
211     except IOError: # empty file
212       pass
213
214     logger.debug("load busy_ports: %s"%str(config["busy_ports"]))
215
216     busy_ports = config["busy_ports"]
217     # release lock
218     __release_lock(lock)
219
220     return busy_ports
221 #