1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
#! /usr/bin/env python
##############################################################################
## DendroPy Phylogenetic Computing Library.
##
## Copyright 2010-2015 Jeet Sukumaran and Mark T. Holder.
## All rights reserved.
##
## See "LICENSE.rst" for terms and conditions of usage.
##
## If you use this work or any portion thereof in published work,
## please cite it as:
##
## Sukumaran, J. and M. T. Holder. 2010. DendroPy: a Python library
## for phylogenetic computing. Bioinformatics 26: 1569-1571.
##
##############################################################################
"""
Wraps external process as a processio, i.e., allow for non-blocking
read/writes to stdout/stderr/stdin.
"""
from dendropy.utility import textprocessing
import sys
import subprocess
import threading
try:
from Queue import Queue, Empty
except ImportError:
from queue import Queue, Empty # python 3.x
ON_POSIX = 'posix' in sys.builtin_module_names
############################################################################
## Handling of byte/string conversion during subprocess calls
def communicate(p, commands=None, timeout=None):
if isinstance(commands, list) or isinstance(commands, tuple):
commands = "\n".join(str(c) for c in commands)
if commands is not None:
commands = str.encode(commands)
if timeout is None:
stdout, stderr = p.communicate(commands)
else:
try:
stdout, stderr = p.communicate(commands, timeout=timeout)
except TypeError as e:
if "unexpected keyword argument 'timeout'" in str(e):
stdout, stderr = p.communicate(commands)
else:
raise
if stdout is not None:
stdout = textprocessing.bytes_to_text(stdout)
if stderr is not None:
stderr = textprocessing.bytes_to_text(stderr)
return stdout, stderr
############################################################################
## SessionReader
class SessionReader(object):
def __init__(self, file_handle):
self.queue = Queue()
self.stream = file_handle
self.thread = threading.Thread(
target=self.enqueue_stream,
)
self.thread.daemon = True
self.thread.start()
def enqueue_stream(self):
# for line in self.stream.readline():
for line in iter(self.stream.readline, b''):
self.queue.put(line)
self.stream.close()
def read(self):
# read line without blocking
try:
line = self.queue.get_nowait()
# line = self.queue.get(timeout=0.1)
except Empty:
return None
else:
return line # got line
class Session(object):
def __init__(self, join_err_to_out=False):
self.process = None
self.stdin = None
self._stdout_reader = None
self._stderr_reader = None
self.queue = None
self.thread = None
self.join_err_to_out = join_err_to_out
def start(self, command):
if self.join_err_to_out:
stderr = subprocess.STDOUT
else:
stderr = subprocess.PIPE
self.process = subprocess.Popen(command,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=stderr,
bufsize=1,
close_fds=ON_POSIX)
self._stdout_reader = SessionReader(self.process.stdout)
if not self.join_err_to_out:
self._stderr_reader = SessionReader(self.process.stderr)
def _stdin_write(self, command):
self.process.stdin.write(command)
self.process.stdin.flush()
|