Sync
[ntk/apt.git] / apt-pkg / depcache.cc
CommitLineData
6c139d6e
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
c88edf1d 3// $Id: depcache.cc,v 1.4 1998/10/24 04:58:05 jgg Exp $
6c139d6e
AL
4/* ######################################################################
5
6 Dependency Cache - Caches Dependency information.
7
8 ##################################################################### */
9 /*}}}*/
10// Include Files /*{{{*/
11#ifdef __GNUG__
094a497d 12#pragma implementation "apt-pkg/depcache.h"
6c139d6e 13#endif
094a497d 14#include <apt-pkg/depcache.h>
6c139d6e 15
094a497d
AL
16#include <apt-pkg/version.h>
17#include <apt-pkg/error.h>
6c139d6e
AL
18 /*}}}*/
19
20// DepCache::pkgDepCache - Constructors /*{{{*/
21// ---------------------------------------------------------------------
22/* */
a246f2dc
AL
23pkgDepCache::pkgDepCache(MMap &Map,OpProgress &Prog) :
24 pkgCache(Map), PkgState(0), DepState(0)
6c139d6e
AL
25{
26 if (_error->PendingError() == false)
a246f2dc 27 Init(&Prog);
6c139d6e
AL
28}
29 /*}}}*/
30// DepCache::~pkgDepCache - Destructor /*{{{*/
31// ---------------------------------------------------------------------
32/* */
33pkgDepCache::~pkgDepCache()
34{
35 delete [] PkgState;
36 delete [] DepState;
37}
38 /*}}}*/
6c139d6e
AL
39// DepCache::Init - Generate the initial extra structures. /*{{{*/
40// ---------------------------------------------------------------------
41/* This allocats the extension buffers and initializes them. */
a246f2dc 42bool pkgDepCache::Init(OpProgress *Prog)
6c139d6e
AL
43{
44 delete [] PkgState;
45 delete [] DepState;
46 PkgState = new StateCache[Head().PackageCount];
47 DepState = new unsigned char[Head().DependsCount];
48 memset(PkgState,0,sizeof(*PkgState)*Head().PackageCount);
49 memset(DepState,0,sizeof(*DepState)*Head().DependsCount);
50
a246f2dc
AL
51 if (Prog != 0)
52 {
53 Prog->OverallProgress(0,2*Head().PackageCount,Head().PackageCount,
54 "Building Dependancy Tree");
55 Prog->SubProgress(Head().PackageCount,"Candidate Versions");
56 }
57
6c139d6e
AL
58 /* Set the current state of everything. In this state all of the
59 packages are kept exactly as is. See AllUpgrade */
a246f2dc
AL
60 int Done = 0;
61 for (PkgIterator I = PkgBegin(); I.end() != true; I++,Done++)
6c139d6e 62 {
a246f2dc
AL
63 if (Prog != 0)
64 Prog->Progress(Done);
65
6c139d6e
AL
66 // Find the proper cache slot
67 StateCache &State = PkgState[I->ID];
68 State.iFlags = 0;
69
70 // Figure out the install version
71 State.CandidateVer = GetCandidateVer(I);
72 State.InstallVer = I.CurrentVer();
73 State.Mode = ModeKeep;
74
75 State.Update(I,*this);
76 }
77
a246f2dc
AL
78 if (Prog != 0)
79 {
80
81 Prog->OverallProgress(Head().PackageCount,2*Head().PackageCount,
82 Head().PackageCount,
83 "Building Dependancy Tree");
84 Prog->SubProgress(Head().PackageCount,"Dependency Generation");
85 }
86
87 Update(Prog);
6c139d6e
AL
88
89 return true;
90}
91 /*}}}*/
92// DepCache::GetCandidateVer - Returns the Candidate install version /*{{{*/
93// ---------------------------------------------------------------------
94/* The default just returns the target version if it exists or the
95 highest version. */
96pkgDepCache::VerIterator pkgDepCache::GetCandidateVer(PkgIterator Pkg)
97{
98 // Try to use an explicit target
99 if (Pkg->TargetVer == 0)
100 {
101 /* Not source versions cannot be a candidate version unless they
102 are already installed */
103 for (VerIterator I = Pkg.VersionList(); I.end() == false; I++)
104 {
105 if (Pkg.CurrentVer() == I)
106 return I;
107 for (VerFileIterator J = I.FileList(); J.end() == false; J++)
108 if ((J.File()->Flags & Flag::NotSource) == 0)
109 return I;
110 }
111
112 return VerIterator(*this,0);
113 }
114 else
115 return Pkg.TargetVer();
116}
117 /*}}}*/
118// DepCache::IsImportantDep - True if the dependency is important /*{{{*/
119// ---------------------------------------------------------------------
120/* */
121bool pkgDepCache::IsImportantDep(DepIterator Dep)
122{
123 return Dep.IsCritical();
124}
125 /*}}}*/
126
127// DepCache::CheckDep - Checks a single dependency /*{{{*/
128// ---------------------------------------------------------------------
129/* This first checks the dependency against the main target package and
130 then walks along the package provides list and checks if each provides
131 will be installed then checks the provides against the dep. Res will be
132 set to the package which was used to satisfy the dep. */
133bool pkgDepCache::CheckDep(DepIterator Dep,int Type,PkgIterator &Res)
134{
135 Res = Dep.TargetPkg();
136
137 /* Check simple depends. A depends -should- never self match but
138 we allow it anyhow because dpkg does. Technically it is a packaging
139 bug. Conflicts may never self match */
140 if (Dep.TargetPkg() != Dep.ParentPkg() || Dep->Type != Dep::Conflicts)
141 {
142 PkgIterator Pkg = Dep.TargetPkg();
143 // Check the base package
144 if (Type == NowVersion && Pkg->CurrentVer != 0)
145 if (pkgCheckDep(Dep.TargetVer(),
146 Pkg.CurrentVer().VerStr(),Dep->CompareOp) == true)
147 return true;
148
149 if (Type == InstallVersion && PkgState[Pkg->ID].InstallVer != 0)
150 if (pkgCheckDep(Dep.TargetVer(),
151 PkgState[Pkg->ID].InstVerIter(*this).VerStr(),
152 Dep->CompareOp) == true)
153 return true;
154
155 if (Type == CandidateVersion && PkgState[Pkg->ID].CandidateVer != 0)
156 if (pkgCheckDep(Dep.TargetVer(),
157 PkgState[Pkg->ID].CandidateVerIter(*this).VerStr(),
158 Dep->CompareOp) == true)
159 return true;
160 }
161
162 // Check the providing packages
163 PrvIterator P = Dep.TargetPkg().ProvidesList();
164 PkgIterator Pkg = Dep.ParentPkg();
165 for (; P.end() != true; P++)
166 {
167 /* Provides may never be applied against the same package if it is
168 a conflicts. See the comment above. */
169 if (P.OwnerPkg() == Pkg && Dep->Type == Dep::Conflicts)
170 continue;
171
172 // Check if the provides is a hit
173 if (Type == NowVersion)
174 {
175 if (P.OwnerPkg().CurrentVer() != P.OwnerVer())
176 continue;
177 }
178
179 if (Type == InstallVersion)
180 {
181 StateCache &State = PkgState[P.OwnerPkg()->ID];
182 if (State.InstallVer != (Version *)P.OwnerVer())
183 continue;
184 }
185
186 if (Type == CandidateVersion)
187 {
188 StateCache &State = PkgState[P.OwnerPkg()->ID];
189 if (State.CandidateVer != (Version *)P.OwnerVer())
190 continue;
191 }
192
193 // Compare the versions.
194 if (pkgCheckDep(Dep.TargetVer(),P.ProvideVersion(),Dep->CompareOp) == true)
195 {
196 Res = P.OwnerPkg();
197 return true;
198 }
199 }
200
201 return false;
202}
203 /*}}}*/
204// DepCache::AddSizes - Add the packages sizes to the counters /*{{{*/
205// ---------------------------------------------------------------------
206/* Call with Mult = -1 to preform the inverse opration */
207void pkgDepCache::AddSizes(const PkgIterator &Pkg,long Mult)
208{
209 StateCache &P = PkgState[Pkg->ID];
210
211 // Compute the size data
212 if (P.NewInstall() == true)
213 {
214 iUsrSize += Mult*P.InstVerIter(*this)->InstalledSize;
215 iDownloadSize += Mult*P.InstVerIter(*this)->Size;
216 }
217
218 // Upgrading
219 if (Pkg->CurrentVer != 0 && P.InstallVer != (Version *)Pkg.CurrentVer() &&
220 P.InstallVer != 0)
221 {
222 iUsrSize += Mult*(P.InstVerIter(*this)->InstalledSize -
223 Pkg.CurrentVer()->InstalledSize);
224 iDownloadSize += Mult*P.InstVerIter(*this)->Size;
225 }
226
227 // Removing
228 if (Pkg->CurrentVer != 0 && P.InstallVer == 0)
229 iUsrSize -= Mult*Pkg.CurrentVer()->InstalledSize;
230}
231 /*}}}*/
232// DepCache::AddStates - Add the package to the state counter /*{{{*/
233// ---------------------------------------------------------------------
234/* This routine is tricky to use, you must make sure that it is never
235 called twice for the same package. This means the Remove/Add section
236 should be as short as possible and not encompass any code that will
237 calld Remove/Add itself. Remember, dependencies can be circular so
238 while processing a dep for Pkg it is possible that Add/Remove
239 will be called on Pkg */
240void pkgDepCache::AddStates(const PkgIterator &Pkg,int Add)
241{
242 StateCache &State = PkgState[Pkg->ID];
243
244 // The Package is broken
245 if ((State.DepState & DepInstMin) != DepInstMin)
246 iBrokenCount += Add;
247
248 // Bad state
249 if (Pkg.State() != PkgIterator::NeedsNothing)
250 iBadCount += Add;
251
252 // Not installed
253 if (Pkg->CurrentVer == 0)
254 {
255 if (State.Mode == ModeInstall)
256 iInstCount += Add;
257 return;
258 }
259
260 // Installed, no upgrade
261 if (State.Upgradable() == false)
262 {
263 if (State.Mode == ModeDelete)
264 iDelCount += Add;
265 return;
266 }
267
268 // Alll 3 are possible
269 if (State.Mode == ModeDelete)
270 iDelCount += Add;
271 if (State.Mode == ModeKeep)
272 iKeepCount += Add;
273 if (State.Mode == ModeInstall)
274 iInstCount += Add;
275}
276 /*}}}*/
277// DepCache::BuildGroupOrs - Generate the Or group dep data /*{{{*/
278// ---------------------------------------------------------------------
279/* The or group results are stored in the last item of the or group. This
280 allows easy detection of the state of a whole or'd group. */
281void pkgDepCache::BuildGroupOrs(VerIterator const &V)
282{
283 unsigned char Group = 0;
284
285 for (DepIterator D = V.DependsList(); D.end() != true; D++)
286 {
287 // Build the dependency state.
288 unsigned char &State = DepState[D->ID];
289
290 /* Invert for Conflicts. We have to do this twice to get the
291 right sense for a conflicts group */
292 if (D->Type == Dep::Conflicts)
293 State = ~State;
294
295 // Add to the group if we are within an or..
296 Group |= State;
297 State |= Group << 3;
298 if ((D->CompareOp & Dep::Or) != Dep::Or)
299 Group = 0;
300
301 // Invert for Conflicts
302 if (D->Type == Dep::Conflicts)
303 State = ~State;
304 }
305}
306 /*}}}*/
307// DepCache::VersionState - Perform a pass over a dependency list /*{{{*/
308// ---------------------------------------------------------------------
309/* This is used to run over a dependency list and determine the dep
310 state of the list, filtering it through both a Min check and a Policy
311 check. The return result will have SetMin/SetPolicy low if a check
312 fails. It uses the DepState cache for it's computations. */
313unsigned char pkgDepCache::VersionState(DepIterator D,unsigned char Check,
314 unsigned char SetMin,
315 unsigned char SetPolicy)
316{
317 unsigned char Dep = 0xFF;
318
319 while (D.end() != true)
320 {
321 // Compute a single dependency element (glob or)
322 DepIterator Start = D;
323 unsigned char State = 0;
324 for (bool LastOR = true; D.end() == false && LastOR == true; D++)
325 {
326 State |= DepState[D->ID];
327 LastOR = (D->CompareOp & Dep::Or) == Dep::Or;
328 }
329
330 // Minimum deps that must be satisfied to have a working package
331 if (Start.IsCritical() == true)
332 if ((State & Check) != Check)
333 Dep &= ~SetMin;
334
335 // Policy deps that must be satisfied to install the package
336 if (IsImportantDep(Start) == true &&
337 (State & Check) != Check)
338 Dep &= ~SetPolicy;
339 }
340
341 return Dep;
342}
343 /*}}}*/
344// DepCache::DependencyState - Compute the 3 results for a dep /*{{{*/
345// ---------------------------------------------------------------------
346/* This is the main dependency computation bit. It computes the 3 main
347 results for a dependencys, Now, Install and Candidate. Callers must
348 invert the result if dealing with conflicts. */
349unsigned char pkgDepCache::DependencyState(DepIterator &D)
350{
351 unsigned char State = 0;
352
353 if (CheckDep(D,NowVersion) == true)
354 State |= DepNow;
355 if (CheckDep(D,InstallVersion) == true)
356 State |= DepInstall;
357 if (CheckDep(D,CandidateVersion) == true)
358 State |= DepCVer;
359
360 return State;
361}
362 /*}}}*/
363// DepCache::UpdateVerState - Compute the Dep member of the state /*{{{*/
364// ---------------------------------------------------------------------
365/* This determines the combined dependency representation of a package
366 for its two states now and install. This is done by using the pre-generated
367 dependency information. */
368void pkgDepCache::UpdateVerState(PkgIterator Pkg)
369{
370 // Empty deps are always true
371 StateCache &State = PkgState[Pkg->ID];
372 State.DepState = 0xFF;
373
374 // Check the Current state
375 if (Pkg->CurrentVer != 0)
376 {
377 DepIterator D = Pkg.CurrentVer().DependsList();
378 State.DepState &= VersionState(D,DepNow,DepNowMin,DepNowPolicy);
379 }
380
381 /* Check the candidate state. We do not compare against the whole as
382 a candidate state but check the candidate version against the
383 install states */
384 if (State.CandidateVer != 0)
385 {
386 DepIterator D = State.CandidateVerIter(*this).DependsList();
387 State.DepState &= VersionState(D,DepInstall,DepCandMin,DepCandPolicy);
388 }
389
390 // Check target state which can only be current or installed
391 if (State.InstallVer != 0)
392 {
393 DepIterator D = State.InstVerIter(*this).DependsList();
394 State.DepState &= VersionState(D,DepInstall,DepInstMin,DepInstPolicy);
395 }
396}
397 /*}}}*/
398// DepCache::Update - Figure out all the state information /*{{{*/
399// ---------------------------------------------------------------------
400/* This will figure out the state of all the packages and all the
401 dependencies based on the current policy. */
a246f2dc 402void pkgDepCache::Update(OpProgress *Prog)
6c139d6e
AL
403{
404 iUsrSize = 0;
405 iDownloadSize = 0;
406 iDelCount = 0;
407 iInstCount = 0;
408 iKeepCount = 0;
409 iBrokenCount = 0;
410 iBadCount = 0;
411
412 // Perform the depends pass
a246f2dc
AL
413 int Done = 0;
414 for (PkgIterator I = PkgBegin(); I.end() != true; I++,Done++)
6c139d6e 415 {
a246f2dc
AL
416 if (Prog != 0 && Done%20 == 0)
417 Prog->Progress(Done);
6c139d6e
AL
418 for (VerIterator V = I.VersionList(); V.end() != true; V++)
419 {
420 unsigned char Group = 0;
421
422 for (DepIterator D = V.DependsList(); D.end() != true; D++)
423 {
424 // Build the dependency state.
425 unsigned char &State = DepState[D->ID];
426 State = DependencyState(D);;
427
428 // Add to the group if we are within an or..
429 Group |= State;
430 State |= Group << 3;
431 if ((D->CompareOp & Dep::Or) != Dep::Or)
432 Group = 0;
433
434 // Invert for Conflicts
435 if (D->Type == Dep::Conflicts)
436 State = ~State;
437 }
438 }
439
440 // Compute the pacakge dependency state and size additions
441 AddSizes(I);
442 UpdateVerState(I);
443 AddStates(I);
444 }
a246f2dc
AL
445
446 if (Prog != 0)
447 Prog->Progress(Done);
6c139d6e
AL
448}
449 /*}}}*/
450// DepCache::Update - Update the deps list of a package /*{{{*/
451// ---------------------------------------------------------------------
452/* This is a helper for update that only does the dep portion of the scan.
453 It is mainly ment to scan reverse dependencies. */
454void pkgDepCache::Update(DepIterator D)
455{
456 // Update the reverse deps
457 for (;D.end() != true; D++)
458 {
459 unsigned char &State = DepState[D->ID];
460 State = DependencyState(D);
461
462 // Invert for Conflicts
463 if (D->Type == Dep::Conflicts)
464 State = ~State;
465
466 RemoveStates(D.ParentPkg());
467 BuildGroupOrs(D.ParentVer());
468 UpdateVerState(D.ParentPkg());
469 AddStates(D.ParentPkg());
470 }
471}
472 /*}}}*/
473// DepCache::Update - Update the related deps of a package /*{{{*/
474// ---------------------------------------------------------------------
475/* This is called whenever the state of a package changes. It updates
476 all cached dependencies related to this package. */
477void pkgDepCache::Update(PkgIterator const &Pkg)
478{
479 // Recompute the dep of the package
480 RemoveStates(Pkg);
481 UpdateVerState(Pkg);
482 AddStates(Pkg);
483
484 // Update the reverse deps
485 Update(Pkg.RevDependsList());
486
487 // Update the provides map for the current ver
488 if (Pkg->CurrentVer != 0)
489 for (PrvIterator P = Pkg.CurrentVer().ProvidesList();
490 P.end() != true; P++)
491 Update(P.ParentPkg().RevDependsList());
492
493 // Update the provides map for the candidate ver
494 for (PrvIterator P = PkgState[Pkg->ID].CandidateVerIter(*this).ProvidesList();
495 P.end() != true; P++)
496 Update(P.ParentPkg().RevDependsList());
497}
498
499 /*}}}*/
500
501// DepCache::MarkKeep - Put the package in the keep state /*{{{*/
502// ---------------------------------------------------------------------
503/* */
504void pkgDepCache::MarkKeep(PkgIterator const &Pkg,bool Soft)
505{
506 // Simplifies other routines.
507 if (Pkg.end() == true)
508 return;
509
510 /* We changed the soft state all the time so the UI is a bit nicer
511 to use */
512 StateCache &P = PkgState[Pkg->ID];
513 if (Soft == true)
514 P.iFlags |= AutoKept;
515 else
516 P.iFlags &= ~AutoKept;
517
518 // Check that it is not already kept
519 if (P.Mode == ModeKeep)
520 return;
521
522 // We dont even try to keep virtual packages..
523 if (Pkg->VersionList == 0)
524 return;
525
526 P.Flags &= ~Flag::Auto;
527 RemoveSizes(Pkg);
528 RemoveStates(Pkg);
529
530 P.Mode = ModeKeep;
531 if (Pkg->CurrentVer == 0)
532 P.InstallVer = 0;
533 else
534 P.InstallVer = Pkg.CurrentVer();
535
536 AddStates(Pkg);
537
538 Update(Pkg);
539
540 AddSizes(Pkg);
541}
542 /*}}}*/
543// DepCache::MarkDelete - Put the package in the delete state /*{{{*/
544// ---------------------------------------------------------------------
545/* */
546void pkgDepCache::MarkDelete(PkgIterator const &Pkg)
547{
548 // Simplifies other routines.
549 if (Pkg.end() == true)
550 return;
551
552 // Check that it is not already marked for delete
553 StateCache &P = PkgState[Pkg->ID];
554 P.iFlags &= ~AutoKept;
555 if (P.Mode == ModeDelete || P.InstallVer == 0)
556 return;
557
558 // We dont even try to delete virtual packages..
559 if (Pkg->VersionList == 0)
560 return;
561
562 RemoveSizes(Pkg);
563 RemoveStates(Pkg);
564
565 P.Mode = ModeDelete;
566 P.InstallVer = 0;
567 P.Flags &= Flag::Auto;
568
569 AddStates(Pkg);
570 Update(Pkg);
571 AddSizes(Pkg);
572}
573 /*}}}*/
574// DepCache::MarkInstall - Put the package in the install state /*{{{*/
575// ---------------------------------------------------------------------
576/* */
577void pkgDepCache::MarkInstall(PkgIterator const &Pkg,bool AutoInst)
578{
579 // Simplifies other routines.
580 if (Pkg.end() == true)
581 return;
582
583 /* Check that it is not already marked for install and that it can be
584 installed */
585 StateCache &P = PkgState[Pkg->ID];
586 P.iFlags &= ~AutoKept;
587 if (P.InstBroken() == false && (P.Mode == ModeInstall ||
588 P.CandidateVer == (Version *)Pkg.CurrentVer()))
589 {
590 if (P.CandidateVer == (Version *)Pkg.CurrentVer() && P.InstallVer == 0)
591 MarkKeep(Pkg);
592 return;
593 }
594
595 // We dont even try to install virtual packages..
596 if (Pkg->VersionList == 0)
597 return;
598
599 /* Target the candidate version and remove the autoflag. We reset the
600 autoflag below if this was called recursively. Otherwise the user
601 should have the ability to de-auto a package by changing its state */
602 RemoveSizes(Pkg);
603 RemoveStates(Pkg);
604
605 P.Mode = ModeInstall;
606 P.InstallVer = P.CandidateVer;
607 P.Flags &= ~Flag::Auto;
608 if (P.CandidateVer == (Version *)Pkg.CurrentVer())
609 P.Mode = ModeKeep;
610
611 AddStates(Pkg);
612 Update(Pkg);
613 AddSizes(Pkg);
614
615 if (AutoInst == false)
616 return;
617
618 DepIterator Dep = P.InstVerIter(*this).DependsList();
619 for (; Dep.end() != true;)
620 {
621 // Grok or groups
622 DepIterator Start = Dep;
623 bool Result = true;
624 for (bool LastOR = true; Dep.end() == false && LastOR == true; Dep++)
625 {
626 LastOR = (Dep->CompareOp & Dep::Or) == Dep::Or;
627
628 if ((DepState[Dep->ID] & DepInstall) == DepInstall)
629 Result = false;
630 }
631
632 // Dep is satisfied okay.
633 if (Result == false)
634 continue;
635
636 /* Check if this dep should be consider for install. If it is a user
637 defined important dep and we are installed a new package then
638 it will be installed. Otherwise we only worry about critical deps */
639 if (IsImportantDep(Start) == false)
640 continue;
641 if (Pkg->CurrentVer != 0 && Start.IsCritical() == false)
642 continue;
643
644 // Now we have to take action...
645 PkgIterator P = Start.SmartTargetPkg();
646 if ((DepState[Start->ID] & DepCVer) == DepCVer)
647 {
648 MarkInstall(P,true);
649
650 // Set the autoflag, after MarkInstall because MarkInstall unsets it
651 if (P->CurrentVer == 0)
652 PkgState[P->ID].Flags |= Flag::Auto;
653
654 continue;
655 }
656
657 // For conflicts we just de-install the package and mark as auto
658 if (Start->Type == Dep::Conflicts)
659 {
660 Version **List = Start.AllTargets();
661 for (Version **I = List; *I != 0; I++)
662 {
663 VerIterator Ver(*this,*I);
664 PkgIterator Pkg = Ver.ParentPkg();
665
666 MarkDelete(Pkg);
667 PkgState[Pkg->ID].Flags |= Flag::Auto;
668 }
669 delete [] List;
670 continue;
671 }
672 }
673}
674 /*}}}*/
675
6c139d6e
AL
676// StateCache::Update - Compute the various static display things /*{{{*/
677// ---------------------------------------------------------------------
678/* This is called whenever the Candidate version changes. */
679void pkgDepCache::StateCache::Update(PkgIterator Pkg,pkgCache &Cache)
680{
681 // Some info
682 VerIterator Ver = CandidateVerIter(Cache);
683
684 // Use a null string or the version string
685 if (Ver.end() == true)
686 CandVersion = "";
687 else
688 CandVersion = Ver.VerStr();
689
690 // Find the current version
691 CurVersion = "";
692 if (Pkg->CurrentVer != 0)
693 CurVersion = Pkg.CurrentVer().VerStr();
694
695 // Strip off the epochs for display
696 CurVersion = StripEpoch(CurVersion);
697 CandVersion = StripEpoch(CandVersion);
698
699 // Figure out if its up or down or equal
700 Status = Ver.CompareVer(Pkg.CurrentVer());
701 if (Pkg->CurrentVer == 0 || Pkg->VersionList == 0 || CandidateVer == 0)
702 Status = 2;
703}
704 /*}}}*/
705// StateCache::StripEpoch - Remove the epoch specifier from the version /*{{{*/
706// ---------------------------------------------------------------------
707/* */
708const char *pkgDepCache::StateCache::StripEpoch(const char *Ver)
709{
710 if (Ver == 0)
711 return 0;
712
713 // Strip any epoch
714 for (const char *I = Ver; *I != 0; I++)
715 if (*I == ':')
716 return I + 1;
717 return Ver;
718}
719 /*}}}*/