Salome HOME
Windows fix
[modules/kernel.git] / bin / server.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, string
26 from salome_utils import getHostName
27 process_id = {}
28
29 # -----------------------------------------------------------------------------
30 #
31 # Definition des classes d'objets pour le lancement des Server CORBA
32 #
33
34 class Server:
35     """Generic class for CORBA server launch"""
36     
37     server_launch_mode = "daemon"
38
39     def initArgs(self):
40         self.PID=None
41         self.CMD=[]
42         self.ARGS=[]
43         if self.args.get('xterm'):
44           if sys.platform != "win32":
45             self.ARGS=['xterm', '-iconic', '-sb', '-sl', '500', '-hold']
46           else:
47             self.ARGS=['cmd', '/c', 'start  cmd.exe', '/K']
48
49     def __init__(self,args):
50         self.args=args
51         self.initArgs()
52
53     @staticmethod
54     def set_server_launch_mode(mode):
55       if mode == "daemon" or mode == "fork":
56         Server.server_launch_mode = mode
57       else:
58         raise Exception("Unsupported server launch mode: %s" % mode)
59
60     def run(self):
61         global process_id
62         myargs=self.ARGS
63         if self.args.get('xterm'):
64             # (Debian) send LD_LIBRARY_PATH to children shells (xterm)
65             if sys.platform != "win32":
66               env_ld_library_path=['env', 'LD_LIBRARY_PATH='
67                                    + os.getenv("LD_LIBRARY_PATH")]
68               myargs = myargs +['-T']+self.CMD[:1]+['-e'] + env_ld_library_path
69         command = myargs + self.CMD
70         #print "command = ", command
71         if sys.platform == "win32":
72           import win32pm
73           #cmd_str = "\"" + string.join(command, " ") + "\""
74           #print cmd_str
75           #pid = win32pm.spawnpid( cmd_str )
76           pid = win32pm.spawnpid( string.join(command, " "), '-nc' )
77           #pid = win32pm.spawnpid( string.join(command, " ") )
78         elif Server.server_launch_mode == "fork":
79           pid = os.spawnvp(os.P_NOWAIT, command[0], command)
80         else: # Server launch mode is daemon
81           pid=self.daemonize(command)
82         if pid is not None:
83           #store process pid if it really exists
84           process_id[pid]=self.CMD
85         self.PID = pid
86         return pid
87
88     def daemonize(self,args):
89         # to daemonize a process need to do the UNIX double-fork magic
90         # see Stevens, "Advanced Programming in the UNIX Environment" for details (ISBN 0201563177)
91         # and UNIX Programming FAQ 1.7 How do I get my program to act like a daemon?
92         #     http://www.erlenstar.demon.co.uk/unix/faq_2.html#SEC16
93         #open a pipe
94         c2pread, c2pwrite = os.pipe()
95         #do first fork
96         pid=os.fork()
97         if pid > 0:
98           #first parent
99           os.close(c2pwrite)
100           #receive real pid from child
101           data=os.read(c2pread,24) #read 24 bytes
102           os.waitpid(pid,0) #remove zombie
103           os.close(c2pread)
104           # return : first parent
105           childpid=int(data)
106           if childpid==-1:
107             return None
108           try:
109             os.kill(childpid,0)
110             return childpid
111           except:
112             return None
113
114         #first child
115         # decouple from parent environment
116         os.setsid()
117         os.close(c2pread)
118
119         # do second fork : second child not a session leader
120         try:
121           pid = os.fork()
122           if pid > 0:
123             #send real pid to parent
124             os.write(c2pwrite,"%d" % pid)
125             os.close(c2pwrite)
126             # exit from second parent
127             os._exit(0)
128         except OSError, e:
129           print >>sys.stderr, "fork #2 failed: %d (%s)" % (e.errno, e.strerror)
130           os.write(c2pwrite,"-1")
131           os.close(c2pwrite)
132           sys.exit(1)
133
134         #I am a daemon
135         os.close(0) #close stdin
136         os.open("/dev/null", os.O_RDWR)  # redirect standard input (0) to /dev/null
137         try:
138           os.execvp(args[0], args)
139         except OSError, e:
140           if args[0] != "notifd":
141             print >>sys.stderr, "(%s) launch failed: %d (%s)" % (args[0],e.errno, e.strerror)
142             pass
143           os._exit(127)