forking.py 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. #
  2. # Module for starting a process object using os.fork() or CreateProcess()
  3. #
  4. # multiprocessing/forking.py
  5. #
  6. # Copyright (c) 2006-2008, R Oudkerk
  7. # All rights reserved.
  8. #
  9. # Redistribution and use in source and binary forms, with or without
  10. # modification, are permitted provided that the following conditions
  11. # are met:
  12. #
  13. # 1. Redistributions of source code must retain the above copyright
  14. # notice, this list of conditions and the following disclaimer.
  15. # 2. Redistributions in binary form must reproduce the above copyright
  16. # notice, this list of conditions and the following disclaimer in the
  17. # documentation and/or other materials provided with the distribution.
  18. # 3. Neither the name of author nor the names of any contributors may be
  19. # used to endorse or promote products derived from this software
  20. # without specific prior written permission.
  21. #
  22. # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND
  23. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25. # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  26. # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  27. # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  28. # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  29. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  31. # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  32. # SUCH DAMAGE.
  33. #
  34. import os
  35. import sys
  36. import signal
  37. import errno
  38. from multiprocessing import util, process
  39. __all__ = ['Popen', 'assert_spawning', 'exit', 'duplicate', 'close', 'ForkingPickler']
  40. #
  41. # Check that the current thread is spawning a child process
  42. #
  43. def assert_spawning(self):
  44. if not Popen.thread_is_spawning():
  45. raise RuntimeError(
  46. '%s objects should only be shared between processes'
  47. ' through inheritance' % type(self).__name__
  48. )
  49. #
  50. # Try making some callable types picklable
  51. #
  52. from pickle import Pickler
  53. class ForkingPickler(Pickler):
  54. dispatch = Pickler.dispatch.copy()
  55. @classmethod
  56. def register(cls, type, reduce):
  57. def dispatcher(self, obj):
  58. rv = reduce(obj)
  59. self.save_reduce(obj=obj, *rv)
  60. cls.dispatch[type] = dispatcher
  61. def _reduce_method(m):
  62. if m.im_self is None:
  63. return getattr, (m.im_class, m.im_func.func_name)
  64. else:
  65. return getattr, (m.im_self, m.im_func.func_name)
  66. ForkingPickler.register(type(ForkingPickler.save), _reduce_method)
  67. def _reduce_method_descriptor(m):
  68. return getattr, (m.__objclass__, m.__name__)
  69. ForkingPickler.register(type(list.append), _reduce_method_descriptor)
  70. ForkingPickler.register(type(int.__add__), _reduce_method_descriptor)
  71. #def _reduce_builtin_function_or_method(m):
  72. # return getattr, (m.__self__, m.__name__)
  73. #ForkingPickler.register(type(list().append), _reduce_builtin_function_or_method)
  74. #ForkingPickler.register(type(int().__add__), _reduce_builtin_function_or_method)
  75. try:
  76. from functools import partial
  77. except ImportError:
  78. pass
  79. else:
  80. def _reduce_partial(p):
  81. return _rebuild_partial, (p.func, p.args, p.keywords or {})
  82. def _rebuild_partial(func, args, keywords):
  83. return partial(func, *args, **keywords)
  84. ForkingPickler.register(partial, _reduce_partial)
  85. #
  86. # Unix
  87. #
  88. if sys.platform != 'win32':
  89. import time
  90. exit = os._exit
  91. duplicate = os.dup
  92. close = os.close
  93. #
  94. # We define a Popen class similar to the one from subprocess, but
  95. # whose constructor takes a process object as its argument.
  96. #
  97. class Popen(object):
  98. def __init__(self, process_obj):
  99. sys.stdout.flush()
  100. sys.stderr.flush()
  101. self.returncode = None
  102. self.pid = os.fork()
  103. if self.pid == 0:
  104. if 'random' in sys.modules:
  105. import random
  106. random.seed()
  107. code = process_obj._bootstrap()
  108. sys.stdout.flush()
  109. sys.stderr.flush()
  110. os._exit(code)
  111. def poll(self, flag=os.WNOHANG):
  112. if self.returncode is None:
  113. while True:
  114. try:
  115. pid, sts = os.waitpid(self.pid, flag)
  116. except os.error as e:
  117. if e.errno == errno.EINTR:
  118. continue
  119. # Child process not yet created. See #1731717
  120. # e.errno == errno.ECHILD == 10
  121. return None
  122. else:
  123. break
  124. if pid == self.pid:
  125. if os.WIFSIGNALED(sts):
  126. self.returncode = -os.WTERMSIG(sts)
  127. else:
  128. assert os.WIFEXITED(sts)
  129. self.returncode = os.WEXITSTATUS(sts)
  130. return self.returncode
  131. def wait(self, timeout=None):
  132. if timeout is None:
  133. return self.poll(0)
  134. deadline = time.time() + timeout
  135. delay = 0.0005
  136. while 1:
  137. res = self.poll()
  138. if res is not None:
  139. break
  140. remaining = deadline - time.time()
  141. if remaining <= 0:
  142. break
  143. delay = min(delay * 2, remaining, 0.05)
  144. time.sleep(delay)
  145. return res
  146. def terminate(self):
  147. if self.returncode is None:
  148. try:
  149. os.kill(self.pid, signal.SIGTERM)
  150. except OSError, e:
  151. if self.wait(timeout=0.1) is None:
  152. raise
  153. @staticmethod
  154. def thread_is_spawning():
  155. return False
  156. #
  157. # Windows
  158. #
  159. else:
  160. import thread
  161. import msvcrt
  162. import _subprocess
  163. import time
  164. from _multiprocessing import win32, Connection, PipeConnection
  165. from .util import Finalize
  166. #try:
  167. # from cPickle import dump, load, HIGHEST_PROTOCOL
  168. #except ImportError:
  169. from pickle import load, HIGHEST_PROTOCOL
  170. def dump(obj, file, protocol=None):
  171. ForkingPickler(file, protocol).dump(obj)
  172. #
  173. #
  174. #
  175. TERMINATE = 0x10000
  176. WINEXE = (sys.platform == 'win32' and getattr(sys, 'frozen', False))
  177. WINSERVICE = sys.executable.lower().endswith("pythonservice.exe")
  178. exit = win32.ExitProcess
  179. close = win32.CloseHandle
  180. #
  181. # _python_exe is the assumed path to the python executable.
  182. # People embedding Python want to modify it.
  183. #
  184. if WINSERVICE:
  185. _python_exe = os.path.join(sys.exec_prefix, 'python.exe')
  186. else:
  187. _python_exe = sys.executable
  188. def set_executable(exe):
  189. global _python_exe
  190. _python_exe = exe
  191. #
  192. #
  193. #
  194. def duplicate(handle, target_process=None, inheritable=False):
  195. if target_process is None:
  196. target_process = _subprocess.GetCurrentProcess()
  197. return _subprocess.DuplicateHandle(
  198. _subprocess.GetCurrentProcess(), handle, target_process,
  199. 0, inheritable, _subprocess.DUPLICATE_SAME_ACCESS
  200. ).Detach()
  201. #
  202. # We define a Popen class similar to the one from subprocess, but
  203. # whose constructor takes a process object as its argument.
  204. #
  205. class Popen(object):
  206. '''
  207. Start a subprocess to run the code of a process object
  208. '''
  209. _tls = thread._local()
  210. def __init__(self, process_obj):
  211. # create pipe for communication with child
  212. rfd, wfd = os.pipe()
  213. # get handle for read end of the pipe and make it inheritable
  214. rhandle = duplicate(msvcrt.get_osfhandle(rfd), inheritable=True)
  215. os.close(rfd)
  216. # start process
  217. cmd = get_command_line() + [rhandle]
  218. cmd = ' '.join('"%s"' % x for x in cmd)
  219. hp, ht, pid, tid = _subprocess.CreateProcess(
  220. _python_exe, cmd, None, None, 1, 0, None, None, None
  221. )
  222. ht.Close()
  223. close(rhandle)
  224. # set attributes of self
  225. self.pid = pid
  226. self.returncode = None
  227. self._handle = hp
  228. # send information to child
  229. prep_data = get_preparation_data(process_obj._name)
  230. to_child = os.fdopen(wfd, 'wb')
  231. Popen._tls.process_handle = int(hp)
  232. try:
  233. dump(prep_data, to_child, HIGHEST_PROTOCOL)
  234. dump(process_obj, to_child, HIGHEST_PROTOCOL)
  235. finally:
  236. del Popen._tls.process_handle
  237. to_child.close()
  238. @staticmethod
  239. def thread_is_spawning():
  240. return getattr(Popen._tls, 'process_handle', None) is not None
  241. @staticmethod
  242. def duplicate_for_child(handle):
  243. return duplicate(handle, Popen._tls.process_handle)
  244. def wait(self, timeout=None):
  245. if self.returncode is None:
  246. if timeout is None:
  247. msecs = _subprocess.INFINITE
  248. else:
  249. msecs = max(0, int(timeout * 1000 + 0.5))
  250. res = _subprocess.WaitForSingleObject(int(self._handle), msecs)
  251. if res == _subprocess.WAIT_OBJECT_0:
  252. code = _subprocess.GetExitCodeProcess(self._handle)
  253. if code == TERMINATE:
  254. code = -signal.SIGTERM
  255. self.returncode = code
  256. return self.returncode
  257. def poll(self):
  258. return self.wait(timeout=0)
  259. def terminate(self):
  260. if self.returncode is None:
  261. try:
  262. _subprocess.TerminateProcess(int(self._handle), TERMINATE)
  263. except WindowsError:
  264. if self.wait(timeout=0.1) is None:
  265. raise
  266. #
  267. #
  268. #
  269. def is_forking(argv):
  270. '''
  271. Return whether commandline indicates we are forking
  272. '''
  273. if len(argv) >= 2 and argv[1] == '--multiprocessing-fork':
  274. assert len(argv) == 3
  275. return True
  276. else:
  277. return False
  278. def freeze_support():
  279. '''
  280. Run code for process object if this in not the main process
  281. '''
  282. if is_forking(sys.argv):
  283. main()
  284. sys.exit()
  285. def get_command_line():
  286. '''
  287. Returns prefix of command line used for spawning a child process
  288. '''
  289. if getattr(process.current_process(), '_inheriting', False):
  290. raise RuntimeError('''
  291. Attempt to start a new process before the current process
  292. has finished its bootstrapping phase.
  293. This probably means that you are on Windows and you have
  294. forgotten to use the proper idiom in the main module:
  295. if __name__ == '__main__':
  296. freeze_support()
  297. ...
  298. The "freeze_support()" line can be omitted if the program
  299. is not going to be frozen to produce a Windows executable.''')
  300. if getattr(sys, 'frozen', False):
  301. return [sys.executable, '--multiprocessing-fork']
  302. else:
  303. prog = 'from multiprocessing.forking import main; main()'
  304. opts = util._args_from_interpreter_flags()
  305. return [_python_exe] + opts + ['-c', prog, '--multiprocessing-fork']
  306. def main():
  307. '''
  308. Run code specified by data received over pipe
  309. '''
  310. assert is_forking(sys.argv)
  311. handle = int(sys.argv[-1])
  312. fd = msvcrt.open_osfhandle(handle, os.O_RDONLY)
  313. from_parent = os.fdopen(fd, 'rb')
  314. process.current_process()._inheriting = True
  315. preparation_data = load(from_parent)
  316. prepare(preparation_data)
  317. self = load(from_parent)
  318. process.current_process()._inheriting = False
  319. from_parent.close()
  320. exitcode = self._bootstrap()
  321. exit(exitcode)
  322. def get_preparation_data(name):
  323. '''
  324. Return info about parent needed by child to unpickle process object
  325. '''
  326. from .util import _logger, _log_to_stderr
  327. d = dict(
  328. name=name,
  329. sys_path=sys.path,
  330. sys_argv=sys.argv,
  331. log_to_stderr=_log_to_stderr,
  332. orig_dir=process.ORIGINAL_DIR,
  333. authkey=process.current_process().authkey,
  334. )
  335. if _logger is not None:
  336. d['log_level'] = _logger.getEffectiveLevel()
  337. if not WINEXE and not WINSERVICE:
  338. main_path = getattr(sys.modules['__main__'], '__file__', None)
  339. if not main_path and sys.argv[0] not in ('', '-c'):
  340. main_path = sys.argv[0]
  341. if main_path is not None:
  342. if not os.path.isabs(main_path) and \
  343. process.ORIGINAL_DIR is not None:
  344. main_path = os.path.join(process.ORIGINAL_DIR, main_path)
  345. d['main_path'] = os.path.normpath(main_path)
  346. return d
  347. #
  348. # Make (Pipe)Connection picklable
  349. #
  350. def reduce_connection(conn):
  351. if not Popen.thread_is_spawning():
  352. raise RuntimeError(
  353. 'By default %s objects can only be shared between processes\n'
  354. 'using inheritance' % type(conn).__name__
  355. )
  356. return type(conn), (Popen.duplicate_for_child(conn.fileno()),
  357. conn.readable, conn.writable)
  358. ForkingPickler.register(Connection, reduce_connection)
  359. ForkingPickler.register(PipeConnection, reduce_connection)
  360. #
  361. # Prepare current process
  362. #
  363. old_main_modules = []
  364. def prepare(data):
  365. '''
  366. Try to get current process ready to unpickle process object
  367. '''
  368. old_main_modules.append(sys.modules['__main__'])
  369. if 'name' in data:
  370. process.current_process().name = data['name']
  371. if 'authkey' in data:
  372. process.current_process()._authkey = data['authkey']
  373. if 'log_to_stderr' in data and data['log_to_stderr']:
  374. util.log_to_stderr()
  375. if 'log_level' in data:
  376. util.get_logger().setLevel(data['log_level'])
  377. if 'sys_path' in data:
  378. sys.path = data['sys_path']
  379. if 'sys_argv' in data:
  380. sys.argv = data['sys_argv']
  381. if 'dir' in data:
  382. os.chdir(data['dir'])
  383. if 'orig_dir' in data:
  384. process.ORIGINAL_DIR = data['orig_dir']
  385. if 'main_path' in data:
  386. # XXX (ncoghlan): The following code makes several bogus
  387. # assumptions regarding the relationship between __file__
  388. # and a module's real name. See PEP 302 and issue #10845
  389. # The problem is resolved properly in Python 3.4+, as
  390. # described in issue #19946
  391. main_path = data['main_path']
  392. main_name = os.path.splitext(os.path.basename(main_path))[0]
  393. if main_name == '__init__':
  394. main_name = os.path.basename(os.path.dirname(main_path))
  395. if main_name == '__main__':
  396. # For directory and zipfile execution, we assume an implicit
  397. # "if __name__ == '__main__':" around the module, and don't
  398. # rerun the main module code in spawned processes
  399. main_module = sys.modules['__main__']
  400. main_module.__file__ = main_path
  401. elif main_name != 'ipython':
  402. # Main modules not actually called __main__.py may
  403. # contain additional code that should still be executed
  404. import imp
  405. if main_path is None:
  406. dirs = None
  407. elif os.path.basename(main_path).startswith('__init__.py'):
  408. dirs = [os.path.dirname(os.path.dirname(main_path))]
  409. else:
  410. dirs = [os.path.dirname(main_path)]
  411. assert main_name not in sys.modules, main_name
  412. file, path_name, etc = imp.find_module(main_name, dirs)
  413. try:
  414. # We would like to do "imp.load_module('__main__', ...)"
  415. # here. However, that would cause 'if __name__ ==
  416. # "__main__"' clauses to be executed.
  417. main_module = imp.load_module(
  418. '__parents_main__', file, path_name, etc
  419. )
  420. finally:
  421. if file:
  422. file.close()
  423. sys.modules['__main__'] = main_module
  424. main_module.__name__ = '__main__'
  425. # Try to make the potentially picklable objects in
  426. # sys.modules['__main__'] realize they are in the main
  427. # module -- somewhat ugly.
  428. for obj in main_module.__dict__.values():
  429. try:
  430. if obj.__module__ == '__parents_main__':
  431. obj.__module__ = '__main__'
  432. except Exception:
  433. pass