2 * Copyright (c) 2007-2008, Novell Inc.
4 * This program is licensed under the BSD license, read LICENSE.BSD
5 * for further information
11 * SAT based dependency solver
21 #include "solver_private.h"
27 #include "solverdebug.h"
29 #define RULES_BLOCK 63
31 /********************************************************************
33 * dependency check helpers
37 /*-------------------------------------------------------------------
38 * handle split provides
40 * a splitprovides dep looks like
41 * namespace:splitprovides(pkg REL_WITH path)
42 * and is only true if pkg is installed and contains the specified path.
43 * we also make sure that pkg is selected for an update, otherwise the
44 * update would always be forced onto the user.
47 solver_splitprovides(Solver *solv, Id dep)
49 Pool *pool = solv->pool;
54 if (!solv->dosplitprovides || !solv->installed || (!solv->updatemap_all && !solv->updatemap.size))
58 rd = GETRELDEP(pool, dep);
59 if (rd->flags != REL_WITH)
62 * things are a bit tricky here if pool->addedprovides == 1, because most split-provides are in
63 * a non-standard location. If we simply call pool_whatprovides, we'll drag in the complete
64 * file list. Instead we rely on pool_addfileprovides ignoring the addfileprovidesfiltered flag
65 * for installed packages and check the lazywhatprovidesq (ignoring the REL_WITH part, but
66 * we filter the package name further down anyway).
68 if (pool->addedfileprovides == 1 && !ISRELDEP(rd->evr) && !pool->whatprovides[rd->evr])
69 pp = pool_searchlazywhatprovidesq(pool, rd->evr);
71 pp = pool_whatprovides(pool, dep);
72 while ((p = pool->whatprovidesdata[pp++]) != 0)
74 /* here we have packages that provide the correct name and contain the path,
75 * now do extra filtering */
76 s = pool->solvables + p;
77 if (s->repo == solv->installed && s->name == rd->name &&
78 (solv->updatemap_all || (solv->updatemap.size && MAPTST(&solv->updatemap, p - solv->installed->start))))
85 /*-------------------------------------------------------------------
86 * solver_dep_installed
90 solver_dep_installed(Solver *solv, Id dep)
93 Pool *pool = solv->pool;
98 Reldep *rd = GETRELDEP(pool, dep);
99 if (rd->flags == REL_AND)
101 if (!solver_dep_installed(solv, rd->name))
103 return solver_dep_installed(solv, rd->evr);
105 if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_INSTALLED)
106 return solver_dep_installed(solv, rd->evr);
108 FOR_PROVIDES(p, pp, dep)
110 if (p == SYSTEMSOLVABLE || (solv->installed && pool->solvables[p].repo == solv->installed))
117 /* mirrors solver_dep_installed, but returns 2 if a
118 * dependency listed in solv->installsuppdepq was involved */
120 solver_check_installsuppdepq_dep(Solver *solv, Id dep)
122 Pool *pool = solv->pool;
128 Reldep *rd = GETRELDEP(pool, dep);
129 if (rd->flags == REL_AND)
131 int r2, r1 = solver_check_installsuppdepq_dep(solv, rd->name);
134 r2 = solver_check_installsuppdepq_dep(solv, rd->evr);
137 return r1 == 2 || r2 == 2 ? 2 : 1;
139 if (rd->flags == REL_OR)
141 int r2, r1 = solver_check_installsuppdepq_dep(solv, rd->name);
142 r2 = solver_check_installsuppdepq_dep(solv, rd->evr);
145 return r1 == 2 || r2 == 2 ? 2 : 1;
147 if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_SPLITPROVIDES)
148 return solver_splitprovides(solv, rd->evr);
149 if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_INSTALLED)
150 return solver_dep_installed(solv, rd->evr);
151 if (rd->flags == REL_NAMESPACE && (q = solv->installsuppdepq) != 0)
154 for (i = 0; i < q->count; i++)
155 if (q->elements[i] == dep || q->elements[i] == rd->name)
159 FOR_PROVIDES(p, pp, dep)
160 if (solv->decisionmap[p] > 0)
166 solver_check_installsuppdepq(Solver *solv, Solvable *s)
169 supp = s->repo->idarraydata + s->supplements;
170 while ((sup = *supp++) != 0)
171 if (solver_check_installsuppdepq_dep(solv, sup) == 2)
177 autouninstall(Solver *solv, Id *problem)
179 Pool *pool = solv->pool;
181 int lastfeature = 0, lastupdate = 0;
185 for (i = 0; (v = problem[i]) != 0; i++)
188 extraflags &= solv->job.elements[-v - 1];
189 if (v >= solv->featurerules && v < solv->featurerules_end)
192 if (v >= solv->updaterules && v < solv->updaterules_end)
194 /* check if identical to feature rule */
195 Id p = solv->rules[v].p;
199 r = solv->rules + solv->featurerules + (p - solv->installed->start);
202 /* update rule == feature rule */
211 if (!lastupdate && !lastfeature)
213 v = lastupdate ? lastupdate : lastfeature;
214 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "allowuninstall disabling ");
215 solver_printruleclass(solv, SOLV_DEBUG_UNSOLVABLE, solv->rules + v);
216 solver_disableproblem(solv, v);
217 if (extraflags != -1 && (extraflags & SOLVER_CLEANDEPS) != 0 && solv->cleandepsmap.size)
219 /* add the package to the updatepkgs list, this will automatically turn
220 * on cleandeps mode */
221 Id p = solv->rules[v].p;
222 if (!solv->cleandeps_updatepkgs)
224 solv->cleandeps_updatepkgs = solv_calloc(1, sizeof(Queue));
225 queue_init(solv->cleandeps_updatepkgs);
229 int oldupdatepkgscnt = solv->cleandeps_updatepkgs->count;
230 queue_pushunique(solv->cleandeps_updatepkgs, p);
231 if (solv->cleandeps_updatepkgs->count != oldupdatepkgscnt)
232 solver_disablepolicyrules(solv);
238 /************************************************************************/
241 * enable/disable learnt rules
243 * we have enabled or disabled some of our rules. We now reenable all
244 * of our learnt rules except the ones that were learnt from rules that
248 enabledisablelearntrules(Solver *solv)
250 Pool *pool = solv->pool;
255 POOL_DEBUG(SOLV_DEBUG_SOLUTIONS, "enabledisablelearntrules called\n");
256 for (i = solv->learntrules, r = solv->rules + i; i < solv->nrules; i++, r++)
258 whyp = solv->learnt_pool.elements + solv->learnt_why.elements[i - solv->learntrules];
259 while ((why = *whyp++) != 0)
261 assert(why > 0 && why < i);
262 if (solv->rules[why].d < 0)
265 /* why != 0: we found a disabled rule, disable the learnt rule */
266 if (why && r->d >= 0)
268 IF_POOLDEBUG (SOLV_DEBUG_SOLUTIONS)
270 POOL_DEBUG(SOLV_DEBUG_SOLUTIONS, "disabling ");
271 solver_printruleclass(solv, SOLV_DEBUG_SOLUTIONS, r);
273 solver_disablerule(solv, r);
275 else if (!why && r->d < 0)
277 IF_POOLDEBUG (SOLV_DEBUG_SOLUTIONS)
279 POOL_DEBUG(SOLV_DEBUG_SOLUTIONS, "re-enabling ");
280 solver_printruleclass(solv, SOLV_DEBUG_SOLUTIONS, r);
282 solver_enablerule(solv, r);
289 * make assertion rules into decisions
291 * Go through rules and add direct assertions to the decisionqueue.
292 * If we find a conflict, disable rules and add them to problem queue.
296 makeruledecisions(Solver *solv)
298 Pool *pool = solv->pool;
303 int record_proof = 1;
305 int havedisabled = 0;
307 /* The system solvable is always installed first */
308 assert(solv->decisionq.count == 0);
309 queue_push(&solv->decisionq, SYSTEMSOLVABLE);
310 queue_push(&solv->decisionq_why, 0);
311 solv->decisionmap[SYSTEMSOLVABLE] = 1; /* installed at level '1' */
313 decisionstart = solv->decisionq.count;
316 /* if we needed to re-run, back up decisions to decisionstart */
317 while (solv->decisionq.count > decisionstart)
319 v = solv->decisionq.elements[--solv->decisionq.count];
320 --solv->decisionq_why.count;
322 solv->decisionmap[vv] = 0;
325 /* note that the ruleassertions queue is ordered */
326 for (ii = 0; ii < solv->ruleassertions.count; ii++)
328 ri = solv->ruleassertions.elements[ii];
329 r = solv->rules + ri;
331 if (havedisabled && ri >= solv->learntrules)
333 /* just started with learnt rule assertions. If we have disabled
334 * some rules, adapt the learnt rule status */
335 enabledisablelearntrules(solv);
339 if (r->d < 0 || !r->p || r->w2) /* disabled, dummy or no assertion */
342 /* do weak rules in phase 2 */
343 if (ri < solv->learntrules && MAPTST(&solv->weakrulemap, ri))
349 if (!solv->decisionmap[vv]) /* if not yet decided */
351 queue_push(&solv->decisionq, v);
352 queue_push(&solv->decisionq_why, r - solv->rules);
353 solv->decisionmap[vv] = v > 0 ? 1 : -1;
354 IF_POOLDEBUG (SOLV_DEBUG_PROPAGATE)
356 Solvable *s = solv->pool->solvables + vv;
358 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "conflicting %s (assertion)\n", pool_solvable2str(solv->pool, s));
360 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "installing %s (assertion)\n", pool_solvable2str(solv->pool, s));
365 /* check against previous decision: is there a conflict? */
366 if (v > 0 && solv->decisionmap[vv] > 0) /* ok to install */
368 if (v < 0 && solv->decisionmap[vv] < 0) /* ok to remove */
374 * The rule (r) we're currently processing says something
375 * different (v = r->p) than a previous decision (decisionmap[abs(v)])
379 if (ri >= solv->learntrules)
381 /* conflict with a learnt rule */
382 /* can happen when packages cannot be installed for multiple reasons. */
383 /* we disable the learnt rule in this case */
384 /* (XXX: we should really call analyze_unsolvable_rule here!) */
385 solver_disablerule(solv, r);
390 * find the decision which is the "opposite" of the rule
392 for (i = 0; i < solv->decisionq.count; i++)
393 if (solv->decisionq.elements[i] == -v)
395 assert(i < solv->decisionq.count); /* assert that we found it */
396 oldproblemcount = solv->problems.count;
399 * conflict with system solvable ?
401 if (v == -SYSTEMSOLVABLE)
405 queue_push(&solv->problems, solv->learnt_pool.count);
406 queue_push(&solv->learnt_pool, ri);
407 queue_push(&solv->learnt_pool, 0);
410 queue_push(&solv->problems, 0);
411 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "conflict with system solvable, disabling rule #%d\n", ri);
412 if (ri >= solv->jobrules && ri < solv->jobrules_end)
413 v = -(solv->ruletojob.elements[ri - solv->jobrules] + 1);
416 queue_push(&solv->problems, v);
417 queue_push(&solv->problems, 0);
418 if (solv->allowuninstall && v >= solv->featurerules && v < solv->updaterules_end)
419 solv->problems.count = oldproblemcount;
420 solver_disableproblem(solv, v);
422 break; /* start over */
425 assert(solv->decisionq_why.elements[i] > 0);
428 * conflict with an rpm rule ?
430 if (solv->decisionq_why.elements[i] < solv->rpmrules_end)
434 queue_push(&solv->problems, solv->learnt_pool.count);
435 queue_push(&solv->learnt_pool, ri);
436 queue_push(&solv->learnt_pool, solv->decisionq_why.elements[i]);
437 queue_push(&solv->learnt_pool, 0);
440 queue_push(&solv->problems, 0);
441 assert(v > 0 || v == -SYSTEMSOLVABLE);
442 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "conflict with rpm rule, disabling rule #%d\n", ri);
443 if (ri >= solv->jobrules && ri < solv->jobrules_end)
444 v = -(solv->ruletojob.elements[ri - solv->jobrules] + 1);
447 queue_push(&solv->problems, v);
448 queue_push(&solv->problems, 0);
449 if (solv->allowuninstall && v >= solv->featurerules && v < solv->updaterules_end)
450 solv->problems.count = oldproblemcount;
451 solver_disableproblem(solv, v);
453 break; /* start over */
457 * conflict with another job or update/feature rule
463 queue_push(&solv->problems, solv->learnt_pool.count);
464 queue_push(&solv->learnt_pool, ri);
465 queue_push(&solv->learnt_pool, solv->decisionq_why.elements[i]);
466 queue_push(&solv->learnt_pool, 0);
469 queue_push(&solv->problems, 0);
471 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "conflicting update/job assertions over literal %d\n", vv);
474 * push all of our rules (can only be feature or job rules)
475 * asserting this literal on the problem stack
477 for (i = solv->featurerules, rr = solv->rules + i; i < solv->learntrules; i++, rr++)
479 if (rr->d < 0 /* disabled */
480 || rr->w2) /* or no assertion */
482 if (rr->p != vv /* not affecting the literal */
485 if (MAPTST(&solv->weakrulemap, i)) /* weak: silently ignore */
488 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, " - disabling rule #%d\n", i);
489 solver_printruleclass(solv, SOLV_DEBUG_UNSOLVABLE, solv->rules + i);
492 if (i >= solv->jobrules && i < solv->jobrules_end)
493 v = -(solv->ruletojob.elements[i - solv->jobrules] + 1);
494 queue_push(&solv->problems, v);
496 queue_push(&solv->problems, 0);
498 if (solv->allowuninstall && (v = autouninstall(solv, solv->problems.elements + oldproblemcount + 1)) != 0)
499 solv->problems.count = oldproblemcount;
501 for (i = oldproblemcount + 1; i < solv->problems.count - 1; i++)
502 solver_disableproblem(solv, solv->problems.elements[i]);
504 break; /* start over */
506 if (ii < solv->ruleassertions.count)
510 * phase 2: now do the weak assertions
512 for (ii = 0; ii < solv->ruleassertions.count; ii++)
514 ri = solv->ruleassertions.elements[ii];
515 r = solv->rules + ri;
516 if (r->d < 0 || r->w2) /* disabled or no assertion */
518 if (ri >= solv->learntrules || !MAPTST(&solv->weakrulemap, ri)) /* skip non-weak */
523 if (!solv->decisionmap[vv]) /* if not yet decided */
525 queue_push(&solv->decisionq, v);
526 queue_push(&solv->decisionq_why, r - solv->rules);
527 solv->decisionmap[vv] = v > 0 ? 1 : -1;
528 IF_POOLDEBUG (SOLV_DEBUG_PROPAGATE)
530 Solvable *s = solv->pool->solvables + vv;
532 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "conflicting %s (weak assertion)\n", pool_solvable2str(solv->pool, s));
534 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "installing %s (weak assertion)\n", pool_solvable2str(solv->pool, s));
538 /* check against previous decision: is there a conflict? */
539 if (v > 0 && solv->decisionmap[vv] > 0)
541 if (v < 0 && solv->decisionmap[vv] < 0)
544 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "assertion conflict, but I am weak, disabling ");
545 solver_printrule(solv, SOLV_DEBUG_UNSOLVABLE, r);
547 if (ri >= solv->jobrules && ri < solv->jobrules_end)
548 v = -(solv->ruletojob.elements[ri - solv->jobrules] + 1);
551 solver_disableproblem(solv, v);
553 solver_reenablepolicyrules(solv, -v);
555 break; /* start over */
557 if (ii == solv->ruleassertions.count)
558 break; /* finished! */
563 /********************************************************************/
567 /*-------------------------------------------------------------------
570 * initial setup for all watches
574 makewatches(Solver *solv)
578 int nsolvables = solv->pool->nsolvables;
580 solv_free(solv->watches);
581 /* lower half for removals, upper half for installs */
582 solv->watches = solv_calloc(2 * nsolvables, sizeof(Id));
584 /* do it reverse so rpm rules get triggered first (XXX: obsolete?) */
585 for (i = 1, r = solv->rules + solv->nrules - 1; i < solv->nrules; i++, r--)
587 for (i = 1, r = solv->rules + 1; i < solv->nrules; i++, r++)
590 if (!r->w2) /* assertions do not need watches */
593 /* see addwatches_rule(solv, r) */
594 r->n1 = solv->watches[nsolvables + r->w1];
595 solv->watches[nsolvables + r->w1] = r - solv->rules;
597 r->n2 = solv->watches[nsolvables + r->w2];
598 solv->watches[nsolvables + r->w2] = r - solv->rules;
603 /*-------------------------------------------------------------------
605 * add watches (for a new learned rule)
606 * sets up watches for a single rule
608 * see also makewatches() above.
612 addwatches_rule(Solver *solv, Rule *r)
614 int nsolvables = solv->pool->nsolvables;
616 r->n1 = solv->watches[nsolvables + r->w1];
617 solv->watches[nsolvables + r->w1] = r - solv->rules;
619 r->n2 = solv->watches[nsolvables + r->w2];
620 solv->watches[nsolvables + r->w2] = r - solv->rules;
624 /********************************************************************/
630 /* shortcuts to check if a literal (positive or negative) assignment
631 * evaluates to 'true' or 'false'
633 #define DECISIONMAP_TRUE(p) ((p) > 0 ? (decisionmap[p] > 0) : (decisionmap[-p] < 0))
634 #define DECISIONMAP_FALSE(p) ((p) > 0 ? (decisionmap[p] < 0) : (decisionmap[-p] > 0))
635 #define DECISIONMAP_UNDEF(p) (decisionmap[(p) > 0 ? (p) : -(p)] == 0)
637 /*-------------------------------------------------------------------
641 * make decision and propagate to all rules
643 * Evaluate each term affected by the decision (linked through watches).
644 * If we find unit rules we make new decisions based on them.
646 * return : 0 = everything is OK
647 * rule = conflict found in this rule
651 propagate(Solver *solv, int level)
653 Pool *pool = solv->pool;
654 Id *rp, *next_rp; /* rule pointer, next rule pointer in linked list */
656 Id p, pkg, other_watch;
658 Id *decisionmap = solv->decisionmap;
660 Id *watches = solv->watches + pool->nsolvables; /* place ptr in middle */
662 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "----- propagate -----\n");
664 /* foreach non-propagated decision */
665 while (solv->propagate_index < solv->decisionq.count)
668 * 'pkg' was just decided
669 * negate because our watches trigger if literal goes FALSE
671 pkg = -solv->decisionq.elements[solv->propagate_index++];
673 IF_POOLDEBUG (SOLV_DEBUG_PROPAGATE)
675 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "propagate for decision %d level %d\n", -pkg, level);
676 solver_printruleelement(solv, SOLV_DEBUG_PROPAGATE, 0, -pkg);
679 /* foreach rule where 'pkg' is now FALSE */
680 for (rp = watches + pkg; *rp; rp = next_rp)
682 r = solv->rules + *rp;
685 /* rule is disabled, goto next */
693 IF_POOLDEBUG (SOLV_DEBUG_PROPAGATE)
695 POOL_DEBUG(SOLV_DEBUG_PROPAGATE," watch triggered ");
696 solver_printrule(solv, SOLV_DEBUG_PROPAGATE, r);
699 /* 'pkg' was just decided (was set to FALSE)
701 * now find other literal watch, check clause
702 * and advance on linked list
716 * This term is already true (through the other literal)
717 * so we have nothing to do
719 if (DECISIONMAP_TRUE(other_watch))
723 * The other literal is FALSE or UNDEF
729 /* Not a binary clause, try to move our watch.
731 * Go over all literals and find one that is
735 * (TRUE is also ok, in that case the rule is fulfilled)
737 if (r->p /* we have a 'p' */
738 && r->p != other_watch /* which is not watched */
739 && !DECISIONMAP_FALSE(r->p)) /* and not FALSE */
743 else /* go find a 'd' to make 'true' */
746 we just iterate sequentially, doing it in another order just changes the order of decisions, not the decisions itself
748 for (dp = pool->whatprovidesdata + r->d; (p = *dp++) != 0;)
750 if (p != other_watch /* which is not watched */
751 && !DECISIONMAP_FALSE(p)) /* and not FALSE */
759 * if we found some p that is UNDEF or TRUE, move
762 IF_POOLDEBUG (SOLV_DEBUG_PROPAGATE)
765 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, " -> move w%d to %s\n", (pkg == r->w1 ? 1 : 2), pool_solvid2str(pool, p));
767 POOL_DEBUG(SOLV_DEBUG_PROPAGATE," -> move w%d to !%s\n", (pkg == r->w1 ? 1 : 2), pool_solvid2str(pool, -p));
783 watches[p] = r - solv->rules;
786 /* search failed, thus all unwatched literals are FALSE */
791 * unit clause found, set literal other_watch to TRUE
794 if (DECISIONMAP_FALSE(other_watch)) /* check if literal is FALSE */
795 return r; /* eek, a conflict! */
797 IF_POOLDEBUG (SOLV_DEBUG_PROPAGATE)
799 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, " unit ");
800 solver_printrule(solv, SOLV_DEBUG_PROPAGATE, r);
804 decisionmap[other_watch] = level; /* install! */
806 decisionmap[-other_watch] = -level; /* remove! */
808 queue_push(&solv->decisionq, other_watch);
809 queue_push(&solv->decisionq_why, r - solv->rules);
811 IF_POOLDEBUG (SOLV_DEBUG_PROPAGATE)
814 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, " -> decided to install %s\n", pool_solvid2str(pool, other_watch));
816 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, " -> decided to conflict %s\n", pool_solvid2str(pool, -other_watch));
819 } /* foreach rule involving 'pkg' */
821 } /* while we have non-decided decisions */
823 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "----- propagate end-----\n");
825 return 0; /* all is well */
829 /********************************************************************/
832 /*-------------------------------------------------------------------
839 analyze(Solver *solv, int level, Rule *c, int *pr, int *dr, int *whyp)
841 Pool *pool = solv->pool;
845 Map seen; /* global? */
846 Id d, v, vv, *dp, why;
848 int num = 0, l1num = 0;
849 int learnt_why = solv->learnt_pool.count;
850 Id *decisionmap = solv->decisionmap;
852 queue_init_buffer(&r, r_buf, sizeof(r_buf)/sizeof(*r_buf));
854 POOL_DEBUG(SOLV_DEBUG_ANALYZE, "ANALYZE at %d ----------------------\n", level);
855 map_init(&seen, pool->nsolvables);
856 idx = solv->decisionq.count;
859 IF_POOLDEBUG (SOLV_DEBUG_ANALYZE)
860 solver_printruleclass(solv, SOLV_DEBUG_ANALYZE, c);
861 queue_push(&solv->learnt_pool, c - solv->rules);
862 d = c->d < 0 ? -c->d - 1 : c->d;
863 dp = d ? pool->whatprovidesdata + d : 0;
864 /* go through all literals of the rule */
876 if (DECISIONMAP_TRUE(v)) /* the one true literal */
879 if (MAPTST(&seen, vv))
881 l = solv->decisionmap[vv];
884 MAPSET(&seen, vv); /* mark that we also need to look at this literal */
886 l1num++; /* need to do this one in level1 pass */
888 num++; /* need to do this one as well */
891 queue_push(&r, v); /* not level1 or conflict level, add to new rule */
897 if (!num && !--l1num)
898 break; /* all level 1 literals done */
900 /* find the next literal to investigate */
901 /* (as num + l1num > 0, we know that we'll always find one) */
905 v = solv->decisionq.elements[--idx];
907 if (MAPTST(&seen, vv))
912 if (num && --num == 0)
914 *pr = -v; /* so that v doesn't get lost */
917 POOL_DEBUG(SOLV_DEBUG_ANALYZE, "got %d involved level 1 decisions\n", l1num);
918 /* clear non-l1 bits from seen map */
919 for (i = 0; i < r.count; i++)
922 MAPCLR(&seen, v > 0 ? v : -v);
924 /* only level 1 marks left in seen map */
925 l1num++; /* as l1retry decrements it */
929 why = solv->decisionq_why.elements[idx];
930 if (why <= 0) /* just in case, maybe for SYSTEMSOLVABLE */
932 c = solv->rules + why;
938 else if (r.count == 1 && r.elements[0] < 0)
941 *dr = pool_queuetowhatprovides(pool, &r);
942 IF_POOLDEBUG (SOLV_DEBUG_ANALYZE)
944 POOL_DEBUG(SOLV_DEBUG_ANALYZE, "learned rule for level %d (am %d)\n", rlevel, level);
945 solver_printruleelement(solv, SOLV_DEBUG_ANALYZE, 0, *pr);
946 for (i = 0; i < r.count; i++)
947 solver_printruleelement(solv, SOLV_DEBUG_ANALYZE, 0, r.elements[i]);
949 /* push end marker on learnt reasons stack */
950 queue_push(&solv->learnt_pool, 0);
954 solv->stats_learned++;
959 /*-------------------------------------------------------------------
963 * reset all solver decisions
964 * called after rules have been enabled/disabled
968 solver_reset(Solver *solv)
970 Pool *pool = solv->pool;
974 /* rewind all decisions */
975 for (i = solv->decisionq.count - 1; i >= 0; i--)
977 v = solv->decisionq.elements[i];
978 solv->decisionmap[v > 0 ? v : -v] = 0;
980 queue_empty(&solv->decisionq_why);
981 queue_empty(&solv->decisionq);
982 solv->recommends_index = -1;
983 solv->propagate_index = 0;
984 solv->decisioncnt_update = solv->decisioncnt_keep = solv->decisioncnt_resolve = solv->decisioncnt_weak = solv->decisioncnt_orphan = 0;
985 queue_empty(&solv->branches);
987 /* adapt learnt rule status to new set of enabled/disabled rules */
988 enabledisablelearntrules(solv);
990 /* redo all assertion rule decisions */
991 makeruledecisions(solv);
992 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "decisions so far: %d\n", solv->decisionq.count);
996 /*-------------------------------------------------------------------
998 * analyze_unsolvable_rule
1000 * recursion helper used by analyze_unsolvable
1004 analyze_unsolvable_rule(Solver *solv, Rule *r, Id *lastweakp, Map *rseen)
1006 Pool *pool = solv->pool;
1008 Id why = r - solv->rules;
1010 IF_POOLDEBUG (SOLV_DEBUG_UNSOLVABLE)
1011 solver_printruleclass(solv, SOLV_DEBUG_UNSOLVABLE, r);
1012 if (solv->learntrules && why >= solv->learntrules)
1014 if (MAPTST(rseen, why - solv->learntrules))
1016 MAPSET(rseen, why - solv->learntrules);
1017 for (i = solv->learnt_why.elements[why - solv->learntrules]; solv->learnt_pool.elements[i]; i++)
1018 if (solv->learnt_pool.elements[i] > 0)
1019 analyze_unsolvable_rule(solv, solv->rules + solv->learnt_pool.elements[i], lastweakp, rseen);
1022 if (MAPTST(&solv->weakrulemap, why))
1023 if (!*lastweakp || why > *lastweakp)
1025 /* do not add rpm rules to problem */
1026 if (why < solv->rpmrules_end)
1028 /* turn rule into problem */
1029 if (why >= solv->jobrules && why < solv->jobrules_end)
1030 why = -(solv->ruletojob.elements[why - solv->jobrules] + 1);
1031 /* normalize dup/infarch rules */
1032 if (why > solv->infarchrules && why < solv->infarchrules_end)
1034 Id name = pool->solvables[-solv->rules[why].p].name;
1035 while (why > solv->infarchrules && pool->solvables[-solv->rules[why - 1].p].name == name)
1038 if (why > solv->duprules && why < solv->duprules_end)
1040 Id name = pool->solvables[-solv->rules[why].p].name;
1041 while (why > solv->duprules && pool->solvables[-solv->rules[why - 1].p].name == name)
1045 /* return if problem already countains our rule */
1046 if (solv->problems.count)
1048 for (i = solv->problems.count - 1; i >= 0; i--)
1049 if (solv->problems.elements[i] == 0) /* end of last problem reached? */
1051 else if (solv->problems.elements[i] == why)
1054 queue_push(&solv->problems, why);
1058 /*-------------------------------------------------------------------
1060 * analyze_unsolvable
1062 * We know that the problem is not solvable. Record all involved
1063 * rules (i.e. the "proof") into solv->learnt_pool.
1064 * Record the learnt pool index and all non-rpm rules into
1065 * solv->problems. (Our solutions to fix the problems are to
1066 * disable those rules.)
1068 * If the proof contains at least one weak rule, we disable the
1071 * Otherwise we return 0 if disablerules is not set or disable
1072 * _all_ of the problem rules and return 1.
1074 * return: 1 - disabled some rules, try again
1079 analyze_unsolvable(Solver *solv, Rule *cr, int disablerules)
1081 Pool *pool = solv->pool;
1083 Map seen; /* global to speed things up? */
1085 Id d, v, vv, *dp, why;
1087 Id *decisionmap = solv->decisionmap;
1088 int oldproblemcount;
1089 int oldlearntpoolcount;
1091 int record_proof = 1;
1093 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "ANALYZE UNSOLVABLE ----------------------\n");
1094 solv->stats_unsolvable++;
1095 oldproblemcount = solv->problems.count;
1096 oldlearntpoolcount = solv->learnt_pool.count;
1098 /* make room for proof index */
1099 /* must update it later, as analyze_unsolvable_rule would confuse
1100 * it with a rule index if we put the real value in already */
1101 queue_push(&solv->problems, 0);
1104 map_init(&seen, pool->nsolvables);
1105 map_init(&rseen, solv->learntrules ? solv->nrules - solv->learntrules : 0);
1107 queue_push(&solv->learnt_pool, r - solv->rules);
1109 analyze_unsolvable_rule(solv, r, &lastweak, &rseen);
1110 d = r->d < 0 ? -r->d - 1 : r->d;
1111 dp = d ? pool->whatprovidesdata + d : 0;
1122 if (DECISIONMAP_TRUE(v)) /* the one true literal */
1124 vv = v > 0 ? v : -v;
1125 l = solv->decisionmap[vv];
1130 idx = solv->decisionq.count;
1133 v = solv->decisionq.elements[--idx];
1134 vv = v > 0 ? v : -v;
1135 if (!MAPTST(&seen, vv))
1137 why = solv->decisionq_why.elements[idx];
1140 queue_push(&solv->learnt_pool, why);
1141 r = solv->rules + why;
1142 analyze_unsolvable_rule(solv, r, &lastweak, &rseen);
1143 d = r->d < 0 ? -r->d - 1 : r->d;
1144 dp = d ? pool->whatprovidesdata + d : 0;
1155 if (DECISIONMAP_TRUE(v)) /* the one true literal */
1157 vv = v > 0 ? v : -v;
1158 l = solv->decisionmap[vv];
1166 queue_push(&solv->problems, 0); /* mark end of this problem */
1170 /* disable last weak rule */
1171 solv->problems.count = oldproblemcount;
1172 solv->learnt_pool.count = oldlearntpoolcount;
1173 if (lastweak >= solv->jobrules && lastweak < solv->jobrules_end)
1174 v = -(solv->ruletojob.elements[lastweak - solv->jobrules] + 1);
1177 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "disabling ");
1178 solver_printruleclass(solv, SOLV_DEBUG_UNSOLVABLE, solv->rules + lastweak);
1179 if (lastweak >= solv->choicerules && lastweak < solv->choicerules_end)
1180 solver_disablechoicerules(solv, solv->rules + lastweak);
1181 solver_disableproblem(solv, v);
1183 solver_reenablepolicyrules(solv, -v);
1188 if (solv->allowuninstall && (v = autouninstall(solv, solv->problems.elements + oldproblemcount + 1)) != 0)
1190 solv->problems.count = oldproblemcount;
1191 solv->learnt_pool.count = oldlearntpoolcount;
1199 queue_push(&solv->learnt_pool, 0);
1200 solv->problems.elements[oldproblemcount] = oldlearntpoolcount;
1203 /* + 2: index + trailing zero */
1204 if (disablerules && oldproblemcount + 2 < solv->problems.count)
1206 for (i = oldproblemcount + 1; i < solv->problems.count - 1; i++)
1207 solver_disableproblem(solv, solv->problems.elements[i]);
1208 /* XXX: might want to enable all weak rules again */
1212 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "UNSOLVABLE\n");
1217 /********************************************************************/
1218 /* Decision revert */
1220 /*-------------------------------------------------------------------
1223 * revert decisionq to a level
1227 revert(Solver *solv, int level)
1229 Pool *pool = solv->pool;
1231 while (solv->decisionq.count)
1233 v = solv->decisionq.elements[solv->decisionq.count - 1];
1234 vv = v > 0 ? v : -v;
1235 if (solv->decisionmap[vv] <= level && solv->decisionmap[vv] >= -level)
1237 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "reverting decision %d at %d\n", v, solv->decisionmap[vv]);
1238 solv->decisionmap[vv] = 0;
1239 solv->decisionq.count--;
1240 solv->decisionq_why.count--;
1241 solv->propagate_index = solv->decisionq.count;
1243 while (solv->branches.count && solv->branches.elements[solv->branches.count - 1] <= -level)
1245 solv->branches.count--;
1246 while (solv->branches.count && solv->branches.elements[solv->branches.count - 1] >= 0)
1247 solv->branches.count--;
1249 solv->recommends_index = -1;
1250 if (solv->decisionq.count < solv->decisioncnt_update)
1251 solv->decisioncnt_update = 0;
1252 if (solv->decisionq.count < solv->decisioncnt_keep)
1253 solv->decisioncnt_keep = 0;
1254 if (solv->decisionq.count < solv->decisioncnt_resolve)
1255 solv->decisioncnt_resolve = 0;
1256 if (solv->decisionq.count < solv->decisioncnt_weak)
1257 solv->decisioncnt_weak= 0;
1258 if (solv->decisionq.count < solv->decisioncnt_orphan)
1259 solv->decisioncnt_orphan = 0;
1263 /*-------------------------------------------------------------------
1265 * watch2onhighest - put watch2 on literal with highest level
1269 watch2onhighest(Solver *solv, Rule *r)
1274 d = r->d < 0 ? -r->d - 1 : r->d;
1276 return; /* binary rule, both watches are set */
1277 dp = solv->pool->whatprovidesdata + d;
1278 while ((v = *dp++) != 0)
1280 l = solv->decisionmap[v < 0 ? -v : v];
1292 /*-------------------------------------------------------------------
1296 * add free decision (solvable to install) to decisionq
1297 * increase level and propagate decision
1298 * return if no conflict.
1300 * in conflict case, analyze conflict rule, add resulting
1301 * rule to learnt rule set, make decision from learnt
1302 * rule (always unit) and re-propagate.
1304 * returns the new solver level or 0 if unsolvable
1309 setpropagatelearn(Solver *solv, int level, Id decision, int disablerules, Id ruleid)
1311 Pool *pool = solv->pool;
1316 assert(ruleid >= 0);
1321 solv->decisionmap[decision] = level;
1323 solv->decisionmap[-decision] = -level;
1324 queue_push(&solv->decisionq, decision);
1325 queue_push(&solv->decisionq_why, -ruleid); /* <= 0 -> free decision */
1329 r = propagate(solv, level);
1333 return analyze_unsolvable(solv, r, disablerules);
1334 POOL_DEBUG(SOLV_DEBUG_ANALYZE, "conflict with rule #%d\n", (int)(r - solv->rules));
1335 l = analyze(solv, level, r, &p, &d, &why); /* learnt rule in p and d */
1336 assert(l > 0 && l < level);
1337 POOL_DEBUG(SOLV_DEBUG_ANALYZE, "reverting decisions (level %d -> %d)\n", level, l);
1339 revert(solv, level);
1340 r = solver_addrule(solv, p, d);
1342 assert(solv->learnt_why.count == (r - solv->rules) - solv->learntrules);
1343 queue_push(&solv->learnt_why, why);
1346 /* at least 2 literals, needs watches */
1347 watch2onhighest(solv, r);
1348 addwatches_rule(solv, r);
1352 /* learnt rule is an assertion */
1353 queue_push(&solv->ruleassertions, r - solv->rules);
1355 /* the new rule is unit by design */
1356 solv->decisionmap[p > 0 ? p : -p] = p > 0 ? level : -level;
1357 queue_push(&solv->decisionq, p);
1358 queue_push(&solv->decisionq_why, r - solv->rules);
1359 IF_POOLDEBUG (SOLV_DEBUG_ANALYZE)
1361 POOL_DEBUG(SOLV_DEBUG_ANALYZE, "decision: ");
1362 solver_printruleelement(solv, SOLV_DEBUG_ANALYZE, 0, p);
1363 POOL_DEBUG(SOLV_DEBUG_ANALYZE, "new rule: ");
1364 solver_printrule(solv, SOLV_DEBUG_ANALYZE, r);
1371 reorder_dq_for_jobrules(Solver *solv, int level, Queue *dq)
1373 Pool *pool = solv->pool;
1374 int i, j, haveone = 0, dqcount = dq->count;
1378 /* at the time we process jobrules the installed packages are not kept yet */
1379 /* reorder so that "future-supplemented" packages come first */
1380 FOR_REPO_SOLVABLES(solv->installed, p, s)
1382 if (MAPTST(&solv->noupdate, p - solv->installed->start))
1384 if (solv->decisionmap[p] == 0)
1386 solv->decisionmap[p] = level;
1392 for (i = 0; i < dqcount; i++)
1393 if (!solver_is_enhancing(solv, pool->solvables + dq->elements[i]))
1395 queue_push(dq, dq->elements[i]);
1396 dq->elements[i] = 0;
1398 dqcount = dq->count;
1399 for (i = 0; i < dqcount; i++)
1400 if (dq->elements[i] && !solver_is_supplementing(solv, pool->solvables + dq->elements[i]))
1402 queue_push(dq, dq->elements[i]);
1403 dq->elements[i] = 0;
1405 for (i = j = 0; i < dq->count; i++)
1406 if (dq->elements[i])
1407 dq->elements[j++] = dq->elements[i];
1408 queue_truncate(dq, j);
1409 FOR_REPO_SOLVABLES(solv->installed, p, s)
1410 if (solv->decisionmap[p] == level)
1411 solv->decisionmap[p] = 0;
1414 /*-------------------------------------------------------------------
1416 * select and install
1418 * install best package from the queue. We add an extra package, inst, if
1419 * provided. See comment in weak install section.
1421 * returns the new solver level or 0 if unsolvable
1426 selectandinstall(Solver *solv, int level, Queue *dq, int disablerules, Id ruleid)
1428 Pool *pool = solv->pool;
1433 policy_filter_unwanted(solv, dq, POLICY_MODE_CHOOSE);
1436 /* XXX: didn't we already do that? */
1437 /* XXX: shouldn't we prefer installed packages? */
1438 /* XXX: move to policy.c? */
1439 /* choose the supplemented one */
1440 for (i = 0; i < dq->count; i++)
1441 if (solver_is_supplementing(solv, pool->solvables + dq->elements[i]))
1443 dq->elements[0] = dq->elements[i];
1448 if (dq->count > 1 && ruleid >= solv->jobrules && ruleid < solv->jobrules_end && solv->installed)
1449 reorder_dq_for_jobrules(solv, level, dq);
1452 /* multiple candidates, open a branch */
1453 for (i = 1; i < dq->count; i++)
1454 queue_push(&solv->branches, dq->elements[i]);
1455 queue_push(&solv->branches, -level);
1457 p = dq->elements[0];
1459 POOL_DEBUG(SOLV_DEBUG_POLICY, "installing %s\n", pool_solvid2str(pool, p));
1461 return setpropagatelearn(solv, level, p, disablerules, ruleid);
1465 /********************************************************************/
1466 /* Main solver interface */
1469 /*-------------------------------------------------------------------
1472 * create solver structure
1474 * pool: all available solvables
1475 * installed: installed Solvables
1478 * Upon solving, rules are created to flag the Solvables
1479 * of the 'installed' Repo as installed.
1483 solver_create(Pool *pool)
1486 solv = (Solver *)solv_calloc(1, sizeof(Solver));
1488 solv->installed = pool->installed;
1490 solv->allownamechange = 1;
1492 solv->dup_allowdowngrade = 1;
1493 solv->dup_allownamechange = 1;
1494 solv->dup_allowarchchange = 1;
1495 solv->dup_allowvendorchange = 1;
1497 solv->keepexplicitobsoletes = pool->noobsoletesmultiversion ? 0 : 1;
1499 queue_init(&solv->ruletojob);
1500 queue_init(&solv->decisionq);
1501 queue_init(&solv->decisionq_why);
1502 queue_init(&solv->problems);
1503 queue_init(&solv->orphaned);
1504 queue_init(&solv->learnt_why);
1505 queue_init(&solv->learnt_pool);
1506 queue_init(&solv->branches);
1507 queue_init(&solv->weakruleq);
1508 queue_init(&solv->ruleassertions);
1509 queue_init(&solv->addedmap_deduceq);
1511 queue_push(&solv->learnt_pool, 0); /* so that 0 does not describe a proof */
1513 map_init(&solv->recommendsmap, pool->nsolvables);
1514 map_init(&solv->suggestsmap, pool->nsolvables);
1515 map_init(&solv->noupdate, solv->installed ? solv->installed->end - solv->installed->start : 0);
1516 solv->recommends_index = 0;
1518 solv->decisionmap = (Id *)solv_calloc(pool->nsolvables, sizeof(Id));
1520 solv->rules = solv_extend_resize(solv->rules, solv->nrules, sizeof(Rule), RULES_BLOCK);
1521 memset(solv->rules, 0, sizeof(Rule));
1527 /*-------------------------------------------------------------------
1533 solver_free(Solver *solv)
1535 queue_free(&solv->job);
1536 queue_free(&solv->ruletojob);
1537 queue_free(&solv->decisionq);
1538 queue_free(&solv->decisionq_why);
1539 queue_free(&solv->learnt_why);
1540 queue_free(&solv->learnt_pool);
1541 queue_free(&solv->problems);
1542 queue_free(&solv->solutions);
1543 queue_free(&solv->orphaned);
1544 queue_free(&solv->branches);
1545 queue_free(&solv->weakruleq);
1546 queue_free(&solv->ruleassertions);
1547 queue_free(&solv->addedmap_deduceq);
1548 if (solv->cleandeps_updatepkgs)
1550 queue_free(solv->cleandeps_updatepkgs);
1551 solv->cleandeps_updatepkgs = solv_free(solv->cleandeps_updatepkgs);
1553 if (solv->cleandeps_mistakes)
1555 queue_free(solv->cleandeps_mistakes);
1556 solv->cleandeps_mistakes = solv_free(solv->cleandeps_mistakes);
1558 if (solv->update_targets)
1560 queue_free(solv->update_targets);
1561 solv->update_targets = solv_free(solv->update_targets);
1563 if (solv->installsuppdepq)
1565 queue_free(solv->installsuppdepq);
1566 solv->installsuppdepq = solv_free(solv->installsuppdepq);
1569 map_free(&solv->recommendsmap);
1570 map_free(&solv->suggestsmap);
1571 map_free(&solv->noupdate);
1572 map_free(&solv->weakrulemap);
1573 map_free(&solv->multiversion);
1575 map_free(&solv->updatemap);
1576 map_free(&solv->bestupdatemap);
1577 map_free(&solv->fixmap);
1578 map_free(&solv->dupmap);
1579 map_free(&solv->dupinvolvedmap);
1580 map_free(&solv->droporphanedmap);
1581 map_free(&solv->cleandepsmap);
1583 solv_free(solv->decisionmap);
1584 solv_free(solv->rules);
1585 solv_free(solv->watches);
1586 solv_free(solv->obsoletes);
1587 solv_free(solv->obsoletes_data);
1588 solv_free(solv->specialupdaters);
1589 solv_free(solv->choicerules_ref);
1590 solv_free(solv->bestrules_pkg);
1591 solv_free(solv->instbuddy);
1596 solver_get_flag(Solver *solv, int flag)
1600 case SOLVER_FLAG_ALLOW_DOWNGRADE:
1601 return solv->allowdowngrade;
1602 case SOLVER_FLAG_ALLOW_NAMECHANGE:
1603 return solv->allownamechange;
1604 case SOLVER_FLAG_ALLOW_ARCHCHANGE:
1605 return solv->allowarchchange;
1606 case SOLVER_FLAG_ALLOW_VENDORCHANGE:
1607 return solv->allowvendorchange;
1608 case SOLVER_FLAG_ALLOW_UNINSTALL:
1609 return solv->allowuninstall;
1610 case SOLVER_FLAG_NO_UPDATEPROVIDE:
1611 return solv->noupdateprovide;
1612 case SOLVER_FLAG_SPLITPROVIDES:
1613 return solv->dosplitprovides;
1614 case SOLVER_FLAG_IGNORE_RECOMMENDED:
1615 return solv->dontinstallrecommended;
1616 case SOLVER_FLAG_ADD_ALREADY_RECOMMENDED:
1617 return solv->addalreadyrecommended;
1618 case SOLVER_FLAG_NO_INFARCHCHECK:
1619 return solv->noinfarchcheck;
1620 case SOLVER_FLAG_KEEP_EXPLICIT_OBSOLETES:
1621 return solv->keepexplicitobsoletes;
1622 case SOLVER_FLAG_BEST_OBEY_POLICY:
1623 return solv->bestobeypolicy;
1624 case SOLVER_FLAG_NO_AUTOTARGET:
1625 return solv->noautotarget;
1633 solver_set_flag(Solver *solv, int flag, int value)
1635 int old = solver_get_flag(solv, flag);
1638 case SOLVER_FLAG_ALLOW_DOWNGRADE:
1639 solv->allowdowngrade = value;
1641 case SOLVER_FLAG_ALLOW_NAMECHANGE:
1642 solv->allownamechange = value;
1644 case SOLVER_FLAG_ALLOW_ARCHCHANGE:
1645 solv->allowarchchange = value;
1647 case SOLVER_FLAG_ALLOW_VENDORCHANGE:
1648 solv->allowvendorchange = value;
1650 case SOLVER_FLAG_ALLOW_UNINSTALL:
1651 solv->allowuninstall = value;
1653 case SOLVER_FLAG_NO_UPDATEPROVIDE:
1654 solv->noupdateprovide = value;
1656 case SOLVER_FLAG_SPLITPROVIDES:
1657 solv->dosplitprovides = value;
1659 case SOLVER_FLAG_IGNORE_RECOMMENDED:
1660 solv->dontinstallrecommended = value;
1662 case SOLVER_FLAG_ADD_ALREADY_RECOMMENDED:
1663 solv->addalreadyrecommended = value;
1665 case SOLVER_FLAG_NO_INFARCHCHECK:
1666 solv->noinfarchcheck = value;
1668 case SOLVER_FLAG_KEEP_EXPLICIT_OBSOLETES:
1669 solv->keepexplicitobsoletes = value;
1671 case SOLVER_FLAG_BEST_OBEY_POLICY:
1672 solv->bestobeypolicy = value;
1674 case SOLVER_FLAG_NO_AUTOTARGET:
1675 solv->noautotarget = value;
1684 cleandeps_check_mistakes(Solver *solv, int level)
1686 Pool *pool = solv->pool;
1690 int mademistake = 0;
1692 if (!solv->cleandepsmap.size)
1694 /* check for mistakes */
1695 for (i = solv->installed->start; i < solv->installed->end; i++)
1697 if (!MAPTST(&solv->cleandepsmap, i - solv->installed->start))
1699 r = solv->rules + solv->featurerules + (i - solv->installed->start);
1700 /* a mistake is when the featurerule is true but the updaterule is false */
1703 FOR_RULELITERALS(p, pp, r)
1704 if (p > 0 && solv->decisionmap[p] > 0)
1707 continue; /* feature rule is not true */
1708 r = solv->rules + solv->updaterules + (i - solv->installed->start);
1711 FOR_RULELITERALS(p, pp, r)
1712 if (p > 0 && solv->decisionmap[p] > 0)
1715 continue; /* update rule is true */
1716 POOL_DEBUG(SOLV_DEBUG_SOLVER, "cleandeps mistake: ");
1717 solver_printruleclass(solv, SOLV_DEBUG_SOLVER, r);
1718 POOL_DEBUG(SOLV_DEBUG_SOLVER, "feature rule: ");
1719 solver_printruleclass(solv, SOLV_DEBUG_SOLVER, solv->rules + solv->featurerules + (i - solv->installed->start));
1720 if (!solv->cleandeps_mistakes)
1722 solv->cleandeps_mistakes = solv_calloc(1, sizeof(Queue));
1723 queue_init(solv->cleandeps_mistakes);
1725 queue_push(solv->cleandeps_mistakes, i);
1726 MAPCLR(&solv->cleandepsmap, i - solv->installed->start);
1727 solver_reenablepolicyrules_cleandeps(solv, i);
1736 prune_to_update_targets(Solver *solv, Id *cp, Queue *q)
1740 for (i = j = 0; i < q->count; i++)
1743 for (cp2 = cp; *cp2; cp2++)
1746 q->elements[j++] = p;
1750 queue_truncate(q, j);
1753 /*-------------------------------------------------------------------
1757 * all rules have been set up, now actually run the solver
1762 solver_run_sat(Solver *solv, int disablerules, int doweak)
1764 Queue dq; /* local decisionqueue */
1765 Queue dqs; /* local decisionqueue for supplements */
1771 Pool *pool = solv->pool;
1773 int minimizationsteps;
1774 int installedpos = solv->installed ? solv->installed->start : 0;
1776 IF_POOLDEBUG (SOLV_DEBUG_RULE_CREATION)
1778 POOL_DEBUG (SOLV_DEBUG_RULE_CREATION, "number of rules: %d\n", solv->nrules);
1779 for (i = 1; i < solv->nrules; i++)
1780 solver_printruleclass(solv, SOLV_DEBUG_RULE_CREATION, solv->rules + i);
1783 POOL_DEBUG(SOLV_DEBUG_SOLVER, "initial decisions: %d\n", solv->decisionq.count);
1785 /* start SAT algorithm */
1787 systemlevel = level + 1;
1788 POOL_DEBUG(SOLV_DEBUG_SOLVER, "solving...\n");
1794 * here's the main loop:
1795 * 1) propagate new decisions (only needed once)
1797 * 3) try to keep installed packages
1798 * 4) fulfill all unresolved rules
1799 * 5) install recommended packages
1800 * 6) minimalize solution if we had choices
1801 * if we encounter a problem, we rewind to a safe level and restart
1805 minimizationsteps = 0;
1809 * initial propagation of the assertions
1813 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "propagating (propagate_index: %d; size decisionq: %d)...\n", solv->propagate_index, solv->decisionq.count);
1814 if ((r = propagate(solv, level)) != 0)
1816 if (analyze_unsolvable(solv, r, disablerules))
1819 break; /* unsolvable */
1824 * resolve jobs first
1826 if (level < systemlevel)
1828 POOL_DEBUG(SOLV_DEBUG_SOLVER, "resolving job rules\n");
1829 for (i = solv->jobrules, r = solv->rules + i; i < solv->jobrules_end; i++, r++)
1832 if (r->d < 0) /* ignore disabled rules */
1835 FOR_RULELITERALS(l, pp, r)
1839 if (solv->decisionmap[-l] <= 0)
1844 if (solv->decisionmap[l] > 0)
1846 if (solv->decisionmap[l] == 0)
1852 /* prune to installed if not updating */
1853 if (dq.count > 1 && solv->installed && !solv->updatemap_all &&
1854 !(solv->job.elements[solv->ruletojob.elements[i - solv->jobrules]] & SOLVER_ORUPDATE))
1857 for (j = k = 0; j < dq.count; j++)
1859 Solvable *s = pool->solvables + dq.elements[j];
1860 if (s->repo == solv->installed)
1862 dq.elements[k++] = dq.elements[j];
1863 if (solv->updatemap.size && MAPTST(&solv->updatemap, dq.elements[j] - solv->installed->start))
1865 k = 0; /* package wants to be updated, do not prune */
1874 level = selectandinstall(solv, level, &dq, disablerules, i);
1877 if (level <= olevel)
1881 break; /* unsolvable */
1882 systemlevel = level + 1;
1883 if (i < solv->jobrules_end)
1885 if (!solv->decisioncnt_update)
1886 solv->decisioncnt_update = solv->decisionq.count;
1890 * installed packages
1892 if (level < systemlevel && solv->installed && solv->installed->nsolvables && !solv->installed->disabled)
1894 Repo *installed = solv->installed;
1897 POOL_DEBUG(SOLV_DEBUG_SOLVER, "resolving installed packages\n");
1898 /* we use two passes if we need to update packages
1899 * to create a better user experience */
1900 for (pass = solv->updatemap.size ? 0 : 1; pass < 2; pass++)
1902 int passlevel = level;
1903 Id *specialupdaters = solv->specialupdaters;
1904 if (pass == 1 && !solv->decisioncnt_keep)
1905 solv->decisioncnt_keep = solv->decisionq.count;
1906 /* start with installedpos, the position that gave us problems the last time */
1907 for (i = installedpos, n = installed->start; n < installed->end; i++, n++)
1912 if (i == installed->end)
1913 i = installed->start;
1914 s = pool->solvables + i;
1915 if (s->repo != installed)
1918 if (solv->decisionmap[i] > 0 && (!specialupdaters || !specialupdaters[i - installed->start]))
1919 continue; /* already decided */
1920 if (!pass && solv->updatemap.size && !MAPTST(&solv->updatemap, i - installed->start))
1921 continue; /* updates first */
1922 r = solv->rules + solv->updaterules + (i - installed->start);
1924 if (!rr->p || rr->d < 0) /* disabled -> look at feature rule */
1925 rr -= solv->installed->end - solv->installed->start;
1926 if (!rr->p) /* identical to update rule? */
1928 if (!rr->p && (!specialupdaters || !specialupdaters[i - installed->start]))
1929 continue; /* orpaned package */
1931 /* check if we should update this package to the latest version
1932 * noupdate is set for erase jobs, in that case we want to deinstall
1933 * the installed package and not replace it with a newer version
1934 * rr->p != i is for dup jobs where the installed package cannot be kept */
1936 if (!MAPTST(&solv->noupdate, i - installed->start) && (solv->decisionmap[i] < 0 || solv->updatemap_all || (solv->updatemap.size && MAPTST(&solv->updatemap, i - installed->start)) || (rr->p && rr->p != i)))
1938 if (specialupdaters && (d = specialupdaters[i - installed->start]) != 0)
1940 /* special multiversion handling, make sure best version is chosen */
1941 if (rr->p == i && solv->decisionmap[i] >= 0)
1943 while ((p = pool->whatprovidesdata[d++]) != 0)
1944 if (solv->decisionmap[p] >= 0)
1946 if (dq.count && solv->update_targets && solv->update_targets->elements[i - installed->start])
1947 prune_to_update_targets(solv, solv->update_targets->elements + solv->update_targets->elements[i - installed->start], &dq);
1948 if (dq.count && rr->p)
1950 policy_filter_unwanted(solv, &dq, POLICY_MODE_CHOOSE);
1952 if (p != i && solv->decisionmap[p] == 0)
1954 rr = solv->rules + solv->featurerules + (i - solv->installed->start);
1955 if (!rr->p) /* update rule == feature rule? */
1956 rr = rr - solv->featurerules + solv->updaterules;
1965 /* update to best package of the update rule */
1966 FOR_RULELITERALS(p, pp, rr)
1968 if (solv->decisionmap[p] > 0)
1970 dq.count = 0; /* already fulfilled */
1973 if (!solv->decisionmap[p])
1978 if (dq.count && solv->update_targets && solv->update_targets->elements[i - installed->start])
1979 prune_to_update_targets(solv, solv->update_targets->elements + solv->update_targets->elements[i - installed->start], &dq);
1980 /* install best version */
1984 level = selectandinstall(solv, level, &dq, disablerules, rr - solv->rules);
1991 if (level <= olevel)
1993 if (level == 1 || level < passlevel)
1994 break; /* trouble */
1996 n = installed->start; /* redo all */
2002 /* if still undecided keep package */
2003 if (solv->decisionmap[i] == 0)
2006 if (solv->cleandepsmap.size && MAPTST(&solv->cleandepsmap, i - installed->start))
2009 POOL_DEBUG(SOLV_DEBUG_POLICY, "cleandeps erasing %s\n", pool_solvid2str(pool, i));
2010 level = setpropagatelearn(solv, level, -i, disablerules, 0);
2017 POOL_DEBUG(SOLV_DEBUG_POLICY, "keeping %s\n", pool_solvid2str(pool, i));
2018 level = setpropagatelearn(solv, level, i, disablerules, r - solv->rules);
2022 if (level <= olevel)
2024 if (level == 1 || level < passlevel)
2025 break; /* trouble */
2027 n = installed->start; /* redo all */
2030 continue; /* retry with learnt rule */
2034 if (n < installed->end)
2036 installedpos = i; /* retry problem solvable next time */
2037 break; /* ran into trouble */
2039 installedpos = installed->start; /* reset installedpos */
2042 break; /* unsolvable */
2043 systemlevel = level + 1;
2045 continue; /* had trouble, retry */
2047 if (!solv->decisioncnt_keep)
2048 solv->decisioncnt_keep = solv->decisionq.count;
2050 if (level < systemlevel)
2051 systemlevel = level;
2056 if (!solv->decisioncnt_resolve)
2057 solv->decisioncnt_resolve = solv->decisionq.count;
2058 POOL_DEBUG(SOLV_DEBUG_POLICY, "deciding unresolved rules\n");
2059 for (i = 1, n = 1; n < solv->nrules; i++, n++)
2061 if (i == solv->nrules)
2063 r = solv->rules + i;
2064 if (r->d < 0) /* ignore disabled rules */
2069 /* binary or unary rule */
2070 /* need two positive undecided literals */
2071 if (r->p < 0 || r->w2 <= 0)
2073 if (solv->decisionmap[r->p] || solv->decisionmap[r->w2])
2075 queue_push(&dq, r->p);
2076 queue_push(&dq, r->w2);
2081 * all negative literals are installed
2082 * no positive literal is installed
2083 * i.e. the rule is not fulfilled and we
2084 * just need to decide on the positive literals
2088 if (solv->decisionmap[-r->p] <= 0)
2093 if (solv->decisionmap[r->p] > 0)
2095 if (solv->decisionmap[r->p] == 0)
2096 queue_push(&dq, r->p);
2098 dp = pool->whatprovidesdata + r->d;
2099 while ((p = *dp++) != 0)
2103 if (solv->decisionmap[-p] <= 0)
2108 if (solv->decisionmap[p] > 0)
2110 if (solv->decisionmap[p] == 0)
2117 IF_POOLDEBUG (SOLV_DEBUG_PROPAGATE)
2119 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "unfulfilled ");
2120 solver_printruleclass(solv, SOLV_DEBUG_PROPAGATE, r);
2122 /* dq.count < 2 cannot happen as this means that
2123 * the rule is unit */
2124 assert(dq.count > 1);
2126 /* prune to cleandeps packages */
2127 if (solv->cleandepsmap.size && solv->installed)
2129 Repo *installed = solv->installed;
2130 for (j = 0; j < dq.count; j++)
2131 if (pool->solvables[dq.elements[j]].repo == installed && MAPTST(&solv->cleandepsmap, dq.elements[j] - installed->start))
2135 dq.elements[0] = dq.elements[j];
2136 queue_truncate(&dq, 1);
2141 level = selectandinstall(solv, level, &dq, disablerules, r - solv->rules);
2143 break; /* unsolvable */
2144 if (level < systemlevel || level == 1)
2145 break; /* trouble */
2146 /* something changed, so look at all rules again */
2150 if (n != solv->nrules) /* ran into trouble? */
2153 break; /* unsolvable */
2154 continue; /* start over */
2157 /* decide leftover cleandeps packages */
2158 if (solv->cleandepsmap.size && solv->installed)
2160 for (p = solv->installed->start; p < solv->installed->end; p++)
2162 s = pool->solvables + p;
2163 if (s->repo != solv->installed)
2165 if (solv->decisionmap[p] == 0 && MAPTST(&solv->cleandepsmap, p - solv->installed->start))
2167 POOL_DEBUG(SOLV_DEBUG_POLICY, "cleandeps erasing %s\n", pool_solvid2str(pool, p));
2169 level = setpropagatelearn(solv, level, -p, 0, 0);
2174 if (p < solv->installed->end)
2178 /* at this point we have a consistent system. now do the extras... */
2180 if (!solv->decisioncnt_weak)
2181 solv->decisioncnt_weak = solv->decisionq.count;
2186 POOL_DEBUG(SOLV_DEBUG_POLICY, "installing recommended packages\n");
2187 queue_empty(&dq); /* recommended packages */
2188 queue_empty(&dqs); /* supplemented packages */
2189 for (i = 1; i < pool->nsolvables; i++)
2191 if (solv->decisionmap[i] < 0)
2193 if (solv->decisionmap[i] > 0)
2195 /* installed, check for recommends */
2196 Id *recp, rec, pp, p;
2197 s = pool->solvables + i;
2198 if (!solv->addalreadyrecommended && s->repo == solv->installed)
2200 /* XXX need to special case AND ? */
2203 recp = s->repo->idarraydata + s->recommends;
2204 while ((rec = *recp++) != 0)
2207 FOR_PROVIDES(p, pp, rec)
2209 if (solv->decisionmap[p] > 0)
2214 else if (solv->decisionmap[p] == 0)
2216 if (solv->dupmap_all && solv->installed && pool->solvables[p].repo == solv->installed && (solv->droporphanedmap_all || (solv->droporphanedmap.size && MAPTST(&solv->droporphanedmap, p - solv->installed->start))))
2218 queue_pushunique(&dq, p);
2226 s = pool->solvables + i;
2227 if (!s->supplements)
2229 if (!pool_installable(pool, s))
2231 if (!solver_is_supplementing(solv, s))
2233 if (solv->dupmap_all && solv->installed && s->repo == solv->installed && (solv->droporphanedmap_all || (solv->droporphanedmap.size && MAPTST(&solv->droporphanedmap, i - solv->installed->start))))
2235 queue_push(&dqs, i);
2239 /* filter out all packages obsoleted by installed packages */
2240 /* this is no longer needed if we have reverse obsoletes */
2241 if ((dqs.count || dq.count) && solv->installed)
2244 Id obs, *obsp, po, ppo;
2246 map_init(&obsmap, pool->nsolvables);
2247 for (p = solv->installed->start; p < solv->installed->end; p++)
2249 s = pool->solvables + p;
2250 if (s->repo != solv->installed || !s->obsoletes)
2252 if (solv->decisionmap[p] <= 0)
2254 if (solv->multiversion.size && MAPTST(&solv->multiversion, p))
2256 obsp = s->repo->idarraydata + s->obsoletes;
2257 /* foreach obsoletes */
2258 while ((obs = *obsp++) != 0)
2259 FOR_PROVIDES(po, ppo, obs)
2260 MAPSET(&obsmap, po);
2262 for (i = j = 0; i < dqs.count; i++)
2263 if (!MAPTST(&obsmap, dqs.elements[i]))
2264 dqs.elements[j++] = dqs.elements[i];
2266 for (i = j = 0; i < dq.count; i++)
2267 if (!MAPTST(&obsmap, dq.elements[i]))
2268 dq.elements[j++] = dq.elements[i];
2273 /* filter out all already supplemented packages if requested */
2274 if (!solv->addalreadyrecommended && dqs.count)
2276 int dosplitprovides_old = solv->dosplitprovides;
2277 /* turn off all new packages */
2278 for (i = 0; i < solv->decisionq.count; i++)
2280 p = solv->decisionq.elements[i];
2283 s = pool->solvables + p;
2284 if (s->repo && s->repo != solv->installed)
2285 solv->decisionmap[p] = -solv->decisionmap[p];
2287 solv->dosplitprovides = 0;
2288 /* filter out old supplements */
2289 for (i = j = 0; i < dqs.count; i++)
2291 p = dqs.elements[i];
2292 s = pool->solvables + p;
2293 if (!s->supplements)
2295 if (!solver_is_supplementing(solv, s))
2296 dqs.elements[j++] = p;
2297 else if (solv->installsuppdepq && solver_check_installsuppdepq(solv, s))
2298 dqs.elements[j++] = p;
2301 /* undo turning off */
2302 for (i = 0; i < solv->decisionq.count; i++)
2304 p = solv->decisionq.elements[i];
2307 s = pool->solvables + p;
2308 if (s->repo && s->repo != solv->installed)
2309 solv->decisionmap[p] = -solv->decisionmap[p];
2311 solv->dosplitprovides = dosplitprovides_old;
2314 /* multiversion doesn't mix well with supplements.
2315 * filter supplemented packages where we already decided
2316 * to install a different version (see bnc#501088) */
2317 if (dqs.count && solv->multiversion.size)
2319 for (i = j = 0; i < dqs.count; i++)
2321 p = dqs.elements[i];
2322 if (MAPTST(&solv->multiversion, p))
2325 s = pool->solvables + p;
2326 FOR_PROVIDES(p2, pp2, s->name)
2327 if (solv->decisionmap[p2] > 0 && pool->solvables[p2].name == s->name)
2330 continue; /* ignore this package */
2332 dqs.elements[j++] = p;
2337 /* make dq contain both recommended and supplemented pkgs */
2340 for (i = 0; i < dqs.count; i++)
2341 queue_pushunique(&dq, dqs.elements[i]);
2347 int decisioncount = solv->decisionq.count;
2351 /* simple case, just one package. no need to choose to best version */
2354 POOL_DEBUG(SOLV_DEBUG_POLICY, "installing supplemented %s\n", pool_solvid2str(pool, p));
2356 POOL_DEBUG(SOLV_DEBUG_POLICY, "installing recommended %s\n", pool_solvid2str(pool, p));
2357 level = setpropagatelearn(solv, level, p, 0, 0);
2360 continue; /* back to main loop */
2363 /* filter packages, this gives us the best versions */
2364 policy_filter_unwanted(solv, &dq, POLICY_MODE_RECOMMEND);
2366 /* create map of result */
2367 map_init(&dqmap, pool->nsolvables);
2368 for (i = 0; i < dq.count; i++)
2369 MAPSET(&dqmap, dq.elements[i]);
2371 /* install all supplemented packages */
2372 for (i = 0; i < dqs.count; i++)
2374 p = dqs.elements[i];
2375 if (solv->decisionmap[p] || !MAPTST(&dqmap, p))
2377 POOL_DEBUG(SOLV_DEBUG_POLICY, "installing supplemented %s\n", pool_solvid2str(pool, p));
2379 level = setpropagatelearn(solv, level, p, 0, 0);
2380 if (level <= olevel)
2383 if (i < dqs.count || solv->decisionq.count < decisioncount)
2391 /* install all recommended packages */
2392 /* more work as we want to created branches if multiple
2393 * choices are valid */
2394 for (i = 0; i < decisioncount; i++)
2397 p = solv->decisionq.elements[i];
2400 s = pool->solvables + p;
2401 if (!s->repo || (!solv->addalreadyrecommended && s->repo == solv->installed))
2405 recp = s->repo->idarraydata + s->recommends;
2406 while ((rec = *recp++) != 0)
2409 FOR_PROVIDES(p, pp, rec)
2411 if (solv->decisionmap[p] > 0)
2416 else if (solv->decisionmap[p] == 0 && MAPTST(&dqmap, p))
2417 queue_pushunique(&dq, p);
2423 /* multiple candidates, open a branch */
2424 for (i = 1; i < dq.count; i++)
2425 queue_push(&solv->branches, dq.elements[i]);
2426 queue_push(&solv->branches, -level);
2429 POOL_DEBUG(SOLV_DEBUG_POLICY, "installing recommended %s\n", pool_solvid2str(pool, p));
2431 level = setpropagatelearn(solv, level, p, 0, 0);
2432 if (level <= olevel || solv->decisionq.count < decisioncount)
2433 break; /* we had to revert some decisions */
2436 break; /* had a problem above, quit loop */
2441 continue; /* back to main loop so that all deps are checked */
2445 if (!solv->decisioncnt_orphan)
2446 solv->decisioncnt_orphan = solv->decisionq.count;
2447 if (solv->dupmap_all && solv->installed)
2449 int installedone = 0;
2451 /* let's see if we can install some unsupported package */
2452 POOL_DEBUG(SOLV_DEBUG_SOLVER, "deciding orphaned packages\n");
2453 for (i = 0; i < solv->orphaned.count; i++)
2455 p = solv->orphaned.elements[i];
2456 if (solv->decisionmap[p])
2457 continue; /* already decided */
2458 if (solv->droporphanedmap_all)
2460 if (solv->droporphanedmap.size && MAPTST(&solv->droporphanedmap, p - solv->installed->start))
2462 POOL_DEBUG(SOLV_DEBUG_SOLVER, "keeping orphaned %s\n", pool_solvid2str(pool, p));
2464 level = setpropagatelearn(solv, level, p, 0, 0);
2469 if (installedone || i < solv->orphaned.count)
2473 continue; /* back to main loop */
2475 for (i = 0; i < solv->orphaned.count; i++)
2477 p = solv->orphaned.elements[i];
2478 if (solv->decisionmap[p])
2479 continue; /* already decided */
2480 POOL_DEBUG(SOLV_DEBUG_SOLVER, "removing orphaned %s\n", pool_solvid2str(pool, p));
2482 level = setpropagatelearn(solv, level, -p, 0, 0);
2486 if (i < solv->orphaned.count)
2490 continue; /* back to main loop */
2494 /* one final pass to make sure we decided all installed packages */
2495 if (solv->installed)
2497 for (p = solv->installed->start; p < solv->installed->end; p++)
2499 if (solv->decisionmap[p])
2500 continue; /* already decided */
2501 s = pool->solvables + p;
2502 if (s->repo != solv->installed)
2504 POOL_DEBUG(SOLV_DEBUG_SOLVER, "removing unwanted %s\n", pool_solvid2str(pool, p));
2506 level = setpropagatelearn(solv, level, -p, 0, 0);
2512 if (solv->installed && solv->cleandepsmap.size)
2514 if (cleandeps_check_mistakes(solv, level))
2516 level = 1; /* restart from scratch */
2517 systemlevel = level + 1;
2522 if (solv->solution_callback)
2524 solv->solution_callback(solv, solv->solution_callback_data);
2525 if (solv->branches.count)
2527 int i = solv->branches.count - 1;
2528 int l = -solv->branches.elements[i];
2532 if (solv->branches.elements[i - 1] < 0)
2534 p = solv->branches.elements[i];
2535 POOL_DEBUG(SOLV_DEBUG_SOLVER, "branching with %s\n", pool_solvid2str(pool, p));
2537 for (j = i + 1; j < solv->branches.count; j++)
2538 queue_push(&dq, solv->branches.elements[j]);
2539 solv->branches.count = i;
2541 revert(solv, level);
2543 for (j = 0; j < dq.count; j++)
2544 queue_push(&solv->branches, dq.elements[j]);
2546 why = -solv->decisionq_why.elements[solv->decisionq_why.count];
2548 level = setpropagatelearn(solv, level, p, disablerules, why);
2553 /* all branches done, we're finally finished */
2557 /* auto-minimization step */
2558 if (solv->branches.count)
2560 int l = 0, lasti = -1, lastl = -1;
2564 for (i = solv->branches.count - 1; i >= 0; i--)
2566 p = solv->branches.elements[i];
2569 else if (p > 0 && solv->decisionmap[p] > l + 1)
2577 /* kill old solvable so that we do not loop */
2578 p = solv->branches.elements[lasti];
2579 solv->branches.elements[lasti] = 0;
2580 POOL_DEBUG(SOLV_DEBUG_SOLVER, "minimizing %d -> %d with %s\n", solv->decisionmap[p], lastl, pool_solvid2str(pool, p));
2581 minimizationsteps++;
2584 revert(solv, level);
2585 why = -solv->decisionq_why.elements[solv->decisionq_why.count];
2588 level = setpropagatelearn(solv, level, p, disablerules, why);
2591 continue; /* back to main loop */
2594 /* no minimization found, we're finally finished! */
2598 POOL_DEBUG(SOLV_DEBUG_STATS, "solver statistics: %d learned rules, %d unsolvable, %d minimization steps\n", solv->stats_learned, solv->stats_unsolvable, minimizationsteps);
2600 POOL_DEBUG(SOLV_DEBUG_STATS, "done solving.\n\n");
2606 solv->decisioncnt_update = solv->decisionq.count;
2607 solv->decisioncnt_keep = solv->decisionq.count;
2608 solv->decisioncnt_resolve = solv->decisionq.count;
2609 solv->decisioncnt_weak = solv->decisionq.count;
2610 solv->decisioncnt_orphan = solv->decisionq.count;
2613 solver_printdecisionq(solv, SOLV_DEBUG_RESULT);
2618 /*-------------------------------------------------------------------
2620 * remove disabled conflicts
2622 * purpose: update the decisionmap after some rules were disabled.
2623 * this is used to calculate the suggested/recommended package list.
2624 * Also returns a "removed" list to undo the discisionmap changes.
2628 removedisabledconflicts(Solver *solv, Queue *removed)
2630 Pool *pool = solv->pool;
2635 Id *decisionmap = solv->decisionmap;
2637 queue_empty(removed);
2638 for (i = 0; i < solv->decisionq.count; i++)
2640 p = solv->decisionq.elements[i];
2642 continue; /* conflicts only, please */
2643 why = solv->decisionq_why.elements[i];
2646 /* no rule involved, must be a orphan package drop */
2649 /* we never do conflicts on free decisions, so there
2650 * must have been an unit rule */
2652 r = solv->rules + why;
2653 if (r->d < 0 && decisionmap[-p])
2655 /* rule is now disabled, remove from decisionmap */
2656 POOL_DEBUG(SOLV_DEBUG_SOLVER, "removing conflict for package %s[%d]\n", pool_solvid2str(pool, -p), -p);
2657 queue_push(removed, -p);
2658 queue_push(removed, decisionmap[-p]);
2659 decisionmap[-p] = 0;
2662 if (!removed->count)
2664 /* we removed some confliced packages. some of them might still
2665 * be in conflict, so search for unit rules and re-conflict */
2667 for (i = n = 1, r = solv->rules + i; n < solv->nrules; i++, r++, n++)
2669 if (i == solv->nrules)
2672 r = solv->rules + i;
2678 if (r->p < 0 && !decisionmap[-r->p])
2684 if (r->p < 0 && decisionmap[-r->p] == 0 && DECISIONMAP_FALSE(r->w2))
2686 else if (r->w2 < 0 && decisionmap[-r->w2] == 0 && DECISIONMAP_FALSE(r->p))
2691 if (r->p < 0 && decisionmap[-r->p] == 0)
2693 if (new || DECISIONMAP_FALSE(r->p))
2695 dp = pool->whatprovidesdata + r->d;
2696 while ((p = *dp++) != 0)
2698 if (new && p == new)
2700 if (p < 0 && decisionmap[-p] == 0)
2709 else if (!DECISIONMAP_FALSE(p))
2719 POOL_DEBUG(SOLV_DEBUG_SOLVER, "re-conflicting package %s[%d]\n", pool_solvid2str(pool, -new), -new);
2720 decisionmap[-new] = -1;
2722 n = 0; /* redo all rules */
2728 undo_removedisabledconflicts(Solver *solv, Queue *removed)
2731 for (i = 0; i < removed->count; i += 2)
2732 solv->decisionmap[removed->elements[i]] = removed->elements[i + 1];
2736 /*-------------------------------------------------------------------
2738 * weaken solvable dependencies
2742 weaken_solvable_deps(Solver *solv, Id p)
2747 for (i = 1, r = solv->rules + i; i < solv->rpmrules_end; i++, r++)
2751 if ((r->d == 0 || r->d == -1) && r->w2 < 0)
2752 continue; /* conflict */
2753 queue_push(&solv->weakruleq, i);
2758 /********************************************************************/
2763 solver_calculate_multiversionmap(Pool *pool, Queue *job, Map *multiversionmap)
2766 Id how, what, select;
2768 for (i = 0; i < job->count; i += 2)
2770 how = job->elements[i];
2771 if ((how & SOLVER_JOBMASK) != SOLVER_MULTIVERSION)
2773 what = job->elements[i + 1];
2774 select = how & SOLVER_SELECTMASK;
2775 if (!multiversionmap->size)
2776 map_grow(multiversionmap, pool->nsolvables);
2777 if (select == SOLVER_SOLVABLE_ALL)
2779 FOR_POOL_SOLVABLES(p)
2780 MAPSET(multiversionmap, p);
2782 else if (select == SOLVER_SOLVABLE_REPO)
2785 Repo *repo = pool_id2repo(pool, what);
2787 FOR_REPO_SOLVABLES(repo, p, s)
2788 MAPSET(multiversionmap, p);
2790 FOR_JOB_SELECT(p, pp, select, what)
2791 MAPSET(multiversionmap, p);
2796 solver_calculate_noobsmap(Pool *pool, Queue *job, Map *multiversionmap)
2798 solver_calculate_multiversionmap(pool, job, multiversionmap);
2802 * add a rule created by a job, record job number and weak flag
2805 solver_addjobrule(Solver *solv, Id p, Id d, Id job, int weak)
2807 solver_addrule(solv, p, d);
2808 queue_push(&solv->ruletojob, job);
2810 queue_push(&solv->weakruleq, solv->nrules - 1);
2814 add_cleandeps_package(Solver *solv, Id p)
2816 if (!solv->cleandeps_updatepkgs)
2818 solv->cleandeps_updatepkgs = solv_calloc(1, sizeof(Queue));
2819 queue_init(solv->cleandeps_updatepkgs);
2821 queue_pushunique(solv->cleandeps_updatepkgs, p);
2825 add_update_target(Solver *solv, Id p, Id how)
2827 Pool *pool = solv->pool;
2828 Solvable *s = pool->solvables + p;
2829 Repo *installed = solv->installed;
2831 if (!solv->update_targets)
2833 solv->update_targets = solv_calloc(1, sizeof(Queue));
2834 queue_init(solv->update_targets);
2836 if (s->repo == installed)
2838 queue_push2(solv->update_targets, p, p);
2841 FOR_PROVIDES(pi, pip, s->name)
2843 Solvable *si = pool->solvables + pi;
2844 if (si->repo != installed || si->name != s->name)
2846 if (how & SOLVER_FORCEBEST)
2848 if (!solv->bestupdatemap.size)
2849 map_grow(&solv->bestupdatemap, installed->end - installed->start);
2850 MAPSET(&solv->bestupdatemap, pi - installed->start);
2852 if (how & SOLVER_CLEANDEPS)
2853 add_cleandeps_package(solv, pi);
2854 queue_push2(solv->update_targets, pi, p);
2855 /* check if it's ok to keep the installed package */
2856 if (s->evr == si->evr && solvable_identical(s, si))
2857 queue_push2(solv->update_targets, pi, pi);
2861 Id obs, *obsp = s->repo->idarraydata + s->obsoletes;
2862 while ((obs = *obsp++) != 0)
2864 FOR_PROVIDES(pi, pip, obs)
2866 Solvable *si = pool->solvables + pi;
2867 if (si->repo != installed)
2869 if (si->name == s->name)
2870 continue; /* already handled above */
2871 if (!pool->obsoleteusesprovides && !pool_match_nevr(pool, si, obs))
2873 if (pool->obsoleteusescolors && !pool_colormatch(pool, s, si))
2875 if (how & SOLVER_FORCEBEST)
2877 if (!solv->bestupdatemap.size)
2878 map_grow(&solv->bestupdatemap, installed->end - installed->start);
2879 MAPSET(&solv->bestupdatemap, pi - installed->start);
2881 if (how & SOLVER_CLEANDEPS)
2882 add_cleandeps_package(solv, pi);
2883 queue_push2(solv->update_targets, pi, p);
2890 transform_update_targets_sortfn(const void *ap, const void *bp, void *dp)
2900 transform_update_targets(Solver *solv)
2902 Repo *installed = solv->installed;
2903 Queue *update_targets = solv->update_targets;
2905 Id p, q, lastp, lastq;
2907 if (!update_targets->count)
2909 queue_free(update_targets);
2910 solv->update_targets = solv_free(update_targets);
2913 if (update_targets->count > 2)
2914 solv_sort(update_targets->elements, update_targets->count >> 1, 2 * sizeof(Id), transform_update_targets_sortfn, solv);
2915 queue_insertn(update_targets, 0, installed->end - installed->start, 0);
2917 for (i = j = installed->end - installed->start; i < update_targets->count; i += 2)
2919 if ((p = update_targets->elements[i]) != lastp)
2921 if (!solv->updatemap.size)
2922 map_grow(&solv->updatemap, installed->end - installed->start);
2923 MAPSET(&solv->updatemap, p - installed->start);
2924 update_targets->elements[j++] = 0; /* finish old set */
2925 update_targets->elements[p - installed->start] = j; /* start new set */
2929 if ((q = update_targets->elements[i + 1]) != lastq)
2931 update_targets->elements[j++] = q;
2935 queue_truncate(update_targets, j);
2936 queue_push(update_targets, 0); /* finish last set */
2941 addedmap2deduceq(Solver *solv, Map *addedmap)
2943 Pool *pool = solv->pool;
2948 queue_empty(&solv->addedmap_deduceq);
2949 for (i = 2, j = solv->rpmrules_end - 1; i < pool->nsolvables && j > 0; j--)
2951 r = solv->rules + j;
2954 if ((r->d == 0 || r->d == -1) && r->w2 < 0)
2957 if (!MAPTST(addedmap, p))
2959 /* should never happen, but... */
2960 if (!solv->addedmap_deduceq.count || solv->addedmap_deduceq.elements[solv->addedmap_deduceq.count - 1] != -p)
2961 queue_push(&solv->addedmap_deduceq, -p);
2965 if (MAPTST(addedmap, i))
2966 queue_push(&solv->addedmap_deduceq, i);
2970 for (; i < pool->nsolvables; i++)
2971 if (MAPTST(addedmap, i))
2972 queue_push(&solv->addedmap_deduceq, i);
2974 for (i = 2; i < pool->nsolvables; i++)
2975 if (MAPTST(addedmap, i))
2980 deduceq2addedmap(Solver *solv, Map *addedmap)
2985 for (j = solv->rpmrules_end - 1; j > 0; j--)
2987 r = solv->rules + j;
2988 if (r->d < 0 && r->p)
2989 solver_enablerule(solv, r);
2992 if ((r->d == 0 || r->d == -1) && r->w2 < 0)
2995 MAPSET(addedmap, p);
2997 for (j = 0; j < solv->addedmap_deduceq.count; j++)
2999 p = solv->addedmap_deduceq.elements[j];
3001 MAPSET(addedmap, p);
3003 MAPCLR(addedmap, p);
3015 solver_solve(Solver *solv, Queue *job)
3017 Pool *pool = solv->pool;
3018 Repo *installed = solv->installed;
3020 int oldnrules, initialnrules;
3021 Map addedmap; /* '1' == have rpm-rules for solvable */
3022 Map installcandidatemap;
3023 Id how, what, select, name, weak, p, pp, d;
3027 int now, solve_start;
3029 int hasbestinstalljob = 0;
3031 solve_start = solv_timems(0);
3033 /* log solver options */
3034 POOL_DEBUG(SOLV_DEBUG_STATS, "solver started\n");
3035 POOL_DEBUG(SOLV_DEBUG_STATS, "dosplitprovides=%d, noupdateprovide=%d, noinfarchcheck=%d\n", solv->dosplitprovides, solv->noupdateprovide, solv->noinfarchcheck);
3036 POOL_DEBUG(SOLV_DEBUG_STATS, "allowuninstall=%d, allowdowngrade=%d, allownamechange=%d, allowarchchange=%d, allowvendorchange=%d\n", solv->allowuninstall, solv->allowdowngrade, solv->allownamechange, solv->allowarchchange, solv->allowvendorchange);
3037 POOL_DEBUG(SOLV_DEBUG_STATS, "promoteepoch=%d, forbidselfconflicts=%d\n", pool->promoteepoch, pool->forbidselfconflicts);
3038 POOL_DEBUG(SOLV_DEBUG_STATS, "obsoleteusesprovides=%d, implicitobsoleteusesprovides=%d, obsoleteusescolors=%d, implicitobsoleteusescolors=%d\n", pool->obsoleteusesprovides, pool->implicitobsoleteusesprovides, pool->obsoleteusescolors, pool->implicitobsoleteusescolors);
3039 POOL_DEBUG(SOLV_DEBUG_STATS, "dontinstallrecommended=%d, addalreadyrecommended=%d\n", solv->dontinstallrecommended, solv->addalreadyrecommended);
3041 /* create whatprovides if not already there */
3042 if (!pool->whatprovides)
3043 pool_createwhatprovides(pool);
3045 /* create obsolete index */
3046 policy_create_obsolete_index(solv);
3049 queue_free(&solv->job);
3050 queue_init_clone(&solv->job, job);
3051 solv->pooljobcnt = pool->pooljobs.count;
3052 if (pool->pooljobs.count)
3053 queue_insertn(&solv->job, 0, pool->pooljobs.count, pool->pooljobs.elements);
3056 /* free old stuff */
3057 if (solv->update_targets)
3059 queue_free(solv->update_targets);
3060 solv->update_targets = solv_free(solv->update_targets);
3062 if (solv->cleandeps_updatepkgs)
3064 queue_free(solv->cleandeps_updatepkgs);
3065 solv->cleandeps_updatepkgs = solv_free(solv->cleandeps_updatepkgs);
3067 queue_empty(&solv->ruleassertions);
3068 solv->bestrules_pkg = solv_free(solv->bestrules_pkg);
3069 solv->choicerules_ref = solv_free(solv->choicerules_ref);
3070 if (solv->noupdate.size)
3071 map_empty(&solv->noupdate);
3072 if (solv->multiversion.size)
3074 map_free(&solv->multiversion);
3075 map_init(&solv->multiversion, 0);
3077 solv->updatemap_all = 0;
3078 if (solv->updatemap.size)
3080 map_free(&solv->updatemap);
3081 map_init(&solv->updatemap, 0);
3083 solv->bestupdatemap_all = 0;
3084 if (solv->bestupdatemap.size)
3086 map_free(&solv->bestupdatemap);
3087 map_init(&solv->bestupdatemap, 0);
3089 solv->fixmap_all = 0;
3090 if (solv->fixmap.size)
3092 map_free(&solv->fixmap);
3093 map_init(&solv->fixmap, 0);
3095 solv->dupmap_all = 0;
3096 if (solv->dupmap.size)
3098 map_free(&solv->dupmap);
3099 map_init(&solv->dupmap, 0);
3101 if (solv->dupinvolvedmap.size)
3103 map_free(&solv->dupinvolvedmap);
3104 map_init(&solv->dupinvolvedmap, 0);
3106 solv->droporphanedmap_all = 0;
3107 if (solv->droporphanedmap.size)
3109 map_free(&solv->droporphanedmap);
3110 map_init(&solv->droporphanedmap, 0);
3112 if (solv->cleandepsmap.size)
3114 map_free(&solv->cleandepsmap);
3115 map_init(&solv->cleandepsmap, 0);
3117 if (solv->weakrulemap.size)
3119 map_free(&solv->weakrulemap);
3120 map_init(&solv->weakrulemap, 0);
3123 queue_empty(&solv->weakruleq);
3124 solv->watches = solv_free(solv->watches);
3125 queue_empty(&solv->ruletojob);
3126 if (solv->decisionq.count)
3127 memset(solv->decisionmap, 0, pool->nsolvables * sizeof(Id));
3128 queue_empty(&solv->decisionq);
3129 queue_empty(&solv->decisionq_why);
3130 solv->decisioncnt_update = solv->decisioncnt_keep = solv->decisioncnt_resolve = solv->decisioncnt_weak = solv->decisioncnt_orphan = 0;
3131 queue_empty(&solv->learnt_why);
3132 queue_empty(&solv->learnt_pool);
3133 queue_empty(&solv->branches);
3134 solv->propagate_index = 0;
3135 queue_empty(&solv->problems);
3136 queue_empty(&solv->solutions);
3137 queue_empty(&solv->orphaned);
3138 solv->stats_learned = solv->stats_unsolvable = 0;
3139 if (solv->recommends_index)
3141 map_empty(&solv->recommendsmap);
3142 map_empty(&solv->suggestsmap);
3143 solv->recommends_index = 0;
3145 solv->specialupdaters = solv_free(solv->specialupdaters);
3149 * create basic rule set of all involved packages
3150 * use addedmap bitmap to make sure we don't create rules twice
3153 /* create multiversion map if needed */
3154 solver_calculate_multiversionmap(pool, job, &solv->multiversion);
3156 map_init(&addedmap, pool->nsolvables);
3157 MAPSET(&addedmap, SYSTEMSOLVABLE);
3159 map_init(&installcandidatemap, pool->nsolvables);
3162 now = solv_timems(0);
3164 * create rules for all package that could be involved with the solving
3165 * so called: rpm rules
3168 initialnrules = solv->rpmrules_end ? solv->rpmrules_end : 1;
3169 if (initialnrules > 1)
3170 deduceq2addedmap(solv, &addedmap);
3171 if (solv->nrules != initialnrules)
3172 solver_shrinkrules(solv, initialnrules);
3173 solv->nrules = initialnrules;
3174 solv->rpmrules_end = 0;
3178 /* check for update/verify jobs as they need to be known early */
3179 for (i = 0; i < job->count; i += 2)
3181 how = job->elements[i];
3182 what = job->elements[i + 1];
3183 select = how & SOLVER_SELECTMASK;
3184 switch (how & SOLVER_JOBMASK)
3187 if (select == SOLVER_SOLVABLE_ALL || (select == SOLVER_SOLVABLE_REPO && installed && what == installed->repoid))
3188 solv->fixmap_all = 1;
3189 FOR_JOB_SELECT(p, pp, select, what)
3191 s = pool->solvables + p;
3192 if (s->repo != installed)
3194 if (!solv->fixmap.size)
3195 map_grow(&solv->fixmap, installed->end - installed->start);
3196 MAPSET(&solv->fixmap, p - installed->start);
3200 if (select == SOLVER_SOLVABLE_ALL)
3202 solv->updatemap_all = 1;
3203 if (how & SOLVER_FORCEBEST)
3204 solv->bestupdatemap_all = 1;
3205 if (how & SOLVER_CLEANDEPS)
3207 FOR_REPO_SOLVABLES(installed, p, s)
3208 add_cleandeps_package(solv, p);
3211 else if (select == SOLVER_SOLVABLE_REPO)
3213 Repo *repo = pool_id2repo(pool, what);
3216 if (repo == installed && !(how & SOLVER_TARGETED))
3218 solv->updatemap_all = 1;
3219 if (how & SOLVER_FORCEBEST)
3220 solv->bestupdatemap_all = 1;
3221 if (how & SOLVER_CLEANDEPS)
3223 FOR_REPO_SOLVABLES(installed, p, s)
3224 add_cleandeps_package(solv, p);
3228 if (solv->noautotarget && !(how & SOLVER_TARGETED))
3230 /* targeted update */
3231 FOR_REPO_SOLVABLES(repo, p, s)
3232 add_update_target(solv, p, how);
3236 if (!(how & SOLVER_TARGETED))
3239 FOR_JOB_SELECT(p, pp, select, what)
3241 s = pool->solvables + p;
3242 if (s->repo != installed)
3244 if (!solv->updatemap.size)
3245 map_grow(&solv->updatemap, installed->end - installed->start);
3246 MAPSET(&solv->updatemap, p - installed->start);
3247 if (how & SOLVER_FORCEBEST)
3249 if (!solv->bestupdatemap.size)
3250 map_grow(&solv->bestupdatemap, installed->end - installed->start);
3251 MAPSET(&solv->bestupdatemap, p - installed->start);
3253 if (how & SOLVER_CLEANDEPS)
3254 add_cleandeps_package(solv, p);
3257 if (!targeted || solv->noautotarget)
3260 FOR_JOB_SELECT(p, pp, select, what)
3261 add_update_target(solv, p, how);
3269 if (solv->update_targets)
3270 transform_update_targets(solv);
3272 oldnrules = solv->nrules;
3273 FOR_REPO_SOLVABLES(installed, p, s)
3274 solver_addrpmrulesforsolvable(solv, s, &addedmap);
3275 POOL_DEBUG(SOLV_DEBUG_STATS, "added %d rpm rules for installed solvables\n", solv->nrules - oldnrules);
3276 oldnrules = solv->nrules;
3277 FOR_REPO_SOLVABLES(installed, p, s)
3278 solver_addrpmrulesforupdaters(solv, s, &addedmap, 1);
3279 POOL_DEBUG(SOLV_DEBUG_STATS, "added %d rpm rules for updaters of installed solvables\n", solv->nrules - oldnrules);
3283 * create rules for all packages involved in the job
3284 * (to be installed or removed)
3287 oldnrules = solv->nrules;
3288 for (i = 0; i < job->count; i += 2)
3290 how = job->elements[i];
3291 what = job->elements[i + 1];
3292 select = how & SOLVER_SELECTMASK;
3294 switch (how & SOLVER_JOBMASK)
3296 case SOLVER_INSTALL:
3297 FOR_JOB_SELECT(p, pp, select, what)
3299 MAPSET(&installcandidatemap, p);
3300 solver_addrpmrulesforsolvable(solv, pool->solvables + p, &addedmap);
3303 case SOLVER_DISTUPGRADE:
3304 if (select == SOLVER_SOLVABLE_ALL)
3306 solv->dupmap_all = 1;
3307 solv->updatemap_all = 1;
3308 if (how & SOLVER_FORCEBEST)
3309 solv->bestupdatemap_all = 1;
3311 if (!solv->dupmap_all)
3318 POOL_DEBUG(SOLV_DEBUG_STATS, "added %d rpm rules for packages involved in a job\n", solv->nrules - oldnrules);
3322 * add rules for suggests, enhances
3324 oldnrules = solv->nrules;
3325 solver_addrpmrulesforweak(solv, &addedmap);
3326 POOL_DEBUG(SOLV_DEBUG_STATS, "added %d rpm rules because of weak dependencies\n", solv->nrules - oldnrules);
3328 #ifdef ENABLE_LINKED_PKGS
3329 oldnrules = solv->nrules;
3330 solver_addrpmrulesforlinked(solv, &addedmap);
3331 POOL_DEBUG(SOLV_DEBUG_STATS, "added %d rpm rules because of linked packages\n", solv->nrules - oldnrules);
3335 * first pass done, we now have all the rpm rules we need.
3336 * unify existing rules before going over all job rules and
3338 * at this point the system is always solvable,
3339 * as an empty system (remove all packages) is a valid solution
3342 IF_POOLDEBUG (SOLV_DEBUG_STATS)
3344 int possible = 0, installable = 0;
3345 for (i = 1; i < pool->nsolvables; i++)
3347 if (pool_installable(pool, pool->solvables + i))
3349 if (MAPTST(&addedmap, i))
3352 POOL_DEBUG(SOLV_DEBUG_STATS, "%d of %d installable solvables considered for solving\n", possible, installable);
3355 if (solv->nrules > initialnrules)
3356 solver_unifyrules(solv); /* remove duplicate rpm rules */
3357 solv->rpmrules_end = solv->nrules; /* mark end of rpm rules */
3359 if (solv->nrules > initialnrules)
3360 addedmap2deduceq(solv, &addedmap); /* so that we can recreate the addedmap */
3362 POOL_DEBUG(SOLV_DEBUG_STATS, "rpm rule memory used: %d K\n", solv->nrules * (int)sizeof(Rule) / 1024);
3363 POOL_DEBUG(SOLV_DEBUG_STATS, "rpm rule creation took %d ms\n", solv_timems(now));
3365 /* create dup maps if needed. We need the maps early to create our
3368 solver_createdupmaps(solv);
3371 * create feature rules
3373 * foreach installed:
3374 * create assertion (keep installed, if no update available)
3376 * create update rule (A|update1(A)|update2(A)|...)
3378 * those are used later on to keep a version of the installed packages in
3382 solv->featurerules = solv->nrules; /* mark start of feature rules */
3385 /* foreach possibly installed solvable */
3386 for (i = installed->start, s = pool->solvables + i; i < installed->end; i++, s++)
3388 if (s->repo != installed)
3390 solver_addrule(solv, 0, 0); /* create dummy rule */
3393 solver_addupdaterule(solv, s, 1); /* allow s to be updated */
3395 /* make sure we accounted for all rules */
3396 assert(solv->nrules - solv->featurerules == installed->end - installed->start);
3398 solv->featurerules_end = solv->nrules;
3401 * Add update rules for installed solvables
3403 * almost identical to feature rules
3404 * except that downgrades/archchanges/vendorchanges are not allowed
3407 solv->updaterules = solv->nrules;
3410 { /* foreach installed solvables */
3411 /* we create all update rules, but disable some later on depending on the job */
3412 for (i = installed->start, s = pool->solvables + i; i < installed->end; i++, s++)
3416 if (s->repo != installed)
3418 solver_addrule(solv, 0, 0); /* create dummy rule */
3421 solver_addupdaterule(solv, s, 0); /* allowall = 0: downgrades not allowed */
3423 * check for and remove duplicate
3425 r = solv->rules + solv->nrules - 1; /* r: update rule */
3426 sr = r - (installed->end - installed->start); /* sr: feature rule */
3427 /* it's orphaned if there is no feature rule or the feature rule
3428 * consists just of the installed package */
3429 if (!sr->p || (sr->p == i && !sr->d && !sr->w2))
3430 queue_push(&solv->orphaned, i);
3433 /* assert(solv->dupmap_all && !sr->p); */
3436 if (!solver_rulecmp(solv, r, sr))
3437 memset(sr, 0, sizeof(*sr)); /* delete unneeded feature rule */
3439 solver_disablerule(solv, sr); /* disable feature rule */
3441 /* consistency check: we added a rule for _every_ installed solvable */
3442 assert(solv->nrules - solv->updaterules == installed->end - installed->start);
3444 solv->updaterules_end = solv->nrules;
3448 * now add all job rules
3451 solv->jobrules = solv->nrules;
3452 for (i = 0; i < job->count; i += 2)
3454 oldnrules = solv->nrules;
3456 if (i && i == solv->pooljobcnt)
3457 POOL_DEBUG(SOLV_DEBUG_JOB, "end of pool jobs\n");
3458 how = job->elements[i];
3459 what = job->elements[i + 1];
3460 weak = how & SOLVER_WEAK;
3461 select = how & SOLVER_SELECTMASK;
3462 switch (how & SOLVER_JOBMASK)
3464 case SOLVER_INSTALL:
3465 POOL_DEBUG(SOLV_DEBUG_JOB, "job: %sinstall %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
3466 if ((how & SOLVER_CLEANDEPS) != 0 && !solv->cleandepsmap.size && installed)
3467 map_grow(&solv->cleandepsmap, installed->end - installed->start);
3468 if (select == SOLVER_SOLVABLE)
3476 FOR_JOB_SELECT(p, pp, select, what)
3480 if (select == SOLVER_SOLVABLE_ONE_OF)
3481 break; /* ignore empty installs */
3482 /* no candidate found or unsupported, make this an impossible rule */
3483 queue_push(&q, -SYSTEMSOLVABLE);
3485 p = queue_shift(&q); /* get first candidate */
3486 d = !q.count ? 0 : pool_queuetowhatprovides(pool, &q); /* internalize */
3488 /* force install of namespace supplements hack */
3489 if (select == SOLVER_SOLVABLE_PROVIDES && !d && (p == SYSTEMSOLVABLE || p == -SYSTEMSOLVABLE) && ISRELDEP(what))
3491 Reldep *rd = GETRELDEP(pool, what);
3492 if (rd->flags == REL_NAMESPACE)
3495 if (!solv->installsuppdepq)
3497 solv->installsuppdepq = solv_calloc(1, sizeof(Queue));
3498 queue_init(solv->installsuppdepq);
3500 queue_pushunique(solv->installsuppdepq, rd->evr == 0 ? rd->name : what);
3503 solver_addjobrule(solv, p, d, i, weak);
3504 if (how & SOLVER_FORCEBEST)
3505 hasbestinstalljob = 1;
3508 POOL_DEBUG(SOLV_DEBUG_JOB, "job: %s%serase %s\n", weak ? "weak " : "", how & SOLVER_CLEANDEPS ? "clean deps " : "", solver_select2str(pool, select, what));
3509 if ((how & SOLVER_CLEANDEPS) != 0 && !solv->cleandepsmap.size && installed)
3510 map_grow(&solv->cleandepsmap, installed->end - installed->start);
3511 /* specific solvable: by id or by nevra */
3512 name = (select == SOLVER_SOLVABLE || (select == SOLVER_SOLVABLE_NAME && ISRELDEP(what))) ? 0 : -1;
3513 if (select == SOLVER_SOLVABLE_ALL) /* hmmm ;) */
3515 FOR_POOL_SOLVABLES(p)
3516 solver_addjobrule(solv, -p, 0, i, weak);
3518 else if (select == SOLVER_SOLVABLE_REPO)
3520 Repo *repo = pool_id2repo(pool, what);
3522 FOR_REPO_SOLVABLES(repo, p, s)
3523 solver_addjobrule(solv, -p, 0, i, weak);
3525 FOR_JOB_SELECT(p, pp, select, what)
3527 s = pool->solvables + p;
3528 if (installed && s->repo == installed)
3529 name = !name ? s->name : -1;
3530 solver_addjobrule(solv, -p, 0, i, weak);
3532 /* special case for "erase a specific solvable": we also
3533 * erase all other solvables with that name, so that they
3534 * don't get picked up as replacement.
3535 * name is > 0 if exactly one installed solvable matched.
3537 /* XXX: look also at packages that obsolete this package? */
3542 FOR_PROVIDES(p, pp, name)
3544 s = pool->solvables + p;
3545 if (s->name != name)
3547 /* keep other versions installed */
3548 if (s->repo == installed)
3550 /* keep installcandidates of other jobs */
3551 if (MAPTST(&installcandidatemap, p))
3553 /* don't add the same rule twice */
3554 for (j = oldnrules; j < k; j++)
3555 if (solv->rules[j].p == -p)
3558 solver_addjobrule(solv, -p, 0, i, weak); /* remove by id */
3564 POOL_DEBUG(SOLV_DEBUG_JOB, "job: %supdate %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
3567 POOL_DEBUG(SOLV_DEBUG_JOB, "job: %sverify %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
3569 case SOLVER_WEAKENDEPS:
3570 POOL_DEBUG(SOLV_DEBUG_JOB, "job: %sweaken deps %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
3571 if (select != SOLVER_SOLVABLE)
3573 s = pool->solvables + what;
3574 weaken_solvable_deps(solv, what);
3576 case SOLVER_MULTIVERSION:
3577 POOL_DEBUG(SOLV_DEBUG_JOB, "job: %smultiversion %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
3580 POOL_DEBUG(SOLV_DEBUG_JOB, "job: %slock %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
3581 if (select == SOLVER_SOLVABLE_ALL)
3583 FOR_POOL_SOLVABLES(p)
3584 solver_addjobrule(solv, installed && pool->solvables[p].repo == installed ? p : -p, 0, i, weak);
3586 else if (select == SOLVER_SOLVABLE_REPO)
3588 Repo *repo = pool_id2repo(pool, what);
3590 FOR_REPO_SOLVABLES(repo, p, s)
3591 solver_addjobrule(solv, installed && pool->solvables[p].repo == installed ? p : -p, 0, i, weak);
3593 FOR_JOB_SELECT(p, pp, select, what)
3594 solver_addjobrule(solv, installed && pool->solvables[p].repo == installed ? p : -p, 0, i, weak);
3596 case SOLVER_DISTUPGRADE:
3597 POOL_DEBUG(SOLV_DEBUG_JOB, "job: distupgrade %s\n", solver_select2str(pool, select, what));
3599 case SOLVER_DROP_ORPHANED:
3600 POOL_DEBUG(SOLV_DEBUG_JOB, "job: drop orphaned %s\n", solver_select2str(pool, select, what));
3601 if (select == SOLVER_SOLVABLE_ALL || (select == SOLVER_SOLVABLE_REPO && installed && what == installed->repoid))
3602 solv->droporphanedmap_all = 1;
3603 FOR_JOB_SELECT(p, pp, select, what)
3605 s = pool->solvables + p;
3606 if (!installed || s->repo != installed)
3608 if (!solv->droporphanedmap.size)
3609 map_grow(&solv->droporphanedmap, installed->end - installed->start);
3610 MAPSET(&solv->droporphanedmap, p - installed->start);
3613 case SOLVER_USERINSTALLED:
3614 POOL_DEBUG(SOLV_DEBUG_JOB, "job: user installed %s\n", solver_select2str(pool, select, what));
3617 POOL_DEBUG(SOLV_DEBUG_JOB, "job: unknown job\n");
3625 IF_POOLDEBUG (SOLV_DEBUG_JOB)
3628 if (solv->nrules == oldnrules)
3629 POOL_DEBUG(SOLV_DEBUG_JOB, " - no rule created\n");
3630 for (j = oldnrules; j < solv->nrules; j++)
3632 POOL_DEBUG(SOLV_DEBUG_JOB, " - job ");
3633 solver_printrule(solv, SOLV_DEBUG_JOB, solv->rules + j);
3637 assert(solv->ruletojob.count == solv->nrules - solv->jobrules);
3638 solv->jobrules_end = solv->nrules;
3640 /* now create infarch and dup rules */
3641 if (!solv->noinfarchcheck)
3643 solver_addinfarchrules(solv, &addedmap);
3645 if (pool->implicitobsoleteusescolors)
3647 /* currently doesn't work well with infarch rules, so make
3649 for (i = solv->infarchrules; i < solv->infarchrules_end; i++)
3650 queue_push(&solv->weakruleq, i);
3655 solv->infarchrules = solv->infarchrules_end = solv->nrules;
3658 solver_addduprules(solv, &addedmap);
3660 solv->duprules = solv->duprules_end = solv->nrules;
3662 if (solv->bestupdatemap_all || solv->bestupdatemap.size || hasbestinstalljob)
3663 solver_addbestrules(solv, hasbestinstalljob);
3665 solv->bestrules = solv->bestrules_end = solv->nrules;
3668 solver_freedupmaps(solv); /* no longer needed */
3671 solver_addchoicerules(solv);
3673 solv->choicerules = solv->choicerules_end = solv->nrules;
3677 for (i = solv->featurerules; i < solv->nrules; i++)
3678 solver_printruleclass(solv, SOLV_DEBUG_RESULT, solv->rules + i);
3680 /* all rules created
3681 * --------------------------------------------------------------
3682 * prepare for solving
3685 /* free unneeded memory */
3686 map_free(&addedmap);
3687 map_free(&installcandidatemap);
3690 POOL_DEBUG(SOLV_DEBUG_STATS, "%d rpm rules, 2 * %d update rules, %d job rules, %d infarch rules, %d dup rules, %d choice rules, %d best rules\n", solv->rpmrules_end - 1, solv->updaterules_end - solv->updaterules, solv->jobrules_end - solv->jobrules, solv->infarchrules_end - solv->infarchrules, solv->duprules_end - solv->duprules, solv->choicerules_end - solv->choicerules, solv->bestrules_end - solv->bestrules);
3691 POOL_DEBUG(SOLV_DEBUG_STATS, "overall rule memory used: %d K\n", solv->nrules * (int)sizeof(Rule) / 1024);
3693 /* create weak map */
3694 map_init(&solv->weakrulemap, solv->nrules);
3695 for (i = 0; i < solv->weakruleq.count; i++)
3697 p = solv->weakruleq.elements[i];
3698 MAPSET(&solv->weakrulemap, p);
3701 /* enable cleandepsmap creation if we have updatepkgs */
3702 if (solv->cleandeps_updatepkgs && !solv->cleandepsmap.size)
3703 map_grow(&solv->cleandepsmap, installed->end - installed->start);
3705 if (solv->cleandeps_mistakes)
3707 queue_free(solv->cleandeps_mistakes);
3708 solv->cleandeps_mistakes = solv_free(solv->cleandeps_mistakes);
3711 /* all new rules are learnt after this point */
3712 solv->learntrules = solv->nrules;
3714 /* create watches chains */
3717 /* create assertion index. it is only used to speed up
3718 * makeruledecsions() a bit */
3719 for (i = 1, r = solv->rules + i; i < solv->nrules; i++, r++)
3720 if (r->p && !r->w2 && (r->d == 0 || r->d == -1))
3721 queue_push(&solv->ruleassertions, i);
3723 /* disable update rules that conflict with our job */
3724 solver_disablepolicyrules(solv);
3726 /* make initial decisions based on assertion rules */
3727 makeruledecisions(solv);
3728 POOL_DEBUG(SOLV_DEBUG_SOLVER, "problems so far: %d\n", solv->problems.count);
3731 * ********************************************
3733 * ********************************************
3736 now = solv_timems(0);
3737 solver_run_sat(solv, 1, solv->dontinstallrecommended ? 0 : 1);
3738 POOL_DEBUG(SOLV_DEBUG_STATS, "solver took %d ms\n", solv_timems(now));
3741 * prepare solution queue if there were problems
3743 solver_prepare_solutions(solv);
3745 POOL_DEBUG(SOLV_DEBUG_STATS, "final solver statistics: %d problems, %d learned rules, %d unsolvable\n", solv->problems.count / 2, solv->stats_learned, solv->stats_unsolvable);
3746 POOL_DEBUG(SOLV_DEBUG_STATS, "solver_solve took %d ms\n", solv_timems(solve_start));
3748 /* return number of problems */
3749 return solv->problems.count ? solv->problems.count / 2 : 0;
3753 solver_create_transaction(Solver *solv)
3755 return transaction_create_decisionq(solv->pool, &solv->decisionq, &solv->multiversion);
3758 void solver_get_orphaned(Solver *solv, Queue *orphanedq)
3760 queue_free(orphanedq);
3761 queue_init_clone(orphanedq, &solv->orphaned);
3764 void solver_get_recommendations(Solver *solv, Queue *recommendationsq, Queue *suggestionsq, int noselected)
3766 Pool *pool = solv->pool;
3767 Queue redoq, disabledq;
3773 if (!recommendationsq && !suggestionsq)
3776 map_init(&obsmap, pool->nsolvables);
3777 if (solv->installed)
3779 Id obs, *obsp, p, po, ppo;
3780 for (p = solv->installed->start; p < solv->installed->end; p++)
3782 s = pool->solvables + p;
3783 if (s->repo != solv->installed || !s->obsoletes)
3785 if (solv->decisionmap[p] <= 0)
3787 if (solv->multiversion.size && MAPTST(&solv->multiversion, p))
3789 obsp = s->repo->idarraydata + s->obsoletes;
3790 /* foreach obsoletes */
3791 while ((obs = *obsp++) != 0)
3792 FOR_PROVIDES(po, ppo, obs)
3793 MAPSET(&obsmap, po);
3798 queue_init(&disabledq);
3800 /* disable all erase jobs (including weak "keep uninstalled" rules) */
3801 for (i = solv->jobrules, r = solv->rules + i; i < solv->jobrules_end; i++, r++)
3803 if (r->d < 0) /* disabled ? */
3805 if (r->p >= 0) /* install job? */
3807 queue_push(&disabledq, i);
3808 solver_disablerule(solv, r);
3814 enabledisablelearntrules(solv);
3815 removedisabledconflicts(solv, &redoq);
3819 * find recommended packages
3821 if (recommendationsq)
3823 Id rec, *recp, p, pp;
3825 queue_empty(recommendationsq);
3826 /* create map of all recommened packages */
3827 solv->recommends_index = -1;
3828 MAPZERO(&solv->recommendsmap);
3830 /* put all packages the solver already chose in the map */
3831 if (solv->decisioncnt_weak)
3833 for (i = solv->decisioncnt_weak; i < solv->decisioncnt_orphan; i++)
3836 why = solv->decisionq_why.elements[i];
3838 continue; /* forced by unit rule or dep resolving */
3839 p = solv->decisionq.elements[i];
3842 MAPSET(&solv->recommendsmap, p);
3846 for (i = 0; i < solv->decisionq.count; i++)
3848 p = solv->decisionq.elements[i];
3851 s = pool->solvables + p;
3854 recp = s->repo->idarraydata + s->recommends;
3855 while ((rec = *recp++) != 0)
3857 FOR_PROVIDES(p, pp, rec)
3858 if (solv->decisionmap[p] > 0)
3864 FOR_PROVIDES(p, pp, rec)
3865 if (solv->decisionmap[p] > 0)
3866 MAPSET(&solv->recommendsmap, p);
3868 continue; /* p != 0: already fulfilled */
3870 FOR_PROVIDES(p, pp, rec)
3871 MAPSET(&solv->recommendsmap, p);
3875 for (i = 1; i < pool->nsolvables; i++)
3877 if (solv->decisionmap[i] < 0)
3879 if (solv->decisionmap[i] > 0 && noselected)
3881 if (MAPTST(&obsmap, i))
3883 s = pool->solvables + i;
3884 if (!MAPTST(&solv->recommendsmap, i))
3886 if (!s->supplements)
3888 if (!pool_installable(pool, s))
3890 if (!solver_is_supplementing(solv, s))
3893 queue_push(recommendationsq, i);
3895 /* we use MODE_SUGGEST here so that repo prio is ignored */
3896 policy_filter_unwanted(solv, recommendationsq, POLICY_MODE_SUGGEST);
3900 * find suggested packages
3905 Id sug, *sugp, p, pp;
3907 queue_empty(suggestionsq);
3908 /* create map of all suggests that are still open */
3909 solv->recommends_index = -1;
3910 MAPZERO(&solv->suggestsmap);
3911 for (i = 0; i < solv->decisionq.count; i++)
3913 p = solv->decisionq.elements[i];
3916 s = pool->solvables + p;
3919 sugp = s->repo->idarraydata + s->suggests;
3920 while ((sug = *sugp++) != 0)
3922 FOR_PROVIDES(p, pp, sug)
3923 if (solv->decisionmap[p] > 0)
3929 FOR_PROVIDES(p, pp, sug)
3930 if (solv->decisionmap[p] > 0)
3931 MAPSET(&solv->suggestsmap, p);
3933 continue; /* already fulfilled */
3935 FOR_PROVIDES(p, pp, sug)
3936 MAPSET(&solv->suggestsmap, p);
3940 for (i = 1; i < pool->nsolvables; i++)
3942 if (solv->decisionmap[i] < 0)
3944 if (solv->decisionmap[i] > 0 && noselected)
3946 if (MAPTST(&obsmap, i))
3948 s = pool->solvables + i;
3949 if (!MAPTST(&solv->suggestsmap, i))
3953 if (!pool_installable(pool, s))
3955 if (!solver_is_enhancing(solv, s))
3958 queue_push(suggestionsq, i);
3960 policy_filter_unwanted(solv, suggestionsq, POLICY_MODE_SUGGEST);
3963 /* undo removedisabledconflicts */
3965 undo_removedisabledconflicts(solv, &redoq);
3968 /* undo job rule disabling */
3969 for (i = 0; i < disabledq.count; i++)
3970 solver_enablerule(solv, solv->rules + disabledq.elements[i]);
3971 queue_free(&disabledq);
3976 /***********************************************************************/
3977 /* disk usage computations */
3979 /*-------------------------------------------------------------------
3981 * calculate DU changes
3985 solver_calc_duchanges(Solver *solv, DUChanges *mps, int nmps)
3989 solver_create_state_maps(solv, &installedmap, 0);
3990 pool_calc_duchanges(solv->pool, &installedmap, mps, nmps);
3991 map_free(&installedmap);
3995 /*-------------------------------------------------------------------
3997 * calculate changes in install size
4001 solver_calc_installsizechange(Solver *solv)
4006 solver_create_state_maps(solv, &installedmap, 0);
4007 change = pool_calc_installsizechange(solv->pool, &installedmap);
4008 map_free(&installedmap);
4013 solver_create_state_maps(Solver *solv, Map *installedmap, Map *conflictsmap)
4015 pool_create_state_maps(solv->pool, &solv->decisionq, installedmap, conflictsmap);
4019 solver_trivial_installable(Solver *solv, Queue *pkgs, Queue *res)
4021 Pool *pool = solv->pool;
4024 pool_create_state_maps(pool, &solv->decisionq, &installedmap, 0);
4025 pool_trivial_installable_multiversionmap(pool, &installedmap, pkgs, res, solv->multiversion.size ? &solv->multiversion : 0);
4026 for (i = 0; i < res->count; i++)
4027 if (res->elements[i] != -1)
4029 Solvable *s = pool->solvables + pkgs->elements[i];
4030 if (!strncmp("patch:", pool_id2str(pool, s->name), 6) && solvable_is_irrelevant_patch(s, &installedmap))
4031 res->elements[i] = -1;
4033 map_free(&installedmap);
4036 /*-------------------------------------------------------------------
4038 * decision introspection
4042 solver_get_decisionlevel(Solver *solv, Id p)
4044 return solv->decisionmap[p];
4048 solver_get_decisionqueue(Solver *solv, Queue *decisionq)
4050 queue_free(decisionq);
4051 queue_init_clone(decisionq, &solv->decisionq);
4055 solver_get_lastdecisionblocklevel(Solver *solv)
4058 if (solv->decisionq.count == 0)
4060 p = solv->decisionq.elements[solv->decisionq.count - 1];
4063 return solv->decisionmap[p] < 0 ? -solv->decisionmap[p] : solv->decisionmap[p];
4067 solver_get_decisionblock(Solver *solv, int level, Queue *decisionq)
4072 queue_empty(decisionq);
4073 for (i = 0; i < solv->decisionq.count; i++)
4075 p = solv->decisionq.elements[i];
4078 if (solv->decisionmap[p] == level || solv->decisionmap[p] == -level)
4081 if (i == solv->decisionq.count)
4083 for (i = 0; i < solv->decisionq.count; i++)
4085 p = solv->decisionq.elements[i];
4088 if (solv->decisionmap[p] == level || solv->decisionmap[p] == -level)
4089 queue_push(decisionq, p);
4096 solver_describe_decision(Solver *solv, Id p, Id *infop)
4103 if (!solv->decisionmap[p])
4104 return SOLVER_REASON_UNRELATED;
4105 pp = solv->decisionmap[p] < 0 ? -p : p;
4106 for (i = 0; i < solv->decisionq.count; i++)
4107 if (solv->decisionq.elements[i] == pp)
4109 if (i == solv->decisionq.count) /* just in case... */
4110 return SOLVER_REASON_UNRELATED;
4111 why = solv->decisionq_why.elements[i];
4113 *infop = why > 0 ? why : -why;
4115 return SOLVER_REASON_UNIT_RULE;
4117 if (i < solv->decisioncnt_update)
4120 return SOLVER_REASON_KEEP_INSTALLED;
4121 return SOLVER_REASON_RESOLVE_JOB;
4123 if (i < solv->decisioncnt_keep)
4125 if (why == 0 && pp < 0)
4126 return SOLVER_REASON_CLEANDEPS_ERASE;
4127 return SOLVER_REASON_UPDATE_INSTALLED;
4129 if (i < solv->decisioncnt_resolve)
4131 if (why == 0 && pp < 0)
4132 return SOLVER_REASON_CLEANDEPS_ERASE;
4133 return SOLVER_REASON_KEEP_INSTALLED;
4136 return SOLVER_REASON_RESOLVE;
4137 /* weak or orphaned */
4138 if (solv->decisionq.count < solv->decisioncnt_orphan)
4139 return SOLVER_REASON_WEAKDEP;
4140 return SOLVER_REASON_RESOLVE_ORPHAN;
4145 solver_describe_weakdep_decision(Solver *solv, Id p, Queue *whyq)
4147 Pool *pool = solv->pool;
4149 int level = solv->decisionmap[p];
4156 for (decisionno = 0; decisionno < solv->decisionq.count; decisionno++)
4157 if (solv->decisionq.elements[decisionno] == p)
4159 if (decisionno == solv->decisionq.count)
4161 if (decisionno < solv->decisioncnt_weak || decisionno >= solv->decisioncnt_orphan)
4164 /* 1) list all packages that recommend us */
4165 for (i = 1; i < pool->nsolvables; i++)
4167 Id *recp, rec, pp2, p2;
4168 if (solv->decisionmap[i] < 0 || solv->decisionmap[i] >= level)
4170 s = pool->solvables + i;
4173 if (!solv->addalreadyrecommended && s->repo == solv->installed)
4175 recp = s->repo->idarraydata + s->recommends;
4176 while ((rec = *recp++) != 0)
4179 FOR_PROVIDES(p2, pp2, rec)
4185 /* if p2 is already installed, this recommends is ignored */
4186 if (solv->decisionmap[p2] > 0 && solv->decisionmap[p2] < level)
4192 queue_push(whyq, SOLVER_REASON_RECOMMENDED);
4193 queue_push2(whyq, p2, rec);
4197 /* 2) list all supplements */
4198 s = pool->solvables + p;
4199 if (s->supplements && level > 0)
4201 Id *supp, sup, pp2, p2;
4202 /* this is a hack. to use solver_dep_fulfilled we temporarily clear
4203 * everything above our level in the decisionmap */
4204 for (i = decisionno; i < solv->decisionq.count; i++ )
4206 p2 = solv->decisionq.elements[i];
4208 solv->decisionmap[p2] = -solv->decisionmap[p2];
4210 supp = s->repo->idarraydata + s->supplements;
4211 while ((sup = *supp++) != 0)
4212 if (solver_dep_fulfilled(solv, sup))
4215 /* let's see if this is an easy supp */
4216 FOR_PROVIDES(p2, pp2, sup)
4218 if (!solv->addalreadyrecommended && solv->installed)
4220 if (pool->solvables[p2].repo == solv->installed)
4223 if (solv->decisionmap[p2] > 0 && solv->decisionmap[p2] < level)
4225 queue_push(whyq, SOLVER_REASON_SUPPLEMENTED);
4226 queue_push2(whyq, p2, sup);
4232 /* hard case, just note dependency with no package */
4233 queue_push(whyq, SOLVER_REASON_SUPPLEMENTED);
4234 queue_push2(whyq, 0, sup);
4237 for (i = decisionno; i < solv->decisionq.count; i++)
4239 p2 = solv->decisionq.elements[i];
4241 solv->decisionmap[p2] = -solv->decisionmap[p2];
4247 pool_job2solvables(Pool *pool, Queue *pkgs, Id how, Id what)
4250 how &= SOLVER_SELECTMASK;
4252 if (how == SOLVER_SOLVABLE_ALL)
4254 FOR_POOL_SOLVABLES(p)
4255 queue_push(pkgs, p);
4257 else if (how == SOLVER_SOLVABLE_REPO)
4259 Repo *repo = pool_id2repo(pool, what);
4262 FOR_REPO_SOLVABLES(repo, p, s)
4263 queue_push(pkgs, p);
4267 FOR_JOB_SELECT(p, pp, how, what)
4268 queue_push(pkgs, p);
4273 pool_isemptyupdatejob(Pool *pool, Id how, Id what)
4276 Id select = how & SOLVER_SELECTMASK;
4277 if ((how & SOLVER_JOBMASK) != SOLVER_UPDATE)
4279 if (select == SOLVER_SOLVABLE_ALL || select == SOLVER_SOLVABLE_REPO)
4281 if (!pool->installed)
4283 FOR_JOB_SELECT(p, pp, select, what)
4284 if (pool->solvables[p].repo == pool->installed)
4287 FOR_JOB_SELECT(p, pp, select, what)
4289 Solvable *s = pool->solvables + p;
4290 FOR_PROVIDES(pi, pip, s->name)
4292 Solvable *si = pool->solvables + pi;
4293 if (si->repo != pool->installed || si->name != s->name)
4299 Id obs, *obsp = s->repo->idarraydata + s->obsoletes;
4300 while ((obs = *obsp++) != 0)
4302 FOR_PROVIDES(pi, pip, obs)
4304 Solvable *si = pool->solvables + pi;
4305 if (si->repo != pool->installed)
4307 if (!pool->obsoleteusesprovides && !pool_match_nevr(pool, si, obs))
4309 if (pool->obsoleteusescolors && !pool_colormatch(pool, s, si))
4320 solver_select2str(Pool *pool, Id select, Id what)
4324 select &= SOLVER_SELECTMASK;
4325 if (select == SOLVER_SOLVABLE)
4326 return pool_solvid2str(pool, what);
4327 if (select == SOLVER_SOLVABLE_NAME)
4328 return pool_dep2str(pool, what);
4329 if (select == SOLVER_SOLVABLE_PROVIDES)
4331 s = pool_dep2str(pool, what);
4332 b = pool_alloctmpspace(pool, 11 + strlen(s));
4333 sprintf(b, "providing %s", s);
4336 if (select == SOLVER_SOLVABLE_ONE_OF)
4340 while ((p = pool->whatprovidesdata[what++]) != 0)
4342 s = pool_solvid2str(pool, p);
4344 b = pool_tmpappend(pool, b, ", ", s);
4346 b = pool_tmpjoin(pool, s, 0, 0);
4347 pool_freetmpspace(pool, s);
4349 return b ? b : "nothing";
4351 if (select == SOLVER_SOLVABLE_REPO)
4353 b = pool_alloctmpspace(pool, 20);
4354 sprintf(b, "repo #%d", what);
4357 if (select == SOLVER_SOLVABLE_ALL)
4358 return "all packages";
4359 return "unknown job select";
4363 pool_job2str(Pool *pool, Id how, Id what, Id flagmask)
4365 Id select = how & SOLVER_SELECTMASK;
4366 const char *strstart = 0, *strend = 0;
4370 switch (how & SOLVER_JOBMASK)
4373 return "do nothing";
4374 case SOLVER_INSTALL:
4375 if (select == SOLVER_SOLVABLE && pool->installed && pool->solvables[what].repo == pool->installed)
4376 strstart = "keep ", strend = " installed";
4377 else if (select == SOLVER_SOLVABLE || select == SOLVER_SOLVABLE_NAME)
4378 strstart = "install ";
4379 else if (select == SOLVER_SOLVABLE_PROVIDES)
4380 strstart = "install a package ";
4382 strstart = "install one of ";
4385 if (select == SOLVER_SOLVABLE && !(pool->installed && pool->solvables[what].repo == pool->installed))
4386 strstart = "keep ", strend = " uninstalled";
4387 else if (select == SOLVER_SOLVABLE_PROVIDES)
4388 strstart = "deinstall all packages ";
4390 strstart = "deinstall ";
4393 strstart = "update ";
4395 case SOLVER_WEAKENDEPS:
4396 strstart = "weaken deps of ";
4398 case SOLVER_MULTIVERSION:
4399 strstart = "multi version ";
4402 strstart = "update ";
4404 case SOLVER_DISTUPGRADE:
4405 strstart = "dist upgrade ";
4408 strstart = "verify ";
4410 case SOLVER_DROP_ORPHANED:
4411 strstart = "deinstall ", strend = " if orphaned";
4413 case SOLVER_USERINSTALLED:
4414 strstart = "regard ", strend = " as userinstalled";
4417 strstart = "unknown job ";
4420 s = pool_tmpjoin(pool, strstart, solver_select2str(pool, select, what), strend);
4422 if ((how & ~(SOLVER_SELECTMASK|SOLVER_JOBMASK)) == 0)
4425 s = pool_tmpappend(pool, s, " ", 0);
4426 if (how & SOLVER_WEAK)
4427 s = pool_tmpappend(pool, s, ",weak", 0);
4428 if (how & SOLVER_ESSENTIAL)
4429 s = pool_tmpappend(pool, s, ",essential", 0);
4430 if (how & SOLVER_CLEANDEPS)
4431 s = pool_tmpappend(pool, s, ",cleandeps", 0);
4432 if (how & SOLVER_ORUPDATE)
4433 s = pool_tmpappend(pool, s, ",orupdate", 0);
4434 if (how & SOLVER_FORCEBEST)
4435 s = pool_tmpappend(pool, s, ",forcebest", 0);
4436 if (how & SOLVER_TARGETED)
4437 s = pool_tmpappend(pool, s, ",targeted", 0);
4438 if (how & SOLVER_SETEV)
4439 s = pool_tmpappend(pool, s, ",setev", 0);
4440 if (how & SOLVER_SETEVR)
4441 s = pool_tmpappend(pool, s, ",setevr", 0);
4442 if (how & SOLVER_SETARCH)
4443 s = pool_tmpappend(pool, s, ",setarch", 0);
4444 if (how & SOLVER_SETVENDOR)
4445 s = pool_tmpappend(pool, s, ",setvendor", 0);
4446 if (how & SOLVER_SETREPO)
4447 s = pool_tmpappend(pool, s, ",setrepo", 0);
4448 if (how & SOLVER_SETNAME)
4449 s = pool_tmpappend(pool, s, ",setname", 0);
4450 if (how & SOLVER_NOAUTOSET)
4451 s = pool_tmpappend(pool, s, ",noautoset", 0);
4452 if (s[o + 1] != ',')
4453 s = pool_tmpappend(pool, s, ",?", 0);
4455 return pool_tmpappend(pool, s, "]", 0);