blob: b59ac9fc6199a8923722c815a09e066919943f75 [file] [log] [blame]
Benjamin Petersone711caf2008-06-11 16:44:04 +00001#
2# Module providing various facilities to other parts of the package
3#
4# multiprocessing/util.py
5#
R. David Murray3fc969a2010-12-14 01:38:16 +00006# 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.
Benjamin Petersone711caf2008-06-11 16:44:04 +000033#
34
Antoine Pitrou176f07d2011-06-06 19:35:31 +020035import functools
Benjamin Petersone711caf2008-06-11 16:44:04 +000036import itertools
37import weakref
Benjamin Petersone711caf2008-06-11 16:44:04 +000038import atexit
Antoine Pitrou176f07d2011-06-06 19:35:31 +020039import select
Benjamin Petersone711caf2008-06-11 16:44:04 +000040import threading # we want threading to install it's
41 # cleanup function before multiprocessing does
42
43from multiprocessing.process import current_process, active_children
44
45__all__ = [
46 'sub_debug', 'debug', 'info', 'sub_warning', 'get_logger',
47 'log_to_stderr', 'get_temp_dir', 'register_after_fork',
Jesse Noller41faa542009-01-25 03:45:53 +000048 'is_exiting', 'Finalize', 'ForkAwareThreadLock', 'ForkAwareLocal',
49 'SUBDEBUG', 'SUBWARNING',
Benjamin Petersone711caf2008-06-11 16:44:04 +000050 ]
51
52#
53# Logging
54#
55
56NOTSET = 0
57SUBDEBUG = 5
58DEBUG = 10
59INFO = 20
60SUBWARNING = 25
61
62LOGGER_NAME = 'multiprocessing'
63DEFAULT_LOGGING_FORMAT = '[%(levelname)s/%(processName)s] %(message)s'
64
65_logger = None
66_log_to_stderr = False
67
68def sub_debug(msg, *args):
69 if _logger:
70 _logger.log(SUBDEBUG, msg, *args)
71
72def debug(msg, *args):
73 if _logger:
74 _logger.log(DEBUG, msg, *args)
75
76def info(msg, *args):
77 if _logger:
78 _logger.log(INFO, msg, *args)
79
80def sub_warning(msg, *args):
81 if _logger:
82 _logger.log(SUBWARNING, msg, *args)
83
84def get_logger():
85 '''
86 Returns logger used by multiprocessing
87 '''
88 global _logger
Jesse Noller41faa542009-01-25 03:45:53 +000089 import logging, atexit
Benjamin Petersone711caf2008-06-11 16:44:04 +000090
Jesse Noller41faa542009-01-25 03:45:53 +000091 logging._acquireLock()
92 try:
93 if not _logger:
Benjamin Petersone711caf2008-06-11 16:44:04 +000094
Jesse Noller41faa542009-01-25 03:45:53 +000095 _logger = logging.getLogger(LOGGER_NAME)
96 _logger.propagate = 0
97 logging.addLevelName(SUBDEBUG, 'SUBDEBUG')
98 logging.addLevelName(SUBWARNING, 'SUBWARNING')
Benjamin Petersone711caf2008-06-11 16:44:04 +000099
Jesse Noller41faa542009-01-25 03:45:53 +0000100 # XXX multiprocessing should cleanup before logging
101 if hasattr(atexit, 'unregister'):
102 atexit.unregister(_exit_function)
103 atexit.register(_exit_function)
104 else:
105 atexit._exithandlers.remove((_exit_function, (), {}))
106 atexit._exithandlers.append((_exit_function, (), {}))
107
108 finally:
109 logging._releaseLock()
Benjamin Petersone711caf2008-06-11 16:44:04 +0000110
111 return _logger
112
Benjamin Petersone711caf2008-06-11 16:44:04 +0000113def log_to_stderr(level=None):
114 '''
115 Turn on logging and add a handler which prints to stderr
116 '''
117 global _log_to_stderr
118 import logging
Jesse Noller41faa542009-01-25 03:45:53 +0000119
Benjamin Petersone711caf2008-06-11 16:44:04 +0000120 logger = get_logger()
121 formatter = logging.Formatter(DEFAULT_LOGGING_FORMAT)
122 handler = logging.StreamHandler()
123 handler.setFormatter(formatter)
124 logger.addHandler(handler)
Jesse Noller41faa542009-01-25 03:45:53 +0000125
126 if level:
Benjamin Petersone711caf2008-06-11 16:44:04 +0000127 logger.setLevel(level)
128 _log_to_stderr = True
Jesse Noller41faa542009-01-25 03:45:53 +0000129 return _logger
Benjamin Petersone711caf2008-06-11 16:44:04 +0000130
131#
132# Function returning a temp directory which will be removed on exit
133#
134
135def get_temp_dir():
136 # get name of a temp directory which will be automatically cleaned up
137 if current_process()._tempdir is None:
138 import shutil, tempfile
139 tempdir = tempfile.mkdtemp(prefix='pymp-')
140 info('created temp directory %s', tempdir)
141 Finalize(None, shutil.rmtree, args=[tempdir], exitpriority=-100)
142 current_process()._tempdir = tempdir
143 return current_process()._tempdir
144
145#
146# Support for reinitialization of objects when bootstrapping a child process
147#
148
149_afterfork_registry = weakref.WeakValueDictionary()
150_afterfork_counter = itertools.count()
151
152def _run_after_forkers():
153 items = list(_afterfork_registry.items())
154 items.sort()
155 for (index, ident, func), obj in items:
156 try:
157 func(obj)
158 except Exception as e:
159 info('after forker raised exception %s', e)
160
161def register_after_fork(obj, func):
162 _afterfork_registry[(next(_afterfork_counter), id(obj), func)] = obj
163
164#
165# Finalization using weakrefs
166#
167
168_finalizer_registry = {}
169_finalizer_counter = itertools.count()
170
171
172class Finalize(object):
173 '''
174 Class which supports object finalization using weakrefs
175 '''
176 def __init__(self, obj, callback, args=(), kwargs=None, exitpriority=None):
177 assert exitpriority is None or type(exitpriority) is int
178
179 if obj is not None:
180 self._weakref = weakref.ref(obj, self)
181 else:
182 assert exitpriority is not None
183
184 self._callback = callback
185 self._args = args
186 self._kwargs = kwargs or {}
187 self._key = (exitpriority, next(_finalizer_counter))
188
189 _finalizer_registry[self._key] = self
190
191 def __call__(self, wr=None):
192 '''
193 Run the callback unless it has already been called or cancelled
194 '''
195 try:
196 del _finalizer_registry[self._key]
197 except KeyError:
198 sub_debug('finalizer no longer registered')
199 else:
200 sub_debug('finalizer calling %s with args %s and kwargs %s',
201 self._callback, self._args, self._kwargs)
202 res = self._callback(*self._args, **self._kwargs)
203 self._weakref = self._callback = self._args = \
204 self._kwargs = self._key = None
205 return res
206
207 def cancel(self):
208 '''
209 Cancel finalization of the object
210 '''
211 try:
212 del _finalizer_registry[self._key]
213 except KeyError:
214 pass
215 else:
216 self._weakref = self._callback = self._args = \
217 self._kwargs = self._key = None
218
219 def still_active(self):
220 '''
221 Return whether this finalizer is still waiting to invoke callback
222 '''
223 return self._key in _finalizer_registry
224
225 def __repr__(self):
226 try:
227 obj = self._weakref()
228 except (AttributeError, TypeError):
229 obj = None
230
231 if obj is None:
232 return '<Finalize object, dead>'
233
234 x = '<Finalize object, callback=%s' % \
235 getattr(self._callback, '__name__', self._callback)
236 if self._args:
237 x += ', args=' + str(self._args)
238 if self._kwargs:
239 x += ', kwargs=' + str(self._kwargs)
240 if self._key[0] is not None:
241 x += ', exitprority=' + str(self._key[0])
242 return x + '>'
243
244
245def _run_finalizers(minpriority=None):
246 '''
247 Run all finalizers whose exit priority is not None and at least minpriority
248
249 Finalizers with highest priority are called first; finalizers with
250 the same priority will be called in reverse order of creation.
251 '''
252 if minpriority is None:
253 f = lambda p : p[0][0] is not None
254 else:
255 f = lambda p : p[0][0] is not None and p[0][0] >= minpriority
256
257 items = [x for x in list(_finalizer_registry.items()) if f(x)]
258 items.sort(reverse=True)
259
260 for key, finalizer in items:
261 sub_debug('calling %s', finalizer)
262 try:
263 finalizer()
264 except Exception:
265 import traceback
266 traceback.print_exc()
267
268 if minpriority is None:
269 _finalizer_registry.clear()
270
271#
272# Clean up on exit
273#
274
275def is_exiting():
276 '''
277 Returns true if the process is shutting down
278 '''
279 return _exiting or _exiting is None
280
281_exiting = False
282
283def _exit_function():
284 global _exiting
285
286 info('process shutting down')
287 debug('running all "atexit" finalizers with priority >= 0')
288 _run_finalizers(0)
289
290 for p in active_children():
291 if p._daemonic:
Benjamin Peterson58ea9fe2008-08-19 19:17:39 +0000292 info('calling terminate() for daemon %s', p.name)
Benjamin Petersone711caf2008-06-11 16:44:04 +0000293 p._popen.terminate()
294
295 for p in active_children():
Benjamin Peterson58ea9fe2008-08-19 19:17:39 +0000296 info('calling join() for process %s', p.name)
Benjamin Petersone711caf2008-06-11 16:44:04 +0000297 p.join()
298
299 debug('running the remaining "atexit" finalizers')
300 _run_finalizers()
301
302atexit.register(_exit_function)
303
304#
305# Some fork aware types
306#
307
308class ForkAwareThreadLock(object):
309 def __init__(self):
310 self._lock = threading.Lock()
311 self.acquire = self._lock.acquire
312 self.release = self._lock.release
313 register_after_fork(self, ForkAwareThreadLock.__init__)
314
315class ForkAwareLocal(threading.local):
316 def __init__(self):
317 register_after_fork(self, lambda obj : obj.__dict__.clear())
318 def __reduce__(self):
319 return type(self), ()
Antoine Pitrou176f07d2011-06-06 19:35:31 +0200320
321
322#
323# Automatic retry after EINTR
324#
325
326def _eintr_retry(func, _errors=(EnvironmentError, select.error)):
327 @functools.wraps(func)
328 def wrapped(*args, **kwargs):
329 while True:
330 try:
331 return func(*args, **kwargs)
332 except _errors as e:
333 # select.error has no `errno` attribute
334 if e.args[0] == errno.EINTR:
335 continue
336 raise
337 return wrapped