]>
Commit | Line | Data |
---|---|---|
6c139d6e AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
5819a761 | 3 | // $Id: orderlist.cc,v 1.14 2001/05/07 05:49:43 jgg Exp $ |
6c139d6e AL |
4 | /* ###################################################################### |
5 | ||
6 | Order List - Represents and Manipulates an ordered list of packages. | |
7 | ||
8 | A list of packages can be ordered by a number of conflicting criteria | |
9 | each given a specific priority. Each package also has a set of flags | |
b2e465d6 | 10 | indicating some useful things about it that are derived in the |
6c139d6e AL |
11 | course of sorting. The pkgPackageManager class uses this class for |
12 | all of it's installation ordering needs. | |
13 | ||
14 | This is a modified version of Manoj's Routine B. It consists of four | |
15 | independent ordering algorithms that can be applied at for different | |
16 | points in the ordering. By appling progressivly fewer ordering | |
17 | operations it is possible to give each consideration it's own | |
18 | priority and create an order that satisfies the lowest applicable | |
19 | consideration. | |
20 | ||
21 | The rules for unpacking ordering are: | |
22 | 1) Unpacking ignores Depends: on all packages | |
23 | 2) Unpacking requires Conflicts: on -ALL- packages to be satisfied | |
24 | 3) Unpacking requires PreDepends: on this package only to be satisfied | |
25 | 4) Removing requires that no packages depend on the package to be | |
26 | removed. | |
27 | ||
28 | And the rule for configuration ordering is: | |
29 | 1) Configuring requires that the Depends: of the package be satisfied | |
30 | Conflicts+PreDepends are ignored because unpacking says they are | |
31 | already correct [exageration, it does check but we need not be | |
32 | concerned] | |
33 | ||
34 | And some features that are valuable for unpacking ordering. | |
35 | f1) Unpacking a new package should advoid breaking dependencies of | |
36 | configured packages | |
37 | f2) Removal should not require a force, corrolory of f1 | |
38 | f3) Unpacking should order by depends rather than fall back to random | |
39 | ordering. | |
40 | ||
41 | Each of the features can be enabled in the sorting routine at an | |
7365ff46 | 42 | arbitrary priority to give quite abit of control over the final unpacking |
6c139d6e AL |
43 | order. |
44 | ||
281daf46 | 45 | The rules listed above may never be violated and are called Critical. |
6c139d6e AL |
46 | When a critical rule is violated then a loop condition is recorded |
47 | and will have to be delt with in the caller. | |
63d3141a AL |
48 | |
49 | The ordering keeps two lists, the main list and the 'After List'. The | |
50 | purpose of the after list is to allow packages to be delayed. This is done | |
51 | by setting the after flag on the package. Any package which requires this | |
52 | package to be ordered before will inherit the after flag and so on. This | |
53 | is used for CD swap ordering where all packages on a second CD have the | |
54 | after flag set. This forces them and all their dependents to be ordered | |
55 | toward the end. | |
6c139d6e | 56 | |
b2e465d6 AL |
57 | There are complications in this algorithm when presented with cycles. |
58 | For all known practical cases it works, all cases where it doesn't work | |
59 | is fixable by tweaking the package descriptions. However, it should be | |
60 | possible to impove this further to make some better choices when | |
61 | presented with cycles. | |
62 | ||
6c139d6e AL |
63 | ##################################################################### */ |
64 | /*}}}*/ | |
65 | // Include Files /*{{{*/ | |
094a497d AL |
66 | #include <apt-pkg/orderlist.h> |
67 | #include <apt-pkg/depcache.h> | |
68 | #include <apt-pkg/error.h> | |
69 | #include <apt-pkg/version.h> | |
b2e465d6 AL |
70 | #include <apt-pkg/sptr.h> |
71 | #include <apt-pkg/configuration.h> | |
5819a761 AL |
72 | |
73 | #include <iostream> | |
6c139d6e AL |
74 | /*}}}*/ |
75 | ||
5819a761 AL |
76 | using namespace std; |
77 | ||
6c139d6e AL |
78 | pkgOrderList *pkgOrderList::Me = 0; |
79 | ||
80 | // OrderList::pkgOrderList - Constructor /*{{{*/ | |
81 | // --------------------------------------------------------------------- | |
82 | /* */ | |
b2e465d6 | 83 | pkgOrderList::pkgOrderList(pkgDepCache *pCache) : Cache(*pCache) |
6c139d6e | 84 | { |
281daf46 | 85 | FileList = 0; |
6c139d6e AL |
86 | Primary = 0; |
87 | Secondary = 0; | |
88 | RevDepends = 0; | |
89 | Remove = 0; | |
90 | LoopCount = -1; | |
b2e465d6 AL |
91 | Debug = _config->FindB("Debug::pkgOrderList",false); |
92 | ||
6c139d6e AL |
93 | /* Construct the arrays, egcs 1.0.1 bug requires the package count |
94 | hack */ | |
b2e465d6 | 95 | unsigned long Size = Cache.Head().PackageCount; |
63d3141a | 96 | Flags = new unsigned short[Size]; |
6c139d6e AL |
97 | End = List = new Package *[Size]; |
98 | memset(Flags,0,sizeof(*Flags)*Size); | |
99 | } | |
100 | /*}}}*/ | |
101 | // OrderList::~pkgOrderList - Destructor /*{{{*/ | |
102 | // --------------------------------------------------------------------- | |
103 | /* */ | |
104 | pkgOrderList::~pkgOrderList() | |
105 | { | |
106 | delete [] List; | |
107 | delete [] Flags; | |
108 | } | |
109 | /*}}}*/ | |
2fd65468 AL |
110 | // OrderList::IsMissing - Check if a file is missing /*{{{*/ |
111 | // --------------------------------------------------------------------- | |
112 | /* */ | |
113 | bool pkgOrderList::IsMissing(PkgIterator Pkg) | |
114 | { | |
115 | // Skip packages to erase | |
116 | if (Cache[Pkg].Delete() == true) | |
117 | return false; | |
118 | ||
119 | // Skip Packages that need configure only. | |
120 | if (Pkg.State() == pkgCache::PkgIterator::NeedsConfigure && | |
121 | Cache[Pkg].Keep() == true) | |
122 | return false; | |
7cd4153b AL |
123 | |
124 | if (FileList == 0) | |
125 | return false; | |
2fd65468 | 126 | |
7cd4153b | 127 | if (FileList[Pkg->ID].empty() == false) |
2fd65468 AL |
128 | return false; |
129 | return true; | |
130 | } | |
131 | /*}}}*/ | |
6c139d6e AL |
132 | // OrderList::DoRun - Does an order run /*{{{*/ |
133 | // --------------------------------------------------------------------- | |
134 | /* The caller is expeted to have setup the desired probe state */ | |
135 | bool pkgOrderList::DoRun() | |
281daf46 | 136 | { |
6c139d6e | 137 | // Temp list |
b2e465d6 AL |
138 | unsigned long Size = Cache.Head().PackageCount; |
139 | SPtrArray<Package *> NList = new Package *[Size]; | |
140 | SPtrArray<Package *> AfterList = new Package *[Size]; | |
63d3141a AL |
141 | AfterEnd = AfterList; |
142 | ||
6c139d6e AL |
143 | Depth = 0; |
144 | WipeFlags(Added | AddPending | Loop | InList); | |
145 | ||
146 | for (iterator I = List; I != End; I++) | |
147 | Flag(*I,InList); | |
63d3141a | 148 | |
6c139d6e AL |
149 | // Rebuild the main list into the temp list. |
150 | iterator OldEnd = End; | |
151 | End = NList; | |
152 | for (iterator I = List; I != OldEnd; I++) | |
153 | if (VisitNode(PkgIterator(Cache,*I)) == false) | |
154 | { | |
155 | End = OldEnd; | |
6c139d6e AL |
156 | return false; |
157 | } | |
158 | ||
63d3141a AL |
159 | // Copy the after list to the end of the main list |
160 | for (Package **I = AfterList; I != AfterEnd; I++) | |
161 | *End++ = *I; | |
162 | ||
6c139d6e AL |
163 | // Swap the main list to the new list |
164 | delete [] List; | |
b2e465d6 | 165 | List = NList.UnGuard(); |
6c139d6e AL |
166 | return true; |
167 | } | |
168 | /*}}}*/ | |
169 | // OrderList::OrderCritical - Perform critical unpacking ordering /*{{{*/ | |
170 | // --------------------------------------------------------------------- | |
171 | /* This performs predepends and immediate configuration ordering only. | |
172 | This is termed critical unpacking ordering. Any loops that form are | |
173 | fatal and indicate that the packages cannot be installed. */ | |
174 | bool pkgOrderList::OrderCritical() | |
175 | { | |
281daf46 | 176 | FileList = 0; |
5e312de7 | 177 | |
727f18af | 178 | Primary = &pkgOrderList::DepUnPackPre; |
6c139d6e AL |
179 | Secondary = 0; |
180 | RevDepends = 0; | |
181 | Remove = 0; | |
182 | LoopCount = 0; | |
5e312de7 | 183 | |
6c139d6e AL |
184 | // Sort |
185 | Me = this; | |
5e312de7 DK |
186 | qsort(List,End - List,sizeof(*List),&OrderCompareB); |
187 | ||
6c139d6e AL |
188 | if (DoRun() == false) |
189 | return false; | |
5e312de7 | 190 | |
6c139d6e AL |
191 | if (LoopCount != 0) |
192 | return _error->Error("Fatal, predepends looping detected"); | |
5e312de7 DK |
193 | |
194 | if (Debug == true) | |
195 | { | |
196 | clog << "** Critical Unpack ordering done" << endl; | |
197 | ||
198 | for (iterator I = List; I != End; I++) | |
199 | { | |
200 | PkgIterator P(Cache,*I); | |
201 | if (IsNow(P) == true) | |
202 | clog << " " << P.Name() << ' ' << IsMissing(P) << ',' << IsFlag(P,After) << endl; | |
203 | } | |
204 | } | |
205 | ||
6c139d6e AL |
206 | return true; |
207 | } | |
208 | /*}}}*/ | |
209 | // OrderList::OrderUnpack - Perform complete unpacking ordering /*{{{*/ | |
210 | // --------------------------------------------------------------------- | |
211 | /* This performs complete unpacking ordering and creates an order that is | |
212 | suitable for unpacking */ | |
281daf46 | 213 | bool pkgOrderList::OrderUnpack(string *FileList) |
6c139d6e | 214 | { |
281daf46 AL |
215 | this->FileList = FileList; |
216 | ||
63d3141a AL |
217 | // Setup the after flags |
218 | if (FileList != 0) | |
219 | { | |
220 | WipeFlags(After); | |
5e312de7 | 221 | |
63d3141a AL |
222 | // Set the inlist flag |
223 | for (iterator I = List; I != End; I++) | |
224 | { | |
225 | PkgIterator P(Cache,*I); | |
226 | if (IsMissing(P) == true && IsNow(P) == true) | |
227 | Flag(*I,After); | |
228 | } | |
229 | } | |
5e312de7 | 230 | |
727f18af AL |
231 | Primary = &pkgOrderList::DepUnPackCrit; |
232 | Secondary = &pkgOrderList::DepConfigure; | |
233 | RevDepends = &pkgOrderList::DepUnPackDep; | |
234 | Remove = &pkgOrderList::DepRemove; | |
6c139d6e AL |
235 | LoopCount = -1; |
236 | ||
237 | // Sort | |
238 | Me = this; | |
239 | qsort(List,End - List,sizeof(*List),&OrderCompareA); | |
281daf46 | 240 | |
5e312de7 DK |
241 | if (_config->Find("PackageManager::Configure","all") == "all") |
242 | { | |
243 | if (Debug == true) | |
244 | clog << "** Pass A" << endl; | |
245 | if (DoRun() == false) | |
246 | return false; | |
247 | } | |
248 | else if (Debug == true) | |
249 | clog << "** Skip A (same as B for non-all Configure)" << endl; | |
250 | ||
b2e465d6 AL |
251 | if (Debug == true) |
252 | clog << "** Pass B" << endl; | |
6c139d6e AL |
253 | Secondary = 0; |
254 | if (DoRun() == false) | |
255 | return false; | |
256 | ||
b2e465d6 AL |
257 | if (Debug == true) |
258 | clog << "** Pass C" << endl; | |
6c139d6e AL |
259 | LoopCount = 0; |
260 | RevDepends = 0; | |
261 | Remove = 0; // Otherwise the libreadline remove problem occures | |
262 | if (DoRun() == false) | |
263 | return false; | |
5e312de7 | 264 | |
b2e465d6 AL |
265 | if (Debug == true) |
266 | clog << "** Pass D" << endl; | |
6c139d6e | 267 | LoopCount = 0; |
727f18af | 268 | Primary = &pkgOrderList::DepUnPackPre; |
6c139d6e AL |
269 | if (DoRun() == false) |
270 | return false; | |
271 | ||
b2e465d6 | 272 | if (Debug == true) |
6c139d6e | 273 | { |
b2e465d6 AL |
274 | clog << "** Unpack ordering done" << endl; |
275 | ||
276 | for (iterator I = List; I != End; I++) | |
277 | { | |
278 | PkgIterator P(Cache,*I); | |
279 | if (IsNow(P) == true) | |
5e312de7 | 280 | clog << " " << P.Name() << ' ' << IsMissing(P) << ',' << IsFlag(P,After) << endl; |
b2e465d6 | 281 | } |
5e312de7 | 282 | } |
6c139d6e AL |
283 | |
284 | return true; | |
285 | } | |
286 | /*}}}*/ | |
287 | // OrderList::OrderConfigure - Perform configuration ordering /*{{{*/ | |
288 | // --------------------------------------------------------------------- | |
289 | /* This orders by depends only and produces an order which is suitable | |
290 | for configuration */ | |
291 | bool pkgOrderList::OrderConfigure() | |
292 | { | |
281daf46 | 293 | FileList = 0; |
727f18af | 294 | Primary = &pkgOrderList::DepConfigure; |
6c139d6e AL |
295 | Secondary = 0; |
296 | RevDepends = 0; | |
297 | Remove = 0; | |
298 | LoopCount = -1; | |
299 | return DoRun(); | |
300 | } | |
301 | /*}}}*/ | |
6c139d6e AL |
302 | // OrderList::Score - Score the package for sorting /*{{{*/ |
303 | // --------------------------------------------------------------------- | |
304 | /* Higher scores order earlier */ | |
305 | int pkgOrderList::Score(PkgIterator Pkg) | |
306 | { | |
5e312de7 DK |
307 | static int const ScoreDelete = _config->FindI("OrderList::Score::Delete", 500); |
308 | ||
6c139d6e AL |
309 | // Removal is always done first |
310 | if (Cache[Pkg].Delete() == true) | |
5e312de7 DK |
311 | return ScoreDelete; |
312 | ||
281daf46 AL |
313 | // This should never happen.. |
314 | if (Cache[Pkg].InstVerIter(Cache).end() == true) | |
315 | return -1; | |
5e312de7 DK |
316 | |
317 | static int const ScoreEssential = _config->FindI("OrderList::Score::Essential", 200); | |
318 | static int const ScoreImmediate = _config->FindI("OrderList::Score::Immediate", 10); | |
319 | static int const ScorePreDepends = _config->FindI("OrderList::Score::PreDepends", 50); | |
320 | ||
6c139d6e AL |
321 | int Score = 0; |
322 | if ((Pkg->Flags & pkgCache::Flag::Essential) == pkgCache::Flag::Essential) | |
5e312de7 | 323 | Score += ScoreEssential; |
6c139d6e | 324 | |
b2e465d6 | 325 | if (IsFlag(Pkg,Immediate) == true) |
5e312de7 DK |
326 | Score += ScoreImmediate; |
327 | ||
328 | for (DepIterator D = Cache[Pkg].InstVerIter(Cache).DependsList(); | |
6c139d6e AL |
329 | D.end() == false; D++) |
330 | if (D->Type == pkgCache::Dep::PreDepends) | |
331 | { | |
5e312de7 | 332 | Score += ScorePreDepends; |
6c139d6e AL |
333 | break; |
334 | } | |
5e312de7 | 335 | |
6c139d6e AL |
336 | // Important Required Standard Optional Extra |
337 | signed short PrioMap[] = {0,5,4,3,1,0}; | |
338 | if (Cache[Pkg].InstVerIter(Cache)->Priority <= 5) | |
339 | Score += PrioMap[Cache[Pkg].InstVerIter(Cache)->Priority]; | |
340 | return Score; | |
341 | } | |
342 | /*}}}*/ | |
343 | // OrderList::FileCmp - Compare by package file /*{{{*/ | |
344 | // --------------------------------------------------------------------- | |
345 | /* This compares by the package file that the install version is in. */ | |
346 | int pkgOrderList::FileCmp(PkgIterator A,PkgIterator B) | |
347 | { | |
348 | if (Cache[A].Delete() == true && Cache[B].Delete() == true) | |
349 | return 0; | |
350 | if (Cache[A].Delete() == true) | |
351 | return -1; | |
352 | if (Cache[B].Delete() == true) | |
353 | return 1; | |
354 | ||
355 | if (Cache[A].InstVerIter(Cache).FileList().end() == true) | |
356 | return -1; | |
281daf46 | 357 | if (Cache[B].InstVerIter(Cache).FileList().end() == true) |
6c139d6e AL |
358 | return 1; |
359 | ||
360 | pkgCache::PackageFile *FA = Cache[A].InstVerIter(Cache).FileList().File(); | |
361 | pkgCache::PackageFile *FB = Cache[B].InstVerIter(Cache).FileList().File(); | |
362 | if (FA < FB) | |
363 | return -1; | |
364 | if (FA > FB) | |
365 | return 1; | |
366 | return 0; | |
367 | } | |
368 | /*}}}*/ | |
281daf46 AL |
369 | // BoolCompare - Comparison function for two booleans /*{{{*/ |
370 | // --------------------------------------------------------------------- | |
371 | /* */ | |
372 | static int BoolCompare(bool A,bool B) | |
373 | { | |
374 | if (A == B) | |
375 | return 0; | |
376 | if (A == false) | |
377 | return -1; | |
378 | return 1; | |
379 | } | |
380 | /*}}}*/ | |
6c139d6e AL |
381 | // OrderList::OrderCompareA - Order the installation by op /*{{{*/ |
382 | // --------------------------------------------------------------------- | |
383 | /* This provides a first-pass sort of the list and gives a decent starting | |
384 | point for further complete ordering. It is used by OrderUnpack only */ | |
385 | int pkgOrderList::OrderCompareA(const void *a, const void *b) | |
386 | { | |
387 | PkgIterator A(Me->Cache,*(Package **)a); | |
388 | PkgIterator B(Me->Cache,*(Package **)b); | |
389 | ||
281daf46 AL |
390 | // We order packages with a set state toward the front |
391 | int Res; | |
7834cb57 | 392 | if ((Res = BoolCompare(Me->IsNow(A),Me->IsNow(B))) != 0) |
281daf46 AL |
393 | return -1*Res; |
394 | ||
395 | // We order missing files to toward the end | |
63d3141a | 396 | /* if (Me->FileList != 0) |
281daf46 | 397 | { |
2fd65468 | 398 | if ((Res = BoolCompare(Me->IsMissing(A), |
7834cb57 | 399 | Me->IsMissing(B))) != 0) |
2fd65468 | 400 | return Res; |
63d3141a | 401 | }*/ |
281daf46 | 402 | |
6c139d6e AL |
403 | if (A.State() != pkgCache::PkgIterator::NeedsNothing && |
404 | B.State() == pkgCache::PkgIterator::NeedsNothing) | |
405 | return -1; | |
406 | ||
407 | if (A.State() == pkgCache::PkgIterator::NeedsNothing && | |
408 | B.State() != pkgCache::PkgIterator::NeedsNothing) | |
409 | return 1; | |
410 | ||
411 | int ScoreA = Me->Score(A); | |
412 | int ScoreB = Me->Score(B); | |
5e312de7 | 413 | |
6c139d6e AL |
414 | if (ScoreA > ScoreB) |
415 | return -1; | |
416 | ||
417 | if (ScoreA < ScoreB) | |
418 | return 1; | |
419 | ||
420 | return strcmp(A.Name(),B.Name()); | |
421 | } | |
422 | /*}}}*/ | |
423 | // OrderList::OrderCompareB - Order the installation by source /*{{{*/ | |
424 | // --------------------------------------------------------------------- | |
b2e465d6 | 425 | /* This orders by installation source. This is useful to handle |
6c139d6e AL |
426 | inter-source breaks */ |
427 | int pkgOrderList::OrderCompareB(const void *a, const void *b) | |
428 | { | |
429 | PkgIterator A(Me->Cache,*(Package **)a); | |
430 | PkgIterator B(Me->Cache,*(Package **)b); | |
431 | ||
432 | if (A.State() != pkgCache::PkgIterator::NeedsNothing && | |
433 | B.State() == pkgCache::PkgIterator::NeedsNothing) | |
434 | return -1; | |
435 | ||
436 | if (A.State() == pkgCache::PkgIterator::NeedsNothing && | |
437 | B.State() != pkgCache::PkgIterator::NeedsNothing) | |
438 | return 1; | |
439 | ||
440 | int F = Me->FileCmp(A,B); | |
441 | if (F != 0) | |
442 | { | |
443 | if (F > 0) | |
444 | return -1; | |
445 | return 1; | |
446 | } | |
447 | ||
448 | int ScoreA = Me->Score(A); | |
449 | int ScoreB = Me->Score(B); | |
5e312de7 | 450 | |
6c139d6e AL |
451 | if (ScoreA > ScoreB) |
452 | return -1; | |
453 | ||
454 | if (ScoreA < ScoreB) | |
455 | return 1; | |
456 | ||
457 | return strcmp(A.Name(),B.Name()); | |
458 | } | |
459 | /*}}}*/ | |
6c139d6e AL |
460 | // OrderList::VisitDeps - Visit forward install dependencies /*{{{*/ |
461 | // --------------------------------------------------------------------- | |
462 | /* This calls the dependency function for the normal forwards dependencies | |
463 | of the package */ | |
464 | bool pkgOrderList::VisitDeps(DepFunc F,PkgIterator Pkg) | |
465 | { | |
466 | if (F == 0 || Pkg.end() == true || Cache[Pkg].InstallVer == 0) | |
467 | return true; | |
468 | ||
469 | return (this->*F)(Cache[Pkg].InstVerIter(Cache).DependsList()); | |
470 | } | |
471 | /*}}}*/ | |
472 | // OrderList::VisitRDeps - Visit reverse dependencies /*{{{*/ | |
473 | // --------------------------------------------------------------------- | |
474 | /* This calls the dependency function for all of the normal reverse depends | |
475 | of the package */ | |
476 | bool pkgOrderList::VisitRDeps(DepFunc F,PkgIterator Pkg) | |
477 | { | |
478 | if (F == 0 || Pkg.end() == true) | |
479 | return true; | |
480 | ||
481 | return (this->*F)(Pkg.RevDependsList()); | |
482 | } | |
483 | /*}}}*/ | |
484 | // OrderList::VisitRProvides - Visit provides reverse dependencies /*{{{*/ | |
485 | // --------------------------------------------------------------------- | |
486 | /* This calls the dependency function for all reverse dependencies | |
487 | generated by the provides line on the package. */ | |
488 | bool pkgOrderList::VisitRProvides(DepFunc F,VerIterator Ver) | |
489 | { | |
490 | if (F == 0 || Ver.end() == true) | |
491 | return true; | |
492 | ||
493 | bool Res = true; | |
494 | for (PrvIterator P = Ver.ProvidesList(); P.end() == false; P++) | |
495 | Res &= (this->*F)(P.ParentPkg().RevDependsList()); | |
496 | return true; | |
497 | } | |
498 | /*}}}*/ | |
499 | // OrderList::VisitProvides - Visit all of the providing packages /*{{{*/ | |
500 | // --------------------------------------------------------------------- | |
501 | /* This routine calls visit on all providing packages. */ | |
3fb5f4e4 | 502 | bool pkgOrderList::VisitProvides(DepIterator D,bool Critical) |
25be5a8f | 503 | { |
b2e465d6 | 504 | SPtrArray<Version *> List = D.AllTargets(); |
6c139d6e AL |
505 | for (Version **I = List; *I != 0; I++) |
506 | { | |
507 | VerIterator Ver(Cache,*I); | |
508 | PkgIterator Pkg = Ver.ParentPkg(); | |
25be5a8f AL |
509 | |
510 | if (Cache[Pkg].Keep() == true && Pkg.State() == PkgIterator::NeedsNothing) | |
6c139d6e AL |
511 | continue; |
512 | ||
b2e465d6 | 513 | if (D->Type != pkgCache::Dep::Conflicts && |
308c7d30 | 514 | D->Type != pkgCache::Dep::DpkgBreaks && |
b2e465d6 AL |
515 | D->Type != pkgCache::Dep::Obsoletes && |
516 | Cache[Pkg].InstallVer != *I) | |
6c139d6e AL |
517 | continue; |
518 | ||
b2e465d6 | 519 | if ((D->Type == pkgCache::Dep::Conflicts || |
308c7d30 | 520 | D->Type == pkgCache::Dep::DpkgBreaks || |
b2e465d6 AL |
521 | D->Type == pkgCache::Dep::Obsoletes) && |
522 | (Version *)Pkg.CurrentVer() != *I) | |
6c139d6e AL |
523 | continue; |
524 | ||
3fb5f4e4 | 525 | // Skip over missing files |
140fd43f | 526 | if (Critical == false && IsMissing(D.ParentPkg()) == true) |
3fb5f4e4 | 527 | continue; |
25be5a8f | 528 | |
6c139d6e | 529 | if (VisitNode(Pkg) == false) |
6c139d6e | 530 | return false; |
6c139d6e | 531 | } |
6c139d6e AL |
532 | return true; |
533 | } | |
534 | /*}}}*/ | |
535 | // OrderList::VisitNode - Recursive ordering director /*{{{*/ | |
536 | // --------------------------------------------------------------------- | |
537 | /* This is the core ordering routine. It calls the set dependency | |
538 | consideration functions which then potentialy call this again. Finite | |
539 | depth is achived through the colouring mechinism. */ | |
540 | bool pkgOrderList::VisitNode(PkgIterator Pkg) | |
541 | { | |
542 | // Looping or irrelevent. | |
e1b74f61 | 543 | // This should probably trancend not installed packages |
6c139d6e AL |
544 | if (Pkg.end() == true || IsFlag(Pkg,Added) == true || |
545 | IsFlag(Pkg,AddPending) == true || IsFlag(Pkg,InList) == false) | |
546 | return true; | |
547 | ||
b2e465d6 AL |
548 | if (Debug == true) |
549 | { | |
550 | for (int j = 0; j != Depth; j++) clog << ' '; | |
551 | clog << "Visit " << Pkg.Name() << endl; | |
552 | } | |
553 | ||
6c139d6e AL |
554 | Depth++; |
555 | ||
556 | // Color grey | |
557 | Flag(Pkg,AddPending); | |
558 | ||
559 | DepFunc Old = Primary; | |
560 | ||
561 | // Perform immedate configuration of the package if so flagged. | |
727f18af AL |
562 | if (IsFlag(Pkg,Immediate) == true && Primary != &pkgOrderList::DepUnPackPre) |
563 | Primary = &pkgOrderList::DepUnPackPreD; | |
281daf46 AL |
564 | |
565 | if (IsNow(Pkg) == true) | |
6c139d6e | 566 | { |
281daf46 AL |
567 | bool Res = true; |
568 | if (Cache[Pkg].Delete() == false) | |
569 | { | |
570 | // Primary | |
571 | Res &= Res && VisitDeps(Primary,Pkg); | |
572 | Res &= Res && VisitRDeps(Primary,Pkg); | |
573 | Res &= Res && VisitRProvides(Primary,Pkg.CurrentVer()); | |
574 | Res &= Res && VisitRProvides(Primary,Cache[Pkg].InstVerIter(Cache)); | |
575 | ||
576 | // RevDep | |
577 | Res &= Res && VisitRDeps(RevDepends,Pkg); | |
578 | Res &= Res && VisitRProvides(RevDepends,Pkg.CurrentVer()); | |
579 | Res &= Res && VisitRProvides(RevDepends,Cache[Pkg].InstVerIter(Cache)); | |
580 | ||
581 | // Secondary | |
582 | Res &= Res && VisitDeps(Secondary,Pkg); | |
583 | Res &= Res && VisitRDeps(Secondary,Pkg); | |
584 | Res &= Res && VisitRProvides(Secondary,Pkg.CurrentVer()); | |
585 | Res &= Res && VisitRProvides(Secondary,Cache[Pkg].InstVerIter(Cache)); | |
586 | } | |
587 | else | |
588 | { | |
589 | // RevDep | |
590 | Res &= Res && VisitRDeps(Remove,Pkg); | |
591 | Res &= Res && VisitRProvides(Remove,Pkg.CurrentVer()); | |
592 | } | |
6c139d6e | 593 | } |
281daf46 | 594 | |
6c139d6e AL |
595 | if (IsFlag(Pkg,Added) == false) |
596 | { | |
597 | Flag(Pkg,Added,Added | AddPending); | |
63d3141a AL |
598 | if (IsFlag(Pkg,After) == true) |
599 | *AfterEnd++ = Pkg; | |
600 | else | |
601 | *End++ = Pkg; | |
6c139d6e AL |
602 | } |
603 | ||
604 | Primary = Old; | |
605 | Depth--; | |
6c139d6e | 606 | |
b2e465d6 AL |
607 | if (Debug == true) |
608 | { | |
609 | for (int j = 0; j != Depth; j++) clog << ' '; | |
610 | clog << "Leave " << Pkg.Name() << ' ' << IsFlag(Pkg,Added) << ',' << IsFlag(Pkg,AddPending) << endl; | |
611 | } | |
612 | ||
6c139d6e AL |
613 | return true; |
614 | } | |
615 | /*}}}*/ | |
6c139d6e AL |
616 | // OrderList::DepUnPackCrit - Critical UnPacking ordering /*{{{*/ |
617 | // --------------------------------------------------------------------- | |
618 | /* Critical unpacking ordering strives to satisfy Conflicts: and | |
619 | PreDepends: only. When a prdepends is encountered the Primary | |
620 | DepFunc is changed to be DepUnPackPreD. | |
621 | ||
622 | Loops are preprocessed and logged. */ | |
623 | bool pkgOrderList::DepUnPackCrit(DepIterator D) | |
624 | { | |
625 | for (; D.end() == false; D++) | |
626 | { | |
627 | if (D.Reverse() == true) | |
628 | { | |
629 | /* Reverse depenanices are only interested in conflicts, | |
630 | predepend breakage is ignored here */ | |
b2e465d6 AL |
631 | if (D->Type != pkgCache::Dep::Conflicts && |
632 | D->Type != pkgCache::Dep::Obsoletes) | |
6c139d6e AL |
633 | continue; |
634 | ||
635 | // Duplication elimination, consider only the current version | |
636 | if (D.ParentPkg().CurrentVer() != D.ParentVer()) | |
637 | continue; | |
638 | ||
639 | /* For reverse dependencies we wish to check if the | |
640 | dependency is satisifed in the install state. The | |
641 | target package (caller) is going to be in the installed | |
642 | state. */ | |
643 | if (CheckDep(D) == true) | |
644 | continue; | |
645 | ||
646 | if (VisitNode(D.ParentPkg()) == false) | |
647 | return false; | |
648 | } | |
649 | else | |
650 | { | |
651 | /* Forward critical dependencies MUST be correct before the | |
652 | package can be unpacked. */ | |
b2e465d6 | 653 | if (D->Type != pkgCache::Dep::Conflicts && |
308c7d30 | 654 | D->Type != pkgCache::Dep::DpkgBreaks && |
b2e465d6 AL |
655 | D->Type != pkgCache::Dep::Obsoletes && |
656 | D->Type != pkgCache::Dep::PreDepends) | |
6c139d6e AL |
657 | continue; |
658 | ||
659 | /* We wish to check if the dep is okay in the now state of the | |
660 | target package against the install state of this package. */ | |
661 | if (CheckDep(D) == true) | |
662 | { | |
663 | /* We want to catch predepends loops with the code below. | |
664 | Conflicts loops that are Dep OK are ignored */ | |
665 | if (IsFlag(D.TargetPkg(),AddPending) == false || | |
666 | D->Type != pkgCache::Dep::PreDepends) | |
667 | continue; | |
668 | } | |
669 | ||
670 | // This is the loop detection | |
671 | if (IsFlag(D.TargetPkg(),Added) == true || | |
672 | IsFlag(D.TargetPkg(),AddPending) == true) | |
673 | { | |
674 | if (IsFlag(D.TargetPkg(),AddPending) == true) | |
675 | AddLoop(D); | |
676 | continue; | |
677 | } | |
678 | ||
679 | /* Predepends require a special ordering stage, they must have | |
680 | all dependents installed as well */ | |
681 | DepFunc Old = Primary; | |
682 | bool Res = false; | |
683 | if (D->Type == pkgCache::Dep::PreDepends) | |
727f18af | 684 | Primary = &pkgOrderList::DepUnPackPreD; |
3fb5f4e4 | 685 | Res = VisitProvides(D,true); |
6c139d6e AL |
686 | Primary = Old; |
687 | if (Res == false) | |
688 | return false; | |
689 | } | |
690 | } | |
691 | return true; | |
692 | } | |
92fcbfc1 | 693 | /*}}}*/ |
6c139d6e AL |
694 | // OrderList::DepUnPackPreD - Critical UnPacking ordering with depends /*{{{*/ |
695 | // --------------------------------------------------------------------- | |
696 | /* Critical PreDepends (also configure immediate and essential) strives to | |
697 | ensure not only that all conflicts+predepends are met but that this | |
92fcbfc1 | 698 | package will be immediately configurable when it is unpacked. |
6c139d6e AL |
699 | Loops are preprocessed and logged. */ |
700 | bool pkgOrderList::DepUnPackPreD(DepIterator D) | |
701 | { | |
702 | if (D.Reverse() == true) | |
703 | return DepUnPackCrit(D); | |
704 | ||
705 | for (; D.end() == false; D++) | |
706 | { | |
707 | if (D.IsCritical() == false) | |
708 | continue; | |
709 | ||
710 | /* We wish to check if the dep is okay in the now state of the | |
711 | target package against the install state of this package. */ | |
712 | if (CheckDep(D) == true) | |
713 | { | |
714 | /* We want to catch predepends loops with the code below. | |
715 | Conflicts loops that are Dep OK are ignored */ | |
716 | if (IsFlag(D.TargetPkg(),AddPending) == false || | |
717 | D->Type != pkgCache::Dep::PreDepends) | |
718 | continue; | |
719 | } | |
720 | ||
721 | // This is the loop detection | |
722 | if (IsFlag(D.TargetPkg(),Added) == true || | |
723 | IsFlag(D.TargetPkg(),AddPending) == true) | |
724 | { | |
725 | if (IsFlag(D.TargetPkg(),AddPending) == true) | |
726 | AddLoop(D); | |
727 | continue; | |
728 | } | |
729 | ||
3fb5f4e4 | 730 | if (VisitProvides(D,true) == false) |
6c139d6e AL |
731 | return false; |
732 | } | |
733 | return true; | |
734 | } | |
735 | /*}}}*/ | |
736 | // OrderList::DepUnPackPre - Critical Predepends ordering /*{{{*/ | |
737 | // --------------------------------------------------------------------- | |
738 | /* Critical PreDepends (also configure immediate and essential) strives to | |
739 | ensure not only that all conflicts+predepends are met but that this | |
740 | package will be immediately configurable when it is unpacked. | |
741 | ||
742 | Loops are preprocessed and logged. All loops will be fatal. */ | |
743 | bool pkgOrderList::DepUnPackPre(DepIterator D) | |
744 | { | |
745 | if (D.Reverse() == true) | |
746 | return true; | |
747 | ||
748 | for (; D.end() == false; D++) | |
749 | { | |
750 | /* Only consider the PreDepends or Depends. Depends are only | |
751 | considered at the lowest depth or in the case of immediate | |
752 | configure */ | |
753 | if (D->Type != pkgCache::Dep::PreDepends) | |
754 | { | |
755 | if (D->Type == pkgCache::Dep::Depends) | |
756 | { | |
757 | if (Depth == 1 && IsFlag(D.ParentPkg(),Immediate) == false) | |
758 | continue; | |
759 | } | |
760 | else | |
761 | continue; | |
762 | } | |
b2e465d6 | 763 | |
6c139d6e AL |
764 | /* We wish to check if the dep is okay in the now state of the |
765 | target package against the install state of this package. */ | |
766 | if (CheckDep(D) == true) | |
767 | { | |
768 | /* We want to catch predepends loops with the code below. | |
769 | Conflicts loops that are Dep OK are ignored */ | |
770 | if (IsFlag(D.TargetPkg(),AddPending) == false) | |
771 | continue; | |
772 | } | |
b2e465d6 | 773 | |
6c139d6e AL |
774 | // This is the loop detection |
775 | if (IsFlag(D.TargetPkg(),Added) == true || | |
776 | IsFlag(D.TargetPkg(),AddPending) == true) | |
777 | { | |
778 | if (IsFlag(D.TargetPkg(),AddPending) == true) | |
779 | AddLoop(D); | |
780 | continue; | |
781 | } | |
782 | ||
3fb5f4e4 | 783 | if (VisitProvides(D,true) == false) |
6c139d6e AL |
784 | return false; |
785 | } | |
786 | return true; | |
787 | } | |
788 | /*}}}*/ | |
789 | // OrderList::DepUnPackDep - Reverse dependency considerations /*{{{*/ | |
790 | // --------------------------------------------------------------------- | |
791 | /* Reverse dependencies are considered to determine if unpacking this | |
792 | package will break any existing dependencies. If so then those | |
793 | packages are ordered before this one so that they are in the | |
794 | UnPacked state. | |
795 | ||
796 | The forwards depends loop is designed to bring the packages dependents | |
797 | close to the package. This helps reduce deconfigure time. | |
798 | ||
799 | Loops are irrelevent to this. */ | |
800 | bool pkgOrderList::DepUnPackDep(DepIterator D) | |
801 | { | |
802 | ||
803 | for (; D.end() == false; D++) | |
804 | if (D.IsCritical() == true) | |
805 | { | |
806 | if (D.Reverse() == true) | |
807 | { | |
808 | /* Duplication prevention. We consider rev deps only on | |
809 | the current version, a not installed package | |
810 | cannot break */ | |
811 | if (D.ParentPkg()->CurrentVer == 0 || | |
812 | D.ParentPkg().CurrentVer() != D.ParentVer()) | |
813 | continue; | |
814 | ||
815 | // The dep will not break so it is irrelevent. | |
816 | if (CheckDep(D) == true) | |
817 | continue; | |
818 | ||
3fb5f4e4 AL |
819 | // Skip over missing files |
820 | if (IsMissing(D.ParentPkg()) == true) | |
821 | continue; | |
822 | ||
6c139d6e AL |
823 | if (VisitNode(D.ParentPkg()) == false) |
824 | return false; | |
825 | } | |
826 | else | |
308c7d30 | 827 | { |
6c139d6e | 828 | if (D->Type == pkgCache::Dep::Depends) |
3fb5f4e4 | 829 | if (VisitProvides(D,false) == false) |
6c139d6e | 830 | return false; |
308c7d30 IJ |
831 | |
832 | if (D->Type == pkgCache::Dep::DpkgBreaks) | |
833 | { | |
834 | if (CheckDep(D) == true) | |
835 | continue; | |
836 | ||
837 | if (VisitNode(D.TargetPkg()) == false) | |
838 | return false; | |
839 | } | |
840 | } | |
6c139d6e AL |
841 | } |
842 | return true; | |
843 | } | |
844 | /*}}}*/ | |
845 | // OrderList::DepConfigure - Configuration ordering /*{{{*/ | |
846 | // --------------------------------------------------------------------- | |
847 | /* Configuration only ordering orders by the Depends: line only. It | |
848 | orders configuration so that when a package comes to be configured it's | |
849 | dependents are configured. | |
850 | ||
851 | Loops are ingored. Depends loop entry points are chaotic. */ | |
852 | bool pkgOrderList::DepConfigure(DepIterator D) | |
853 | { | |
854 | // Never consider reverse configuration dependencies. | |
855 | if (D.Reverse() == true) | |
856 | return true; | |
857 | ||
858 | for (; D.end() == false; D++) | |
859 | if (D->Type == pkgCache::Dep::Depends) | |
3fb5f4e4 | 860 | if (VisitProvides(D,false) == false) |
6c139d6e AL |
861 | return false; |
862 | return true; | |
863 | } | |
864 | /*}}}*/ | |
865 | // OrderList::DepRemove - Removal ordering /*{{{*/ | |
866 | // --------------------------------------------------------------------- | |
867 | /* Removal visits all reverse depends. It considers if the dependency | |
868 | of the Now state version to see if it is okay with removing this | |
869 | package. This check should always fail, but is provided for symetery | |
870 | with the other critical handlers. | |
871 | ||
872 | Loops are preprocessed and logged. Removal loops can also be | |
873 | detected in the critical handler. They are characterized by an | |
874 | old version of A depending on B but the new version of A conflicting | |
875 | with B, thus either A or B must break to install. */ | |
876 | bool pkgOrderList::DepRemove(DepIterator D) | |
877 | { | |
878 | if (D.Reverse() == false) | |
879 | return true; | |
880 | for (; D.end() == false; D++) | |
881 | if (D->Type == pkgCache::Dep::Depends || D->Type == pkgCache::Dep::PreDepends) | |
882 | { | |
883 | // Duplication elimination, consider the current version only | |
884 | if (D.ParentPkg().CurrentVer() != D.ParentVer()) | |
885 | continue; | |
886 | ||
887 | /* We wish to see if the dep on the parent package is okay | |
888 | in the removed (install) state of the target pkg. */ | |
889 | if (CheckDep(D) == true) | |
890 | { | |
891 | // We want to catch loops with the code below. | |
892 | if (IsFlag(D.ParentPkg(),AddPending) == false) | |
893 | continue; | |
894 | } | |
895 | ||
896 | // This is the loop detection | |
897 | if (IsFlag(D.ParentPkg(),Added) == true || | |
898 | IsFlag(D.ParentPkg(),AddPending) == true) | |
899 | { | |
900 | if (IsFlag(D.ParentPkg(),AddPending) == true) | |
901 | AddLoop(D); | |
902 | continue; | |
903 | } | |
904 | ||
3fb5f4e4 AL |
905 | // Skip over missing files |
906 | if (IsMissing(D.ParentPkg()) == true) | |
907 | continue; | |
908 | ||
6c139d6e AL |
909 | if (VisitNode(D.ParentPkg()) == false) |
910 | return false; | |
911 | } | |
912 | ||
913 | return true; | |
914 | } | |
915 | /*}}}*/ | |
6c139d6e AL |
916 | // OrderList::AddLoop - Add a loop to the loop list /*{{{*/ |
917 | // --------------------------------------------------------------------- | |
918 | /* We record the loops. This is a relic since loop breaking is done | |
919 | genericaly as part of the safety routines. */ | |
920 | bool pkgOrderList::AddLoop(DepIterator D) | |
921 | { | |
922 | if (LoopCount < 0 || LoopCount >= 20) | |
923 | return false; | |
924 | ||
925 | // Skip dups | |
926 | if (LoopCount != 0) | |
927 | { | |
928 | if (Loops[LoopCount - 1].ParentPkg() == D.ParentPkg() || | |
929 | Loops[LoopCount - 1].TargetPkg() == D.ParentPkg()) | |
930 | return true; | |
931 | } | |
932 | ||
933 | Loops[LoopCount++] = D; | |
934 | ||
935 | // Mark the packages as being part of a loop. | |
936 | Flag(D.TargetPkg(),Loop); | |
937 | Flag(D.ParentPkg(),Loop); | |
938 | return true; | |
939 | } | |
940 | /*}}}*/ | |
941 | // OrderList::WipeFlags - Unset the given flags from all packages /*{{{*/ | |
942 | // --------------------------------------------------------------------- | |
943 | /* */ | |
944 | void pkgOrderList::WipeFlags(unsigned long F) | |
945 | { | |
b2e465d6 | 946 | unsigned long Size = Cache.Head().PackageCount; |
6c139d6e AL |
947 | for (unsigned long I = 0; I != Size; I++) |
948 | Flags[I] &= ~F; | |
949 | } | |
950 | /*}}}*/ | |
951 | // OrderList::CheckDep - Check a dependency for truth /*{{{*/ | |
952 | // --------------------------------------------------------------------- | |
953 | /* This performs a complete analysis of the dependency wrt to the | |
954 | current add list. It returns true if after all events are | |
955 | performed it is still true. This sort of routine can be approximated | |
956 | by examining the DepCache, however in convoluted cases of provides | |
957 | this fails to produce a suitable result. */ | |
958 | bool pkgOrderList::CheckDep(DepIterator D) | |
959 | { | |
b2e465d6 | 960 | SPtrArray<Version *> List = D.AllTargets(); |
63d3141a | 961 | bool Hit = false; |
6c139d6e AL |
962 | for (Version **I = List; *I != 0; I++) |
963 | { | |
964 | VerIterator Ver(Cache,*I); | |
965 | PkgIterator Pkg = Ver.ParentPkg(); | |
966 | ||
967 | /* The meaning of Added and AddPending is subtle. AddPending is | |
968 | an indication that the package is looping. Because of the | |
969 | way ordering works Added means the package will be unpacked | |
970 | before this one and AddPending means after. It is therefore | |
971 | correct to ignore AddPending in all cases, but that exposes | |
63d3141a AL |
972 | reverse-ordering loops which should be ignored. */ |
973 | if (IsFlag(Pkg,Added) == true || | |
6c139d6e AL |
974 | (IsFlag(Pkg,AddPending) == true && D.Reverse() == true)) |
975 | { | |
976 | if (Cache[Pkg].InstallVer != *I) | |
977 | continue; | |
978 | } | |
979 | else | |
980 | if ((Version *)Pkg.CurrentVer() != *I || | |
981 | Pkg.State() != PkgIterator::NeedsNothing) | |
982 | continue; | |
b2e465d6 | 983 | |
6c139d6e AL |
984 | /* Conflicts requires that all versions are not present, depends |
985 | just needs one */ | |
b2e465d6 | 986 | if (D->Type != pkgCache::Dep::Conflicts && |
308c7d30 | 987 | D->Type != pkgCache::Dep::DpkgBreaks && |
b2e465d6 | 988 | D->Type != pkgCache::Dep::Obsoletes) |
63d3141a AL |
989 | { |
990 | /* Try to find something that does not have the after flag set | |
991 | if at all possible */ | |
992 | if (IsFlag(Pkg,After) == true) | |
993 | { | |
994 | Hit = true; | |
995 | continue; | |
996 | } | |
997 | ||
6c139d6e | 998 | return true; |
63d3141a | 999 | } |
6c139d6e | 1000 | else |
63d3141a AL |
1001 | { |
1002 | if (IsFlag(Pkg,After) == true) | |
1003 | Flag(D.ParentPkg(),After); | |
1004 | ||
6c139d6e | 1005 | return false; |
63d3141a | 1006 | } |
6c139d6e | 1007 | } |
63d3141a AL |
1008 | |
1009 | // We found a hit, but it had the after flag set | |
1010 | if (Hit == true && D->Type == pkgCache::Dep::PreDepends) | |
1011 | { | |
1012 | Flag(D.ParentPkg(),After); | |
1013 | return true; | |
1014 | } | |
1015 | ||
6c139d6e AL |
1016 | /* Conflicts requires that all versions are not present, depends |
1017 | just needs one */ | |
b2e465d6 AL |
1018 | if (D->Type == pkgCache::Dep::Conflicts || |
1019 | D->Type == pkgCache::Dep::Obsoletes) | |
6c139d6e AL |
1020 | return true; |
1021 | return false; | |
1022 | } | |
1023 | /*}}}*/ |