我正在为一个web应用程序编写一个日志文件查看器,为此我想通过日志文件的行进行分页。文件中的项目以底部的最新项目为基础。
所以我需要一个tail()
方法,可以从底部读取n
行,并支持偏移量。这是我想到的:
def tail(f, n, offset=0):
"""Reads a n lines from f with an offset of offset lines."""
avg_line_length = 74
to_read = n + offset
while 1:
try:
f.seek(-(avg_line_length * to_read), 2)
except IOError:
# woops. apparently file is smaller than what we want
# to step back, go to the beginning instead
f.seek(0)
pos = f.tell()
lines = f.read().splitlines()
if len(lines) >= to_read or pos == 0:
return lines[-to_read:offset and -offset or None]
avg_line_length *= 1.3
这是一个合理的方法吗?使用偏移量跟踪日志文件的推荐方法是什么?