add Debug::acquire::progress debug option and fixme for index file loading with the...
authorMichael Vogt <mvo@ubuntu.com>
Wed, 16 Apr 2014 14:34:01 +0000 (16:34 +0200)
committerMichael Vogt <mvo@ubuntu.com>
Wed, 16 Apr 2014 14:34:01 +0000 (16:34 +0200)
apt-pkg/acquire-item.cc
apt-pkg/acquire.cc

index d5f8b0c..834362b 100644 (file)
@@ -963,6 +963,7 @@ pkgAcqIndex::pkgAcqIndex(pkgAcquire *Owner, IndexTarget const *Target,
    else
      Verify = true;
 
+   // FIXME: use the appropriate compression Extension
    // load the filesize
    indexRecords::checkSum *Record = MetaIndexParser->Lookup(string(Target->MetaKey));
    if(Record)
index 9fc4075..46d5e63 100644 (file)
@@ -846,6 +846,7 @@ bool pkgAcquireStatus::Pulse(pkgAcquire *Owner)
    unsigned long long ResumeSize = 0;
    for (pkgAcquire::Worker *I = Owner->WorkersBegin(); I != 0;
        I = Owner->WorkerStep(I))
+   {
       if (I->CurrentItem != 0 && I->CurrentItem->Owner->Complete == false)
       {
         CurrentBytes += I->CurrentSize;
@@ -856,7 +857,14 @@ bool pkgAcquireStatus::Pulse(pkgAcquire *Owner)
             I->CurrentItem->Owner->Complete == false)
            TotalBytes += I->CurrentSize;
       }
+   }
    
+   // debug
+   if (_config->FindB("Debug::acquire::progress", false) == true)
+      std::clog << " Bytes: " 
+                << SizeToStr(CurrentBytes) << " / " << SizeToStr(TotalBytes) 
+                << std::endl;
+
    // Normalize the figures and account for unknown size downloads
    if (TotalBytes <= 0)
       TotalBytes = 1;