[or-cvs] r17308: {updater} Avoid failure in the common-in-debugging case where we have (updater/trunk/lib/thandy)
nickm at seul.org
nickm at seul.org
Mon Nov 17 02:16:40 UTC 2008
Author: nickm
Date: 2008-11-16 21:16:40 -0500 (Sun, 16 Nov 2008)
New Revision: 17308
Modified:
updater/trunk/lib/thandy/download.py
Log:
Avoid failure in the common-in-debugging case where we have a completely downloaded file in tmp
Modified: updater/trunk/lib/thandy/download.py
===================================================================
--- updater/trunk/lib/thandy/download.py 2008-11-17 02:05:08 UTC (rev 17307)
+++ updater/trunk/lib/thandy/download.py 2008-11-17 02:16:40 UTC (rev 17308)
@@ -189,16 +189,37 @@
traceback.format_exc())
return False
+ def _checkTmpFile(self):
+ """DOCDOC"""
+ if self._wantHash and not self._repoFile:
+ gotHash = thandy.formats.getFileDigest(self._tmpPath)
+ if gotHash != self._wantHash:
+ raise thandy.DownloadError("File hash was not as expected.")
+ elif self._repoFile:
+ self._repoFile.checkFile(self._tmpPath, self._wantHash)
+
def _download(self):
# Implementation function. Unlike download(), can throw exceptions.
f_in = f_out = None
+ haveStalled = self.haveStalledFile()
+ if haveStalled and self._wantHash:
+ try:
+ self._checkTmpFile()
+ except thandy.Exception:
+ pass
+ else:
+ # What luck! This file was what we wanted.
+ thandy.util.ensureParentDir(self._destPath)
+ thandy.util.moveFile(self._tmpPath, self._destPath)
+ return
+
try:
url = self.getURL()
logging.info("Downloading %s", url)
- if self.haveStalledFile():
+ if haveStalled:
have_length = os.stat(self._tmpPath).st_size
logging.info("Have stalled file for %s with %s bytes", url,
have_length)
@@ -237,12 +258,7 @@
if f_out is not None:
f_out.close()
- if self._wantHash and not self._repoFile:
- gotHash = thandy.formats.getFileDigest(self._tmpPath)
- if gotHash != self._wantHash:
- raise thandy.DownloadError("File hash was not as expected.")
- elif self._repoFile:
- self._repoFile.checkFile(self._tmpPath, self._wantHash)
+ self._checkTmpFile()
thandy.util.ensureParentDir(self._destPath)
thandy.util.moveFile(self._tmpPath, self._destPath)
More information about the tor-commits
mailing list