- 论坛徽章:
- 0
|
import signal
import sys
def print_file(file):
while True:
line = file.readline()
if line:
yield line
def sig_handler(sig, frame):
# print sig, ":", frame
# write back the latest offset
f = open('counter', 'w')
f.write(str(length))
print length
f.close()
sys.exit(1)
signal.signal(signal.SIGINT, sig_handler)
length = 0
try:
# get the offset of last read
f = open('counter')
line= f.readline()
f.close()
if line:
length = int(line)
else:
length = 0
except IOError as e:
length = 0
f = open('data.txt')
f.seek(length)
for i in print_file(f):
print i
length += len(i)
f.close()
|
|