summaryrefslogtreecommitdiff
path: root/python3
diff options
context:
space:
mode:
authorSebastien Martini <seb@dbzteam.org>2010-05-27 17:30:23 +0200
committerSebastien Martini <seb@dbzteam.org>2010-05-27 17:30:23 +0200
commit134f1628ed438995b0367c76ea749d9d11067eb6 (patch)
tree681f3fdb4574883bcea0e6e5fa0dff9b57c92e62 /python3
parent722cce1b6b1f953e0a99e6860917e7c0fe93235b (diff)
downloadpyinotify-134f1628ed438995b0367c76ea749d9d11067eb6.tar.gz
Added new option for coalescing events (disabled by default). See new example
coalesce.py.
Diffstat (limited to 'python3')
-rwxr-xr-xpython3/pyinotify.py68
1 files changed, 61 insertions, 7 deletions
diff --git a/python3/pyinotify.py b/python3/pyinotify.py
index c3de72a..d75e564 100755
--- a/python3/pyinotify.py
+++ b/python3/pyinotify.py
@@ -413,11 +413,36 @@ class _RawEvent(_Event):
@type name: string or None
"""
# name: remove trailing '\0'
- super(_RawEvent, self).__init__({'wd': wd,
- 'mask': mask,
- 'cookie': cookie,
- 'name': name.rstrip('\0')})
+ _Event.__init__(self, {'wd': wd,
+ 'mask': mask,
+ 'cookie': cookie,
+ 'name': name.rstrip('\0')})
log.debug(repr(self))
+ # Hash value is cached as soon as computed
+ self._hash = None
+
+ def __eq__(self, rhs):
+ if (self.wd == rhs.wd and self.mask == rhs.mask and
+ self.cookie == rhs.cookie and self.name and rhs.name):
+ return True
+ return False
+
+ def __str__(self):
+ s = '%s %s %s %s' % (str(self.wd), str(self.mask), str(self.cookie),
+ self.name)
+ return s
+
+ def _djb_hash(self):
+ # Daniel J. Bernstein's hash function
+ h = 0
+ for c in str(self):
+ h = 33 * h ^ ord(c)
+ return h
+
+ def __hash__(self):
+ if self._hash is None:
+ self._hash = self._djb_hash()
+ return self._hash
class Event(_Event):
@@ -967,7 +992,7 @@ class Notifier:
@param read_freq: if read_freq == 0, events are read asap,
if read_freq is > 0, this thread sleeps
max(0, read_freq - timeout) seconds. But if
- timeout is None it can be different because
+ timeout is None it may be different because
poll is blocking waiting for something to read.
@type read_freq: int
@param threshold: File descriptor will be read only if the accumulated
@@ -1003,6 +1028,9 @@ class Notifier:
self._read_freq = read_freq
self._threshold = threshold
self._timeout = timeout
+ # Coalesce events option
+ self._coalesce = False
+ self._eventset = set() # Only used when coalesce option is True
def append_event(self, event):
"""
@@ -1016,6 +1044,24 @@ class Notifier:
def proc_fun(self):
return self._default_proc_fun
+ def coalesce_events(self, value=True):
+ """
+ Coalescing events. Events are usually processed by batchs, their size
+ depend on various factors. Thus, before processing them, events received
+ from inotify are aggregated in a fifo queue. If this coalescing
+ option is enabled events are filtered based on their unicity, only
+ unique events are enqueued, doublons are discarded. An event is unique
+ when the combination of its fields (wd, mask, cookie, name) is unique
+ among events of a same batch. After a batch of events is processed any
+ events is accepted again.
+
+ @param value: Optional coalescing value. True by default.
+ @type value: Bool
+ """
+ self._coalesce = value
+ if not value:
+ self._eventset.clear()
+
def check_events(self, timeout=None):
"""
Check for new events available to read, blocks up to timeout
@@ -1079,7 +1125,14 @@ class Notifier:
r[rsum + s_size:rsum + s_size + fname_len])
# FIXME: should we explictly call sys.getdefaultencoding() here ??
uname = bname.decode()
- self._eventq.append(_RawEvent(wd, mask, cookie, uname))
+ rawevent = _RawEvent(wd, mask, cookie, uname)
+ if self._coalesce:
+ # Only enqueue new (unique) events.
+ if rawevent not in self._eventset:
+ self._eventset.add(rawevent)
+ self._eventq.append(rawevent)
+ else:
+ self._eventq.append(rawevent)
rsum += s_size + fname_len
def process_events(self):
@@ -1104,7 +1157,8 @@ class Notifier:
else:
self._default_proc_fun(revent)
self._sys_proc_fun.cleanup() # remove olds MOVED_* events records
-
+ if self._coalesce:
+ self._eventset.clear()
def __daemonize(self, pid_file=None, force_kill=False, stdin=os.devnull,
stdout=os.devnull, stderr=os.devnull):