]>
git.saurik.com Git - apt.git/blob - apt-pkg/pkgcache.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: pkgcache.cc,v 1.22 1998/12/14 08:07:29 jgg 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 /*{{{*/
24 #pragma implementation "apt-pkg/pkgcache.h"
25 #pragma implementation "apt-pkg/cacheiterators.h"
27 #include <apt-pkg/pkgcache.h>
28 #include <apt-pkg/version.h>
29 #include <apt-pkg/error.h>
37 // Cache::Header::Header - Constructor /*{{{*/
38 // ---------------------------------------------------------------------
39 /* Simply initialize the header */
40 pkgCache::Header::Header()
42 Signature
= 0x98FE76DC;
44 /* Whenever the structures change the major version should be bumped,
45 whenever the generator changes the minor version should be bumped. */
50 HeaderSz
= sizeof(pkgCache::Header
);
51 PackageSz
= sizeof(pkgCache::Package
);
52 PackageFileSz
= sizeof(pkgCache::PackageFile
);
53 VersionSz
= sizeof(pkgCache::Version
);
54 DependencySz
= sizeof(pkgCache::Dependency
);
55 ProvidesSz
= sizeof(pkgCache::Provides
);
56 VerFileSz
= sizeof(pkgCache::VerFile
);
68 memset(HashTable
,0,sizeof(HashTable
));
69 memset(Pools
,0,sizeof(Pools
));
72 // Cache::Header::CheckSizes - Check if the two headers have same *sz /*{{{*/
73 // ---------------------------------------------------------------------
75 bool pkgCache::Header::CheckSizes(Header
&Against
) const
77 if (HeaderSz
== Against
.HeaderSz
&&
78 PackageSz
== Against
.PackageSz
&&
79 PackageFileSz
== Against
.PackageFileSz
&&
80 VersionSz
== Against
.VersionSz
&&
81 DependencySz
== Against
.DependencySz
&&
82 VerFileSz
== Against
.VerFileSz
&&
83 ProvidesSz
== Against
.ProvidesSz
)
89 // Cache::pkgCache - Constructor /*{{{*/
90 // ---------------------------------------------------------------------
92 pkgCache::pkgCache(MMap
&Map
) : Map(Map
)
97 // Cache::ReMap - Reopen the cache file /*{{{*/
98 // ---------------------------------------------------------------------
99 /* If the file is already closed then this will open it open it. */
100 bool pkgCache::ReMap()
102 // Apply the typecasts.
103 HeaderP
= (Header
*)Map
.Data();
104 PkgP
= (Package
*)Map
.Data();
105 VerFileP
= (VerFile
*)Map
.Data();
106 PkgFileP
= (PackageFile
*)Map
.Data();
107 VerP
= (Version
*)Map
.Data();
108 ProvideP
= (Provides
*)Map
.Data();
109 DepP
= (Dependency
*)Map
.Data();
110 StringItemP
= (StringItem
*)Map
.Data();
111 StrP
= (char *)Map
.Data();
118 if (HeaderP
->Signature
!= DefHeader
.Signature
||
119 HeaderP
->Dirty
== true)
120 return _error
->Error("The package cache file is corrupted");
122 if (HeaderP
->MajorVersion
!= DefHeader
.MajorVersion
||
123 HeaderP
->MinorVersion
!= DefHeader
.MinorVersion
||
124 HeaderP
->CheckSizes(DefHeader
) == false)
125 return _error
->Error("The package cache file is an incompatible version");
130 // Cache::Hash - Hash a string /*{{{*/
131 // ---------------------------------------------------------------------
132 /* This is used to generate the hash entries for the HashTable. With my
133 package list from bo this function gets 94% table usage on a 512 item
134 table (480 used items) */
135 unsigned long pkgCache::sHash(string Str
)
137 unsigned long Hash
= 0;
138 for (const char *I
= Str
.begin(); I
!= Str
.end(); I
++)
139 Hash
+= *I
* ((Str
.end() - I
+ 1));
141 return Hash
% _count(H
.HashTable
);
144 unsigned long pkgCache::sHash(const char *Str
)
146 unsigned long Hash
= 0;
147 const char *End
= Str
+ strlen(Str
);
148 for (const char *I
= Str
; I
!= End
; I
++)
149 Hash
+= *I
* ((End
- I
+ 1));
151 return Hash
% _count(H
.HashTable
);
155 // Cache::FindPkg - Locate a package by name /*{{{*/
156 // ---------------------------------------------------------------------
157 /* Returns 0 on error, pointer to the package otherwise */
158 pkgCache::PkgIterator
pkgCache::FindPkg(string Name
)
160 // Look at the hash bucket
161 Package
*Pkg
= PkgP
+ HeaderP
->HashTable
[Hash(Name
)];
162 for (; Pkg
!= PkgP
; Pkg
= PkgP
+ Pkg
->NextPackage
)
164 if (Pkg
->Name
!= 0 && StrP
[Pkg
->Name
] == Name
[0] &&
165 StrP
+ Pkg
->Name
== Name
)
166 return PkgIterator(*this,Pkg
);
168 return PkgIterator(*this,0);
171 // Cache::Priority - Convert a priority value to a string /*{{{*/
172 // ---------------------------------------------------------------------
174 const char *pkgCache::Priority(unsigned char Prio
)
176 const char *Mapping
[] = {0,"important","required","standard","optional","extra"};
177 if (Prio
< _count(Mapping
))
178 return Mapping
[Prio
];
183 // Bases for iterator classes /*{{{*/
184 void pkgCache::VerIterator::_dummy() {}
185 void pkgCache::DepIterator::_dummy() {}
186 void pkgCache::PrvIterator::_dummy() {}
188 // PkgIterator::operator ++ - Postfix incr /*{{{*/
189 // ---------------------------------------------------------------------
190 /* This will advance to the next logical package in the hash table. */
191 void pkgCache::PkgIterator::operator ++(int)
193 // Follow the current links
194 if (Pkg
!= Owner
->PkgP
)
195 Pkg
= Owner
->PkgP
+ Pkg
->NextPackage
;
197 // Follow the hash table
198 while (Pkg
== Owner
->PkgP
&& HashIndex
< (signed)_count(Owner
->HeaderP
->HashTable
))
201 Pkg
= Owner
->PkgP
+ Owner
->HeaderP
->HashTable
[HashIndex
];
205 // PkgIterator::State - Check the State of the package /*{{{*/
206 // ---------------------------------------------------------------------
207 /* By this we mean if it is either cleanly installed or cleanly removed. */
208 pkgCache::PkgIterator::OkState
pkgCache::PkgIterator::State() const
210 if (Pkg
->InstState
== pkgCache::State::ReInstReq
||
211 Pkg
->InstState
== pkgCache::State::HoldReInstReq
)
214 if (Pkg
->CurrentState
== pkgCache::State::UnPacked
||
215 Pkg
->CurrentState
== pkgCache::State::HalfConfigured
)
216 return NeedsConfigure
;
218 if (Pkg
->CurrentState
== pkgCache::State::UnInstalled
||
219 Pkg
->CurrentState
== pkgCache::State::HalfInstalled
||
220 Pkg
->InstState
!= pkgCache::State::Ok
)
226 // DepIterator::IsCritical - Returns true if the dep is important /*{{{*/
227 // ---------------------------------------------------------------------
228 /* Currently critical deps are defined as depends, predepends and
230 bool pkgCache::DepIterator::IsCritical()
232 if (Dep
->Type
== pkgCache::Dep::Conflicts
||
233 Dep
->Type
== pkgCache::Dep::Depends
||
234 Dep
->Type
== pkgCache::Dep::PreDepends
)
239 // DepIterator::SmartTargetPkg - Resolve dep target pointers w/provides /*{{{*/
240 // ---------------------------------------------------------------------
241 /* This intellegently looks at dep target packages and tries to figure
242 out which package should be used. This is needed to nicely handle
243 provide mapping. If the target package has no other providing packages
244 then it returned. Otherwise the providing list is looked at to
245 see if there is one one unique providing package if so it is returned.
246 Otherwise true is returned and the target package is set. The return
247 result indicates whether the node should be expandable */
248 bool pkgCache::DepIterator::SmartTargetPkg(PkgIterator
&Result
)
250 Result
= TargetPkg();
252 // No provides at all
253 if (Result
->ProvidesList
== 0)
256 // There is the Base package and the providing ones which is at least 2
257 if (Result
->VersionList
!= 0)
260 /* We have to skip over indirect provisions of the package that
261 owns the dependency. For instance, if libc5-dev depends on the
262 virtual package libc-dev which is provided by libc5-dev and libc6-dev
263 we must ignore libc5-dev when considering the provides list. */
264 PrvIterator PStart
= Result
.ProvidesList();
265 for (; PStart
.end() != true && PStart
.OwnerPkg() == ParentPkg(); PStart
++);
267 // Nothing but indirect self provides
268 if (PStart
.end() == true)
271 // Check for single packages in the provides list
272 PrvIterator P
= PStart
;
273 for (; P
.end() != true; P
++)
275 // Skip over self provides
276 if (P
.OwnerPkg() == ParentPkg())
278 if (PStart
.OwnerPkg() != P
.OwnerPkg())
282 // Check for non dups
285 Result
= PStart
.OwnerPkg();
289 // DepIterator::AllTargets - Returns the set of all possible targets /*{{{*/
290 // ---------------------------------------------------------------------
291 /* This is a more usefull version of TargetPkg() that follows versioned
292 provides. It includes every possible package-version that could satisfy
293 the dependency. The last item in the list has a 0. The resulting pointer
294 must be delete [] 'd */
295 pkgCache::Version
**pkgCache::DepIterator::AllTargets()
298 unsigned long Size
=0;
302 PkgIterator DPkg
= TargetPkg();
304 // Walk along the actual package providing versions
305 for (VerIterator I
= DPkg
.VersionList(); I
.end() == false; I
++)
307 if (pkgCheckDep(TargetVer(),I
.VerStr(),Dep
->CompareOp
) == false)
310 if (Dep
->Type
== pkgCache::Dep::Conflicts
&&
311 ParentPkg() == I
.ParentPkg())
319 // Follow all provides
320 for (PrvIterator I
= DPkg
.ProvidesList(); I
.end() == false; I
++)
322 if (pkgCheckDep(TargetVer(),I
.ProvideVersion(),Dep
->CompareOp
) == false)
325 if (Dep
->Type
== pkgCache::Dep::Conflicts
&&
326 ParentPkg() == I
.OwnerPkg())
331 *End
++ = I
.OwnerVer();
334 // Do it again and write it into the array
337 Res
= new Version
*[Size
+1];
350 // DepIterator::CompType - Return a string describing the compare type /*{{{*/
351 // ---------------------------------------------------------------------
352 /* This returns a string representation of the dependency compare
354 const char *pkgCache::DepIterator::CompType()
356 const char *Ops
[] = {"","<=",">=","<",">","=","!="};
357 if ((unsigned)(Dep
->CompareOp
& 0xF) < 7)
358 return Ops
[Dep
->CompareOp
& 0xF];
362 // DepIterator::DepType - Return a string describing the dep type /*{{{*/
363 // ---------------------------------------------------------------------
365 const char *pkgCache::DepIterator::DepType()
367 const char *Types
[] = {"","Depends","PreDepends","Suggests",
368 "Recommends","Conflicts","Replaces"};
370 return Types
[Dep
->Type
];
374 // DepIterator::GlobOr - Compute an OR group /*{{{*/
375 // ---------------------------------------------------------------------
376 /* This Takes an iterator, iterates past the current dependency grouping
377 and returns Start and End so that so End is the final element
378 in the group, if End == Start then D is End++ and End is the
379 dependency D was pointing to. Use in loops to iterate sensibly. */
380 void pkgCache::DepIterator::GlobOr(DepIterator
&Start
,DepIterator
&End
)
382 // Compute a single dependency element (glob or)
385 for (bool LastOR
= true; end() == false && LastOR
== true;)
387 LastOR
= (Dep
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
;
394 // VerIterator::CompareVer - Fast version compare for same pkgs /*{{{*/
395 // ---------------------------------------------------------------------
396 /* This just looks over the version list to see if B is listed before A. In
397 most cases this will return in under 4 checks, ver lists are short. */
398 int pkgCache::VerIterator::CompareVer(const VerIterator
&B
) const
400 // Check if they are equal
408 /* Start at A and look for B. If B is found then A > B otherwise
409 B was before A so A < B */
410 VerIterator I
= *this;
411 for (;I
.end() == false; I
++)
417 // VerIterator::Downloadable - Checks if the version is downloadable /*{{{*/
418 // ---------------------------------------------------------------------
420 bool pkgCache::VerIterator::Downloadable() const
422 VerFileIterator Files
= FileList();
423 for (; Files
.end() == false; Files
++)
424 if ((Files
.File()->Flags
& pkgCache::Flag::NotSource
) != pkgCache::Flag::NotSource
)
429 // VerIterator::PriorityType - Return a string describing the priority /*{{{*/
430 // ---------------------------------------------------------------------
432 const char *pkgCache::VerIterator::PriorityType()
434 const char *Types
[] = {"","Important","Required","Standard",
436 if (Ver
->Priority
< 6)
437 return Types
[Ver
->Priority
];
441 // VerIterator::Automatic - Check if this version is 'automatic' /*{{{*/
442 // ---------------------------------------------------------------------
443 /* This checks to see if any of the versions files are not NotAutomatic.
444 True if this version is selectable for automatic installation. */
445 bool pkgCache::VerIterator::Automatic() const
447 VerFileIterator Files
= FileList();
448 for (; Files
.end() == false; Files
++)
449 if ((Files
.File()->Flags
& pkgCache::Flag::NotAutomatic
) != pkgCache::Flag::NotAutomatic
)
454 // VerIterator::NewestFile - Return the newest file version relation /*{{{*/
455 // ---------------------------------------------------------------------
456 /* This looks at the version numbers associated with all of the sources
457 this version is in and returns the highest.*/
458 pkgCache::VerFileIterator
pkgCache::VerIterator::NewestFile() const
460 VerFileIterator Files
= FileList();
461 VerFileIterator Highest
= Files
;
462 for (; Files
.end() == false; Files
++)
464 if (pkgVersionCompare(Files
.File().Version(),Highest
.File().Version()) > 0)
471 // PkgFileIterator::IsOk - Checks if the cache is in sync with the file /*{{{*/
472 // ---------------------------------------------------------------------
473 /* This stats the file and compares its stats with the ones that were
474 stored during generation. Date checks should probably also be
476 bool pkgCache::PkgFileIterator::IsOk()
479 if (stat(FileName(),&Buf
) != 0)
482 if (Buf
.st_size
!= (signed)File
->Size
|| Buf
.st_mtime
!= File
->mtime
)