mintmenu/usr/lib/linuxmint/mintMenu/plugins/filemonitor.py

125 lines
3.9 KiB
Python
Raw Normal View History

#!/usr/bin/python2
2014-03-28 15:44:13 +00:00
2009-07-27 11:45:34 +01:00
import os
import os.path
import threading
import time
2013-03-14 00:24:32 +00:00
from gi.repository import GLib
2009-07-27 11:45:34 +01:00
try:
2010-09-23 10:03:18 +01:00
import pyinotify
hasInotify = True
2009-07-27 11:45:34 +01:00
except ImportError:
2010-09-23 10:03:18 +01:00
hasInotify = False
2009-07-27 11:45:34 +01:00
if hasInotify:
2010-09-23 10:03:18 +01:00
class FileMonitor(object):
def __init__( self ):
self.monitorId = 0
self.wm = pyinotify.WatchManager()
self.wdds = {}
self.callbacks = {}
self.notifier = pyinotify.ThreadedNotifier(self.wm, self.fileChanged)
self.notifier.setDaemon( True )
self.notifier.start()
def addMonitor( self, filename, callback, args = None ):
try:
mask = pyinotify.IN_DELETE | pyinotify.IN_CREATE | pyinotify.IN_MODIFY
mId = self.wm.add_watch( filename, mask, rec = True)[filename]
if mId >= 0:
self.callbacks[mId] = ( callback, args )
except Exception, detail:
2016-05-21 17:11:36 +01:00
mId = 0
2010-09-23 10:03:18 +01:00
return mId
def removeMonitor( self, monitorId ):
if monitorId in self.callbacks:
self.wm.rm_watch( monitorId )
del self.callbacks[monitorId]
def fileChanged(self, event ):
if event.wd in self.callbacks:
# print event.path
callback = self.callbacks[event.wd]
if callback[1]:
2013-03-14 00:24:32 +00:00
GLib.idle_add( callback[0], callback[1] )
2010-09-23 10:03:18 +01:00
else:
2013-03-14 00:24:32 +00:00
GLib.idle_add( callback[0] )
2010-09-23 10:03:18 +01:00
2009-07-27 11:45:34 +01:00
else:
2010-09-23 10:03:18 +01:00
class _MonitoredFile( object ):
def __init__( self, filename, callback, monitorId, args ):
self.filename = filename
self.callback = callback
self.monitorId = monitorId
self.args = args
self.exists = os.path.exists( self.filename )
if self.exists:
self.mtime = os.stat( filename ).st_mtime
else:
self.mtime = 0
def hasChanged( self ):
if os.path.exists( self.filename ):
if not self.exists:
self.exists = True
self.mtime = os.stat( self.filename ).st_mtime
return True
else:
mtime = os.stat( self.filename ).st_mtime
if mtime != self.mtime:
self.mtime = mtime
return True
else:
if self.exists:
self.exists = False
return True
return False
class MonitorThread(threading.Thread):
def __init__(self, monitor):
threading.Thread.__init__ ( self )
self.monitor = monitor
def run(self):
while(1):
self.monitor.checkFiles()
time.sleep(1)
class FileMonitor(object):
def __init__( self ):
self.monitorId = 0
self.monitoredFiles = []
self.monitorThread = MonitorThread( self )
self.monitorThread.setDaemon( True )
self.monitorThread.start()
def addMonitor( self, filename, callback, args = None ):
self.monitorId += 1
self.monitoredFiles.append( _MonitoredFile( filename, callback, self.monitorId, args ) )
return self.monitorId
def removeMonitor( self, monitorId ):
for monitored in self.monitoredFiles:
if monitorId == monitored.monitorId:
self.monitoredFiles.remove( monitored )
break
def checkFiles( self ):
for monitored in self.monitoredFiles:
if monitored.hasChanged():
if monitored.args:
2013-03-14 00:24:32 +00:00
GLib.idle_add( monitored.callback, monitored.args )
2010-09-23 10:03:18 +01:00
else:
2013-03-14 00:24:32 +00:00
GLib.idle_add( monitored.callback )
2010-09-23 10:03:18 +01:00
2009-07-27 11:45:34 +01:00
monitor = FileMonitor()