| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  | ############################################################################### | 
					
						
							|  |  |  | # Server process to keep track of unlinked resources (like shared memory | 
					
						
							|  |  |  | # segments, semaphores etc.) and clean them. | 
					
						
							| 
									
										
										
										
											2013-08-14 15:35:41 +01:00
										 |  |  | # | 
					
						
							|  |  |  | # On Unix we run a server process which keeps track of unlinked | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  | # resources. The server ignores SIGINT and SIGTERM and reads from a | 
					
						
							| 
									
										
										
										
											2013-08-14 15:35:41 +01:00
										 |  |  | # pipe.  Every other process of the program has a copy of the writable | 
					
						
							|  |  |  | # end of the pipe, so we get EOF when all other processes have exited. | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  | # Then the server process unlinks any remaining resource names. | 
					
						
							| 
									
										
										
										
											2013-08-14 15:35:41 +01:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  | # This is important because there may be system limits for such resources: for | 
					
						
							|  |  |  | # instance, the system only supports a limited number of named semaphores, and | 
					
						
							|  |  |  | # shared-memory segments live in the RAM. If a python process leaks such a | 
					
						
							|  |  |  | # resource, this resource will not be removed till the next reboot.  Without | 
					
						
							|  |  |  | # this resource tracker process, "killall python" would probably leave unlinked | 
					
						
							|  |  |  | # resources. | 
					
						
							| 
									
										
										
										
											2013-08-14 15:35:41 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | import os | 
					
						
							|  |  |  | import signal | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | import threading | 
					
						
							|  |  |  | import warnings | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from . import spawn | 
					
						
							|  |  |  | from . import util | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | __all__ = ['ensure_running', 'register', 'unregister'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-04 09:53:54 +01:00
										 |  |  | _HAVE_SIGMASK = hasattr(signal, 'pthread_sigmask') | 
					
						
							|  |  |  | _IGNORED_SIGNALS = (signal.SIGINT, signal.SIGTERM) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-21 13:54:57 +01:00
										 |  |  | def cleanup_noop(name): | 
					
						
							|  |  |  |     raise RuntimeError('noop should never be registered or cleaned up') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  | _CLEANUP_FUNCS = { | 
					
						
							| 
									
										
										
										
											2024-02-21 13:54:57 +01:00
										 |  |  |     'noop': cleanup_noop, | 
					
						
							|  |  |  |     'dummy': lambda name: None,  # Dummy resource used in tests | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-13 20:02:46 +02:00
										 |  |  | if os.name == 'posix': | 
					
						
							|  |  |  |     import _multiprocessing | 
					
						
							|  |  |  |     import _posixshmem | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-07 19:15:51 -08:00
										 |  |  |     # Use sem_unlink() to clean up named semaphores. | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     # sem_unlink() may be missing if the Python build process detected the | 
					
						
							|  |  |  |     # absence of POSIX named semaphores. In that case, no named semaphores were | 
					
						
							|  |  |  |     # ever opened, so no cleanup would be necessary. | 
					
						
							|  |  |  |     if hasattr(_multiprocessing, 'sem_unlink'): | 
					
						
							| 
									
										
										
										
											2025-07-19 19:12:10 +02:00
										 |  |  |         _CLEANUP_FUNCS['semaphore'] = _multiprocessing.sem_unlink | 
					
						
							|  |  |  |     _CLEANUP_FUNCS['shared_memory'] = _posixshmem.shm_unlink | 
					
						
							| 
									
										
										
										
											2019-05-13 20:02:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-14 15:35:41 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-26 13:57:25 +02:00
										 |  |  | class ReentrantCallError(RuntimeError): | 
					
						
							|  |  |  |     pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  | class ResourceTracker(object): | 
					
						
							| 
									
										
										
										
											2013-10-16 16:41:56 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self): | 
					
						
							| 
									
										
										
										
											2023-09-26 13:57:25 +02:00
										 |  |  |         self._lock = threading.RLock() | 
					
						
							| 
									
										
										
										
											2013-10-16 16:41:56 +01:00
										 |  |  |         self._fd = None | 
					
						
							| 
									
										
										
										
											2017-11-03 14:31:38 +01:00
										 |  |  |         self._pid = None | 
					
						
							| 
									
										
										
										
											2024-02-21 13:54:57 +01:00
										 |  |  |         self._exitcode = None | 
					
						
							| 
									
										
										
										
											2013-10-16 16:41:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-26 13:57:25 +02:00
										 |  |  |     def _reentrant_call_error(self): | 
					
						
							|  |  |  |         # gh-109629: this happens if an explicit call to the ResourceTracker | 
					
						
							|  |  |  |         # gets interrupted by a garbage collection, invoking a finalizer (*) | 
					
						
							|  |  |  |         # that itself calls back into ResourceTracker. | 
					
						
							|  |  |  |         #   (*) for example the SemLock finalizer | 
					
						
							|  |  |  |         raise ReentrantCallError( | 
					
						
							|  |  |  |             "Reentrant call into the multiprocessing resource tracker") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-20 09:44:37 -07:00
										 |  |  |     def __del__(self): | 
					
						
							|  |  |  |         # making sure child processess are cleaned before ResourceTracker | 
					
						
							|  |  |  |         # gets destructed. | 
					
						
							|  |  |  |         # see https://github.com/python/cpython/issues/88887 | 
					
						
							|  |  |  |         self._stop(use_blocking_lock=False) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _stop(self, use_blocking_lock=True): | 
					
						
							|  |  |  |         if use_blocking_lock: | 
					
						
							|  |  |  |             with self._lock: | 
					
						
							|  |  |  |                 self._stop_locked() | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             acquired = self._lock.acquire(blocking=False) | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 self._stop_locked() | 
					
						
							|  |  |  |             finally: | 
					
						
							|  |  |  |                 if acquired: | 
					
						
							|  |  |  |                     self._lock.release() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _stop_locked( | 
					
						
							|  |  |  |         self, | 
					
						
							|  |  |  |         close=os.close, | 
					
						
							|  |  |  |         waitpid=os.waitpid, | 
					
						
							|  |  |  |         waitstatus_to_exitcode=os.waitstatus_to_exitcode, | 
					
						
							|  |  |  |     ): | 
					
						
							|  |  |  |         # This shouldn't happen (it might when called by a finalizer) | 
					
						
							|  |  |  |         # so we check for it anyway. | 
					
						
							|  |  |  |         if self._lock._recursion_count() > 1: | 
					
						
							|  |  |  |             return self._reentrant_call_error() | 
					
						
							|  |  |  |         if self._fd is None: | 
					
						
							|  |  |  |             # not running | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  |         if self._pid is None: | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # closing the "alive" file descriptor stops main() | 
					
						
							|  |  |  |         close(self._fd) | 
					
						
							|  |  |  |         self._fd = None | 
					
						
							| 
									
										
										
										
											2019-12-17 18:37:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-20 09:44:37 -07:00
										 |  |  |         _, status = waitpid(self._pid, 0) | 
					
						
							| 
									
										
										
										
											2024-02-21 13:54:57 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-20 09:44:37 -07:00
										 |  |  |         self._pid = None | 
					
						
							| 
									
										
										
										
											2019-12-17 18:37:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-20 09:44:37 -07:00
										 |  |  |         try: | 
					
						
							|  |  |  |             self._exitcode = waitstatus_to_exitcode(status) | 
					
						
							|  |  |  |         except ValueError: | 
					
						
							|  |  |  |             # os.waitstatus_to_exitcode may raise an exception for invalid values | 
					
						
							|  |  |  |             self._exitcode = None | 
					
						
							| 
									
										
										
										
											2024-02-21 13:54:57 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-16 16:41:56 +01:00
										 |  |  |     def getfd(self): | 
					
						
							|  |  |  |         self.ensure_running() | 
					
						
							|  |  |  |         return self._fd | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def ensure_running(self): | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |         '''Make sure that resource tracker process is running.
 | 
					
						
							| 
									
										
										
										
											2013-10-16 16:41:56 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         This can be run from any process.  Usually a child process will use | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |         the resource created by its parent.'''
 | 
					
						
							| 
									
										
										
										
											2013-10-16 16:41:56 +01:00
										 |  |  |         with self._lock: | 
					
						
							| 
									
										
										
										
											2023-09-26 13:57:25 +02:00
										 |  |  |             if self._lock._recursion_count() > 1: | 
					
						
							|  |  |  |                 # The code below is certainly not reentrant-safe, so bail out | 
					
						
							|  |  |  |                 return self._reentrant_call_error() | 
					
						
							| 
									
										
										
										
											2019-04-24 21:45:52 +02:00
										 |  |  |             if self._fd is not None: | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |                 # resource tracker was launched before, is it still running? | 
					
						
							| 
									
										
										
										
											2019-04-24 21:45:52 +02:00
										 |  |  |                 if self._check_alive(): | 
					
						
							|  |  |  |                     # => still alive | 
					
						
							|  |  |  |                     return | 
					
						
							|  |  |  |                 # => dead, launch it again | 
					
						
							|  |  |  |                 os.close(self._fd) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 # Clean-up to avoid dangling processes. | 
					
						
							| 
									
										
										
										
											2018-09-04 09:53:54 +01:00
										 |  |  |                 try: | 
					
						
							| 
									
										
										
										
											2019-04-24 21:45:52 +02:00
										 |  |  |                     # _pid can be None if this process is a child from another | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |                     # python process, which has started the resource_tracker. | 
					
						
							| 
									
										
										
										
											2019-04-24 21:45:52 +02:00
										 |  |  |                     if self._pid is not None: | 
					
						
							|  |  |  |                         os.waitpid(self._pid, 0) | 
					
						
							| 
									
										
										
										
											2018-09-04 09:53:54 +01:00
										 |  |  |                 except ChildProcessError: | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |                     # The resource_tracker has already been terminated. | 
					
						
							| 
									
										
										
										
											2018-09-04 09:53:54 +01:00
										 |  |  |                     pass | 
					
						
							| 
									
										
										
										
											2017-11-03 14:31:38 +01:00
										 |  |  |                 self._fd = None | 
					
						
							|  |  |  |                 self._pid = None | 
					
						
							| 
									
										
										
										
											2024-02-21 13:54:57 +01:00
										 |  |  |                 self._exitcode = None | 
					
						
							| 
									
										
										
										
											2017-11-03 14:31:38 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |                 warnings.warn('resource_tracker: process died unexpectedly, ' | 
					
						
							|  |  |  |                               'relaunching.  Some resources might leak.') | 
					
						
							| 
									
										
										
										
											2017-11-03 14:31:38 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-16 16:41:56 +01:00
										 |  |  |             fds_to_pass = [] | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 fds_to_pass.append(sys.stderr.fileno()) | 
					
						
							|  |  |  |             except Exception: | 
					
						
							|  |  |  |                 pass | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |             cmd = 'from multiprocessing.resource_tracker import main;main(%d)' | 
					
						
							| 
									
										
										
										
											2013-10-16 16:41:56 +01:00
										 |  |  |             r, w = os.pipe() | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 fds_to_pass.append(r) | 
					
						
							|  |  |  |                 # process will out live us, so no need to wait on pid | 
					
						
							|  |  |  |                 exe = spawn.get_executable() | 
					
						
							|  |  |  |                 args = [exe] + util._args_from_interpreter_flags() | 
					
						
							|  |  |  |                 args += ['-c', cmd % r] | 
					
						
							| 
									
										
										
										
											2018-09-04 09:53:54 +01:00
										 |  |  |                 # bpo-33613: Register a signal mask that will block the signals. | 
					
						
							|  |  |  |                 # This signal mask will be inherited by the child that is going | 
					
						
							|  |  |  |                 # to be spawned and will protect the child from a race condition | 
					
						
							|  |  |  |                 # that can make the child die before it registers signal handlers | 
					
						
							|  |  |  |                 # for SIGINT and SIGTERM. The mask is unregistered after spawning | 
					
						
							|  |  |  |                 # the child. | 
					
						
							| 
									
										
										
										
											2024-12-27 17:09:01 -05:00
										 |  |  |                 prev_sigmask = None | 
					
						
							| 
									
										
										
										
											2018-09-04 09:53:54 +01:00
										 |  |  |                 try: | 
					
						
							|  |  |  |                     if _HAVE_SIGMASK: | 
					
						
							| 
									
										
										
										
											2024-12-27 17:09:01 -05:00
										 |  |  |                         prev_sigmask = signal.pthread_sigmask(signal.SIG_BLOCK, _IGNORED_SIGNALS) | 
					
						
							| 
									
										
										
										
											2018-09-04 09:53:54 +01:00
										 |  |  |                     pid = util.spawnv_passfds(exe, args, fds_to_pass) | 
					
						
							|  |  |  |                 finally: | 
					
						
							| 
									
										
										
										
											2024-12-27 17:09:01 -05:00
										 |  |  |                     if prev_sigmask is not None: | 
					
						
							|  |  |  |                         signal.pthread_sigmask(signal.SIG_SETMASK, prev_sigmask) | 
					
						
							| 
									
										
										
										
											2013-10-16 16:41:56 +01:00
										 |  |  |             except: | 
					
						
							|  |  |  |                 os.close(w) | 
					
						
							|  |  |  |                 raise | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 self._fd = w | 
					
						
							| 
									
										
										
										
											2017-11-03 14:31:38 +01:00
										 |  |  |                 self._pid = pid | 
					
						
							| 
									
										
										
										
											2013-10-16 16:41:56 +01:00
										 |  |  |             finally: | 
					
						
							|  |  |  |                 os.close(r) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-24 21:45:52 +02:00
										 |  |  |     def _check_alive(self): | 
					
						
							|  |  |  |         '''Check that the pipe has not been closed by sending a probe.''' | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             # We cannot use send here as it calls ensure_running, creating | 
					
						
							|  |  |  |             # a cycle. | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |             os.write(self._fd, b'PROBE:0:noop\n') | 
					
						
							| 
									
										
										
										
											2019-04-24 21:45:52 +02:00
										 |  |  |         except OSError: | 
					
						
							|  |  |  |             return False | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             return True | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |     def register(self, name, rtype): | 
					
						
							|  |  |  |         '''Register name of resource with resource tracker.''' | 
					
						
							|  |  |  |         self._send('REGISTER', name, rtype) | 
					
						
							| 
									
										
										
										
											2013-10-16 16:41:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |     def unregister(self, name, rtype): | 
					
						
							|  |  |  |         '''Unregister name of resource with resource tracker.''' | 
					
						
							|  |  |  |         self._send('UNREGISTER', name, rtype) | 
					
						
							| 
									
										
										
										
											2013-10-16 16:41:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |     def _send(self, cmd, name, rtype): | 
					
						
							| 
									
										
										
										
											2023-09-26 13:57:25 +02:00
										 |  |  |         try: | 
					
						
							|  |  |  |             self.ensure_running() | 
					
						
							|  |  |  |         except ReentrantCallError: | 
					
						
							|  |  |  |             # The code below might or might not work, depending on whether | 
					
						
							|  |  |  |             # the resource tracker was already running and still alive. | 
					
						
							|  |  |  |             # Better warn the user. | 
					
						
							|  |  |  |             # (XXX is warnings.warn itself reentrant-safe? :-) | 
					
						
							|  |  |  |             warnings.warn( | 
					
						
							|  |  |  |                 f"ResourceTracker called reentrantly for resource cleanup, " | 
					
						
							|  |  |  |                 f"which is unsupported. " | 
					
						
							|  |  |  |                 f"The {rtype} object {name!r} might leak.") | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |         msg = '{0}:{1}:{2}\n'.format(cmd, name, rtype).encode('ascii') | 
					
						
							| 
									
										
										
										
											2022-10-03 09:41:01 +09:00
										 |  |  |         if len(msg) > 512: | 
					
						
							| 
									
										
										
										
											2013-10-16 16:41:56 +01:00
										 |  |  |             # posix guarantees that writes to a pipe of less than PIPE_BUF | 
					
						
							|  |  |  |             # bytes are atomic, and that PIPE_BUF >= 512 | 
					
						
							| 
									
										
										
										
											2022-10-03 09:41:01 +09:00
										 |  |  |             raise ValueError('msg too long') | 
					
						
							| 
									
										
										
										
											2013-10-16 16:41:56 +01:00
										 |  |  |         nbytes = os.write(self._fd, msg) | 
					
						
							| 
									
										
										
										
											2017-08-29 17:52:18 -05:00
										 |  |  |         assert nbytes == len(msg), "nbytes {0:n} but len(msg) {1:n}".format( | 
					
						
							|  |  |  |             nbytes, len(msg)) | 
					
						
							| 
									
										
										
										
											2013-10-16 16:41:56 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  | _resource_tracker = ResourceTracker() | 
					
						
							|  |  |  | ensure_running = _resource_tracker.ensure_running | 
					
						
							|  |  |  | register = _resource_tracker.register | 
					
						
							|  |  |  | unregister = _resource_tracker.unregister | 
					
						
							|  |  |  | getfd = _resource_tracker.getfd | 
					
						
							| 
									
										
										
										
											2013-08-14 15:35:41 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-26 13:57:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-14 15:35:41 +01:00
										 |  |  | def main(fd): | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |     '''Run resource tracker.''' | 
					
						
							| 
									
										
										
										
											2013-08-14 15:35:41 +01:00
										 |  |  |     # protect the process from ^C and "killall python" etc | 
					
						
							|  |  |  |     signal.signal(signal.SIGINT, signal.SIG_IGN) | 
					
						
							|  |  |  |     signal.signal(signal.SIGTERM, signal.SIG_IGN) | 
					
						
							| 
									
										
										
										
											2018-09-04 09:53:54 +01:00
										 |  |  |     if _HAVE_SIGMASK: | 
					
						
							|  |  |  |         signal.pthread_sigmask(signal.SIG_UNBLOCK, _IGNORED_SIGNALS) | 
					
						
							| 
									
										
										
										
											2013-08-14 15:35:41 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for f in (sys.stdin, sys.stdout): | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  |         except Exception: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |     cache = {rtype: set() for rtype in _CLEANUP_FUNCS.keys()} | 
					
						
							| 
									
										
										
										
											2024-02-21 13:54:57 +01:00
										 |  |  |     exit_code = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-14 15:35:41 +01:00
										 |  |  |     try: | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |         # keep track of registered/unregistered resources | 
					
						
							| 
									
										
										
										
											2013-08-14 15:35:41 +01:00
										 |  |  |         with open(fd, 'rb') as f: | 
					
						
							|  |  |  |             for line in f: | 
					
						
							|  |  |  |                 try: | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |                     cmd, name, rtype = line.strip().decode('ascii').split(':') | 
					
						
							|  |  |  |                     cleanup_func = _CLEANUP_FUNCS.get(rtype, None) | 
					
						
							|  |  |  |                     if cleanup_func is None: | 
					
						
							|  |  |  |                         raise ValueError( | 
					
						
							|  |  |  |                             f'Cannot register {name} for automatic cleanup: ' | 
					
						
							|  |  |  |                             f'unknown resource type {rtype}') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     if cmd == 'REGISTER': | 
					
						
							|  |  |  |                         cache[rtype].add(name) | 
					
						
							|  |  |  |                     elif cmd == 'UNREGISTER': | 
					
						
							|  |  |  |                         cache[rtype].remove(name) | 
					
						
							|  |  |  |                     elif cmd == 'PROBE': | 
					
						
							| 
									
										
										
										
											2019-04-24 21:45:52 +02:00
										 |  |  |                         pass | 
					
						
							| 
									
										
										
										
											2013-08-14 15:35:41 +01:00
										 |  |  |                     else: | 
					
						
							|  |  |  |                         raise RuntimeError('unrecognized command %r' % cmd) | 
					
						
							|  |  |  |                 except Exception: | 
					
						
							| 
									
										
										
										
											2024-02-21 13:54:57 +01:00
										 |  |  |                     exit_code = 3 | 
					
						
							| 
									
										
										
										
											2013-08-14 15:35:41 +01:00
										 |  |  |                     try: | 
					
						
							|  |  |  |                         sys.excepthook(*sys.exc_info()) | 
					
						
							|  |  |  |                     except: | 
					
						
							|  |  |  |                         pass | 
					
						
							|  |  |  |     finally: | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |         # all processes have terminated; cleanup any remaining resources | 
					
						
							|  |  |  |         for rtype, rtype_cache in cache.items(): | 
					
						
							|  |  |  |             if rtype_cache: | 
					
						
							| 
									
										
										
										
											2013-08-14 15:35:41 +01:00
										 |  |  |                 try: | 
					
						
							| 
									
										
										
										
											2024-02-21 13:54:57 +01:00
										 |  |  |                     exit_code = 1 | 
					
						
							|  |  |  |                     if rtype == 'dummy': | 
					
						
							|  |  |  |                         # The test 'dummy' resource is expected to leak. | 
					
						
							|  |  |  |                         # We skip the warning (and *only* the warning) for it. | 
					
						
							|  |  |  |                         pass | 
					
						
							|  |  |  |                     else: | 
					
						
							|  |  |  |                         warnings.warn( | 
					
						
							|  |  |  |                             f'resource_tracker: There appear to be ' | 
					
						
							|  |  |  |                             f'{len(rtype_cache)} leaked {rtype} objects to ' | 
					
						
							|  |  |  |                             f'clean up at shutdown: {rtype_cache}' | 
					
						
							|  |  |  |                         ) | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |                 except Exception: | 
					
						
							|  |  |  |                     pass | 
					
						
							|  |  |  |             for name in rtype_cache: | 
					
						
							|  |  |  |                 # For some reason the process which created and registered this | 
					
						
							|  |  |  |                 # resource has failed to unregister it. Presumably it has | 
					
						
							|  |  |  |                 # died.  We therefore unlink it. | 
					
						
							|  |  |  |                 try: | 
					
						
							|  |  |  |                     try: | 
					
						
							|  |  |  |                         _CLEANUP_FUNCS[rtype](name) | 
					
						
							|  |  |  |                     except Exception as e: | 
					
						
							| 
									
										
										
										
											2024-02-21 13:54:57 +01:00
										 |  |  |                         exit_code = 2 | 
					
						
							| 
									
										
										
										
											2019-05-10 22:59:08 +02:00
										 |  |  |                         warnings.warn('resource_tracker: %r: %s' % (name, e)) | 
					
						
							|  |  |  |                 finally: | 
					
						
							|  |  |  |                     pass | 
					
						
							| 
									
										
										
										
											2024-02-21 13:54:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         sys.exit(exit_code) |