]>
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/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
= 41 * Hash
+ tolower_ascii(*I
);
186 return Hash
% _count(HeaderP
->PkgHashTable
);
189 unsigned long pkgCache::sHash(const char *Str
) const
191 unsigned long Hash
= tolower_ascii(*Str
);
192 for (const char *I
= Str
+ 1; *I
!= 0; ++I
)
193 Hash
= 41 * Hash
+ tolower_ascii(*I
);
194 return Hash
% _count(HeaderP
->PkgHashTable
);
197 // Cache::SingleArchFindPkg - Locate a package by name /*{{{*/
198 // ---------------------------------------------------------------------
199 /* Returns 0 on error, pointer to the package otherwise
200 The multiArch enabled methods will fallback to this one as it is (a bit)
201 faster for single arch environments and realworld is mostly singlearch… */
202 pkgCache::PkgIterator
pkgCache::SingleArchFindPkg(const string
&Name
)
204 // Look at the hash bucket
205 Package
*Pkg
= PkgP
+ HeaderP
->PkgHashTable
[Hash(Name
)];
206 for (; Pkg
!= PkgP
; Pkg
= PkgP
+ Pkg
->NextPackage
)
208 if (unlikely(Pkg
->Name
== 0))
211 int const cmp
= strcasecmp(Name
.c_str(), StrP
+ Pkg
->Name
);
213 return PkgIterator(*this, Pkg
);
217 return PkgIterator(*this,0);
220 // Cache::FindPkg - Locate a package by name /*{{{*/
221 // ---------------------------------------------------------------------
222 /* Returns 0 on error, pointer to the package otherwise */
223 pkgCache::PkgIterator
pkgCache::FindPkg(const string
&Name
) {
224 size_t const found
= Name
.find(':');
225 if (found
== string::npos
)
227 if (MultiArchCache() == false)
228 return SingleArchFindPkg(Name
);
230 return FindPkg(Name
, "native");
232 string
const Arch
= Name
.substr(found
+1);
233 /* Beware: This is specialcased to handle pkg:any in dependencies as
234 these are linked to virtual pkg:any named packages with all archs.
235 If you want any arch from a given pkg, use FindPkg(pkg,arch) */
237 return FindPkg(Name
, "any");
238 return FindPkg(Name
.substr(0, found
), Arch
);
241 // Cache::FindPkg - Locate a package by name /*{{{*/
242 // ---------------------------------------------------------------------
243 /* Returns 0 on error, pointer to the package otherwise */
244 pkgCache::PkgIterator
pkgCache::FindPkg(const string
&Name
, string
const &Arch
) {
245 if (MultiArchCache() == false && Arch
!= "none") {
246 if (Arch
== "native" || Arch
== "all" || Arch
== "any" ||
247 Arch
== NativeArch())
248 return SingleArchFindPkg(Name
);
250 return PkgIterator(*this,0);
252 /* We make a detour via the GrpIterator here as
253 on a multi-arch environment a group is easier to
254 find than a package (less entries in the buckets) */
255 pkgCache::GrpIterator Grp
= FindGrp(Name
);
256 if (Grp
.end() == true)
257 return PkgIterator(*this,0);
259 return Grp
.FindPkg(Arch
);
262 // Cache::FindGrp - Locate a group by name /*{{{*/
263 // ---------------------------------------------------------------------
264 /* Returns End-Pointer on error, pointer to the group otherwise */
265 pkgCache::GrpIterator
pkgCache::FindGrp(const string
&Name
) {
266 if (unlikely(Name
.empty() == true))
267 return GrpIterator(*this,0);
269 // Look at the hash bucket for the group
270 Group
*Grp
= GrpP
+ HeaderP
->GrpHashTable
[sHash(Name
)];
271 for (; Grp
!= GrpP
; Grp
= GrpP
+ Grp
->Next
) {
272 if (unlikely(Grp
->Name
== 0))
275 int const cmp
= strcasecmp(Name
.c_str(), StrP
+ Grp
->Name
);
277 return GrpIterator(*this, Grp
);
282 return GrpIterator(*this,0);
285 // Cache::CompTypeDeb - Return a string describing the compare type /*{{{*/
286 // ---------------------------------------------------------------------
287 /* This returns a string representation of the dependency compare
288 type in the weird debian style.. */
289 const char *pkgCache::CompTypeDeb(unsigned char Comp
)
291 const char * const Ops
[] = {"","<=",">=","<<",">>","=","!="};
292 if (unlikely((unsigned)(Comp
& 0xF) >= sizeof(Ops
)/sizeof(Ops
[0])))
294 return Ops
[Comp
& 0xF];
297 // Cache::CompType - Return a string describing the compare type /*{{{*/
298 // ---------------------------------------------------------------------
299 /* This returns a string representation of the dependency compare
301 const char *pkgCache::CompType(unsigned char Comp
)
303 const char * const Ops
[] = {"","<=",">=","<",">","=","!="};
304 if (unlikely((unsigned)(Comp
& 0xF) >= sizeof(Ops
)/sizeof(Ops
[0])))
306 return Ops
[Comp
& 0xF];
309 // Cache::DepType - Return a string describing the dep type /*{{{*/
310 // ---------------------------------------------------------------------
312 const char *pkgCache::DepType(unsigned char Type
)
314 const char *Types
[] = {"",_("Depends"),_("PreDepends"),_("Suggests"),
315 _("Recommends"),_("Conflicts"),_("Replaces"),
316 _("Obsoletes"),_("Breaks"), _("Enhances")};
317 if (Type
< sizeof(Types
)/sizeof(*Types
))
322 // Cache::Priority - Convert a priority value to a string /*{{{*/
323 // ---------------------------------------------------------------------
325 const char *pkgCache::Priority(unsigned char Prio
)
327 const char *Mapping
[] = {0,_("important"),_("required"),_("standard"),
328 _("optional"),_("extra")};
329 if (Prio
< _count(Mapping
))
330 return Mapping
[Prio
];
334 // GrpIterator::FindPkg - Locate a package by arch /*{{{*/
335 // ---------------------------------------------------------------------
336 /* Returns an End-Pointer on error, pointer to the package otherwise */
337 pkgCache::PkgIterator
pkgCache::GrpIterator::FindPkg(string Arch
) const {
338 if (unlikely(IsGood() == false || S
->FirstPackage
== 0))
339 return PkgIterator(*Owner
, 0);
341 /* If we accept any package we simply return the "first"
342 package in this group (the last one added). */
344 return PkgIterator(*Owner
, Owner
->PkgP
+ S
->FirstPackage
);
346 char const* const myArch
= Owner
->NativeArch();
347 /* Most of the time the package for our native architecture is
348 the one we add at first to the cache, but this would be the
349 last one we check, so we do it now. */
350 if (Arch
== "native" || Arch
== myArch
|| Arch
== "all") {
351 pkgCache::Package
*Pkg
= Owner
->PkgP
+ S
->LastPackage
;
352 if (strcasecmp(myArch
, Owner
->StrP
+ Pkg
->Arch
) == 0)
353 return PkgIterator(*Owner
, Pkg
);
357 /* Iterate over the list to find the matching arch
358 unfortunately this list includes "package noise"
359 (= different packages with same calculated hash),
360 so we need to check the name also */
361 for (pkgCache::Package
*Pkg
= PackageList(); Pkg
!= Owner
->PkgP
;
362 Pkg
= Owner
->PkgP
+ Pkg
->NextPackage
) {
363 if (S
->Name
== Pkg
->Name
&&
364 stringcasecmp(Arch
, Owner
->StrP
+ Pkg
->Arch
) == 0)
365 return PkgIterator(*Owner
, Pkg
);
366 if ((Owner
->PkgP
+ S
->LastPackage
) == Pkg
)
370 return PkgIterator(*Owner
, 0);
373 // GrpIterator::FindPreferredPkg - Locate the "best" package /*{{{*/
374 // ---------------------------------------------------------------------
375 /* Returns an End-Pointer on error, pointer to the package otherwise */
376 pkgCache::PkgIterator
pkgCache::GrpIterator::FindPreferredPkg(bool const &PreferNonVirtual
) const {
377 pkgCache::PkgIterator Pkg
= FindPkg("native");
378 if (Pkg
.end() == false && (PreferNonVirtual
== false || Pkg
->VersionList
!= 0))
381 std::vector
<std::string
> const archs
= APT::Configuration::getArchitectures();
382 for (std::vector
<std::string
>::const_iterator a
= archs
.begin();
383 a
!= archs
.end(); ++a
) {
385 if (Pkg
.end() == false && (PreferNonVirtual
== false || Pkg
->VersionList
!= 0))
388 // packages without an architecture
389 Pkg
= FindPkg("none");
390 if (Pkg
.end() == false && (PreferNonVirtual
== false || Pkg
->VersionList
!= 0))
393 if (PreferNonVirtual
== true)
394 return FindPreferredPkg(false);
395 return PkgIterator(*Owner
, 0);
398 // GrpIterator::NextPkg - Locate the next package in the group /*{{{*/
399 // ---------------------------------------------------------------------
400 /* Returns an End-Pointer on error, pointer to the package otherwise.
401 We can't simply ++ to the next as the next package of the last will
402 be from a different group (with the same hash value) */
403 pkgCache::PkgIterator
pkgCache::GrpIterator::NextPkg(pkgCache::PkgIterator
const &LastPkg
) const {
404 if (unlikely(IsGood() == false || S
->FirstPackage
== 0 ||
405 LastPkg
.end() == true))
406 return PkgIterator(*Owner
, 0);
408 if (S
->LastPackage
== LastPkg
.Index())
409 return PkgIterator(*Owner
, 0);
411 return PkgIterator(*Owner
, Owner
->PkgP
+ LastPkg
->NextPackage
);
414 // GrpIterator::operator ++ - Postfix incr /*{{{*/
415 // ---------------------------------------------------------------------
416 /* This will advance to the next logical group in the hash table. */
417 void pkgCache::GrpIterator::operator ++(int)
419 // Follow the current links
420 if (S
!= Owner
->GrpP
)
421 S
= Owner
->GrpP
+ S
->Next
;
423 // Follow the hash table
424 while (S
== Owner
->GrpP
&& (HashIndex
+1) < (signed)_count(Owner
->HeaderP
->GrpHashTable
))
427 S
= Owner
->GrpP
+ Owner
->HeaderP
->GrpHashTable
[HashIndex
];
431 // PkgIterator::operator ++ - Postfix incr /*{{{*/
432 // ---------------------------------------------------------------------
433 /* This will advance to the next logical package in the hash table. */
434 void pkgCache::PkgIterator::operator ++(int)
436 // Follow the current links
437 if (S
!= Owner
->PkgP
)
438 S
= Owner
->PkgP
+ S
->NextPackage
;
440 // Follow the hash table
441 while (S
== Owner
->PkgP
&& (HashIndex
+1) < (signed)_count(Owner
->HeaderP
->PkgHashTable
))
444 S
= Owner
->PkgP
+ Owner
->HeaderP
->PkgHashTable
[HashIndex
];
448 // PkgIterator::State - Check the State of the package /*{{{*/
449 // ---------------------------------------------------------------------
450 /* By this we mean if it is either cleanly installed or cleanly removed. */
451 pkgCache::PkgIterator::OkState
pkgCache::PkgIterator::State() const
453 if (S
->InstState
== pkgCache::State::ReInstReq
||
454 S
->InstState
== pkgCache::State::HoldReInstReq
)
457 if (S
->CurrentState
== pkgCache::State::UnPacked
||
458 S
->CurrentState
== pkgCache::State::HalfConfigured
)
459 // we leave triggers alone complettely. dpkg deals with
460 // them in a hard-to-predict manner and if they get
461 // resolved by dpkg before apt run dpkg --configure on
462 // the TriggersPending package dpkg returns a error
463 //Pkg->CurrentState == pkgCache::State::TriggersAwaited
464 //Pkg->CurrentState == pkgCache::State::TriggersPending)
465 return NeedsConfigure
;
467 if (S
->CurrentState
== pkgCache::State::HalfInstalled
||
468 S
->InstState
!= pkgCache::State::Ok
)
474 // PkgIterator::CandVersion - Returns the candidate version string /*{{{*/
475 // ---------------------------------------------------------------------
476 /* Return string representing of the candidate version. */
478 pkgCache::PkgIterator::CandVersion() const
480 //TargetVer is empty, so don't use it.
481 VerIterator version
= pkgPolicy(Owner
).GetCandidateVer(*this);
482 if (version
.IsGood())
483 return version
.VerStr();
487 // PkgIterator::CurVersion - Returns the current version string /*{{{*/
488 // ---------------------------------------------------------------------
489 /* Return string representing of the current version. */
491 pkgCache::PkgIterator::CurVersion() const
493 VerIterator version
= CurrentVer();
494 if (version
.IsGood())
495 return CurrentVer().VerStr();
499 // ostream operator to handle string representation of a package /*{{{*/
500 // ---------------------------------------------------------------------
501 /* Output name < cur.rent.version -> candid.ate.version | new.est.version > (section)
502 Note that the characters <|>() are all literal above. Versions will be omitted
503 if they provide no new information (e.g. there is no newer version than candidate)
504 If no version and/or section can be found "none" is used. */
506 operator<<(std::ostream
& out
, pkgCache::PkgIterator Pkg
)
508 if (Pkg
.end() == true)
509 return out
<< "invalid package";
511 string current
= string(Pkg
.CurVersion() == 0 ? "none" : Pkg
.CurVersion());
512 string candidate
= string(Pkg
.CandVersion() == 0 ? "none" : Pkg
.CandVersion());
513 string newest
= string(Pkg
.VersionList().end() ? "none" : Pkg
.VersionList().VerStr());
515 out
<< Pkg
.Name() << " [ " << Pkg
.Arch() << " ] < " << current
;
516 if (current
!= candidate
)
517 out
<< " -> " << candidate
;
518 if ( newest
!= "none" && candidate
!= newest
)
519 out
<< " | " << newest
;
520 out
<< " > ( " << string(Pkg
.Section()==0?"none":Pkg
.Section()) << " )";
524 // PkgIterator::FullName - Returns Name and (maybe) Architecture /*{{{*/
525 // ---------------------------------------------------------------------
526 /* Returns a name:arch string */
527 std::string
pkgCache::PkgIterator::FullName(bool const &Pretty
) const
529 string fullname
= Name();
530 if (Pretty
== false ||
531 (strcmp(Arch(), "all") != 0 &&
532 strcmp(Owner
->NativeArch(), Arch()) != 0))
533 return fullname
.append(":").append(Arch());
537 // DepIterator::IsCritical - Returns true if the dep is important /*{{{*/
538 // ---------------------------------------------------------------------
539 /* Currently critical deps are defined as depends, predepends and
540 conflicts (including dpkg's Breaks fields). */
541 bool pkgCache::DepIterator::IsCritical() const
543 if (IsNegative() == true ||
544 S
->Type
== pkgCache::Dep::Depends
||
545 S
->Type
== pkgCache::Dep::PreDepends
)
550 // DepIterator::IsNegative - Returns true if the dep is a negative one /*{{{*/
551 // ---------------------------------------------------------------------
552 /* Some dependencies are positive like Depends and Recommends, others
553 are negative like Conflicts which can and should be handled differently */
554 bool pkgCache::DepIterator::IsNegative() const
556 return S
->Type
== Dep::DpkgBreaks
||
557 S
->Type
== Dep::Conflicts
||
558 S
->Type
== Dep::Obsoletes
;
561 // DepIterator::SmartTargetPkg - Resolve dep target pointers w/provides /*{{{*/
562 // ---------------------------------------------------------------------
563 /* This intellegently looks at dep target packages and tries to figure
564 out which package should be used. This is needed to nicely handle
565 provide mapping. If the target package has no other providing packages
566 then it returned. Otherwise the providing list is looked at to
567 see if there is one one unique providing package if so it is returned.
568 Otherwise true is returned and the target package is set. The return
569 result indicates whether the node should be expandable
571 In Conjunction with the DepCache the value of Result may not be
572 super-good since the policy may have made it uninstallable. Using
573 AllTargets is better in this case. */
574 bool pkgCache::DepIterator::SmartTargetPkg(PkgIterator
&Result
) const
576 Result
= TargetPkg();
578 // No provides at all
579 if (Result
->ProvidesList
== 0)
582 // There is the Base package and the providing ones which is at least 2
583 if (Result
->VersionList
!= 0)
586 /* We have to skip over indirect provisions of the package that
587 owns the dependency. For instance, if libc5-dev depends on the
588 virtual package libc-dev which is provided by libc5-dev and libc6-dev
589 we must ignore libc5-dev when considering the provides list. */
590 PrvIterator PStart
= Result
.ProvidesList();
591 for (; PStart
.end() != true && PStart
.OwnerPkg() == ParentPkg(); ++PStart
);
593 // Nothing but indirect self provides
594 if (PStart
.end() == true)
597 // Check for single packages in the provides list
598 PrvIterator P
= PStart
;
599 for (; P
.end() != true; ++P
)
601 // Skip over self provides
602 if (P
.OwnerPkg() == ParentPkg())
604 if (PStart
.OwnerPkg() != P
.OwnerPkg())
608 Result
= PStart
.OwnerPkg();
610 // Check for non dups
617 // DepIterator::AllTargets - Returns the set of all possible targets /*{{{*/
618 // ---------------------------------------------------------------------
619 /* This is a more useful version of TargetPkg() that follows versioned
620 provides. It includes every possible package-version that could satisfy
621 the dependency. The last item in the list has a 0. The resulting pointer
622 must be delete [] 'd */
623 pkgCache::Version
**pkgCache::DepIterator::AllTargets() const
626 unsigned long Size
=0;
630 PkgIterator DPkg
= TargetPkg();
632 // Walk along the actual package providing versions
633 for (VerIterator I
= DPkg
.VersionList(); I
.end() == false; ++I
)
635 if (IsIgnorable(I
.ParentPkg()) == true)
637 if (IsSatisfied(I
) == false)
645 // Follow all provides
646 for (PrvIterator I
= DPkg
.ProvidesList(); I
.end() == false; ++I
)
648 if (IsIgnorable(I
) == true)
650 if (IsSatisfied(I
) == false)
655 *End
++ = I
.OwnerVer();
658 // Do it again and write it into the array
661 Res
= new Version
*[Size
+1];
674 // DepIterator::GlobOr - Compute an OR group /*{{{*/
675 // ---------------------------------------------------------------------
676 /* This Takes an iterator, iterates past the current dependency grouping
677 and returns Start and End so that so End is the final element
678 in the group, if End == Start then D is End++ and End is the
679 dependency D was pointing to. Use in loops to iterate sensibly. */
680 void pkgCache::DepIterator::GlobOr(DepIterator
&Start
,DepIterator
&End
)
682 // Compute a single dependency element (glob or)
685 for (bool LastOR
= true; end() == false && LastOR
== true;)
687 LastOR
= (S
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
;
694 // DepIterator::IsIgnorable - should this packag/providr be ignored? /*{{{*/
695 // ---------------------------------------------------------------------
696 /* Deps like self-conflicts should be ignored as well as implicit conflicts
697 on virtual packages. */
698 bool pkgCache::DepIterator::IsIgnorable(PkgIterator
const &Pkg
) const
700 if (IsNegative() == false)
703 pkgCache::PkgIterator PP
= ParentPkg();
704 pkgCache::PkgIterator PT
= TargetPkg();
705 if (PP
->Group
!= PT
->Group
)
710 pkgCache::VerIterator PV
= ParentVer();
711 // ignore group-conflict on a M-A:same package - but not our implicit dependencies
712 // so that we can have M-A:same packages conflicting with their own real name
713 if ((PV
->MultiArch
& pkgCache::Version::Same
) == pkgCache::Version::Same
)
715 // Replaces: ${self}:other ( << ${binary:Version})
716 if (S
->Type
== pkgCache::Dep::Replaces
&& S
->CompareOp
== pkgCache::Dep::Less
&& strcmp(PV
.VerStr(), TargetVer()) == 0)
718 // Breaks: ${self}:other (!= ${binary:Version})
719 if (S
->Type
== pkgCache::Dep::DpkgBreaks
&& S
->CompareOp
== pkgCache::Dep::NotEquals
&& strcmp(PV
.VerStr(), TargetVer()) == 0)
726 bool pkgCache::DepIterator::IsIgnorable(PrvIterator
const &Prv
) const
728 if (IsNegative() == false)
731 PkgIterator
const Pkg
= ParentPkg();
732 /* Provides may never be applied against the same package (or group)
733 if it is a conflicts. See the comment above. */
734 if (Prv
.OwnerPkg()->Group
== Pkg
->Group
)
736 // Implicit group-conflicts should not be applied on providers of other groups
737 if (Pkg
->Group
== TargetPkg()->Group
&& Prv
.OwnerPkg()->Group
!= Pkg
->Group
)
743 // DepIterator::IsMultiArchImplicit - added by the cache generation /*{{{*/
744 // ---------------------------------------------------------------------
745 /* MultiArch can be translated to SingleArch for an resolver and we did so,
746 by adding dependencies to help the resolver understand the problem, but
747 sometimes it is needed to identify these to ignore them… */
748 bool pkgCache::DepIterator::IsMultiArchImplicit() const
750 if (ParentPkg()->Arch
!= TargetPkg()->Arch
&&
751 (S
->Type
== pkgCache::Dep::Replaces
||
752 S
->Type
== pkgCache::Dep::DpkgBreaks
||
753 S
->Type
== pkgCache::Dep::Conflicts
))
758 // DepIterator::IsSatisfied - check if a version satisfied the dependency /*{{{*/
759 bool pkgCache::DepIterator::IsSatisfied(VerIterator
const &Ver
) const
761 return Owner
->VS
->CheckDep(Ver
.VerStr(),S
->CompareOp
,TargetVer());
763 bool pkgCache::DepIterator::IsSatisfied(PrvIterator
const &Prv
) const
765 return Owner
->VS
->CheckDep(Prv
.ProvideVersion(),S
->CompareOp
,TargetVer());
768 // ostream operator to handle string representation of a dependecy /*{{{*/
769 // ---------------------------------------------------------------------
771 std::ostream
& operator<<(std::ostream
& out
, pkgCache::DepIterator D
)
774 return out
<< "invalid dependency";
776 pkgCache::PkgIterator P
= D
.ParentPkg();
777 pkgCache::PkgIterator T
= D
.TargetPkg();
779 out
<< (P
.end() ? "invalid pkg" : P
.FullName(false)) << " " << D
.DepType()
782 out
<< "invalid pkg";
787 out
<< " (" << D
.CompType() << " " << D
.TargetVer() << ")";
792 // VerIterator::CompareVer - Fast version compare for same pkgs /*{{{*/
793 // ---------------------------------------------------------------------
794 /* This just looks over the version list to see if B is listed before A. In
795 most cases this will return in under 4 checks, ver lists are short. */
796 int pkgCache::VerIterator::CompareVer(const VerIterator
&B
) const
798 // Check if they are equal
806 /* Start at A and look for B. If B is found then A > B otherwise
807 B was before A so A < B */
808 VerIterator I
= *this;
809 for (;I
.end() == false; ++I
)
815 // VerIterator::Downloadable - Checks if the version is downloadable /*{{{*/
816 // ---------------------------------------------------------------------
818 bool pkgCache::VerIterator::Downloadable() const
820 VerFileIterator Files
= FileList();
821 for (; Files
.end() == false; ++Files
)
822 if ((Files
.File()->Flags
& pkgCache::Flag::NotSource
) != pkgCache::Flag::NotSource
)
827 // VerIterator::Automatic - Check if this version is 'automatic' /*{{{*/
828 // ---------------------------------------------------------------------
829 /* This checks to see if any of the versions files are not NotAutomatic.
830 True if this version is selectable for automatic installation. */
831 bool pkgCache::VerIterator::Automatic() const
833 VerFileIterator Files
= FileList();
834 for (; Files
.end() == false; ++Files
)
835 // Do not check ButAutomaticUpgrades here as it is kind of automatic…
836 if ((Files
.File()->Flags
& pkgCache::Flag::NotAutomatic
) != pkgCache::Flag::NotAutomatic
)
841 // VerIterator::NewestFile - Return the newest file version relation /*{{{*/
842 // ---------------------------------------------------------------------
843 /* This looks at the version numbers associated with all of the sources
844 this version is in and returns the highest.*/
845 pkgCache::VerFileIterator
pkgCache::VerIterator::NewestFile() const
847 VerFileIterator Files
= FileList();
848 VerFileIterator Highest
= Files
;
849 for (; Files
.end() == false; ++Files
)
851 if (Owner
->VS
->CmpReleaseVer(Files
.File().Version(),Highest
.File().Version()) > 0)
858 // VerIterator::RelStr - Release description string /*{{{*/
859 // ---------------------------------------------------------------------
860 /* This describes the version from a release-centric manner. The output is a
861 list of Label:Version/Archive */
862 string
pkgCache::VerIterator::RelStr() const
866 for (pkgCache::VerFileIterator I
= this->FileList(); I
.end() == false; ++I
)
868 // Do not print 'not source' entries'
869 pkgCache::PkgFileIterator File
= I
.File();
870 if ((File
->Flags
& pkgCache::Flag::NotSource
) == pkgCache::Flag::NotSource
)
873 // See if we have already printed this out..
875 for (pkgCache::VerFileIterator J
= this->FileList(); I
!= J
; ++J
)
877 pkgCache::PkgFileIterator File2
= J
.File();
878 if (File2
->Label
== 0 || File
->Label
== 0)
881 if (strcmp(File
.Label(),File2
.Label()) != 0)
884 if (File2
->Version
== File
->Version
)
889 if (File2
->Version
== 0 || File
->Version
== 0)
891 if (strcmp(File
.Version(),File2
.Version()) == 0)
903 if (File
->Label
!= 0)
904 Res
= Res
+ File
.Label() + ':';
906 if (File
->Archive
!= 0)
908 if (File
->Version
== 0)
909 Res
+= File
.Archive();
911 Res
= Res
+ File
.Version() + '/' + File
.Archive();
915 // No release file, print the host name that this came from
916 if (File
->Site
== 0 || File
.Site()[0] == 0)
922 if (S
->ParentPkg
!= 0)
923 Res
.append(" [").append(Arch()).append("]");
927 // VerIterator::MultiArchType - string representing MultiArch flag /*{{{*/
928 const char * pkgCache::VerIterator::MultiArchType() const
930 if ((S
->MultiArch
& pkgCache::Version::Same
) == pkgCache::Version::Same
)
932 else if ((S
->MultiArch
& pkgCache::Version::Foreign
) == pkgCache::Version::Foreign
)
934 else if ((S
->MultiArch
& pkgCache::Version::Allowed
) == pkgCache::Version::Allowed
)
939 // PkgFileIterator::IsOk - Checks if the cache is in sync with the file /*{{{*/
940 // ---------------------------------------------------------------------
941 /* This stats the file and compares its stats with the ones that were
942 stored during generation. Date checks should probably also be
944 bool pkgCache::PkgFileIterator::IsOk()
947 if (stat(FileName(),&Buf
) != 0)
950 if (Buf
.st_size
!= (signed)S
->Size
|| Buf
.st_mtime
!= S
->mtime
)
956 // PkgFileIterator::RelStr - Return the release string /*{{{*/
957 // ---------------------------------------------------------------------
959 string
pkgCache::PkgFileIterator::RelStr()
963 Res
= Res
+ (Res
.empty() == true?"v=":",v=") + Version();
965 Res
= Res
+ (Res
.empty() == true?"o=":",o=") + Origin();
967 Res
= Res
+ (Res
.empty() == true?"a=":",a=") + Archive();
969 Res
= Res
+ (Res
.empty() == true?"n=":",n=") + Codename();
971 Res
= Res
+ (Res
.empty() == true?"l=":",l=") + Label();
972 if (Component() != 0)
973 Res
= Res
+ (Res
.empty() == true?"c=":",c=") + Component();
974 if (Architecture() != 0)
975 Res
= Res
+ (Res
.empty() == true?"b=":",b=") + Architecture();
979 // VerIterator::TranslatedDescription - Return the a DescIter for locale/*{{{*/
980 // ---------------------------------------------------------------------
981 /* return a DescIter for the current locale or the default if none is
984 pkgCache::DescIterator
pkgCache::VerIterator::TranslatedDescription() const
986 std::vector
<string
> const lang
= APT::Configuration::getLanguages();
987 for (std::vector
<string
>::const_iterator l
= lang
.begin();
988 l
!= lang
.end(); ++l
)
990 pkgCache::DescIterator Desc
= DescriptionList();
991 for (; Desc
.end() == false; ++Desc
)
992 if (*l
== Desc
.LanguageCode())
994 if (Desc
.end() == true)
998 Desc
= DescriptionList();
999 for (; Desc
.end() == false; ++Desc
)
1000 if (strcmp(Desc
.LanguageCode(), "") == 0)
1002 if (Desc
.end() == true)
1010 for (pkgCache::DescIterator Desc
= DescriptionList();
1011 Desc
.end() == false; ++Desc
)
1012 if (strcmp(Desc
.LanguageCode(), "") == 0)
1014 return DescriptionList();
1018 // PrvIterator::IsMultiArchImplicit - added by the cache generation /*{{{*/
1019 // ---------------------------------------------------------------------
1020 /* MultiArch can be translated to SingleArch for an resolver and we did so,
1021 by adding provides to help the resolver understand the problem, but
1022 sometimes it is needed to identify these to ignore them… */
1023 bool pkgCache::PrvIterator::IsMultiArchImplicit() const
1025 pkgCache::PkgIterator
const Owner
= OwnerPkg();
1026 pkgCache::PkgIterator
const Parent
= ParentPkg();
1027 if (strcmp(Owner
.Arch(), Parent
.Arch()) != 0 || Owner
->Name
== Parent
->Name
)