Change a variable type to avoid signed overflow; replace repeated '19999' constant...
[python.git] / Lib / multiprocessing / reduction.py
blob1813729e64eb2f1f178c57734105199690fec2a5
2 # Module to allow connection and socket objects to be transferred
3 # between processes
5 # multiprocessing/reduction.py
7 # Copyright (c) 2006-2008, R Oudkerk --- see COPYING.txt
10 __all__ = []
12 import os
13 import sys
14 import socket
15 import threading
17 import _multiprocessing
18 from multiprocessing import current_process
19 from multiprocessing.forking import Popen, duplicate, close, ForkingPickler
20 from multiprocessing.util import register_after_fork, debug, sub_debug
21 from multiprocessing.connection import Client, Listener
28 if not(sys.platform == 'win32' or hasattr(_multiprocessing, 'recvfd')):
29 raise ImportError('pickling of connections not supported')
32 # Platform specific definitions
35 if sys.platform == 'win32':
36 import _subprocess
37 from ._multiprocessing import win32
39 def send_handle(conn, handle, destination_pid):
40 process_handle = win32.OpenProcess(
41 win32.PROCESS_ALL_ACCESS, False, destination_pid
43 try:
44 new_handle = duplicate(handle, process_handle)
45 conn.send(new_handle)
46 finally:
47 close(process_handle)
49 def recv_handle(conn):
50 return conn.recv()
52 else:
53 def send_handle(conn, handle, destination_pid):
54 _multiprocessing.sendfd(conn.fileno(), handle)
56 def recv_handle(conn):
57 return _multiprocessing.recvfd(conn.fileno())
60 # Support for a per-process server thread which caches pickled handles
63 _cache = set()
65 def _reset(obj):
66 global _lock, _listener, _cache
67 for h in _cache:
68 close(h)
69 _cache.clear()
70 _lock = threading.Lock()
71 _listener = None
73 _reset(None)
74 register_after_fork(_reset, _reset)
76 def _get_listener():
77 global _listener
79 if _listener is None:
80 _lock.acquire()
81 try:
82 if _listener is None:
83 debug('starting listener and thread for sending handles')
84 _listener = Listener(authkey=current_process().authkey)
85 t = threading.Thread(target=_serve)
86 t.daemon = True
87 t.start()
88 finally:
89 _lock.release()
91 return _listener
93 def _serve():
94 from .util import is_exiting, sub_warning
96 while 1:
97 try:
98 conn = _listener.accept()
99 handle_wanted, destination_pid = conn.recv()
100 _cache.remove(handle_wanted)
101 send_handle(conn, handle_wanted, destination_pid)
102 close(handle_wanted)
103 conn.close()
104 except:
105 if not is_exiting():
106 import traceback
107 sub_warning(
108 'thread for sharing handles raised exception :\n' +
109 '-'*79 + '\n' + traceback.format_exc() + '-'*79
113 # Functions to be used for pickling/unpickling objects with handles
116 def reduce_handle(handle):
117 if Popen.thread_is_spawning():
118 return (None, Popen.duplicate_for_child(handle), True)
119 dup_handle = duplicate(handle)
120 _cache.add(dup_handle)
121 sub_debug('reducing handle %d', handle)
122 return (_get_listener().address, dup_handle, False)
124 def rebuild_handle(pickled_data):
125 address, handle, inherited = pickled_data
126 if inherited:
127 return handle
128 sub_debug('rebuilding handle %d', handle)
129 conn = Client(address, authkey=current_process().authkey)
130 conn.send((handle, os.getpid()))
131 new_handle = recv_handle(conn)
132 conn.close()
133 return new_handle
136 # Register `_multiprocessing.Connection` with `ForkingPickler`
139 def reduce_connection(conn):
140 rh = reduce_handle(conn.fileno())
141 return rebuild_connection, (rh, conn.readable, conn.writable)
143 def rebuild_connection(reduced_handle, readable, writable):
144 handle = rebuild_handle(reduced_handle)
145 return _multiprocessing.Connection(
146 handle, readable=readable, writable=writable
149 ForkingPickler.register(_multiprocessing.Connection, reduce_connection)
152 # Register `socket.socket` with `ForkingPickler`
155 def fromfd(fd, family, type_, proto=0):
156 s = socket.fromfd(fd, family, type_, proto)
157 if s.__class__ is not socket.socket:
158 s = socket.socket(_sock=s)
159 return s
161 def reduce_socket(s):
162 reduced_handle = reduce_handle(s.fileno())
163 return rebuild_socket, (reduced_handle, s.family, s.type, s.proto)
165 def rebuild_socket(reduced_handle, family, type_, proto):
166 fd = rebuild_handle(reduced_handle)
167 _sock = fromfd(fd, family, type_, proto)
168 close(fd)
169 return _sock
171 ForkingPickler.register(socket.socket, reduce_socket)
174 # Register `_multiprocessing.PipeConnection` with `ForkingPickler`
177 if sys.platform == 'win32':
179 def reduce_pipe_connection(conn):
180 rh = reduce_handle(conn.fileno())
181 return rebuild_pipe_connection, (rh, conn.readable, conn.writable)
183 def rebuild_pipe_connection(reduced_handle, readable, writable):
184 handle = rebuild_handle(reduced_handle)
185 return _multiprocessing.PipeConnection(
186 handle, readable=readable, writable=writable
189 ForkingPickler.register(_multiprocessing.PipeConnection, reduce_pipe_connection)