]>
git.saurik.com Git - apt.git/blob - apt-pkg/algorithms.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: algorithms.cc,v 1.16 1999/02/05 02:26:00 jgg Exp $
4 /* ######################################################################
6 Algorithms - A set of misc algorithms
8 The pkgProblemResolver class has become insanely complex and
9 very sophisticated, it handles every test case I have thrown at it
10 to my satisfaction. Understanding exactly why all the steps the class
11 does are required is difficult and changing though not very risky
12 may result in other cases not working.
14 ##################################################################### */
16 // Include Files /*{{{*/
18 #pragma implementation "apt-pkg/algorithms.h"
20 #include <apt-pkg/algorithms.h>
21 #include <apt-pkg/error.h>
22 #include <apt-pkg/configuration.h>
26 pkgProblemResolver
*pkgProblemResolver::This
= 0;
28 // Simulate::Simulate - Constructor /*{{{*/
29 // ---------------------------------------------------------------------
31 pkgSimulate::pkgSimulate(pkgDepCache
&Cache
) : pkgPackageManager(Cache
),
34 Flags
= new unsigned char[Cache
.HeaderP
->PackageCount
];
35 memset(Flags
,0,sizeof(*Flags
)*Cache
.HeaderP
->PackageCount
);
38 // Simulate::Install - Simulate unpacking of a package /*{{{*/
39 // ---------------------------------------------------------------------
41 bool pkgSimulate::Install(PkgIterator iPkg
,string
/*File*/)
44 PkgIterator Pkg
= Sim
.FindPkg(iPkg
.Name());
47 cout
<< "Inst " << Pkg
.Name();
48 Sim
.MarkInstall(Pkg
,false);
50 // Look for broken conflicts+predepends.
51 for (PkgIterator I
= Sim
.PkgBegin(); I
.end() == false; I
++)
53 if (Sim
[I
].InstallVer
== 0)
56 for (DepIterator D
= Sim
[I
].InstVerIter(Sim
).DependsList(); D
.end() == false; D
++)
57 if (D
->Type
== pkgCache::Dep::Conflicts
|| D
->Type
== pkgCache::Dep::PreDepends
)
59 if ((Sim
[D
] & pkgDepCache::DepInstall
) == 0)
61 cout
<< " [" << I
.Name() << " on " << D
.TargetPkg().Name() << ']';
62 if (D
->Type
== pkgCache::Dep::Conflicts
)
63 _error
->Error("Fatal, conflicts violated %s",I
.Name());
68 if (Sim
.BrokenCount() != 0)
75 // Simulate::Configure - Simulate configuration of a Package /*{{{*/
76 // ---------------------------------------------------------------------
77 /* This is not an acurate simulation of relatity, we should really not
78 install the package.. For some investigations it may be necessary
80 bool pkgSimulate::Configure(PkgIterator iPkg
)
83 PkgIterator Pkg
= Sim
.FindPkg(iPkg
.Name());
86 // Sim.MarkInstall(Pkg,false);
87 if (Sim
[Pkg
].InstBroken() == true)
89 cout
<< "Conf " << Pkg
.Name() << " broken" << endl
;
93 // Print out each package and the failed dependencies
94 for (pkgCache::DepIterator D
= Sim
[Pkg
].InstVerIter(Sim
).DependsList(); D
.end() == false; D
++)
96 if (Sim
.IsImportantDep(D
) == false ||
97 (Sim
[D
] & pkgDepCache::DepInstall
) != 0)
100 if (D
->Type
== pkgCache::Dep::Conflicts
)
101 cout
<< " Conflicts:" << D
.TargetPkg().Name();
103 cout
<< " Depends:" << D
.TargetPkg().Name();
107 _error
->Error("Conf Broken %s",Pkg
.Name());
110 cout
<< "Conf " << Pkg
.Name();
112 if (Sim
.BrokenCount() != 0)
120 // Simulate::Remove - Simulate the removal of a package /*{{{*/
121 // ---------------------------------------------------------------------
123 bool pkgSimulate::Remove(PkgIterator iPkg
)
125 // Adapt the iterator
126 PkgIterator Pkg
= Sim
.FindPkg(iPkg
.Name());
130 cout
<< "Remv " << Pkg
.Name();
132 if (Sim
.BrokenCount() != 0)
140 // Simulate::ShortBreaks - Print out a short line describing all breaks /*{{{*/
141 // ---------------------------------------------------------------------
143 void pkgSimulate::ShortBreaks()
146 for (PkgIterator I
= Sim
.PkgBegin(); I
.end() == false; I
++)
148 if (Sim
[I
].InstBroken() == true)
150 if (Flags
[I
->ID
] == 0)
151 cout
<< I
.Name() << ' ';
153 cout << I.Name() << "! ";*/
159 // ApplyStatus - Adjust for non-ok packages /*{{{*/
160 // ---------------------------------------------------------------------
161 /* We attempt to change the state of the all packages that have failed
162 installation toward their real state. The ordering code will perform
163 the necessary calculations to deal with the problems. */
164 bool pkgApplyStatus(pkgDepCache
&Cache
)
166 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
168 // Only choice for a ReInstReq package is to reinstall
169 if (I
->InstState
== pkgCache::State::ReInstReq
||
170 I
->InstState
== pkgCache::State::HoldReInstReq
)
176 switch (I
->CurrentState
)
178 // This means installation failed somehow
179 case pkgCache::State::UnPacked
:
180 case pkgCache::State::HalfConfigured
:
184 // This means removal failed
185 case pkgCache::State::HalfInstalled
:
190 if (I
->InstState
!= pkgCache::State::Ok
)
191 return _error
->Error("The package %s is not ok and I "
192 "don't know how to fix it!",I
.Name());
198 // FixBroken - Fix broken packages /*{{{*/
199 // ---------------------------------------------------------------------
200 /* This autoinstalls every broken package and then runs the problem resolver
202 bool pkgFixBroken(pkgDepCache
&Cache
)
204 // Auto upgrade all broken packages
205 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
206 if (Cache
[I
].NowBroken() == true)
207 Cache
.MarkInstall(I
,true);
209 /* Fix packages that are in a NeedArchive state but don't have a
210 downloadable install version */
211 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
213 if (I
.State() != pkgCache::PkgIterator::NeedsUnpack
||
214 Cache
[I
].Delete() == true)
217 if (Cache
[I
].InstVerIter(Cache
).Downloadable() == false)
220 Cache
.MarkInstall(I
,true);
223 pkgProblemResolver
Fix(Cache
);
224 return Fix
.Resolve(true);
227 // DistUpgrade - Distribution upgrade /*{{{*/
228 // ---------------------------------------------------------------------
229 /* This autoinstalls every package and then force installs every
230 pre-existing package. This creates the initial set of conditions which
231 most likely contain problems because too many things were installed.
233 The problem resolver is used to resolve the problems.
235 bool pkgDistUpgrade(pkgDepCache
&Cache
)
237 /* Auto upgrade all installed packages, this provides the basis
238 for the installation */
239 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
240 if (I
->CurrentVer
!= 0)
241 Cache
.MarkInstall(I
,true);
243 /* Now, auto upgrade all essential packages - this ensures that
244 the essential packages are present and working */
245 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
246 if ((I
->Flags
& pkgCache::Flag::Essential
) == pkgCache::Flag::Essential
)
247 Cache
.MarkInstall(I
,true);
249 /* We do it again over all previously installed packages to force
250 conflict resolution on them all. */
251 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
252 if (I
->CurrentVer
!= 0)
253 Cache
.MarkInstall(I
,false);
255 pkgProblemResolver
Fix(Cache
);
257 // Hold back held packages.
258 if (_config
->FindB("APT::Ingore-Hold",false) == false)
260 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
262 if (I
->SelectedState
== pkgCache::State::Hold
)
270 return Fix
.Resolve();
273 // AllUpgrade - Upgrade as many packages as possible /*{{{*/
274 // ---------------------------------------------------------------------
275 /* Right now the system must be consistent before this can be called.
276 It also will not change packages marked for install, it only tries
277 to install packages not marked for install */
278 bool pkgAllUpgrade(pkgDepCache
&Cache
)
280 pkgProblemResolver
Fix(Cache
);
282 if (Cache
.BrokenCount() != 0)
285 // Upgrade all installed packages
286 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
288 if (Cache
[I
].Install() == true)
291 if (_config
->FindB("APT::Ingore-Hold",false) == false)
292 if (I
->SelectedState
== pkgCache::State::Hold
)
295 if (I
->CurrentVer
!= 0 && Cache
[I
].InstallVer
!= 0)
296 Cache
.MarkInstall(I
,false);
299 return Fix
.ResolveByKeep();
302 // MinimizeUpgrade - Minimizes the set of packages to be upgraded /*{{{*/
303 // ---------------------------------------------------------------------
304 /* This simply goes over the entire set of packages and tries to keep
305 each package marked for upgrade. If a conflict is generated then
306 the package is restored. */
307 bool pkgMinimizeUpgrade(pkgDepCache
&Cache
)
309 if (Cache
.BrokenCount() != 0)
312 // We loop indefinately to get the minimal set size.
317 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
320 if (Cache
[I
].Upgrade() == false || Cache
[I
].NewInstall() == true)
323 // Keep it and see if that is OK
325 if (Cache
.BrokenCount() != 0)
326 Cache
.MarkInstall(I
,false);
331 while (Change
== true);
333 if (Cache
.BrokenCount() != 0)
334 return _error
->Error("Internal Error in pkgMinimizeUpgrade");
340 // ProblemResolver::pkgProblemResolver - Constructor /*{{{*/
341 // ---------------------------------------------------------------------
343 pkgProblemResolver::pkgProblemResolver(pkgDepCache
&Cache
) : Cache(Cache
)
346 unsigned long Size
= Cache
.HeaderP
->PackageCount
;
347 Scores
= new signed short[Size
];
348 Flags
= new unsigned char[Size
];
349 memset(Flags
,0,sizeof(*Flags
)*Size
);
351 // Set debug to true to see its decision logic
352 Debug
= _config
->FindB("Debug::pkgProblemResolver",false);
355 // ProblemResolver::ScoreSort - Sort the list by score /*{{{*/
356 // ---------------------------------------------------------------------
358 int pkgProblemResolver::ScoreSort(const void *a
,const void *b
)
360 Package
const **A
= (Package
const **)a
;
361 Package
const **B
= (Package
const **)b
;
362 if (This
->Scores
[(*A
)->ID
] > This
->Scores
[(*B
)->ID
])
364 if (This
->Scores
[(*A
)->ID
] < This
->Scores
[(*B
)->ID
])
369 // ProblemResolver::MakeScores - Make the score table /*{{{*/
370 // ---------------------------------------------------------------------
372 void pkgProblemResolver::MakeScores()
374 unsigned long Size
= Cache
.HeaderP
->PackageCount
;
375 memset(Scores
,0,sizeof(*Scores
)*Size
);
377 // Generate the base scores for a package based on its properties
378 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
380 if (Cache
[I
].InstallVer
== 0)
383 signed short &Score
= Scores
[I
->ID
];
385 /* This is arbitary, it should be high enough to elevate an
386 essantial package above most other packages but low enough
387 to allow an obsolete essential packages to be removed by
388 a conflicts on a powerfull normal package (ie libc6) */
389 if ((I
->Flags
& pkgCache::Flag::Essential
) == pkgCache::Flag::Essential
)
392 // We transform the priority
393 // Important Required Standard Optional Extra
394 signed short PrioMap
[] = {0,3,2,1,-1,-2};
395 if (Cache
[I
].InstVerIter(Cache
)->Priority
<= 5)
396 Score
+= PrioMap
[Cache
[I
].InstVerIter(Cache
)->Priority
];
398 /* This helps to fix oddball problems with conflicting packages
399 on the same level. We enhance the score of installed packages */
400 if (I
->CurrentVer
!= 0)
404 // Now that we have the base scores we go and propogate dependencies
405 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
407 if (Cache
[I
].InstallVer
== 0)
410 for (pkgCache::DepIterator D
= Cache
[I
].InstVerIter(Cache
).DependsList(); D
.end() == false; D
++)
412 if (D
->Type
== pkgCache::Dep::Depends
|| D
->Type
== pkgCache::Dep::PreDepends
)
413 Scores
[D
.TargetPkg()->ID
]++;
417 // Copy the scores to advoid additive looping
418 signed short *OldScores
= new signed short[Size
];
419 memcpy(OldScores
,Scores
,sizeof(*Scores
)*Size
);
421 /* Now we cause 1 level of dependency inheritance, that is we add the
422 score of the packages that depend on the target Package. This
423 fortifies high scoring packages */
424 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
426 if (Cache
[I
].InstallVer
== 0)
429 for (pkgCache::DepIterator D
= I
.RevDependsList(); D
.end() == false; D
++)
431 // Only do it for the install version
432 if ((pkgCache::Version
*)D
.ParentVer() != Cache
[D
.ParentPkg()].InstallVer
||
433 (D
->Type
!= pkgCache::Dep::Depends
&& D
->Type
!= pkgCache::Dep::PreDepends
))
436 Scores
[I
->ID
] += abs(OldScores
[D
.ParentPkg()->ID
]);
440 /* Now we propogate along provides. This makes the packages that
441 provide important packages extremely important */
442 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
444 for (pkgCache::PrvIterator P
= I
.ProvidesList(); P
.end() == false; P
++)
446 // Only do it once per package
447 if ((pkgCache::Version
*)P
.OwnerVer() != Cache
[P
.OwnerPkg()].InstallVer
)
449 Scores
[P
.OwnerPkg()->ID
] += abs(Scores
[I
->ID
] - OldScores
[I
->ID
]);
453 /* Protected things are pushed really high up. This number should put them
454 ahead of everything */
455 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
457 if ((Flags
[I
->ID
] & Protected
) != 0)
458 Scores
[I
->ID
] += 10000;
459 if ((I
->Flags
& pkgCache::Flag::Essential
) == pkgCache::Flag::Essential
)
460 Scores
[I
->ID
] += 5000;
466 // ProblemResolver::DoUpgrade - Attempt to upgrade this package /*{{{*/
467 // ---------------------------------------------------------------------
468 /* This goes through and tries to reinstall packages to make this package
470 bool pkgProblemResolver::DoUpgrade(pkgCache::PkgIterator Pkg
)
472 if ((Flags
[Pkg
->ID
] & Upgradable
) == 0 || Cache
[Pkg
].Upgradable() == false)
475 Flags
[Pkg
->ID
] &= ~Upgradable
;
477 bool WasKept
= Cache
[Pkg
].Keep();
478 Cache
.MarkInstall(Pkg
,false);
480 // This must be a virtual package or something like that.
481 if (Cache
[Pkg
].InstVerIter(Cache
).end() == true)
484 // Isolate the problem dependency
486 for (pkgCache::DepIterator D
= Cache
[Pkg
].InstVerIter(Cache
).DependsList(); D
.end() == false;)
488 // Compute a single dependency element (glob or)
489 pkgCache::DepIterator Start
= D
;
490 pkgCache::DepIterator End
= D
;
491 unsigned char State
= 0;
492 for (bool LastOR
= true; D
.end() == false && LastOR
== true; D
++)
495 LastOR
= (D
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
;
500 // We only worry about critical deps.
501 if (End
.IsCritical() != true)
505 if ((Cache
[End
] & pkgDepCache::DepGInstall
) == pkgDepCache::DepGInstall
)
508 // Hm, the group is broken.. I have no idea how to handle this
511 clog
<< "Note, a broken or group was found in " << Pkg
.Name() << "." << endl
;
516 // Do not change protected packages
517 PkgIterator P
= Start
.SmartTargetPkg();
518 if ((Flags
[P
->ID
] & Protected
) == Protected
)
521 clog
<< " Reinet Failed because of protected " << P
.Name() << endl
;
526 // Upgrade the package if the candidate version will fix the problem.
527 if ((Cache
[Start
] & pkgDepCache::DepCVer
) == pkgDepCache::DepCVer
)
529 if (DoUpgrade(P
) == false)
532 clog
<< " Reinst Failed because of " << P
.Name() << endl
;
539 /* We let the algorithm deal with conflicts on its next iteration,
540 it is much smarter than us */
541 if (End
->Type
== pkgCache::Dep::Conflicts
)
545 clog
<< " Reinst Failed early because of " << Start
.TargetPkg().Name() << endl
;
551 // Undo our operations - it might be smart to undo everything this did..
557 Cache
.MarkDelete(Pkg
);
562 clog
<< " Re-Instated " << Pkg
.Name() << endl
;
566 // ProblemResolver::Resolve - Run the resolution pass /*{{{*/
567 // ---------------------------------------------------------------------
568 /* This routines works by calculating a score for each package. The score
569 is derived by considering the package's priority and all reverse
570 dependents giving an integer that reflects the amount of breakage that
571 adjusting the package will inflict.
573 It goes from highest score to lowest and corrects all of the breaks by
574 keeping or removing the dependant packages. If that fails then it removes
575 the package itself and goes on. The routine should be able to intelligently
576 go from any broken state to a fixed state.
578 The BrokenFix flag enables a mode where the algorithm tries to
579 upgrade packages to advoid problems. */
580 bool pkgProblemResolver::Resolve(bool BrokenFix
)
582 unsigned long Size
= Cache
.HeaderP
->PackageCount
;
584 // Record which packages are marked for install
589 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
591 if (Cache
[I
].Install() == true)
592 Flags
[I
->ID
] |= PreInstalled
;
595 if (Cache
[I
].InstBroken() == true && BrokenFix
== true)
597 Cache
.MarkInstall(I
,false);
598 if (Cache
[I
].Install() == true)
602 Flags
[I
->ID
] &= ~PreInstalled
;
604 Flags
[I
->ID
] |= Upgradable
;
607 while (Again
== true);
610 clog
<< "Starting" << endl
;
614 /* We have to order the packages so that the broken fixing pass
615 operates from highest score to lowest. This prevents problems when
616 high score packages cause the removal of lower score packages that
617 would cause the removal of even lower score packages. */
618 pkgCache::Package
**PList
= new pkgCache::Package
*[Size
];
619 pkgCache::Package
**PEnd
= PList
;
620 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
623 qsort(PList
,PEnd
- PList
,sizeof(*PList
),&ScoreSort
);
625 /* for (pkgCache::Package **K = PList; K != PEnd; K++)
626 if (Scores[(*K)->ID] != 0)
628 pkgCache::PkgIterator Pkg(Cache,*K);
629 clog << Scores[(*K)->ID] << ' ' << Pkg.Name() <<
630 ' ' << (pkgCache::Version *)Pkg.CurrentVer() << ' ' <<
631 Cache[Pkg].InstallVer << ' ' << Cache[Pkg].CandidateVer << endl;
635 clog
<< "Starting 2" << endl
;
637 /* Now consider all broken packages. For each broken package we either
638 remove the package or fix it's problem. We do this once, it should
639 not be possible for a loop to form (that is a < b < c and fixing b by
640 changing a breaks c) */
642 for (int Counter
= 0; Counter
!= 10 && Change
== true; Counter
++)
645 for (pkgCache::Package
**K
= PList
; K
!= PEnd
; K
++)
647 pkgCache::PkgIterator
I(Cache
,*K
);
649 /* We attempt to install this and see if any breaks result,
650 this takes care of some strange cases */
651 if (Cache
[I
].CandidateVer
!= Cache
[I
].InstallVer
&&
652 I
->CurrentVer
!= 0 && Cache
[I
].InstallVer
!= 0 &&
653 (Flags
[I
->ID
] & PreInstalled
) != 0 &&
654 (Flags
[I
->ID
] & Protected
) == 0 &&
655 (Flags
[I
->ID
] & ReInstateTried
) == 0)
658 clog
<< " Try to Re-Instate " << I
.Name() << endl
;
659 unsigned long OldBreaks
= Cache
.BrokenCount();
660 pkgCache::Version
*OldVer
= Cache
[I
].InstallVer
;
661 Flags
[I
->ID
] &= ReInstateTried
;
663 Cache
.MarkInstall(I
,false);
664 if (Cache
[I
].InstBroken() == true ||
665 OldBreaks
< Cache
.BrokenCount())
674 clog
<< "Re-Instated " << I
.Name() << " (" << OldBreaks
<< " vs " << Cache
.BrokenCount() << ')' << endl
;
677 if (Cache
[I
].InstallVer
== 0 || Cache
[I
].InstBroken() == false)
680 // Isolate the problem dependency
681 PackageKill KillList
[100];
682 PackageKill
*LEnd
= KillList
;
683 for (pkgCache::DepIterator D
= Cache
[I
].InstVerIter(Cache
).DependsList(); D
.end() == false;)
685 // Compute a single dependency element (glob or)
686 pkgCache::DepIterator Start
;
687 pkgCache::DepIterator End
;
690 // We only worry about critical deps.
691 if (End
.IsCritical() != true)
695 if ((Cache
[End
] & pkgDepCache::DepGInstall
) == pkgDepCache::DepGInstall
)
698 // Hm, the group is broken.. I have no idea how to handle this
702 clog
<< "Note, a broken or group was found in " << I
.Name() << "." << endl
;
703 if ((Flags
[I
->ID
] & Protected
) != Protected
)
709 clog
<< "Package " << I
.Name() << " has broken dep on " << End
.TargetPkg().Name() << endl
;
711 /* Look across the version list. If there are no possible
712 targets then we keep the package and bail. This is necessary
713 if a package has a dep on another package that cant be found */
714 pkgCache::Version
**VList
= End
.AllTargets();
715 if (*VList
== 0 && (Flags
[I
->ID
] & Protected
) != Protected
&&
716 End
->Type
!= pkgCache::Dep::Conflicts
&&
717 Cache
[I
].NowBroken() == false)
725 for (pkgCache::Version
**V
= VList
; *V
!= 0; V
++)
727 pkgCache::VerIterator
Ver(Cache
,*V
);
728 pkgCache::PkgIterator Pkg
= Ver
.ParentPkg();
731 clog
<< " Considering " << Pkg
.Name() << ' ' << (int)Scores
[Pkg
->ID
] <<
732 " as a solution to " << I
.Name() << ' ' << (int)Scores
[I
->ID
] << endl
;
733 if (Scores
[I
->ID
] <= Scores
[Pkg
->ID
] ||
734 ((Cache
[End
] & pkgDepCache::DepGNow
) == 0 &&
735 End
->Type
!= pkgCache::Dep::Conflicts
))
737 if ((Flags
[I
->ID
] & Protected
) == Protected
)
740 // See if a keep will do
742 if (Cache
[I
].InstBroken() == false)
745 clog
<< " Holding Back " << I
.Name() << " rather than change " << End
.TargetPkg().Name() << endl
;
749 if (BrokenFix
== false || DoUpgrade(I
) == false)
752 clog
<< " Removing " << I
.Name() << " rather than change " << End
.TargetPkg().Name() << endl
;
755 Scores
[I
->ID
] = Scores
[Pkg
->ID
];
765 // Skip this if it is protected
766 if ((Flags
[Pkg
->ID
] & Protected
) != 0)
773 if (End
->Type
!= pkgCache::Dep::Conflicts
)
778 // Hm, nothing can possibly satisify this dep. Nuke it.
779 if (VList
[0] == 0 && End
->Type
!= pkgCache::Dep::Conflicts
&&
780 (Flags
[I
->ID
] & Protected
) != Protected
)
783 if (Cache
[I
].InstBroken() == false)
786 clog
<< " Holding Back " << I
.Name() << " because I can't find " << End
.TargetPkg().Name() << endl
;
791 clog
<< " Removing " << I
.Name() << " because I can't find " << End
.TargetPkg().Name() << endl
;
804 // Apply the kill list now
805 if (Cache
[I
].InstallVer
!= 0)
806 for (PackageKill
*J
= KillList
; J
!= LEnd
; J
++)
809 if ((Cache
[J
->Dep
] & pkgDepCache::DepGNow
) == 0)
811 if (J
->Dep
->Type
== pkgCache::Dep::Conflicts
)
814 clog
<< " Fixing " << I
.Name() << " via remove of " << J
->Pkg
.Name() << endl
;
815 Cache
.MarkDelete(J
->Pkg
);
821 clog
<< " Fixing " << I
.Name() << " via keep of " << J
->Pkg
.Name() << endl
;
822 Cache
.MarkKeep(J
->Pkg
);
826 Scores
[J
->Pkg
->ID
] = Scores
[I
->ID
];
832 clog
<< "Done" << endl
;
837 if (Cache
.BrokenCount() != 0)
838 return _error
->Error("Internal error, pkgProblemResolver::Resolve generated breaks.");
843 // ProblemResolver::ResolveByKeep - Resolve problems using keep /*{{{*/
844 // ---------------------------------------------------------------------
845 /* This is the work horse of the soft upgrade routine. It is very gental
846 in that it does not install or remove any packages. It is assumed that the
847 system was non-broken previously. */
848 bool pkgProblemResolver::ResolveByKeep()
850 unsigned long Size
= Cache
.HeaderP
->PackageCount
;
853 clog
<< "Entering ResolveByKeep" << endl
;
857 /* We have to order the packages so that the broken fixing pass
858 operates from highest score to lowest. This prevents problems when
859 high score packages cause the removal of lower score packages that
860 would cause the removal of even lower score packages. */
861 pkgCache::Package
**PList
= new pkgCache::Package
*[Size
];
862 pkgCache::Package
**PEnd
= PList
;
863 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
866 qsort(PList
,PEnd
- PList
,sizeof(*PList
),&ScoreSort
);
868 // Consider each broken package
869 pkgCache::Package
**LastStop
= 0;
870 for (pkgCache::Package
**K
= PList
; K
!= PEnd
; K
++)
872 pkgCache::PkgIterator
I(Cache
,*K
);
874 if (Cache
[I
].InstallVer
== 0 || Cache
[I
].InstBroken() == false)
877 /* Keep the package. If this works then great, otherwise we have
878 to be significantly more agressive and manipulate its dependencies */
879 if ((Flags
[I
->ID
] & Protected
) == 0)
882 clog
<< "Keeping package " << I
.Name() << endl
;
884 if (Cache
[I
].InstBroken() == false)
891 // Isolate the problem dependencies
892 for (pkgCache::DepIterator D
= Cache
[I
].InstVerIter(Cache
).DependsList(); D
.end() == false;)
894 // Compute a single dependency element (glob or)
895 pkgCache::DepIterator Start
= D
;
896 pkgCache::DepIterator End
= D
;
897 unsigned char State
= 0;
898 for (bool LastOR
= true; D
.end() == false && LastOR
== true; D
++)
901 LastOR
= (D
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
;
906 // We only worry about critical deps.
907 if (End
.IsCritical() != true)
911 if ((Cache
[End
] & pkgDepCache::DepGInstall
) == pkgDepCache::DepGInstall
)
914 // Hm, the group is broken.. I have no idea how to handle this
917 clog
<< "Note, a broken or group was found in " << I
.Name() << "." << endl
;
918 if ((Flags
[I
->ID
] & Protected
) == 0)
924 clog
<< "Package " << I
.Name() << " has broken dep on " << End
.TargetPkg().Name() << endl
;
926 // Look at all the possible provides on this package
927 pkgCache::Version
**VList
= End
.AllTargets();
928 for (pkgCache::Version
**V
= VList
; *V
!= 0; V
++)
930 pkgCache::VerIterator
Ver(Cache
,*V
);
931 pkgCache::PkgIterator Pkg
= Ver
.ParentPkg();
933 // It is not keepable
934 if (Cache
[Pkg
].InstallVer
== 0 ||
935 Pkg
->CurrentVer
== 0)
938 if ((Flags
[I
->ID
] & Protected
) == 0)
941 clog
<< " Keeping Package " << Pkg
.Name() << " due to dep" << endl
;
945 if (Cache
[I
].InstBroken() == false)
949 if (Cache
[I
].InstBroken() == false)
953 if (Cache
[I
].InstBroken() == true)
958 return _error
->Error("Internal Error, pkgProblemResolver::ResolveByKeep is looping on package %s.",I
.Name());
966 // ProblemResolver::InstallProtect - Install all protected packages /*{{{*/
967 // ---------------------------------------------------------------------
968 /* This is used to make sure protected packages are installed */
969 void pkgProblemResolver::InstallProtect()
971 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
973 if ((Flags
[I
->ID
] & Protected
) == Protected
)
975 if ((Flags
[I
->ID
] & ToRemove
) == ToRemove
)
978 Cache
.MarkInstall(I
,false);