Refactor pipe logic to a separate class
This commit is contained in:
parent
a389273779
commit
d28ea355f7
26
pipe_io_server/pipe.py
Normal file
26
pipe_io_server/pipe.py
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
from os import mkfifo, remove
|
||||||
|
from os.path import exists
|
||||||
|
|
||||||
|
|
||||||
|
class Pipe:
|
||||||
|
def __init__(self, path):
|
||||||
|
self.path = path
|
||||||
|
|
||||||
|
def recreate(self):
|
||||||
|
self.remove()
|
||||||
|
self.create()
|
||||||
|
|
||||||
|
def remove(self):
|
||||||
|
if exists(self.path):
|
||||||
|
remove(self.path)
|
||||||
|
|
||||||
|
def create(self):
|
||||||
|
mkfifo(self.path)
|
||||||
|
|
||||||
|
def write(self, data):
|
||||||
|
with open(self.path, 'wb') as pipe:
|
||||||
|
pipe.write(data)
|
||||||
|
|
||||||
|
def read(self):
|
||||||
|
with open(self.path, 'rb') as pipe:
|
||||||
|
return pipe.read()
|
@ -1,26 +1,11 @@
|
|||||||
from os import mkfifo, remove
|
from os.path import join
|
||||||
from os.path import exists, join
|
|
||||||
from secrets import token_urlsafe
|
from secrets import token_urlsafe
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
from abc import ABC, abstractmethod
|
from abc import ABC, abstractmethod
|
||||||
|
|
||||||
from .pipe_reader_thread import PipeReaderThread
|
from .pipe_reader_thread import PipeReaderThread
|
||||||
from .pipe_writer_thread import PipeWriterThread
|
from .pipe_writer_thread import PipeWriterThread
|
||||||
|
from .pipe import Pipe
|
||||||
|
|
||||||
class PipeHandler:
|
|
||||||
def __init__(self, *pipe_paths):
|
|
||||||
self._pipe_paths = pipe_paths
|
|
||||||
|
|
||||||
def recreate(self):
|
|
||||||
self.remove()
|
|
||||||
for pipe_path in self._pipe_paths:
|
|
||||||
mkfifo(pipe_path)
|
|
||||||
|
|
||||||
def remove(self):
|
|
||||||
for pipe_path in self._pipe_paths:
|
|
||||||
if exists(pipe_path):
|
|
||||||
remove(pipe_path)
|
|
||||||
|
|
||||||
|
|
||||||
class PipeIOServer(ABC):
|
class PipeIOServer(ABC):
|
||||||
@ -35,7 +20,8 @@ class PipeIOServer(ABC):
|
|||||||
pipe_id = token_urlsafe(6)
|
pipe_id = token_urlsafe(6)
|
||||||
self.in_pipe = join('/tmp', f'in_pipe_{pipe_id}')
|
self.in_pipe = join('/tmp', f'in_pipe_{pipe_id}')
|
||||||
self.out_pipe = join('/tmp', f'out_pipe_{pipe_id}')
|
self.out_pipe = join('/tmp', f'out_pipe_{pipe_id}')
|
||||||
PipeHandler(self.in_pipe, self.out_pipe).recreate()
|
Pipe(self.in_pipe).recreate()
|
||||||
|
Pipe(self.out_pipe).recreate()
|
||||||
|
|
||||||
def _init_io_threads(self):
|
def _init_io_threads(self):
|
||||||
io_threads_dict = {
|
io_threads_dict = {
|
||||||
@ -60,4 +46,5 @@ class PipeIOServer(ABC):
|
|||||||
for thread in self._io_threads:
|
for thread in self._io_threads:
|
||||||
if thread.isAlive():
|
if thread.isAlive():
|
||||||
thread.stop()
|
thread.stop()
|
||||||
PipeHandler(self.in_pipe, self.out_pipe).remove()
|
Pipe(self.in_pipe).remove()
|
||||||
|
Pipe(self.out_pipe).remove()
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
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
|
||||||
|
from .pipe import Pipe
|
||||||
|
|
||||||
|
|
||||||
class PipeReaderThread(Thread):
|
class PipeReaderThread(Thread):
|
||||||
@ -14,13 +15,11 @@ class PipeReaderThread(Thread):
|
|||||||
@terminate_process_on_failure
|
@terminate_process_on_failure
|
||||||
def run(self):
|
def run(self):
|
||||||
while True:
|
while True:
|
||||||
with open(self._pipe_path, 'rb') as pipe:
|
message = Pipe(self._pipe_path).read()
|
||||||
message = pipe.read()
|
|
||||||
if message == self._stop_sequence:
|
if message == self._stop_sequence:
|
||||||
break
|
break
|
||||||
self._message_handler(message)
|
self._message_handler(message)
|
||||||
|
|
||||||
def stop(self):
|
def stop(self):
|
||||||
with open(self._pipe_path, 'wb') as pipe:
|
Pipe(self._pipe_path).write(self._stop_sequence)
|
||||||
pipe.write(self._stop_sequence)
|
|
||||||
self.join()
|
self.join()
|
||||||
|
@ -2,6 +2,7 @@ from threading import Thread
|
|||||||
from queue import Queue
|
from queue import Queue
|
||||||
|
|
||||||
from .terminate_process_on_failure import terminate_process_on_failure
|
from .terminate_process_on_failure import terminate_process_on_failure
|
||||||
|
from .pipe import Pipe
|
||||||
|
|
||||||
|
|
||||||
class PipeWriterThread(Thread):
|
class PipeWriterThread(Thread):
|
||||||
@ -19,8 +20,7 @@ class PipeWriterThread(Thread):
|
|||||||
message = self._write_queue.get(block=True)
|
message = self._write_queue.get(block=True)
|
||||||
if message is None:
|
if message is None:
|
||||||
break
|
break
|
||||||
with open(self._pipe_path, 'wb') as pipe:
|
Pipe(self._pipe_path).write(message)
|
||||||
pipe.write(message)
|
|
||||||
|
|
||||||
def stop(self):
|
def stop(self):
|
||||||
self._write_queue.put(None)
|
self._write_queue.put(None)
|
||||||
|
Loading…
Reference in New Issue
Block a user