]>
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 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.
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/macros.h>
45 // Cache::Header::Header - Constructor /*{{{*/
46 // ---------------------------------------------------------------------
47 /* Simply initialize the header */
48 pkgCache::Header::Header()
50 Signature
= 0x98FE76DC;
52 /* Whenever the structures change the major version should be bumped,
53 whenever the generator changes the minor version should be bumped. */
58 HeaderSz
= sizeof(pkgCache::Header
);
59 GroupSz
= sizeof(pkgCache::Group
);
60 PackageSz
= sizeof(pkgCache::Package
);
61 PackageFileSz
= sizeof(pkgCache::PackageFile
);
62 VersionSz
= sizeof(pkgCache::Version
);
63 DescriptionSz
= sizeof(pkgCache::Description
);
64 DependencySz
= sizeof(pkgCache::Dependency
);
65 ProvidesSz
= sizeof(pkgCache::Provides
);
66 VerFileSz
= sizeof(pkgCache::VerFile
);
67 DescFileSz
= sizeof(pkgCache::DescFile
);
85 memset(PkgHashTable
,0,sizeof(PkgHashTable
));
86 memset(GrpHashTable
,0,sizeof(GrpHashTable
));
87 memset(Pools
,0,sizeof(Pools
));
92 // Cache::Header::CheckSizes - Check if the two headers have same *sz /*{{{*/
93 // ---------------------------------------------------------------------
95 bool pkgCache::Header::CheckSizes(Header
&Against
) const
97 if (HeaderSz
== Against
.HeaderSz
&&
98 GroupSz
== Against
.GroupSz
&&
99 PackageSz
== Against
.PackageSz
&&
100 PackageFileSz
== Against
.PackageFileSz
&&
101 VersionSz
== Against
.VersionSz
&&
102 DescriptionSz
== Against
.DescriptionSz
&&
103 DependencySz
== Against
.DependencySz
&&
104 VerFileSz
== Against
.VerFileSz
&&
105 DescFileSz
== Against
.DescFileSz
&&
106 ProvidesSz
== Against
.ProvidesSz
)
112 // Cache::pkgCache - Constructor /*{{{*/
113 // ---------------------------------------------------------------------
115 pkgCache::pkgCache(MMap
*Map
, bool DoMap
) : Map(*Map
)
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;
125 // Cache::ReMap - Reopen the cache file /*{{{*/
126 // ---------------------------------------------------------------------
127 /* If the file is already closed then this will open it open it. */
128 bool pkgCache::ReMap(bool const &Errorchecks
)
130 // Apply the typecasts.
131 HeaderP
= (Header
*)Map
.Data();
132 GrpP
= (Group
*)Map
.Data();
133 PkgP
= (Package
*)Map
.Data();
134 VerFileP
= (VerFile
*)Map
.Data();
135 DescFileP
= (DescFile
*)Map
.Data();
136 PkgFileP
= (PackageFile
*)Map
.Data();
137 VerP
= (Version
*)Map
.Data();
138 DescP
= (Description
*)Map
.Data();
139 ProvideP
= (Provides
*)Map
.Data();
140 DepP
= (Dependency
*)Map
.Data();
141 StringItemP
= (StringItem
*)Map
.Data();
142 StrP
= (char *)Map
.Data();
144 if (Errorchecks
== false)
147 if (Map
.Size() == 0 || HeaderP
== 0)
148 return _error
->Error(_("Empty package cache"));
152 if (HeaderP
->Signature
!= DefHeader
.Signature
||
153 HeaderP
->Dirty
== true)
154 return _error
->Error(_("The package cache file is corrupted"));
156 if (HeaderP
->MajorVersion
!= DefHeader
.MajorVersion
||
157 HeaderP
->MinorVersion
!= DefHeader
.MinorVersion
||
158 HeaderP
->CheckSizes(DefHeader
) == false)
159 return _error
->Error(_("The package cache file is an incompatible version"));
161 if (Map
.Size() < HeaderP
->CacheFileSize
)
162 return _error
->Error(_("The package cache file is corrupted, it is too small"));
165 if (HeaderP
->VerSysName
== 0 ||
166 (VS
= pkgVersioningSystem::GetVS(StrP
+ HeaderP
->VerSysName
)) == 0)
167 return _error
->Error(_("This APT does not support the versioning system '%s'"),StrP
+ HeaderP
->VerSysName
);
169 // Chcek the arhcitecture
170 if (HeaderP
->Architecture
== 0 ||
171 _config
->Find("APT::Architecture") != StrP
+ HeaderP
->Architecture
)
172 return _error
->Error(_("The package cache was built for a different architecture"));
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) */
181 unsigned long pkgCache::sHash(const string
&Str
) const
183 unsigned long Hash
= 0;
184 for (string::const_iterator I
= Str
.begin(); I
!= Str
.end(); ++I
)
185 Hash
= 5*Hash
+ tolower_ascii(*I
);
186 return Hash
% _count(HeaderP
->PkgHashTable
);
189 unsigned long pkgCache::sHash(const char *Str
) const
191 unsigned long Hash
= 0;
192 for (const char *I
= Str
; *I
!= 0; ++I
)
193 Hash
= 5*Hash
+ tolower_ascii(*I
);
194 return Hash
% _count(HeaderP
->PkgHashTable
);
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… */
203 pkgCache::PkgIterator
pkgCache::SingleArchFindPkg(const string
&Name
)
205 // Look at the hash bucket
206 Package
*Pkg
= PkgP
+ HeaderP
->PkgHashTable
[Hash(Name
)];
207 for (; Pkg
!= PkgP
; Pkg
= PkgP
+ Pkg
->NextPackage
)
209 if (Pkg
->Name
!= 0 && StrP
[Pkg
->Name
] == Name
[0] &&
210 stringcasecmp(Name
,StrP
+ Pkg
->Name
) == 0)
211 return PkgIterator(*this,Pkg
);
213 return PkgIterator(*this,0);
216 // Cache::FindPkg - Locate a package by name /*{{{*/
217 // ---------------------------------------------------------------------
218 /* Returns 0 on error, pointer to the package otherwise */
219 pkgCache::PkgIterator
pkgCache::FindPkg(const string
&Name
) {
220 size_t const found
= Name
.find(':');
221 if (found
== string::npos
)
223 if (MultiArchCache() == false)
224 return SingleArchFindPkg(Name
);
226 return FindPkg(Name
, "native");
228 string
const Arch
= Name
.substr(found
+1);
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) */
233 return FindPkg(Name
, "any");
234 return FindPkg(Name
.substr(0, found
), Arch
);
237 // Cache::FindPkg - Locate a package by name /*{{{*/
238 // ---------------------------------------------------------------------
239 /* Returns 0 on error, pointer to the package otherwise */
240 pkgCache::PkgIterator
pkgCache::FindPkg(const string
&Name
, string
const &Arch
) {
241 if (MultiArchCache() == false && Arch
!= "none") {
242 if (Arch
== "native" || Arch
== "all" || Arch
== "any" ||
243 Arch
== NativeArch())
244 return SingleArchFindPkg(Name
);
246 return PkgIterator(*this,0);
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);
255 return Grp
.FindPkg(Arch
);
258 // Cache::FindGrp - Locate a group by name /*{{{*/
259 // ---------------------------------------------------------------------
260 /* Returns End-Pointer on error, pointer to the group otherwise */
261 pkgCache::GrpIterator
pkgCache::FindGrp(const string
&Name
) {
262 if (unlikely(Name
.empty() == true))
263 return GrpIterator(*this,0);
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
);
273 return GrpIterator(*this,0);
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.. */
280 const char *pkgCache::CompTypeDeb(unsigned char Comp
)
282 const char *Ops
[] = {"","<=",">=","<<",">>","=","!="};
283 if ((unsigned)(Comp
& 0xF) < 7)
284 return Ops
[Comp
& 0xF];
288 // Cache::CompType - Return a string describing the compare type /*{{{*/
289 // ---------------------------------------------------------------------
290 /* This returns a string representation of the dependency compare
292 const char *pkgCache::CompType(unsigned char Comp
)
294 const char *Ops
[] = {"","<=",">=","<",">","=","!="};
295 if ((unsigned)(Comp
& 0xF) < 7)
296 return Ops
[Comp
& 0xF];
300 // Cache::DepType - Return a string describing the dep type /*{{{*/
301 // ---------------------------------------------------------------------
303 const char *pkgCache::DepType(unsigned char Type
)
305 const char *Types
[] = {"",_("Depends"),_("PreDepends"),_("Suggests"),
306 _("Recommends"),_("Conflicts"),_("Replaces"),
307 _("Obsoletes"),_("Breaks"), _("Enhances")};
308 if (Type
< sizeof(Types
)/sizeof(*Types
))
313 // Cache::Priority - Convert a priority value to a string /*{{{*/
314 // ---------------------------------------------------------------------
316 const char *pkgCache::Priority(unsigned char Prio
)
318 const char *Mapping
[] = {0,_("important"),_("required"),_("standard"),
319 _("optional"),_("extra")};
320 if (Prio
< _count(Mapping
))
321 return Mapping
[Prio
];
325 // GrpIterator::FindPkg - Locate a package by arch /*{{{*/
326 // ---------------------------------------------------------------------
327 /* Returns an End-Pointer on error, pointer to the package otherwise */
328 pkgCache::PkgIterator
pkgCache::GrpIterator::FindPkg(string Arch
) const {
329 if (unlikely(IsGood() == false || S
->FirstPackage
== 0))
330 return PkgIterator(*Owner
, 0);
332 /* If we accept any package we simply return the "first"
333 package in this group (the last one added). */
335 return PkgIterator(*Owner
, Owner
->PkgP
+ S
->FirstPackage
);
337 char const* const myArch
= Owner
->NativeArch();
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. */
341 if (Arch
== "native" || Arch
== myArch
|| Arch
== "all") {
342 pkgCache::Package
*Pkg
= Owner
->PkgP
+ S
->LastPackage
;
343 if (strcasecmp(myArch
, Owner
->StrP
+ Pkg
->Arch
) == 0)
344 return PkgIterator(*Owner
, Pkg
);
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
)
361 return PkgIterator(*Owner
, 0);
364 // GrpIterator::FindPreferredPkg - Locate the "best" package /*{{{*/
365 // ---------------------------------------------------------------------
366 /* Returns an End-Pointer on error, pointer to the package otherwise */
367 pkgCache::PkgIterator
pkgCache::GrpIterator::FindPreferredPkg(bool const &PreferNonVirtual
) const {
368 pkgCache::PkgIterator Pkg
= FindPkg("native");
369 if (Pkg
.end() == false && (PreferNonVirtual
== false || Pkg
->VersionList
!= 0))
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
) {
376 if (Pkg
.end() == false && (PreferNonVirtual
== false || Pkg
->VersionList
!= 0))
379 // packages without an architecture
380 Pkg
= FindPkg("none");
381 if (Pkg
.end() == false && (PreferNonVirtual
== false || Pkg
->VersionList
!= 0))
384 if (PreferNonVirtual
== true)
385 return FindPreferredPkg(false);
386 return PkgIterator(*Owner
, 0);
389 // GrpIterator::NextPkg - Locate the next package in the group /*{{{*/
390 // ---------------------------------------------------------------------
391 /* Returns an End-Pointer on error, pointer to the package otherwise.
392 We can't simply ++ to the next as the next package of the last will
393 be from a different group (with the same hash value) */
394 pkgCache::PkgIterator
pkgCache::GrpIterator::NextPkg(pkgCache::PkgIterator
const &LastPkg
) const {
395 if (unlikely(IsGood() == false || S
->FirstPackage
== 0 ||
396 LastPkg
.end() == true))
397 return PkgIterator(*Owner
, 0);
399 if (S
->LastPackage
== LastPkg
.Index())
400 return PkgIterator(*Owner
, 0);
402 return PkgIterator(*Owner
, Owner
->PkgP
+ LastPkg
->NextPackage
);
405 // GrpIterator::operator ++ - Postfix incr /*{{{*/
406 // ---------------------------------------------------------------------
407 /* This will advance to the next logical group in the hash table. */
408 void pkgCache::GrpIterator::operator ++(int)
410 // Follow the current links
411 if (S
!= Owner
->GrpP
)
412 S
= Owner
->GrpP
+ S
->Next
;
414 // Follow the hash table
415 while (S
== Owner
->GrpP
&& (HashIndex
+1) < (signed)_count(Owner
->HeaderP
->GrpHashTable
))
418 S
= Owner
->GrpP
+ Owner
->HeaderP
->GrpHashTable
[HashIndex
];
422 // PkgIterator::operator ++ - Postfix incr /*{{{*/
423 // ---------------------------------------------------------------------
424 /* This will advance to the next logical package in the hash table. */
425 void pkgCache::PkgIterator::operator ++(int)
427 // Follow the current links
428 if (S
!= Owner
->PkgP
)
429 S
= Owner
->PkgP
+ S
->NextPackage
;
431 // Follow the hash table
432 while (S
== Owner
->PkgP
&& (HashIndex
+1) < (signed)_count(Owner
->HeaderP
->PkgHashTable
))
435 S
= Owner
->PkgP
+ Owner
->HeaderP
->PkgHashTable
[HashIndex
];
439 // PkgIterator::State - Check the State of the package /*{{{*/
440 // ---------------------------------------------------------------------
441 /* By this we mean if it is either cleanly installed or cleanly removed. */
442 pkgCache::PkgIterator::OkState
pkgCache::PkgIterator::State() const
444 if (S
->InstState
== pkgCache::State::ReInstReq
||
445 S
->InstState
== pkgCache::State::HoldReInstReq
)
448 if (S
->CurrentState
== pkgCache::State::UnPacked
||
449 S
->CurrentState
== pkgCache::State::HalfConfigured
)
450 // we leave triggers alone complettely. dpkg deals with
451 // them in a hard-to-predict manner and if they get
452 // resolved by dpkg before apt run dpkg --configure on
453 // the TriggersPending package dpkg returns a error
454 //Pkg->CurrentState == pkgCache::State::TriggersAwaited
455 //Pkg->CurrentState == pkgCache::State::TriggersPending)
456 return NeedsConfigure
;
458 if (S
->CurrentState
== pkgCache::State::HalfInstalled
||
459 S
->InstState
!= pkgCache::State::Ok
)
465 // PkgIterator::CandVersion - Returns the candidate version string /*{{{*/
466 // ---------------------------------------------------------------------
467 /* Return string representing of the candidate version. */
469 pkgCache::PkgIterator::CandVersion() const
471 //TargetVer is empty, so don't use it.
472 VerIterator version
= pkgPolicy(Owner
).GetCandidateVer(*this);
473 if (version
.IsGood())
474 return version
.VerStr();
478 // PkgIterator::CurVersion - Returns the current version string /*{{{*/
479 // ---------------------------------------------------------------------
480 /* Return string representing of the current version. */
482 pkgCache::PkgIterator::CurVersion() const
484 VerIterator version
= CurrentVer();
485 if (version
.IsGood())
486 return CurrentVer().VerStr();
490 // ostream operator to handle string representation of a package /*{{{*/
491 // ---------------------------------------------------------------------
492 /* Output name < cur.rent.version -> candid.ate.version | new.est.version > (section)
493 Note that the characters <|>() are all literal above. Versions will be ommited
494 if they provide no new information (e.g. there is no newer version than candidate)
495 If no version and/or section can be found "none" is used. */
497 operator<<(std::ostream
& out
, pkgCache::PkgIterator Pkg
)
499 if (Pkg
.end() == true)
500 return out
<< "invalid package";
502 string current
= string(Pkg
.CurVersion() == 0 ? "none" : Pkg
.CurVersion());
503 string candidate
= string(Pkg
.CandVersion() == 0 ? "none" : Pkg
.CandVersion());
504 string newest
= string(Pkg
.VersionList().end() ? "none" : Pkg
.VersionList().VerStr());
506 out
<< Pkg
.Name() << " [ " << Pkg
.Arch() << " ] < " << current
;
507 if (current
!= candidate
)
508 out
<< " -> " << candidate
;
509 if ( newest
!= "none" && candidate
!= newest
)
510 out
<< " | " << newest
;
511 out
<< " > ( " << string(Pkg
.Section()==0?"none":Pkg
.Section()) << " )";
515 // PkgIterator::FullName - Returns Name and (maybe) Architecture /*{{{*/
516 // ---------------------------------------------------------------------
517 /* Returns a name:arch string */
518 std::string
pkgCache::PkgIterator::FullName(bool const &Pretty
) const
520 string fullname
= Name();
521 if (Pretty
== false ||
522 (strcmp(Arch(), "all") != 0 &&
523 strcmp(Owner
->NativeArch(), Arch()) != 0))
524 return fullname
.append(":").append(Arch());
528 // DepIterator::IsCritical - Returns true if the dep is important /*{{{*/
529 // ---------------------------------------------------------------------
530 /* Currently critical deps are defined as depends, predepends and
531 conflicts (including dpkg's Breaks fields). */
532 bool pkgCache::DepIterator::IsCritical() const
534 if (IsNegative() == true ||
535 S
->Type
== pkgCache::Dep::Depends
||
536 S
->Type
== pkgCache::Dep::PreDepends
)
541 // DepIterator::IsNegative - Returns true if the dep is a negative one /*{{{*/
542 // ---------------------------------------------------------------------
543 /* Some dependencies are positive like Depends and Recommends, others
544 are negative like Conflicts which can and should be handled differently */
545 bool pkgCache::DepIterator::IsNegative() const
547 return S
->Type
== Dep::DpkgBreaks
||
548 S
->Type
== Dep::Conflicts
||
549 S
->Type
== Dep::Obsoletes
;
552 // DepIterator::SmartTargetPkg - Resolve dep target pointers w/provides /*{{{*/
553 // ---------------------------------------------------------------------
554 /* This intellegently looks at dep target packages and tries to figure
555 out which package should be used. This is needed to nicely handle
556 provide mapping. If the target package has no other providing packages
557 then it returned. Otherwise the providing list is looked at to
558 see if there is one one unique providing package if so it is returned.
559 Otherwise true is returned and the target package is set. The return
560 result indicates whether the node should be expandable
562 In Conjunction with the DepCache the value of Result may not be
563 super-good since the policy may have made it uninstallable. Using
564 AllTargets is better in this case. */
565 bool pkgCache::DepIterator::SmartTargetPkg(PkgIterator
&Result
) const
567 Result
= TargetPkg();
569 // No provides at all
570 if (Result
->ProvidesList
== 0)
573 // There is the Base package and the providing ones which is at least 2
574 if (Result
->VersionList
!= 0)
577 /* We have to skip over indirect provisions of the package that
578 owns the dependency. For instance, if libc5-dev depends on the
579 virtual package libc-dev which is provided by libc5-dev and libc6-dev
580 we must ignore libc5-dev when considering the provides list. */
581 PrvIterator PStart
= Result
.ProvidesList();
582 for (; PStart
.end() != true && PStart
.OwnerPkg() == ParentPkg(); ++PStart
);
584 // Nothing but indirect self provides
585 if (PStart
.end() == true)
588 // Check for single packages in the provides list
589 PrvIterator P
= PStart
;
590 for (; P
.end() != true; ++P
)
592 // Skip over self provides
593 if (P
.OwnerPkg() == ParentPkg())
595 if (PStart
.OwnerPkg() != P
.OwnerPkg())
599 Result
= PStart
.OwnerPkg();
601 // Check for non dups
608 // DepIterator::AllTargets - Returns the set of all possible targets /*{{{*/
609 // ---------------------------------------------------------------------
610 /* This is a more useful version of TargetPkg() that follows versioned
611 provides. It includes every possible package-version that could satisfy
612 the dependency. The last item in the list has a 0. The resulting pointer
613 must be delete [] 'd */
614 pkgCache::Version
**pkgCache::DepIterator::AllTargets() const
617 unsigned long Size
=0;
621 PkgIterator DPkg
= TargetPkg();
623 // Walk along the actual package providing versions
624 for (VerIterator I
= DPkg
.VersionList(); I
.end() == false; ++I
)
626 if (IsIgnorable(I
.ParentPkg()) == true)
629 if (Owner
->VS
->CheckDep(I
.VerStr(),S
->CompareOp
,TargetVer()) == false)
637 // Follow all provides
638 for (PrvIterator I
= DPkg
.ProvidesList(); I
.end() == false; ++I
)
640 if (IsIgnorable(I
) == true)
643 if (Owner
->VS
->CheckDep(I
.ProvideVersion(),S
->CompareOp
,TargetVer()) == false)
648 *End
++ = I
.OwnerVer();
651 // Do it again and write it into the array
654 Res
= new Version
*[Size
+1];
667 // DepIterator::GlobOr - Compute an OR group /*{{{*/
668 // ---------------------------------------------------------------------
669 /* This Takes an iterator, iterates past the current dependency grouping
670 and returns Start and End so that so End is the final element
671 in the group, if End == Start then D is End++ and End is the
672 dependency D was pointing to. Use in loops to iterate sensibly. */
673 void pkgCache::DepIterator::GlobOr(DepIterator
&Start
,DepIterator
&End
)
675 // Compute a single dependency element (glob or)
678 for (bool LastOR
= true; end() == false && LastOR
== true;)
680 LastOR
= (S
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
;
687 // DepIterator::IsIgnorable - should this packag/providr be ignored? /*{{{*/
688 // ---------------------------------------------------------------------
689 /* Deps like self-conflicts should be ignored as well as implicit conflicts
690 on virtual packages. */
691 bool pkgCache::DepIterator::IsIgnorable(PkgIterator
const &Pkg
) const
693 if (ParentPkg() == TargetPkg())
698 bool pkgCache::DepIterator::IsIgnorable(PrvIterator
const &Prv
) const
700 if (IsNegative() == false)
703 PkgIterator
const Pkg
= ParentPkg();
704 /* Provides may never be applied against the same package (or group)
705 if it is a conflicts. See the comment above. */
706 if (Prv
.OwnerPkg()->Group
== Pkg
->Group
)
708 // Implicit group-conflicts should not be applied on providers of other groups
709 if (Pkg
->Group
== TargetPkg()->Group
&& Prv
.OwnerPkg()->Group
!= Pkg
->Group
)
715 // DepIterator::IsMultiArchImplicit - added by the cache generation /*{{{*/
716 // ---------------------------------------------------------------------
717 /* MultiArch can be translated to SingleArch for an resolver and we did so,
718 by adding dependencies to help the resolver understand the problem, but
719 sometimes it is needed to identify these to ignore them… */
720 bool pkgCache::DepIterator::IsMultiArchImplicit() const
722 if (ParentPkg()->Arch
!= TargetPkg()->Arch
&&
723 (S
->Type
== pkgCache::Dep::Replaces
||
724 S
->Type
== pkgCache::Dep::DpkgBreaks
||
725 S
->Type
== pkgCache::Dep::Conflicts
))
730 // ostream operator to handle string representation of a dependecy /*{{{*/
731 // ---------------------------------------------------------------------
733 std::ostream
& operator<<(std::ostream
& out
, pkgCache::DepIterator D
)
736 return out
<< "invalid dependency";
738 pkgCache::PkgIterator P
= D
.ParentPkg();
739 pkgCache::PkgIterator T
= D
.TargetPkg();
741 out
<< (P
.end() ? "invalid pkg" : P
.FullName(false)) << " " << D
.DepType()
744 out
<< "invalid pkg";
749 out
<< " (" << D
.CompType() << " " << D
.TargetVer() << ")";
754 // VerIterator::CompareVer - Fast version compare for same pkgs /*{{{*/
755 // ---------------------------------------------------------------------
756 /* This just looks over the version list to see if B is listed before A. In
757 most cases this will return in under 4 checks, ver lists are short. */
758 int pkgCache::VerIterator::CompareVer(const VerIterator
&B
) const
760 // Check if they are equal
768 /* Start at A and look for B. If B is found then A > B otherwise
769 B was before A so A < B */
770 VerIterator I
= *this;
771 for (;I
.end() == false; ++I
)
777 // VerIterator::Downloadable - Checks if the version is downloadable /*{{{*/
778 // ---------------------------------------------------------------------
780 bool pkgCache::VerIterator::Downloadable() const
782 VerFileIterator Files
= FileList();
783 for (; Files
.end() == false; ++Files
)
784 if ((Files
.File()->Flags
& pkgCache::Flag::NotSource
) != pkgCache::Flag::NotSource
)
789 // VerIterator::Automatic - Check if this version is 'automatic' /*{{{*/
790 // ---------------------------------------------------------------------
791 /* This checks to see if any of the versions files are not NotAutomatic.
792 True if this version is selectable for automatic installation. */
793 bool pkgCache::VerIterator::Automatic() const
795 VerFileIterator Files
= FileList();
796 for (; Files
.end() == false; ++Files
)
797 // Do not check ButAutomaticUpgrades here as it is kind of automatic…
798 if ((Files
.File()->Flags
& pkgCache::Flag::NotAutomatic
) != pkgCache::Flag::NotAutomatic
)
803 // VerIterator::NewestFile - Return the newest file version relation /*{{{*/
804 // ---------------------------------------------------------------------
805 /* This looks at the version numbers associated with all of the sources
806 this version is in and returns the highest.*/
807 pkgCache::VerFileIterator
pkgCache::VerIterator::NewestFile() const
809 VerFileIterator Files
= FileList();
810 VerFileIterator Highest
= Files
;
811 for (; Files
.end() == false; ++Files
)
813 if (Owner
->VS
->CmpReleaseVer(Files
.File().Version(),Highest
.File().Version()) > 0)
820 // VerIterator::RelStr - Release description string /*{{{*/
821 // ---------------------------------------------------------------------
822 /* This describes the version from a release-centric manner. The output is a
823 list of Label:Version/Archive */
824 string
pkgCache::VerIterator::RelStr() const
828 for (pkgCache::VerFileIterator I
= this->FileList(); I
.end() == false; ++I
)
830 // Do not print 'not source' entries'
831 pkgCache::PkgFileIterator File
= I
.File();
832 if ((File
->Flags
& pkgCache::Flag::NotSource
) == pkgCache::Flag::NotSource
)
835 // See if we have already printed this out..
837 for (pkgCache::VerFileIterator J
= this->FileList(); I
!= J
; ++J
)
839 pkgCache::PkgFileIterator File2
= J
.File();
840 if (File2
->Label
== 0 || File
->Label
== 0)
843 if (strcmp(File
.Label(),File2
.Label()) != 0)
846 if (File2
->Version
== File
->Version
)
851 if (File2
->Version
== 0 || File
->Version
== 0)
853 if (strcmp(File
.Version(),File2
.Version()) == 0)
865 if (File
->Label
!= 0)
866 Res
= Res
+ File
.Label() + ':';
868 if (File
->Archive
!= 0)
870 if (File
->Version
== 0)
871 Res
+= File
.Archive();
873 Res
= Res
+ File
.Version() + '/' + File
.Archive();
877 // No release file, print the host name that this came from
878 if (File
->Site
== 0 || File
.Site()[0] == 0)
884 if (S
->ParentPkg
!= 0)
885 Res
.append(" [").append(Arch()).append("]");
889 // PkgFileIterator::IsOk - Checks if the cache is in sync with the file /*{{{*/
890 // ---------------------------------------------------------------------
891 /* This stats the file and compares its stats with the ones that were
892 stored during generation. Date checks should probably also be
894 bool pkgCache::PkgFileIterator::IsOk()
897 if (stat(FileName(),&Buf
) != 0)
900 if (Buf
.st_size
!= (signed)S
->Size
|| Buf
.st_mtime
!= S
->mtime
)
906 // PkgFileIterator::RelStr - Return the release string /*{{{*/
907 // ---------------------------------------------------------------------
909 string
pkgCache::PkgFileIterator::RelStr()
913 Res
= Res
+ (Res
.empty() == true?"v=":",v=") + Version();
915 Res
= Res
+ (Res
.empty() == true?"o=":",o=") + Origin();
917 Res
= Res
+ (Res
.empty() == true?"a=":",a=") + Archive();
919 Res
= Res
+ (Res
.empty() == true?"n=":",n=") + Codename();
921 Res
= Res
+ (Res
.empty() == true?"l=":",l=") + Label();
922 if (Component() != 0)
923 Res
= Res
+ (Res
.empty() == true?"c=":",c=") + Component();
924 if (Architecture() != 0)
925 Res
= Res
+ (Res
.empty() == true?"b=":",b=") + Architecture();
929 // VerIterator::TranslatedDescription - Return the a DescIter for locale/*{{{*/
930 // ---------------------------------------------------------------------
931 /* return a DescIter for the current locale or the default if none is
934 pkgCache::DescIterator
pkgCache::VerIterator::TranslatedDescription() const
936 std::vector
<string
> const lang
= APT::Configuration::getLanguages();
937 for (std::vector
<string
>::const_iterator l
= lang
.begin();
938 l
!= lang
.end(); ++l
)
940 pkgCache::DescIterator Desc
= DescriptionList();
941 for (; Desc
.end() == false; ++Desc
)
942 if (*l
== Desc
.LanguageCode())
944 if (Desc
.end() == true)
948 Desc
= DescriptionList();
949 for (; Desc
.end() == false; ++Desc
)
950 if (strcmp(Desc
.LanguageCode(), "") == 0)
952 if (Desc
.end() == true)
960 for (pkgCache::DescIterator Desc
= DescriptionList();
961 Desc
.end() == false; ++Desc
)
962 if (strcmp(Desc
.LanguageCode(), "") == 0)
964 return DescriptionList();
968 // PrvIterator::IsMultiArchImplicit - added by the cache generation /*{{{*/
969 // ---------------------------------------------------------------------
970 /* MultiArch can be translated to SingleArch for an resolver and we did so,
971 by adding provides to help the resolver understand the problem, but
972 sometimes it is needed to identify these to ignore them… */
973 bool pkgCache::PrvIterator::IsMultiArchImplicit() const
975 pkgCache::PkgIterator
const Owner
= OwnerPkg();
976 pkgCache::PkgIterator
const Parent
= ParentPkg();
977 if (strcmp(Owner
.Arch(), Parent
.Arch()) != 0 || Owner
->Name
== Parent
->Name
)