]>
git.saurik.com Git - apt.git/blob - apt-pkg/cacheiterators.h
d9c8ed1e4712cf6b4f285078931aa72352d23884
1 // -*- mode: cpp; mode: fold -*-
3 /* ######################################################################
5 Cache Iterators - Iterators for navigating the cache structure
7 The iterators all provides ++,==,!=,->,* and end for their type.
8 The end function can be used to tell if the list has been fully
11 Unlike STL iterators these contain helper functions to access the data
12 that is being iterated over. This is because the data structures can't
13 be formed in a manner that is intuitive to use and also mmapable.
15 For each variable in the target structure that would need a translation
16 to be accessed correctly a translating function of the same name is
17 present in the iterator. If applicable the translating function will
20 The DepIterator can iterate over two lists, a list of 'version depends'
21 or a list of 'package reverse depends'. The type is determined by the
22 structure passed to the constructor, which should be the structure
23 that has the depends pointer as a member. The provide iterator has the
26 This header is not user includable, please use apt-pkg/pkgcache.h
28 ##################################################################### */
30 #ifndef PKGLIB_CACHEITERATORS_H
31 #define PKGLIB_CACHEITERATORS_H
32 #include<apt-pkg/pkgcache.h>
40 // abstract Iterator template /*{{{*/
41 /* This template provides the very basic iterator methods we
42 need to have for doing some walk-over-the-cache magic */
43 template<typename Str
, typename Itr
> class pkgCache::Iterator
:
44 public std::iterator
<std::forward_iterator_tag
, Str
> {
49 /** \brief Returns the Pointer for this struct in the owner
50 * The implementation of this method should be pretty short
51 * as it will only return the Pointer into the mmap stored
52 * in the owner but the name of this pointer is different for
53 * each structure and we want to abstract here at least for the
54 * basic methods from the actual structure.
55 * \return Pointer to the first structure of this type
57 virtual Str
* OwnerPointer() const = 0;
61 virtual void operator ++(int) = 0;
62 virtual void operator ++() = 0; // Should be {operator ++(0);}
63 inline bool end() const {return Owner
== 0 || S
== OwnerPointer();}
66 inline bool operator ==(const Itr
&B
) const {return S
== B
.S
;}
67 inline bool operator !=(const Itr
&B
) const {return S
!= B
.S
;}
70 inline Str
*operator ->() {return S
;}
71 inline Str
const *operator ->() const {return S
;}
72 inline operator Str
*() {return S
== OwnerPointer() ? 0 : S
;}
73 inline operator Str
const *() const {return S
== OwnerPointer() ? 0 : S
;}
74 inline Str
&operator *() {return *S
;}
75 inline Str
const &operator *() const {return *S
;}
76 inline pkgCache
*Cache() const {return Owner
;}
79 inline void operator =(const Itr
&B
) {S
= B
.S
; Owner
= B
.Owner
;}
80 inline bool IsGood() const { return S
&& Owner
&& ! end();}
81 inline unsigned long Index() const {return S
- OwnerPointer();}
83 void ReMap(void const * const oldMap
, void const * const newMap
) {
84 if (Owner
== 0 || S
== 0)
86 S
+= (Str
const * const)(newMap
) - (Str
const * const)(oldMap
);
89 // Constructors - look out for the variable assigning
90 inline Iterator() : S(0), Owner(0) {}
91 inline Iterator(pkgCache
&Owner
,Str
*T
= 0) : S(T
), Owner(&Owner
) {}
94 // Group Iterator /*{{{*/
95 /* Packages with the same name are collected in a Group so someone only
96 interest in package names can iterate easily over the names, so the
97 different architectures can be treated as of the "same" package
98 (apt internally treat them as totally different packages) */
99 class pkgCache::GrpIterator
: public Iterator
<Group
, GrpIterator
> {
103 inline Group
* OwnerPointer() const {
104 return (Owner
!= 0) ? Owner
->GrpP
: 0;
108 // This constructor is the 'begin' constructor, never use it.
109 inline GrpIterator(pkgCache
&Owner
) : Iterator
<Group
, GrpIterator
>(Owner
), HashIndex(-1) {
114 virtual void operator ++(int);
115 virtual void operator ++() {operator ++(0);}
117 inline const char *Name() const {return S
->Name
== 0?0:Owner
->StrP
+ S
->Name
;}
118 inline PkgIterator
PackageList() const;
119 PkgIterator
FindPkg(std::string Arch
= "any") const;
120 /** \brief find the package with the "best" architecture
122 The best architecture is either the "native" or the first
123 in the list of Architectures which is not an end-Pointer
125 \param PreferNonVirtual tries to respond with a non-virtual package
126 and only if this fails returns the best virtual package */
127 PkgIterator
FindPreferredPkg(bool const &PreferNonVirtual
= true) const;
128 PkgIterator
NextPkg(PkgIterator
const &Pkg
) const;
131 inline GrpIterator(pkgCache
&Owner
, Group
*Trg
) : Iterator
<Group
, GrpIterator
>(Owner
, Trg
), HashIndex(0) {
135 inline GrpIterator() : Iterator
<Group
, GrpIterator
>(), HashIndex(0) {}
139 // Package Iterator /*{{{*/
140 class pkgCache::PkgIterator
: public Iterator
<Package
, PkgIterator
> {
144 inline Package
* OwnerPointer() const {
145 return (Owner
!= 0) ? Owner
->PkgP
: 0;
149 // This constructor is the 'begin' constructor, never use it.
150 inline PkgIterator(pkgCache
&Owner
) : Iterator
<Package
, PkgIterator
>(Owner
), HashIndex(-1) {
155 virtual void operator ++(int);
156 virtual void operator ++() {operator ++(0);}
158 enum OkState
{NeedsNothing
,NeedsUnpack
,NeedsConfigure
};
161 inline const char *Name() const {return S
->Name
== 0?0:Owner
->StrP
+ S
->Name
;}
162 inline const char *Section() const {return S
->Section
== 0?0:Owner
->StrP
+ S
->Section
;}
163 inline bool Purge() const {return S
->CurrentState
== pkgCache::State::Purge
||
164 (S
->CurrentVer
== 0 && S
->CurrentState
== pkgCache::State::NotInstalled
);}
165 inline const char *Arch() const {return S
->Arch
== 0?0:Owner
->StrP
+ S
->Arch
;}
166 inline GrpIterator
Group() const { return GrpIterator(*Owner
, Owner
->GrpP
+ S
->Group
);}
168 inline VerIterator
VersionList() const;
169 inline VerIterator
CurrentVer() const;
170 inline DepIterator
RevDependsList() const;
171 inline PrvIterator
ProvidesList() const;
172 OkState
State() const;
173 const char *CandVersion() const;
174 const char *CurVersion() const;
176 //Nice printable representation
177 friend std::ostream
& operator <<(std::ostream
& out
, PkgIterator i
);
178 std::string
FullName(bool const &Pretty
= false) const;
181 inline PkgIterator(pkgCache
&Owner
,Package
*Trg
) : Iterator
<Package
, PkgIterator
>(Owner
, Trg
), HashIndex(0) {
185 inline PkgIterator() : Iterator
<Package
, PkgIterator
>(), HashIndex(0) {}
188 // Version Iterator /*{{{*/
189 class pkgCache::VerIterator
: public Iterator
<Version
, VerIterator
> {
191 inline Version
* OwnerPointer() const {
192 return (Owner
!= 0) ? Owner
->VerP
: 0;
197 void operator ++(int) {if (S
!= Owner
->VerP
) S
= Owner
->VerP
+ S
->NextVer
;}
198 inline void operator ++() {operator ++(0);}
201 int CompareVer(const VerIterator
&B
) const;
202 /** \brief compares two version and returns if they are similar
204 This method should be used to identify if two pseudo versions are
205 referring to the same "real" version */
206 inline bool SimilarVer(const VerIterator
&B
) const {
207 return (B
.end() == false && S
->Hash
== B
->Hash
&& strcmp(VerStr(), B
.VerStr()) == 0);
211 inline const char *VerStr() const {return S
->VerStr
== 0?0:Owner
->StrP
+ S
->VerStr
;}
212 inline const char *Section() const {return S
->Section
== 0?0:Owner
->StrP
+ S
->Section
;}
213 inline const char *Arch() const {
214 if ((S
->MultiArch
& pkgCache::Version::All
) == pkgCache::Version::All
)
216 return S
->ParentPkg
== 0?0:Owner
->StrP
+ ParentPkg()->Arch
;
218 inline PkgIterator
ParentPkg() const {return PkgIterator(*Owner
,Owner
->PkgP
+ S
->ParentPkg
);}
220 inline DescIterator
DescriptionList() const;
221 DescIterator
TranslatedDescription() const;
222 inline DepIterator
DependsList() const;
223 inline PrvIterator
ProvidesList() const;
224 inline VerFileIterator
FileList() const;
225 bool Downloadable() const;
226 inline const char *PriorityType() const {return Owner
->Priority(S
->Priority
);}
227 const char *MultiArchType() const;
228 std::string
RelStr() const;
230 bool Automatic() const;
231 VerFileIterator
NewestFile() const;
233 inline VerIterator(pkgCache
&Owner
,Version
*Trg
= 0) : Iterator
<Version
, VerIterator
>(Owner
, Trg
) {
237 inline VerIterator() : Iterator
<Version
, VerIterator
>() {}
240 // Description Iterator /*{{{*/
241 class pkgCache::DescIterator
: public Iterator
<Description
, DescIterator
> {
243 inline Description
* OwnerPointer() const {
244 return (Owner
!= 0) ? Owner
->DescP
: 0;
249 void operator ++(int) {if (S
!= Owner
->DescP
) S
= Owner
->DescP
+ S
->NextDesc
;}
250 inline void operator ++() {operator ++(0);}
253 int CompareDesc(const DescIterator
&B
) const;
256 inline const char *LanguageCode() const {return Owner
->StrP
+ S
->language_code
;}
257 inline const char *md5() const {return Owner
->StrP
+ S
->md5sum
;}
258 inline DescFileIterator
FileList() const;
260 inline DescIterator() : Iterator
<Description
, DescIterator
>() {}
261 inline DescIterator(pkgCache
&Owner
,Description
*Trg
= 0) : Iterator
<Description
, DescIterator
>(Owner
, Trg
) {
267 // Dependency iterator /*{{{*/
268 class pkgCache::DepIterator
: public Iterator
<Dependency
, DepIterator
> {
269 enum {DepVer
, DepRev
} Type
;
272 inline Dependency
* OwnerPointer() const {
273 return (Owner
!= 0) ? Owner
->DepP
: 0;
278 void operator ++(int) {if (S
!= Owner
->DepP
) S
= Owner
->DepP
+
279 (Type
== DepVer
? S
->NextDepends
: S
->NextRevDepends
);}
280 inline void operator ++() {operator ++(0);}
283 inline const char *TargetVer() const {return S
->Version
== 0?0:Owner
->StrP
+ S
->Version
;}
284 inline PkgIterator
TargetPkg() const {return PkgIterator(*Owner
,Owner
->PkgP
+ S
->Package
);}
285 inline PkgIterator
SmartTargetPkg() const {PkgIterator
R(*Owner
,0);SmartTargetPkg(R
);return R
;}
286 inline VerIterator
ParentVer() const {return VerIterator(*Owner
,Owner
->VerP
+ S
->ParentVer
);}
287 inline PkgIterator
ParentPkg() const {return PkgIterator(*Owner
,Owner
->PkgP
+ Owner
->VerP
[S
->ParentVer
].ParentPkg
);}
288 inline bool Reverse() const {return Type
== DepRev
;}
289 bool IsCritical() const;
290 bool IsNegative() const;
291 bool IsIgnorable(PrvIterator
const &Prv
) const;
292 bool IsIgnorable(PkgIterator
const &Pkg
) const;
293 bool IsMultiArchImplicit() const;
294 bool IsSatisfied(VerIterator
const &Ver
) const;
295 bool IsSatisfied(PrvIterator
const &Prv
) const;
296 void GlobOr(DepIterator
&Start
,DepIterator
&End
);
297 Version
**AllTargets() const;
298 bool SmartTargetPkg(PkgIterator
&Result
) const;
299 inline const char *CompType() const {return Owner
->CompType(S
->CompareOp
);}
300 inline const char *DepType() const {return Owner
->DepType(S
->Type
);}
302 //Nice printable representation
303 friend std::ostream
& operator <<(std::ostream
& out
, DepIterator D
);
305 inline DepIterator(pkgCache
&Owner
, Dependency
*Trg
, Version
* = 0) :
306 Iterator
<Dependency
, DepIterator
>(Owner
, Trg
), Type(DepVer
) {
310 inline DepIterator(pkgCache
&Owner
, Dependency
*Trg
, Package
*) :
311 Iterator
<Dependency
, DepIterator
>(Owner
, Trg
), Type(DepRev
) {
315 inline DepIterator() : Iterator
<Dependency
, DepIterator
>(), Type(DepVer
) {}
318 // Provides iterator /*{{{*/
319 class pkgCache::PrvIterator
: public Iterator
<Provides
, PrvIterator
> {
320 enum {PrvVer
, PrvPkg
} Type
;
323 inline Provides
* OwnerPointer() const {
324 return (Owner
!= 0) ? Owner
->ProvideP
: 0;
329 void operator ++(int) {if (S
!= Owner
->ProvideP
) S
= Owner
->ProvideP
+
330 (Type
== PrvVer
?S
->NextPkgProv
:S
->NextProvides
);}
331 inline void operator ++() {operator ++(0);}
334 inline const char *Name() const {return Owner
->StrP
+ Owner
->PkgP
[S
->ParentPkg
].Name
;}
335 inline const char *ProvideVersion() const {return S
->ProvideVersion
== 0?0:Owner
->StrP
+ S
->ProvideVersion
;}
336 inline PkgIterator
ParentPkg() const {return PkgIterator(*Owner
,Owner
->PkgP
+ S
->ParentPkg
);}
337 inline VerIterator
OwnerVer() const {return VerIterator(*Owner
,Owner
->VerP
+ S
->Version
);}
338 inline PkgIterator
OwnerPkg() const {return PkgIterator(*Owner
,Owner
->PkgP
+ Owner
->VerP
[S
->Version
].ParentPkg
);}
340 bool IsMultiArchImplicit() const;
342 inline PrvIterator() : Iterator
<Provides
, PrvIterator
>(), Type(PrvVer
) {}
343 inline PrvIterator(pkgCache
&Owner
, Provides
*Trg
, Version
*) :
344 Iterator
<Provides
, PrvIterator
>(Owner
, Trg
), Type(PrvVer
) {
348 inline PrvIterator(pkgCache
&Owner
, Provides
*Trg
, Package
*) :
349 Iterator
<Provides
, PrvIterator
>(Owner
, Trg
), Type(PrvPkg
) {
355 // Package file /*{{{*/
356 class pkgCache::PkgFileIterator
: public Iterator
<PackageFile
, PkgFileIterator
> {
358 inline PackageFile
* OwnerPointer() const {
359 return (Owner
!= 0) ? Owner
->PkgFileP
: 0;
364 void operator ++(int) {if (S
!= Owner
->PkgFileP
) S
= Owner
->PkgFileP
+ S
->NextFile
;}
365 inline void operator ++() {operator ++(0);}
368 inline const char *FileName() const {return S
->FileName
== 0?0:Owner
->StrP
+ S
->FileName
;}
369 inline const char *Archive() const {return S
->Archive
== 0?0:Owner
->StrP
+ S
->Archive
;}
370 inline const char *Component() const {return S
->Component
== 0?0:Owner
->StrP
+ S
->Component
;}
371 inline const char *Version() const {return S
->Version
== 0?0:Owner
->StrP
+ S
->Version
;}
372 inline const char *Origin() const {return S
->Origin
== 0?0:Owner
->StrP
+ S
->Origin
;}
373 inline const char *Codename() const {return S
->Codename
==0?0:Owner
->StrP
+ S
->Codename
;}
374 inline const char *Label() const {return S
->Label
== 0?0:Owner
->StrP
+ S
->Label
;}
375 inline const char *Site() const {return S
->Site
== 0?0:Owner
->StrP
+ S
->Site
;}
376 inline const char *Architecture() const {return S
->Architecture
== 0?0:Owner
->StrP
+ S
->Architecture
;}
377 inline const char *IndexType() const {return S
->IndexType
== 0?0:Owner
->StrP
+ S
->IndexType
;}
380 std::string
RelStr();
383 inline PkgFileIterator() : Iterator
<PackageFile
, PkgFileIterator
>() {}
384 inline PkgFileIterator(pkgCache
&Owner
) : Iterator
<PackageFile
, PkgFileIterator
>(Owner
, Owner
.PkgFileP
) {}
385 inline PkgFileIterator(pkgCache
&Owner
,PackageFile
*Trg
) : Iterator
<PackageFile
, PkgFileIterator
>(Owner
, Trg
) {}
388 // Version File /*{{{*/
389 class pkgCache::VerFileIterator
: public pkgCache::Iterator
<VerFile
, VerFileIterator
> {
391 inline VerFile
* OwnerPointer() const {
392 return (Owner
!= 0) ? Owner
->VerFileP
: 0;
397 void operator ++(int) {if (S
!= Owner
->VerFileP
) S
= Owner
->VerFileP
+ S
->NextFile
;}
398 inline void operator ++() {operator ++(0);}
401 inline PkgFileIterator
File() const {return PkgFileIterator(*Owner
,S
->File
+ Owner
->PkgFileP
);}
403 inline VerFileIterator() : Iterator
<VerFile
, VerFileIterator
>() {}
404 inline VerFileIterator(pkgCache
&Owner
,VerFile
*Trg
) : Iterator
<VerFile
, VerFileIterator
>(Owner
, Trg
) {}
407 // Description File /*{{{*/
408 class pkgCache::DescFileIterator
: public Iterator
<DescFile
, DescFileIterator
> {
410 inline DescFile
* OwnerPointer() const {
411 return (Owner
!= 0) ? Owner
->DescFileP
: 0;
416 void operator ++(int) {if (S
!= Owner
->DescFileP
) S
= Owner
->DescFileP
+ S
->NextFile
;}
417 inline void operator ++() {operator ++(0);}
420 inline PkgFileIterator
File() const {return PkgFileIterator(*Owner
,S
->File
+ Owner
->PkgFileP
);}
422 inline DescFileIterator() : Iterator
<DescFile
, DescFileIterator
>() {}
423 inline DescFileIterator(pkgCache
&Owner
,DescFile
*Trg
) : Iterator
<DescFile
, DescFileIterator
>(Owner
, Trg
) {}
426 // Inlined Begin functions can't be in the class because of order problems /*{{{*/
427 inline pkgCache::PkgIterator
pkgCache::GrpIterator::PackageList() const
428 {return PkgIterator(*Owner
,Owner
->PkgP
+ S
->FirstPackage
);}
429 inline pkgCache::VerIterator
pkgCache::PkgIterator::VersionList() const
430 {return VerIterator(*Owner
,Owner
->VerP
+ S
->VersionList
);}
431 inline pkgCache::VerIterator
pkgCache::PkgIterator::CurrentVer() const
432 {return VerIterator(*Owner
,Owner
->VerP
+ S
->CurrentVer
);}
433 inline pkgCache::DepIterator
pkgCache::PkgIterator::RevDependsList() const
434 {return DepIterator(*Owner
,Owner
->DepP
+ S
->RevDepends
,S
);}
435 inline pkgCache::PrvIterator
pkgCache::PkgIterator::ProvidesList() const
436 {return PrvIterator(*Owner
,Owner
->ProvideP
+ S
->ProvidesList
,S
);}
437 inline pkgCache::DescIterator
pkgCache::VerIterator::DescriptionList() const
438 {return DescIterator(*Owner
,Owner
->DescP
+ S
->DescriptionList
);}
439 inline pkgCache::PrvIterator
pkgCache::VerIterator::ProvidesList() const
440 {return PrvIterator(*Owner
,Owner
->ProvideP
+ S
->ProvidesList
,S
);}
441 inline pkgCache::DepIterator
pkgCache::VerIterator::DependsList() const
442 {return DepIterator(*Owner
,Owner
->DepP
+ S
->DependsList
,S
);}
443 inline pkgCache::VerFileIterator
pkgCache::VerIterator::FileList() const
444 {return VerFileIterator(*Owner
,Owner
->VerFileP
+ S
->FileList
);}
445 inline pkgCache::DescFileIterator
pkgCache::DescIterator::FileList() const
446 {return DescFileIterator(*Owner
,Owner
->DescFileP
+ S
->FileList
);}