]> git.saurik.com Git - apt.git/blame - apt-pkg/pkgcache.cc
Remove and Unpack operations should not be ignored for pseudo packages -
[apt.git] / apt-pkg / pkgcache.cc
CommitLineData
578bfd0a
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
bac2e715 3// $Id: pkgcache.cc,v 1.37 2003/02/10 01:40:58 doogie 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 /*{{{*/
094a497d 23#include <apt-pkg/pkgcache.h>
af29ffb4 24#include <apt-pkg/policy.h>
094a497d
AL
25#include <apt-pkg/version.h>
26#include <apt-pkg/error.h>
231fea14 27#include <apt-pkg/strutl.h>
b2e465d6 28#include <apt-pkg/configuration.h>
45df0ad2 29#include <apt-pkg/aptconfiguration.h>
5c0d3668 30#include <apt-pkg/macros.h>
578bfd0a 31
b2e465d6
AL
32#include <apti18n.h>
33
578bfd0a
AL
34#include <string>
35#include <sys/stat.h>
36#include <unistd.h>
1ae93c94 37
851a45a8 38#include <ctype.h>
578bfd0a
AL
39 /*}}}*/
40
851a45a8
AL
41using std::string;
42
012b102a 43
578bfd0a
AL
44// Cache::Header::Header - Constructor /*{{{*/
45// ---------------------------------------------------------------------
46/* Simply initialize the header */
47pkgCache::Header::Header()
48{
49 Signature = 0x98FE76DC;
50
51 /* Whenever the structures change the major version should be bumped,
52 whenever the generator changes the minor version should be bumped. */
f8ae7e8b 53 MajorVersion = 8;
6a3da7a6 54 MinorVersion = 0;
b2e465d6 55 Dirty = false;
578bfd0a
AL
56
57 HeaderSz = sizeof(pkgCache::Header);
58 PackageSz = sizeof(pkgCache::Package);
59 PackageFileSz = sizeof(pkgCache::PackageFile);
60 VersionSz = sizeof(pkgCache::Version);
a52f938b 61 DescriptionSz = sizeof(pkgCache::Description);
578bfd0a
AL
62 DependencySz = sizeof(pkgCache::Dependency);
63 ProvidesSz = sizeof(pkgCache::Provides);
dcb79bae 64 VerFileSz = sizeof(pkgCache::VerFile);
a52f938b 65 DescFileSz = sizeof(pkgCache::DescFile);
dcb79bae 66
578bfd0a
AL
67 PackageCount = 0;
68 VersionCount = 0;
a52f938b 69 DescriptionCount = 0;
578bfd0a
AL
70 DependsCount = 0;
71 PackageFileCount = 0;
a7e66b17 72 VerFileCount = 0;
a52f938b 73 DescFileCount = 0;
a7e66b17 74 ProvidesCount = 0;
ad00ae81 75 MaxVerFileSize = 0;
a52f938b 76 MaxDescFileSize = 0;
578bfd0a
AL
77
78 FileList = 0;
79 StringList = 0;
b2e465d6
AL
80 VerSysName = 0;
81 Architecture = 0;
5bf15716
DK
82 memset(PkgHashTable,0,sizeof(PkgHashTable));
83 memset(GrpHashTable,0,sizeof(GrpHashTable));
578bfd0a
AL
84 memset(Pools,0,sizeof(Pools));
85}
86 /*}}}*/
87// Cache::Header::CheckSizes - Check if the two headers have same *sz /*{{{*/
88// ---------------------------------------------------------------------
89/* */
90bool pkgCache::Header::CheckSizes(Header &Against) const
91{
92 if (HeaderSz == Against.HeaderSz &&
93 PackageSz == Against.PackageSz &&
94 PackageFileSz == Against.PackageFileSz &&
95 VersionSz == Against.VersionSz &&
a52f938b 96 DescriptionSz == Against.DescriptionSz &&
dcb79bae
AL
97 DependencySz == Against.DependencySz &&
98 VerFileSz == Against.VerFileSz &&
a52f938b 99 DescFileSz == Against.DescFileSz &&
578bfd0a
AL
100 ProvidesSz == Against.ProvidesSz)
101 return true;
102 return false;
103}
104 /*}}}*/
105
106// Cache::pkgCache - Constructor /*{{{*/
107// ---------------------------------------------------------------------
108/* */
b2e465d6 109pkgCache::pkgCache(MMap *Map, bool DoMap) : Map(*Map)
578bfd0a 110{
b2e465d6
AL
111 if (DoMap == true)
112 ReMap();
578bfd0a
AL
113}
114 /*}}}*/
115// Cache::ReMap - Reopen the cache file /*{{{*/
116// ---------------------------------------------------------------------
117/* If the file is already closed then this will open it open it. */
118bool pkgCache::ReMap()
119{
120 // Apply the typecasts.
121 HeaderP = (Header *)Map.Data();
5bf15716 122 GrpP = (Group *)Map.Data();
578bfd0a 123 PkgP = (Package *)Map.Data();
dcb79bae 124 VerFileP = (VerFile *)Map.Data();
a52f938b 125 DescFileP = (DescFile *)Map.Data();
578bfd0a
AL
126 PkgFileP = (PackageFile *)Map.Data();
127 VerP = (Version *)Map.Data();
a52f938b 128 DescP = (Description *)Map.Data();
578bfd0a
AL
129 ProvideP = (Provides *)Map.Data();
130 DepP = (Dependency *)Map.Data();
131 StringItemP = (StringItem *)Map.Data();
132 StrP = (char *)Map.Data();
133
b2e465d6
AL
134 if (Map.Size() == 0 || HeaderP == 0)
135 return _error->Error(_("Empty package cache"));
578bfd0a
AL
136
137 // Check the header
138 Header DefHeader;
139 if (HeaderP->Signature != DefHeader.Signature ||
140 HeaderP->Dirty == true)
b2e465d6 141 return _error->Error(_("The package cache file is corrupted"));
578bfd0a
AL
142
143 if (HeaderP->MajorVersion != DefHeader.MajorVersion ||
144 HeaderP->MinorVersion != DefHeader.MinorVersion ||
145 HeaderP->CheckSizes(DefHeader) == false)
b2e465d6
AL
146 return _error->Error(_("The package cache file is an incompatible version"));
147
148 // Locate our VS..
149 if (HeaderP->VerSysName == 0 ||
150 (VS = pkgVersioningSystem::GetVS(StrP + HeaderP->VerSysName)) == 0)
db0db9fe 151 return _error->Error(_("This APT does not support the versioning system '%s'"),StrP + HeaderP->VerSysName);
b2e465d6
AL
152
153 // Chcek the arhcitecture
154 if (HeaderP->Architecture == 0 ||
155 _config->Find("APT::Architecture") != StrP + HeaderP->Architecture)
bac2e715 156 return _error->Error(_("The package cache was built for a different architecture"));
578bfd0a
AL
157 return true;
158}
159 /*}}}*/
160// Cache::Hash - Hash a string /*{{{*/
161// ---------------------------------------------------------------------
162/* This is used to generate the hash entries for the HashTable. With my
163 package list from bo this function gets 94% table usage on a 512 item
164 table (480 used items) */
171c75f1 165unsigned long pkgCache::sHash(const string &Str) const
578bfd0a
AL
166{
167 unsigned long Hash = 0;
851a45a8 168 for (string::const_iterator I = Str.begin(); I != Str.end(); I++)
4e86942a 169 Hash = 5*Hash + tolower_ascii(*I);
5bf15716 170 return Hash % _count(HeaderP->PkgHashTable);
578bfd0a
AL
171}
172
f9eec0e7 173unsigned long pkgCache::sHash(const char *Str) const
578bfd0a
AL
174{
175 unsigned long Hash = 0;
f9eec0e7 176 for (const char *I = Str; *I != 0; I++)
4e86942a 177 Hash = 5*Hash + tolower_ascii(*I);
5bf15716 178 return Hash % _count(HeaderP->PkgHashTable);
578bfd0a
AL
179}
180
181 /*}}}*/
182// Cache::FindPkg - Locate a package by name /*{{{*/
183// ---------------------------------------------------------------------
184/* Returns 0 on error, pointer to the package otherwise */
25396fb0
DK
185pkgCache::PkgIterator pkgCache::FindPkg(const string &Name) {
186 size_t const found = Name.find(':');
187 if (found == string::npos)
188 return FindPkg(Name, "native");
4d174dc8
DK
189 string const Arch = Name.substr(found+1);
190 if (Arch == "any")
191 return FindPkg(Name, "any");
192 return FindPkg(Name.substr(0, found), Arch);
25396fb0
DK
193}
194 /*}}}*/
195// Cache::FindPkg - Locate a package by name /*{{{*/
196// ---------------------------------------------------------------------
197/* Returns 0 on error, pointer to the package otherwise */
5bf15716
DK
198pkgCache::PkgIterator pkgCache::FindPkg(const string &Name, string Arch) {
199 /* We make a detour via the GrpIterator here as
200 on a multi-arch environment a group is easier to
201 find than a package (less entries in the buckets) */
202 pkgCache::GrpIterator Grp = FindGrp(Name);
203 if (Grp.end() == true)
204 return PkgIterator(*this,0);
205
206 return Grp.FindPkg(Arch);
207}
208 /*}}}*/
209// Cache::FindGrp - Locate a group by name /*{{{*/
210// ---------------------------------------------------------------------
211/* Returns End-Pointer on error, pointer to the group otherwise */
212pkgCache::GrpIterator pkgCache::FindGrp(const string &Name) {
213 if (unlikely(Name.empty() == true))
214 return GrpIterator(*this,0);
215
216 // Look at the hash bucket for the group
217 Group *Grp = GrpP + HeaderP->GrpHashTable[sHash(Name)];
218 for (; Grp != GrpP; Grp = GrpP + Grp->Next) {
219 if (Grp->Name != 0 && StrP[Grp->Name] == Name[0] &&
220 stringcasecmp(Name, StrP + Grp->Name) == 0)
221 return GrpIterator(*this, Grp);
222 }
223
224 return GrpIterator(*this,0);
578bfd0a
AL
225}
226 /*}}}*/
b2e465d6
AL
227// Cache::CompTypeDeb - Return a string describing the compare type /*{{{*/
228// ---------------------------------------------------------------------
229/* This returns a string representation of the dependency compare
230 type in the weird debian style.. */
231const char *pkgCache::CompTypeDeb(unsigned char Comp)
232{
233 const char *Ops[] = {"","<=",">=","<<",">>","=","!="};
234 if ((unsigned)(Comp & 0xF) < 7)
235 return Ops[Comp & 0xF];
236 return "";
237}
238 /*}}}*/
239// Cache::CompType - Return a string describing the compare type /*{{{*/
240// ---------------------------------------------------------------------
241/* This returns a string representation of the dependency compare
242 type */
243const char *pkgCache::CompType(unsigned char Comp)
244{
245 const char *Ops[] = {"","<=",">=","<",">","=","!="};
246 if ((unsigned)(Comp & 0xF) < 7)
247 return Ops[Comp & 0xF];
248 return "";
249}
250 /*}}}*/
251// Cache::DepType - Return a string describing the dep type /*{{{*/
252// ---------------------------------------------------------------------
253/* */
254const char *pkgCache::DepType(unsigned char Type)
255{
256 const char *Types[] = {"",_("Depends"),_("PreDepends"),_("Suggests"),
257 _("Recommends"),_("Conflicts"),_("Replaces"),
f8ae7e8b 258 _("Obsoletes"),_("Breaks"), _("Enhances")};
308c7d30 259 if (Type < sizeof(Types)/sizeof(*Types))
b2e465d6
AL
260 return Types[Type];
261 return "";
262}
263 /*}}}*/
0149949b
AL
264// Cache::Priority - Convert a priority value to a string /*{{{*/
265// ---------------------------------------------------------------------
266/* */
267const char *pkgCache::Priority(unsigned char Prio)
268{
b2e465d6
AL
269 const char *Mapping[] = {0,_("important"),_("required"),_("standard"),
270 _("optional"),_("extra")};
0149949b
AL
271 if (Prio < _count(Mapping))
272 return Mapping[Prio];
273 return 0;
274}
275 /*}}}*/
5bf15716
DK
276// GrpIterator::FindPkg - Locate a package by arch /*{{{*/
277// ---------------------------------------------------------------------
278/* Returns an End-Pointer on error, pointer to the package otherwise */
279pkgCache::PkgIterator pkgCache::GrpIterator::FindPkg(string Arch) {
280 if (unlikely(IsGood() == false || S->FirstPackage == 0))
281 return PkgIterator(*Owner, 0);
282
283 static string const myArch = _config->Find("APT::Architecture");
284 /* Most of the time the package for our native architecture is
285 the one we add at first to the cache, but this would be the
286 last one we check, so we do it now. */
287 if (Arch == "native" || Arch == myArch) {
288 Arch = myArch;
289 pkgCache::Package *Pkg = Owner->PkgP + S->LastPackage;
290 if (stringcasecmp(Arch, Owner->StrP + Pkg->Arch) == 0)
291 return PkgIterator(*Owner, Pkg);
292 }
293
294 /* If we accept any package we simply return the "first"
295 package in this group (the last one added). */
296 if (Arch == "any")
297 return PkgIterator(*Owner, Owner->PkgP + S->FirstPackage);
298
299 /* Iterate over the list to find the matching arch
300 unfortunately this list includes "package noise"
301 (= different packages with same calculated hash),
302 so we need to check the name also */
303 for (pkgCache::Package *Pkg = PackageList(); Pkg != Owner->PkgP;
304 Pkg = Owner->PkgP + Pkg->NextPackage) {
305 if (S->Name == Pkg->Name &&
306 stringcasecmp(Arch, Owner->StrP + Pkg->Arch) == 0)
307 return PkgIterator(*Owner, Pkg);
308 if ((Owner->PkgP + S->LastPackage) == Pkg)
309 break;
310 }
311
312 return PkgIterator(*Owner, 0);
313}
314 /*}}}*/
315// GrpIterator::NextPkg - Locate the next package in the group /*{{{*/
316// ---------------------------------------------------------------------
317/* Returns an End-Pointer on error, pointer to the package otherwise.
318 We can't simply ++ to the next as the list of packages includes
319 "package noise" (= packages with the same hash value but different name) */
320pkgCache::PkgIterator pkgCache::GrpIterator::NextPkg(pkgCache::PkgIterator const &LastPkg) {
321 if (unlikely(IsGood() == false || S->FirstPackage == 0 ||
322 LastPkg.end() == true))
323 return PkgIterator(*Owner, 0);
324
325 // Iterate over the list to find the next package
326 pkgCache::Package *Pkg = Owner->PkgP + LastPkg.Index();
327 Pkg = Owner->PkgP + Pkg->NextPackage;
328 for (; Pkg != Owner->PkgP; Pkg = Owner->PkgP + Pkg->NextPackage) {
329 if (S->Name == Pkg->Name)
330 return PkgIterator(*Owner, Pkg);
331 if ((Owner->PkgP + S->LastPackage) == Pkg)
332 break;
333 }
334
335 return PkgIterator(*Owner, 0);
336}
337 /*}}}*/
25396fb0
DK
338// GrpIterator::operator ++ - Postfix incr /*{{{*/
339// ---------------------------------------------------------------------
340/* This will advance to the next logical group in the hash table. */
341void pkgCache::GrpIterator::operator ++(int)
342{
343 // Follow the current links
344 if (S != Owner->GrpP)
345 S = Owner->GrpP + S->Next;
346
347 // Follow the hash table
348 while (S == Owner->GrpP && (HashIndex+1) < (signed)_count(Owner->HeaderP->GrpHashTable))
349 {
350 HashIndex++;
351 S = Owner->GrpP + Owner->HeaderP->GrpHashTable[HashIndex];
352 }
353};
f55a958f
AL
354 /*}}}*/
355// PkgIterator::operator ++ - Postfix incr /*{{{*/
578bfd0a
AL
356// ---------------------------------------------------------------------
357/* This will advance to the next logical package in the hash table. */
358void pkgCache::PkgIterator::operator ++(int)
359{
360 // Follow the current links
773e2c1f
DK
361 if (S != Owner->PkgP)
362 S = Owner->PkgP + S->NextPackage;
b2e465d6 363
578bfd0a 364 // Follow the hash table
5bf15716 365 while (S == Owner->PkgP && (HashIndex+1) < (signed)_count(Owner->HeaderP->PkgHashTable))
578bfd0a
AL
366 {
367 HashIndex++;
5bf15716 368 S = Owner->PkgP + Owner->HeaderP->PkgHashTable[HashIndex];
578bfd0a
AL
369 }
370};
371 /*}}}*/
578bfd0a
AL
372// PkgIterator::State - Check the State of the package /*{{{*/
373// ---------------------------------------------------------------------
374/* By this we mean if it is either cleanly installed or cleanly removed. */
375pkgCache::PkgIterator::OkState pkgCache::PkgIterator::State() const
d38b7b3d 376{
773e2c1f
DK
377 if (S->InstState == pkgCache::State::ReInstReq ||
378 S->InstState == pkgCache::State::HoldReInstReq)
c7c1b0f6
AL
379 return NeedsUnpack;
380
773e2c1f
DK
381 if (S->CurrentState == pkgCache::State::UnPacked ||
382 S->CurrentState == pkgCache::State::HalfConfigured)
c6aa14e4
MV
383 // we leave triggers alone complettely. dpkg deals with
384 // them in a hard-to-predict manner and if they get
385 // resolved by dpkg before apt run dpkg --configure on
386 // the TriggersPending package dpkg returns a error
09fab244 387 //Pkg->CurrentState == pkgCache::State::TriggersAwaited
c6aa14e4 388 //Pkg->CurrentState == pkgCache::State::TriggersPending)
578bfd0a
AL
389 return NeedsConfigure;
390
773e2c1f
DK
391 if (S->CurrentState == pkgCache::State::HalfInstalled ||
392 S->InstState != pkgCache::State::Ok)
578bfd0a
AL
393 return NeedsUnpack;
394
395 return NeedsNothing;
396}
397 /*}}}*/
af29ffb4
MV
398// PkgIterator::CandVersion - Returns the candidate version string /*{{{*/
399// ---------------------------------------------------------------------
400/* Return string representing of the candidate version. */
401const char *
402pkgCache::PkgIterator::CandVersion() const
403{
404 //TargetVer is empty, so don't use it.
749eb4cf 405 VerIterator version = pkgPolicy(Owner).GetCandidateVer(*this);
af29ffb4
MV
406 if (version.IsGood())
407 return version.VerStr();
408 return 0;
409};
410 /*}}}*/
411// PkgIterator::CurVersion - Returns the current version string /*{{{*/
412// ---------------------------------------------------------------------
413/* Return string representing of the current version. */
414const char *
415pkgCache::PkgIterator::CurVersion() const
416{
417 VerIterator version = CurrentVer();
418 if (version.IsGood())
419 return CurrentVer().VerStr();
420 return 0;
421};
422 /*}}}*/
423// ostream operator to handle string representation of a package /*{{{*/
424// ---------------------------------------------------------------------
425/* Output name < cur.rent.version -> candid.ate.version | new.est.version > (section)
426 Note that the characters <|>() are all literal above. Versions will be ommited
427 if they provide no new information (e.g. there is no newer version than candidate)
428 If no version and/or section can be found "none" is used. */
429std::ostream&
430operator<<(ostream& out, pkgCache::PkgIterator Pkg)
431{
432 if (Pkg.end() == true)
433 return out << "invalid package";
434
435 string current = string(Pkg.CurVersion() == 0 ? "none" : Pkg.CurVersion());
436 string candidate = string(Pkg.CandVersion() == 0 ? "none" : Pkg.CandVersion());
437 string newest = string(Pkg.VersionList().end() ? "none" : Pkg.VersionList().VerStr());
438
5dd4c8b8 439 out << Pkg.Name() << " [ " << Pkg.Arch() << " ] < " << current;
af29ffb4
MV
440 if (current != candidate)
441 out << " -> " << candidate;
442 if ( newest != "none" && candidate != newest)
443 out << " | " << newest;
444 out << " > ( " << string(Pkg.Section()==0?"none":Pkg.Section()) << " )";
445 return out;
446}
447 /*}}}*/
75ce2062
DK
448// PkgIterator::FullName - Returns Name and (maybe) Architecture /*{{{*/
449// ---------------------------------------------------------------------
450/* Returns a name:arch string */
451std::string pkgCache::PkgIterator::FullName(bool const &Pretty) const
452{
453 string fullname = Name();
454 if (Pretty == false ||
455 (strcmp(Arch(), "all") != 0 && _config->Find("APT::Architecture") != Arch()))
456 return fullname.append(":").append(Arch());
457 return fullname;
458}
459 /*}}}*/
578bfd0a
AL
460// DepIterator::IsCritical - Returns true if the dep is important /*{{{*/
461// ---------------------------------------------------------------------
462/* Currently critical deps are defined as depends, predepends and
308c7d30 463 conflicts (including dpkg's Breaks fields). */
578bfd0a
AL
464bool pkgCache::DepIterator::IsCritical()
465{
773e2c1f
DK
466 if (S->Type == pkgCache::Dep::Conflicts ||
467 S->Type == pkgCache::Dep::DpkgBreaks ||
468 S->Type == pkgCache::Dep::Obsoletes ||
469 S->Type == pkgCache::Dep::Depends ||
470 S->Type == pkgCache::Dep::PreDepends)
578bfd0a
AL
471 return true;
472 return false;
473}
474 /*}}}*/
475// DepIterator::SmartTargetPkg - Resolve dep target pointers w/provides /*{{{*/
476// ---------------------------------------------------------------------
477/* This intellegently looks at dep target packages and tries to figure
478 out which package should be used. This is needed to nicely handle
479 provide mapping. If the target package has no other providing packages
480 then it returned. Otherwise the providing list is looked at to
481 see if there is one one unique providing package if so it is returned.
482 Otherwise true is returned and the target package is set. The return
b2e465d6
AL
483 result indicates whether the node should be expandable
484
485 In Conjunction with the DepCache the value of Result may not be
486 super-good since the policy may have made it uninstallable. Using
487 AllTargets is better in this case. */
578bfd0a
AL
488bool pkgCache::DepIterator::SmartTargetPkg(PkgIterator &Result)
489{
490 Result = TargetPkg();
491
492 // No provides at all
493 if (Result->ProvidesList == 0)
494 return false;
495
496 // There is the Base package and the providing ones which is at least 2
497 if (Result->VersionList != 0)
498 return true;
499
500 /* We have to skip over indirect provisions of the package that
501 owns the dependency. For instance, if libc5-dev depends on the
502 virtual package libc-dev which is provided by libc5-dev and libc6-dev
503 we must ignore libc5-dev when considering the provides list. */
504 PrvIterator PStart = Result.ProvidesList();
505 for (; PStart.end() != true && PStart.OwnerPkg() == ParentPkg(); PStart++);
506
507 // Nothing but indirect self provides
508 if (PStart.end() == true)
509 return false;
510
511 // Check for single packages in the provides list
512 PrvIterator P = PStart;
513 for (; P.end() != true; P++)
514 {
515 // Skip over self provides
516 if (P.OwnerPkg() == ParentPkg())
517 continue;
518 if (PStart.OwnerPkg() != P.OwnerPkg())
519 break;
520 }
b2e465d6
AL
521
522 Result = PStart.OwnerPkg();
578bfd0a
AL
523
524 // Check for non dups
525 if (P.end() != true)
526 return true;
b2e465d6 527
578bfd0a
AL
528 return false;
529}
530 /*}}}*/
531// DepIterator::AllTargets - Returns the set of all possible targets /*{{{*/
532// ---------------------------------------------------------------------
b2e465d6 533/* This is a more useful version of TargetPkg() that follows versioned
578bfd0a 534 provides. It includes every possible package-version that could satisfy
fbfb2a7c
AL
535 the dependency. The last item in the list has a 0. The resulting pointer
536 must be delete [] 'd */
578bfd0a
AL
537pkgCache::Version **pkgCache::DepIterator::AllTargets()
538{
539 Version **Res = 0;
540 unsigned long Size =0;
541 while (1)
542 {
543 Version **End = Res;
544 PkgIterator DPkg = TargetPkg();
545
546 // Walk along the actual package providing versions
547 for (VerIterator I = DPkg.VersionList(); I.end() == false; I++)
548 {
773e2c1f 549 if (Owner->VS->CheckDep(I.VerStr(),S->CompareOp,TargetVer()) == false)
578bfd0a
AL
550 continue;
551
773e2c1f
DK
552 if ((S->Type == pkgCache::Dep::Conflicts ||
553 S->Type == pkgCache::Dep::DpkgBreaks ||
554 S->Type == pkgCache::Dep::Obsoletes) &&
f07b5628 555 ParentPkg() == I.ParentPkg())
578bfd0a
AL
556 continue;
557
558 Size++;
559 if (Res != 0)
560 *End++ = I;
561 }
562
563 // Follow all provides
564 for (PrvIterator I = DPkg.ProvidesList(); I.end() == false; I++)
565 {
773e2c1f 566 if (Owner->VS->CheckDep(I.ProvideVersion(),S->CompareOp,TargetVer()) == false)
578bfd0a
AL
567 continue;
568
773e2c1f
DK
569 if ((S->Type == pkgCache::Dep::Conflicts ||
570 S->Type == pkgCache::Dep::DpkgBreaks ||
571 S->Type == pkgCache::Dep::Obsoletes) &&
f07b5628 572 ParentPkg() == I.OwnerPkg())
578bfd0a
AL
573 continue;
574
575 Size++;
576 if (Res != 0)
577 *End++ = I.OwnerVer();
578 }
579
580 // Do it again and write it into the array
581 if (Res == 0)
582 {
583 Res = new Version *[Size+1];
584 Size = 0;
585 }
586 else
587 {
588 *End = 0;
589 break;
590 }
591 }
592
593 return Res;
594}
595 /*}}}*/
43d017d6
AL
596// DepIterator::GlobOr - Compute an OR group /*{{{*/
597// ---------------------------------------------------------------------
598/* This Takes an iterator, iterates past the current dependency grouping
599 and returns Start and End so that so End is the final element
600 in the group, if End == Start then D is End++ and End is the
601 dependency D was pointing to. Use in loops to iterate sensibly. */
602void pkgCache::DepIterator::GlobOr(DepIterator &Start,DepIterator &End)
603{
604 // Compute a single dependency element (glob or)
605 Start = *this;
606 End = *this;
018f1533 607 for (bool LastOR = true; end() == false && LastOR == true;)
43d017d6 608 {
773e2c1f 609 LastOR = (S->CompareOp & pkgCache::Dep::Or) == pkgCache::Dep::Or;
018f1533 610 (*this)++;
43d017d6
AL
611 if (LastOR == true)
612 End = (*this);
613 }
614}
615 /*}}}*/
578bfd0a
AL
616// VerIterator::CompareVer - Fast version compare for same pkgs /*{{{*/
617// ---------------------------------------------------------------------
618/* This just looks over the version list to see if B is listed before A. In
619 most cases this will return in under 4 checks, ver lists are short. */
620int pkgCache::VerIterator::CompareVer(const VerIterator &B) const
621{
622 // Check if they are equal
623 if (*this == B)
624 return 0;
625 if (end() == true)
626 return -1;
627 if (B.end() == true)
628 return 1;
629
630 /* Start at A and look for B. If B is found then A > B otherwise
631 B was before A so A < B */
632 VerIterator I = *this;
633 for (;I.end() == false; I++)
634 if (I == B)
635 return 1;
636 return -1;
637}
638 /*}}}*/
b518cca6
AL
639// VerIterator::Downloadable - Checks if the version is downloadable /*{{{*/
640// ---------------------------------------------------------------------
641/* */
642bool pkgCache::VerIterator::Downloadable() const
643{
644 VerFileIterator Files = FileList();
645 for (; Files.end() == false; Files++)
f07b5628 646 if ((Files.File()->Flags & pkgCache::Flag::NotSource) != pkgCache::Flag::NotSource)
b518cca6
AL
647 return true;
648 return false;
649}
650 /*}}}*/
3c124dde
AL
651// VerIterator::Automatic - Check if this version is 'automatic' /*{{{*/
652// ---------------------------------------------------------------------
653/* This checks to see if any of the versions files are not NotAutomatic.
654 True if this version is selectable for automatic installation. */
655bool pkgCache::VerIterator::Automatic() const
656{
657 VerFileIterator Files = FileList();
658 for (; Files.end() == false; Files++)
659 if ((Files.File()->Flags & pkgCache::Flag::NotAutomatic) != pkgCache::Flag::NotAutomatic)
660 return true;
661 return false;
662}
663 /*}}}*/
803ea2a8
DK
664// VerIterator::Pseudo - Check if this version is a pseudo one /*{{{*/
665// ---------------------------------------------------------------------
666/* Sometimes you have the need to express dependencies with versions
667 which doesn't really exist or exist multiply times for "different"
668 packages. We need these versions for dependency resolution but they
669 are a problem everytime we need to download/install something. */
670bool pkgCache::VerIterator::Pseudo() const
671{
42d71ab5
DK
672 if (S->MultiArch == pkgCache::Version::All &&
673 strcmp(Arch(true),"all") != 0)
674 {
675 GrpIterator const Grp = ParentPkg().Group();
676 return (Grp->LastPackage != Grp->FirstPackage);
677 }
678 return false;
803ea2a8
DK
679}
680 /*}}}*/
3c124dde
AL
681// VerIterator::NewestFile - Return the newest file version relation /*{{{*/
682// ---------------------------------------------------------------------
683/* This looks at the version numbers associated with all of the sources
684 this version is in and returns the highest.*/
685pkgCache::VerFileIterator pkgCache::VerIterator::NewestFile() const
686{
687 VerFileIterator Files = FileList();
688 VerFileIterator Highest = Files;
689 for (; Files.end() == false; Files++)
690 {
b2e465d6 691 if (Owner->VS->CmpReleaseVer(Files.File().Version(),Highest.File().Version()) > 0)
3c124dde
AL
692 Highest = Files;
693 }
694
695 return Highest;
696}
697 /*}}}*/
b2e465d6
AL
698// VerIterator::RelStr - Release description string /*{{{*/
699// ---------------------------------------------------------------------
700/* This describes the version from a release-centric manner. The output is a
701 list of Label:Version/Archive */
702string pkgCache::VerIterator::RelStr()
703{
704 bool First = true;
705 string Res;
706 for (pkgCache::VerFileIterator I = this->FileList(); I.end() == false; I++)
707 {
708 // Do not print 'not source' entries'
709 pkgCache::PkgFileIterator File = I.File();
710 if ((File->Flags & pkgCache::Flag::NotSource) == pkgCache::Flag::NotSource)
711 continue;
712
713 // See if we have already printed this out..
714 bool Seen = false;
715 for (pkgCache::VerFileIterator J = this->FileList(); I != J; J++)
716 {
717 pkgCache::PkgFileIterator File2 = J.File();
718 if (File2->Label == 0 || File->Label == 0)
719 continue;
720
721 if (strcmp(File.Label(),File2.Label()) != 0)
722 continue;
723
724 if (File2->Version == File->Version)
725 {
726 Seen = true;
727 break;
728 }
10639577 729 if (File2->Version == 0 || File->Version == 0)
b2e465d6
AL
730 break;
731 if (strcmp(File.Version(),File2.Version()) == 0)
732 Seen = true;
733 }
734
735 if (Seen == true)
736 continue;
737
738 if (First == false)
739 Res += ", ";
740 else
741 First = false;
742
743 if (File->Label != 0)
744 Res = Res + File.Label() + ':';
745
746 if (File->Archive != 0)
747 {
748 if (File->Version == 0)
749 Res += File.Archive();
750 else
751 Res = Res + File.Version() + '/' + File.Archive();
752 }
753 else
754 {
755 // No release file, print the host name that this came from
756 if (File->Site == 0 || File.Site()[0] == 0)
757 Res += "localhost";
758 else
759 Res += File.Site();
760 }
5dd4c8b8 761 }
857e9c13 762 if (S->ParentPkg != 0)
5dd4c8b8 763 Res.append(" [").append(Arch()).append("]");
b2e465d6
AL
764 return Res;
765}
766 /*}}}*/
578bfd0a
AL
767// PkgFileIterator::IsOk - Checks if the cache is in sync with the file /*{{{*/
768// ---------------------------------------------------------------------
769/* This stats the file and compares its stats with the ones that were
770 stored during generation. Date checks should probably also be
771 included here. */
772bool pkgCache::PkgFileIterator::IsOk()
773{
774 struct stat Buf;
775 if (stat(FileName(),&Buf) != 0)
776 return false;
777
773e2c1f 778 if (Buf.st_size != (signed)S->Size || Buf.st_mtime != S->mtime)
578bfd0a
AL
779 return false;
780
781 return true;
782}
783 /*}}}*/
af87ab54
AL
784// PkgFileIterator::RelStr - Return the release string /*{{{*/
785// ---------------------------------------------------------------------
786/* */
787string pkgCache::PkgFileIterator::RelStr()
788{
789 string Res;
790 if (Version() != 0)
791 Res = Res + (Res.empty() == true?"v=":",v=") + Version();
792 if (Origin() != 0)
793 Res = Res + (Res.empty() == true?"o=":",o=") + Origin();
794 if (Archive() != 0)
795 Res = Res + (Res.empty() == true?"a=":",a=") + Archive();
efc487fb
DK
796 if (Codename() != 0)
797 Res = Res + (Res.empty() == true?"n=":",n=") + Codename();
af87ab54
AL
798 if (Label() != 0)
799 Res = Res + (Res.empty() == true?"l=":",l=") + Label();
800 if (Component() != 0)
801 Res = Res + (Res.empty() == true?"c=":",c=") + Component();
5dd4c8b8
DK
802 if (Architecture() != 0)
803 Res = Res + (Res.empty() == true?"b=":",b=") + Architecture();
af87ab54
AL
804 return Res;
805}
806 /*}}}*/
012b102a
MV
807// VerIterator::TranslatedDescription - Return the a DescIter for locale/*{{{*/
808// ---------------------------------------------------------------------
809/* return a DescIter for the current locale or the default if none is
810 * found
811 */
812pkgCache::DescIterator pkgCache::VerIterator::TranslatedDescription() const
813{
45df0ad2
DK
814 std::vector<string> const lang = APT::Configuration::getLanguages();
815 for (std::vector<string>::const_iterator l = lang.begin();
816 l != lang.end(); l++)
817 {
818 pkgCache::DescIterator DescDefault = DescriptionList();
819 pkgCache::DescIterator Desc = DescDefault;
820
821 for (; Desc.end() == false; Desc++)
822 if (*l == Desc.LanguageCode())
823 break;
824 if (Desc.end() == true)
825 Desc = DescDefault;
826 return Desc;
827 }
828
829 return DescriptionList();
012b102a
MV
830};
831
832 /*}}}*/