]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
SFTP: add a comment about a subtle interaction between OverwriteableFileConsumer...
authordavid-sarah <david-sarah@jacaranda.org>
Sat, 3 Sep 2011 22:23:04 +0000 (15:23 -0700)
committerdavid-sarah <david-sarah@jacaranda.org>
Sat, 3 Sep 2011 22:23:04 +0000 (15:23 -0700)
src/allmydata/frontends/sftpd.py
src/allmydata/test/test_sftp.py

index 59952a994744ebdc95f7307e07b8336d84b634c7..887786e76f51a54c42c06e2c40d45405f432e077 100644 (file)
@@ -461,6 +461,12 @@ class OverwriteableFileConsumer(PrefixingLogMixin):
         The caller must perform no more overwrites until the Deferred has fired."""
 
         if noisy: self.log(".read(%r, %r), current_size = %r" % (offset, length, self.current_size), level=NOISY)
+
+        # Note that the overwrite method is synchronous. When a write request is processed
+        # (e.g. a writeChunk request on the async queue of GeneralSFTPFile), overwrite will
+        # be called and will update self.current_size if necessary before returning. Therefore,
+        # self.current_size will be up-to-date for a subsequent call to this read method, and
+        # so it is correct to do the check for a read past the end-of-file here.
         if offset >= self.current_size:
             def _eof(): raise EOFError("read past end of file")
             return defer.execute(_eof)
index 6095b18f22dce1786f45d0fd82a8e305b53d898f..a45d71d0740431dceb8a3e6237b34d3f616b18fc 100644 (file)
@@ -913,6 +913,9 @@ class Handler(GridTestMixin, ShouldFailMixin, ReallyEqualMixin, unittest.TestCas
                       self.handler.openFile("small", sftp.FXF_READ | sftp.FXF_WRITE, {}))
         def _read_write(rwf):
             d2 = rwf.writeChunk(8, "0123")
+            # test immediate read starting after the old end-of-file
+            d2.addCallback(lambda ign: rwf.readChunk(11, 1))
+            d2.addCallback(lambda data: self.failUnlessReallyEqual(data, "3"))
             d2.addCallback(lambda ign: rwf.readChunk(0, 100))
             d2.addCallback(lambda data: self.failUnlessReallyEqual(data, "012345670123"))
             d2.addCallback(lambda ign: rwf.close())