我正在尝试在Python中使用fifos for IPC例程,并使用以下代码创建fifo,然后启动两个线程在不同时间写入它并从中不断读取以打印出fifo上的任何内容
使用os.open()读取fifo时有效;但是,我正在阅读O'Reilly的“Programming Python 4th Edition”,他们声称fifo可以通过“消费者”流程打开为文本文件对象。
在这里,切换“consumer”线程以定位“consumer2”函数会尝试将fifo作为文本对象读取,而不是使用os.open。但是,当以这种方式读取时,在调用“readline”方法时程序被阻止。
有没有办法将fifo作为文本对象读取,还是总是必须使用os.open读取?
import os, time, threading
fifofile = '/tmp/thefifo'
if not os.path.exists(fifofile):
os.mkfifo(fifofile)
def producer():
num = 0
fifo_out = os.open(fifofile, os.O_WRONLY) #open the fifo for writing
while True:
time.sleep(num)
os.write(fifo_out, "".join(["Message ",str(num)]).encode())
num = (num + 1) % 5
def consumer():
fifo_in = os.open(fifofile, os.O_RDONLY)
while True:
line = os.read(fifo_in, 24)
print("Read: %s" % line.decode())
def consumer2():
fifo_in = open(fifofile, "r") #open for reading as text object...
while True:
line = fifo_in.readline()[:-1] #read an available line on the fifo...
print("Line read: %s" % line)
#Thread the calls...
producerTH = threading.Thread(target=producer)
consumerTH = threading.Thread(target=consumer) #using consumer2 does not work
producerTH.start()
consumerTH.start()
为此,我在OS X 10.10.3中使用Python 3.4.3。
答案 0 :(得分:1)
撰写邮件后您只需os.write(fifo_out, "\n".encode())
因为readline
需要“\ n”