Salome HOME
Fix CPPUNIT detection when its library directory contains -l (like -L/usr/lib/x86_64...
[modules/kernel.git] / bin / addToKillList.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 import os, sys, pickle, string, signal
26 from launchConfigureParser import verbose
27
28 ########## adds to the kill list of SALOME one more process ##########
29
30 def findFileDict():
31     """
32     Detect current SALOME session's port number.
33     Returns port number.
34     """
35     from salome_utils import getPortNumber
36     port = getPortNumber()
37     if verbose(): print "myport = ", port
38     return port
39     
40 def addToKillList(command_pid, command, port=None):
41     """
42     Add the process to the SALOME processes dictionary file.
43     Parameters:
44     - command_pid : command PID
45     - command     : command (string or list of strings)
46     - [port]      : SALOME port number; if this parameter is None (default),
47     it is detected automatically
48     """
49     # retrieve current processes dictionary
50     from killSalomeWithPort import getPiDict
51     if port is None: port=findFileDict()
52     filedict=getPiDict(port)
53     try:
54         fpid=open(filedict, 'r')
55         process_ids=pickle.load(fpid)
56         fpid.close()
57     except:
58         process_ids=[]
59         pass
60     # check if PID is already in dictionary
61     already_in=False
62     for process_id in process_ids:
63         for pid, cmd in process_id.items():
64             if int(pid) == int(command_pid):
65                 already_in=True
66                 break
67             pass
68         if already_in: break
69         pass
70     # add process to the dictionary
71     if not already_in:
72         import types
73         if type(command) == types.ListType: command=" ".join([str(c) for c in command])
74         command=command.split()[0]
75         try:
76             if verbose(): print "addToKillList: %s : %s" % ( str(command_pid), command )
77             process_ids.append({int(command_pid): [command]})
78             dir = os.path.dirname(filedict)
79             if not os.path.exists(dir): os.makedirs(dir, 0777)
80             fpid = open(filedict,'w')
81             pickle.dump(process_ids, fpid)
82             fpid.close()
83         except:
84             if verbose(): print "addToKillList: can not add command %s : %s to the kill list" % ( str(command_pid), command )
85             pass
86         pass
87     pass
88
89 def killList(port=None):
90     """
91     Kill all the processes listed in the SALOME processes dictionary file.
92     - [port]      : SALOME port number; if this parameter is None (default),
93     it is detected automatically
94     """
95     # retrieve processes dictionary
96     from killSalomeWithPort import getPiDict
97     if port is None: port=findFileDict()
98     # new-style dot-prefixed pidict file
99     filedict=getPiDict(port, hidden=True)
100     # provide compatibility with old-style pidict file (not dot-prefixed)
101     if not os.path.exists(filedict): filedict = getPiDict(port, hidden=False)
102     try:
103         fpid=open(filedict, 'r')
104         process_ids=pickle.load(fpid)
105         fpid.close()
106     except:
107         process_ids=[]
108         pass
109     # kill processes
110     for process_id in process_ids:
111         #print process_id
112         for pid, cmd in process_id.items():
113             print "stop process %s : %s"% (pid, cmd[0])
114             try:
115                 os.kill(int(pid),signal.SIGKILL)
116             except:
117                 print "  ------------------ process %s : %s inexistant"% (pid, cmd[0])
118                 pass
119             pass
120         pass
121     # remove processes dictionary file
122     os.remove(filedict)
123     pass
124
125 if __name__ == "__main__":
126     if verbose(): print sys.argv
127     addToKillList(sys.argv[1], sys.argv[2])
128     pass