merged from lp:~donkult/apt/sid/
[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;
6a3da7a6 55 MinorVersion = 0;
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)
4e86942a 185 Hash = 5*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
AL
190{
191 unsigned long Hash = 0;
f7f0d6c7 192 for (const char *I = Str; *I != 0; ++I)
4e86942a 193 Hash = 5*Hash + tolower_ascii(*I);
5bf15716 194 return Hash % _count(HeaderP->PkgHashTable);
578bfd0a
AL
195}
196
8d4c859d
DK
197 /*}}}*/
198// Cache::SingleArchFindPkg - Locate a package by name /*{{{*/
199// ---------------------------------------------------------------------
200/* Returns 0 on error, pointer to the package otherwise
201 The multiArch enabled methods will fallback to this one as it is (a bit)
202 faster for single arch environments and realworld is mostly singlearch… */
203pkgCache::PkgIterator pkgCache::SingleArchFindPkg(const string &Name)
204{
205 // Look at the hash bucket
206 Package *Pkg = PkgP + HeaderP->PkgHashTable[Hash(Name)];
207 for (; Pkg != PkgP; Pkg = PkgP + Pkg->NextPackage)
208 {
209 if (Pkg->Name != 0 && StrP[Pkg->Name] == Name[0] &&
210 stringcasecmp(Name,StrP + Pkg->Name) == 0)
211 return PkgIterator(*this,Pkg);
212 }
213 return PkgIterator(*this,0);
214}
578bfd0a
AL
215 /*}}}*/
216// Cache::FindPkg - Locate a package by name /*{{{*/
217// ---------------------------------------------------------------------
218/* Returns 0 on error, pointer to the package otherwise */
25396fb0
DK
219pkgCache::PkgIterator pkgCache::FindPkg(const string &Name) {
220 size_t const found = Name.find(':');
221 if (found == string::npos)
254b8ebb
DK
222 {
223 if (MultiArchCache() == false)
224 return SingleArchFindPkg(Name);
225 else
226 return FindPkg(Name, "native");
227 }
4d174dc8 228 string const Arch = Name.substr(found+1);
eddc9dd0
DK
229 /* Beware: This is specialcased to handle pkg:any in dependencies as
230 these are linked to virtual pkg:any named packages with all archs.
231 If you want any arch from a given pkg, use FindPkg(pkg,arch) */
4d174dc8
DK
232 if (Arch == "any")
233 return FindPkg(Name, "any");
234 return FindPkg(Name.substr(0, found), Arch);
25396fb0
DK
235}
236 /*}}}*/
237// Cache::FindPkg - Locate a package by name /*{{{*/
238// ---------------------------------------------------------------------
239/* Returns 0 on error, pointer to the package otherwise */
8d4c859d
DK
240pkgCache::PkgIterator pkgCache::FindPkg(const string &Name, string const &Arch) {
241 if (MultiArchCache() == false) {
61d15f91 242 if (Arch == "native" || Arch == "all" || Arch == "any" ||
959470da 243 Arch == NativeArch())
8d4c859d
DK
244 return SingleArchFindPkg(Name);
245 else
246 return PkgIterator(*this,0);
247 }
5bf15716
DK
248 /* We make a detour via the GrpIterator here as
249 on a multi-arch environment a group is easier to
250 find than a package (less entries in the buckets) */
251 pkgCache::GrpIterator Grp = FindGrp(Name);
252 if (Grp.end() == true)
253 return PkgIterator(*this,0);
254
255 return Grp.FindPkg(Arch);
256}
257 /*}}}*/
258// Cache::FindGrp - Locate a group by name /*{{{*/
259// ---------------------------------------------------------------------
260/* Returns End-Pointer on error, pointer to the group otherwise */
261pkgCache::GrpIterator pkgCache::FindGrp(const string &Name) {
262 if (unlikely(Name.empty() == true))
263 return GrpIterator(*this,0);
264
265 // Look at the hash bucket for the group
266 Group *Grp = GrpP + HeaderP->GrpHashTable[sHash(Name)];
267 for (; Grp != GrpP; Grp = GrpP + Grp->Next) {
268 if (Grp->Name != 0 && StrP[Grp->Name] == Name[0] &&
269 stringcasecmp(Name, StrP + Grp->Name) == 0)
270 return GrpIterator(*this, Grp);
271 }
272
273 return GrpIterator(*this,0);
578bfd0a
AL
274}
275 /*}}}*/
b2e465d6
AL
276// Cache::CompTypeDeb - Return a string describing the compare type /*{{{*/
277// ---------------------------------------------------------------------
278/* This returns a string representation of the dependency compare
279 type in the weird debian style.. */
280const char *pkgCache::CompTypeDeb(unsigned char Comp)
281{
282 const char *Ops[] = {"","<=",">=","<<",">>","=","!="};
283 if ((unsigned)(Comp & 0xF) < 7)
284 return Ops[Comp & 0xF];
285 return "";
286}
287 /*}}}*/
288// Cache::CompType - Return a string describing the compare type /*{{{*/
289// ---------------------------------------------------------------------
290/* This returns a string representation of the dependency compare
291 type */
292const char *pkgCache::CompType(unsigned char Comp)
293{
294 const char *Ops[] = {"","<=",">=","<",">","=","!="};
295 if ((unsigned)(Comp & 0xF) < 7)
296 return Ops[Comp & 0xF];
297 return "";
298}
299 /*}}}*/
300// Cache::DepType - Return a string describing the dep type /*{{{*/
301// ---------------------------------------------------------------------
302/* */
303const char *pkgCache::DepType(unsigned char Type)
304{
305 const char *Types[] = {"",_("Depends"),_("PreDepends"),_("Suggests"),
306 _("Recommends"),_("Conflicts"),_("Replaces"),
f8ae7e8b 307 _("Obsoletes"),_("Breaks"), _("Enhances")};
308c7d30 308 if (Type < sizeof(Types)/sizeof(*Types))
b2e465d6
AL
309 return Types[Type];
310 return "";
311}
312 /*}}}*/
0149949b
AL
313// Cache::Priority - Convert a priority value to a string /*{{{*/
314// ---------------------------------------------------------------------
315/* */
316const char *pkgCache::Priority(unsigned char Prio)
317{
b2e465d6
AL
318 const char *Mapping[] = {0,_("important"),_("required"),_("standard"),
319 _("optional"),_("extra")};
0149949b
AL
320 if (Prio < _count(Mapping))
321 return Mapping[Prio];
322 return 0;
323}
324 /*}}}*/
5bf15716
DK
325// GrpIterator::FindPkg - Locate a package by arch /*{{{*/
326// ---------------------------------------------------------------------
327/* Returns an End-Pointer on error, pointer to the package otherwise */
e841200b 328pkgCache::PkgIterator pkgCache::GrpIterator::FindPkg(string Arch) const {
5bf15716
DK
329 if (unlikely(IsGood() == false || S->FirstPackage == 0))
330 return PkgIterator(*Owner, 0);
331
60dcec6d
DK
332 /* If we accept any package we simply return the "first"
333 package in this group (the last one added). */
334 if (Arch == "any")
335 return PkgIterator(*Owner, Owner->PkgP + S->FirstPackage);
336
959470da 337 char const* const myArch = Owner->NativeArch();
5bf15716
DK
338 /* Most of the time the package for our native architecture is
339 the one we add at first to the cache, but this would be the
340 last one we check, so we do it now. */
566046f4 341 if (Arch == "native" || Arch == myArch || Arch == "all") {
5bf15716 342 pkgCache::Package *Pkg = Owner->PkgP + S->LastPackage;
959470da 343 if (strcasecmp(myArch, Owner->StrP + Pkg->Arch) == 0)
5bf15716 344 return PkgIterator(*Owner, Pkg);
959470da 345 Arch = myArch;
5bf15716
DK
346 }
347
5bf15716
DK
348 /* Iterate over the list to find the matching arch
349 unfortunately this list includes "package noise"
350 (= different packages with same calculated hash),
351 so we need to check the name also */
352 for (pkgCache::Package *Pkg = PackageList(); Pkg != Owner->PkgP;
353 Pkg = Owner->PkgP + Pkg->NextPackage) {
354 if (S->Name == Pkg->Name &&
355 stringcasecmp(Arch, Owner->StrP + Pkg->Arch) == 0)
356 return PkgIterator(*Owner, Pkg);
357 if ((Owner->PkgP + S->LastPackage) == Pkg)
358 break;
359 }
360
bd2fb30a
DK
361 return PkgIterator(*Owner, 0);
362}
363 /*}}}*/
364// GrpIterator::FindPreferredPkg - Locate the "best" package /*{{{*/
365// ---------------------------------------------------------------------
366/* Returns an End-Pointer on error, pointer to the package otherwise */
3db58cf4 367pkgCache::PkgIterator pkgCache::GrpIterator::FindPreferredPkg(bool const &PreferNonVirtual) const {
bd2fb30a 368 pkgCache::PkgIterator Pkg = FindPkg("native");
3db58cf4 369 if (Pkg.end() == false && (PreferNonVirtual == false || Pkg->VersionList != 0))
bd2fb30a
DK
370 return Pkg;
371
372 std::vector<std::string> const archs = APT::Configuration::getArchitectures();
373 for (std::vector<std::string>::const_iterator a = archs.begin();
374 a != archs.end(); ++a) {
375 Pkg = FindPkg(*a);
3db58cf4 376 if (Pkg.end() == false && (PreferNonVirtual == false || Pkg->VersionList != 0))
bd2fb30a
DK
377 return Pkg;
378 }
379
3db58cf4
DK
380 if (PreferNonVirtual == true)
381 return FindPreferredPkg(false);
5bf15716
DK
382 return PkgIterator(*Owner, 0);
383}
384 /*}}}*/
385// GrpIterator::NextPkg - Locate the next package in the group /*{{{*/
386// ---------------------------------------------------------------------
387/* Returns an End-Pointer on error, pointer to the package otherwise.
c408e01e
DK
388 We can't simply ++ to the next as the next package of the last will
389 be from a different group (with the same hash value) */
e841200b 390pkgCache::PkgIterator pkgCache::GrpIterator::NextPkg(pkgCache::PkgIterator const &LastPkg) const {
5bf15716
DK
391 if (unlikely(IsGood() == false || S->FirstPackage == 0 ||
392 LastPkg.end() == true))
393 return PkgIterator(*Owner, 0);
394
c408e01e
DK
395 if (S->LastPackage == LastPkg.Index())
396 return PkgIterator(*Owner, 0);
5bf15716 397
c408e01e 398 return PkgIterator(*Owner, Owner->PkgP + LastPkg->NextPackage);
5bf15716
DK
399}
400 /*}}}*/
25396fb0
DK
401// GrpIterator::operator ++ - Postfix incr /*{{{*/
402// ---------------------------------------------------------------------
403/* This will advance to the next logical group in the hash table. */
404void pkgCache::GrpIterator::operator ++(int)
405{
406 // Follow the current links
407 if (S != Owner->GrpP)
408 S = Owner->GrpP + S->Next;
409
410 // Follow the hash table
411 while (S == Owner->GrpP && (HashIndex+1) < (signed)_count(Owner->HeaderP->GrpHashTable))
412 {
413 HashIndex++;
414 S = Owner->GrpP + Owner->HeaderP->GrpHashTable[HashIndex];
415 }
416};
f55a958f
AL
417 /*}}}*/
418// PkgIterator::operator ++ - Postfix incr /*{{{*/
578bfd0a
AL
419// ---------------------------------------------------------------------
420/* This will advance to the next logical package in the hash table. */
421void pkgCache::PkgIterator::operator ++(int)
422{
423 // Follow the current links
773e2c1f
DK
424 if (S != Owner->PkgP)
425 S = Owner->PkgP + S->NextPackage;
b2e465d6 426
578bfd0a 427 // Follow the hash table
5bf15716 428 while (S == Owner->PkgP && (HashIndex+1) < (signed)_count(Owner->HeaderP->PkgHashTable))
578bfd0a
AL
429 {
430 HashIndex++;
5bf15716 431 S = Owner->PkgP + Owner->HeaderP->PkgHashTable[HashIndex];
578bfd0a
AL
432 }
433};
434 /*}}}*/
578bfd0a
AL
435// PkgIterator::State - Check the State of the package /*{{{*/
436// ---------------------------------------------------------------------
437/* By this we mean if it is either cleanly installed or cleanly removed. */
438pkgCache::PkgIterator::OkState pkgCache::PkgIterator::State() const
d38b7b3d 439{
773e2c1f
DK
440 if (S->InstState == pkgCache::State::ReInstReq ||
441 S->InstState == pkgCache::State::HoldReInstReq)
c7c1b0f6
AL
442 return NeedsUnpack;
443
773e2c1f
DK
444 if (S->CurrentState == pkgCache::State::UnPacked ||
445 S->CurrentState == pkgCache::State::HalfConfigured)
c6aa14e4
MV
446 // we leave triggers alone complettely. dpkg deals with
447 // them in a hard-to-predict manner and if they get
448 // resolved by dpkg before apt run dpkg --configure on
449 // the TriggersPending package dpkg returns a error
09fab244 450 //Pkg->CurrentState == pkgCache::State::TriggersAwaited
c6aa14e4 451 //Pkg->CurrentState == pkgCache::State::TriggersPending)
578bfd0a
AL
452 return NeedsConfigure;
453
773e2c1f
DK
454 if (S->CurrentState == pkgCache::State::HalfInstalled ||
455 S->InstState != pkgCache::State::Ok)
578bfd0a
AL
456 return NeedsUnpack;
457
458 return NeedsNothing;
459}
460 /*}}}*/
af29ffb4
MV
461// PkgIterator::CandVersion - Returns the candidate version string /*{{{*/
462// ---------------------------------------------------------------------
463/* Return string representing of the candidate version. */
464const char *
465pkgCache::PkgIterator::CandVersion() const
466{
467 //TargetVer is empty, so don't use it.
749eb4cf 468 VerIterator version = pkgPolicy(Owner).GetCandidateVer(*this);
af29ffb4
MV
469 if (version.IsGood())
470 return version.VerStr();
471 return 0;
472};
473 /*}}}*/
474// PkgIterator::CurVersion - Returns the current version string /*{{{*/
475// ---------------------------------------------------------------------
476/* Return string representing of the current version. */
477const char *
478pkgCache::PkgIterator::CurVersion() const
479{
480 VerIterator version = CurrentVer();
481 if (version.IsGood())
482 return CurrentVer().VerStr();
483 return 0;
484};
485 /*}}}*/
486// ostream operator to handle string representation of a package /*{{{*/
487// ---------------------------------------------------------------------
488/* Output name < cur.rent.version -> candid.ate.version | new.est.version > (section)
489 Note that the characters <|>() are all literal above. Versions will be ommited
490 if they provide no new information (e.g. there is no newer version than candidate)
491 If no version and/or section can be found "none" is used. */
492std::ostream&
8f3ba4e8 493operator<<(std::ostream& out, pkgCache::PkgIterator Pkg)
af29ffb4
MV
494{
495 if (Pkg.end() == true)
496 return out << "invalid package";
497
498 string current = string(Pkg.CurVersion() == 0 ? "none" : Pkg.CurVersion());
499 string candidate = string(Pkg.CandVersion() == 0 ? "none" : Pkg.CandVersion());
500 string newest = string(Pkg.VersionList().end() ? "none" : Pkg.VersionList().VerStr());
501
5dd4c8b8 502 out << Pkg.Name() << " [ " << Pkg.Arch() << " ] < " << current;
af29ffb4
MV
503 if (current != candidate)
504 out << " -> " << candidate;
505 if ( newest != "none" && candidate != newest)
506 out << " | " << newest;
507 out << " > ( " << string(Pkg.Section()==0?"none":Pkg.Section()) << " )";
508 return out;
509}
510 /*}}}*/
75ce2062
DK
511// PkgIterator::FullName - Returns Name and (maybe) Architecture /*{{{*/
512// ---------------------------------------------------------------------
513/* Returns a name:arch string */
514std::string pkgCache::PkgIterator::FullName(bool const &Pretty) const
515{
516 string fullname = Name();
517 if (Pretty == false ||
959470da
DK
518 (strcmp(Arch(), "all") != 0 &&
519 strcmp(Owner->NativeArch(), Arch()) != 0))
75ce2062
DK
520 return fullname.append(":").append(Arch());
521 return fullname;
522}
523 /*}}}*/
578bfd0a
AL
524// DepIterator::IsCritical - Returns true if the dep is important /*{{{*/
525// ---------------------------------------------------------------------
526/* Currently critical deps are defined as depends, predepends and
308c7d30 527 conflicts (including dpkg's Breaks fields). */
e841200b 528bool pkgCache::DepIterator::IsCritical() const
578bfd0a 529{
359e46db 530 if (IsNegative() == true ||
773e2c1f
DK
531 S->Type == pkgCache::Dep::Depends ||
532 S->Type == pkgCache::Dep::PreDepends)
578bfd0a
AL
533 return true;
534 return false;
535}
536 /*}}}*/
df77d8a5
DK
537// DepIterator::IsNegative - Returns true if the dep is a negative one /*{{{*/
538// ---------------------------------------------------------------------
539/* Some dependencies are positive like Depends and Recommends, others
540 are negative like Conflicts which can and should be handled differently */
541bool pkgCache::DepIterator::IsNegative() const
542{
543 return S->Type == Dep::DpkgBreaks ||
544 S->Type == Dep::Conflicts ||
545 S->Type == Dep::Obsoletes;
546}
547 /*}}}*/
578bfd0a
AL
548// DepIterator::SmartTargetPkg - Resolve dep target pointers w/provides /*{{{*/
549// ---------------------------------------------------------------------
550/* This intellegently looks at dep target packages and tries to figure
551 out which package should be used. This is needed to nicely handle
552 provide mapping. If the target package has no other providing packages
553 then it returned. Otherwise the providing list is looked at to
554 see if there is one one unique providing package if so it is returned.
555 Otherwise true is returned and the target package is set. The return
b2e465d6
AL
556 result indicates whether the node should be expandable
557
558 In Conjunction with the DepCache the value of Result may not be
559 super-good since the policy may have made it uninstallable. Using
560 AllTargets is better in this case. */
e841200b 561bool pkgCache::DepIterator::SmartTargetPkg(PkgIterator &Result) const
578bfd0a
AL
562{
563 Result = TargetPkg();
564
565 // No provides at all
566 if (Result->ProvidesList == 0)
567 return false;
568
569 // There is the Base package and the providing ones which is at least 2
570 if (Result->VersionList != 0)
571 return true;
572
573 /* We have to skip over indirect provisions of the package that
574 owns the dependency. For instance, if libc5-dev depends on the
575 virtual package libc-dev which is provided by libc5-dev and libc6-dev
576 we must ignore libc5-dev when considering the provides list. */
577 PrvIterator PStart = Result.ProvidesList();
f7f0d6c7 578 for (; PStart.end() != true && PStart.OwnerPkg() == ParentPkg(); ++PStart);
578bfd0a
AL
579
580 // Nothing but indirect self provides
581 if (PStart.end() == true)
582 return false;
583
584 // Check for single packages in the provides list
585 PrvIterator P = PStart;
f7f0d6c7 586 for (; P.end() != true; ++P)
578bfd0a
AL
587 {
588 // Skip over self provides
589 if (P.OwnerPkg() == ParentPkg())
590 continue;
591 if (PStart.OwnerPkg() != P.OwnerPkg())
592 break;
593 }
b2e465d6
AL
594
595 Result = PStart.OwnerPkg();
578bfd0a
AL
596
597 // Check for non dups
598 if (P.end() != true)
599 return true;
b2e465d6 600
578bfd0a
AL
601 return false;
602}
603 /*}}}*/
604// DepIterator::AllTargets - Returns the set of all possible targets /*{{{*/
605// ---------------------------------------------------------------------
b2e465d6 606/* This is a more useful version of TargetPkg() that follows versioned
578bfd0a 607 provides. It includes every possible package-version that could satisfy
fbfb2a7c
AL
608 the dependency. The last item in the list has a 0. The resulting pointer
609 must be delete [] 'd */
e841200b 610pkgCache::Version **pkgCache::DepIterator::AllTargets() const
578bfd0a
AL
611{
612 Version **Res = 0;
613 unsigned long Size =0;
614 while (1)
615 {
616 Version **End = Res;
617 PkgIterator DPkg = TargetPkg();
618
619 // Walk along the actual package providing versions
f7f0d6c7 620 for (VerIterator I = DPkg.VersionList(); I.end() == false; ++I)
578bfd0a 621 {
773e2c1f 622 if (Owner->VS->CheckDep(I.VerStr(),S->CompareOp,TargetVer()) == false)
578bfd0a
AL
623 continue;
624
359e46db 625 if (IsNegative() == true &&
f07b5628 626 ParentPkg() == I.ParentPkg())
578bfd0a
AL
627 continue;
628
629 Size++;
630 if (Res != 0)
631 *End++ = I;
632 }
633
634 // Follow all provides
f7f0d6c7 635 for (PrvIterator I = DPkg.ProvidesList(); I.end() == false; ++I)
578bfd0a 636 {
773e2c1f 637 if (Owner->VS->CheckDep(I.ProvideVersion(),S->CompareOp,TargetVer()) == false)
578bfd0a
AL
638 continue;
639
359e46db 640 if (IsNegative() == true &&
32d9baea 641 ParentPkg()->Group == I.OwnerPkg()->Group)
578bfd0a
AL
642 continue;
643
644 Size++;
645 if (Res != 0)
646 *End++ = I.OwnerVer();
647 }
648
649 // Do it again and write it into the array
650 if (Res == 0)
651 {
652 Res = new Version *[Size+1];
653 Size = 0;
654 }
655 else
656 {
657 *End = 0;
658 break;
659 }
660 }
661
662 return Res;
663}
664 /*}}}*/
43d017d6
AL
665// DepIterator::GlobOr - Compute an OR group /*{{{*/
666// ---------------------------------------------------------------------
667/* This Takes an iterator, iterates past the current dependency grouping
668 and returns Start and End so that so End is the final element
669 in the group, if End == Start then D is End++ and End is the
670 dependency D was pointing to. Use in loops to iterate sensibly. */
671void pkgCache::DepIterator::GlobOr(DepIterator &Start,DepIterator &End)
672{
673 // Compute a single dependency element (glob or)
674 Start = *this;
675 End = *this;
018f1533 676 for (bool LastOR = true; end() == false && LastOR == true;)
43d017d6 677 {
773e2c1f 678 LastOR = (S->CompareOp & pkgCache::Dep::Or) == pkgCache::Dep::Or;
018f1533 679 (*this)++;
43d017d6
AL
680 if (LastOR == true)
681 End = (*this);
682 }
683}
684 /*}}}*/
47f6d1b7
DK
685// ostream operator to handle string representation of a dependecy /*{{{*/
686// ---------------------------------------------------------------------
687/* */
8f3ba4e8 688std::ostream& operator<<(std::ostream& out, pkgCache::DepIterator D)
47f6d1b7
DK
689{
690 if (D.end() == true)
691 return out << "invalid dependency";
692
693 pkgCache::PkgIterator P = D.ParentPkg();
694 pkgCache::PkgIterator T = D.TargetPkg();
695
696 out << (P.end() ? "invalid pkg" : P.FullName(false)) << " " << D.DepType()
697 << " on ";
698 if (T.end() == true)
699 out << "invalid pkg";
700 else
701 out << T;
702
703 if (D->Version != 0)
704 out << " (" << D.CompType() << " " << D.TargetVer() << ")";
705
706 return out;
707}
708 /*}}}*/
578bfd0a
AL
709// VerIterator::CompareVer - Fast version compare for same pkgs /*{{{*/
710// ---------------------------------------------------------------------
711/* This just looks over the version list to see if B is listed before A. In
712 most cases this will return in under 4 checks, ver lists are short. */
713int pkgCache::VerIterator::CompareVer(const VerIterator &B) const
714{
715 // Check if they are equal
716 if (*this == B)
717 return 0;
718 if (end() == true)
719 return -1;
720 if (B.end() == true)
721 return 1;
722
723 /* Start at A and look for B. If B is found then A > B otherwise
724 B was before A so A < B */
725 VerIterator I = *this;
f7f0d6c7 726 for (;I.end() == false; ++I)
578bfd0a
AL
727 if (I == B)
728 return 1;
729 return -1;
730}
731 /*}}}*/
b518cca6
AL
732// VerIterator::Downloadable - Checks if the version is downloadable /*{{{*/
733// ---------------------------------------------------------------------
734/* */
735bool pkgCache::VerIterator::Downloadable() const
736{
737 VerFileIterator Files = FileList();
f7f0d6c7 738 for (; Files.end() == false; ++Files)
f07b5628 739 if ((Files.File()->Flags & pkgCache::Flag::NotSource) != pkgCache::Flag::NotSource)
b518cca6
AL
740 return true;
741 return false;
742}
743 /*}}}*/
3c124dde
AL
744// VerIterator::Automatic - Check if this version is 'automatic' /*{{{*/
745// ---------------------------------------------------------------------
746/* This checks to see if any of the versions files are not NotAutomatic.
747 True if this version is selectable for automatic installation. */
748bool pkgCache::VerIterator::Automatic() const
749{
750 VerFileIterator Files = FileList();
f7f0d6c7 751 for (; Files.end() == false; ++Files)
5ed56f93 752 // Do not check ButAutomaticUpgrades here as it is kind of automatic…
3c124dde
AL
753 if ((Files.File()->Flags & pkgCache::Flag::NotAutomatic) != pkgCache::Flag::NotAutomatic)
754 return true;
755 return false;
756}
757 /*}}}*/
758// VerIterator::NewestFile - Return the newest file version relation /*{{{*/
759// ---------------------------------------------------------------------
760/* This looks at the version numbers associated with all of the sources
761 this version is in and returns the highest.*/
762pkgCache::VerFileIterator pkgCache::VerIterator::NewestFile() const
763{
764 VerFileIterator Files = FileList();
765 VerFileIterator Highest = Files;
f7f0d6c7 766 for (; Files.end() == false; ++Files)
3c124dde 767 {
b2e465d6 768 if (Owner->VS->CmpReleaseVer(Files.File().Version(),Highest.File().Version()) > 0)
3c124dde
AL
769 Highest = Files;
770 }
771
772 return Highest;
773}
774 /*}}}*/
b2e465d6
AL
775// VerIterator::RelStr - Release description string /*{{{*/
776// ---------------------------------------------------------------------
777/* This describes the version from a release-centric manner. The output is a
778 list of Label:Version/Archive */
d4489d49 779string pkgCache::VerIterator::RelStr() const
b2e465d6
AL
780{
781 bool First = true;
782 string Res;
f7f0d6c7 783 for (pkgCache::VerFileIterator I = this->FileList(); I.end() == false; ++I)
b2e465d6
AL
784 {
785 // Do not print 'not source' entries'
786 pkgCache::PkgFileIterator File = I.File();
787 if ((File->Flags & pkgCache::Flag::NotSource) == pkgCache::Flag::NotSource)
788 continue;
789
790 // See if we have already printed this out..
791 bool Seen = false;
f7f0d6c7 792 for (pkgCache::VerFileIterator J = this->FileList(); I != J; ++J)
b2e465d6
AL
793 {
794 pkgCache::PkgFileIterator File2 = J.File();
795 if (File2->Label == 0 || File->Label == 0)
796 continue;
797
798 if (strcmp(File.Label(),File2.Label()) != 0)
799 continue;
800
801 if (File2->Version == File->Version)
802 {
803 Seen = true;
804 break;
805 }
10639577 806 if (File2->Version == 0 || File->Version == 0)
b2e465d6
AL
807 break;
808 if (strcmp(File.Version(),File2.Version()) == 0)
809 Seen = true;
810 }
811
812 if (Seen == true)
813 continue;
814
815 if (First == false)
816 Res += ", ";
817 else
818 First = false;
819
820 if (File->Label != 0)
821 Res = Res + File.Label() + ':';
822
823 if (File->Archive != 0)
824 {
825 if (File->Version == 0)
826 Res += File.Archive();
827 else
828 Res = Res + File.Version() + '/' + File.Archive();
829 }
830 else
831 {
832 // No release file, print the host name that this came from
833 if (File->Site == 0 || File.Site()[0] == 0)
834 Res += "localhost";
835 else
836 Res += File.Site();
837 }
5dd4c8b8 838 }
857e9c13 839 if (S->ParentPkg != 0)
5dd4c8b8 840 Res.append(" [").append(Arch()).append("]");
b2e465d6
AL
841 return Res;
842}
843 /*}}}*/
578bfd0a
AL
844// PkgFileIterator::IsOk - Checks if the cache is in sync with the file /*{{{*/
845// ---------------------------------------------------------------------
846/* This stats the file and compares its stats with the ones that were
847 stored during generation. Date checks should probably also be
848 included here. */
849bool pkgCache::PkgFileIterator::IsOk()
850{
851 struct stat Buf;
852 if (stat(FileName(),&Buf) != 0)
853 return false;
854
773e2c1f 855 if (Buf.st_size != (signed)S->Size || Buf.st_mtime != S->mtime)
578bfd0a
AL
856 return false;
857
858 return true;
859}
860 /*}}}*/
af87ab54
AL
861// PkgFileIterator::RelStr - Return the release string /*{{{*/
862// ---------------------------------------------------------------------
863/* */
864string pkgCache::PkgFileIterator::RelStr()
865{
866 string Res;
867 if (Version() != 0)
868 Res = Res + (Res.empty() == true?"v=":",v=") + Version();
869 if (Origin() != 0)
870 Res = Res + (Res.empty() == true?"o=":",o=") + Origin();
871 if (Archive() != 0)
872 Res = Res + (Res.empty() == true?"a=":",a=") + Archive();
efc487fb
DK
873 if (Codename() != 0)
874 Res = Res + (Res.empty() == true?"n=":",n=") + Codename();
af87ab54
AL
875 if (Label() != 0)
876 Res = Res + (Res.empty() == true?"l=":",l=") + Label();
877 if (Component() != 0)
878 Res = Res + (Res.empty() == true?"c=":",c=") + Component();
5dd4c8b8
DK
879 if (Architecture() != 0)
880 Res = Res + (Res.empty() == true?"b=":",b=") + Architecture();
af87ab54
AL
881 return Res;
882}
883 /*}}}*/
012b102a
MV
884// VerIterator::TranslatedDescription - Return the a DescIter for locale/*{{{*/
885// ---------------------------------------------------------------------
886/* return a DescIter for the current locale or the default if none is
887 * found
888 */
889pkgCache::DescIterator pkgCache::VerIterator::TranslatedDescription() const
890{
45df0ad2
DK
891 std::vector<string> const lang = APT::Configuration::getLanguages();
892 for (std::vector<string>::const_iterator l = lang.begin();
f7f0d6c7 893 l != lang.end(); ++l)
45df0ad2 894 {
4b625b95
DK
895 pkgCache::DescIterator Desc = DescriptionList();
896 for (; Desc.end() == false; ++Desc)
0e7c3313 897 if (*l == Desc.LanguageCode())
45df0ad2 898 break;
4b625b95 899 if (Desc.end() == true)
0e7c3313
DK
900 {
901 if (*l == "en")
902 {
903 Desc = DescriptionList();
904 for (; Desc.end() == false; ++Desc)
905 if (strcmp(Desc.LanguageCode(), "") == 0)
906 break;
907 if (Desc.end() == true)
908 continue;
909 }
910 else
911 continue;
912 }
45df0ad2
DK
913 return Desc;
914 }
4b625b95
DK
915 for (pkgCache::DescIterator Desc = DescriptionList();
916 Desc.end() == false; ++Desc)
917 if (strcmp(Desc.LanguageCode(), "") == 0)
918 return Desc;
45df0ad2 919 return DescriptionList();
012b102a
MV
920};
921
922 /*}}}*/