Pubblicare una risposta per volere di commentatori sulla mia risposta a una domanda simile in cui la stessa tecnica è stata utilizzata per mutare l'ultima riga di un file, non solo per ottenerlo.
Per un file di dimensioni significative, mmap
è il modo migliore per farlo. Per migliorare la mmap
risposta esistente , questa versione è portatile tra Windows e Linux e dovrebbe funzionare più velocemente (anche se non funzionerà senza alcune modifiche su Python a 32 bit con file nell'intervallo GB, vedere l' altra risposta per suggerimenti sulla gestione di questo e per modificare il funzionamento su Python 2 ).
import io # Gets consistent version of open for both Py2.7 and Py3.x
import itertools
import mmap
def skip_back_lines(mm, numlines, startidx):
'''Factored out to simplify handling of n and offset'''
for _ in itertools.repeat(None, numlines):
startidx = mm.rfind(b'\n', 0, startidx)
if startidx < 0:
break
return startidx
def tail(f, n, offset=0):
# Reopen file in binary mode
with io.open(f.name, 'rb') as binf, mmap.mmap(binf.fileno(), 0, access=mmap.ACCESS_READ) as mm:
# len(mm) - 1 handles files ending w/newline by getting the prior line
startofline = skip_back_lines(mm, offset, len(mm) - 1)
if startofline < 0:
return [] # Offset lines consumed whole file, nothing to return
# If using a generator function (yield-ing, see below),
# this should be a plain return, no empty list
endoflines = startofline + 1 # Slice end to omit offset lines
# Find start of lines to capture (add 1 to move from newline to beginning of following line)
startofline = skip_back_lines(mm, n, startofline) + 1
# Passing True to splitlines makes it return the list of lines without
# removing the trailing newline (if any), so list mimics f.readlines()
return mm[startofline:endoflines].splitlines(True)
# If Windows style \r\n newlines need to be normalized to \n, and input
# is ASCII compatible, can normalize newlines with:
# return mm[startofline:endoflines].replace(os.linesep.encode('ascii'), b'\n').splitlines(True)
Ciò presuppone che il numero di righe codificate sia abbastanza piccolo da poterle leggere in sicurezza tutte in una volta; potresti anche rendere questa una funzione generatore e leggere manualmente una riga alla volta sostituendo la riga finale con:
mm.seek(startofline)
# Call mm.readline n times, or until EOF, whichever comes first
# Python 3.2 and earlier:
for line in itertools.islice(iter(mm.readline, b''), n):
yield line
# 3.3+:
yield from itertools.islice(iter(mm.readline, b''), n)
Infine, questo letto in modalità binaria (necessario da usare mmap
) in modo da dare str
linee (Py2) e bytes
linee (Py3); se si desidera unicode
(Py2) o str
(Py3), è possibile modificare l'approccio iterativo per decodificare e / o correggere le nuove righe:
lines = itertools.islice(iter(mm.readline, b''), n)
if f.encoding: # Decode if the passed file was opened with a specific encoding
lines = (line.decode(f.encoding) for line in lines)
if 'b' not in f.mode: # Fix line breaks if passed file opened in text mode
lines = (line.replace(os.linesep, '\n') for line in lines)
# Python 3.2 and earlier:
for line in lines:
yield line
# 3.3+:
yield from lines
Nota: ho scritto tutto su una macchina in cui non ho accesso a Python per testare. Per favore fatemi sapere se ho digitato qualcosa; questo era abbastanza simile alla mia altra risposta che penso che dovrebbe funzionare, ma le modifiche (ad esempio la gestione di un offset
) potrebbero portare a sottili errori. Per favore fatemi sapere nei commenti se ci sono errori.
seek(0,2)
quinditell()
) e utilizzare quel valore per cercare rispetto all'inizio.