summaryrefslogtreecommitdiff
path: root/Lib/SocketServer.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-04-25 21:55:45 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2010-04-25 21:55:45 +0000
commit53d7d06ed35d7ec15cccaa5f80bc535295364a6e (patch)
treecba56bf94821fc3d9bfcb6870fd97c74012aad1d /Lib/SocketServer.py
parent212067b93cf0112bfc67cf48a9b479e6fab84c8e (diff)
downloadcpython-git-53d7d06ed35d7ec15cccaa5f80bc535295364a6e.tar.gz
Merged revisions 80484 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80484 | antoine.pitrou | 2010-04-25 23:40:32 +0200 (dim., 25 avril 2010) | 6 lines Issue #2302: Fix a race condition in SocketServer.BaseServer.shutdown, where the method could block indefinitely if called just before the event loop started running. This also fixes the occasional freezes witnessed in test_httpservers. ........
Diffstat (limited to 'Lib/SocketServer.py')
-rw-r--r--Lib/SocketServer.py26
1 files changed, 14 insertions, 12 deletions
diff --git a/Lib/SocketServer.py b/Lib/SocketServer.py
index f01cb5f2cc..7040738e76 100644
--- a/Lib/SocketServer.py
+++ b/Lib/SocketServer.py
@@ -197,7 +197,7 @@ class BaseServer:
self.server_address = server_address
self.RequestHandlerClass = RequestHandlerClass
self.__is_shut_down = threading.Event()
- self.__serving = False
+ self.__shutdown_request = False
def server_activate(self):
"""Called by constructor to activate the server.
@@ -214,17 +214,19 @@ class BaseServer:
self.timeout. If you need to do periodic tasks, do them in
another thread.
"""
- self.__serving = True
self.__is_shut_down.clear()
- while self.__serving:
- # XXX: Consider using another file descriptor or
- # connecting to the socket to wake this up instead of
- # polling. Polling reduces our responsiveness to a
- # shutdown request and wastes cpu at all other times.
- r, w, e = select.select([self], [], [], poll_interval)
- if r:
- self._handle_request_noblock()
- self.__is_shut_down.set()
+ try:
+ while not self.__shutdown_request:
+ # XXX: Consider using another file descriptor or
+ # connecting to the socket to wake this up instead of
+ # polling. Polling reduces our responsiveness to a
+ # shutdown request and wastes cpu at all other times.
+ r, w, e = select.select([self], [], [], poll_interval)
+ if self in r:
+ self._handle_request_noblock()
+ finally:
+ self.__shutdown_request = False
+ self.__is_shut_down.set()
def shutdown(self):
"""Stops the serve_forever loop.
@@ -233,7 +235,7 @@ class BaseServer:
serve_forever() is running in another thread, or it will
deadlock.
"""
- self.__serving = False
+ self.__shutdown_request = True
self.__is_shut_down.wait()
# The distinction between handling, getting, processing and