]> git.saurik.com Git - apt.git/commitdiff
* apt-pkg/contrib/fileutl.cc:
authorMartin Pitt <martin@piware.de>
Wed, 13 Oct 2010 11:00:49 +0000 (13:00 +0200)
committerMartin Pitt <martin@piware.de>
Wed, 13 Oct 2010 11:00:49 +0000 (13:00 +0200)
  - Fix FileFd::Size() for gzipped files to give the size of the
    uncompressed data. This fixes cache progress building progress going way
    over 100%.

apt-pkg/contrib/fileutl.cc
debian/changelog

index eabaadf908ee7f29c637d87cb88b855d96c056df..bf07f600838b9a1a95fffde93c037b3812e569c8 100644 (file)
@@ -915,8 +915,27 @@ unsigned long FileFd::Tell()
 /* */
 unsigned long FileFd::Size()
 {
-   //TODO: For gz, do we need the actual file size here or the uncompressed length?
    struct stat Buf;
+   long size;
+   off_t orig_pos;
+
+   if (gz)
+   {
+       /* unfortunately zlib.h doesn't provide a gzsize(), so we have to do
+       * this ourselves; the original (uncompressed) file size is the last 32
+       * bits of the file */
+       orig_pos = lseek(iFd, 0, SEEK_CUR);
+       if (lseek(iFd, -4, SEEK_END) < 0)
+          return _error->Errno("lseek","Unable to seek to end of gzipped file");
+       if (read(iFd, &size, 4) != 4)
+          return _error->Errno("read","Unable to read original size of gzipped file");
+       size &= 0xFFFFFFFF;
+
+       if (lseek(iFd, orig_pos, SEEK_SET) < 0)
+          return _error->Errno("lseek","Unable to seek in gzipped file");
+       return size;
+   }
+
    if (fstat(iFd,&Buf) != 0)
       return _error->Errno("fstat","Unable to determine the file size");
    return Buf.st_size;
index ad6d05cf0d61b4209ee8aa1858be3594cb000e5a..f1737a5a20427fa02cb8cea7afeeda50acb78b1f 100644 (file)
@@ -11,6 +11,10 @@ apt (0.8.7) UNRELEASED; urgency=low
     - Use FileFd::Size() instead of stat()ing the sources/binary/translations
       indexes directly, so that we have transparent handling of gzipped
       indexes.
+  * apt-pkg/contrib/fileutl.cc:
+    - Fix FileFd::Size() for gzipped files to give the size of the
+      uncompressed data. This fixes cache progress building progress going way
+      over 100%.
 
  -- Christian Perrier <bubulle@debian.org>  Tue, 05 Oct 2010 05:35:58 +0200