1 # Copyright (C) 2015-2016 CEA/DEN, EDF R&D, OPEN CASCADE
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 # Lesser General Public License for more details.
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 # Author : Adrien Bruneton (CEA)
22 import subprocess as subp
24 from time import sleep
27 from SALOME import SALOME_Exception, ExceptionStruct, INTERNAL_ERROR
28 #from SALOME_utilities import MESSAGE
31 """ Debug function """
33 #os.system("echo \"%s\" >> /tmp/paravis_log.txt" % m)
35 class PVSERVER_impl(object):
36 """ The core implementation (non CORBA, or Study related).
37 See the IDL for the documentation.
39 MAX_PVSERVER_PORT_TRIES = 1000 # Maximum number of tries to get a free port for the PVServer
40 PVSERVER_DEFAULT_PORT = 11111 # First port being tried to launch the pvserver
43 self.pvserverPort = -1
44 self.pvserverPop = None # Popen object from subprocess module
45 self.isGUIConnected = False # whether there is an active connection from the GUI.
50 raise Exception("PVSERVER_Impl.__init__ : \"import paraview\" failed !")
51 # deduce dynamically PARAVIEW_ROOT_DIR from the paraview module location
52 self.PARAVIEW_ROOT_DIR = None
53 if sys.platform == "win32":
54 ZE_KEY_TO_FIND_PV_ROOT_DIR="Lib"
57 ZE_KEY_TO_FIND_PV_ROOT_DIR="lib"
59 tmp = os.path.sep.join(tmp.split('/'))
60 li=tmp.split(os.path.sep) ; li.reverse()
61 if ZE_KEY_TO_FIND_PV_ROOT_DIR not in li:
62 raise SALOME_Exception(ExceptionStruct(INTERNAL_ERROR,
63 "PVSERVER_Impl.__init__ : error during dynamic deduction of PARAVIEW_ROOT_DIR : Loc of paraview module is \"%s\" ! \"%s\" is supposed to be the key to deduce it !"%(tmp,ZE_KEY_TO_FIND_PV_ROOT_DIR),
65 li=li[li.index(ZE_KEY_TO_FIND_PV_ROOT_DIR)+upCount:] ; li.reverse()
66 self.PARAVIEW_ROOT_DIR = os.path.sep.join(li)
69 Private. Identify a free port to launch the PVServer.
70 This is done by trying to bind a socket on the port.
71 We are still subject to a race condition between this detection mechanism and the actual launch of the pvserver
74 def __getFreePort(self, startPort):
77 while cnt < self.MAX_PVSERVER_PORT_TRIES:
79 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
80 s.bind(('', currPort))
83 except socket.error as e:
87 raise SALOME_Exception(ExceptionStruct(INTERNAL_ERROR,
88 "[PVSERVER] maximum number of tries to retrieve a free port for the PVServer",
91 def FindOrStartPVServer( self, port ):
92 MESSAGE("[PVSERVER] FindOrStartPVServer ...")
95 if self.pvserverPop is None:
98 # Poll active server to check if still alive
99 self.pvserverPop.poll()
100 if not self.pvserverPop.returncode is None: # server terminated
104 return "cs://%s:%d" % (host, self.pvserverPort)
106 # (else) Server not alive, start it:
107 pvServerPath = os.path.join(self.PARAVIEW_ROOT_DIR, 'bin', 'pvserver')
110 port = self.__getFreePort(self.PVSERVER_DEFAULT_PORT)
111 self.pvserverPop = subp.Popen([pvServerPath, "--multi-clients", "--server-port=%d" % port, "--use-offscreen-rendering"])
112 sleep(3) # Give some time to the server to start up to avoid
113 # ugly messages on the client side saying that it cannot connect
114 # Is PID still alive? If yes, consider that the launch was successful
115 self.pvserverPop.poll()
116 if self.pvserverPop.returncode is None:
118 self.pvserverPort = port
119 MESSAGE("[PVSERVER] pvserver successfully launched on port %d" % port)
121 raise SALOME_Exception(ExceptionStruct(INTERNAL_ERROR,
122 "[PVSERVER] Unable to start PVServer on port %d!" % port,
124 return "cs://%s:%d" % (host, self.pvserverPort)
126 def StopPVServer( self ):
127 MESSAGE("[PVSERVER] Trying to stop PVServer (sending KILL) ...")
128 if not self.pvserverPop is None:
129 self.pvserverPop.poll()
130 if self.pvserverPop.returncode is None:
131 # Terminate if still running:
132 self.pvserverPop.terminate()
133 MESSAGE("[PVSERVER] KILL signal sent.")
135 MESSAGE("[PVSERVER] Nothing to kill.")
138 def SetGUIConnected( self, isConnected ):
139 self.isGUIConnected = isConnected
141 def GetGUIConnected( self ):
142 return self.isGUIConnected