Reimplement IO loops to be more resilient against unintended client behaviour
This commit is contained in:
parent
4b3163179b
commit
7cb6af9c4e
@ -1,44 +1,50 @@
|
|||||||
from contextlib import suppress
|
# pylint: disable=redefined-builtin,too-many-instance-attributes
|
||||||
from os import open as osopen
|
from contextlib import contextmanager
|
||||||
from os import write, close, O_WRONLY, O_NONBLOCK
|
from os import O_NONBLOCK, O_RDONLY, open, fdopen, close, write, pipe
|
||||||
from threading import Thread
|
from threading import Thread
|
||||||
|
from select import select
|
||||||
|
|
||||||
from .terminate_process_on_failure import terminate_process_on_failure
|
from .terminate_process_on_failure import terminate_process_on_failure
|
||||||
|
|
||||||
|
|
||||||
class PipeReaderThread(Thread):
|
class PipeReaderThread(Thread):
|
||||||
eof = b''
|
|
||||||
stop_sequence = b'stop_reading\n'
|
|
||||||
|
|
||||||
def __init__(self, pipe_path, stop_event, message_handler):
|
def __init__(self, pipe_path, stop_event, message_handler):
|
||||||
super().__init__(daemon=True)
|
super().__init__(daemon=True)
|
||||||
self._message_handler = message_handler
|
self._message_handler = message_handler
|
||||||
self._pipe_path = pipe_path
|
self._pipe_path = pipe_path
|
||||||
|
self._read_fd, self._read_fp = None, None
|
||||||
|
self._stop_signal_rfd, self._stop_signal_wfd = pipe()
|
||||||
|
self._msg_buf = b''
|
||||||
self._stop_event = stop_event
|
self._stop_event = stop_event
|
||||||
|
|
||||||
@terminate_process_on_failure
|
@terminate_process_on_failure
|
||||||
def run(self):
|
def run(self):
|
||||||
with self._open() as pipe:
|
with self._open():
|
||||||
while True:
|
while True:
|
||||||
message = pipe.readline()
|
can_read, _, _ = select([self._read_fd, self._stop_signal_rfd], [], [])
|
||||||
if message == self.stop_sequence:
|
if self._stop_signal_rfd in can_read:
|
||||||
self._stop_event.set()
|
self._stop_event.set()
|
||||||
break
|
break
|
||||||
if message == self.eof:
|
for msg in iter(self._read_fp.readline, b''):
|
||||||
self._open().close()
|
self._msg_buf += msg
|
||||||
continue
|
if self._msg_buf.endswith(b'\n'):
|
||||||
self._message_handler(message[:-1])
|
self._message_handler(self._msg_buf[:-1])
|
||||||
|
self._msg_buf = b''
|
||||||
|
|
||||||
|
@contextmanager
|
||||||
def _open(self):
|
def _open(self):
|
||||||
return open(self._pipe_path, 'rb')
|
self._read_fd = open(self._pipe_path, O_RDONLY | O_NONBLOCK)
|
||||||
|
self._read_fp = fdopen(self._read_fd, 'rb')
|
||||||
|
yield
|
||||||
|
self._read_fp.close()
|
||||||
|
close(self._stop_signal_rfd)
|
||||||
|
close(self._stop_signal_wfd)
|
||||||
|
|
||||||
|
|
||||||
def stop(self):
|
def stop(self):
|
||||||
while self.is_alive():
|
if self.is_alive():
|
||||||
self._unblock()
|
self._unblock()
|
||||||
self.join()
|
self.join()
|
||||||
|
|
||||||
def _unblock(self):
|
def _unblock(self):
|
||||||
with suppress(OSError):
|
write(self._stop_signal_wfd, b'1')
|
||||||
fd = osopen(self._pipe_path, O_WRONLY | O_NONBLOCK)
|
|
||||||
write(fd, self.stop_sequence)
|
|
||||||
close(fd)
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
from contextlib import suppress
|
# pylint: disable=redefined-builtin
|
||||||
from os import O_NONBLOCK, O_RDONLY, close
|
from contextlib import suppress, contextmanager
|
||||||
from os import open as osopen
|
from os import O_NONBLOCK, O_RDONLY, O_WRONLY, open, close, write, read
|
||||||
from threading import Thread
|
from threading import Thread
|
||||||
|
|
||||||
from .terminate_process_on_failure import terminate_process_on_failure
|
from .terminate_process_on_failure import terminate_process_on_failure
|
||||||
@ -11,6 +11,7 @@ class PipeWriterThread(Thread):
|
|||||||
def __init__(self, pipe_path, stop_event):
|
def __init__(self, pipe_path, stop_event):
|
||||||
super().__init__(daemon=True)
|
super().__init__(daemon=True)
|
||||||
self._pipe_path = pipe_path
|
self._pipe_path = pipe_path
|
||||||
|
self._write_fd, self._drain_fd = None, None
|
||||||
self._stop_event = stop_event
|
self._stop_event = stop_event
|
||||||
self._write_queue = Deque()
|
self._write_queue = Deque()
|
||||||
|
|
||||||
@ -19,24 +20,21 @@ class PipeWriterThread(Thread):
|
|||||||
|
|
||||||
@terminate_process_on_failure
|
@terminate_process_on_failure
|
||||||
def run(self):
|
def run(self):
|
||||||
with self._open() as pipe:
|
with self._open():
|
||||||
while True:
|
while True:
|
||||||
message = self._write_queue.pop()
|
message = self._write_queue.pop()
|
||||||
if message is None:
|
if message is None:
|
||||||
self._stop_event.set()
|
self._stop_event.set()
|
||||||
break
|
break
|
||||||
try:
|
write(self._write_fd, message + b'\n')
|
||||||
pipe.write(message + b'\n')
|
|
||||||
pipe.flush()
|
|
||||||
except BrokenPipeError:
|
|
||||||
try: # pipe was reopened, close() flushed the message
|
|
||||||
pipe.close()
|
|
||||||
except BrokenPipeError: # close() discarded the message
|
|
||||||
self._write_queue.push_front(message)
|
|
||||||
pipe = self._open()
|
|
||||||
|
|
||||||
|
@contextmanager
|
||||||
def _open(self):
|
def _open(self):
|
||||||
return open(self._pipe_path, 'wb')
|
self._drain_fd = open(self._pipe_path, O_RDONLY | O_NONBLOCK)
|
||||||
|
self._write_fd = open(self._pipe_path, O_WRONLY)
|
||||||
|
yield
|
||||||
|
close(self._write_fd)
|
||||||
|
close(self._drain_fd)
|
||||||
|
|
||||||
def stop(self):
|
def stop(self):
|
||||||
while self.is_alive():
|
while self.is_alive():
|
||||||
@ -44,7 +42,7 @@ class PipeWriterThread(Thread):
|
|||||||
self.join()
|
self.join()
|
||||||
|
|
||||||
def _unblock(self):
|
def _unblock(self):
|
||||||
|
self._write_queue.push_front(None)
|
||||||
with suppress(OSError):
|
with suppress(OSError):
|
||||||
fd = osopen(self._pipe_path, O_RDONLY | O_NONBLOCK)
|
while read(self._drain_fd, 65536):
|
||||||
self._write_queue.push_front(None)
|
pass
|
||||||
close(fd)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user