- sort group and package names in the hashtable on insert
[ntk/apt.git] / apt-pkg / pkgcache.cc
CommitLineData
578bfd0a
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
bac2e715 3// $Id: pkgcache.cc,v 1.37 2003/02/10 01:40:58 doogie Exp $
578bfd0a
AL
4/* ######################################################################
5
6 Package Cache - Accessor code for the cache
7
094a497d 8 Please see doc/apt-pkg/cache.sgml for a more detailed description of
578bfd0a
AL
9 this format. Also be sure to keep that file up-to-date!!
10
11 This is the general utility functions for cache managment. They provide
12 a complete set of accessor functions for the cache. The cacheiterators
13 header contains the STL-like iterators that can be used to easially
14 navigate the cache as well as seemlessly dereference the mmap'd
15 indexes. Use these always.
16
17 The main class provides for ways to get package indexes and some
18 general lookup functions to start the iterators.
19
20 ##################################################################### */
21 /*}}}*/
22// Include Files /*{{{*/
ea542140
DK
23#include<config.h>
24
094a497d 25#include <apt-pkg/pkgcache.h>
af29ffb4 26#include <apt-pkg/policy.h>
094a497d
AL
27#include <apt-pkg/version.h>
28#include <apt-pkg/error.h>
231fea14 29#include <apt-pkg/strutl.h>
b2e465d6 30#include <apt-pkg/configuration.h>
45df0ad2 31#include <apt-pkg/aptconfiguration.h>
5c0d3668 32#include <apt-pkg/macros.h>
578bfd0a
AL
33
34#include <string>
35#include <sys/stat.h>
36#include <unistd.h>
851a45a8 37#include <ctype.h>
ea542140
DK
38
39#include <apti18n.h>
578bfd0a
AL
40 /*}}}*/
41
851a45a8
AL
42using std::string;
43
012b102a 44
578bfd0a
AL
45// Cache::Header::Header - Constructor /*{{{*/
46// ---------------------------------------------------------------------
47/* Simply initialize the header */
48pkgCache::Header::Header()
49{
50 Signature = 0x98FE76DC;
51
52 /* Whenever the structures change the major version should be bumped,
53 whenever the generator changes the minor version should be bumped. */
f8ae7e8b 54 MajorVersion = 8;
aa0fe657 55 MinorVersion = 1;
b2e465d6 56 Dirty = false;
578bfd0a
AL
57
58 HeaderSz = sizeof(pkgCache::Header);
52c41485 59 GroupSz = sizeof(pkgCache::Group);
578bfd0a
AL
60 PackageSz = sizeof(pkgCache::Package);
61 PackageFileSz = sizeof(pkgCache::PackageFile);
62 VersionSz = sizeof(pkgCache::Version);
a52f938b 63 DescriptionSz = sizeof(pkgCache::Description);
578bfd0a
AL
64 DependencySz = sizeof(pkgCache::Dependency);
65 ProvidesSz = sizeof(pkgCache::Provides);
dcb79bae 66 VerFileSz = sizeof(pkgCache::VerFile);
a52f938b 67 DescFileSz = sizeof(pkgCache::DescFile);
dcb79bae 68
52c41485 69 GroupCount = 0;
578bfd0a
AL
70 PackageCount = 0;
71 VersionCount = 0;
a52f938b 72 DescriptionCount = 0;
578bfd0a
AL
73 DependsCount = 0;
74 PackageFileCount = 0;
a7e66b17 75 VerFileCount = 0;
a52f938b 76 DescFileCount = 0;
a7e66b17 77 ProvidesCount = 0;
ad00ae81 78 MaxVerFileSize = 0;
a52f938b 79 MaxDescFileSize = 0;
578bfd0a
AL
80
81 FileList = 0;
82 StringList = 0;
b2e465d6
AL
83 VerSysName = 0;
84 Architecture = 0;
5bf15716
DK
85 memset(PkgHashTable,0,sizeof(PkgHashTable));
86 memset(GrpHashTable,0,sizeof(GrpHashTable));
578bfd0a 87 memset(Pools,0,sizeof(Pools));
0688ccd8
JAK
88
89 CacheFileSize = 0;
578bfd0a
AL
90}
91 /*}}}*/
92// Cache::Header::CheckSizes - Check if the two headers have same *sz /*{{{*/
93// ---------------------------------------------------------------------
94/* */
95bool pkgCache::Header::CheckSizes(Header &Against) const
96{
97 if (HeaderSz == Against.HeaderSz &&
52c41485 98 GroupSz == Against.GroupSz &&
578bfd0a
AL
99 PackageSz == Against.PackageSz &&
100 PackageFileSz == Against.PackageFileSz &&
101 VersionSz == Against.VersionSz &&
a52f938b 102 DescriptionSz == Against.DescriptionSz &&
dcb79bae
AL
103 DependencySz == Against.DependencySz &&
104 VerFileSz == Against.VerFileSz &&
a52f938b 105 DescFileSz == Against.DescFileSz &&
578bfd0a
AL
106 ProvidesSz == Against.ProvidesSz)
107 return true;
108 return false;
109}
110 /*}}}*/
111
112// Cache::pkgCache - Constructor /*{{{*/
113// ---------------------------------------------------------------------
114/* */
b2e465d6 115pkgCache::pkgCache(MMap *Map, bool DoMap) : Map(*Map)
578bfd0a 116{
4cbf323f
MV
117 // call getArchitectures() with cached=false to ensure that the
118 // architectures cache is re-evaulated. this is needed in cases
119 // when the APT::Architecture field changes between two cache creations
120 MultiArchEnabled = APT::Configuration::getArchitectures(false).size() > 1;
b2e465d6
AL
121 if (DoMap == true)
122 ReMap();
578bfd0a
AL
123}
124 /*}}}*/
125// Cache::ReMap - Reopen the cache file /*{{{*/
126// ---------------------------------------------------------------------
127/* If the file is already closed then this will open it open it. */
a9fe5928 128bool pkgCache::ReMap(bool const &Errorchecks)
578bfd0a
AL
129{
130 // Apply the typecasts.
131 HeaderP = (Header *)Map.Data();
5bf15716 132 GrpP = (Group *)Map.Data();
578bfd0a 133 PkgP = (Package *)Map.Data();
dcb79bae 134 VerFileP = (VerFile *)Map.Data();
a52f938b 135 DescFileP = (DescFile *)Map.Data();
578bfd0a
AL
136 PkgFileP = (PackageFile *)Map.Data();
137 VerP = (Version *)Map.Data();
a52f938b 138 DescP = (Description *)Map.Data();
578bfd0a
AL
139 ProvideP = (Provides *)Map.Data();
140 DepP = (Dependency *)Map.Data();
141 StringItemP = (StringItem *)Map.Data();
142 StrP = (char *)Map.Data();
143
a9fe5928
DK
144 if (Errorchecks == false)
145 return true;
146
b2e465d6
AL
147 if (Map.Size() == 0 || HeaderP == 0)
148 return _error->Error(_("Empty package cache"));
578bfd0a
AL
149
150 // Check the header
151 Header DefHeader;
152 if (HeaderP->Signature != DefHeader.Signature ||
153 HeaderP->Dirty == true)
b2e465d6 154 return _error->Error(_("The package cache file is corrupted"));
578bfd0a
AL
155
156 if (HeaderP->MajorVersion != DefHeader.MajorVersion ||
157 HeaderP->MinorVersion != DefHeader.MinorVersion ||
158 HeaderP->CheckSizes(DefHeader) == false)
b2e465d6
AL
159 return _error->Error(_("The package cache file is an incompatible version"));
160
7d79339f
JAK
161 if (Map.Size() < HeaderP->CacheFileSize)
162 return _error->Error(_("The package cache file is corrupted, it is too small"));
163
b2e465d6
AL
164 // Locate our VS..
165 if (HeaderP->VerSysName == 0 ||
166 (VS = pkgVersioningSystem::GetVS(StrP + HeaderP->VerSysName)) == 0)
db0db9fe 167 return _error->Error(_("This APT does not support the versioning system '%s'"),StrP + HeaderP->VerSysName);
b2e465d6
AL
168
169 // Chcek the arhcitecture
170 if (HeaderP->Architecture == 0 ||
171 _config->Find("APT::Architecture") != StrP + HeaderP->Architecture)
bac2e715 172 return _error->Error(_("The package cache was built for a different architecture"));
578bfd0a
AL
173 return true;
174}
175 /*}}}*/
176// Cache::Hash - Hash a string /*{{{*/
177// ---------------------------------------------------------------------
178/* This is used to generate the hash entries for the HashTable. With my
179 package list from bo this function gets 94% table usage on a 512 item
180 table (480 used items) */
171c75f1 181unsigned long pkgCache::sHash(const string &Str) const
578bfd0a
AL
182{
183 unsigned long Hash = 0;
f7f0d6c7 184 for (string::const_iterator I = Str.begin(); I != Str.end(); ++I)
aa0fe657 185 Hash = 41 * Hash + tolower_ascii(*I);
5bf15716 186 return Hash % _count(HeaderP->PkgHashTable);
578bfd0a
AL
187}
188
f9eec0e7 189unsigned long pkgCache::sHash(const char *Str) const
578bfd0a 190{
aa0fe657
DK
191 unsigned long Hash = tolower_ascii(*Str);
192 for (const char *I = Str + 1; *I != 0; ++I)
193 Hash = 41 * Hash + tolower_ascii(*I);
5bf15716 194 return Hash % _count(HeaderP->PkgHashTable);
578bfd0a 195}
8d4c859d
DK
196 /*}}}*/
197// Cache::SingleArchFindPkg - Locate a package by name /*{{{*/
198// ---------------------------------------------------------------------
199/* Returns 0 on error, pointer to the package otherwise
200 The multiArch enabled methods will fallback to this one as it is (a bit)
201 faster for single arch environments and realworld is mostly singlearch… */
202pkgCache::PkgIterator pkgCache::SingleArchFindPkg(const string &Name)
203{
204 // Look at the hash bucket
205 Package *Pkg = PkgP + HeaderP->PkgHashTable[Hash(Name)];
206 for (; Pkg != PkgP; Pkg = PkgP + Pkg->NextPackage)
207 {
aa0fe657
DK
208 if (unlikely(Pkg->Name == 0))
209 continue;
210
211 int const cmp = strcasecmp(Name.c_str(), StrP + Pkg->Name);
212 if (cmp == 0)
213 return PkgIterator(*this, Pkg);
214 else if (cmp < 0)
215 break;
8d4c859d
DK
216 }
217 return PkgIterator(*this,0);
218}
578bfd0a
AL
219 /*}}}*/
220// Cache::FindPkg - Locate a package by name /*{{{*/
221// ---------------------------------------------------------------------
222/* Returns 0 on error, pointer to the package otherwise */
25396fb0
DK
223pkgCache::PkgIterator pkgCache::FindPkg(const string &Name) {
224 size_t const found = Name.find(':');
225 if (found == string::npos)
254b8ebb
DK
226 {
227 if (MultiArchCache() == false)
228 return SingleArchFindPkg(Name);
229 else
230 return FindPkg(Name, "native");
231 }
4d174dc8 232 string const Arch = Name.substr(found+1);
eddc9dd0
DK
233 /* Beware: This is specialcased to handle pkg:any in dependencies as
234 these are linked to virtual pkg:any named packages with all archs.
235 If you want any arch from a given pkg, use FindPkg(pkg,arch) */
4d174dc8
DK
236 if (Arch == "any")
237 return FindPkg(Name, "any");
238 return FindPkg(Name.substr(0, found), Arch);
25396fb0
DK
239}
240 /*}}}*/
241// Cache::FindPkg - Locate a package by name /*{{{*/
242// ---------------------------------------------------------------------
243/* Returns 0 on error, pointer to the package otherwise */
8d4c859d 244pkgCache::PkgIterator pkgCache::FindPkg(const string &Name, string const &Arch) {
c919ad6e 245 if (MultiArchCache() == false && Arch != "none") {
61d15f91 246 if (Arch == "native" || Arch == "all" || Arch == "any" ||
959470da 247 Arch == NativeArch())
8d4c859d
DK
248 return SingleArchFindPkg(Name);
249 else
250 return PkgIterator(*this,0);
251 }
5bf15716
DK
252 /* We make a detour via the GrpIterator here as
253 on a multi-arch environment a group is easier to
254 find than a package (less entries in the buckets) */
255 pkgCache::GrpIterator Grp = FindGrp(Name);
256 if (Grp.end() == true)
257 return PkgIterator(*this,0);
258
259 return Grp.FindPkg(Arch);
260}
261 /*}}}*/
262// Cache::FindGrp - Locate a group by name /*{{{*/
263// ---------------------------------------------------------------------
264/* Returns End-Pointer on error, pointer to the group otherwise */
265pkgCache::GrpIterator pkgCache::FindGrp(const string &Name) {
266 if (unlikely(Name.empty() == true))
267 return GrpIterator(*this,0);
268
269 // Look at the hash bucket for the group
270 Group *Grp = GrpP + HeaderP->GrpHashTable[sHash(Name)];
271 for (; Grp != GrpP; Grp = GrpP + Grp->Next) {
aa0fe657
DK
272 if (unlikely(Grp->Name == 0))
273 continue;
274
275 int const cmp = strcasecmp(Name.c_str(), StrP + Grp->Name);
276 if (cmp == 0)
5bf15716 277 return GrpIterator(*this, Grp);
aa0fe657
DK
278 else if (cmp < 0)
279 break;
5bf15716
DK
280 }
281
282 return GrpIterator(*this,0);
578bfd0a
AL
283}
284 /*}}}*/
b2e465d6
AL
285// Cache::CompTypeDeb - Return a string describing the compare type /*{{{*/
286// ---------------------------------------------------------------------
287/* This returns a string representation of the dependency compare
288 type in the weird debian style.. */
289const char *pkgCache::CompTypeDeb(unsigned char Comp)
290{
69c2ecbd
DK
291 const char * const Ops[] = {"","<=",">=","<<",">>","=","!="};
292 if (unlikely((unsigned)(Comp & 0xF) >= sizeof(Ops)/sizeof(Ops[0])))
293 return "";
294 return Ops[Comp & 0xF];
b2e465d6
AL
295}
296 /*}}}*/
297// Cache::CompType - Return a string describing the compare type /*{{{*/
298// ---------------------------------------------------------------------
69c2ecbd 299/* This returns a string representation of the dependency compare
b2e465d6
AL
300 type */
301const char *pkgCache::CompType(unsigned char Comp)
302{
69c2ecbd
DK
303 const char * const Ops[] = {"","<=",">=","<",">","=","!="};
304 if (unlikely((unsigned)(Comp & 0xF) >= sizeof(Ops)/sizeof(Ops[0])))
305 return "";
306 return Ops[Comp & 0xF];
b2e465d6
AL
307}
308 /*}}}*/
309// Cache::DepType - Return a string describing the dep type /*{{{*/
310// ---------------------------------------------------------------------
311/* */
312const char *pkgCache::DepType(unsigned char Type)
313{
314 const char *Types[] = {"",_("Depends"),_("PreDepends"),_("Suggests"),
315 _("Recommends"),_("Conflicts"),_("Replaces"),
f8ae7e8b 316 _("Obsoletes"),_("Breaks"), _("Enhances")};
308c7d30 317 if (Type < sizeof(Types)/sizeof(*Types))
b2e465d6
AL
318 return Types[Type];
319 return "";
320}
321 /*}}}*/
0149949b
AL
322// Cache::Priority - Convert a priority value to a string /*{{{*/
323// ---------------------------------------------------------------------
324/* */
325const char *pkgCache::Priority(unsigned char Prio)
326{
b2e465d6
AL
327 const char *Mapping[] = {0,_("important"),_("required"),_("standard"),
328 _("optional"),_("extra")};
0149949b
AL
329 if (Prio < _count(Mapping))
330 return Mapping[Prio];
331 return 0;
332}
333 /*}}}*/
5bf15716
DK
334// GrpIterator::FindPkg - Locate a package by arch /*{{{*/
335// ---------------------------------------------------------------------
336/* Returns an End-Pointer on error, pointer to the package otherwise */
e841200b 337pkgCache::PkgIterator pkgCache::GrpIterator::FindPkg(string Arch) const {
5bf15716
DK
338 if (unlikely(IsGood() == false || S->FirstPackage == 0))
339 return PkgIterator(*Owner, 0);
340
60dcec6d
DK
341 /* If we accept any package we simply return the "first"
342 package in this group (the last one added). */
343 if (Arch == "any")
344 return PkgIterator(*Owner, Owner->PkgP + S->FirstPackage);
345
959470da 346 char const* const myArch = Owner->NativeArch();
5bf15716
DK
347 /* Most of the time the package for our native architecture is
348 the one we add at first to the cache, but this would be the
349 last one we check, so we do it now. */
566046f4 350 if (Arch == "native" || Arch == myArch || Arch == "all") {
5bf15716 351 pkgCache::Package *Pkg = Owner->PkgP + S->LastPackage;
959470da 352 if (strcasecmp(myArch, Owner->StrP + Pkg->Arch) == 0)
5bf15716 353 return PkgIterator(*Owner, Pkg);
959470da 354 Arch = myArch;
5bf15716
DK
355 }
356
5bf15716
DK
357 /* Iterate over the list to find the matching arch
358 unfortunately this list includes "package noise"
359 (= different packages with same calculated hash),
360 so we need to check the name also */
361 for (pkgCache::Package *Pkg = PackageList(); Pkg != Owner->PkgP;
362 Pkg = Owner->PkgP + Pkg->NextPackage) {
363 if (S->Name == Pkg->Name &&
364 stringcasecmp(Arch, Owner->StrP + Pkg->Arch) == 0)
365 return PkgIterator(*Owner, Pkg);
366 if ((Owner->PkgP + S->LastPackage) == Pkg)
367 break;
368 }
369
bd2fb30a
DK
370 return PkgIterator(*Owner, 0);
371}
372 /*}}}*/
373// GrpIterator::FindPreferredPkg - Locate the "best" package /*{{{*/
374// ---------------------------------------------------------------------
375/* Returns an End-Pointer on error, pointer to the package otherwise */
3db58cf4 376pkgCache::PkgIterator pkgCache::GrpIterator::FindPreferredPkg(bool const &PreferNonVirtual) const {
bd2fb30a 377 pkgCache::PkgIterator Pkg = FindPkg("native");
3db58cf4 378 if (Pkg.end() == false && (PreferNonVirtual == false || Pkg->VersionList != 0))
bd2fb30a
DK
379 return Pkg;
380
381 std::vector<std::string> const archs = APT::Configuration::getArchitectures();
382 for (std::vector<std::string>::const_iterator a = archs.begin();
383 a != archs.end(); ++a) {
384 Pkg = FindPkg(*a);
3db58cf4 385 if (Pkg.end() == false && (PreferNonVirtual == false || Pkg->VersionList != 0))
bd2fb30a
DK
386 return Pkg;
387 }
c919ad6e
DK
388 // packages without an architecture
389 Pkg = FindPkg("none");
390 if (Pkg.end() == false && (PreferNonVirtual == false || Pkg->VersionList != 0))
391 return Pkg;
bd2fb30a 392
3db58cf4
DK
393 if (PreferNonVirtual == true)
394 return FindPreferredPkg(false);
5bf15716
DK
395 return PkgIterator(*Owner, 0);
396}
397 /*}}}*/
398// GrpIterator::NextPkg - Locate the next package in the group /*{{{*/
399// ---------------------------------------------------------------------
400/* Returns an End-Pointer on error, pointer to the package otherwise.
c408e01e
DK
401 We can't simply ++ to the next as the next package of the last will
402 be from a different group (with the same hash value) */
e841200b 403pkgCache::PkgIterator pkgCache::GrpIterator::NextPkg(pkgCache::PkgIterator const &LastPkg) const {
5bf15716
DK
404 if (unlikely(IsGood() == false || S->FirstPackage == 0 ||
405 LastPkg.end() == true))
406 return PkgIterator(*Owner, 0);
407
c408e01e
DK
408 if (S->LastPackage == LastPkg.Index())
409 return PkgIterator(*Owner, 0);
5bf15716 410
c408e01e 411 return PkgIterator(*Owner, Owner->PkgP + LastPkg->NextPackage);
5bf15716
DK
412}
413 /*}}}*/
25396fb0
DK
414// GrpIterator::operator ++ - Postfix incr /*{{{*/
415// ---------------------------------------------------------------------
416/* This will advance to the next logical group in the hash table. */
417void pkgCache::GrpIterator::operator ++(int)
418{
419 // Follow the current links
420 if (S != Owner->GrpP)
421 S = Owner->GrpP + S->Next;
422
423 // Follow the hash table
424 while (S == Owner->GrpP && (HashIndex+1) < (signed)_count(Owner->HeaderP->GrpHashTable))
425 {
426 HashIndex++;
427 S = Owner->GrpP + Owner->HeaderP->GrpHashTable[HashIndex];
428 }
429};
f55a958f
AL
430 /*}}}*/
431// PkgIterator::operator ++ - Postfix incr /*{{{*/
578bfd0a
AL
432// ---------------------------------------------------------------------
433/* This will advance to the next logical package in the hash table. */
434void pkgCache::PkgIterator::operator ++(int)
435{
436 // Follow the current links
773e2c1f
DK
437 if (S != Owner->PkgP)
438 S = Owner->PkgP + S->NextPackage;
b2e465d6 439
578bfd0a 440 // Follow the hash table
5bf15716 441 while (S == Owner->PkgP && (HashIndex+1) < (signed)_count(Owner->HeaderP->PkgHashTable))
578bfd0a
AL
442 {
443 HashIndex++;
5bf15716 444 S = Owner->PkgP + Owner->HeaderP->PkgHashTable[HashIndex];
578bfd0a
AL
445 }
446};
447 /*}}}*/
578bfd0a
AL
448// PkgIterator::State - Check the State of the package /*{{{*/
449// ---------------------------------------------------------------------
450/* By this we mean if it is either cleanly installed or cleanly removed. */
451pkgCache::PkgIterator::OkState pkgCache::PkgIterator::State() const
d38b7b3d 452{
773e2c1f
DK
453 if (S->InstState == pkgCache::State::ReInstReq ||
454 S->InstState == pkgCache::State::HoldReInstReq)
c7c1b0f6
AL
455 return NeedsUnpack;
456
773e2c1f
DK
457 if (S->CurrentState == pkgCache::State::UnPacked ||
458 S->CurrentState == pkgCache::State::HalfConfigured)
c6aa14e4
MV
459 // we leave triggers alone complettely. dpkg deals with
460 // them in a hard-to-predict manner and if they get
461 // resolved by dpkg before apt run dpkg --configure on
462 // the TriggersPending package dpkg returns a error
09fab244 463 //Pkg->CurrentState == pkgCache::State::TriggersAwaited
c6aa14e4 464 //Pkg->CurrentState == pkgCache::State::TriggersPending)
578bfd0a
AL
465 return NeedsConfigure;
466
773e2c1f
DK
467 if (S->CurrentState == pkgCache::State::HalfInstalled ||
468 S->InstState != pkgCache::State::Ok)
578bfd0a
AL
469 return NeedsUnpack;
470
471 return NeedsNothing;
472}
473 /*}}}*/
af29ffb4
MV
474// PkgIterator::CandVersion - Returns the candidate version string /*{{{*/
475// ---------------------------------------------------------------------
476/* Return string representing of the candidate version. */
477const char *
478pkgCache::PkgIterator::CandVersion() const
479{
480 //TargetVer is empty, so don't use it.
749eb4cf 481 VerIterator version = pkgPolicy(Owner).GetCandidateVer(*this);
af29ffb4
MV
482 if (version.IsGood())
483 return version.VerStr();
484 return 0;
485};
486 /*}}}*/
487// PkgIterator::CurVersion - Returns the current version string /*{{{*/
488// ---------------------------------------------------------------------
489/* Return string representing of the current version. */
490const char *
491pkgCache::PkgIterator::CurVersion() const
492{
493 VerIterator version = CurrentVer();
494 if (version.IsGood())
495 return CurrentVer().VerStr();
496 return 0;
497};
498 /*}}}*/
499// ostream operator to handle string representation of a package /*{{{*/
500// ---------------------------------------------------------------------
501/* Output name < cur.rent.version -> candid.ate.version | new.est.version > (section)
502 Note that the characters <|>() are all literal above. Versions will be ommited
503 if they provide no new information (e.g. there is no newer version than candidate)
504 If no version and/or section can be found "none" is used. */
505std::ostream&
8f3ba4e8 506operator<<(std::ostream& out, pkgCache::PkgIterator Pkg)
af29ffb4
MV
507{
508 if (Pkg.end() == true)
509 return out << "invalid package";
510
511 string current = string(Pkg.CurVersion() == 0 ? "none" : Pkg.CurVersion());
512 string candidate = string(Pkg.CandVersion() == 0 ? "none" : Pkg.CandVersion());
513 string newest = string(Pkg.VersionList().end() ? "none" : Pkg.VersionList().VerStr());
514
5dd4c8b8 515 out << Pkg.Name() << " [ " << Pkg.Arch() << " ] < " << current;
af29ffb4
MV
516 if (current != candidate)
517 out << " -> " << candidate;
518 if ( newest != "none" && candidate != newest)
519 out << " | " << newest;
520 out << " > ( " << string(Pkg.Section()==0?"none":Pkg.Section()) << " )";
521 return out;
522}
523 /*}}}*/
75ce2062
DK
524// PkgIterator::FullName - Returns Name and (maybe) Architecture /*{{{*/
525// ---------------------------------------------------------------------
526/* Returns a name:arch string */
527std::string pkgCache::PkgIterator::FullName(bool const &Pretty) const
528{
529 string fullname = Name();
530 if (Pretty == false ||
959470da
DK
531 (strcmp(Arch(), "all") != 0 &&
532 strcmp(Owner->NativeArch(), Arch()) != 0))
75ce2062
DK
533 return fullname.append(":").append(Arch());
534 return fullname;
535}
536 /*}}}*/
578bfd0a
AL
537// DepIterator::IsCritical - Returns true if the dep is important /*{{{*/
538// ---------------------------------------------------------------------
539/* Currently critical deps are defined as depends, predepends and
308c7d30 540 conflicts (including dpkg's Breaks fields). */
e841200b 541bool pkgCache::DepIterator::IsCritical() const
578bfd0a 542{
359e46db 543 if (IsNegative() == true ||
773e2c1f
DK
544 S->Type == pkgCache::Dep::Depends ||
545 S->Type == pkgCache::Dep::PreDepends)
578bfd0a
AL
546 return true;
547 return false;
548}
549 /*}}}*/
df77d8a5
DK
550// DepIterator::IsNegative - Returns true if the dep is a negative one /*{{{*/
551// ---------------------------------------------------------------------
552/* Some dependencies are positive like Depends and Recommends, others
553 are negative like Conflicts which can and should be handled differently */
554bool pkgCache::DepIterator::IsNegative() const
555{
556 return S->Type == Dep::DpkgBreaks ||
557 S->Type == Dep::Conflicts ||
558 S->Type == Dep::Obsoletes;
559}
560 /*}}}*/
578bfd0a
AL
561// DepIterator::SmartTargetPkg - Resolve dep target pointers w/provides /*{{{*/
562// ---------------------------------------------------------------------
563/* This intellegently looks at dep target packages and tries to figure
564 out which package should be used. This is needed to nicely handle
565 provide mapping. If the target package has no other providing packages
566 then it returned. Otherwise the providing list is looked at to
567 see if there is one one unique providing package if so it is returned.
568 Otherwise true is returned and the target package is set. The return
b2e465d6
AL
569 result indicates whether the node should be expandable
570
571 In Conjunction with the DepCache the value of Result may not be
572 super-good since the policy may have made it uninstallable. Using
573 AllTargets is better in this case. */
e841200b 574bool pkgCache::DepIterator::SmartTargetPkg(PkgIterator &Result) const
578bfd0a
AL
575{
576 Result = TargetPkg();
577
578 // No provides at all
579 if (Result->ProvidesList == 0)
580 return false;
581
582 // There is the Base package and the providing ones which is at least 2
583 if (Result->VersionList != 0)
584 return true;
585
586 /* We have to skip over indirect provisions of the package that
587 owns the dependency. For instance, if libc5-dev depends on the
588 virtual package libc-dev which is provided by libc5-dev and libc6-dev
589 we must ignore libc5-dev when considering the provides list. */
590 PrvIterator PStart = Result.ProvidesList();
f7f0d6c7 591 for (; PStart.end() != true && PStart.OwnerPkg() == ParentPkg(); ++PStart);
578bfd0a
AL
592
593 // Nothing but indirect self provides
594 if (PStart.end() == true)
595 return false;
596
597 // Check for single packages in the provides list
598 PrvIterator P = PStart;
f7f0d6c7 599 for (; P.end() != true; ++P)
578bfd0a
AL
600 {
601 // Skip over self provides
602 if (P.OwnerPkg() == ParentPkg())
603 continue;
604 if (PStart.OwnerPkg() != P.OwnerPkg())
605 break;
606 }
b2e465d6
AL
607
608 Result = PStart.OwnerPkg();
578bfd0a
AL
609
610 // Check for non dups
611 if (P.end() != true)
612 return true;
b2e465d6 613
578bfd0a
AL
614 return false;
615}
616 /*}}}*/
617// DepIterator::AllTargets - Returns the set of all possible targets /*{{{*/
618// ---------------------------------------------------------------------
b2e465d6 619/* This is a more useful version of TargetPkg() that follows versioned
578bfd0a 620 provides. It includes every possible package-version that could satisfy
fbfb2a7c
AL
621 the dependency. The last item in the list has a 0. The resulting pointer
622 must be delete [] 'd */
e841200b 623pkgCache::Version **pkgCache::DepIterator::AllTargets() const
578bfd0a
AL
624{
625 Version **Res = 0;
626 unsigned long Size =0;
627 while (1)
628 {
629 Version **End = Res;
630 PkgIterator DPkg = TargetPkg();
631
632 // Walk along the actual package providing versions
f7f0d6c7 633 for (VerIterator I = DPkg.VersionList(); I.end() == false; ++I)
578bfd0a 634 {
85434114 635 if (IsIgnorable(I.ParentPkg()) == true)
578bfd0a
AL
636 continue;
637
85434114 638 if (Owner->VS->CheckDep(I.VerStr(),S->CompareOp,TargetVer()) == false)
578bfd0a 639 continue;
85434114 640
578bfd0a
AL
641 Size++;
642 if (Res != 0)
643 *End++ = I;
644 }
645
646 // Follow all provides
f7f0d6c7 647 for (PrvIterator I = DPkg.ProvidesList(); I.end() == false; ++I)
578bfd0a 648 {
85434114 649 if (IsIgnorable(I) == true)
578bfd0a 650 continue;
5f909b67 651
85434114
DK
652 if (Owner->VS->CheckDep(I.ProvideVersion(),S->CompareOp,TargetVer()) == false)
653 continue;
5f909b67 654
578bfd0a
AL
655 Size++;
656 if (Res != 0)
657 *End++ = I.OwnerVer();
658 }
659
660 // Do it again and write it into the array
661 if (Res == 0)
662 {
663 Res = new Version *[Size+1];
664 Size = 0;
665 }
666 else
667 {
668 *End = 0;
669 break;
670 }
671 }
672
673 return Res;
674}
675 /*}}}*/
43d017d6
AL
676// DepIterator::GlobOr - Compute an OR group /*{{{*/
677// ---------------------------------------------------------------------
678/* This Takes an iterator, iterates past the current dependency grouping
679 and returns Start and End so that so End is the final element
680 in the group, if End == Start then D is End++ and End is the
681 dependency D was pointing to. Use in loops to iterate sensibly. */
682void pkgCache::DepIterator::GlobOr(DepIterator &Start,DepIterator &End)
683{
684 // Compute a single dependency element (glob or)
685 Start = *this;
686 End = *this;
018f1533 687 for (bool LastOR = true; end() == false && LastOR == true;)
43d017d6 688 {
773e2c1f 689 LastOR = (S->CompareOp & pkgCache::Dep::Or) == pkgCache::Dep::Or;
018f1533 690 (*this)++;
43d017d6
AL
691 if (LastOR == true)
692 End = (*this);
693 }
694}
695 /*}}}*/
85434114
DK
696// DepIterator::IsIgnorable - should this packag/providr be ignored? /*{{{*/
697// ---------------------------------------------------------------------
698/* Deps like self-conflicts should be ignored as well as implicit conflicts
699 on virtual packages. */
700bool pkgCache::DepIterator::IsIgnorable(PkgIterator const &Pkg) const
701{
021626db
DK
702 if (IsNegative() == false)
703 return false;
704
705 pkgCache::PkgIterator PP = ParentPkg();
706 pkgCache::PkgIterator PT = TargetPkg();
707 if (PP->Group != PT->Group)
708 return false;
709 // self-conflict
710 if (PP == PT)
711 return true;
712 pkgCache::VerIterator PV = ParentVer();
713 // ignore group-conflict on a M-A:same package - but not our implicit dependencies
714 // so that we can have M-A:same packages conflicting with their own real name
715 if ((PV->MultiArch & pkgCache::Version::Same) == pkgCache::Version::Same)
716 {
717 // Replaces: ${self}:other ( << ${binary:Version})
718 if (S->Type == pkgCache::Dep::Replaces && S->CompareOp == pkgCache::Dep::Less && strcmp(PV.VerStr(), TargetVer()) == 0)
719 return false;
720 // Breaks: ${self}:other (!= ${binary:Version})
721 if (S->Type == pkgCache::Dep::DpkgBreaks && S->CompareOp == pkgCache::Dep::NotEquals && strcmp(PV.VerStr(), TargetVer()) == 0)
722 return false;
723 return true;
724 }
85434114
DK
725
726 return false;
727}
728bool pkgCache::DepIterator::IsIgnorable(PrvIterator const &Prv) const
729{
730 if (IsNegative() == false)
731 return false;
732
733 PkgIterator const Pkg = ParentPkg();
734 /* Provides may never be applied against the same package (or group)
735 if it is a conflicts. See the comment above. */
736 if (Prv.OwnerPkg()->Group == Pkg->Group)
737 return true;
738 // Implicit group-conflicts should not be applied on providers of other groups
739 if (Pkg->Group == TargetPkg()->Group && Prv.OwnerPkg()->Group != Pkg->Group)
740 return true;
741
742 return false;
743}
744 /*}}}*/
d5648746
DK
745// DepIterator::IsMultiArchImplicit - added by the cache generation /*{{{*/
746// ---------------------------------------------------------------------
747/* MultiArch can be translated to SingleArch for an resolver and we did so,
748 by adding dependencies to help the resolver understand the problem, but
749 sometimes it is needed to identify these to ignore them… */
750bool pkgCache::DepIterator::IsMultiArchImplicit() const
751{
0f485ee5
TG
752 if (ParentPkg()->Arch != TargetPkg()->Arch &&
753 (S->Type == pkgCache::Dep::Replaces ||
754 S->Type == pkgCache::Dep::DpkgBreaks ||
755 S->Type == pkgCache::Dep::Conflicts))
d5648746
DK
756 return true;
757 return false;
758}
759 /*}}}*/
47f6d1b7
DK
760// ostream operator to handle string representation of a dependecy /*{{{*/
761// ---------------------------------------------------------------------
762/* */
8f3ba4e8 763std::ostream& operator<<(std::ostream& out, pkgCache::DepIterator D)
47f6d1b7
DK
764{
765 if (D.end() == true)
766 return out << "invalid dependency";
767
768 pkgCache::PkgIterator P = D.ParentPkg();
769 pkgCache::PkgIterator T = D.TargetPkg();
770
771 out << (P.end() ? "invalid pkg" : P.FullName(false)) << " " << D.DepType()
772 << " on ";
773 if (T.end() == true)
774 out << "invalid pkg";
775 else
776 out << T;
777
778 if (D->Version != 0)
779 out << " (" << D.CompType() << " " << D.TargetVer() << ")";
780
781 return out;
782}
783 /*}}}*/
578bfd0a
AL
784// VerIterator::CompareVer - Fast version compare for same pkgs /*{{{*/
785// ---------------------------------------------------------------------
786/* This just looks over the version list to see if B is listed before A. In
787 most cases this will return in under 4 checks, ver lists are short. */
788int pkgCache::VerIterator::CompareVer(const VerIterator &B) const
789{
790 // Check if they are equal
791 if (*this == B)
792 return 0;
793 if (end() == true)
794 return -1;
795 if (B.end() == true)
796 return 1;
797
798 /* Start at A and look for B. If B is found then A > B otherwise
799 B was before A so A < B */
800 VerIterator I = *this;
f7f0d6c7 801 for (;I.end() == false; ++I)
578bfd0a
AL
802 if (I == B)
803 return 1;
804 return -1;
805}
806 /*}}}*/
b518cca6
AL
807// VerIterator::Downloadable - Checks if the version is downloadable /*{{{*/
808// ---------------------------------------------------------------------
809/* */
810bool pkgCache::VerIterator::Downloadable() const
811{
812 VerFileIterator Files = FileList();
f7f0d6c7 813 for (; Files.end() == false; ++Files)
f07b5628 814 if ((Files.File()->Flags & pkgCache::Flag::NotSource) != pkgCache::Flag::NotSource)
b518cca6
AL
815 return true;
816 return false;
817}
818 /*}}}*/
3c124dde
AL
819// VerIterator::Automatic - Check if this version is 'automatic' /*{{{*/
820// ---------------------------------------------------------------------
821/* This checks to see if any of the versions files are not NotAutomatic.
822 True if this version is selectable for automatic installation. */
823bool pkgCache::VerIterator::Automatic() const
824{
825 VerFileIterator Files = FileList();
f7f0d6c7 826 for (; Files.end() == false; ++Files)
5ed56f93 827 // Do not check ButAutomaticUpgrades here as it is kind of automatic…
3c124dde
AL
828 if ((Files.File()->Flags & pkgCache::Flag::NotAutomatic) != pkgCache::Flag::NotAutomatic)
829 return true;
830 return false;
831}
832 /*}}}*/
833// VerIterator::NewestFile - Return the newest file version relation /*{{{*/
834// ---------------------------------------------------------------------
835/* This looks at the version numbers associated with all of the sources
836 this version is in and returns the highest.*/
837pkgCache::VerFileIterator pkgCache::VerIterator::NewestFile() const
838{
839 VerFileIterator Files = FileList();
840 VerFileIterator Highest = Files;
f7f0d6c7 841 for (; Files.end() == false; ++Files)
3c124dde 842 {
b2e465d6 843 if (Owner->VS->CmpReleaseVer(Files.File().Version(),Highest.File().Version()) > 0)
3c124dde
AL
844 Highest = Files;
845 }
846
847 return Highest;
848}
849 /*}}}*/
b2e465d6
AL
850// VerIterator::RelStr - Release description string /*{{{*/
851// ---------------------------------------------------------------------
852/* This describes the version from a release-centric manner. The output is a
853 list of Label:Version/Archive */
d4489d49 854string pkgCache::VerIterator::RelStr() const
b2e465d6
AL
855{
856 bool First = true;
857 string Res;
f7f0d6c7 858 for (pkgCache::VerFileIterator I = this->FileList(); I.end() == false; ++I)
b2e465d6
AL
859 {
860 // Do not print 'not source' entries'
861 pkgCache::PkgFileIterator File = I.File();
862 if ((File->Flags & pkgCache::Flag::NotSource) == pkgCache::Flag::NotSource)
863 continue;
864
865 // See if we have already printed this out..
866 bool Seen = false;
f7f0d6c7 867 for (pkgCache::VerFileIterator J = this->FileList(); I != J; ++J)
b2e465d6
AL
868 {
869 pkgCache::PkgFileIterator File2 = J.File();
870 if (File2->Label == 0 || File->Label == 0)
871 continue;
872
873 if (strcmp(File.Label(),File2.Label()) != 0)
874 continue;
875
876 if (File2->Version == File->Version)
877 {
878 Seen = true;
879 break;
880 }
10639577 881 if (File2->Version == 0 || File->Version == 0)
b2e465d6
AL
882 break;
883 if (strcmp(File.Version(),File2.Version()) == 0)
884 Seen = true;
885 }
886
887 if (Seen == true)
888 continue;
889
890 if (First == false)
891 Res += ", ";
892 else
893 First = false;
894
895 if (File->Label != 0)
896 Res = Res + File.Label() + ':';
897
898 if (File->Archive != 0)
899 {
900 if (File->Version == 0)
901 Res += File.Archive();
902 else
903 Res = Res + File.Version() + '/' + File.Archive();
904 }
905 else
906 {
907 // No release file, print the host name that this came from
908 if (File->Site == 0 || File.Site()[0] == 0)
909 Res += "localhost";
910 else
911 Res += File.Site();
912 }
5dd4c8b8 913 }
857e9c13 914 if (S->ParentPkg != 0)
5dd4c8b8 915 Res.append(" [").append(Arch()).append("]");
b2e465d6
AL
916 return Res;
917}
918 /*}}}*/
578bfd0a
AL
919// PkgFileIterator::IsOk - Checks if the cache is in sync with the file /*{{{*/
920// ---------------------------------------------------------------------
921/* This stats the file and compares its stats with the ones that were
922 stored during generation. Date checks should probably also be
923 included here. */
924bool pkgCache::PkgFileIterator::IsOk()
925{
926 struct stat Buf;
927 if (stat(FileName(),&Buf) != 0)
928 return false;
929
773e2c1f 930 if (Buf.st_size != (signed)S->Size || Buf.st_mtime != S->mtime)
578bfd0a
AL
931 return false;
932
933 return true;
934}
935 /*}}}*/
af87ab54
AL
936// PkgFileIterator::RelStr - Return the release string /*{{{*/
937// ---------------------------------------------------------------------
938/* */
939string pkgCache::PkgFileIterator::RelStr()
940{
941 string Res;
942 if (Version() != 0)
943 Res = Res + (Res.empty() == true?"v=":",v=") + Version();
944 if (Origin() != 0)
945 Res = Res + (Res.empty() == true?"o=":",o=") + Origin();
946 if (Archive() != 0)
947 Res = Res + (Res.empty() == true?"a=":",a=") + Archive();
efc487fb
DK
948 if (Codename() != 0)
949 Res = Res + (Res.empty() == true?"n=":",n=") + Codename();
af87ab54
AL
950 if (Label() != 0)
951 Res = Res + (Res.empty() == true?"l=":",l=") + Label();
952 if (Component() != 0)
953 Res = Res + (Res.empty() == true?"c=":",c=") + Component();
5dd4c8b8
DK
954 if (Architecture() != 0)
955 Res = Res + (Res.empty() == true?"b=":",b=") + Architecture();
af87ab54
AL
956 return Res;
957}
958 /*}}}*/
012b102a
MV
959// VerIterator::TranslatedDescription - Return the a DescIter for locale/*{{{*/
960// ---------------------------------------------------------------------
961/* return a DescIter for the current locale or the default if none is
962 * found
963 */
964pkgCache::DescIterator pkgCache::VerIterator::TranslatedDescription() const
965{
45df0ad2
DK
966 std::vector<string> const lang = APT::Configuration::getLanguages();
967 for (std::vector<string>::const_iterator l = lang.begin();
f7f0d6c7 968 l != lang.end(); ++l)
45df0ad2 969 {
4b625b95
DK
970 pkgCache::DescIterator Desc = DescriptionList();
971 for (; Desc.end() == false; ++Desc)
0e7c3313 972 if (*l == Desc.LanguageCode())
45df0ad2 973 break;
4b625b95 974 if (Desc.end() == true)
0e7c3313
DK
975 {
976 if (*l == "en")
977 {
978 Desc = DescriptionList();
979 for (; Desc.end() == false; ++Desc)
980 if (strcmp(Desc.LanguageCode(), "") == 0)
981 break;
982 if (Desc.end() == true)
983 continue;
984 }
985 else
986 continue;
987 }
45df0ad2
DK
988 return Desc;
989 }
4b625b95
DK
990 for (pkgCache::DescIterator Desc = DescriptionList();
991 Desc.end() == false; ++Desc)
992 if (strcmp(Desc.LanguageCode(), "") == 0)
993 return Desc;
45df0ad2 994 return DescriptionList();
012b102a
MV
995};
996
997 /*}}}*/
d5648746
DK
998// PrvIterator::IsMultiArchImplicit - added by the cache generation /*{{{*/
999// ---------------------------------------------------------------------
1000/* MultiArch can be translated to SingleArch for an resolver and we did so,
1001 by adding provides to help the resolver understand the problem, but
1002 sometimes it is needed to identify these to ignore them… */
1003bool pkgCache::PrvIterator::IsMultiArchImplicit() const
1004{
1005 pkgCache::PkgIterator const Owner = OwnerPkg();
1006 pkgCache::PkgIterator const Parent = ParentPkg();
ef5dc12c 1007 if (strcmp(Owner.Arch(), Parent.Arch()) != 0 || Owner->Name == Parent->Name)
d5648746
DK
1008 return true;
1009 return false;
1010}
1011 /*}}}*/