Multiple different versions support
[ntk/apt.git] / apt-pkg / pkgcache.cc
CommitLineData
578bfd0a
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
204fbdcc 3// $Id: pkgcache.cc,v 1.25 1999/05/23 22:55:54 jgg Exp $
578bfd0a
AL
4/* ######################################################################
5
6 Package Cache - Accessor code for the cache
7
094a497d 8 Please see doc/apt-pkg/cache.sgml for a more detailed description of
578bfd0a
AL
9 this format. Also be sure to keep that file up-to-date!!
10
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.
16
17 The main class provides for ways to get package indexes and some
18 general lookup functions to start the iterators.
19
20 ##################################################################### */
21 /*}}}*/
22// Include Files /*{{{*/
6c139d6e 23#ifdef __GNUG__
094a497d
AL
24#pragma implementation "apt-pkg/pkgcache.h"
25#pragma implementation "apt-pkg/cacheiterators.h"
6c139d6e 26#endif
094a497d
AL
27#include <apt-pkg/pkgcache.h>
28#include <apt-pkg/version.h>
29#include <apt-pkg/error.h>
578bfd0a
AL
30#include <system.h>
31
32#include <string>
33#include <sys/stat.h>
34#include <unistd.h>
35 /*}}}*/
36
37// Cache::Header::Header - Constructor /*{{{*/
38// ---------------------------------------------------------------------
39/* Simply initialize the header */
40pkgCache::Header::Header()
41{
42 Signature = 0x98FE76DC;
43
44 /* Whenever the structures change the major version should be bumped,
45 whenever the generator changes the minor version should be bumped. */
204fbdcc
AL
46 MajorVersion = 3;
47 MinorVersion = 1;
578bfd0a
AL
48 Dirty = true;
49
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);
dcb79bae
AL
56 VerFileSz = sizeof(pkgCache::VerFile);
57
578bfd0a
AL
58 PackageCount = 0;
59 VersionCount = 0;
60 DependsCount = 0;
61 PackageFileCount = 0;
a7e66b17
AL
62 VerFileCount = 0;
63 ProvidesCount = 0;
ad00ae81 64 MaxVerFileSize = 0;
578bfd0a
AL
65
66 FileList = 0;
67 StringList = 0;
68 memset(HashTable,0,sizeof(HashTable));
69 memset(Pools,0,sizeof(Pools));
70}
71 /*}}}*/
72// Cache::Header::CheckSizes - Check if the two headers have same *sz /*{{{*/
73// ---------------------------------------------------------------------
74/* */
75bool pkgCache::Header::CheckSizes(Header &Against) const
76{
77 if (HeaderSz == Against.HeaderSz &&
78 PackageSz == Against.PackageSz &&
79 PackageFileSz == Against.PackageFileSz &&
80 VersionSz == Against.VersionSz &&
dcb79bae
AL
81 DependencySz == Against.DependencySz &&
82 VerFileSz == Against.VerFileSz &&
578bfd0a
AL
83 ProvidesSz == Against.ProvidesSz)
84 return true;
85 return false;
86}
87 /*}}}*/
88
89// Cache::pkgCache - Constructor /*{{{*/
90// ---------------------------------------------------------------------
91/* */
92pkgCache::pkgCache(MMap &Map) : Map(Map)
93{
94 ReMap();
95}
96 /*}}}*/
97// Cache::ReMap - Reopen the cache file /*{{{*/
98// ---------------------------------------------------------------------
99/* If the file is already closed then this will open it open it. */
100bool pkgCache::ReMap()
101{
102 // Apply the typecasts.
103 HeaderP = (Header *)Map.Data();
104 PkgP = (Package *)Map.Data();
dcb79bae 105 VerFileP = (VerFile *)Map.Data();
578bfd0a
AL
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();
112
578bfd0a
AL
113 if (Map.Size() == 0)
114 return false;
115
116 // Check the header
117 Header DefHeader;
118 if (HeaderP->Signature != DefHeader.Signature ||
119 HeaderP->Dirty == true)
120 return _error->Error("The package cache file is corrupted");
121
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");
126
127 return true;
128}
129 /*}}}*/
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) */
f9eec0e7 135unsigned long pkgCache::sHash(string Str) const
578bfd0a
AL
136{
137 unsigned long Hash = 0;
138 for (const char *I = Str.begin(); I != Str.end(); I++)
f9eec0e7
AL
139 Hash = 5*Hash + *I;
140 return Hash % _count(HeaderP->HashTable);
578bfd0a
AL
141}
142
f9eec0e7 143unsigned long pkgCache::sHash(const char *Str) const
578bfd0a
AL
144{
145 unsigned long Hash = 0;
f9eec0e7
AL
146 for (const char *I = Str; *I != 0; I++)
147 Hash = 5*Hash + *I;
148 return Hash % _count(HeaderP->HashTable);
578bfd0a
AL
149}
150
151 /*}}}*/
152// Cache::FindPkg - Locate a package by name /*{{{*/
153// ---------------------------------------------------------------------
154/* Returns 0 on error, pointer to the package otherwise */
155pkgCache::PkgIterator pkgCache::FindPkg(string Name)
156{
157 // Look at the hash bucket
158 Package *Pkg = PkgP + HeaderP->HashTable[Hash(Name)];
159 for (; Pkg != PkgP; Pkg = PkgP + Pkg->NextPackage)
160 {
c1a22377
AL
161 if (Pkg->Name != 0 && StrP[Pkg->Name] == Name[0] &&
162 StrP + Pkg->Name == Name)
578bfd0a 163 return PkgIterator(*this,Pkg);
f9eec0e7 164// cout << "b" << flush;
578bfd0a
AL
165 }
166 return PkgIterator(*this,0);
167}
168 /*}}}*/
0149949b
AL
169// Cache::Priority - Convert a priority value to a string /*{{{*/
170// ---------------------------------------------------------------------
171/* */
172const char *pkgCache::Priority(unsigned char Prio)
173{
174 const char *Mapping[] = {0,"important","required","standard","optional","extra"};
175 if (Prio < _count(Mapping))
176 return Mapping[Prio];
177 return 0;
178}
179 /*}}}*/
1fcbfcb8
AL
180// Cache::GetCandidateVer - Returns the Candidate install version /*{{{*/
181// ---------------------------------------------------------------------
182/* The default just returns the highest available version that is not
183 a source and automatic */
184pkgCache::VerIterator pkgCache::GetCandidateVer(PkgIterator Pkg,
185 bool AllowCurrent)
186{
187 /* Not source/not automatic versions cannot be a candidate version
188 unless they are already installed */
189 VerIterator Last(*this,0);
190
191 for (VerIterator I = Pkg.VersionList(); I.end() == false; I++)
192 {
193 if (Pkg.CurrentVer() == I && AllowCurrent == true)
194 return I;
195
196 for (VerFileIterator J = I.FileList(); J.end() == false; J++)
197 {
198 if ((J.File()->Flags & Flag::NotSource) != 0)
199 continue;
200
201 /* Stash the highest version of a not-automatic source, we use it
202 if there is nothing better */
203 if ((J.File()->Flags & Flag::NotAutomatic) != 0)
204 {
205 if (Last.end() == true)
206 Last = I;
207 continue;
208 }
209
210 return I;
211 }
212 }
213
214 return Last;
215}
216 /*}}}*/
578bfd0a 217
f55a958f
AL
218// Bases for iterator classes /*{{{*/
219void pkgCache::VerIterator::_dummy() {}
220void pkgCache::DepIterator::_dummy() {}
221void pkgCache::PrvIterator::_dummy() {}
222 /*}}}*/
223// PkgIterator::operator ++ - Postfix incr /*{{{*/
578bfd0a
AL
224// ---------------------------------------------------------------------
225/* This will advance to the next logical package in the hash table. */
226void pkgCache::PkgIterator::operator ++(int)
227{
228 // Follow the current links
229 if (Pkg != Owner->PkgP)
230 Pkg = Owner->PkgP + Pkg->NextPackage;
231
232 // Follow the hash table
233 while (Pkg == Owner->PkgP && HashIndex < (signed)_count(Owner->HeaderP->HashTable))
234 {
235 HashIndex++;
236 Pkg = Owner->PkgP + Owner->HeaderP->HashTable[HashIndex];
237 }
238};
239 /*}}}*/
578bfd0a
AL
240// PkgIterator::State - Check the State of the package /*{{{*/
241// ---------------------------------------------------------------------
242/* By this we mean if it is either cleanly installed or cleanly removed. */
243pkgCache::PkgIterator::OkState pkgCache::PkgIterator::State() const
d38b7b3d 244{
c7c1b0f6
AL
245 if (Pkg->InstState == pkgCache::State::ReInstReq ||
246 Pkg->InstState == pkgCache::State::HoldReInstReq)
247 return NeedsUnpack;
248
7d4f285b
AL
249 if (Pkg->CurrentState == pkgCache::State::UnPacked ||
250 Pkg->CurrentState == pkgCache::State::HalfConfigured)
578bfd0a
AL
251 return NeedsConfigure;
252
7d4f285b
AL
253 if (Pkg->CurrentState == pkgCache::State::UnInstalled ||
254 Pkg->CurrentState == pkgCache::State::HalfInstalled ||
255 Pkg->InstState != pkgCache::State::Ok)
578bfd0a
AL
256 return NeedsUnpack;
257
258 return NeedsNothing;
259}
260 /*}}}*/
261// DepIterator::IsCritical - Returns true if the dep is important /*{{{*/
262// ---------------------------------------------------------------------
263/* Currently critical deps are defined as depends, predepends and
264 conflicts. */
265bool pkgCache::DepIterator::IsCritical()
266{
f07b5628
AL
267 if (Dep->Type == pkgCache::Dep::Conflicts ||
268 Dep->Type == pkgCache::Dep::Depends ||
269 Dep->Type == pkgCache::Dep::PreDepends)
578bfd0a
AL
270 return true;
271 return false;
272}
273 /*}}}*/
274// DepIterator::SmartTargetPkg - Resolve dep target pointers w/provides /*{{{*/
275// ---------------------------------------------------------------------
276/* This intellegently looks at dep target packages and tries to figure
277 out which package should be used. This is needed to nicely handle
278 provide mapping. If the target package has no other providing packages
279 then it returned. Otherwise the providing list is looked at to
280 see if there is one one unique providing package if so it is returned.
281 Otherwise true is returned and the target package is set. The return
282 result indicates whether the node should be expandable */
283bool pkgCache::DepIterator::SmartTargetPkg(PkgIterator &Result)
284{
285 Result = TargetPkg();
286
287 // No provides at all
288 if (Result->ProvidesList == 0)
289 return false;
290
291 // There is the Base package and the providing ones which is at least 2
292 if (Result->VersionList != 0)
293 return true;
294
295 /* We have to skip over indirect provisions of the package that
296 owns the dependency. For instance, if libc5-dev depends on the
297 virtual package libc-dev which is provided by libc5-dev and libc6-dev
298 we must ignore libc5-dev when considering the provides list. */
299 PrvIterator PStart = Result.ProvidesList();
300 for (; PStart.end() != true && PStart.OwnerPkg() == ParentPkg(); PStart++);
301
302 // Nothing but indirect self provides
303 if (PStart.end() == true)
304 return false;
305
306 // Check for single packages in the provides list
307 PrvIterator P = PStart;
308 for (; P.end() != true; P++)
309 {
310 // Skip over self provides
311 if (P.OwnerPkg() == ParentPkg())
312 continue;
313 if (PStart.OwnerPkg() != P.OwnerPkg())
314 break;
315 }
316
317 // Check for non dups
318 if (P.end() != true)
319 return true;
320 Result = PStart.OwnerPkg();
321 return false;
322}
323 /*}}}*/
324// DepIterator::AllTargets - Returns the set of all possible targets /*{{{*/
325// ---------------------------------------------------------------------
326/* This is a more usefull version of TargetPkg() that follows versioned
327 provides. It includes every possible package-version that could satisfy
fbfb2a7c
AL
328 the dependency. The last item in the list has a 0. The resulting pointer
329 must be delete [] 'd */
578bfd0a
AL
330pkgCache::Version **pkgCache::DepIterator::AllTargets()
331{
332 Version **Res = 0;
333 unsigned long Size =0;
334 while (1)
335 {
336 Version **End = Res;
337 PkgIterator DPkg = TargetPkg();
338
339 // Walk along the actual package providing versions
340 for (VerIterator I = DPkg.VersionList(); I.end() == false; I++)
341 {
342 if (pkgCheckDep(TargetVer(),I.VerStr(),Dep->CompareOp) == false)
343 continue;
344
f07b5628
AL
345 if (Dep->Type == pkgCache::Dep::Conflicts &&
346 ParentPkg() == I.ParentPkg())
578bfd0a
AL
347 continue;
348
349 Size++;
350 if (Res != 0)
351 *End++ = I;
352 }
353
354 // Follow all provides
355 for (PrvIterator I = DPkg.ProvidesList(); I.end() == false; I++)
356 {
357 if (pkgCheckDep(TargetVer(),I.ProvideVersion(),Dep->CompareOp) == false)
358 continue;
359
f07b5628
AL
360 if (Dep->Type == pkgCache::Dep::Conflicts &&
361 ParentPkg() == I.OwnerPkg())
578bfd0a
AL
362 continue;
363
364 Size++;
365 if (Res != 0)
366 *End++ = I.OwnerVer();
367 }
368
369 // Do it again and write it into the array
370 if (Res == 0)
371 {
372 Res = new Version *[Size+1];
373 Size = 0;
374 }
375 else
376 {
377 *End = 0;
378 break;
379 }
380 }
381
382 return Res;
383}
384 /*}}}*/
0a8e3465
AL
385// DepIterator::CompType - Return a string describing the compare type /*{{{*/
386// ---------------------------------------------------------------------
387/* This returns a string representation of the dependency compare
388 type */
389const char *pkgCache::DepIterator::CompType()
390{
391 const char *Ops[] = {"","<=",">=","<",">","=","!="};
43d017d6 392 if ((unsigned)(Dep->CompareOp & 0xF) < 7)
0a8e3465
AL
393 return Ops[Dep->CompareOp & 0xF];
394 return "";
395}
396 /*}}}*/
43d017d6
AL
397// DepIterator::DepType - Return a string describing the dep type /*{{{*/
398// ---------------------------------------------------------------------
399/* */
400const char *pkgCache::DepIterator::DepType()
401{
402 const char *Types[] = {"","Depends","PreDepends","Suggests",
403 "Recommends","Conflicts","Replaces"};
404 if (Dep->Type < 7)
405 return Types[Dep->Type];
406 return "";
407}
408 /*}}}*/
409// DepIterator::GlobOr - Compute an OR group /*{{{*/
410// ---------------------------------------------------------------------
411/* This Takes an iterator, iterates past the current dependency grouping
412 and returns Start and End so that so End is the final element
413 in the group, if End == Start then D is End++ and End is the
414 dependency D was pointing to. Use in loops to iterate sensibly. */
415void pkgCache::DepIterator::GlobOr(DepIterator &Start,DepIterator &End)
416{
417 // Compute a single dependency element (glob or)
418 Start = *this;
419 End = *this;
018f1533 420 for (bool LastOR = true; end() == false && LastOR == true;)
43d017d6
AL
421 {
422 LastOR = (Dep->CompareOp & pkgCache::Dep::Or) == pkgCache::Dep::Or;
018f1533 423 (*this)++;
43d017d6
AL
424 if (LastOR == true)
425 End = (*this);
426 }
427}
428 /*}}}*/
578bfd0a
AL
429// VerIterator::CompareVer - Fast version compare for same pkgs /*{{{*/
430// ---------------------------------------------------------------------
431/* This just looks over the version list to see if B is listed before A. In
432 most cases this will return in under 4 checks, ver lists are short. */
433int pkgCache::VerIterator::CompareVer(const VerIterator &B) const
434{
435 // Check if they are equal
436 if (*this == B)
437 return 0;
438 if (end() == true)
439 return -1;
440 if (B.end() == true)
441 return 1;
442
443 /* Start at A and look for B. If B is found then A > B otherwise
444 B was before A so A < B */
445 VerIterator I = *this;
446 for (;I.end() == false; I++)
447 if (I == B)
448 return 1;
449 return -1;
450}
451 /*}}}*/
b518cca6
AL
452// VerIterator::Downloadable - Checks if the version is downloadable /*{{{*/
453// ---------------------------------------------------------------------
454/* */
455bool pkgCache::VerIterator::Downloadable() const
456{
457 VerFileIterator Files = FileList();
458 for (; Files.end() == false; Files++)
f07b5628 459 if ((Files.File()->Flags & pkgCache::Flag::NotSource) != pkgCache::Flag::NotSource)
b518cca6
AL
460 return true;
461 return false;
462}
463 /*}}}*/
c9807169
AL
464// VerIterator::PriorityType - Return a string describing the priority /*{{{*/
465// ---------------------------------------------------------------------
466/* */
467const char *pkgCache::VerIterator::PriorityType()
468{
469 const char *Types[] = {"","Important","Required","Standard",
470 "Optional","Extra"};
471 if (Ver->Priority < 6)
472 return Types[Ver->Priority];
473 return "";
474}
475 /*}}}*/
3c124dde
AL
476// VerIterator::Automatic - Check if this version is 'automatic' /*{{{*/
477// ---------------------------------------------------------------------
478/* This checks to see if any of the versions files are not NotAutomatic.
479 True if this version is selectable for automatic installation. */
480bool pkgCache::VerIterator::Automatic() const
481{
482 VerFileIterator Files = FileList();
483 for (; Files.end() == false; Files++)
484 if ((Files.File()->Flags & pkgCache::Flag::NotAutomatic) != pkgCache::Flag::NotAutomatic)
485 return true;
486 return false;
487}
488 /*}}}*/
489// VerIterator::NewestFile - Return the newest file version relation /*{{{*/
490// ---------------------------------------------------------------------
491/* This looks at the version numbers associated with all of the sources
492 this version is in and returns the highest.*/
493pkgCache::VerFileIterator pkgCache::VerIterator::NewestFile() const
494{
495 VerFileIterator Files = FileList();
496 VerFileIterator Highest = Files;
497 for (; Files.end() == false; Files++)
498 {
499 if (pkgVersionCompare(Files.File().Version(),Highest.File().Version()) > 0)
500 Highest = Files;
501 }
502
503 return Highest;
504}
505 /*}}}*/
578bfd0a
AL
506// PkgFileIterator::IsOk - Checks if the cache is in sync with the file /*{{{*/
507// ---------------------------------------------------------------------
508/* This stats the file and compares its stats with the ones that were
509 stored during generation. Date checks should probably also be
510 included here. */
511bool pkgCache::PkgFileIterator::IsOk()
512{
513 struct stat Buf;
514 if (stat(FileName(),&Buf) != 0)
515 return false;
516
517 if (Buf.st_size != (signed)File->Size || Buf.st_mtime != File->mtime)
518 return false;
519
520 return true;
521}
522 /*}}}*/