]>
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>
42 #include <sys/select.h>
51 // Acquire::pkgAcquire - Constructor /*{{{*/
52 // ---------------------------------------------------------------------
53 /* We grab some runtime state from the configuration space */
54 pkgAcquire::pkgAcquire() : LockFD(-1), d(NULL
), Queues(0), Workers(0), Configs(0), Log(NULL
), ToFetch(0),
55 Debug(_config
->FindB("Debug::pkgAcquire",false)),
60 pkgAcquire::pkgAcquire(pkgAcquireStatus
*Progress
) : LockFD(-1), d(NULL
), Queues(0), Workers(0),
61 Configs(0), Log(NULL
), ToFetch(0),
62 Debug(_config
->FindB("Debug::pkgAcquire",false)),
68 void pkgAcquire::Initialize()
70 string
const Mode
= _config
->Find("Acquire::Queue-Mode","host");
71 if (strcasecmp(Mode
.c_str(),"host") == 0)
72 QueueMode
= QueueHost
;
73 if (strcasecmp(Mode
.c_str(),"access") == 0)
74 QueueMode
= QueueAccess
;
76 // chown the auth.conf file as it will be accessed by our methods
77 std::string
const SandboxUser
= _config
->Find("APT::Sandbox::User");
78 if (getuid() == 0 && SandboxUser
.empty() == false) // if we aren't root, we can't chown, so don't try it
80 struct passwd
const * const pw
= getpwnam(SandboxUser
.c_str());
81 struct group
const * const gr
= getgrnam("root");
82 if (pw
!= NULL
&& gr
!= NULL
)
84 std::string
const AuthConf
= _config
->FindFile("Dir::Etc::netrc");
85 if(AuthConf
.empty() == false && RealFileExists(AuthConf
) &&
86 chown(AuthConf
.c_str(), pw
->pw_uid
, gr
->gr_gid
) != 0)
87 _error
->WarningE("SetupAPTPartialDirectory", "chown to %s:root of file %s failed", SandboxUser
.c_str(), AuthConf
.c_str());
92 // Acquire::GetLock - lock directory and prepare for action /*{{{*/
93 static bool SetupAPTPartialDirectory(std::string
const &grand
, std::string
const &parent
)
95 std::string
const partial
= parent
+ "partial";
96 mode_t
const mode
= umask(S_IWGRP
| S_IWOTH
);
97 bool const creation_fail
= (CreateAPTDirectoryIfNeeded(grand
, partial
) == false &&
98 CreateAPTDirectoryIfNeeded(parent
, partial
) == false);
100 if (creation_fail
== true)
103 std::string
const SandboxUser
= _config
->Find("APT::Sandbox::User");
104 if (getuid() == 0 && SandboxUser
.empty() == false) // if we aren't root, we can't chown, so don't try it
106 struct passwd
const * const pw
= getpwnam(SandboxUser
.c_str());
107 struct group
const * const gr
= getgrnam("root");
108 if (pw
!= NULL
&& gr
!= NULL
)
110 // chown the partial dir
111 if(chown(partial
.c_str(), pw
->pw_uid
, gr
->gr_gid
) != 0)
112 _error
->WarningE("SetupAPTPartialDirectory", "chown to %s:root of directory %s failed", SandboxUser
.c_str(), partial
.c_str());
115 if (chmod(partial
.c_str(), 0700) != 0)
116 _error
->WarningE("SetupAPTPartialDirectory", "chmod 0700 of directory %s failed", partial
.c_str());
120 bool pkgAcquire::Setup(pkgAcquireStatus
*Progress
, string
const &Lock
)
125 string
const listDir
= _config
->FindDir("Dir::State::lists");
126 if (SetupAPTPartialDirectory(_config
->FindDir("Dir::State"), listDir
) == false)
127 return _error
->Errno("Acquire", _("List directory %spartial is missing."), listDir
.c_str());
128 string
const archivesDir
= _config
->FindDir("Dir::Cache::Archives");
129 if (SetupAPTPartialDirectory(_config
->FindDir("Dir::Cache"), archivesDir
) == false)
130 return _error
->Errno("Acquire", _("Archives directory %spartial is missing."), archivesDir
.c_str());
133 return GetLock(Lock
);
135 bool pkgAcquire::GetLock(std::string
const &Lock
)
137 if (Lock
.empty() == true)
140 // check for existence and possibly create auxiliary directories
141 string
const listDir
= _config
->FindDir("Dir::State::lists");
142 string
const archivesDir
= _config
->FindDir("Dir::Cache::Archives");
146 if (SetupAPTPartialDirectory(_config
->FindDir("Dir::State"), listDir
) == false)
147 return _error
->Errno("Acquire", _("List directory %spartial is missing."), listDir
.c_str());
149 if (Lock
== archivesDir
)
151 if (SetupAPTPartialDirectory(_config
->FindDir("Dir::Cache"), archivesDir
) == false)
152 return _error
->Errno("Acquire", _("Archives directory %spartial is missing."), archivesDir
.c_str());
155 if (_config
->FindB("Debug::NoLocking", false) == true)
158 // Lock the directory this acquire object will work in
161 LockFD
= ::GetLock(flCombine(Lock
, "lock"));
163 return _error
->Error(_("Unable to lock directory %s"), Lock
.c_str());
168 // Acquire::~pkgAcquire - Destructor /*{{{*/
169 // ---------------------------------------------------------------------
170 /* Free our memory, clean up the queues (destroy the workers) */
171 pkgAcquire::~pkgAcquire()
180 MethodConfig
*Jnk
= Configs
;
181 Configs
= Configs
->Next
;
186 // Acquire::Shutdown - Clean out the acquire object /*{{{*/
187 // ---------------------------------------------------------------------
189 void pkgAcquire::Shutdown()
191 while (Items
.empty() == false)
193 if (Items
[0]->Status
== Item::StatFetching
)
194 Items
[0]->Status
= Item::StatError
;
201 Queues
= Queues
->Next
;
206 // Acquire::Add - Add a new item /*{{{*/
207 // ---------------------------------------------------------------------
208 /* This puts an item on the acquire list. This list is mainly for tracking
210 void pkgAcquire::Add(Item
*Itm
)
212 Items
.push_back(Itm
);
215 // Acquire::Remove - Remove a item /*{{{*/
216 // ---------------------------------------------------------------------
217 /* Remove an item from the acquire list. This is usually not used.. */
218 void pkgAcquire::Remove(Item
*Itm
)
222 for (ItemIterator I
= Items
.begin(); I
!= Items
.end();)
234 // Acquire::Add - Add a worker /*{{{*/
235 // ---------------------------------------------------------------------
236 /* A list of workers is kept so that the select loop can direct their FD
238 void pkgAcquire::Add(Worker
*Work
)
240 Work
->NextAcquire
= Workers
;
244 // Acquire::Remove - Remove a worker /*{{{*/
245 // ---------------------------------------------------------------------
246 /* A worker has died. This can not be done while the select loop is running
247 as it would require that RunFds could handling a changing list state and
249 void pkgAcquire::Remove(Worker
*Work
)
254 Worker
**I
= &Workers
;
258 *I
= (*I
)->NextAcquire
;
260 I
= &(*I
)->NextAcquire
;
264 // Acquire::Enqueue - Queue an URI for fetching /*{{{*/
265 // ---------------------------------------------------------------------
266 /* This is the entry point for an item. An item calls this function when
267 it is constructed which creates a queue (based on the current queue
268 mode) and puts the item in that queue. If the system is running then
269 the queue might be started. */
270 void pkgAcquire::Enqueue(ItemDesc
&Item
)
272 // Determine which queue to put the item in
273 const MethodConfig
*Config
;
274 string Name
= QueueName(Item
.URI
,Config
);
275 if (Name
.empty() == true)
278 // Find the queue structure
280 for (; I
!= 0 && I
->Name
!= Name
; I
= I
->Next
);
283 I
= new Queue(Name
,this);
291 // See if this is a local only URI
292 if (Config
->LocalOnly
== true && Item
.Owner
->Complete
== false)
293 Item
.Owner
->Local
= true;
294 Item
.Owner
->Status
= Item::StatIdle
;
296 // Queue it into the named queue
303 clog
<< "Fetching " << Item
.URI
<< endl
;
304 clog
<< " to " << Item
.Owner
->DestFile
<< endl
;
305 clog
<< " Queue is: " << Name
<< endl
;
309 // Acquire::Dequeue - Remove an item from all queues /*{{{*/
310 // ---------------------------------------------------------------------
311 /* This is called when an item is finished being fetched. It removes it
312 from all the queues */
313 void pkgAcquire::Dequeue(Item
*Itm
)
318 clog
<< "Dequeuing " << Itm
->DestFile
<< endl
;
320 for (; I
!= 0; I
= I
->Next
)
326 clog
<< "Dequeued from " << I
->Name
<< endl
;
334 // Acquire::QueueName - Return the name of the queue for this URI /*{{{*/
335 // ---------------------------------------------------------------------
336 /* The string returned depends on the configuration settings and the
337 method parameters. Given something like http://foo.org/bar it can
338 return http://foo.org or http */
339 string
pkgAcquire::QueueName(string Uri
,MethodConfig
const *&Config
)
343 Config
= GetConfig(U
.Access
);
347 /* Single-Instance methods get exactly one queue per URI. This is
348 also used for the Access queue method */
349 if (Config
->SingleInstance
== true || QueueMode
== QueueAccess
)
352 string AccessSchema
= U
.Access
+ ':',
353 FullQueueName
= AccessSchema
+ U
.Host
;
354 unsigned int Instances
= 0, SchemaLength
= AccessSchema
.length();
357 for (; I
!= 0; I
= I
->Next
) {
358 // if the queue already exists, re-use it
359 if (I
->Name
== FullQueueName
)
360 return FullQueueName
;
362 if (I
->Name
.compare(0, SchemaLength
, AccessSchema
) == 0)
367 clog
<< "Found " << Instances
<< " instances of " << U
.Access
<< endl
;
370 if (Instances
>= (unsigned int)_config
->FindI("Acquire::QueueHost::Limit",10))
373 return FullQueueName
;
376 // Acquire::GetConfig - Fetch the configuration information /*{{{*/
377 // ---------------------------------------------------------------------
378 /* This locates the configuration structure for an access method. If
379 a config structure cannot be found a Worker will be created to
381 pkgAcquire::MethodConfig
*pkgAcquire::GetConfig(string Access
)
383 // Search for an existing config
385 for (Conf
= Configs
; Conf
!= 0; Conf
= Conf
->Next
)
386 if (Conf
->Access
== Access
)
389 // Create the new config class
390 Conf
= new MethodConfig
;
391 Conf
->Access
= Access
;
392 Conf
->Next
= Configs
;
395 // Create the worker to fetch the configuration
397 if (Work
.Start() == false)
400 /* if a method uses DownloadLimit, we switch to SingleInstance mode */
401 if(_config
->FindI("Acquire::"+Access
+"::Dl-Limit",0) > 0)
402 Conf
->SingleInstance
= true;
407 // Acquire::SetFds - Deal with readable FDs /*{{{*/
408 // ---------------------------------------------------------------------
409 /* Collect FDs that have activity monitors into the fd sets */
410 void pkgAcquire::SetFds(int &Fd
,fd_set
*RSet
,fd_set
*WSet
)
412 for (Worker
*I
= Workers
; I
!= 0; I
= I
->NextAcquire
)
414 if (I
->InReady
== true && I
->InFd
>= 0)
418 FD_SET(I
->InFd
,RSet
);
420 if (I
->OutReady
== true && I
->OutFd
>= 0)
424 FD_SET(I
->OutFd
,WSet
);
429 // Acquire::RunFds - Deal with active FDs /*{{{*/
430 // ---------------------------------------------------------------------
431 /* Dispatch active FDs over to the proper workers. It is very important
432 that a worker never be erased while this is running! The queue class
433 should never erase a worker except during shutdown processing. */
434 void pkgAcquire::RunFds(fd_set
*RSet
,fd_set
*WSet
)
436 for (Worker
*I
= Workers
; I
!= 0; I
= I
->NextAcquire
)
438 if (I
->InFd
>= 0 && FD_ISSET(I
->InFd
,RSet
) != 0)
440 if (I
->OutFd
>= 0 && FD_ISSET(I
->OutFd
,WSet
) != 0)
445 // Acquire::Run - Run the fetch sequence /*{{{*/
446 // ---------------------------------------------------------------------
447 /* This runs the queues. It manages a select loop for all of the
448 Worker tasks. The workers interact with the queues and items to
449 manage the actual fetch. */
450 static void CheckDropPrivsMustBeDisabled(pkgAcquire
const &Fetcher
)
455 std::string SandboxUser
= _config
->Find("APT::Sandbox::User");
456 if (SandboxUser
.empty())
459 struct passwd
const * const pw
= getpwnam(SandboxUser
.c_str());
463 gid_t
const old_euid
= geteuid();
464 gid_t
const old_egid
= getegid();
465 if (setegid(pw
->pw_gid
) != 0)
466 _error
->Errno("setegid", "setegid %u failed", pw
->pw_gid
);
467 if (seteuid(pw
->pw_uid
) != 0)
468 _error
->Errno("seteuid", "seteuid %u failed", pw
->pw_uid
);
470 bool dropPrivs
= true;
471 for (pkgAcquire::ItemCIterator I
= Fetcher
.ItemsBegin();
472 I
!= Fetcher
.ItemsEnd() && dropPrivs
== true; ++I
)
474 std::string filename
= (*I
)->DestFile
;
475 if (filename
.empty())
478 // no need to drop privileges for a complete file
479 if ((*I
)->Complete
== true)
482 // we check directory instead of file as the file might or might not
483 // exist already as a link or not which complicates everything…
484 std::string dirname
= flNotFile(filename
);
485 if (unlikely(dirname
.empty()))
487 // translate relative to absolute for DirectoryExists
488 // FIXME: What about ../ and ./../ ?
489 if (dirname
.substr(0,2) == "./")
490 dirname
= SafeGetCWD() + dirname
.substr(2);
492 if (DirectoryExists(dirname
))
495 continue; // assume it is created correctly by the acquire system
497 if (faccessat(-1, dirname
.c_str(), R_OK
| W_OK
| X_OK
, AT_EACCESS
| AT_SYMLINK_NOFOLLOW
) != 0)
500 _error
->WarningE("pkgAcquire::Run", _("Can't drop privileges for downloading as file '%s' couldn't be accessed by user '%s'."),
501 filename
.c_str(), SandboxUser
.c_str());
502 _config
->Set("APT::Sandbox::User", "");
507 if (seteuid(old_euid
) != 0)
508 _error
->Errno("seteuid", "seteuid %u failed", old_euid
);
509 if (setegid(old_egid
) != 0)
510 _error
->Errno("setegid", "setegid %u failed", old_egid
);
512 pkgAcquire::RunResult
pkgAcquire::Run(int PulseIntervall
)
514 _error
->PushToStack();
515 CheckDropPrivsMustBeDisabled(*this);
519 for (Queue
*I
= Queues
; I
!= 0; I
= I
->Next
)
525 bool WasCancelled
= false;
527 // Run till all things have been acquired
530 tv
.tv_usec
= PulseIntervall
;
538 SetFds(Highest
,&RFds
,&WFds
);
543 Res
= select(Highest
+1,&RFds
,&WFds
,0,&tv
);
545 while (Res
< 0 && errno
== EINTR
);
549 _error
->Errno("select","Select has failed");
555 // Timeout, notify the log class
556 if (Res
== 0 || (Log
!= 0 && Log
->Update
== true))
558 tv
.tv_usec
= PulseIntervall
;
559 for (Worker
*I
= Workers
; I
!= 0; I
= I
->NextAcquire
)
561 if (Log
!= 0 && Log
->Pulse(this) == false)
572 // Shut down the acquire bits
574 for (Queue
*I
= Queues
; I
!= 0; I
= I
->Next
)
577 // Shut down the items
578 for (ItemIterator I
= Items
.begin(); I
!= Items
.end(); ++I
)
581 bool const newError
= _error
->PendingError();
582 _error
->MergeWithStack();
590 // Acquire::Bump - Called when an item is dequeued /*{{{*/
591 // ---------------------------------------------------------------------
592 /* This routine bumps idle queues in hopes that they will be able to fetch
594 void pkgAcquire::Bump()
596 for (Queue
*I
= Queues
; I
!= 0; I
= I
->Next
)
600 // Acquire::WorkerStep - Step to the next worker /*{{{*/
601 // ---------------------------------------------------------------------
602 /* Not inlined to advoid including acquire-worker.h */
603 pkgAcquire::Worker
*pkgAcquire::WorkerStep(Worker
*I
)
605 return I
->NextAcquire
;
608 // Acquire::Clean - Cleans a directory /*{{{*/
609 // ---------------------------------------------------------------------
610 /* This is a bit simplistic, it looks at every file in the dir and sees
611 if it is part of the download set. */
612 bool pkgAcquire::Clean(string Dir
)
614 // non-existing directories are by definition clean…
615 if (DirectoryExists(Dir
) == false)
619 return _error
->Error(_("Clean of %s is not supported"), Dir
.c_str());
621 DIR *D
= opendir(Dir
.c_str());
623 return _error
->Errno("opendir",_("Unable to read %s"),Dir
.c_str());
625 string StartDir
= SafeGetCWD();
626 if (chdir(Dir
.c_str()) != 0)
629 return _error
->Errno("chdir",_("Unable to change to %s"),Dir
.c_str());
632 for (struct dirent
*Dir
= readdir(D
); Dir
!= 0; Dir
= readdir(D
))
635 if (strcmp(Dir
->d_name
,"lock") == 0 ||
636 strcmp(Dir
->d_name
,"partial") == 0 ||
637 strcmp(Dir
->d_name
,".") == 0 ||
638 strcmp(Dir
->d_name
,"..") == 0)
641 // Look in the get list
642 ItemCIterator I
= Items
.begin();
643 for (; I
!= Items
.end(); ++I
)
644 if (flNotDir((*I
)->DestFile
) == Dir
->d_name
)
647 // Nothing found, nuke it
648 if (I
== Items
.end())
653 if (chdir(StartDir
.c_str()) != 0)
654 return _error
->Errno("chdir",_("Unable to change to %s"),StartDir
.c_str());
658 // Acquire::TotalNeeded - Number of bytes to fetch /*{{{*/
659 // ---------------------------------------------------------------------
660 /* This is the total number of bytes needed */
661 APT_PURE
unsigned long long pkgAcquire::TotalNeeded()
663 unsigned long long Total
= 0;
664 for (ItemCIterator I
= ItemsBegin(); I
!= ItemsEnd(); ++I
)
665 Total
+= (*I
)->FileSize
;
669 // Acquire::FetchNeeded - Number of bytes needed to get /*{{{*/
670 // ---------------------------------------------------------------------
671 /* This is the number of bytes that is not local */
672 APT_PURE
unsigned long long pkgAcquire::FetchNeeded()
674 unsigned long long Total
= 0;
675 for (ItemCIterator I
= ItemsBegin(); I
!= ItemsEnd(); ++I
)
676 if ((*I
)->Local
== false)
677 Total
+= (*I
)->FileSize
;
681 // Acquire::PartialPresent - Number of partial bytes we already have /*{{{*/
682 // ---------------------------------------------------------------------
683 /* This is the number of bytes that is not local */
684 APT_PURE
unsigned long long pkgAcquire::PartialPresent()
686 unsigned long long Total
= 0;
687 for (ItemCIterator I
= ItemsBegin(); I
!= ItemsEnd(); ++I
)
688 if ((*I
)->Local
== false)
689 Total
+= (*I
)->PartialSize
;
693 // Acquire::UriBegin - Start iterator for the uri list /*{{{*/
694 // ---------------------------------------------------------------------
696 pkgAcquire::UriIterator
pkgAcquire::UriBegin()
698 return UriIterator(Queues
);
701 // Acquire::UriEnd - End iterator for the uri list /*{{{*/
702 // ---------------------------------------------------------------------
704 pkgAcquire::UriIterator
pkgAcquire::UriEnd()
706 return UriIterator(0);
709 // Acquire::MethodConfig::MethodConfig - Constructor /*{{{*/
710 // ---------------------------------------------------------------------
712 pkgAcquire::MethodConfig::MethodConfig() : d(NULL
), Next(0), SingleInstance(false),
713 Pipeline(false), SendConfig(false), LocalOnly(false), NeedsCleanup(false),
718 // Queue::Queue - Constructor /*{{{*/
719 // ---------------------------------------------------------------------
721 pkgAcquire::Queue::Queue(string
const &name
,pkgAcquire
* const owner
) : d(NULL
), Next(0),
722 Name(name
), Items(0), Workers(0), Owner(owner
), PipeDepth(0), MaxPipeDepth(1)
726 // Queue::~Queue - Destructor /*{{{*/
727 // ---------------------------------------------------------------------
729 pkgAcquire::Queue::~Queue()
741 // Queue::Enqueue - Queue an item to the queue /*{{{*/
742 // ---------------------------------------------------------------------
744 bool pkgAcquire::Queue::Enqueue(ItemDesc
&Item
)
747 // move to the end of the queue and check for duplicates here
748 HashStringList
const hsl
= Item
.Owner
->GetExpectedHashes();
749 for (; *I
!= 0; I
= &(*I
)->Next
)
750 if (Item
.URI
== (*I
)->URI
|| hsl
== (*I
)->Owner
->GetExpectedHashes())
752 if (_config
->FindB("Debug::pkgAcquire::Worker",false) == true)
753 std::cerr
<< " @ Queue: Action combined for " << Item
.URI
<< " and " << (*I
)->URI
<< std::endl
;
754 (*I
)->Owners
.push_back(Item
.Owner
);
755 Item
.Owner
->Status
= (*I
)->Owner
->Status
;
760 QItem
*Itm
= new QItem
;
765 Item
.Owner
->QueueCounter
++;
766 if (Items
->Next
== 0)
771 // Queue::Dequeue - Remove an item from the queue /*{{{*/
772 // ---------------------------------------------------------------------
773 /* We return true if we hit something */
774 bool pkgAcquire::Queue::Dequeue(Item
*Owner
)
776 if (Owner
->Status
== pkgAcquire::Item::StatFetching
)
777 return _error
->Error("Tried to dequeue a fetching object");
784 if (Owner
== (*I
)->Owner
)
788 Owner
->QueueCounter
--;
799 // Queue::Startup - Start the worker processes /*{{{*/
800 // ---------------------------------------------------------------------
801 /* It is possible for this to be called with a pre-existing set of
803 bool pkgAcquire::Queue::Startup()
808 pkgAcquire::MethodConfig
*Cnf
= Owner
->GetConfig(U
.Access
);
812 Workers
= new Worker(this,Cnf
,Owner
->Log
);
814 if (Workers
->Start() == false)
817 /* When pipelining we commit 10 items. This needs to change when we
818 added other source retry to have cycle maintain a pipeline depth
820 if (Cnf
->Pipeline
== true)
821 MaxPipeDepth
= _config
->FindI("Acquire::Max-Pipeline-Depth",10);
829 // Queue::Shutdown - Shutdown the worker processes /*{{{*/
830 // ---------------------------------------------------------------------
831 /* If final is true then all workers are eliminated, otherwise only workers
832 that do not need cleanup are removed */
833 bool pkgAcquire::Queue::Shutdown(bool Final
)
835 // Delete all of the workers
836 pkgAcquire::Worker
**Cur
= &Workers
;
839 pkgAcquire::Worker
*Jnk
= *Cur
;
840 if (Final
== true || Jnk
->GetConf()->NeedsCleanup
== false)
842 *Cur
= Jnk
->NextQueue
;
847 Cur
= &(*Cur
)->NextQueue
;
853 // Queue::FindItem - Find a URI in the item list /*{{{*/
854 // ---------------------------------------------------------------------
856 pkgAcquire::Queue::QItem
*pkgAcquire::Queue::FindItem(string URI
,pkgAcquire::Worker
*Owner
)
858 for (QItem
*I
= Items
; I
!= 0; I
= I
->Next
)
859 if (I
->URI
== URI
&& I
->Worker
== Owner
)
864 // Queue::ItemDone - Item has been completed /*{{{*/
865 // ---------------------------------------------------------------------
866 /* The worker signals this which causes the item to be removed from the
867 queue. If this is the last queue instance then it is removed from the
869 bool pkgAcquire::Queue::ItemDone(QItem
*Itm
)
872 for (QItem::owner_iterator O
= Itm
->Owners
.begin(); O
!= Itm
->Owners
.end(); ++O
)
874 if ((*O
)->Status
== pkgAcquire::Item::StatFetching
)
875 (*O
)->Status
= pkgAcquire::Item::StatDone
;
878 if (Itm
->Owner
->QueueCounter
<= 1)
879 Owner
->Dequeue(Itm
->Owner
);
889 // Queue::Cycle - Queue new items into the method /*{{{*/
890 // ---------------------------------------------------------------------
891 /* This locates a new idle item and sends it to the worker. If pipelining
892 is enabled then it keeps the pipe full. */
893 bool pkgAcquire::Queue::Cycle()
895 if (Items
== 0 || Workers
== 0)
899 return _error
->Error("Pipedepth failure");
901 // Look for a queable item
903 while (PipeDepth
< (signed)MaxPipeDepth
)
905 for (; I
!= 0; I
= I
->Next
)
906 if (I
->Owner
->Status
== pkgAcquire::Item::StatIdle
)
909 // Nothing to do, queue is idle.
914 for (QItem::owner_iterator O
= I
->Owners
.begin(); O
!= I
->Owners
.end(); ++O
)
915 (*O
)->Status
= pkgAcquire::Item::StatFetching
;
917 if (Workers
->QueueItem(I
) == false)
924 // Queue::Bump - Fetch any pending objects if we are idle /*{{{*/
925 // ---------------------------------------------------------------------
926 /* This is called when an item in multiple queues is dequeued */
927 void pkgAcquire::Queue::Bump()
932 HashStringList
pkgAcquire::Queue::QItem::GetExpectedHashes() const /*{{{*/
934 /* each Item can have multiple owners and each owner might have different
935 hashes, even if that is unlikely in practice and if so at least some
936 owners will later fail. There is one situation through which is not a
937 failure and still needs this handling: Two owners who expect the same
938 file, but one owner only knows the SHA1 while the other only knows SHA256. */
939 HashStringList superhsl
;
940 for (pkgAcquire::Queue::QItem::owner_iterator O
= Owners
.begin(); O
!= Owners
.end(); ++O
)
942 HashStringList
const hsl
= (*O
)->GetExpectedHashes();
943 if (hsl
.usable() == false)
945 if (superhsl
.usable() == false)
949 // we merge both lists - if we find disagreement send no hashes
950 HashStringList::const_iterator hs
= hsl
.begin();
951 for (; hs
!= hsl
.end(); ++hs
)
952 if (superhsl
.push_back(*hs
) == false)
964 APT_PURE
unsigned long long pkgAcquire::Queue::QItem::GetMaximumSize() const /*{{{*/
966 unsigned long long Maximum
= std::numeric_limits
<unsigned long long>::max();
967 for (pkgAcquire::Queue::QItem::owner_iterator O
= Owners
.begin(); O
!= Owners
.end(); ++O
)
969 if ((*O
)->FileSize
== 0)
971 Maximum
= std::min(Maximum
, (*O
)->FileSize
);
973 if (Maximum
== std::numeric_limits
<unsigned long long>::max())
978 void pkgAcquire::Queue::QItem::SyncDestinationFiles() const /*{{{*/
980 /* ensure that the first owner has the best partial file of all and
981 the rest have (potentially dangling) symlinks to it so that
982 everything (like progress reporting) finds it easily */
983 std::string superfile
= Owner
->DestFile
;
985 for (pkgAcquire::Queue::QItem::owner_iterator O
= Owners
.begin(); O
!= Owners
.end(); ++O
)
987 if ((*O
)->DestFile
== superfile
)
990 if (lstat((*O
)->DestFile
.c_str(),&file
) == 0)
992 if ((file
.st_mode
& S_IFREG
) == 0)
993 unlink((*O
)->DestFile
.c_str());
994 else if (supersize
< file
.st_size
)
996 supersize
= file
.st_size
;
997 unlink(superfile
.c_str());
998 rename((*O
)->DestFile
.c_str(), superfile
.c_str());
1001 unlink((*O
)->DestFile
.c_str());
1002 if (symlink(superfile
.c_str(), (*O
)->DestFile
.c_str()) != 0)
1004 ; // not a problem per-se and no real alternative
1010 std::string
pkgAcquire::Queue::QItem::Custom600Headers() const /*{{{*/
1012 /* The others are relatively easy to merge, but this one?
1013 Lets not merge and see how far we can run with it…
1014 Likely, nobody will ever notice as all the items will
1015 be of the same class and hence generate the same headers. */
1016 return Owner
->Custom600Headers();
1020 // AcquireStatus::pkgAcquireStatus - Constructor /*{{{*/
1021 // ---------------------------------------------------------------------
1023 pkgAcquireStatus::pkgAcquireStatus() : d(NULL
), Percent(-1), Update(true), MorePulses(false)
1028 // AcquireStatus::Pulse - Called periodically /*{{{*/
1029 // ---------------------------------------------------------------------
1030 /* This computes some internal state variables for the derived classes to
1031 use. It generates the current downloaded bytes and total bytes to download
1032 as well as the current CPS estimate. */
1033 bool pkgAcquireStatus::Pulse(pkgAcquire
*Owner
)
1040 // Compute the total number of bytes to fetch
1041 unsigned int Unknown
= 0;
1042 unsigned int Count
= 0;
1043 bool UnfetchedReleaseFiles
= false;
1044 for (pkgAcquire::ItemCIterator I
= Owner
->ItemsBegin();
1045 I
!= Owner
->ItemsEnd();
1049 if ((*I
)->Status
== pkgAcquire::Item::StatDone
)
1052 // Totally ignore local items
1053 if ((*I
)->Local
== true)
1056 // see if the method tells us to expect more
1057 TotalItems
+= (*I
)->ExpectedAdditionalItems
;
1059 // check if there are unfetched Release files
1060 if ((*I
)->Complete
== false && (*I
)->ExpectedAdditionalItems
> 0)
1061 UnfetchedReleaseFiles
= true;
1063 TotalBytes
+= (*I
)->FileSize
;
1064 if ((*I
)->Complete
== true)
1065 CurrentBytes
+= (*I
)->FileSize
;
1066 if ((*I
)->FileSize
== 0 && (*I
)->Complete
== false)
1070 // Compute the current completion
1071 unsigned long long ResumeSize
= 0;
1072 for (pkgAcquire::Worker
*I
= Owner
->WorkersBegin(); I
!= 0;
1073 I
= Owner
->WorkerStep(I
))
1075 if (I
->CurrentItem
!= 0 && I
->CurrentItem
->Owner
->Complete
== false)
1077 CurrentBytes
+= I
->CurrentSize
;
1078 ResumeSize
+= I
->ResumePoint
;
1080 // Files with unknown size always have 100% completion
1081 if (I
->CurrentItem
->Owner
->FileSize
== 0 &&
1082 I
->CurrentItem
->Owner
->Complete
== false)
1083 TotalBytes
+= I
->CurrentSize
;
1087 // Normalize the figures and account for unknown size downloads
1088 if (TotalBytes
<= 0)
1090 if (Unknown
== Count
)
1091 TotalBytes
= Unknown
;
1093 // Wha?! Is not supposed to happen.
1094 if (CurrentBytes
> TotalBytes
)
1095 CurrentBytes
= TotalBytes
;
1098 if (_config
->FindB("Debug::acquire::progress", false) == true)
1099 std::clog
<< " Bytes: "
1100 << SizeToStr(CurrentBytes
) << " / " << SizeToStr(TotalBytes
)
1104 struct timeval NewTime
;
1105 gettimeofday(&NewTime
,0);
1106 if ((NewTime
.tv_sec
- Time
.tv_sec
== 6 && NewTime
.tv_usec
> Time
.tv_usec
) ||
1107 NewTime
.tv_sec
- Time
.tv_sec
> 6)
1109 double Delta
= NewTime
.tv_sec
- Time
.tv_sec
+
1110 (NewTime
.tv_usec
- Time
.tv_usec
)/1000000.0;
1112 // Compute the CPS value
1116 CurrentCPS
= ((CurrentBytes
- ResumeSize
) - LastBytes
)/Delta
;
1117 LastBytes
= CurrentBytes
- ResumeSize
;
1118 ElapsedTime
= (unsigned long long)Delta
;
1122 double const OldPercent
= Percent
;
1123 // calculate the percentage, if we have too little data assume 1%
1124 if (TotalBytes
> 0 && UnfetchedReleaseFiles
)
1127 // use both files and bytes because bytes can be unreliable
1128 Percent
= (0.8 * (CurrentBytes
/float(TotalBytes
)*100.0) +
1129 0.2 * (CurrentItems
/float(TotalItems
)*100.0));
1130 double const DiffPercent
= Percent
- OldPercent
;
1131 if (DiffPercent
< 0.001 && _config
->FindB("Acquire::Progress::Diffpercent", false) == true)
1134 int fd
= _config
->FindI("APT::Status-Fd",-1);
1137 ostringstream status
;
1140 long i
= CurrentItems
< TotalItems
? CurrentItems
+ 1 : CurrentItems
;
1141 unsigned long long ETA
= 0;
1143 ETA
= (TotalBytes
- CurrentBytes
) / CurrentCPS
;
1145 // only show the ETA if it makes sense
1146 if (ETA
> 0 && ETA
< 172800 /* two days */ )
1147 snprintf(msg
,sizeof(msg
), _("Retrieving file %li of %li (%s remaining)"), i
, TotalItems
, TimeToStr(ETA
).c_str());
1149 snprintf(msg
,sizeof(msg
), _("Retrieving file %li of %li"), i
, TotalItems
);
1151 // build the status str
1152 status
<< "dlstatus:" << i
1153 << ":" << std::setprecision(3) << Percent
1157 std::string
const dlstatus
= status
.str();
1158 FileFd::Write(fd
, dlstatus
.c_str(), dlstatus
.size());
1164 // AcquireStatus::Start - Called when the download is started /*{{{*/
1165 // ---------------------------------------------------------------------
1166 /* We just reset the counters */
1167 void pkgAcquireStatus::Start()
1169 gettimeofday(&Time
,0);
1170 gettimeofday(&StartTime
,0);
1181 // AcquireStatus::Stop - Finished downloading /*{{{*/
1182 // ---------------------------------------------------------------------
1183 /* This accurately computes the elapsed time and the total overall CPS. */
1184 void pkgAcquireStatus::Stop()
1186 // Compute the CPS and elapsed time
1187 struct timeval NewTime
;
1188 gettimeofday(&NewTime
,0);
1190 double Delta
= NewTime
.tv_sec
- StartTime
.tv_sec
+
1191 (NewTime
.tv_usec
- StartTime
.tv_usec
)/1000000.0;
1193 // Compute the CPS value
1197 CurrentCPS
= FetchedBytes
/Delta
;
1198 LastBytes
= CurrentBytes
;
1199 ElapsedTime
= (unsigned long long)Delta
;
1202 // AcquireStatus::Fetched - Called when a byte set has been fetched /*{{{*/
1203 // ---------------------------------------------------------------------
1204 /* This is used to get accurate final transfer rate reporting. */
1205 void pkgAcquireStatus::Fetched(unsigned long long Size
,unsigned long long Resume
)
1207 FetchedBytes
+= Size
- Resume
;
1211 pkgAcquire::UriIterator::UriIterator(pkgAcquire::Queue
*Q
) : d(NULL
), CurQ(Q
), CurItem(0)
1213 while (CurItem
== 0 && CurQ
!= 0)
1215 CurItem
= CurQ
->Items
;
1220 APT_CONST
pkgAcquire::UriIterator::~UriIterator() {}
1221 APT_CONST
pkgAcquire::MethodConfig::~MethodConfig() {}
1222 APT_CONST
pkgAcquireStatus::~pkgAcquireStatus() {}