Salome HOME
Updated copyright comment
[modules/kernel.git] / src / Logger / Test / TestKiller.py
index cda030b60752478c3b8bcc0e1bc28e1ac8ef37a7..d45b3aab1d9297550f9cab6b6498a10365b5e224 100644 (file)
@@ -1,5 +1,45 @@
+#  -*- coding: iso-8859-1 -*-
+# Copyright (C) 2007-2024  CEA, EDF, OPEN CASCADE
+#
+# Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+# CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
+
+import sys, os,signal,subprocess
+
+def getCurrentPort():
+    fic=os.environ['OMNIORB_CONFIG']
+    with open(fic,'r') as f:
+        line=f.readline()
+    port=line.split(':')[-1][0:4]
+    return port
+
+
+def closeSalome():
+    port = getCurrentPort()
+    try:
+        from PortManager import releasePort
+        print("### release current port:", port)
+        releasePort(port)
+    except Exception:
+        pass
 
-import sys, os,signal,string,commands
 
 def killNamingService():
     """
@@ -8,14 +48,14 @@ def killNamingService():
     Works only with a single line $OMNIORB_CONFIG like
     InitRef = NameService=corbaname::<hostname>:<port>
     """
-    fic=os.environ['OMNIORB_CONFIG']
-    f=open(fic,'r')
-    line=f.readline()
-    f.close()
-    port=string.split(line,':')[-1][0:4]
-    command='ps -eo pid,command | grep "omniNames -start '+str(port)+'"'
-    pid=string.split(commands.getoutput(command))[0]
-    os.kill(int(pid),signal.SIGKILL)
+    port = getCurrentPort()
+    command='ps -eo pid,command | grep "omniNames -start '+str(port)+'" | grep --invert-match grep'
+    output_com = subprocess.getoutput(command)
+    try:
+      pid=output_com.split()[0]
+      os.kill(int(pid),signal.SIGKILL)
+    except Exception:
+      print("killNamingService failed.")
 
 
 def killProcess(process_id):
@@ -24,12 +64,12 @@ def killProcess(process_id):
     generated by runSalome.Server() class and derived, (method run).
     kills also local Naming server.
     """
-    for pid, cmd in process_id.items():
-        print "stop process %s : %s"% (pid, cmd[0])
+    for pid, cmd in list(process_id.items()):
+        print("stop process %s : %s"% (pid, cmd[0]))
         try:
             os.kill(int(pid),signal.SIGKILL)
-        except:
-            print "  ---- process %s : %s inexistant"% (pid, cmd[0])
+        except Exception:
+            print("  ---- process %s : %s inexistant"% (pid, cmd[0]))
             pass
         del process_id[pid]
         pass