我是这个Python领域的新手,想从正在运行的另一个程序编写的文件中读取文件。因此,我的脚本应在其他程序编写后立即读取一行。
这是我所拥有的:
#!/usr/bin/env python
import datetime
import os
import select
import sys
FILENAME = "/home/sjngm/coding/source/python/text.log"
with open(FILENAME, "r", encoding = "utf-8", errors = "ignore") as log:
print("blocks: " + str(os.get_blocking(log.fileno())) + " / fd: " + str(log.fileno()) + " / " + str(log))
while True:
os.pread(log.fileno(), 1, 0)
sel = select.select([log], [], [], 60000.0) #[0]
line = log.readline().replace("\n", "")
if line:
print(line)
else:
print("-" + str(datetime.datetime.now()), end = "\r")
# do something interesting with line...
text.log(目前它只是一个普通的文本文件,没有其他进程可以访问它):
line 1
line 2
line 3
最后一行的末尾是否有\n
都没关系
输出:
[sjngm@runlikehell ~]$ python ~/coding/source/python/test.py
blocks: True / fd: 3 / <_io.TextIOWrapper name='/home/sjngm/coding/source/python/text.log' mode='r' encoding='utf-8'>
line 1
line 2
line 3
^CTraceback (most recent call last):
File "/home/sjngm/coding/source/python/test.py", line 16, in <module>
line = log.readline().replace("\n", "")
File "/usr/lib/python3.6/codecs.py", line 321, in decode
(result, consumed) = self._buffer_decode(data, self.errors, final)
KeyboardInterrupt
[sjngm@runlikehell ~]$ uname -a
Linux runlikehell 4.14.53-1-MANJARO #1 SMP PREEMPT Tue Jul 3 17:59:17 UTC 2018 x86_64 GNU/Linux
[sjngm@runlikehell ~]$
因此它表示已启用阻止。在打印了三行之后,脚本将继续运行,并持续打印当前时间,而不会出现任何暂停。
它实际上应该在pread()
,select()
或readline()
处暂停。或者事实上,在我不知道的任何其他命令上。
我如何进行这项工作?
请注意,我不想将文件通过管道传输到脚本,因为以后我想使用curses,因此在这种情况下,它的getch()
无法正常工作。 >
答案 0 :(得分:0)
似乎这种情况并不常见。我现在正在做的是这样:
import subprocess
with subprocess.Popen([ "tail", "-10000f", FILENAME ], encoding = "utf-8", errors = "ignore", universal_newlines = True, bufsize = 1, stdout = subprocess.PIPE).stdout as log:
line = log.readline()
换句话说,我是在脚本中打开管道 ,而不是通过管道 来脚本。似乎是在tail
中结合Popen
的参数bufsize
进行了缓冲。 encoding
和universal_newlines
允许readline()
读取字符串而不是字节数组(有关更多信息,请参见Python's documentation)。
系统的stdin
现在仍然可用,并且curses
与键盘/鼠标事件配合得很好。