summaryrefslogtreecommitdiffstats
path: root/Lib/socketserver.py
diff options
context:
space:
mode:
authorMARUYAMA Norihiro <norihiro.maruyama@gmail.com>2020-11-01 23:51:04 (GMT)
committerGitHub <noreply@github.com>2020-11-01 23:51:04 (GMT)
commitc41559021213cfc9dc62a83fc63306b3bdc3e64b (patch)
tree2a8974f08a5fa31aa57d336b29f01dddd5df164c /Lib/socketserver.py
parente662c398d87f136497f8ec672e83657ae3a599e0 (diff)
downloadcpython-c41559021213cfc9dc62a83fc63306b3bdc3e64b.zip
cpython-c41559021213cfc9dc62a83fc63306b3bdc3e64b.tar.gz
cpython-c41559021213cfc9dc62a83fc63306b3bdc3e64b.tar.bz2
bpo-37193: remove thread objects which finished process its request (GH-13893)
* bpo-37193: remove the thread which finished process request from threads list * rename variable t to thread. * don't remove thread from list if it is daemon. * use lock to protect self._threads. * use finally block in case of exception from shutdown_request(). * check "not thread.daemon" before lock to avoid holding the lock if it's unnecessary. * fix the place of _threads_lock. * separate code to remove a current thread into a function. * check ValueError when removing thread. * fix wrong code which all instance shared same lock. * Extract thread management into a _Threads class to encapsulate atomic operations and separate concerns. * Replace multiple references of 'block_on_close' with one, avoiding the possibility that 'block_on_close' could change during the course of processing requests. Now, there's exactly one _threads object with behavior fixed for the duration. * Add docstrings to private classes. * Add test to ensure that a ThreadingTCPServer can be closed without serving any requests. * Use _NoThreads as the default value. Fixes AttributeError when server is closed without serving any requests. * Add blurb * Add test capturing failure. Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
Diffstat (limited to 'Lib/socketserver.py')
-rw-r--r--Lib/socketserver.py73
1 files changed, 60 insertions, 13 deletions
diff --git a/Lib/socketserver.py b/Lib/socketserver.py
index 57c1ae6..6859b69 100644
--- a/Lib/socketserver.py
+++ b/Lib/socketserver.py
@@ -128,6 +128,7 @@ import selectors
import os
import sys
import threading
+import contextlib
from io import BufferedIOBase
from time import monotonic as time
@@ -628,6 +629,55 @@ if hasattr(os, "fork"):
self.collect_children(blocking=self.block_on_close)
+class _Threads(list):
+ """
+ Joinable list of all non-daemon threads.
+ """
+ def __init__(self):
+ self._lock = threading.Lock()
+
+ def append(self, thread):
+ if thread.daemon:
+ return
+ with self._lock:
+ super().append(thread)
+
+ def remove(self, thread):
+ with self._lock:
+ # should not happen, but safe to ignore
+ with contextlib.suppress(ValueError):
+ super().remove(thread)
+
+ def remove_current(self):
+ """Remove a current non-daemon thread."""
+ thread = threading.current_thread()
+ if not thread.daemon:
+ self.remove(thread)
+
+ def pop_all(self):
+ with self._lock:
+ self[:], result = [], self[:]
+ return result
+
+ def join(self):
+ for thread in self.pop_all():
+ thread.join()
+
+
+class _NoThreads:
+ """
+ Degenerate version of _Threads.
+ """
+ def append(self, thread):
+ pass
+
+ def join(self):
+ pass
+
+ def remove_current(self):
+ pass
+
+
class ThreadingMixIn:
"""Mix-in class to handle each request in a new thread."""
@@ -636,9 +686,9 @@ class ThreadingMixIn:
daemon_threads = False
# If true, server_close() waits until all non-daemonic threads terminate.
block_on_close = True
- # For non-daemonic threads, list of threading.Threading objects
+ # Threads object
# used by server_close() to wait for all threads completion.
- _threads = None
+ _threads = _NoThreads()
def process_request_thread(self, request, client_address):
"""Same as in BaseServer but as a thread.
@@ -651,27 +701,24 @@ class ThreadingMixIn:
except Exception:
self.handle_error(request, client_address)
finally:
- self.shutdown_request(request)
+ try:
+ self.shutdown_request(request)
+ finally:
+ self._threads.remove_current()
def process_request(self, request, client_address):
"""Start a new thread to process the request."""
+ if self.block_on_close:
+ vars(self).setdefault('_threads', _Threads())
t = threading.Thread(target = self.process_request_thread,
args = (request, client_address))
t.daemon = self.daemon_threads
- if not t.daemon and self.block_on_close:
- if self._threads is None:
- self._threads = []
- self._threads.append(t)
+ self._threads.append(t)
t.start()
def server_close(self):
super().server_close()
- if self.block_on_close:
- threads = self._threads
- self._threads = None
- if threads:
- for thread in threads:
- thread.join()
+ self._threads.join()
if hasattr(os, "fork"):