有一个程序(我无法修改)创建两个输出文件。我正在尝试编写一个调用此程序的Python包装器,同时读取两个输出流,组合输出,并打印到stdout(以方便流式传输)。如何在没有死锁的情况下做到这一点?下面的以下概念证明工作正常,但是当我将这种方法应用于实际程序时,它会死锁。
概念证明:这是一个虚拟程序bogus.py
,它创建了两个输出文件,就像我想要包装的程序一样。
#!/usr/bin/env python
from __future__ import print_function
import sys
with open(sys.argv[1], 'w') as f1, open(sys.argv[2], 'w') as f2:
for i in range(1000):
if i % 2 == 0:
print(i, file=f1)
else:
print(i, file=f2)
这是Python包装器,它调用程序并组合它的两个输出(每次交错4行)。
#!/usr/bin/env python
from __future__ import print_function
from contextlib import contextmanager
import os
import shutil
import subprocess
import tempfile
@contextmanager
def named_pipe():
"""
Create a temporary named pipe.
Stolen shamelessly from StackOverflow:
http://stackoverflow.com/a/28840955/459780
"""
dirname = tempfile.mkdtemp()
try:
path = os.path.join(dirname, 'named_pipe')
os.mkfifo(path)
yield path
finally:
shutil.rmtree(dirname)
with named_pipe() as f1, named_pipe() as f2:
cmd = ['./bogus.py', f1, f2]
child = subprocess.Popen(cmd)
with open(f1, 'r') as in1, open(f2, 'r') as in2:
buff = list()
for i, lines in enumerate(zip(in1, in2)):
line1 = lines[0].strip()
line2 = lines[1].strip()
print(line1)
buff.append(line2)
if len(buff) == 4:
for line in buff:
print(line)
答案 0 :(得分:3)
我看到一个文件的大块然后是另一个文件的大块,无论我是写入stdout,stderr还是tty。
如果你不能让孩子对文件使用行缓冲,那么一个简单的解决方案从输出文件中读取完整的交错行,同时在输出可用时进程仍在运行是使用线程:
#!/usr/bin/env python2
from subprocess import Popen
from threading import Thread
from Queue import Queue
def readlines(path, queue):
try:
with open(path) as pipe:
for line in iter(pipe.readline, ''):
queue.put(line)
finally:
queue.put(None)
with named_pipes(n=2) as paths:
child = Popen(['python', 'child.py'] + paths)
queue = Queue()
for path in paths:
Thread(target=readlines, args=[path, queue]).start()
for _ in paths:
for line in iter(queue.get, None):
print line.rstrip('\n')
其中named_pipes(n)
is defined here。
pipe.readline()
已被破解,这就是此处使用线程的原因。
从一个文件打印一行,然后从另一个文件打印一行:
with named_pipes(n=2) as paths:
child = Popen(['python', 'child.py'] + paths)
queues = [Queue() for _ in paths]
for path, queue in zip(paths, queues):
Thread(target=readlines, args=[path, queue]).start()
while queues:
for q in queues:
line = q.get()
if line is None: # EOF
queues.remove(q)
else:
print line.rstrip('\n')
如果child.py
将更多行写入一个文件而不是另一个文件,那么差异将保留在内存中,因此queues
中的各个队列可能会无限增长,直到它们填满所有内存。您可以设置队列中的最大项目数,但是必须将超时传递给q.get()
,否则代码可能会死锁。
如果您需要从一个输出文件中精确打印4行,然后从另一个输出文件中打印4行,那么您可以稍微修改给定的代码示例:
while queues:
# print 4 lines from one queue followed by 4 lines from another queue
for q in queues:
for _ in range(4):
line = q.get()
if line is None: # EOF
queues.remove(q)
break
else:
print line.rstrip('\n')
它不会死锁,但如果你的子进程将太多数据写入一个文件而没有足够写入另一个文件(只有差异保存在内存中 - 如果文件相对相等)它可能会占用所有内存;程序支持任意大输出文件)。
答案 1 :(得分:1)
Popen
只会产生这个过程。您必须执行child.communicate()
之类的操作才能与其实际交互并获取其输出。
另外,我认为在开始这个过程之前你需要open
阅读管道。