]>
git.saurik.com Git - apt.git/blob - apt-pkg/acquire.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: acquire.cc,v 1.50 2004/03/17 05:17:11 mdz Exp $
4 /* ######################################################################
6 Acquire - File Acquiration
8 The core element for the schedule system is the concept of a named
9 queue. Each queue is unique and each queue has a name derived from the
10 URI. The degree of paralization can be controlled by how the queue
11 name is derived from the URI.
13 ##################################################################### */
15 // Include Files /*{{{*/
18 #include <apt-pkg/acquire.h>
19 #include <apt-pkg/acquire-item.h>
20 #include <apt-pkg/acquire-worker.h>
21 #include <apt-pkg/configuration.h>
22 #include <apt-pkg/error.h>
23 #include <apt-pkg/strutl.h>
24 #include <apt-pkg/fileutl.h>
37 #include <sys/select.h>
45 // Acquire::pkgAcquire - Constructor /*{{{*/
46 // ---------------------------------------------------------------------
47 /* We grab some runtime state from the configuration space */
48 pkgAcquire::pkgAcquire() : LockFD(-1), Queues(0), Workers(0), Configs(0), Log(NULL
), ToFetch(0),
49 Debug(_config
->FindB("Debug::pkgAcquire",false)),
52 string
const Mode
= _config
->Find("Acquire::Queue-Mode","host");
53 if (strcasecmp(Mode
.c_str(),"host") == 0)
54 QueueMode
= QueueHost
;
55 if (strcasecmp(Mode
.c_str(),"access") == 0)
56 QueueMode
= QueueAccess
;
58 pkgAcquire::pkgAcquire(pkgAcquireStatus
*Progress
) : LockFD(-1), Queues(0), Workers(0),
59 Configs(0), Log(Progress
), ToFetch(0),
60 Debug(_config
->FindB("Debug::pkgAcquire",false)),
63 string
const Mode
= _config
->Find("Acquire::Queue-Mode","host");
64 if (strcasecmp(Mode
.c_str(),"host") == 0)
65 QueueMode
= QueueHost
;
66 if (strcasecmp(Mode
.c_str(),"access") == 0)
67 QueueMode
= QueueAccess
;
71 // Acquire::Setup - Delayed Constructor /*{{{*/
72 // ---------------------------------------------------------------------
73 /* Do everything needed to be a complete Acquire object and report the
74 success (or failure) back so the user knows that something is wrong… */
75 bool pkgAcquire::Setup(pkgAcquireStatus
*Progress
, string
const &Lock
)
79 // check for existence and possibly create auxiliary directories
80 string
const listDir
= _config
->FindDir("Dir::State::lists");
81 string
const partialListDir
= listDir
+ "partial/";
82 string
const archivesDir
= _config
->FindDir("Dir::Cache::Archives");
83 string
const partialArchivesDir
= archivesDir
+ "partial/";
85 if (CreateAPTDirectoryIfNeeded(_config
->FindDir("Dir::State"), partialListDir
) == false &&
86 CreateAPTDirectoryIfNeeded(listDir
, partialListDir
) == false)
87 return _error
->Errno("Acquire", _("List directory %spartial is missing."), listDir
.c_str());
89 if (CreateAPTDirectoryIfNeeded(_config
->FindDir("Dir::Cache"), partialArchivesDir
) == false &&
90 CreateAPTDirectoryIfNeeded(archivesDir
, partialArchivesDir
) == false)
91 return _error
->Errno("Acquire", _("Archives directory %spartial is missing."), archivesDir
.c_str());
93 if (Lock
.empty() == true || _config
->FindB("Debug::NoLocking", false) == true)
96 // Lock the directory this acquire object will work in
97 LockFD
= GetLock(flCombine(Lock
, "lock"));
99 return _error
->Error(_("Unable to lock directory %s"), Lock
.c_str());
104 // Acquire::~pkgAcquire - Destructor /*{{{*/
105 // ---------------------------------------------------------------------
106 /* Free our memory, clean up the queues (destroy the workers) */
107 pkgAcquire::~pkgAcquire()
116 MethodConfig
*Jnk
= Configs
;
117 Configs
= Configs
->Next
;
122 // Acquire::Shutdown - Clean out the acquire object /*{{{*/
123 // ---------------------------------------------------------------------
125 void pkgAcquire::Shutdown()
127 while (Items
.empty() == false)
129 if (Items
[0]->Status
== Item::StatFetching
)
130 Items
[0]->Status
= Item::StatError
;
137 Queues
= Queues
->Next
;
142 // Acquire::Add - Add a new item /*{{{*/
143 // ---------------------------------------------------------------------
144 /* This puts an item on the acquire list. This list is mainly for tracking
146 void pkgAcquire::Add(Item
*Itm
)
148 Items
.push_back(Itm
);
151 // Acquire::Remove - Remove a item /*{{{*/
152 // ---------------------------------------------------------------------
153 /* Remove an item from the acquire list. This is usually not used.. */
154 void pkgAcquire::Remove(Item
*Itm
)
158 for (ItemIterator I
= Items
.begin(); I
!= Items
.end();)
170 // Acquire::Add - Add a worker /*{{{*/
171 // ---------------------------------------------------------------------
172 /* A list of workers is kept so that the select loop can direct their FD
174 void pkgAcquire::Add(Worker
*Work
)
176 Work
->NextAcquire
= Workers
;
180 // Acquire::Remove - Remove a worker /*{{{*/
181 // ---------------------------------------------------------------------
182 /* A worker has died. This can not be done while the select loop is running
183 as it would require that RunFds could handling a changing list state and
185 void pkgAcquire::Remove(Worker
*Work
)
190 Worker
**I
= &Workers
;
194 *I
= (*I
)->NextAcquire
;
196 I
= &(*I
)->NextAcquire
;
200 // Acquire::Enqueue - Queue an URI for fetching /*{{{*/
201 // ---------------------------------------------------------------------
202 /* This is the entry point for an item. An item calls this function when
203 it is constructed which creates a queue (based on the current queue
204 mode) and puts the item in that queue. If the system is running then
205 the queue might be started. */
206 void pkgAcquire::Enqueue(ItemDesc
&Item
)
208 // Determine which queue to put the item in
209 const MethodConfig
*Config
;
210 string Name
= QueueName(Item
.URI
,Config
);
211 if (Name
.empty() == true)
214 // Find the queue structure
216 for (; I
!= 0 && I
->Name
!= Name
; I
= I
->Next
);
219 I
= new Queue(Name
,this);
227 // See if this is a local only URI
228 if (Config
->LocalOnly
== true && Item
.Owner
->Complete
== false)
229 Item
.Owner
->Local
= true;
230 Item
.Owner
->Status
= Item::StatIdle
;
232 // Queue it into the named queue
239 clog
<< "Fetching " << Item
.URI
<< endl
;
240 clog
<< " to " << Item
.Owner
->DestFile
<< endl
;
241 clog
<< " Queue is: " << Name
<< endl
;
245 // Acquire::Dequeue - Remove an item from all queues /*{{{*/
246 // ---------------------------------------------------------------------
247 /* This is called when an item is finished being fetched. It removes it
248 from all the queues */
249 void pkgAcquire::Dequeue(Item
*Itm
)
254 clog
<< "Dequeuing " << Itm
->DestFile
<< endl
;
256 for (; I
!= 0; I
= I
->Next
)
262 clog
<< "Dequeued from " << I
->Name
<< endl
;
270 // Acquire::QueueName - Return the name of the queue for this URI /*{{{*/
271 // ---------------------------------------------------------------------
272 /* The string returned depends on the configuration settings and the
273 method parameters. Given something like http://foo.org/bar it can
274 return http://foo.org or http */
275 string
pkgAcquire::QueueName(string Uri
,MethodConfig
const *&Config
)
279 Config
= GetConfig(U
.Access
);
283 /* Single-Instance methods get exactly one queue per URI. This is
284 also used for the Access queue method */
285 if (Config
->SingleInstance
== true || QueueMode
== QueueAccess
)
288 string AccessSchema
= U
.Access
+ ':',
289 FullQueueName
= AccessSchema
+ U
.Host
;
290 unsigned int Instances
= 0, SchemaLength
= AccessSchema
.length();
293 for (; I
!= 0; I
= I
->Next
) {
294 // if the queue already exists, re-use it
295 if (I
->Name
== FullQueueName
)
296 return FullQueueName
;
298 if (I
->Name
.compare(0, SchemaLength
, AccessSchema
) == 0)
303 clog
<< "Found " << Instances
<< " instances of " << U
.Access
<< endl
;
306 if (Instances
>= (unsigned int)_config
->FindI("Acquire::QueueHost::Limit",10))
309 return FullQueueName
;
312 // Acquire::GetConfig - Fetch the configuration information /*{{{*/
313 // ---------------------------------------------------------------------
314 /* This locates the configuration structure for an access method. If
315 a config structure cannot be found a Worker will be created to
317 pkgAcquire::MethodConfig
*pkgAcquire::GetConfig(string Access
)
319 // Search for an existing config
321 for (Conf
= Configs
; Conf
!= 0; Conf
= Conf
->Next
)
322 if (Conf
->Access
== Access
)
325 // Create the new config class
326 Conf
= new MethodConfig
;
327 Conf
->Access
= Access
;
328 Conf
->Next
= Configs
;
331 // Create the worker to fetch the configuration
333 if (Work
.Start() == false)
336 /* if a method uses DownloadLimit, we switch to SingleInstance mode */
337 if(_config
->FindI("Acquire::"+Access
+"::Dl-Limit",0) > 0)
338 Conf
->SingleInstance
= true;
343 // Acquire::SetFds - Deal with readable FDs /*{{{*/
344 // ---------------------------------------------------------------------
345 /* Collect FDs that have activity monitors into the fd sets */
346 void pkgAcquire::SetFds(int &Fd
,fd_set
*RSet
,fd_set
*WSet
)
348 for (Worker
*I
= Workers
; I
!= 0; I
= I
->NextAcquire
)
350 if (I
->InReady
== true && I
->InFd
>= 0)
354 FD_SET(I
->InFd
,RSet
);
356 if (I
->OutReady
== true && I
->OutFd
>= 0)
360 FD_SET(I
->OutFd
,WSet
);
365 // Acquire::RunFds - Deal with active FDs /*{{{*/
366 // ---------------------------------------------------------------------
367 /* Dispatch active FDs over to the proper workers. It is very important
368 that a worker never be erased while this is running! The queue class
369 should never erase a worker except during shutdown processing. */
370 void pkgAcquire::RunFds(fd_set
*RSet
,fd_set
*WSet
)
372 for (Worker
*I
= Workers
; I
!= 0; I
= I
->NextAcquire
)
374 if (I
->InFd
>= 0 && FD_ISSET(I
->InFd
,RSet
) != 0)
376 if (I
->OutFd
>= 0 && FD_ISSET(I
->OutFd
,WSet
) != 0)
381 // Acquire::Run - Run the fetch sequence /*{{{*/
382 // ---------------------------------------------------------------------
383 /* This runs the queues. It manages a select loop for all of the
384 Worker tasks. The workers interact with the queues and items to
385 manage the actual fetch. */
386 pkgAcquire::RunResult
pkgAcquire::Run(int PulseIntervall
)
390 for (Queue
*I
= Queues
; I
!= 0; I
= I
->Next
)
396 bool WasCancelled
= false;
398 // Run till all things have been acquired
401 tv
.tv_usec
= PulseIntervall
;
409 SetFds(Highest
,&RFds
,&WFds
);
414 Res
= select(Highest
+1,&RFds
,&WFds
,0,&tv
);
416 while (Res
< 0 && errno
== EINTR
);
420 _error
->Errno("select","Select has failed");
425 if (_error
->PendingError() == true)
428 // Timeout, notify the log class
429 if (Res
== 0 || (Log
!= 0 && Log
->Update
== true))
431 tv
.tv_usec
= PulseIntervall
;
432 for (Worker
*I
= Workers
; I
!= 0; I
= I
->NextAcquire
)
434 if (Log
!= 0 && Log
->Pulse(this) == false)
445 // Shut down the acquire bits
447 for (Queue
*I
= Queues
; I
!= 0; I
= I
->Next
)
450 // Shut down the items
451 for (ItemIterator I
= Items
.begin(); I
!= Items
.end(); ++I
)
454 if (_error
->PendingError())
461 // Acquire::Bump - Called when an item is dequeued /*{{{*/
462 // ---------------------------------------------------------------------
463 /* This routine bumps idle queues in hopes that they will be able to fetch
465 void pkgAcquire::Bump()
467 for (Queue
*I
= Queues
; I
!= 0; I
= I
->Next
)
471 // Acquire::WorkerStep - Step to the next worker /*{{{*/
472 // ---------------------------------------------------------------------
473 /* Not inlined to advoid including acquire-worker.h */
474 pkgAcquire::Worker
*pkgAcquire::WorkerStep(Worker
*I
)
476 return I
->NextAcquire
;
479 // Acquire::Clean - Cleans a directory /*{{{*/
480 // ---------------------------------------------------------------------
481 /* This is a bit simplistic, it looks at every file in the dir and sees
482 if it is part of the download set. */
483 bool pkgAcquire::Clean(string Dir
)
485 // non-existing directories are by definition clean…
486 if (DirectoryExists(Dir
) == false)
489 DIR *D
= opendir(Dir
.c_str());
491 return _error
->Errno("opendir",_("Unable to read %s"),Dir
.c_str());
493 string StartDir
= SafeGetCWD();
494 if (chdir(Dir
.c_str()) != 0)
497 return _error
->Errno("chdir",_("Unable to change to %s"),Dir
.c_str());
500 for (struct dirent
*Dir
= readdir(D
); Dir
!= 0; Dir
= readdir(D
))
503 if (strcmp(Dir
->d_name
,"lock") == 0 ||
504 strcmp(Dir
->d_name
,"partial") == 0 ||
505 strcmp(Dir
->d_name
,".") == 0 ||
506 strcmp(Dir
->d_name
,"..") == 0)
509 // Look in the get list
510 ItemCIterator I
= Items
.begin();
511 for (; I
!= Items
.end(); ++I
)
512 if (flNotDir((*I
)->DestFile
) == Dir
->d_name
)
515 // Nothing found, nuke it
516 if (I
== Items
.end())
521 if (chdir(StartDir
.c_str()) != 0)
522 return _error
->Errno("chdir",_("Unable to change to %s"),StartDir
.c_str());
526 // Acquire::TotalNeeded - Number of bytes to fetch /*{{{*/
527 // ---------------------------------------------------------------------
528 /* This is the total number of bytes needed */
529 APT_PURE
unsigned long long pkgAcquire::TotalNeeded()
531 unsigned long long Total
= 0;
532 for (ItemCIterator I
= ItemsBegin(); I
!= ItemsEnd(); ++I
)
533 Total
+= (*I
)->FileSize
;
537 // Acquire::FetchNeeded - Number of bytes needed to get /*{{{*/
538 // ---------------------------------------------------------------------
539 /* This is the number of bytes that is not local */
540 APT_PURE
unsigned long long pkgAcquire::FetchNeeded()
542 unsigned long long Total
= 0;
543 for (ItemCIterator I
= ItemsBegin(); I
!= ItemsEnd(); ++I
)
544 if ((*I
)->Local
== false)
545 Total
+= (*I
)->FileSize
;
549 // Acquire::PartialPresent - Number of partial bytes we already have /*{{{*/
550 // ---------------------------------------------------------------------
551 /* This is the number of bytes that is not local */
552 APT_PURE
unsigned long long pkgAcquire::PartialPresent()
554 unsigned long long Total
= 0;
555 for (ItemCIterator I
= ItemsBegin(); I
!= ItemsEnd(); ++I
)
556 if ((*I
)->Local
== false)
557 Total
+= (*I
)->PartialSize
;
561 // Acquire::UriBegin - Start iterator for the uri list /*{{{*/
562 // ---------------------------------------------------------------------
564 pkgAcquire::UriIterator
pkgAcquire::UriBegin()
566 return UriIterator(Queues
);
569 // Acquire::UriEnd - End iterator for the uri list /*{{{*/
570 // ---------------------------------------------------------------------
572 pkgAcquire::UriIterator
pkgAcquire::UriEnd()
574 return UriIterator(0);
577 // Acquire::MethodConfig::MethodConfig - Constructor /*{{{*/
578 // ---------------------------------------------------------------------
580 pkgAcquire::MethodConfig::MethodConfig()
582 SingleInstance
= false;
590 // Queue::Queue - Constructor /*{{{*/
591 // ---------------------------------------------------------------------
593 pkgAcquire::Queue::Queue(string Name
,pkgAcquire
*Owner
) : Name(Name
),
603 // Queue::~Queue - Destructor /*{{{*/
604 // ---------------------------------------------------------------------
606 pkgAcquire::Queue::~Queue()
618 // Queue::Enqueue - Queue an item to the queue /*{{{*/
619 // ---------------------------------------------------------------------
621 bool pkgAcquire::Queue::Enqueue(ItemDesc
&Item
)
624 // move to the end of the queue and check for duplicates here
625 for (; *I
!= 0; I
= &(*I
)->Next
)
626 if (Item
.URI
== (*I
)->URI
)
628 Item
.Owner
->Status
= Item::StatDone
;
633 QItem
*Itm
= new QItem
;
638 Item
.Owner
->QueueCounter
++;
639 if (Items
->Next
== 0)
644 // Queue::Dequeue - Remove an item from the queue /*{{{*/
645 // ---------------------------------------------------------------------
646 /* We return true if we hit something */
647 bool pkgAcquire::Queue::Dequeue(Item
*Owner
)
649 if (Owner
->Status
== pkgAcquire::Item::StatFetching
)
650 return _error
->Error("Tried to dequeue a fetching object");
657 if ((*I
)->Owner
== Owner
)
661 Owner
->QueueCounter
--;
672 // Queue::Startup - Start the worker processes /*{{{*/
673 // ---------------------------------------------------------------------
674 /* It is possible for this to be called with a pre-existing set of
676 bool pkgAcquire::Queue::Startup()
681 pkgAcquire::MethodConfig
*Cnf
= Owner
->GetConfig(U
.Access
);
685 Workers
= new Worker(this,Cnf
,Owner
->Log
);
687 if (Workers
->Start() == false)
690 /* When pipelining we commit 10 items. This needs to change when we
691 added other source retry to have cycle maintain a pipeline depth
693 if (Cnf
->Pipeline
== true)
694 MaxPipeDepth
= _config
->FindI("Acquire::Max-Pipeline-Depth",10);
702 // Queue::Shutdown - Shutdown the worker processes /*{{{*/
703 // ---------------------------------------------------------------------
704 /* If final is true then all workers are eliminated, otherwise only workers
705 that do not need cleanup are removed */
706 bool pkgAcquire::Queue::Shutdown(bool Final
)
708 // Delete all of the workers
709 pkgAcquire::Worker
**Cur
= &Workers
;
712 pkgAcquire::Worker
*Jnk
= *Cur
;
713 if (Final
== true || Jnk
->GetConf()->NeedsCleanup
== false)
715 *Cur
= Jnk
->NextQueue
;
720 Cur
= &(*Cur
)->NextQueue
;
726 // Queue::FindItem - Find a URI in the item list /*{{{*/
727 // ---------------------------------------------------------------------
729 pkgAcquire::Queue::QItem
*pkgAcquire::Queue::FindItem(string URI
,pkgAcquire::Worker
*Owner
)
731 for (QItem
*I
= Items
; I
!= 0; I
= I
->Next
)
732 if (I
->URI
== URI
&& I
->Worker
== Owner
)
737 // Queue::ItemDone - Item has been completed /*{{{*/
738 // ---------------------------------------------------------------------
739 /* The worker signals this which causes the item to be removed from the
740 queue. If this is the last queue instance then it is removed from the
742 bool pkgAcquire::Queue::ItemDone(QItem
*Itm
)
745 if (Itm
->Owner
->Status
== pkgAcquire::Item::StatFetching
)
746 Itm
->Owner
->Status
= pkgAcquire::Item::StatDone
;
748 if (Itm
->Owner
->QueueCounter
<= 1)
749 Owner
->Dequeue(Itm
->Owner
);
759 // Queue::Cycle - Queue new items into the method /*{{{*/
760 // ---------------------------------------------------------------------
761 /* This locates a new idle item and sends it to the worker. If pipelining
762 is enabled then it keeps the pipe full. */
763 bool pkgAcquire::Queue::Cycle()
765 if (Items
== 0 || Workers
== 0)
769 return _error
->Error("Pipedepth failure");
771 // Look for a queable item
773 while (PipeDepth
< (signed)MaxPipeDepth
)
775 for (; I
!= 0; I
= I
->Next
)
776 if (I
->Owner
->Status
== pkgAcquire::Item::StatIdle
)
779 // Nothing to do, queue is idle.
784 I
->Owner
->Status
= pkgAcquire::Item::StatFetching
;
786 if (Workers
->QueueItem(I
) == false)
793 // Queue::Bump - Fetch any pending objects if we are idle /*{{{*/
794 // ---------------------------------------------------------------------
795 /* This is called when an item in multiple queues is dequeued */
796 void pkgAcquire::Queue::Bump()
801 // AcquireStatus::pkgAcquireStatus - Constructor /*{{{*/
802 // ---------------------------------------------------------------------
804 pkgAcquireStatus::pkgAcquireStatus() : d(NULL
), Update(true), MorePulses(false)
809 // AcquireStatus::Pulse - Called periodically /*{{{*/
810 // ---------------------------------------------------------------------
811 /* This computes some internal state variables for the derived classes to
812 use. It generates the current downloaded bytes and total bytes to download
813 as well as the current CPS estimate. */
814 bool pkgAcquireStatus::Pulse(pkgAcquire
*Owner
)
821 // Compute the total number of bytes to fetch
822 unsigned int Unknown
= 0;
823 unsigned int Count
= 0;
824 for (pkgAcquire::ItemCIterator I
= Owner
->ItemsBegin(); I
!= Owner
->ItemsEnd();
828 if ((*I
)->Status
== pkgAcquire::Item::StatDone
)
831 // Totally ignore local items
832 if ((*I
)->Local
== true)
835 TotalBytes
+= (*I
)->FileSize
;
836 if ((*I
)->Complete
== true)
837 CurrentBytes
+= (*I
)->FileSize
;
838 if ((*I
)->FileSize
== 0 && (*I
)->Complete
== false)
842 // Compute the current completion
843 unsigned long long ResumeSize
= 0;
844 for (pkgAcquire::Worker
*I
= Owner
->WorkersBegin(); I
!= 0;
845 I
= Owner
->WorkerStep(I
))
846 if (I
->CurrentItem
!= 0 && I
->CurrentItem
->Owner
->Complete
== false)
848 CurrentBytes
+= I
->CurrentSize
;
849 ResumeSize
+= I
->ResumePoint
;
851 // Files with unknown size always have 100% completion
852 if (I
->CurrentItem
->Owner
->FileSize
== 0 &&
853 I
->CurrentItem
->Owner
->Complete
== false)
854 TotalBytes
+= I
->CurrentSize
;
857 // Normalize the figures and account for unknown size downloads
860 if (Unknown
== Count
)
861 TotalBytes
= Unknown
;
863 // Wha?! Is not supposed to happen.
864 if (CurrentBytes
> TotalBytes
)
865 CurrentBytes
= TotalBytes
;
868 struct timeval NewTime
;
869 gettimeofday(&NewTime
,0);
870 if ((NewTime
.tv_sec
- Time
.tv_sec
== 6 && NewTime
.tv_usec
> Time
.tv_usec
) ||
871 NewTime
.tv_sec
- Time
.tv_sec
> 6)
873 double Delta
= NewTime
.tv_sec
- Time
.tv_sec
+
874 (NewTime
.tv_usec
- Time
.tv_usec
)/1000000.0;
876 // Compute the CPS value
880 CurrentCPS
= ((CurrentBytes
- ResumeSize
) - LastBytes
)/Delta
;
881 LastBytes
= CurrentBytes
- ResumeSize
;
882 ElapsedTime
= (unsigned long long)Delta
;
886 int fd
= _config
->FindI("APT::Status-Fd",-1);
889 ostringstream status
;
892 long i
= CurrentItems
< TotalItems
? CurrentItems
+ 1 : CurrentItems
;
893 unsigned long long ETA
= 0;
895 ETA
= (TotalBytes
- CurrentBytes
) / CurrentCPS
;
897 // only show the ETA if it makes sense
898 if (ETA
> 0 && ETA
< 172800 /* two days */ )
899 snprintf(msg
,sizeof(msg
), _("Retrieving file %li of %li (%s remaining)"), i
, TotalItems
, TimeToStr(ETA
).c_str());
901 snprintf(msg
,sizeof(msg
), _("Retrieving file %li of %li"), i
, TotalItems
);
905 // build the status str
906 status
<< "dlstatus:" << i
907 << ":" << (CurrentBytes
/float(TotalBytes
)*100.0)
911 std::string
const dlstatus
= status
.str();
912 FileFd::Write(fd
, dlstatus
.c_str(), dlstatus
.size());
918 // AcquireStatus::Start - Called when the download is started /*{{{*/
919 // ---------------------------------------------------------------------
920 /* We just reset the counters */
921 void pkgAcquireStatus::Start()
923 gettimeofday(&Time
,0);
924 gettimeofday(&StartTime
,0);
935 // AcquireStatus::Stop - Finished downloading /*{{{*/
936 // ---------------------------------------------------------------------
937 /* This accurately computes the elapsed time and the total overall CPS. */
938 void pkgAcquireStatus::Stop()
940 // Compute the CPS and elapsed time
941 struct timeval NewTime
;
942 gettimeofday(&NewTime
,0);
944 double Delta
= NewTime
.tv_sec
- StartTime
.tv_sec
+
945 (NewTime
.tv_usec
- StartTime
.tv_usec
)/1000000.0;
947 // Compute the CPS value
951 CurrentCPS
= FetchedBytes
/Delta
;
952 LastBytes
= CurrentBytes
;
953 ElapsedTime
= (unsigned long long)Delta
;
956 // AcquireStatus::Fetched - Called when a byte set has been fetched /*{{{*/
957 // ---------------------------------------------------------------------
958 /* This is used to get accurate final transfer rate reporting. */
959 void pkgAcquireStatus::Fetched(unsigned long long Size
,unsigned long long Resume
)
961 FetchedBytes
+= Size
- Resume
;