]>
git.saurik.com Git - apt.git/blob - apt-pkg/pkgcache.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: pkgcache.cc,v 1.37 2003/02/10 01:40:58 doogie Exp $
4 /* ######################################################################
6 Package Cache - Accessor code for the cache
8 Please see doc/apt-pkg/cache.sgml for a more detailed description of
9 this format. Also be sure to keep that file up-to-date!!
11 This is the general utility functions for cache management. 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.
17 The main class provides for ways to get package indexes and some
18 general lookup functions to start the iterators.
20 ##################################################################### */
22 // Include Files /*{{{*/
25 #include <apt-pkg/pkgcache.h>
26 #include <apt-pkg/policy.h>
27 #include <apt-pkg/version.h>
28 #include <apt-pkg/error.h>
29 #include <apt-pkg/strutl.h>
30 #include <apt-pkg/configuration.h>
31 #include <apt-pkg/aptconfiguration.h>
32 #include <apt-pkg/mmap.h>
33 #include <apt-pkg/macros.h>
48 // Cache::Header::Header - Constructor /*{{{*/
49 // ---------------------------------------------------------------------
50 /* Simply initialize the header */
51 pkgCache::Header::Header()
53 Signature
= 0x98FE76DC;
55 /* Whenever the structures change the major version should be bumped,
56 whenever the generator changes the minor version should be bumped. */
61 HeaderSz
= sizeof(pkgCache::Header
);
62 GroupSz
= sizeof(pkgCache::Group
);
63 PackageSz
= sizeof(pkgCache::Package
);
64 PackageFileSz
= sizeof(pkgCache::PackageFile
);
65 VersionSz
= sizeof(pkgCache::Version
);
66 DescriptionSz
= sizeof(pkgCache::Description
);
67 DependencySz
= sizeof(pkgCache::Dependency
);
68 ProvidesSz
= sizeof(pkgCache::Provides
);
69 VerFileSz
= sizeof(pkgCache::VerFile
);
70 DescFileSz
= sizeof(pkgCache::DescFile
);
88 memset(PkgHashTable
,0,sizeof(PkgHashTable
));
89 memset(GrpHashTable
,0,sizeof(GrpHashTable
));
90 memset(Pools
,0,sizeof(Pools
));
95 // Cache::Header::CheckSizes - Check if the two headers have same *sz /*{{{*/
96 // ---------------------------------------------------------------------
98 bool pkgCache::Header::CheckSizes(Header
&Against
) const
100 if (HeaderSz
== Against
.HeaderSz
&&
101 GroupSz
== Against
.GroupSz
&&
102 PackageSz
== Against
.PackageSz
&&
103 PackageFileSz
== Against
.PackageFileSz
&&
104 VersionSz
== Against
.VersionSz
&&
105 DescriptionSz
== Against
.DescriptionSz
&&
106 DependencySz
== Against
.DependencySz
&&
107 VerFileSz
== Against
.VerFileSz
&&
108 DescFileSz
== Against
.DescFileSz
&&
109 ProvidesSz
== Against
.ProvidesSz
)
115 // Cache::pkgCache - Constructor /*{{{*/
116 // ---------------------------------------------------------------------
118 pkgCache::pkgCache(MMap
*Map
, bool DoMap
) : Map(*Map
)
120 // call getArchitectures() with cached=false to ensure that the
121 // architectures cache is re-evaulated. this is needed in cases
122 // when the APT::Architecture field changes between two cache creations
123 MultiArchEnabled
= APT::Configuration::getArchitectures(false).size() > 1;
128 // Cache::ReMap - Reopen the cache file /*{{{*/
129 // ---------------------------------------------------------------------
130 /* If the file is already closed then this will open it open it. */
131 bool pkgCache::ReMap(bool const &Errorchecks
)
133 // Apply the typecasts.
134 HeaderP
= (Header
*)Map
.Data();
135 GrpP
= (Group
*)Map
.Data();
136 PkgP
= (Package
*)Map
.Data();
137 VerFileP
= (VerFile
*)Map
.Data();
138 DescFileP
= (DescFile
*)Map
.Data();
139 PkgFileP
= (PackageFile
*)Map
.Data();
140 VerP
= (Version
*)Map
.Data();
141 DescP
= (Description
*)Map
.Data();
142 ProvideP
= (Provides
*)Map
.Data();
143 DepP
= (Dependency
*)Map
.Data();
144 StringItemP
= (StringItem
*)Map
.Data();
145 StrP
= (char *)Map
.Data();
147 if (Errorchecks
== false)
150 if (Map
.Size() == 0 || HeaderP
== 0)
151 return _error
->Error(_("Empty package cache"));
155 if (HeaderP
->Signature
!= DefHeader
.Signature
||
156 HeaderP
->Dirty
== true)
157 return _error
->Error(_("The package cache file is corrupted"));
159 if (HeaderP
->MajorVersion
!= DefHeader
.MajorVersion
||
160 HeaderP
->MinorVersion
!= DefHeader
.MinorVersion
||
161 HeaderP
->CheckSizes(DefHeader
) == false)
162 return _error
->Error(_("The package cache file is an incompatible version"));
164 if (Map
.Size() < HeaderP
->CacheFileSize
)
165 return _error
->Error(_("The package cache file is corrupted, it is too small"));
168 if (HeaderP
->VerSysName
== 0 ||
169 (VS
= pkgVersioningSystem::GetVS(StrP
+ HeaderP
->VerSysName
)) == 0)
170 return _error
->Error(_("This APT does not support the versioning system '%s'"),StrP
+ HeaderP
->VerSysName
);
172 // Chcek the arhcitecture
173 if (HeaderP
->Architecture
== 0 ||
174 _config
->Find("APT::Architecture") != StrP
+ HeaderP
->Architecture
)
175 return _error
->Error(_("The package cache was built for a different architecture"));
179 // Cache::Hash - Hash a string /*{{{*/
180 // ---------------------------------------------------------------------
181 /* This is used to generate the hash entries for the HashTable. With my
182 package list from bo this function gets 94% table usage on a 512 item
183 table (480 used items) */
184 unsigned long pkgCache::sHash(const string
&Str
) const
186 unsigned long Hash
= 0;
187 for (string::const_iterator I
= Str
.begin(); I
!= Str
.end(); ++I
)
188 Hash
= 41 * Hash
+ tolower_ascii(*I
);
189 return Hash
% _count(HeaderP
->PkgHashTable
);
192 unsigned long pkgCache::sHash(const char *Str
) const
194 unsigned long Hash
= tolower_ascii(*Str
);
195 for (const char *I
= Str
+ 1; *I
!= 0; ++I
)
196 Hash
= 41 * Hash
+ tolower_ascii(*I
);
197 return Hash
% _count(HeaderP
->PkgHashTable
);
200 // Cache::SingleArchFindPkg - Locate a package by name /*{{{*/
201 // ---------------------------------------------------------------------
202 /* Returns 0 on error, pointer to the package otherwise
203 The multiArch enabled methods will fallback to this one as it is (a bit)
204 faster for single arch environments and realworld is mostly singlearch… */
205 pkgCache::PkgIterator
pkgCache::SingleArchFindPkg(const string
&Name
)
207 // Look at the hash bucket
208 Package
*Pkg
= PkgP
+ HeaderP
->PkgHashTable
[Hash(Name
)];
209 for (; Pkg
!= PkgP
; Pkg
= PkgP
+ Pkg
->Next
)
211 if (unlikely(Pkg
->Name
== 0))
214 int const cmp
= strcasecmp(Name
.c_str(), StrP
+ Pkg
->Name
);
216 return PkgIterator(*this, Pkg
);
220 return PkgIterator(*this,0);
223 // Cache::FindPkg - Locate a package by name /*{{{*/
224 // ---------------------------------------------------------------------
225 /* Returns 0 on error, pointer to the package otherwise */
226 pkgCache::PkgIterator
pkgCache::FindPkg(const string
&Name
) {
227 size_t const found
= Name
.find(':');
228 if (found
== string::npos
)
230 if (MultiArchCache() == false)
231 return SingleArchFindPkg(Name
);
233 return FindPkg(Name
, "native");
235 string
const Arch
= Name
.substr(found
+1);
236 /* Beware: This is specialcased to handle pkg:any in dependencies as
237 these are linked to virtual pkg:any named packages with all archs.
238 If you want any arch from a given pkg, use FindPkg(pkg,arch) */
240 return FindPkg(Name
, "any");
241 return FindPkg(Name
.substr(0, found
), Arch
);
244 // Cache::FindPkg - Locate a package by name /*{{{*/
245 // ---------------------------------------------------------------------
246 /* Returns 0 on error, pointer to the package otherwise */
247 pkgCache::PkgIterator
pkgCache::FindPkg(const string
&Name
, string
const &Arch
) {
248 if (MultiArchCache() == false && Arch
!= "none") {
249 if (Arch
== "native" || Arch
== "all" || Arch
== "any" ||
250 Arch
== NativeArch())
251 return SingleArchFindPkg(Name
);
253 return PkgIterator(*this,0);
255 /* We make a detour via the GrpIterator here as
256 on a multi-arch environment a group is easier to
257 find than a package (less entries in the buckets) */
258 pkgCache::GrpIterator Grp
= FindGrp(Name
);
259 if (Grp
.end() == true)
260 return PkgIterator(*this,0);
262 return Grp
.FindPkg(Arch
);
265 // Cache::FindGrp - Locate a group by name /*{{{*/
266 // ---------------------------------------------------------------------
267 /* Returns End-Pointer on error, pointer to the group otherwise */
268 pkgCache::GrpIterator
pkgCache::FindGrp(const string
&Name
) {
269 if (unlikely(Name
.empty() == true))
270 return GrpIterator(*this,0);
272 // Look at the hash bucket for the group
273 Group
*Grp
= GrpP
+ HeaderP
->GrpHashTable
[sHash(Name
)];
274 for (; Grp
!= GrpP
; Grp
= GrpP
+ Grp
->Next
) {
275 if (unlikely(Grp
->Name
== 0))
278 int const cmp
= strcasecmp(Name
.c_str(), StrP
+ Grp
->Name
);
280 return GrpIterator(*this, Grp
);
285 return GrpIterator(*this,0);
288 // Cache::CompTypeDeb - Return a string describing the compare type /*{{{*/
289 // ---------------------------------------------------------------------
290 /* This returns a string representation of the dependency compare
291 type in the weird debian style.. */
292 const char *pkgCache::CompTypeDeb(unsigned char Comp
)
294 const char * const Ops
[] = {"","<=",">=","<<",">>","=","!="};
295 if (unlikely((unsigned)(Comp
& 0xF) >= sizeof(Ops
)/sizeof(Ops
[0])))
297 return Ops
[Comp
& 0xF];
300 // Cache::CompType - Return a string describing the compare type /*{{{*/
301 // ---------------------------------------------------------------------
302 /* This returns a string representation of the dependency compare
304 const char *pkgCache::CompType(unsigned char Comp
)
306 const char * const Ops
[] = {"","<=",">=","<",">","=","!="};
307 if (unlikely((unsigned)(Comp
& 0xF) >= sizeof(Ops
)/sizeof(Ops
[0])))
309 return Ops
[Comp
& 0xF];
312 // Cache::DepType - Return a string describing the dep type /*{{{*/
313 // ---------------------------------------------------------------------
315 const char *pkgCache::DepType(unsigned char Type
)
317 const char *Types
[] = {"",_("Depends"),_("PreDepends"),_("Suggests"),
318 _("Recommends"),_("Conflicts"),_("Replaces"),
319 _("Obsoletes"),_("Breaks"), _("Enhances")};
320 if (Type
< sizeof(Types
)/sizeof(*Types
))
325 // Cache::Priority - Convert a priority value to a string /*{{{*/
326 // ---------------------------------------------------------------------
328 const char *pkgCache::Priority(unsigned char Prio
)
330 const char *Mapping
[] = {0,_("important"),_("required"),_("standard"),
331 _("optional"),_("extra")};
332 if (Prio
< _count(Mapping
))
333 return Mapping
[Prio
];
337 // GrpIterator::FindPkg - Locate a package by arch /*{{{*/
338 // ---------------------------------------------------------------------
339 /* Returns an End-Pointer on error, pointer to the package otherwise */
340 pkgCache::PkgIterator
pkgCache::GrpIterator::FindPkg(string Arch
) const {
341 if (unlikely(IsGood() == false || S
->FirstPackage
== 0))
342 return PkgIterator(*Owner
, 0);
344 /* If we accept any package we simply return the "first"
345 package in this group (the last one added). */
347 return PkgIterator(*Owner
, Owner
->PkgP
+ S
->FirstPackage
);
349 char const* const myArch
= Owner
->NativeArch();
350 /* Most of the time the package for our native architecture is
351 the one we add at first to the cache, but this would be the
352 last one we check, so we do it now. */
353 if (Arch
== "native" || Arch
== myArch
|| Arch
== "all") {
354 pkgCache::Package
*Pkg
= Owner
->PkgP
+ S
->LastPackage
;
355 if (strcasecmp(myArch
, Owner
->StrP
+ Pkg
->Arch
) == 0)
356 return PkgIterator(*Owner
, Pkg
);
360 /* Iterate over the list to find the matching arch
361 unfortunately this list includes "package noise"
362 (= different packages with same calculated hash),
363 so we need to check the name also */
364 for (pkgCache::Package
*Pkg
= PackageList(); Pkg
!= Owner
->PkgP
;
365 Pkg
= Owner
->PkgP
+ Pkg
->Next
) {
366 if (S
->Name
== Pkg
->Name
&&
367 stringcasecmp(Arch
, Owner
->StrP
+ Pkg
->Arch
) == 0)
368 return PkgIterator(*Owner
, Pkg
);
369 if ((Owner
->PkgP
+ S
->LastPackage
) == Pkg
)
373 return PkgIterator(*Owner
, 0);
376 // GrpIterator::FindPreferredPkg - Locate the "best" package /*{{{*/
377 // ---------------------------------------------------------------------
378 /* Returns an End-Pointer on error, pointer to the package otherwise */
379 pkgCache::PkgIterator
pkgCache::GrpIterator::FindPreferredPkg(bool const &PreferNonVirtual
) const {
380 pkgCache::PkgIterator Pkg
= FindPkg("native");
381 if (Pkg
.end() == false && (PreferNonVirtual
== false || Pkg
->VersionList
!= 0))
384 std::vector
<std::string
> const archs
= APT::Configuration::getArchitectures();
385 for (std::vector
<std::string
>::const_iterator a
= archs
.begin();
386 a
!= archs
.end(); ++a
) {
388 if (Pkg
.end() == false && (PreferNonVirtual
== false || Pkg
->VersionList
!= 0))
391 // packages without an architecture
392 Pkg
= FindPkg("none");
393 if (Pkg
.end() == false && (PreferNonVirtual
== false || Pkg
->VersionList
!= 0))
396 if (PreferNonVirtual
== true)
397 return FindPreferredPkg(false);
398 return PkgIterator(*Owner
, 0);
401 // GrpIterator::NextPkg - Locate the next package in the group /*{{{*/
402 // ---------------------------------------------------------------------
403 /* Returns an End-Pointer on error, pointer to the package otherwise.
404 We can't simply ++ to the next as the next package of the last will
405 be from a different group (with the same hash value) */
406 pkgCache::PkgIterator
pkgCache::GrpIterator::NextPkg(pkgCache::PkgIterator
const &LastPkg
) const {
407 if (unlikely(IsGood() == false || S
->FirstPackage
== 0 ||
408 LastPkg
.end() == true))
409 return PkgIterator(*Owner
, 0);
411 if (S
->LastPackage
== LastPkg
.Index())
412 return PkgIterator(*Owner
, 0);
414 return PkgIterator(*Owner
, Owner
->PkgP
+ LastPkg
->Next
);
417 // GrpIterator::operator ++ - Postfix incr /*{{{*/
418 // ---------------------------------------------------------------------
419 /* This will advance to the next logical group in the hash table. */
420 void pkgCache::GrpIterator::operator ++(int)
422 // Follow the current links
423 if (S
!= Owner
->GrpP
)
424 S
= Owner
->GrpP
+ S
->Next
;
426 // Follow the hash table
427 while (S
== Owner
->GrpP
&& (HashIndex
+1) < (signed)_count(Owner
->HeaderP
->GrpHashTable
))
430 S
= Owner
->GrpP
+ Owner
->HeaderP
->GrpHashTable
[HashIndex
];
434 // PkgIterator::operator ++ - Postfix incr /*{{{*/
435 // ---------------------------------------------------------------------
436 /* This will advance to the next logical package in the hash table. */
437 void pkgCache::PkgIterator::operator ++(int)
439 // Follow the current links
440 if (S
!= Owner
->PkgP
)
441 S
= Owner
->PkgP
+ S
->Next
;
443 // Follow the hash table
444 while (S
== Owner
->PkgP
&& (HashIndex
+1) < (signed)_count(Owner
->HeaderP
->PkgHashTable
))
447 S
= Owner
->PkgP
+ Owner
->HeaderP
->PkgHashTable
[HashIndex
];
451 // PkgIterator::State - Check the State of the package /*{{{*/
452 // ---------------------------------------------------------------------
453 /* By this we mean if it is either cleanly installed or cleanly removed. */
454 pkgCache::PkgIterator::OkState
pkgCache::PkgIterator::State() const
456 if (S
->InstState
== pkgCache::State::ReInstReq
||
457 S
->InstState
== pkgCache::State::HoldReInstReq
)
460 if (S
->CurrentState
== pkgCache::State::UnPacked
||
461 S
->CurrentState
== pkgCache::State::HalfConfigured
)
462 // we leave triggers alone complettely. dpkg deals with
463 // them in a hard-to-predict manner and if they get
464 // resolved by dpkg before apt run dpkg --configure on
465 // the TriggersPending package dpkg returns a error
466 //Pkg->CurrentState == pkgCache::State::TriggersAwaited
467 //Pkg->CurrentState == pkgCache::State::TriggersPending)
468 return NeedsConfigure
;
470 if (S
->CurrentState
== pkgCache::State::HalfInstalled
||
471 S
->InstState
!= pkgCache::State::Ok
)
477 // PkgIterator::CandVersion - Returns the candidate version string /*{{{*/
478 // ---------------------------------------------------------------------
479 /* Return string representing of the candidate version. */
481 pkgCache::PkgIterator::CandVersion() const
483 //TargetVer is empty, so don't use it.
484 VerIterator version
= pkgPolicy(Owner
).GetCandidateVer(*this);
485 if (version
.IsGood())
486 return version
.VerStr();
490 // PkgIterator::CurVersion - Returns the current version string /*{{{*/
491 // ---------------------------------------------------------------------
492 /* Return string representing of the current version. */
494 pkgCache::PkgIterator::CurVersion() const
496 VerIterator version
= CurrentVer();
497 if (version
.IsGood())
498 return CurrentVer().VerStr();
502 // ostream operator to handle string representation of a package /*{{{*/
503 // ---------------------------------------------------------------------
504 /* Output name < cur.rent.version -> candid.ate.version | new.est.version > (section)
505 Note that the characters <|>() are all literal above. Versions will be omitted
506 if they provide no new information (e.g. there is no newer version than candidate)
507 If no version and/or section can be found "none" is used. */
509 operator<<(std::ostream
& out
, pkgCache::PkgIterator Pkg
)
511 if (Pkg
.end() == true)
512 return out
<< "invalid package";
514 string current
= string(Pkg
.CurVersion() == 0 ? "none" : Pkg
.CurVersion());
515 string candidate
= string(Pkg
.CandVersion() == 0 ? "none" : Pkg
.CandVersion());
516 string newest
= string(Pkg
.VersionList().end() ? "none" : Pkg
.VersionList().VerStr());
518 out
<< Pkg
.Name() << " [ " << Pkg
.Arch() << " ] < " << current
;
519 if (current
!= candidate
)
520 out
<< " -> " << candidate
;
521 if ( newest
!= "none" && candidate
!= newest
)
522 out
<< " | " << newest
;
523 out
<< " > ( " << string(Pkg
.Section()==0?"none":Pkg
.Section()) << " )";
527 // PkgIterator::FullName - Returns Name and (maybe) Architecture /*{{{*/
528 // ---------------------------------------------------------------------
529 /* Returns a name:arch string */
530 std::string
pkgCache::PkgIterator::FullName(bool const &Pretty
) const
532 string fullname
= Name();
533 if (Pretty
== false ||
534 (strcmp(Arch(), "all") != 0 &&
535 strcmp(Owner
->NativeArch(), Arch()) != 0))
536 return fullname
.append(":").append(Arch());
540 // DepIterator::IsCritical - Returns true if the dep is important /*{{{*/
541 // ---------------------------------------------------------------------
542 /* Currently critical deps are defined as depends, predepends and
543 conflicts (including dpkg's Breaks fields). */
544 bool pkgCache::DepIterator::IsCritical() const
546 if (IsNegative() == true ||
547 S
->Type
== pkgCache::Dep::Depends
||
548 S
->Type
== pkgCache::Dep::PreDepends
)
553 // DepIterator::IsNegative - Returns true if the dep is a negative one /*{{{*/
554 // ---------------------------------------------------------------------
555 /* Some dependencies are positive like Depends and Recommends, others
556 are negative like Conflicts which can and should be handled differently */
557 bool pkgCache::DepIterator::IsNegative() const
559 return S
->Type
== Dep::DpkgBreaks
||
560 S
->Type
== Dep::Conflicts
||
561 S
->Type
== Dep::Obsoletes
;
564 // DepIterator::SmartTargetPkg - Resolve dep target pointers w/provides /*{{{*/
565 // ---------------------------------------------------------------------
566 /* This intellegently looks at dep target packages and tries to figure
567 out which package should be used. This is needed to nicely handle
568 provide mapping. If the target package has no other providing packages
569 then it returned. Otherwise the providing list is looked at to
570 see if there is one one unique providing package if so it is returned.
571 Otherwise true is returned and the target package is set. The return
572 result indicates whether the node should be expandable
574 In Conjunction with the DepCache the value of Result may not be
575 super-good since the policy may have made it uninstallable. Using
576 AllTargets is better in this case. */
577 bool pkgCache::DepIterator::SmartTargetPkg(PkgIterator
&Result
) const
579 Result
= TargetPkg();
581 // No provides at all
582 if (Result
->ProvidesList
== 0)
585 // There is the Base package and the providing ones which is at least 2
586 if (Result
->VersionList
!= 0)
589 /* We have to skip over indirect provisions of the package that
590 owns the dependency. For instance, if libc5-dev depends on the
591 virtual package libc-dev which is provided by libc5-dev and libc6-dev
592 we must ignore libc5-dev when considering the provides list. */
593 PrvIterator PStart
= Result
.ProvidesList();
594 for (; PStart
.end() != true && PStart
.OwnerPkg() == ParentPkg(); ++PStart
);
596 // Nothing but indirect self provides
597 if (PStart
.end() == true)
600 // Check for single packages in the provides list
601 PrvIterator P
= PStart
;
602 for (; P
.end() != true; ++P
)
604 // Skip over self provides
605 if (P
.OwnerPkg() == ParentPkg())
607 if (PStart
.OwnerPkg() != P
.OwnerPkg())
611 Result
= PStart
.OwnerPkg();
613 // Check for non dups
620 // DepIterator::AllTargets - Returns the set of all possible targets /*{{{*/
621 // ---------------------------------------------------------------------
622 /* This is a more useful version of TargetPkg() that follows versioned
623 provides. It includes every possible package-version that could satisfy
624 the dependency. The last item in the list has a 0. The resulting pointer
625 must be delete [] 'd */
626 pkgCache::Version
**pkgCache::DepIterator::AllTargets() const
629 unsigned long Size
=0;
633 PkgIterator DPkg
= TargetPkg();
635 // Walk along the actual package providing versions
636 for (VerIterator I
= DPkg
.VersionList(); I
.end() == false; ++I
)
638 if (IsIgnorable(I
.ParentPkg()) == true)
640 if (IsSatisfied(I
) == false)
648 // Follow all provides
649 for (PrvIterator I
= DPkg
.ProvidesList(); I
.end() == false; ++I
)
651 if (IsIgnorable(I
) == true)
653 if (IsSatisfied(I
) == false)
658 *End
++ = I
.OwnerVer();
661 // Do it again and write it into the array
664 Res
= new Version
*[Size
+1];
677 // DepIterator::GlobOr - Compute an OR group /*{{{*/
678 // ---------------------------------------------------------------------
679 /* This Takes an iterator, iterates past the current dependency grouping
680 and returns Start and End so that so End is the final element
681 in the group, if End == Start then D is End++ and End is the
682 dependency D was pointing to. Use in loops to iterate sensibly. */
683 void pkgCache::DepIterator::GlobOr(DepIterator
&Start
,DepIterator
&End
)
685 // Compute a single dependency element (glob or)
688 for (bool LastOR
= true; end() == false && LastOR
== true;)
690 LastOR
= (S
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
;
697 // DepIterator::IsIgnorable - should this packag/providr be ignored? /*{{{*/
698 // ---------------------------------------------------------------------
699 /* Deps like self-conflicts should be ignored as well as implicit conflicts
700 on virtual packages. */
701 bool pkgCache::DepIterator::IsIgnorable(PkgIterator
const &/*Pkg*/) const
703 if (IsNegative() == false)
706 pkgCache::PkgIterator PP
= ParentPkg();
707 pkgCache::PkgIterator PT
= TargetPkg();
708 if (PP
->Group
!= PT
->Group
)
713 pkgCache::VerIterator PV
= ParentVer();
714 // ignore group-conflict on a M-A:same package - but not our implicit dependencies
715 // so that we can have M-A:same packages conflicting with their own real name
716 if ((PV
->MultiArch
& pkgCache::Version::Same
) == pkgCache::Version::Same
)
718 // Replaces: ${self}:other ( << ${binary:Version})
719 if (S
->Type
== pkgCache::Dep::Replaces
&& S
->CompareOp
== pkgCache::Dep::Less
&& strcmp(PV
.VerStr(), TargetVer()) == 0)
721 // Breaks: ${self}:other (!= ${binary:Version})
722 if (S
->Type
== pkgCache::Dep::DpkgBreaks
&& S
->CompareOp
== pkgCache::Dep::NotEquals
&& strcmp(PV
.VerStr(), TargetVer()) == 0)
729 bool pkgCache::DepIterator::IsIgnorable(PrvIterator
const &Prv
) const
731 if (IsNegative() == false)
734 PkgIterator
const Pkg
= ParentPkg();
735 /* Provides may never be applied against the same package (or group)
736 if it is a conflicts. See the comment above. */
737 if (Prv
.OwnerPkg()->Group
== Pkg
->Group
)
739 // Implicit group-conflicts should not be applied on providers of other groups
740 if (Pkg
->Group
== TargetPkg()->Group
&& Prv
.OwnerPkg()->Group
!= Pkg
->Group
)
746 // DepIterator::IsMultiArchImplicit - added by the cache generation /*{{{*/
747 // ---------------------------------------------------------------------
748 /* MultiArch can be translated to SingleArch for an resolver and we did so,
749 by adding dependencies to help the resolver understand the problem, but
750 sometimes it is needed to identify these to ignore them… */
751 bool pkgCache::DepIterator::IsMultiArchImplicit() const
753 if (ParentPkg()->Arch
!= TargetPkg()->Arch
&&
754 (S
->Type
== pkgCache::Dep::Replaces
||
755 S
->Type
== pkgCache::Dep::DpkgBreaks
||
756 S
->Type
== pkgCache::Dep::Conflicts
))
761 // DepIterator::IsSatisfied - check if a version satisfied the dependency /*{{{*/
762 bool pkgCache::DepIterator::IsSatisfied(VerIterator
const &Ver
) const
764 return Owner
->VS
->CheckDep(Ver
.VerStr(),S
->CompareOp
,TargetVer());
766 bool pkgCache::DepIterator::IsSatisfied(PrvIterator
const &Prv
) const
768 return Owner
->VS
->CheckDep(Prv
.ProvideVersion(),S
->CompareOp
,TargetVer());
771 // ostream operator to handle string representation of a dependecy /*{{{*/
772 // ---------------------------------------------------------------------
774 std::ostream
& operator<<(std::ostream
& out
, pkgCache::DepIterator D
)
777 return out
<< "invalid dependency";
779 pkgCache::PkgIterator P
= D
.ParentPkg();
780 pkgCache::PkgIterator T
= D
.TargetPkg();
782 out
<< (P
.end() ? "invalid pkg" : P
.FullName(false)) << " " << D
.DepType()
785 out
<< "invalid pkg";
790 out
<< " (" << D
.CompType() << " " << D
.TargetVer() << ")";
795 // VerIterator::CompareVer - Fast version compare for same pkgs /*{{{*/
796 // ---------------------------------------------------------------------
797 /* This just looks over the version list to see if B is listed before A. In
798 most cases this will return in under 4 checks, ver lists are short. */
799 int pkgCache::VerIterator::CompareVer(const VerIterator
&B
) const
801 // Check if they are equal
809 /* Start at A and look for B. If B is found then A > B otherwise
810 B was before A so A < B */
811 VerIterator I
= *this;
812 for (;I
.end() == false; ++I
)
818 // VerIterator::Downloadable - Checks if the version is downloadable /*{{{*/
819 // ---------------------------------------------------------------------
821 bool pkgCache::VerIterator::Downloadable() const
823 VerFileIterator Files
= FileList();
824 for (; Files
.end() == false; ++Files
)
825 if ((Files
.File()->Flags
& pkgCache::Flag::NotSource
) != pkgCache::Flag::NotSource
)
830 // VerIterator::Automatic - Check if this version is 'automatic' /*{{{*/
831 // ---------------------------------------------------------------------
832 /* This checks to see if any of the versions files are not NotAutomatic.
833 True if this version is selectable for automatic installation. */
834 bool pkgCache::VerIterator::Automatic() const
836 VerFileIterator Files
= FileList();
837 for (; Files
.end() == false; ++Files
)
838 // Do not check ButAutomaticUpgrades here as it is kind of automatic…
839 if ((Files
.File()->Flags
& pkgCache::Flag::NotAutomatic
) != pkgCache::Flag::NotAutomatic
)
844 // VerIterator::NewestFile - Return the newest file version relation /*{{{*/
845 // ---------------------------------------------------------------------
846 /* This looks at the version numbers associated with all of the sources
847 this version is in and returns the highest.*/
848 pkgCache::VerFileIterator
pkgCache::VerIterator::NewestFile() const
850 VerFileIterator Files
= FileList();
851 VerFileIterator Highest
= Files
;
852 for (; Files
.end() == false; ++Files
)
854 if (Owner
->VS
->CmpReleaseVer(Files
.File().Version(),Highest
.File().Version()) > 0)
861 // VerIterator::RelStr - Release description string /*{{{*/
862 // ---------------------------------------------------------------------
863 /* This describes the version from a release-centric manner. The output is a
864 list of Label:Version/Archive */
865 string
pkgCache::VerIterator::RelStr() const
869 for (pkgCache::VerFileIterator I
= this->FileList(); I
.end() == false; ++I
)
871 // Do not print 'not source' entries'
872 pkgCache::PkgFileIterator File
= I
.File();
873 if ((File
->Flags
& pkgCache::Flag::NotSource
) == pkgCache::Flag::NotSource
)
876 // See if we have already printed this out..
878 for (pkgCache::VerFileIterator J
= this->FileList(); I
!= J
; ++J
)
880 pkgCache::PkgFileIterator File2
= J
.File();
881 if (File2
->Label
== 0 || File
->Label
== 0)
884 if (strcmp(File
.Label(),File2
.Label()) != 0)
887 if (File2
->Version
== File
->Version
)
892 if (File2
->Version
== 0 || File
->Version
== 0)
894 if (strcmp(File
.Version(),File2
.Version()) == 0)
906 if (File
->Label
!= 0)
907 Res
= Res
+ File
.Label() + ':';
909 if (File
->Archive
!= 0)
911 if (File
->Version
== 0)
912 Res
+= File
.Archive();
914 Res
= Res
+ File
.Version() + '/' + File
.Archive();
918 // No release file, print the host name that this came from
919 if (File
->Site
== 0 || File
.Site()[0] == 0)
925 if (S
->ParentPkg
!= 0)
926 Res
.append(" [").append(Arch()).append("]");
930 // VerIterator::MultiArchType - string representing MultiArch flag /*{{{*/
931 const char * pkgCache::VerIterator::MultiArchType() const
933 if ((S
->MultiArch
& pkgCache::Version::Same
) == pkgCache::Version::Same
)
935 else if ((S
->MultiArch
& pkgCache::Version::Foreign
) == pkgCache::Version::Foreign
)
937 else if ((S
->MultiArch
& pkgCache::Version::Allowed
) == pkgCache::Version::Allowed
)
942 // PkgFileIterator::IsOk - Checks if the cache is in sync with the file /*{{{*/
943 // ---------------------------------------------------------------------
944 /* This stats the file and compares its stats with the ones that were
945 stored during generation. Date checks should probably also be
947 bool pkgCache::PkgFileIterator::IsOk()
950 if (stat(FileName(),&Buf
) != 0)
953 if (Buf
.st_size
!= (signed)S
->Size
|| Buf
.st_mtime
!= S
->mtime
)
959 // PkgFileIterator::RelStr - Return the release string /*{{{*/
960 // ---------------------------------------------------------------------
962 string
pkgCache::PkgFileIterator::RelStr()
966 Res
= Res
+ (Res
.empty() == true?"v=":",v=") + Version();
968 Res
= Res
+ (Res
.empty() == true?"o=":",o=") + Origin();
970 Res
= Res
+ (Res
.empty() == true?"a=":",a=") + Archive();
972 Res
= Res
+ (Res
.empty() == true?"n=":",n=") + Codename();
974 Res
= Res
+ (Res
.empty() == true?"l=":",l=") + Label();
975 if (Component() != 0)
976 Res
= Res
+ (Res
.empty() == true?"c=":",c=") + Component();
977 if (Architecture() != 0)
978 Res
= Res
+ (Res
.empty() == true?"b=":",b=") + Architecture();
982 // VerIterator::TranslatedDescription - Return the a DescIter for locale/*{{{*/
983 // ---------------------------------------------------------------------
984 /* return a DescIter for the current locale or the default if none is
987 pkgCache::DescIterator
pkgCache::VerIterator::TranslatedDescription() const
989 std::vector
<string
> const lang
= APT::Configuration::getLanguages();
990 for (std::vector
<string
>::const_iterator l
= lang
.begin();
991 l
!= lang
.end(); ++l
)
993 pkgCache::DescIterator Desc
= DescriptionList();
994 for (; Desc
.end() == false; ++Desc
)
995 if (*l
== Desc
.LanguageCode())
997 if (Desc
.end() == true)
1001 Desc
= DescriptionList();
1002 for (; Desc
.end() == false; ++Desc
)
1003 if (strcmp(Desc
.LanguageCode(), "") == 0)
1005 if (Desc
.end() == true)
1013 for (pkgCache::DescIterator Desc
= DescriptionList();
1014 Desc
.end() == false; ++Desc
)
1015 if (strcmp(Desc
.LanguageCode(), "") == 0)
1017 return DescriptionList();
1021 // PrvIterator::IsMultiArchImplicit - added by the cache generation /*{{{*/
1022 // ---------------------------------------------------------------------
1023 /* MultiArch can be translated to SingleArch for an resolver and we did so,
1024 by adding provides to help the resolver understand the problem, but
1025 sometimes it is needed to identify these to ignore them… */
1026 bool pkgCache::PrvIterator::IsMultiArchImplicit() const
1028 pkgCache::PkgIterator
const Owner
= OwnerPkg();
1029 pkgCache::PkgIterator
const Parent
= ParentPkg();
1030 if (strcmp(Owner
.Arch(), Parent
.Arch()) != 0 || Owner
->Name
== Parent
->Name
)