Salome HOME
Merge from V5_1_main branch 24/11/2010
[modules/kernel.git] / bin / killSalomeWithPort.py
1 #! /usr/bin/env python
2 #  -*- coding: iso-8859-1 -*-
3 #  Copyright (C) 2007-2010  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 ## \file killSalomeWithPort.py
26 #  Stop all %SALOME servers from given sessions by killing them
27 #
28 #  The sessions are indicated by their ports on the command line as in :
29 #  \code
30 #  killSalomeWithPort.py 2811 2815
31 #  \endcode
32 #
33
34 import os, sys, pickle, signal, commands,glob
35 from launchConfigureParser import verbose
36 import Utils_Identity
37 import salome_utils
38
39 def getPiDict(port,appname='salome',full=True,hidden=True):
40     """
41     Get file with list of SALOME processes.
42     This file is located in the user's home directory
43     and named .<user>_<host>_<port>_SALOME_pidict
44     where
45     <user> is user name
46     <host> is host name
47     <port> is port number
48
49     Parameters:
50     - port    : port number
51     - appname : application name (default is 'SALOME')
52     - full    : if True, full path to the file is returned, otherwise only file name is returned
53     - hidden  : if True, file name is prefixed with . (dot) symbol; this internal parameter is used
54     to support compatibility with older versions of SALOME
55     """
56     from salome_utils import generateFileName, getTmpDir
57     dir = ""
58     if full:
59         # full path to the pidict file is requested
60         if hidden:
61             # new-style dot-prefixed pidict files
62             # are in the system-dependant temporary diretory
63             dir = getTmpDir()
64         else:
65             # old-style non-dot-prefixed pidict files
66             # are in the user's home directory
67             dir = os.getenv("HOME")
68             pass
69         pass
70     return generateFileName(dir,
71                             suffix="pidict",
72                             hidden=hidden,
73                             with_username=True,
74                             with_hostname=True,
75                             with_port=port,
76                             with_app=appname.upper())
77
78 def appliCleanOmniOrbConfig(port):
79     """
80     Remove omniorb config files related to the port in SALOME application:
81     - ${HOME}/${APPLI}/USERS/.omniORB_${USER}_${HOSTNAME}_${NSPORT}.cfg
82     - ${HOME}/${APPLI}/USERS/.omniORB_${USER}_last.cfg
83     the last is removed only if the link points to the first file.
84     """
85     from salome_utils import generateFileName
86     home  = os.getenv("HOME")
87     appli = os.getenv("APPLI")
88     if appli is None:
89         #Run outside application context
90         pass
91     else:
92         dir = os.path.join(home, appli,"USERS")
93         omniorb_config      = generateFileName(dir, prefix="omniORB",
94                                                extension="cfg",
95                                                hidden=True,
96                                                with_username=True,
97                                                with_hostname=True,
98                                                with_port=port)
99         last_running_config = generateFileName(dir, prefix="omniORB",
100                                                with_username=True,
101                                                suffix="last",
102                                                extension="cfg",
103                                                hidden=True)
104         if os.access(last_running_config,os.F_OK):
105             pointedPath = os.readlink(last_running_config)
106             if pointedPath[0] != '/':
107                 pointedPath=os.path.join(os.path.dirname(last_running_config), pointedPath)
108             if pointedPath == omniorb_config:
109                 os.unlink(last_running_config)
110                 pass
111             pass
112         if os.access(omniorb_config,os.F_OK):
113             os.remove(omniorb_config)
114             pass
115
116         #try to relink last.cfg to an existing config file if any
117         files = glob.glob(os.path.join(os.environ["HOME"],Utils_Identity.getapplipath(),
118                                        "USERS",".omniORB_"+salome_utils.getUserName()+"_*.cfg"))
119         current_config=None
120         current=0
121         for f in files:
122           stat=os.stat(f)
123           if stat.st_atime > current:
124             current=stat.st_atime
125             current_config=f
126         if current_config:
127           os.symlink(os.path.normpath(current_config), last_running_config)
128
129         pass
130     pass
131
132 ########## kills all salome processes with the given port ##########
133
134 def killMyPort(port):
135     """
136     Kill SALOME session running on the specified port.
137     Parameters:
138     - port - port number
139     """
140     # new-style dot-prefixed pidict file
141     filedict = getPiDict(port, hidden=True)
142     # provide compatibility with old-style pidict file (not dot-prefixed)
143     if not os.path.exists(filedict): filedict = getPiDict(port, hidden=False)
144     #
145     try:
146         fpid = open(filedict, 'r')
147         #
148         from salome_utils import generateFileName
149         if sys.platform == "win32":
150             username = os.getenv( "USERNAME" )
151         else:
152             username = os.getenv('USER')
153         path = os.path.join('/tmp/logs', username)
154         fpidomniNames = generateFileName(path,
155                                          prefix="",
156                                          suffix="Pid_omniNames",
157                                          extension="log",
158                                          with_port=port)
159         if not sys.platform == 'win32':        
160             cmd = 'pid=`ps -eo pid,command | egrep "[0-9] omniNames -start %s"` ; echo $pid > %s' % ( str(port), fpidomniNames )
161             a = os.system(cmd)
162             pass
163         try:
164             fpidomniNamesFile = open(fpidomniNames)
165             lines = fpidomniNamesFile.readlines()
166             fpidomniNamesFile.close()
167             os.remove(fpidomniNames)
168             for l in lines:
169                 try:
170                     pidfield = l.split()[0] # pid should be at the first position
171                     if sys.platform == "win32":
172                         import win32pm
173                         if verbose(): print 'stop process '+pidfield+' : omniNames'
174                         win32pm.killpid(int(pidfield),0)
175                     else:
176                         if verbose(): print 'stop process '+pidfield+' : omniNames'
177                         os.kill(int(pidfield),signal.SIGKILL)
178                         pass
179                     pass
180                 except:
181                     pass
182                 pass
183             pass
184         except:
185             pass
186         #
187         try:
188             process_ids=pickle.load(fpid)
189             fpid.close()
190             for process_id in process_ids:
191                 for pid, cmd in process_id.items():
192                     if verbose(): print "stop process %s : %s"% (pid, cmd[0])
193                     try:
194                         if sys.platform == "win32":
195                             import win32pm
196                             win32pm.killpid(int(pid),0)
197                         else:
198                             os.kill(int(pid),signal.SIGKILL)
199                             pass
200                         pass
201                     except:
202                         if verbose(): print "  ------------------ process %s : %s not found"% (pid, cmd[0])
203                         pass
204                     pass # for pid, cmd ...
205                 pass # for process_id ...
206             pass # try...
207         except:
208             pass
209         #
210         os.remove(filedict)
211         cmd='ps -eo pid,command | egrep "[0-9] omniNames -start '+str(port)+'" | sed -e "s%[^0-9]*\([0-9]*\) .*%\\1%g"'
212         pid = commands.getoutput(cmd)
213         a = ""
214         while pid and len(a.split()) < 2:
215             a = commands.getoutput("kill -9 " + pid)
216             pid = commands.getoutput(cmd)
217             #print pid
218             pass
219         pass
220     except:
221         print "Cannot find or open SALOME PIDs file for port", port
222         pass
223     #
224     appliCleanOmniOrbConfig(port)
225     pass
226             
227 def killNotifdAndClean(port):
228     """
229     Kill notifd daemon and clean application running on the specified port.
230     Parameters:
231     - port - port number
232     """
233     try:
234       filedict=getPiDict(port)
235       f=open(filedict, 'r')
236       pids=pickle.load(f)
237       for d in pids:
238         for pid,process in d.items():
239           if 'notifd' in process:
240             cmd='kill -9 %d'% pid
241             os.system(cmd)
242       os.remove(filedict)
243     except:
244       #import traceback
245       #traceback.print_exc()
246       pass
247
248     appliCleanOmniOrbConfig(port)
249     
250 if __name__ == "__main__":
251     for port in sys.argv[1:]:
252         killMyPort(port)
253         pass
254     pass