from .pipe import Pipe, DEFAULT_PERMISSIONS from .pipe_io_thread import PipeIOThread from .pipe_reader_thread import PipeReaderThread class PipeReaderServer(PipeIOThread): def __init__(self, in_pipe, permissions=DEFAULT_PERMISSIONS, **kwargs): super().__init__(**kwargs) self._in_pipe = in_pipe Pipe(self.in_pipe).recreate(permissions) self._reader_thread = None @property def in_pipe(self): return self._in_pipe def _init_io_thread(self): self._reader_thread = PipeReaderThread( self.in_pipe, self._stop_event, self.handle_message ) self._io_threads.append(self._reader_thread) def handle_message(self, message): raise NotImplementedError() def stop(self): super().stop() Pipe(self.in_pipe).remove()