3 Provides the 'spawn()' function, a front-end to various platform-
4 specific functions for launching another program in a sub-process.
5 Also provides the 'find_executable()' to search the path for a given
14 from distutils
.errors
import DistutilsPlatformError
, DistutilsExecError
15 from distutils
import log
17 def spawn(cmd
, search_path
=1, verbose
=0, dry_run
=0):
18 """Run another program, specified as a command list 'cmd', in a new process.
20 'cmd' is just the argument list for the new process, ie.
21 cmd[0] is the program to run and cmd[1:] are the rest of its arguments.
22 There is no way to run a program with a name different from that of its
25 If 'search_path' is true (the default), the system's executable
26 search path will be used to find the program; otherwise, cmd[0]
27 must be the exact path to the executable. If 'dry_run' is true,
28 the command will not actually be run.
30 Raise DistutilsExecError if running the program fails in any way; just
33 if os
.name
== 'posix':
34 _spawn_posix(cmd
, search_path
, dry_run
=dry_run
)
36 _spawn_nt(cmd
, search_path
, dry_run
=dry_run
)
37 elif os
.name
== 'os2':
38 _spawn_os2(cmd
, search_path
, dry_run
=dry_run
)
40 raise DistutilsPlatformError
, \
41 "don't know how to spawn programs on platform '%s'" % os
.name
43 def _nt_quote_args(args
):
44 """Quote command-line arguments for DOS/Windows conventions.
46 Just wraps every argument which contains blanks in double quotes, and
47 returns a new argument list.
49 # XXX this doesn't seem very robust to me -- but if the Windows guys
50 # say it'll work, I guess I'll have to accept it. (What if an arg
51 # contains quotes? What other magic characters, other than spaces,
52 # have to be escaped? Is there an escaping mechanism other than
54 for i
, arg
in enumerate(args
):
56 args
[i
] = '"%s"' % arg
59 def _spawn_nt(cmd
, search_path
=1, verbose
=0, dry_run
=0):
61 cmd
= _nt_quote_args(cmd
)
63 # either we find one or it stays the same
64 executable
= find_executable(executable
) or executable
65 log
.info(' '.join([executable
] + cmd
[1:]))
67 # spawn for NT requires a full path to the .exe
69 rc
= os
.spawnv(os
.P_WAIT
, executable
, cmd
)
71 # this seems to happen when the command isn't found
72 raise DistutilsExecError
, \
73 "command '%s' failed: %s" % (cmd
[0], exc
[-1])
75 # and this reflects the command running but failing
76 raise DistutilsExecError
, \
77 "command '%s' failed with exit status %d" % (cmd
[0], rc
)
79 def _spawn_os2(cmd
, search_path
=1, verbose
=0, dry_run
=0):
82 # either we find one or it stays the same
83 executable
= find_executable(executable
) or executable
84 log
.info(' '.join([executable
] + cmd
[1:]))
86 # spawnv for OS/2 EMX requires a full path to the .exe
88 rc
= os
.spawnv(os
.P_WAIT
, executable
, cmd
)
90 # this seems to happen when the command isn't found
91 raise DistutilsExecError
, \
92 "command '%s' failed: %s" % (cmd
[0], exc
[-1])
94 # and this reflects the command running but failing
95 log
.debug("command '%s' failed with exit status %d" % (cmd
[0], rc
))
96 raise DistutilsExecError
, \
97 "command '%s' failed with exit status %d" % (cmd
[0], rc
)
100 def _spawn_posix(cmd
, search_path
=1, verbose
=0, dry_run
=0):
101 log
.info(' '.join(cmd
))
104 exec_fn
= search_path
and os
.execvp
or os
.execv
107 if pid
== 0: # in the child
111 sys
.stderr
.write("unable to execute %s: %s\n" %
112 (cmd
[0], e
.strerror
))
115 sys
.stderr
.write("unable to execute %s for unknown reasons" % cmd
[0])
117 else: # in the parent
118 # Loop until the child either exits or is terminated by a signal
119 # (ie. keep waiting if it's merely stopped)
122 pid
, status
= os
.waitpid(pid
, 0)
125 if exc
.errno
== errno
.EINTR
:
127 raise DistutilsExecError
, \
128 "command '%s' failed: %s" % (cmd
[0], exc
[-1])
129 if os
.WIFSIGNALED(status
):
130 raise DistutilsExecError
, \
131 "command '%s' terminated by signal %d" % \
132 (cmd
[0], os
.WTERMSIG(status
))
134 elif os
.WIFEXITED(status
):
135 exit_status
= os
.WEXITSTATUS(status
)
137 return # hey, it succeeded!
139 raise DistutilsExecError
, \
140 "command '%s' failed with exit status %d" % \
141 (cmd
[0], exit_status
)
143 elif os
.WIFSTOPPED(status
):
147 raise DistutilsExecError
, \
148 "unknown error executing '%s': termination status %d" % \
151 def find_executable(executable
, path
=None):
152 """Tries to find 'executable' in the directories listed in 'path'.
154 A string listing directories separated by 'os.pathsep'; defaults to
155 os.environ['PATH']. Returns the complete filename or None if not found.
158 path
= os
.environ
['PATH']
159 paths
= path
.split(os
.pathsep
)
160 base
, ext
= os
.path
.splitext(executable
)
162 if (sys
.platform
== 'win32' or os
.name
== 'os2') and (ext
!= '.exe'):
163 executable
= executable
+ '.exe'
165 if not os
.path
.isfile(executable
):
167 f
= os
.path
.join(p
, executable
)
168 if os
.path
.isfile(f
):
169 # the file exists, we have a shot at spawn working