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