实现Python版的tail -f功能

来源 :http://www.opstool.com/article/226

tail -f 的功能非常好用。我们用Python也可以实现这样的功能。
实现的原理是通过Python版本的inotify获得文件的更新消息,从而读取更新的行。pyinotify的下载地址https://github.com/seb-m/pyinotify
下载解压后得到如下文件

#ls
ACKS  build  common  COPYING  dist  MANIFEST.in  old  python2  python3  README.md  setup.py

执行如下命令进行安装。

  1. python setup.py build
  2. python setup.py install

然后就可以使用Python版本的inotify功能了。
下面是我写的一个简单的tail -f文件的实现。

  1. import pyinotify
  2. import time
  3. import os
  4. class ProcessTransientFile(pyinotify.ProcessEvent):
  5. def process_IN_MODIFY(self, event):
  6. line = file.readline()
  7. if line:
  8. print line, # already has newline
  9.  
  10. filename = '/tmp/test1234'
  11. file = open(filename,'r')
  12. #Find the size of the file and move to the end
  13. st_results = os.stat(filename)
  14. st_size = st_results[6]
  15. file.seek(st_size)
  16.  
  17. wm = pyinotify.WatchManager()
  18. notifier = pyinotify.Notifier(wm)
  19. wm.watch_transient_file(filename, pyinotify.IN_MODIFY, ProcessTransientFile)
  20. notifier.loop()

tail的文件为/tmp/test1234,通过向/tmp/test1234写入内容,可以看到python脚本可以动态显示更新的内容。
这个小脚本只是抛砖引玉。通过监听文件,尤其是日志文件可以实现很多诸如报警、自动控制等功能。

posted @ 2016-03-30 21:06  von · van  阅读(1052)  评论(0)    收藏  举报