]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Add ignore count to uploaded callback.
authorDaira Hopwood <daira@jacaranda.org>
Tue, 28 Apr 2015 20:06:54 +0000 (21:06 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Mon, 4 May 2015 16:06:31 +0000 (17:06 +0100)
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
src/allmydata/frontends/drop_upload.py

index ea561d9f287f720bc452a0f4e4af7c84d7dd6d77..1e2da41ee54c713afc531767390348efd30e37f5 100644 (file)
@@ -56,6 +56,7 @@ class DropUploader(service.MultiService):
             raise AssertionError("The URI in 'private/drop_upload_dircap' is not a writecap to a directory.")
 
         self._uploaded_callback = lambda ign: None
+        self._ignore_count = 0
 
         self._notifier = inotify.INotify()
         if hasattr(self._notifier, 'set_pending_delay'):
@@ -127,13 +128,23 @@ class DropUploader(service.MultiService):
                           "(this is normal for temporary files): %r" % (path.path, f))
                 self._stats_provider.count('drop_upload.files_disappeared', 1)
                 return None
+
         d.addCallbacks(_succeeded, _failed)
-        d.addBoth(self._uploaded_callback)
+        d.addBoth(self._do_upload_callback)
         return d
 
-    def set_uploaded_callback(self, callback):
-        """This sets a function that will be called after a file has been uploaded."""
+    def _do_upload_callback(self, res):
+        if self._ignore_count == 0:
+            self._uploaded_callback(res)
+        else:
+            self._ignore_count -= 1
+
+    def set_uploaded_callback(self, callback, ignore_count=0):
+        """
+        This sets a function that will be called after a file has been uploaded.
+        """
         self._uploaded_callback = callback
+        self._ignore_count = ignore_count
 
     def finish(self, for_tests=False):
         self._notifier.stopReading()