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 using APT::StringView
;
51 // Cache::Header::Header - Constructor /*{{{*/
52 // ---------------------------------------------------------------------
53 /* Simply initialize the header */
54 pkgCache::Header::Header()
56 #define APT_HEADER_SET(X,Y) X = Y; static_assert(std::numeric_limits<decltype(X)>::max() > Y, "Size violation detected in pkgCache::Header")
57 APT_HEADER_SET(Signature
, 0x98FE76DC);
59 /* Whenever the structures change the major version should be bumped,
60 whenever the generator changes the minor version should be bumped. */
61 APT_HEADER_SET(MajorVersion
, 10);
62 APT_HEADER_SET(MinorVersion
, 5);
63 APT_HEADER_SET(Dirty
, false);
65 APT_HEADER_SET(HeaderSz
, sizeof(pkgCache::Header
));
66 APT_HEADER_SET(GroupSz
, sizeof(pkgCache::Group
));
67 APT_HEADER_SET(PackageSz
, sizeof(pkgCache::Package
));
68 APT_HEADER_SET(ReleaseFileSz
, sizeof(pkgCache::ReleaseFile
));
69 APT_HEADER_SET(PackageFileSz
, sizeof(pkgCache::PackageFile
));
70 APT_HEADER_SET(VersionSz
, sizeof(pkgCache::Version
));
71 APT_HEADER_SET(DescriptionSz
, sizeof(pkgCache::Description
));
72 APT_HEADER_SET(DependencySz
, sizeof(pkgCache::Dependency
));
73 APT_HEADER_SET(DependencyDataSz
, sizeof(pkgCache::DependencyData
));
74 APT_HEADER_SET(ProvidesSz
, sizeof(pkgCache::Provides
));
75 APT_HEADER_SET(VerFileSz
, sizeof(pkgCache::VerFile
));
76 APT_HEADER_SET(DescFileSz
, sizeof(pkgCache::DescFile
));
98 SetHashTableSize(_config
->FindI("APT::Cache-HashTableSize", 50503));
99 memset(Pools
,0,sizeof(Pools
));
104 // Cache::Header::CheckSizes - Check if the two headers have same *sz /*{{{*/
105 // ---------------------------------------------------------------------
107 bool pkgCache::Header::CheckSizes(Header
&Against
) const
109 if (HeaderSz
== Against
.HeaderSz
&&
110 GroupSz
== Against
.GroupSz
&&
111 PackageSz
== Against
.PackageSz
&&
112 ReleaseFileSz
== Against
.ReleaseFileSz
&&
113 PackageFileSz
== Against
.PackageFileSz
&&
114 VersionSz
== Against
.VersionSz
&&
115 DescriptionSz
== Against
.DescriptionSz
&&
116 DependencySz
== Against
.DependencySz
&&
117 DependencyDataSz
== Against
.DependencyDataSz
&&
118 VerFileSz
== Against
.VerFileSz
&&
119 DescFileSz
== Against
.DescFileSz
&&
120 ProvidesSz
== Against
.ProvidesSz
)
126 // Cache::pkgCache - Constructor /*{{{*/
127 // ---------------------------------------------------------------------
129 APT_IGNORE_DEPRECATED_PUSH
130 pkgCache::pkgCache(MMap
*Map
, bool DoMap
) : Map(*Map
), d(NULL
)
132 // call getArchitectures() with cached=false to ensure that the
133 // architectures cache is re-evaulated. this is needed in cases
134 // when the APT::Architecture field changes between two cache creations
135 MultiArchEnabled
= APT::Configuration::getArchitectures(false).size() > 1;
139 APT_IGNORE_DEPRECATED_POP
141 // Cache::ReMap - Reopen the cache file /*{{{*/
142 // ---------------------------------------------------------------------
143 /* If the file is already closed then this will open it open it. */
144 bool pkgCache::ReMap(bool const &Errorchecks
)
146 // Apply the typecasts.
147 HeaderP
= (Header
*)Map
.Data();
148 GrpP
= (Group
*)Map
.Data();
149 PkgP
= (Package
*)Map
.Data();
150 VerFileP
= (VerFile
*)Map
.Data();
151 DescFileP
= (DescFile
*)Map
.Data();
152 RlsFileP
= (ReleaseFile
*)Map
.Data();
153 PkgFileP
= (PackageFile
*)Map
.Data();
154 VerP
= (Version
*)Map
.Data();
155 DescP
= (Description
*)Map
.Data();
156 ProvideP
= (Provides
*)Map
.Data();
157 DepP
= (Dependency
*)Map
.Data();
158 DepDataP
= (DependencyData
*)Map
.Data();
159 StrP
= (char *)Map
.Data();
161 if (Errorchecks
== false)
164 if (Map
.Size() == 0 || HeaderP
== 0)
165 return _error
->Error(_("Empty package cache"));
169 if (HeaderP
->Signature
!= DefHeader
.Signature
||
170 HeaderP
->Dirty
== true)
171 return _error
->Error(_("The package cache file is corrupted"));
173 if (HeaderP
->MajorVersion
!= DefHeader
.MajorVersion
||
174 HeaderP
->MinorVersion
!= DefHeader
.MinorVersion
||
175 HeaderP
->CheckSizes(DefHeader
) == false)
176 return _error
->Error(_("The package cache file is an incompatible version"));
178 if (HeaderP
->VerSysName
== 0 || HeaderP
->Architecture
== 0 || HeaderP
->GetArchitectures() == 0)
179 return _error
->Error(_("The package cache file is corrupted"));
182 if ((VS
= pkgVersioningSystem::GetVS(StrP
+ HeaderP
->VerSysName
)) == 0)
183 return _error
->Error(_("This APT does not support the versioning system '%s'"),StrP
+ HeaderP
->VerSysName
);
185 // Check the architecture
186 std::vector
<std::string
> archs
= APT::Configuration::getArchitectures();
187 std::vector
<std::string
>::const_iterator a
= archs
.begin();
188 std::string list
= *a
;
189 for (++a
; a
!= archs
.end(); ++a
)
190 list
.append(",").append(*a
);
191 if (_config
->Find("APT::Architecture") != StrP
+ HeaderP
->Architecture
||
192 list
!= StrP
+ HeaderP
->GetArchitectures())
193 return _error
->Error(_("The package cache was built for different architectures: %s vs %s"), StrP
+ HeaderP
->GetArchitectures(), list
.c_str());
196 auto hash
= CacheHash();
197 if (_config
->FindB("Debug::pkgCacheGen", false))
198 std::clog
<< "Opened cache with hash " << hash
<< ", expecting " << HeaderP
->CacheFileSize
<< "\n";
199 if (hash
!= HeaderP
->CacheFileSize
)
200 return _error
->Error(_("The package cache file is corrupted, it has the wrong hash"));
205 // Cache::Hash - Hash a string /*{{{*/
206 // ---------------------------------------------------------------------
207 /* This is used to generate the hash entries for the HashTable. With my
208 package list from bo this function gets 94% table usage on a 512 item
209 table (480 used items) */
210 map_id_t
pkgCache::sHash(StringView Str
) const
212 uint32_t Hash
= 5381;
213 for (auto I
= Str
.begin(); I
!= Str
.end(); ++I
)
214 Hash
= 33 * Hash
+ tolower_ascii(*I
);
215 return Hash
% HeaderP
->GetHashTableSize();
217 map_id_t
pkgCache::sHash(const string
&Str
) const
219 uint32_t Hash
= 5381;
220 for (string::const_iterator I
= Str
.begin(); I
!= Str
.end(); ++I
)
221 Hash
= 33 * Hash
+ tolower_ascii((signed char)*I
);
222 return Hash
% HeaderP
->GetHashTableSize();
225 map_id_t
pkgCache::sHash(const char *Str
) const
227 uint32_t Hash
= 5381;
228 for (const char *I
= Str
; *I
!= 0; ++I
)
229 Hash
= 33 * Hash
+ tolower_ascii((signed char)*I
);
230 return Hash
% HeaderP
->GetHashTableSize();
233 uint32_t pkgCache::CacheHash()
235 pkgCache::Header header
= {};
236 uLong adler
= adler32(0L, Z_NULL
, 0);
238 if (Map
.Size() < sizeof(header
))
240 memcpy(&header
, GetMap().Data(), sizeof(header
));
242 header
.Dirty
= false;
243 header
.CacheFileSize
= 0;
245 adler
= adler32(adler
,
246 reinterpret_cast<const unsigned char *>(&header
),
249 if (Map
.Size() > sizeof(header
)) {
250 adler
= adler32(adler
,
251 static_cast<const unsigned char *>(GetMap().Data()) + sizeof(header
),
252 GetMap().Size() - sizeof(header
));
258 // Cache::FindPkg - Locate a package by name /*{{{*/
259 // ---------------------------------------------------------------------
260 /* Returns 0 on error, pointer to the package otherwise */
261 pkgCache::PkgIterator
pkgCache::FindPkg(const string
&Name
) {
262 return FindPkg(StringView(Name
));
265 pkgCache::PkgIterator
pkgCache::FindPkg(StringView Name
) {
266 auto const found
= Name
.rfind(':');
267 if (found
== string::npos
)
268 return FindPkg(Name
, "native");
269 auto const Arch
= Name
.substr(found
+1);
270 /* Beware: This is specialcased to handle pkg:any in dependencies
271 as these are linked to virtual pkg:any named packages.
272 If you want any arch from a pkg, use FindPkg(pkg,"any") */
274 return FindPkg(Name
, "any");
275 return FindPkg(Name
.substr(0, found
), Arch
);
278 // Cache::FindPkg - Locate a package by name /*{{{*/
279 // ---------------------------------------------------------------------
280 /* Returns 0 on error, pointer to the package otherwise */
281 pkgCache::PkgIterator
pkgCache::FindPkg(const string
&Name
, string
const &Arch
) {
282 return FindPkg(StringView(Name
), StringView(Arch
));
285 pkgCache::PkgIterator
pkgCache::FindPkg(StringView Name
, StringView Arch
) {
286 /* We make a detour via the GrpIterator here as
287 on a multi-arch environment a group is easier to
288 find than a package (less entries in the buckets) */
289 pkgCache::GrpIterator Grp
= FindGrp(Name
);
290 if (Grp
.end() == true)
291 return PkgIterator(*this,0);
293 return Grp
.FindPkg(Arch
);
296 // Cache::FindGrp - Locate a group by name /*{{{*/
297 // ---------------------------------------------------------------------
298 /* Returns End-Pointer on error, pointer to the group otherwise */
299 pkgCache::GrpIterator
pkgCache::FindGrp(const string
&Name
) {
300 return FindGrp(StringView(Name
));
303 pkgCache::GrpIterator
pkgCache::FindGrp(StringView Name
) {
304 if (unlikely(Name
.empty() == true))
305 return GrpIterator(*this,0);
307 // Look at the hash bucket for the group
308 Group
*Grp
= GrpP
+ HeaderP
->GrpHashTableP()[sHash(Name
)];
309 for (; Grp
!= GrpP
; Grp
= GrpP
+ Grp
->Next
) {
310 int const cmp
= Name
.compare(ViewString(Grp
->Name
));
312 return GrpIterator(*this, Grp
);
317 return GrpIterator(*this,0);
320 // Cache::CompTypeDeb - Return a string describing the compare type /*{{{*/
321 // ---------------------------------------------------------------------
322 /* This returns a string representation of the dependency compare
323 type in the weird debian style.. */
324 const char *pkgCache::CompTypeDeb(unsigned char Comp
)
326 const char * const Ops
[] = {"","<=",">=","<<",">>","=","!="};
327 if (unlikely((unsigned)(Comp
& 0xF) >= sizeof(Ops
)/sizeof(Ops
[0])))
329 return Ops
[Comp
& 0xF];
332 // Cache::CompType - Return a string describing the compare type /*{{{*/
333 // ---------------------------------------------------------------------
334 /* This returns a string representation of the dependency compare
336 const char *pkgCache::CompType(unsigned char Comp
)
338 const char * const Ops
[] = {"","<=",">=","<",">","=","!="};
339 if (unlikely((unsigned)(Comp
& 0xF) >= sizeof(Ops
)/sizeof(Ops
[0])))
341 return Ops
[Comp
& 0xF];
344 // Cache::DepType - Return a string describing the dep type /*{{{*/
345 // ---------------------------------------------------------------------
347 const char *pkgCache::DepType(unsigned char Type
)
349 const char *Types
[] = {"",_("Depends"),_("PreDepends"),_("Suggests"),
350 _("Recommends"),_("Conflicts"),_("Replaces"),
351 _("Obsoletes"),_("Breaks"), _("Enhances")};
352 if (Type
< sizeof(Types
)/sizeof(*Types
))
357 // Cache::Priority - Convert a priority value to a string /*{{{*/
358 // ---------------------------------------------------------------------
360 const char *pkgCache::Priority(unsigned char Prio
)
362 const char *Mapping
[] = {0,_("required"),_("important"),_("standard"),
363 _("optional"),_("extra")};
364 if (Prio
< _count(Mapping
))
365 return Mapping
[Prio
];
369 // GrpIterator::FindPkg - Locate a package by arch /*{{{*/
370 // ---------------------------------------------------------------------
371 /* Returns an End-Pointer on error, pointer to the package otherwise */
372 pkgCache::PkgIterator
pkgCache::GrpIterator::FindPkg(string Arch
) const {
373 return FindPkg(StringView(Arch
));
375 pkgCache::PkgIterator
pkgCache::GrpIterator::FindPkg(const char *Arch
) const {
376 return FindPkg(StringView(Arch
));
378 pkgCache::PkgIterator
pkgCache::GrpIterator::FindPkg(StringView Arch
) const {
379 if (unlikely(IsGood() == false || S
->FirstPackage
== 0))
380 return PkgIterator(*Owner
, 0);
382 /* If we accept any package we simply return the "first"
383 package in this group */
385 return PkgIterator(*Owner
, Owner
->PkgP
+ S
->FirstPackage
);
386 if (Arch
== "native" || Arch
== "all")
387 Arch
= Owner
->NativeArch();
389 // Iterate over the list to find the matching arch
390 for (pkgCache::Package
*Pkg
= PackageList(); Pkg
!= Owner
->PkgP
;
391 Pkg
= Owner
->PkgP
+ Pkg
->NextPackage
) {
392 if (Arch
== Owner
->ViewString(Pkg
->Arch
))
393 return PkgIterator(*Owner
, Pkg
);
394 if ((Owner
->PkgP
+ S
->LastPackage
) == Pkg
)
398 return PkgIterator(*Owner
, 0);
401 // GrpIterator::FindPreferredPkg - Locate the "best" package /*{{{*/
402 // ---------------------------------------------------------------------
403 /* Returns an End-Pointer on error, pointer to the package otherwise */
404 pkgCache::PkgIterator
pkgCache::GrpIterator::FindPreferredPkg(bool const &PreferNonVirtual
) const {
405 pkgCache::PkgIterator Pkg
= FindPkg(StringView("native", 6));
406 if (Pkg
.end() == false && (PreferNonVirtual
== false || Pkg
->VersionList
!= 0))
409 std::vector
<std::string
> const archs
= APT::Configuration::getArchitectures();
410 for (std::vector
<std::string
>::const_iterator a
= archs
.begin();
411 a
!= archs
.end(); ++a
) {
413 if (Pkg
.end() == false && (PreferNonVirtual
== false || Pkg
->VersionList
!= 0))
416 // packages without an architecture
417 Pkg
= FindPkg(StringView("none", 4));
418 if (Pkg
.end() == false && (PreferNonVirtual
== false || Pkg
->VersionList
!= 0))
421 if (PreferNonVirtual
== true)
422 return FindPreferredPkg(false);
423 return PkgIterator(*Owner
, 0);
426 // GrpIterator::NextPkg - Locate the next package in the group /*{{{*/
427 // ---------------------------------------------------------------------
428 /* Returns an End-Pointer on error, pointer to the package otherwise.
429 We can't simply ++ to the next as the next package of the last will
430 be from a different group (with the same hash value) */
431 pkgCache::PkgIterator
pkgCache::GrpIterator::NextPkg(pkgCache::PkgIterator
const &LastPkg
) const {
432 if (unlikely(IsGood() == false || S
->FirstPackage
== 0 ||
433 LastPkg
.end() == true))
434 return PkgIterator(*Owner
, 0);
436 if (S
->LastPackage
== LastPkg
.Index())
437 return PkgIterator(*Owner
, 0);
439 return PkgIterator(*Owner
, Owner
->PkgP
+ LastPkg
->NextPackage
);
442 // GrpIterator::operator++ - Prefix incr /*{{{*/
443 // ---------------------------------------------------------------------
444 /* This will advance to the next logical group in the hash table. */
445 pkgCache::GrpIterator
& pkgCache::GrpIterator::operator++()
447 // Follow the current links
448 if (S
!= Owner
->GrpP
)
449 S
= Owner
->GrpP
+ S
->Next
;
451 // Follow the hash table
452 while (S
== Owner
->GrpP
&& (HashIndex
+1) < (signed)Owner
->HeaderP
->GetHashTableSize())
455 S
= Owner
->GrpP
+ Owner
->HeaderP
->GrpHashTableP()[HashIndex
];
460 // PkgIterator::operator++ - Prefix incr /*{{{*/
461 // ---------------------------------------------------------------------
462 /* This will advance to the next logical package in the hash table. */
463 pkgCache::PkgIterator
& pkgCache::PkgIterator::operator++()
465 // Follow the current links
466 if (S
!= Owner
->PkgP
)
467 S
= Owner
->PkgP
+ S
->NextPackage
;
469 // Follow the hash table
470 while (S
== Owner
->PkgP
&& (HashIndex
+1) < (signed)Owner
->HeaderP
->GetHashTableSize())
473 S
= Owner
->PkgP
+ Owner
->HeaderP
->PkgHashTableP()[HashIndex
];
478 pkgCache::DepIterator
& pkgCache::DepIterator::operator++() /*{{{*/
480 if (S
== Owner
->DepP
)
482 S
= Owner
->DepP
+ (Type
== DepVer
? S
->NextDepends
: S
->NextRevDepends
);
483 if (S
== Owner
->DepP
)
484 S2
= Owner
->DepDataP
;
486 S2
= Owner
->DepDataP
+ S
->DependencyData
;
490 // PkgIterator::State - Check the State of the package /*{{{*/
491 // ---------------------------------------------------------------------
492 /* By this we mean if it is either cleanly installed or cleanly removed. */
493 pkgCache::PkgIterator::OkState
pkgCache::PkgIterator::State() const
495 if (S
->InstState
== pkgCache::State::ReInstReq
||
496 S
->InstState
== pkgCache::State::HoldReInstReq
)
499 if (S
->CurrentState
== pkgCache::State::UnPacked
||
500 S
->CurrentState
== pkgCache::State::HalfConfigured
)
501 // we leave triggers alone complettely. dpkg deals with
502 // them in a hard-to-predict manner and if they get
503 // resolved by dpkg before apt run dpkg --configure on
504 // the TriggersPending package dpkg returns a error
505 //Pkg->CurrentState == pkgCache::State::TriggersAwaited
506 //Pkg->CurrentState == pkgCache::State::TriggersPending)
507 return NeedsConfigure
;
509 if (S
->CurrentState
== pkgCache::State::HalfInstalled
||
510 S
->InstState
!= pkgCache::State::Ok
)
516 // PkgIterator::CandVersion - Returns the candidate version string /*{{{*/
517 // ---------------------------------------------------------------------
518 /* Return string representing of the candidate version. */
520 pkgCache::PkgIterator::CandVersion() const
522 //TargetVer is empty, so don't use it.
523 VerIterator version
= pkgPolicy(Owner
).GetCandidateVer(*this);
524 if (version
.IsGood())
525 return version
.VerStr();
529 // PkgIterator::CurVersion - Returns the current version string /*{{{*/
530 // ---------------------------------------------------------------------
531 /* Return string representing of the current version. */
533 pkgCache::PkgIterator::CurVersion() const
535 VerIterator version
= CurrentVer();
536 if (version
.IsGood())
537 return CurrentVer().VerStr();
541 // ostream operator to handle string representation of a package /*{{{*/
542 // ---------------------------------------------------------------------
543 /* Output name < cur.rent.version -> candid.ate.version | new.est.version > (section)
544 Note that the characters <|>() are all literal above. Versions will be omitted
545 if they provide no new information (e.g. there is no newer version than candidate)
546 If no version and/or section can be found "none" is used. */
548 operator<<(std::ostream
& out
, pkgCache::PkgIterator Pkg
)
550 if (Pkg
.end() == true)
551 return out
<< "invalid package";
553 string current
= string(Pkg
.CurVersion() == 0 ? "none" : Pkg
.CurVersion());
554 string candidate
= string(Pkg
.CandVersion() == 0 ? "none" : Pkg
.CandVersion());
555 string newest
= string(Pkg
.VersionList().end() ? "none" : Pkg
.VersionList().VerStr());
557 out
<< Pkg
.Name() << " [ " << Pkg
.Arch() << " ] < " << current
;
558 if (current
!= candidate
)
559 out
<< " -> " << candidate
;
560 if ( newest
!= "none" && candidate
!= newest
)
561 out
<< " | " << newest
;
562 if (Pkg
->VersionList
== 0)
563 out
<< " > ( none )";
565 out
<< " > ( " << string(Pkg
.VersionList().Section()==0?"unknown":Pkg
.VersionList().Section()) << " )";
569 // PkgIterator::FullName - Returns Name and (maybe) Architecture /*{{{*/
570 // ---------------------------------------------------------------------
571 /* Returns a name:arch string */
572 std::string
pkgCache::PkgIterator::FullName(bool const &Pretty
) const
574 string fullname
= Name();
575 if (Pretty
== false ||
576 (strcmp(Arch(), "all") != 0 && strcmp(Arch(), "any") != 0 &&
577 strcmp(Owner
->NativeArch(), Arch()) != 0))
578 return fullname
.append(":").append(Arch());
582 // DepIterator::IsCritical - Returns true if the dep is important /*{{{*/
583 // ---------------------------------------------------------------------
584 /* Currently critical deps are defined as depends, predepends and
585 conflicts (including dpkg's Breaks fields). */
586 bool pkgCache::DepIterator::IsCritical() const
588 if (IsNegative() == true ||
589 S2
->Type
== pkgCache::Dep::Depends
||
590 S2
->Type
== pkgCache::Dep::PreDepends
)
595 // DepIterator::IsNegative - Returns true if the dep is a negative one /*{{{*/
596 // ---------------------------------------------------------------------
597 /* Some dependencies are positive like Depends and Recommends, others
598 are negative like Conflicts which can and should be handled differently */
599 bool pkgCache::DepIterator::IsNegative() const
601 return S2
->Type
== Dep::DpkgBreaks
||
602 S2
->Type
== Dep::Conflicts
||
603 S2
->Type
== Dep::Obsoletes
;
606 // DepIterator::SmartTargetPkg - Resolve dep target pointers w/provides /*{{{*/
607 // ---------------------------------------------------------------------
608 /* This intellegently looks at dep target packages and tries to figure
609 out which package should be used. This is needed to nicely handle
610 provide mapping. If the target package has no other providing packages
611 then it returned. Otherwise the providing list is looked at to
612 see if there is one one unique providing package if so it is returned.
613 Otherwise true is returned and the target package is set. The return
614 result indicates whether the node should be expandable
616 In Conjunction with the DepCache the value of Result may not be
617 super-good since the policy may have made it uninstallable. Using
618 AllTargets is better in this case. */
619 bool pkgCache::DepIterator::SmartTargetPkg(PkgIterator
&Result
) const
621 Result
= TargetPkg();
623 // No provides at all
624 if (Result
->ProvidesList
== 0)
627 // There is the Base package and the providing ones which is at least 2
628 if (Result
->VersionList
!= 0)
631 /* We have to skip over indirect provisions of the package that
632 owns the dependency. For instance, if libc5-dev depends on the
633 virtual package libc-dev which is provided by libc5-dev and libc6-dev
634 we must ignore libc5-dev when considering the provides list. */
635 PrvIterator PStart
= Result
.ProvidesList();
636 for (; PStart
.end() != true && PStart
.OwnerPkg() == ParentPkg(); ++PStart
);
638 // Nothing but indirect self provides
639 if (PStart
.end() == true)
642 // Check for single packages in the provides list
643 PrvIterator P
= PStart
;
644 for (; P
.end() != true; ++P
)
646 // Skip over self provides
647 if (P
.OwnerPkg() == ParentPkg())
649 if (PStart
.OwnerPkg() != P
.OwnerPkg())
653 Result
= PStart
.OwnerPkg();
655 // Check for non dups
662 // DepIterator::AllTargets - Returns the set of all possible targets /*{{{*/
663 // ---------------------------------------------------------------------
664 /* This is a more useful version of TargetPkg() that follows versioned
665 provides. It includes every possible package-version that could satisfy
666 the dependency. The last item in the list has a 0. The resulting pointer
667 must be delete [] 'd */
668 pkgCache::Version
**pkgCache::DepIterator::AllTargets() const
671 unsigned long Size
=0;
675 PkgIterator DPkg
= TargetPkg();
677 // Walk along the actual package providing versions
678 for (VerIterator I
= DPkg
.VersionList(); I
.end() == false; ++I
)
680 if (IsIgnorable(I
.ParentPkg()) == true)
682 if (IsSatisfied(I
) == false)
690 // Follow all provides
691 for (PrvIterator I
= DPkg
.ProvidesList(); I
.end() == false; ++I
)
693 if (IsIgnorable(I
) == true)
695 if (IsSatisfied(I
) == false)
700 *End
++ = I
.OwnerVer();
703 // Do it again and write it into the array
706 Res
= new Version
*[Size
+1];
719 // DepIterator::GlobOr - Compute an OR group /*{{{*/
720 // ---------------------------------------------------------------------
721 /* This Takes an iterator, iterates past the current dependency grouping
722 and returns Start and End so that so End is the final element
723 in the group, if End == Start then D is End++ and End is the
724 dependency D was pointing to. Use in loops to iterate sensibly. */
725 void pkgCache::DepIterator::GlobOr(DepIterator
&Start
,DepIterator
&End
)
727 // Compute a single dependency element (glob or)
730 for (bool LastOR
= true; end() == false && LastOR
== true;)
732 LastOR
= (S2
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
;
739 // DepIterator::IsIgnorable - should this packag/providr be ignored? /*{{{*/
740 // ---------------------------------------------------------------------
741 /* Deps like self-conflicts should be ignored as well as implicit conflicts
742 on virtual packages. */
743 bool pkgCache::DepIterator::IsIgnorable(PkgIterator
const &PT
) const
745 if (IsNegative() == false)
748 pkgCache::PkgIterator
const PP
= ParentPkg();
749 if (PP
->Group
!= PT
->Group
)
754 pkgCache::VerIterator
const PV
= ParentVer();
755 // ignore group-conflict on a M-A:same package - but not our implicit dependencies
756 // so that we can have M-A:same packages conflicting with their own real name
757 if ((PV
->MultiArch
& pkgCache::Version::Same
) == pkgCache::Version::Same
)
758 return IsMultiArchImplicit() == false;
762 bool pkgCache::DepIterator::IsIgnorable(PrvIterator
const &Prv
) const
764 if (IsNegative() == false)
767 PkgIterator
const Pkg
= ParentPkg();
768 /* Provides may never be applied against the same package (or group)
769 if it is a conflicts. See the comment above. */
770 if (Prv
.OwnerPkg()->Group
== Pkg
->Group
)
772 // Implicit group-conflicts should not be applied on providers of other groups
773 if (IsMultiArchImplicit() && Prv
.OwnerPkg()->Group
!= Pkg
->Group
)
779 // DepIterator::IsSatisfied - check if a version satisfied the dependency /*{{{*/
780 bool pkgCache::DepIterator::IsSatisfied(VerIterator
const &Ver
) const
782 return Owner
->VS
->CheckDep(Ver
.VerStr(),S2
->CompareOp
,TargetVer());
784 bool pkgCache::DepIterator::IsSatisfied(PrvIterator
const &Prv
) const
786 return Owner
->VS
->CheckDep(Prv
.ProvideVersion(),S2
->CompareOp
,TargetVer());
789 // DepIterator::IsImplicit - added by the cache generation /*{{{*/
790 bool pkgCache::DepIterator::IsImplicit() const
792 if (IsMultiArchImplicit() == true)
794 if (IsNegative() || S2
->Type
== pkgCache::Dep::Replaces
)
796 if ((S2
->CompareOp
& pkgCache::Dep::ArchSpecific
) != pkgCache::Dep::ArchSpecific
&&
797 strcmp(ParentPkg().Arch(), TargetPkg().Arch()) != 0)
803 // ostream operator to handle string representation of a dependecy /*{{{*/
804 // ---------------------------------------------------------------------
806 std::ostream
& operator<<(std::ostream
& out
, pkgCache::DepIterator D
)
809 return out
<< "invalid dependency";
811 pkgCache::PkgIterator P
= D
.ParentPkg();
812 pkgCache::PkgIterator T
= D
.TargetPkg();
814 out
<< (P
.end() ? "invalid pkg" : P
.FullName(false)) << " " << D
.DepType()
817 out
<< "invalid pkg";
822 out
<< " (" << D
.CompType() << " " << D
.TargetVer() << ")";
827 // VerIterator::CompareVer - Fast version compare for same pkgs /*{{{*/
828 // ---------------------------------------------------------------------
829 /* This just looks over the version list to see if B is listed before A. In
830 most cases this will return in under 4 checks, ver lists are short. */
831 int pkgCache::VerIterator::CompareVer(const VerIterator
&B
) const
833 // Check if they are equal
841 /* Start at A and look for B. If B is found then A > B otherwise
842 B was before A so A < B */
843 VerIterator I
= *this;
844 for (;I
.end() == false; ++I
)
850 // VerIterator::Downloadable - Checks if the version is downloadable /*{{{*/
851 // ---------------------------------------------------------------------
853 APT_PURE
bool pkgCache::VerIterator::Downloadable() const
855 VerFileIterator Files
= FileList();
856 for (; Files
.end() == false; ++Files
)
857 if (Files
.File().Flagged(pkgCache::Flag::NotSource
) == false)
862 // VerIterator::Automatic - Check if this version is 'automatic' /*{{{*/
863 // ---------------------------------------------------------------------
864 /* This checks to see if any of the versions files are not NotAutomatic.
865 True if this version is selectable for automatic installation. */
866 APT_PURE
bool pkgCache::VerIterator::Automatic() const
868 VerFileIterator Files
= FileList();
869 for (; Files
.end() == false; ++Files
)
870 // Do not check ButAutomaticUpgrades here as it is kind of automatic…
871 if (Files
.File().Flagged(pkgCache::Flag::NotAutomatic
) == false)
876 // VerIterator::NewestFile - Return the newest file version relation /*{{{*/
877 // ---------------------------------------------------------------------
878 /* This looks at the version numbers associated with all of the sources
879 this version is in and returns the highest.*/
880 pkgCache::VerFileIterator
pkgCache::VerIterator::NewestFile() const
882 VerFileIterator Files
= FileList();
883 VerFileIterator Highest
= Files
;
884 for (; Files
.end() == false; ++Files
)
886 if (Owner
->VS
->CmpReleaseVer(Files
.File().Version(),Highest
.File().Version()) > 0)
893 // VerIterator::RelStr - Release description string /*{{{*/
894 // ---------------------------------------------------------------------
895 /* This describes the version from a release-centric manner. The output is a
896 list of Label:Version/Archive */
897 static std::string
PkgFileIteratorToRelString(pkgCache::PkgFileIterator
const &File
)
900 if (File
.Label() != 0)
901 Res
= Res
+ File
.Label() + ':';
903 if (File
.Archive() != 0)
905 if (File
.Version() == 0)
906 Res
+= File
.Archive();
908 Res
= Res
+ File
.Version() + '/' + File
.Archive();
912 // No release file, print the host name that this came from
913 if (File
.Site() == 0 || File
.Site()[0] == 0)
920 string
pkgCache::VerIterator::RelStr() const
922 std::vector
<std::string
> RelStrs
;
923 for (pkgCache::VerFileIterator I
= this->FileList(); I
.end() == false; ++I
)
925 // Do not print 'not source' entries'
926 pkgCache::PkgFileIterator
const File
= I
.File();
927 if (File
.Flagged(pkgCache::Flag::NotSource
))
930 std::string
const RS
= PkgFileIteratorToRelString(File
);
931 if (std::find(RelStrs
.begin(), RelStrs
.end(), RS
) != RelStrs
.end())
934 RelStrs
.push_back(RS
);
936 std::ostringstream os
;
937 if (likely(RelStrs
.empty() == false))
939 std::copy(RelStrs
.begin(), RelStrs
.end()-1, std::ostream_iterator
<std::string
>(os
, ", "));
940 os
<< *RelStrs
.rbegin();
942 if (S
->ParentPkg
!= 0)
943 os
<< " [" << Arch() << "]";
947 // VerIterator::MultiArchType - string representing MultiArch flag /*{{{*/
948 const char * pkgCache::VerIterator::MultiArchType() const
950 if ((S
->MultiArch
& pkgCache::Version::Same
) == pkgCache::Version::Same
)
952 else if ((S
->MultiArch
& pkgCache::Version::Foreign
) == pkgCache::Version::Foreign
)
954 else if ((S
->MultiArch
& pkgCache::Version::Allowed
) == pkgCache::Version::Allowed
)
959 // RlsFileIterator::IsOk - Checks if the cache is in sync with the file /*{{{*/
960 // ---------------------------------------------------------------------
961 /* This stats the file and compares its stats with the ones that were
962 stored during generation. Date checks should probably also be
964 bool pkgCache::RlsFileIterator::IsOk()
967 if (stat(FileName(),&Buf
) != 0)
970 if (Buf
.st_size
!= (signed)S
->Size
|| Buf
.st_mtime
!= S
->mtime
)
976 // RlsFileIterator::RelStr - Return the release string /*{{{*/
977 string
pkgCache::RlsFileIterator::RelStr()
981 Res
= Res
+ (Res
.empty() == true?"v=":",v=") + Version();
983 Res
= Res
+ (Res
.empty() == true?"o=":",o=") + Origin();
985 Res
= Res
+ (Res
.empty() == true?"a=":",a=") + Archive();
987 Res
= Res
+ (Res
.empty() == true?"n=":",n=") + Codename();
989 Res
= Res
+ (Res
.empty() == true?"l=":",l=") + Label();
993 // PkgFileIterator::IsOk - Checks if the cache is in sync with the file /*{{{*/
994 // ---------------------------------------------------------------------
995 /* This stats the file and compares its stats with the ones that were
996 stored during generation. Date checks should probably also be
998 bool pkgCache::PkgFileIterator::IsOk()
1001 if (stat(FileName(),&Buf
) != 0)
1004 if (Buf
.st_size
!= (signed)S
->Size
|| Buf
.st_mtime
!= S
->mtime
)
1010 string
pkgCache::PkgFileIterator::RelStr() /*{{{*/
1013 if (ReleaseFile() == 0)
1015 if (Component() != 0)
1016 Res
= Res
+ (Res
.empty() == true?"a=":",a=") + Component();
1020 Res
= ReleaseFile().RelStr();
1021 if (Component() != 0)
1022 Res
= Res
+ (Res
.empty() == true?"c=":",c=") + Component();
1024 if (Architecture() != 0)
1025 Res
= Res
+ (Res
.empty() == true?"b=":",b=") + Architecture();
1029 // VerIterator::TranslatedDescription - Return the a DescIter for locale/*{{{*/
1030 // ---------------------------------------------------------------------
1031 /* return a DescIter for the current locale or the default if none is
1034 pkgCache::DescIterator
pkgCache::VerIterator::TranslatedDescription() const
1036 std::vector
<string
> const lang
= APT::Configuration::getLanguages();
1037 for (std::vector
<string
>::const_iterator l
= lang
.begin();
1038 l
!= lang
.end(); ++l
)
1040 pkgCache::DescIterator Desc
= DescriptionList();
1041 for (; Desc
.end() == false; ++Desc
)
1042 if (*l
== Desc
.LanguageCode())
1044 if (Desc
.end() == true)
1048 Desc
= DescriptionList();
1049 for (; Desc
.end() == false; ++Desc
)
1050 if (strcmp(Desc
.LanguageCode(), "") == 0)
1052 if (Desc
.end() == true)
1060 for (pkgCache::DescIterator Desc
= DescriptionList();
1061 Desc
.end() == false; ++Desc
)
1062 if (strcmp(Desc
.LanguageCode(), "") == 0)
1064 return DescriptionList();
1069 pkgCache::~pkgCache() {}