summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <rsiddharth@ninthfloor.org>2015-11-08 14:57:04 -0500
committerSiddharth Ravikumar <sravik@bgsu.edu>2015-11-08 15:01:25 -0500
commit7ed3c9cbe6e56223b043a23408474f9df08f119e (patch)
tree471f07c7711858fcfd16b0481eb36da575307b76
parentb6788a2ce08c61dc67be62dafc459ddd00e0ed83 (diff)
Updated combox.events.ComboxDirMonitor and combox.events.NodeDirMonitor. See ChangeLog.
Changes related to bug#10.
-rw-r--r--ChangeLog18
-rw-r--r--combox/events.py60
-rw-r--r--tests/events_test.py39
3 files changed, 95 insertions, 22 deletions
diff --git a/ChangeLog b/ChangeLog
index 7b5ff0e..61811ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,20 @@
-2015-11-2 Siddharth Ravikumar <sravik@bgsu.edu>
+2015-11-08 Siddharth Ravikumar <sravik@bgsu.edu>
+
+ * combox/events.py: ComboxDirMonitor and NodeDirMonitor now keep
+ track of the files that are created during "this" run; this
+ information is used to ignore the on_modified event triggered by
+ watchdog when a file is created.
+
+ Also, a delay proportional to the size of the file is introduced
+ on the on_modified callback methods of the ComboxDirMonitor and
+ NodeDirMonitor to prevent multiple on_modified from being
+ triggered by watchdog.
+
+ These changes are related to bug#10 (See TODO.org).
+
+ * tests/events_test.py: updated correponding tests.
+
+2015-11-02 Siddharth Ravikumar <sravik@bgsu.edu>
commit 7509f54f5173769eea
diff --git a/combox/events.py b/combox/events.py
index a7f88bc..e599bc5 100644
--- a/combox/events.py
+++ b/combox/events.py
@@ -19,6 +19,7 @@
import os
import platform
import logging
+import time
from os import path
from threading import Lock
@@ -54,6 +55,9 @@ class ComboxDirMonitor(LoggingEventHandler):
self.config = config
self.silo = ComboxSilo(self.config, dblock)
+ # tracks files that are created during the course of this run.
+ self.just_created = {}
+
self.housekeep()
@@ -149,6 +153,10 @@ class ComboxDirMonitor(LoggingEventHandler):
event.src_path)
return
+ # make note of this file creation; will be used when
+ # on_modified is called after this file creatiion.
+ self.just_created[event.src_path] = True
+
file_node_path = node_path(event.src_path, self.config,
not event.is_directory)
@@ -194,6 +202,26 @@ class ComboxDirMonitor(LoggingEventHandler):
pass
else:
# file was modified
+
+ f_size_MiB = path.getsize(event.src_path) / 1048576.0
+ log_i('%s modified %f' % (event.src_path, f_size_MiB))
+
+ # introduce delay to prevent multiple "file modified"
+ # events from being generated.
+ if f_size_MiB >= 30:
+ sleep_time = (f_size_MiB / 30.0)
+ log_i("waiting on_modified combox monitor %f" % sleep_time)
+ time.sleep(sleep_time)
+ log_i("end waiting on_modified combox monitor")
+ else:
+ time.sleep(1)
+
+ if self.just_created[event.src_path]:
+ self.just_created[event.src_path] = False
+ log_i("Just created file %s. So ignoring on_modified call." % (
+ event.src_path))
+ return
+
split_and_encrypt(event.src_path, self.config)
# update file info in silo.
self.silo.update(event.src_path)
@@ -222,6 +250,8 @@ class NodeDirMonitor(LoggingEventHandler):
self.num_nodes = len(get_nodedirs(self.config))
+ # track file shards that are just created during this run.
+ self.just_created = {}
def shardp(self, path):
"""Returns True if `path' is a shard
@@ -475,6 +505,11 @@ class NodeDirMonitor(LoggingEventHandler):
# a directory.
return
+
+ # make note of this file creation; will be used when
+ # on_modified is called after this file creatiion.
+ self.just_created[event.src_path] = True
+
file_cb_path = cb_path(event.src_path, self.config)
if event.is_directory and (not path.exists(file_cb_path)):
@@ -606,14 +641,33 @@ class NodeDirMonitor(LoggingEventHandler):
# do nothing
pass
elif (not event.is_directory):
- log_i("%s modified" % event.src_path)
+ # get file size first
+ f_size_MiB = path.getsize(event.src_path) / 1048576.0
+ log_i('%s modified %f' % (event.src_path, f_size_MiB))
+
+ # introduce delay to prevent multiple "file modified"
+ # events from being generated.
+ if f_size_MiB >= 30:
+ sleep_time = (f_size_MiB / 30.0)
+ log_i("waiting on_modified node monitor %f" % sleep_time)
+ time.sleep(sleep_time)
+ log_i("end waiting on_modified node monitor")
+ else:
+ time.sleep(1)
+
+ if self.just_created[event.src_path]:
+ self.just_created[event.src_path] = False
+ log_i("Just created file %s; ignoring on_modified call." % (
+ event.src_path))
+ return
+
file_content = decrypt_and_glue(file_cb_path,
self.config,
write=False)
file_content_hash = hash_file(file_cb_path, file_content)
if self.silo.stale(file_cb_path, file_content_hash) == True:
- log_i("Found %s stale" % file_cb_path)
+ log_i("Found %s stale. Updating it..." % file_cb_path)
# shard modified
# means, file was modified on another computer (also
@@ -627,3 +681,5 @@ class NodeDirMonitor(LoggingEventHandler):
# update db.
self.silo.update(file_cb_path)
self.silo.node_rem('file_modified', file_cb_path)
+ else:
+ log_i("Local modification of %s" % file_cb_path)
diff --git a/tests/events_test.py b/tests/events_test.py
index 7daabff..da35884 100644
--- a/tests/events_test.py
+++ b/tests/events_test.py
@@ -87,7 +87,7 @@ class TestEvents(object):
copyfile(self.TEST_FILE, self.TEST_FILE_COPY_0)
## wait for ComboxDirMonitor to split and scatter the file in the
## node directories.
- time.sleep(1)
+ time.sleep(2)
## check if the shards were created.
shardedp(self.TEST_FILE_COPY_0)
## check if the new file's info is in silo
@@ -99,7 +99,7 @@ class TestEvents(object):
self.TEST_TMP_FILE = "%s~" % self.TEST_FILE
copyfile(self.TEST_FILE, self.TEST_TMP_FILE)
# wait for a second.
- time.sleep(1)
+ time.sleep(2)
## confirm that shards were not created.
not_shardedp(self.TEST_TMP_FILE)
## confirm that it did not get registered in the silo.
@@ -118,13 +118,13 @@ class TestEvents(object):
# Test - directory creation
self.TEST_DIR_0 = path.join(self.FILES_DIR, 'foo')
os.mkdir(self.TEST_DIR_0)
- time.sleep(1)
+ time.sleep(2)
## check if TEST_DIR_0 is created under node directories.
dirp(self.TEST_DIR_0)
self.TEST_DIR_1 = path.join(self.TEST_DIR_0, 'bar')
os.mkdir(self.TEST_DIR_1)
- time.sleep(1)
+ time.sleep(2)
## check if TEST_DIR_1 is created under node directories.
dirp(self.TEST_DIR_1)
@@ -132,7 +132,7 @@ class TestEvents(object):
self.TEST_FILE_COPY_1 = path.join(self.TEST_DIR_1,
path.basename(self.TEST_FILE))
copyfile(self.TEST_FILE, self.TEST_FILE_COPY_1)
- time.sleep(1)
+ time.sleep(2)
shardedp(self.TEST_FILE_COPY_1)
# Test - dir rename
@@ -142,7 +142,7 @@ class TestEvents(object):
path.basename(self.TEST_FILE))
os.rename(self.TEST_DIR_1, self.TEST_DIR_1_NEW)
- time.sleep(1)
+ time.sleep(3)
renamedp(self.TEST_DIR_1, self.TEST_DIR_1_NEW)
renamedp(self.TEST_FILE_COPY_1, self.TEST_FILE_COPY_1_NEW)
## check if the new file's info is updated in silo
@@ -154,7 +154,7 @@ class TestEvents(object):
purge_dir(self.TEST_DIR_0)
# remove the directory itself.
os.rmdir(self.TEST_DIR_0)
- time.sleep(1)
+ time.sleep(2)
path_deletedp(self.TEST_FILE_COPY_1_NEW)
path_deletedp(self.TEST_DIR_1, True)
path_deletedp(self.TEST_DIR_0, True)
@@ -165,7 +165,7 @@ class TestEvents(object):
self.lorem_file_copy = "%s.copy" % self.lorem_file
# this will shard lorem.txt.copy in the node directories.
copyfile(self.lorem_file, self.lorem_file_copy)
- time.sleep(1)
+ time.sleep(2)
shardedp(self.lorem_file_copy)
## check if the lorem_file_copy's info is stored in silo
silo = ComboxSilo(self.config, self.silo_lock)
@@ -178,7 +178,7 @@ class TestEvents(object):
# write lorem's new content to lorem_file_copy
write_file(self.lorem_file_copy, lorem_copy_content)
- time.sleep(1)
+ time.sleep(2)
## check if the lorem_file_copy's info is updated in silo
silo = ComboxSilo(self.config, self.silo_lock)
assert lorem_file_copy_hash != silo.db.get(self.lorem_file_copy)
@@ -187,7 +187,7 @@ class TestEvents(object):
# decrypt_and_glue will decrypt the file shards, glues them and
# writes it to the respective file
decrypt_and_glue(self.lorem_file_copy, self.config)
- time.sleep(1)
+ time.sleep(2)
lorem_content_from_disk = read_file(self.lorem_file_copy)
assert lorem_copy_content == lorem_content_from_disk
@@ -195,7 +195,7 @@ class TestEvents(object):
# remove lorem_file_copy and confirm that its shards are deleted
# in the node directories.
remove(self.lorem_file_copy)
- time.sleep(1)
+ time.sleep(2)
path_deletedp(self.lorem_file_copy)
## check if the lorem_file_copy's info is deleted from silo
silo = ComboxSilo(self.config, self.silo_lock)
@@ -285,7 +285,7 @@ class TestEvents(object):
fmutant_content)
## wait for NodeDirMonitor to reconstruct the shards and put
## it in combox directory
- time.sleep(1)
+ time.sleep(2)
assert fmutant_content == read_file(self.TEST_FILE_MUTANT)
## check if the new file's info is in silo
assert self.silo.exists(self.TEST_FILE_MUTANT)
@@ -297,14 +297,14 @@ class TestEvents(object):
# Test - directory creation
self.FOO_DIR = path.join(self.FILES_DIR, 'foo')
mk_nodedir(self.FOO_DIR, self.config)
- time.sleep(1)
+ time.sleep(2)
## check if FOO_DIR is created under the combox directory
assert path.isdir(self.FOO_DIR)
assert_equal(None, self.silo.node_get('file_created',
self.FOO_DIR))
self.BAR_DIR = path.join(self.FOO_DIR, 'bar')
mk_nodedir(self.BAR_DIR, self.config)
- time.sleep(1)
+ time.sleep(2)
## check if BAR_DIR is created under the combox directory.
assert path.isdir(self.BAR_DIR)
assert_equal(None, self.silo.node_get('file_created',
@@ -347,6 +347,7 @@ class TestEvents(object):
split_and_encrypt(self.lorem_file_copy, self.config,
lorem_content)
+ time.sleep(2)
self.silo.update(self.lorem_file_copy)
shardedp(self.lorem_file_copy)
@@ -359,7 +360,7 @@ class TestEvents(object):
split_and_encrypt(self.lorem_file_copy, self.config,
lorem_copy_content)
- time.sleep(1)
+ time.sleep(2)
assert lorem_copy_content == read_file(self.lorem_file_copy)
## check if the lorem_file_copy's info is updated in silo
@@ -400,22 +401,22 @@ class TestEvents(object):
mk_nodedir(BAR_DIR, self.config)
# wait for the `bar' directory to be created inside combox
# directory.
- time.sleep(1)
+ time.sleep(2)
# Test - directory deletion inside node directory.
rm_nodedir(BAR_DIR, self.config)
- time.sleep(1)
+ time.sleep(2)
assert not path.exists(BAR_DIR)
the_guide = path.join(self.FILES_DIR, 'the.guide')
split_and_encrypt(the_guide, self.config,
read_file(self.TEST_FILE))
- time.sleep(1)
+ time.sleep(2)
assert path.exists(the_guide)
# Test - Shard deletion.
rm_shards(the_guide, self.config)
- time.sleep(4)
+ time.sleep(5)
assert not path.exists(the_guide)
## check if the new file's info is removed from silo