Salome HOME
725ee246e4549766320fb0989069860ca7f544dc
[modules/kernel.git] / bin / killSalomeWithPort.py
1 #! /usr/bin/env python
2 #  -*- coding: iso-8859-1 -*-
3 # Copyright (C) 2007-2012  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 salome_utils import verbose
36 import Utils_Identity
37 import salome_utils
38
39 def getPiDict(port,appname='salome',full=True,hidden=True,hostname=None):
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 not hostname:
59         hostname = os.getenv("NSHOST")
60         if hostname: hostname = hostname.split(".")[0]
61         pass
62     if full:
63         # full path to the pidict file is requested
64         if hidden:
65             # new-style dot-prefixed pidict files
66             # are in the system-dependant temporary diretory
67             dir = getTmpDir()
68         else:
69             # old-style non-dot-prefixed pidict files
70             # are in the user's home directory
71             dir = os.getenv("HOME")
72             pass
73         pass
74     return generateFileName(dir,
75                             suffix="pidict",
76                             hidden=hidden,
77                             with_username=True,
78                             with_hostname=hostname or True,
79                             with_port=port,
80                             with_app=appname.upper())
81
82 def appliCleanOmniOrbConfig(port):
83     """
84     Remove omniorb config files related to the port in SALOME application:
85     - ${HOME}/${APPLI}/USERS/.omniORB_${USER}_${HOSTNAME}_${NSPORT}.cfg
86     - ${HOME}/${APPLI}/USERS/.omniORB_${USER}_last.cfg
87     the last is removed only if the link points to the first file.
88     """
89     from salome_utils import generateFileName, getUserName
90     home  = os.getenv("HOME")
91     appli = os.getenv("APPLI")
92     if appli is None:
93         #Run outside application context
94         pass
95     else:
96         dir = os.path.join(home, appli,"USERS")
97         omniorb_config      = generateFileName(dir, prefix="omniORB",
98                                                extension="cfg",
99                                                hidden=True,
100                                                with_username=True,
101                                                with_hostname=True,
102                                                with_port=port)
103         last_running_config = generateFileName(dir, prefix="omniORB",
104                                                with_username=True,
105                                                suffix="last",
106                                                extension="cfg",
107                                                hidden=True)
108         if os.access(last_running_config,os.F_OK):
109             pointedPath = os.readlink(last_running_config)
110             if pointedPath[0] != '/':
111                 pointedPath=os.path.join(os.path.dirname(last_running_config), pointedPath)
112             if pointedPath == omniorb_config:
113                 os.unlink(last_running_config)
114                 pass
115             pass
116         if os.access(omniorb_config,os.F_OK):
117             os.remove(omniorb_config)
118             pass
119
120         if os.path.lexists(last_running_config):return 
121
122         #try to relink last.cfg to an existing config file if any
123         files = glob.glob(os.path.join(os.environ["HOME"],Utils_Identity.getapplipath(),
124                                        "USERS",".omniORB_"+getUserName()+"_*.cfg"))
125         current_config=None
126         current=0
127         for f in files:
128           stat=os.stat(f)
129           if stat.st_atime > current:
130             current=stat.st_atime
131             current_config=f
132         if current_config:
133           os.symlink(os.path.normpath(current_config), last_running_config)
134
135         pass
136     pass
137
138 ########## kills all salome processes with the given port ##########
139
140 def shutdownMyPort(port):
141     """
142     Shutdown SALOME session running on the specified port.
143     Parameters:
144     - port - port number
145     """
146     from salome_utils import generateFileName
147
148     # set OMNIORB_CONFIG variable to the proper file
149     home  = os.getenv("HOME")
150     appli = os.getenv("APPLI")
151     kwargs = {}
152     if appli is not None: 
153         home = os.path.join(home, appli,"USERS")
154         kwargs["with_username"]=True
155         pass
156     omniorb_config = generateFileName(home, prefix="omniORB",
157                                       extension="cfg",
158                                       hidden=True,
159                                       with_hostname=True,
160                                       with_port=port,
161                                       **kwargs)
162     os.environ['OMNIORB_CONFIG'] = omniorb_config
163
164     # give the chance to the servers to shutdown properly
165     try:
166         import time
167         import salome_kernel
168         orb, lcc, naming_service, cm = salome_kernel.salome_kernel_init()
169         # shutdown all
170         lcc.shutdownServers()
171         # give some time to shutdown to complete
172         time.sleep(1)
173         # shutdown omniNames and notifd
174         salome_kernel.LifeCycleCORBA.killOmniNames()
175     except:
176         pass
177     pass
178     
179 def killMyPort(port):
180     """
181     Kill SALOME session running on the specified port.
182     Parameters:
183     - port - port number
184     """
185     from salome_utils import getShortHostName, getHostName
186     
187     # try to shutdown session nomally
188     import threading, time
189     threading.Thread(target=shutdownMyPort, args=(port,)).start()
190     time.sleep(3) # wait a little, then kill processes (should be done if shutdown procedure hangs up)
191     
192     # new-style dot-prefixed pidict file
193     filedict = getPiDict(port, hidden=True)
194     # provide compatibility with old-style pidict file (not dot-prefixed)
195     if not os.path.exists(filedict): filedict = getPiDict(port, hidden=False)
196     # provide compatibility with old-style pidict file (short hostname)
197     if not os.path.exists(filedict): filedict = getPiDict(port, hidden=True,  hostname=getShortHostName())
198     # provide compatibility with old-style pidict file (not dot-prefixed, short hostname)
199     if not os.path.exists(filedict): filedict = getPiDict(port, hidden=False, hostname=getShortHostName())
200     # provide compatibility with old-style pidict file (long hostname)
201     if not os.path.exists(filedict): filedict = getPiDict(port, hidden=True,  hostname=getHostName())
202     # provide compatibility with old-style pidict file (not dot-prefixed, long hostname)
203     if not os.path.exists(filedict): filedict = getPiDict(port, hidden=False, hostname=getHostName())
204     #
205     try:
206         fpid = open(filedict, 'r')
207         #
208         from salome_utils import generateFileName
209         if sys.platform == "win32":
210             username = os.getenv( "USERNAME" )
211         else:
212             username = os.getenv('USER')
213         path = os.path.join('/tmp/logs', username)
214         fpidomniNames = generateFileName(path,
215                                          prefix="",
216                                          suffix="Pid_omniNames",
217                                          extension="log",
218                                          with_port=port)
219         if not sys.platform == 'win32':        
220             cmd = 'pid=`ps -eo pid,command | egrep "[0-9] omniNames -start %s"` ; echo $pid > %s' % ( str(port), fpidomniNames )
221             a = os.system(cmd)
222             pass
223         try:
224             fpidomniNamesFile = open(fpidomniNames)
225             lines = fpidomniNamesFile.readlines()
226             fpidomniNamesFile.close()
227             os.remove(fpidomniNames)
228             for l in lines:
229                 try:
230                     pidfield = l.split()[0] # pid should be at the first position
231                     if sys.platform == "win32":
232                         import win32pm
233                         if verbose(): print 'stop process '+pidfield+' : omniNames'
234                         win32pm.killpid(int(pidfield),0)
235                     else:
236                         if verbose(): print 'stop process '+pidfield+' : omniNames'
237                         os.kill(int(pidfield),signal.SIGKILL)
238                         pass
239                     pass
240                 except:
241                     pass
242                 pass
243             pass
244         except:
245             pass
246         #
247         try:
248             process_ids=pickle.load(fpid)
249             fpid.close()
250             for process_id in process_ids:
251                 for pid, cmd in process_id.items():
252                     if verbose(): print "stop process %s : %s"% (pid, cmd[0])
253                     try:
254                         if sys.platform == "win32":
255                             import win32pm
256                             win32pm.killpid(int(pid),0)                            
257                         else:
258                             os.kill(int(pid),signal.SIGKILL)
259                             pass
260                         pass
261                     except:
262                         if verbose(): print "  ------------------ process %s : %s not found"% (pid, cmd[0])
263                         pass
264                     pass # for pid, cmd ...
265                 pass # for process_id ...
266             pass # try...
267         except:
268             pass
269         #
270         os.remove(filedict)
271         cmd='ps -eo pid,command | egrep "[0-9] omniNames -start '+str(port)+'" | sed -e "s%[^0-9]*\([0-9]*\) .*%\\1%g"'
272         pid = commands.getoutput(cmd)
273         a = ""
274         while pid and len(a.split()) < 2:
275             a = commands.getoutput("kill -9 " + pid)
276             pid = commands.getoutput(cmd)
277             #print pid
278             pass
279         pass
280     except:
281         print "Cannot find or open SALOME PIDs file for port", port
282         pass
283     #
284     appliCleanOmniOrbConfig(port)
285     pass
286             
287 def killNotifdAndClean(port):
288     """
289     Kill notifd daemon and clean application running on the specified port.
290     Parameters:
291     - port - port number
292     """
293     try:
294       filedict=getPiDict(port)
295       f=open(filedict, 'r')
296       pids=pickle.load(f)
297       for d in pids:
298         for pid,process in d.items():
299           if 'notifd' in process:
300             cmd='kill -9 %d'% pid
301             os.system(cmd)
302       os.remove(filedict)
303     except:
304       #import traceback
305       #traceback.print_exc()
306       pass
307
308     appliCleanOmniOrbConfig(port)
309
310 def killMyPortSpy(pid, port):
311     dt = 1.0
312     while 1:
313         if sys.platform == "win32":
314             from win32pm import killpid
315             if killpid(int(pid), 0) != 0:
316                 return
317         else:
318             from os import kill
319             try:
320                 kill(int(pid), 0)
321             except OSError, e:
322                 if e.errno != 3:
323                     return
324                 break
325             pass
326         from time import sleep
327         sleep(dt)
328         pass
329     filedict = getPiDict(port, hidden=True)
330     if not os.path.exists(filedict):
331         return
332     try:
333         import omniORB
334         orb = omniORB.CORBA.ORB_init(sys.argv, omniORB.CORBA.ORB_ID)
335         import SALOME_NamingServicePy
336         ns = SALOME_NamingServicePy.SALOME_NamingServicePy_i(orb)
337         import SALOME
338         session = ns.Resolve("/Kernel/Session")
339         assert session
340     except:
341         return
342     try:
343         status = session.GetStatSession()
344     except:
345         # -- session is in naming service but has crash
346         status = None
347         pass
348     if status:
349         if not status.activeGUI:
350             return
351         pass
352     killMyPort(port)
353     return
354
355 if __name__ == "__main__":
356     if sys.argv[1] == "--spy":
357         pid = sys.argv[2]
358         port = sys.argv[3]
359         killMyPortSpy(pid, port)
360         sys.exit(0)
361         pass
362     for port in sys.argv[1:]:
363         killMyPort(port)
364         pass
365     pass