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 #include "linkedpkg.h"
31 #define RULES_BLOCK 63
34 /************************************************************************/
37 * enable/disable learnt rules
39 * we have enabled or disabled some of our rules. We now reenable all
40 * of our learnt rules except the ones that were learnt from rules that
44 enabledisablelearntrules(Solver *solv)
46 Pool *pool = solv->pool;
51 POOL_DEBUG(SOLV_DEBUG_SOLUTIONS, "enabledisablelearntrules called\n");
52 for (i = solv->learntrules, r = solv->rules + i; i < solv->nrules; i++, r++)
54 whyp = solv->learnt_pool.elements + solv->learnt_why.elements[i - solv->learntrules];
55 while ((why = *whyp++) != 0)
57 assert(why > 0 && why < i);
58 if (solv->rules[why].d < 0)
61 /* why != 0: we found a disabled rule, disable the learnt rule */
64 IF_POOLDEBUG (SOLV_DEBUG_SOLUTIONS)
66 POOL_DEBUG(SOLV_DEBUG_SOLUTIONS, "disabling ");
67 solver_printruleclass(solv, SOLV_DEBUG_SOLUTIONS, r);
69 solver_disablerule(solv, r);
71 else if (!why && r->d < 0)
73 IF_POOLDEBUG (SOLV_DEBUG_SOLUTIONS)
75 POOL_DEBUG(SOLV_DEBUG_SOLUTIONS, "re-enabling ");
76 solver_printruleclass(solv, SOLV_DEBUG_SOLUTIONS, r);
78 solver_enablerule(solv, r);
85 * make assertion rules into decisions
87 * Go through rules and add direct assertions to the decisionqueue.
88 * If we find a conflict, disable rules and add them to problem queue.
92 makeruledecisions(Solver *solv, int disablerules)
94 Pool *pool = solv->pool;
101 int havedisabled = 0;
104 /* The system solvable is always installed first */
105 assert(solv->decisionq.count == 0);
106 queue_push(&solv->decisionq, SYSTEMSOLVABLE);
107 queue_push(&solv->decisionq_why, 0);
108 queue_push2(&solv->decisionq_reason, 0, 0);
109 solv->decisionmap[SYSTEMSOLVABLE] = 1; /* installed at level '1' */
111 decisionstart = solv->decisionq.count;
114 /* if we needed to re-run, back up decisions to decisionstart */
115 while (solv->decisionq.count > decisionstart)
117 v = solv->decisionq.elements[--solv->decisionq.count];
118 --solv->decisionq_why.count;
120 solv->decisionmap[vv] = 0;
123 /* note that the ruleassertions queue is ordered */
124 for (ii = 0; ii < solv->ruleassertions.count; ii++)
126 ri = solv->ruleassertions.elements[ii];
127 r = solv->rules + ri;
129 if (havedisabled && ri >= solv->learntrules)
131 /* just started with learnt rule assertions. If we have disabled
132 * some rules, adapt the learnt rule status */
133 enabledisablelearntrules(solv);
137 if (r->d < 0 || !r->p || r->w2) /* disabled, dummy or no assertion */
140 /* do weak rules in phase 2 */
141 if (ri < solv->learntrules && solv->weakrulemap.size && MAPTST(&solv->weakrulemap, ri))
147 if (!solv->decisionmap[vv]) /* if not yet decided */
149 queue_push(&solv->decisionq, v);
150 queue_push(&solv->decisionq_why, ri);
151 solv->decisionmap[vv] = v > 0 ? 1 : -1;
152 IF_POOLDEBUG (SOLV_DEBUG_PROPAGATE)
154 Solvable *s = solv->pool->solvables + vv;
156 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "conflicting %s (assertion)\n", pool_solvable2str(solv->pool, s));
158 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "installing %s (assertion)\n", pool_solvable2str(solv->pool, s));
163 /* check against previous decision: is there a conflict? */
164 if (v > 0 && solv->decisionmap[vv] > 0) /* ok to install */
166 if (v < 0 && solv->decisionmap[vv] < 0) /* ok to remove */
172 * The rule (r) we're currently processing says something
173 * different (v = r->p) than a previous decision (decisionmap[abs(v)])
177 if (ri >= solv->learntrules)
179 /* conflict with a learnt rule */
180 /* can happen when packages cannot be installed for multiple reasons. */
181 /* we disable the learnt rule in this case */
182 /* (XXX: we should really do something like analyze_unsolvable_rule here!) */
183 solver_disablerule(solv, r);
187 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "ANALYZE UNSOLVABLE ASSERTION ----------------------\n");
188 assert(ri >= solv->pkgrules_end); /* must not have a conflict in the pkg rules! */
191 * find the decision which is the "opposite" of the rule
193 for (i = 0; i < solv->decisionq.count; i++)
194 if (solv->decisionq.elements[i] == -v)
196 assert(i < solv->decisionq.count); /* assert that we found it */
197 if (v == -SYSTEMSOLVABLE)
201 ori = solv->decisionq_why.elements[i]; /* the conflicting rule */
209 oldproblemcount = solv->problems.count;
210 queue_push(&solv->problems, 0); /* start problem */
211 if (ori < solv->pkgrules_end)
213 /* easy: conflict with system solvable or pkg rule */
214 assert(v > 0 || v == -SYSTEMSOLVABLE);
215 IF_POOLDEBUG (SOLV_DEBUG_UNSOLVABLE)
218 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "conflict with pkg rule, disabling rule #%d\n", ri);
220 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "conflict with system solvable, disabling rule #%d\n", ri);
221 solver_printruleclass(solv, SOLV_DEBUG_UNSOLVABLE, solv->rules + ri);
223 solver_printruleclass(solv, SOLV_DEBUG_UNSOLVABLE, solv->rules + ori);
225 solver_recordproblem(solv, ri);
226 if (ri >= solv->featurerules && ri < solv->updaterules_end)
231 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "conflicting update/job assertions over literal %d\n", vv);
233 * push all of our rules (can only be feature or job rules)
234 * asserting this literal on the problem stack
236 for (i = solv->pkgrules_end, rr = solv->rules + i; i < solv->learntrules; i++, rr++)
238 if (rr->d < 0 /* disabled */
239 || rr->w2) /* or no assertion */
241 if (rr->p != vv /* not affecting the literal */
244 if (solv->weakrulemap.size && MAPTST(&solv->weakrulemap, i)) /* weak: silently ignore */
247 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, " - disabling rule #%d\n", i);
248 solver_printruleclass(solv, SOLV_DEBUG_UNSOLVABLE, solv->rules + i);
249 solver_recordproblem(solv, i);
250 if (i >= solv->featurerules && i < solv->updaterules_end)
254 queue_push(&solv->problems, 0); /* finish problem */
256 /* try autouninstall if requested */
259 if (solv->allowuninstall || solv->allowuninstall_all || solv->allowuninstallmap.size)
260 if (solver_autouninstall(solv, oldproblemcount) != 0)
262 solv->problems.count = oldproblemcount;
264 break; /* start over */
268 /* record the proof if requested */
271 solv->problems.elements[oldproblemcount] = solv->learnt_pool.count;
272 queue_push(&solv->learnt_pool, ri);
274 queue_push(&solv->learnt_pool, ori);
275 queue_push(&solv->learnt_pool, 0);
280 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "UNSOLVABLE\n");
283 /* disable all problem rules */
284 solver_disableproblemset(solv, oldproblemcount);
286 break; /* start over */
288 if (ii < solv->ruleassertions.count)
292 * phase 2: now do the weak assertions
294 if (!solv->weakrulemap.size)
295 break; /* no weak rules, no phase 2 */
296 for (ii = 0; ii < solv->ruleassertions.count; ii++)
298 ri = solv->ruleassertions.elements[ii];
299 r = solv->rules + ri;
300 if (r->d < 0 || r->w2) /* disabled or no assertion */
302 if (ri >= solv->learntrules || !MAPTST(&solv->weakrulemap, ri)) /* skip non-weak */
307 if (!solv->decisionmap[vv]) /* if not yet decided */
309 queue_push(&solv->decisionq, v);
310 queue_push(&solv->decisionq_why, r - solv->rules);
311 solv->decisionmap[vv] = v > 0 ? 1 : -1;
312 IF_POOLDEBUG (SOLV_DEBUG_PROPAGATE)
314 Solvable *s = solv->pool->solvables + vv;
316 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "conflicting %s (weak assertion)\n", pool_solvable2str(solv->pool, s));
318 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "installing %s (weak assertion)\n", pool_solvable2str(solv->pool, s));
322 /* check against previous decision: is there a conflict? */
323 if (v > 0 && solv->decisionmap[vv] > 0)
325 if (v < 0 && solv->decisionmap[vv] < 0)
328 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "assertion conflict, but I am weak, disabling ");
329 solver_printruleclass(solv, SOLV_DEBUG_UNSOLVABLE, r);
330 solver_fixproblem(solv, ri);
332 break; /* start over */
334 if (ii == solv->ruleassertions.count)
335 break; /* finished! */
337 return 1; /* the new level */
341 /********************************************************************/
345 /*-------------------------------------------------------------------
348 * initial setup for all watches
352 makewatches(Solver *solv)
356 int nsolvables = solv->pool->nsolvables;
358 solv_free(solv->watches);
359 /* lower half for removals, upper half for installs */
360 solv->watches = solv_calloc(2 * nsolvables, sizeof(Id));
361 for (i = 1, r = solv->rules + solv->nrules - 1; i < solv->nrules; i++, r--)
363 if (!r->w2) /* assertions do not need watches */
366 /* see addwatches_rule(solv, r) */
367 r->n1 = solv->watches[nsolvables + r->w1];
368 solv->watches[nsolvables + r->w1] = r - solv->rules;
370 r->n2 = solv->watches[nsolvables + r->w2];
371 solv->watches[nsolvables + r->w2] = r - solv->rules;
376 /*-------------------------------------------------------------------
378 * add watches (for a new learned rule)
379 * sets up watches for a single rule
381 * see also makewatches() above.
385 addwatches_rule(Solver *solv, Rule *r)
387 int nsolvables = solv->pool->nsolvables;
389 r->n1 = solv->watches[nsolvables + r->w1];
390 solv->watches[nsolvables + r->w1] = r - solv->rules;
392 r->n2 = solv->watches[nsolvables + r->w2];
393 solv->watches[nsolvables + r->w2] = r - solv->rules;
397 /********************************************************************/
403 /* shortcuts to check if a literal (positive or negative) assignment
404 * evaluates to 'true' or 'false'
406 #define DECISIONMAP_TRUE(p) ((p) > 0 ? (decisionmap[p] > 0) : (decisionmap[-p] < 0))
407 #define DECISIONMAP_FALSE(p) ((p) > 0 ? (decisionmap[p] < 0) : (decisionmap[-p] > 0))
408 #define DECISIONMAP_UNDEF(p) (decisionmap[(p) > 0 ? (p) : -(p)] == 0)
410 /*-------------------------------------------------------------------
414 * make decision and propagate to all rules
416 * Evaluate each term affected by the decision (linked through watches).
417 * If we find unit rules we make new decisions based on them.
419 * return : 0 = everything is OK
420 * rule = conflict found in this rule
424 propagate(Solver *solv, int level)
426 Pool *pool = solv->pool;
427 Id *rp, *next_rp; /* rule pointer, next rule pointer in linked list */
429 Id p, pkg, other_watch;
431 Id *decisionmap = solv->decisionmap;
432 Id *watches = solv->watches + pool->nsolvables; /* place ptr in middle */
434 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "----- propagate level %d -----\n", level);
436 /* foreach non-propagated decision */
437 while (solv->propagate_index < solv->decisionq.count)
440 * 'pkg' was just decided
441 * negate because our watches trigger if literal goes FALSE
443 pkg = -solv->decisionq.elements[solv->propagate_index++];
445 IF_POOLDEBUG (SOLV_DEBUG_PROPAGATE)
447 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "propagate decision %d:", -pkg);
448 solver_printruleelement(solv, SOLV_DEBUG_PROPAGATE, 0, -pkg);
451 /* foreach rule where 'pkg' is now FALSE */
452 for (rp = watches + pkg; *rp; rp = next_rp)
454 r = solv->rules + *rp;
457 /* rule is disabled, goto next */
465 IF_POOLDEBUG (SOLV_DEBUG_WATCHES)
467 POOL_DEBUG(SOLV_DEBUG_WATCHES, " watch triggered ");
468 solver_printrule(solv, SOLV_DEBUG_WATCHES, r);
472 * 'pkg' was just decided (was set to FALSE), so this rule
475 /* find the other watch */
488 * if the other watch is true we have nothing to do
490 if (DECISIONMAP_TRUE(other_watch))
494 * The other literal is FALSE or UNDEF
500 /* Not a binary clause, try to move our watch.
502 * Go over all literals and find one that is
506 * (TRUE is also ok, in that case the rule is fulfilled)
507 * As speed matters here we do not use the FOR_RULELITERALS
510 if (r->p /* we have a 'p' */
511 && r->p != other_watch /* which is not watched */
512 && !DECISIONMAP_FALSE(r->p)) /* and not FALSE */
516 else /* go find a 'd' to make 'true' */
519 we just iterate sequentially, doing it in another order just changes the order of decisions, not the decisions itself
521 for (dp = pool->whatprovidesdata + r->d; (p = *dp++) != 0;)
523 if (p != other_watch /* which is not watched */
524 && !DECISIONMAP_FALSE(p)) /* and not FALSE */
532 * if we found some p that is UNDEF or TRUE, move
535 IF_POOLDEBUG (SOLV_DEBUG_WATCHES)
538 POOL_DEBUG(SOLV_DEBUG_WATCHES, " -> move w%d to %s\n", (pkg == r->w1 ? 1 : 2), pool_solvid2str(pool, p));
540 POOL_DEBUG(SOLV_DEBUG_WATCHES, " -> move w%d to !%s\n", (pkg == r->w1 ? 1 : 2), pool_solvid2str(pool, -p));
556 watches[p] = r - solv->rules;
559 /* search failed, thus all unwatched literals are FALSE */
564 * unit clause found, set literal other_watch to TRUE
567 if (DECISIONMAP_FALSE(other_watch)) /* check if literal is FALSE */
568 return r; /* eek, a conflict! */
570 IF_POOLDEBUG (SOLV_DEBUG_PROPAGATE)
572 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, " unit ");
573 solver_printrule(solv, SOLV_DEBUG_PROPAGATE, r);
577 decisionmap[other_watch] = level; /* install! */
579 decisionmap[-other_watch] = -level; /* remove! */
581 queue_push(&solv->decisionq, other_watch);
582 queue_push(&solv->decisionq_why, r - solv->rules);
584 IF_POOLDEBUG (SOLV_DEBUG_PROPAGATE)
587 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, " -> decided to install %s\n", pool_solvid2str(pool, other_watch));
589 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, " -> decided to conflict %s\n", pool_solvid2str(pool, -other_watch));
592 } /* foreach rule involving 'pkg' */
594 } /* while we have non-decided decisions */
596 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "----- propagate end -----\n");
598 return 0; /* all is well */
602 /********************************************************************/
605 /*-------------------------------------------------------------------
608 * revert decisionq to a level
612 revert(Solver *solv, int level)
614 Pool *pool = solv->pool;
616 while (solv->decisionq.count)
618 v = solv->decisionq.elements[solv->decisionq.count - 1];
620 if (solv->decisionmap[vv] <= level && solv->decisionmap[vv] >= -level)
622 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "reverting decision %d at %d\n", v, solv->decisionmap[vv]);
623 solv->decisionmap[vv] = 0;
624 solv->decisionq.count--;
625 solv->decisionq_why.count--;
626 solv->propagate_index = solv->decisionq.count;
628 while (solv->branches.count && solv->branches.elements[solv->branches.count - 1] >= level)
629 solv->branches.count -= solv->branches.elements[solv->branches.count - 2];
630 if (solv->recommends_index > solv->decisionq.count)
631 solv->recommends_index = -1; /* rebuild recommends/suggests maps */
632 solv->decisionq_reason.count = level + 1;
635 /*-------------------------------------------------------------------
637 * watch2onhighest - put watch2 on literal with highest level
641 watch2onhighest(Solver *solv, Rule *r)
646 d = r->d < 0 ? -r->d - 1 : r->d;
648 return; /* binary rule, both watches are set */
649 dp = solv->pool->whatprovidesdata + d;
650 while ((v = *dp++) != 0)
652 l = solv->decisionmap[v < 0 ? -v : v];
664 /*-------------------------------------------------------------------
671 analyze(Solver *solv, int level, Rule *c, Rule **lrp)
673 Pool *pool = solv->pool;
678 Map seen; /* global? */
679 Id p = 0, pp, v, vv, why;
681 int num = 0, l1num = 0;
682 int learnt_why = solv->learnt_pool.count;
683 Id *decisionmap = solv->decisionmap;
685 queue_init_buffer(&q, q_buf, sizeof(q_buf)/sizeof(*q_buf));
687 POOL_DEBUG(SOLV_DEBUG_ANALYZE, "ANALYZE at %d ----------------------\n", level);
688 map_init(&seen, pool->nsolvables);
689 idx = solv->decisionq.count;
692 IF_POOLDEBUG (SOLV_DEBUG_ANALYZE)
693 solver_printruleclass(solv, SOLV_DEBUG_ANALYZE, c);
694 queue_push(&solv->learnt_pool, c - solv->rules);
695 FOR_RULELITERALS(v, pp, c)
697 if (DECISIONMAP_TRUE(v)) /* the one true literal */
700 if (MAPTST(&seen, vv))
702 MAPSET(&seen, vv); /* mark that we also need to look at this literal */
703 l = solv->decisionmap[vv];
707 l1num++; /* need to do this one in level1 pass */
709 num++; /* need to do this one as well */
712 queue_push(&q, v); /* not level1 or conflict level, add to new rule */
718 if (!num && !--l1num)
719 break; /* all literals done */
721 /* find the next literal to investigate */
722 /* (as num + l1num > 0, we know that we'll always find one) */
726 v = solv->decisionq.elements[--idx];
728 if (MAPTST(&seen, vv))
733 if (num && --num == 0)
735 /* done with normal literals, now start level 1 literal processing */
736 p = -v; /* so that v doesn't get lost */
739 POOL_DEBUG(SOLV_DEBUG_ANALYZE, "got %d involved level 1 decisions\n", l1num);
740 /* clear non-l1 bits from seen map */
741 for (i = 0; i < q.count; i++)
744 MAPCLR(&seen, v > 0 ? v : -v);
746 /* only level 1 marks left in seen map */
747 l1num++; /* as l1retry decrements it */
751 why = solv->decisionq_why.elements[idx];
752 if (why <= 0) /* just in case, maybe for SYSTEMSOLVABLE */
754 c = solv->rules + why;
758 assert(rlevel > 0 && rlevel < level);
759 IF_POOLDEBUG (SOLV_DEBUG_ANALYZE)
761 POOL_DEBUG(SOLV_DEBUG_ANALYZE, "learned rule for level %d (am %d)\n", rlevel, level);
762 solver_printruleelement(solv, SOLV_DEBUG_ANALYZE, 0, p);
763 for (i = 0; i < q.count; i++)
764 solver_printruleelement(solv, SOLV_DEBUG_ANALYZE, 0, q.elements[i]);
766 /* push end marker on learnt reasons stack */
767 queue_push(&solv->learnt_pool, 0);
768 solv->stats_learned++;
770 POOL_DEBUG(SOLV_DEBUG_ANALYZE, "reverting decisions (level %d -> %d)\n", level, rlevel);
775 Id d = q.count ? q.elements[0] : 0;
777 r = solver_addrule(solv, p, d, 0);
781 Id d = pool_queuetowhatprovides(pool, &q);
783 r = solver_addrule(solv, p, 0, d);
785 assert(solv->learnt_why.count == (r - solv->rules) - solv->learntrules);
786 queue_push(&solv->learnt_why, learnt_why);
790 watch2onhighest(solv, r);
791 addwatches_rule(solv, r);
795 /* rule is an assertion */
796 queue_push(&solv->ruleassertions, r - solv->rules);
803 /*-------------------------------------------------------------------
807 * reset all solver decisions
808 * called after rules have been enabled/disabled
812 solver_reset(Solver *solv)
817 /* rewind all decisions */
818 for (i = solv->decisionq.count - 1; i >= 0; i--)
820 v = solv->decisionq.elements[i];
821 solv->decisionmap[v > 0 ? v : -v] = 0;
823 queue_empty(&solv->decisionq_why);
824 queue_empty(&solv->decisionq);
825 queue_empty(&solv->decisionq_reason);
826 solv->recommends_index = -1;
827 solv->propagate_index = 0;
828 queue_empty(&solv->branches);
830 /* adapt learnt rule status to new set of enabled/disabled rules */
831 enabledisablelearntrules(solv);
835 queue_contains(Queue *q, Id id)
838 for (i = 0; i < q->count; i++)
839 if (q->elements[i] == id)
845 disable_recommendsrules(Solver *solv, Queue *weakq)
847 Pool *pool = solv->pool;
849 for (i = 0; i < weakq->count; i++)
851 rid = weakq->elements[i];
852 if ((rid >= solv->recommendsrules && rid < solv->recommendsrules_end) || queue_contains(solv->recommendsruleq, rid))
854 Rule *r = solv->rules + rid;
857 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "disabling ");
858 solver_printruleclass(solv, SOLV_DEBUG_UNSOLVABLE, r);
859 solver_disablerule(solv, r);
865 /*-------------------------------------------------------------------
867 * analyze_unsolvable_rule
869 * recursion helper used by analyze_unsolvable
873 analyze_unsolvable_rule(Solver *solv, Rule *r, Queue *weakq, Map *rseen)
875 Pool *pool = solv->pool;
877 Id why = r - solv->rules;
879 IF_POOLDEBUG (SOLV_DEBUG_UNSOLVABLE)
880 solver_printruleclass(solv, SOLV_DEBUG_UNSOLVABLE, r);
881 if (solv->learntrules && why >= solv->learntrules)
883 if (MAPTST(rseen, why - solv->learntrules))
885 MAPSET(rseen, why - solv->learntrules);
886 for (i = solv->learnt_why.elements[why - solv->learntrules]; solv->learnt_pool.elements[i]; i++)
887 if (solv->learnt_pool.elements[i] > 0)
888 analyze_unsolvable_rule(solv, solv->rules + solv->learnt_pool.elements[i], weakq, rseen);
891 if (solv->weakrulemap.size && MAPTST(&solv->weakrulemap, why) && weakq)
892 queue_push(weakq, why);
893 /* add non-pkg rules to problem and disable */
894 if (why >= solv->pkgrules_end)
895 solver_recordproblem(solv, why);
898 /* fix a problem by disabling one or more weak rules */
900 disable_weakrules(Solver *solv, Queue *weakq)
902 Pool *pool = solv->pool;
905 for (i = 0; i < weakq->count; i++)
906 if (weakq->elements[i] > lastweak)
907 lastweak = weakq->elements[i];
908 if (lastweak >= solv->recommendsrules && lastweak < solv->recommendsrules_end)
911 for (i = 0; i < weakq->count; i++)
912 if (weakq->elements[i] < solv->recommendsrules && weakq->elements[i] > lastweak)
913 lastweak = weakq->elements[i];
914 if (lastweak < solv->pkgrules_end)
916 disable_recommendsrules(solv, weakq);
920 if (lastweak < solv->pkgrules_end && solv->strongrecommends && solv->recommendsruleq && queue_contains(solv->recommendsruleq, lastweak))
922 disable_recommendsrules(solv, weakq);
925 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "disabling ");
926 solver_printruleclass(solv, SOLV_DEBUG_UNSOLVABLE, solv->rules + lastweak);
927 /* choice rules need special handling */
928 if (lastweak >= solv->choicerules && lastweak < solv->choicerules_end)
929 solver_disablechoicerules(solv, solv->rules + lastweak);
931 solver_fixproblem(solv, lastweak);
934 /*-------------------------------------------------------------------
936 * analyze_unsolvable (called from setpropagatelearn)
938 * We know that the problem is not solvable. Record all involved
939 * rules (i.e. the "proof") into solv->learnt_pool.
940 * Record the learnt pool index and all non-pkg rules into
941 * solv->problems. (Our solutions to fix the problems are to
942 * disable those rules.)
944 * If the proof contains at least one weak rule, we disable the
947 * Otherwise we return -1 if disablerules is not set or disable
948 * _all_ of the problem rules and return 0.
950 * return: 0 - disabled some rules, try again
955 analyze_unsolvable(Solver *solv, Rule *cr, int disablerules)
957 Pool *pool = solv->pool;
959 Map involved; /* global to speed things up? */
964 Id *decisionmap = solv->decisionmap;
966 int oldlearntpoolcount;
967 int record_proof = 1;
969 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "ANALYZE UNSOLVABLE ----------------------\n");
970 solv->stats_unsolvable++;
971 oldproblemcount = solv->problems.count;
972 oldlearntpoolcount = solv->learnt_pool.count;
974 /* make room for proof index */
975 /* must update it later, as analyze_unsolvable_rule would confuse
976 * it with a rule index if we put the real value in already */
977 queue_push(&solv->problems, 0);
980 map_init(&involved, pool->nsolvables);
981 map_init(&rseen, solv->learntrules ? solv->nrules - solv->learntrules : 0);
984 queue_push(&solv->learnt_pool, r - solv->rules);
985 analyze_unsolvable_rule(solv, r, &weakq, &rseen);
986 FOR_RULELITERALS(v, pp, r)
988 if (DECISIONMAP_TRUE(v)) /* the one true literal */
991 MAPSET(&involved, vv);
993 idx = solv->decisionq.count;
996 v = solv->decisionq.elements[--idx];
998 if (!MAPTST(&involved, vv) || vv == SYSTEMSOLVABLE)
1000 why = solv->decisionq_why.elements[idx];
1003 queue_push(&solv->learnt_pool, why);
1004 r = solv->rules + why;
1005 analyze_unsolvable_rule(solv, r, &weakq, &rseen);
1006 FOR_RULELITERALS(v, pp, r)
1008 if (DECISIONMAP_TRUE(v)) /* the one true literal */
1010 vv = v > 0 ? v : -v;
1011 MAPSET(&involved, vv);
1014 map_free(&involved);
1016 queue_push(&solv->problems, 0); /* mark end of this problem */
1020 /* revert problems */
1021 solv->problems.count = oldproblemcount;
1022 solv->learnt_pool.count = oldlearntpoolcount;
1023 /* disable some weak rules */
1024 disable_weakrules(solv, &weakq);
1031 if (solv->allowuninstall || solv->allowuninstall_all || solv->allowuninstallmap.size)
1032 if (solver_autouninstall(solv, oldproblemcount) != 0)
1034 solv->problems.count = oldproblemcount;
1035 solv->learnt_pool.count = oldlearntpoolcount;
1043 queue_push(&solv->learnt_pool, 0);
1044 solv->problems.elements[oldproblemcount] = oldlearntpoolcount;
1047 /* + 2: index + trailing zero */
1048 if (disablerules && oldproblemcount + 2 < solv->problems.count)
1050 solver_disableproblemset(solv, oldproblemcount);
1051 /* XXX: might want to enable all weak rules again */
1055 POOL_DEBUG(SOLV_DEBUG_UNSOLVABLE, "UNSOLVABLE\n");
1060 /*-------------------------------------------------------------------
1064 * add free decision (solvable to install) to decisionq
1065 * increase level and propagate decision
1066 * return if no conflict.
1068 * in conflict case, analyze conflict rule, add resulting
1069 * rule to learnt rule set, make decision from learnt
1070 * rule (always unit) and re-propagate.
1072 * returns the new solver level or -1 if unsolvable
1077 setpropagatelearn(Solver *solv, int level, Id decision, int disablerules, Id ruleid, Id reason)
1079 Pool *pool = solv->pool;
1086 solv->decisionmap[decision] = level;
1088 solv->decisionmap[-decision] = -level;
1089 queue_push(&solv->decisionq, decision);
1090 queue_push(&solv->decisionq_why, -ruleid); /* <= 0 -> free decision */
1091 queue_push(&solv->decisionq_reason, reason);
1093 assert(ruleid >= 0 && level > 0);
1096 r = propagate(solv, level);
1100 return analyze_unsolvable(solv, r, disablerules);
1101 POOL_DEBUG(SOLV_DEBUG_ANALYZE, "conflict with rule #%d\n", (int)(r - solv->rules));
1102 level = analyze(solv, level, r, &lr);
1103 /* the new rule is unit by design */
1105 solv->decisionmap[decision > 0 ? decision : -decision] = decision > 0 ? level : -level;
1106 queue_push(&solv->decisionq, decision);
1107 queue_push(&solv->decisionq_why, lr - solv->rules);
1108 IF_POOLDEBUG (SOLV_DEBUG_ANALYZE)
1110 POOL_DEBUG(SOLV_DEBUG_ANALYZE, "decision: ");
1111 solver_printruleelement(solv, SOLV_DEBUG_ANALYZE, 0, decision);
1112 POOL_DEBUG(SOLV_DEBUG_ANALYZE, "new rule: ");
1113 solver_printrule(solv, SOLV_DEBUG_ANALYZE, lr);
1120 reorder_dq_for_future_installed(Solver *solv, int level, Queue *dq)
1122 Pool *pool = solv->pool;
1123 int i, j, haveone = 0, dqcount = dq->count;
1124 int decisionqcount = solv->decisionq.count;
1128 /* at the time we process jobrules the installed packages are not kept yet */
1129 /* reorder so that "future-supplemented" packages come first */
1130 FOR_REPO_SOLVABLES(solv->installed, p, s)
1132 if (MAPTST(&solv->noupdate, p - solv->installed->start))
1134 if (solv->decisionmap[p] == 0)
1136 if (s->recommends || s->suggests)
1137 queue_push(&solv->decisionq, p);
1138 solv->decisionmap[p] = level + 1;
1144 policy_update_recommendsmap(solv);
1145 for (i = 0; i < dqcount; i++)
1147 p = dq->elements[i];
1148 if (!(pool->solvables[p].repo == solv->installed || MAPTST(&solv->suggestsmap, p) || solver_is_enhancing(solv, pool->solvables + p)))
1151 dq->elements[i] = 0;
1154 dqcount = dq->count;
1155 for (i = 0; i < dqcount; i++)
1157 p = dq->elements[i];
1158 if (p && !(pool->solvables[p].repo == solv->installed || MAPTST(&solv->recommendsmap, p) || solver_is_supplementing(solv, pool->solvables + p)))
1161 dq->elements[i] = 0;
1164 for (i = j = 0; i < dq->count; i++)
1165 if (dq->elements[i])
1166 dq->elements[j++] = dq->elements[i];
1167 queue_truncate(dq, j);
1168 FOR_REPO_SOLVABLES(solv->installed, p, s)
1169 if (solv->decisionmap[p] == level + 1)
1170 solv->decisionmap[p] = 0;
1171 if (solv->decisionq.count != decisionqcount)
1173 solv->recommends_index = -1;
1174 queue_truncate(&solv->decisionq, decisionqcount);
1176 /* but obey favored maps */
1177 policy_prefer_favored(solv, dq);
1180 /*-------------------------------------------------------------------
1185 * [ -p1 p2 p3 .. pn opt_pkg opt_data size level ]
1187 * pkgs are negative if we tried them (to prevent inifinite recursion)
1188 * opt_pkg: recommends: package with the recommends
1190 * opt_data: recommends: depid
1195 createbranch(Solver *solv, int level, Queue *dq, Id p, Id data)
1197 Pool *pool = solv->pool;
1199 IF_POOLDEBUG (SOLV_DEBUG_POLICY)
1201 POOL_DEBUG (SOLV_DEBUG_POLICY, "creating a branch:\n");
1202 for (i = 0; i < dq->count; i++)
1203 POOL_DEBUG (SOLV_DEBUG_POLICY, " - %s\n", pool_solvid2str(pool, dq->elements[i]));
1205 queue_push(&solv->branches, -dq->elements[0]);
1206 for (i = 1; i < dq->count; i++)
1207 queue_push(&solv->branches, dq->elements[i]);
1208 queue_push2(&solv->branches, p, data);
1209 queue_push2(&solv->branches, dq->count + 4, level);
1213 takebranch(Solver *solv, int pos, int end, const char *msg, int disablerules)
1215 Pool *pool = solv->pool;
1221 printf("branch group level %d [%d-%d] %d %d:\n", solv->branches.elements[end - 1], start, end, solv->branches.elements[end - 4], solv->branches.elements[end - 3]);
1222 for (i = end - solv->branches.elements[end - 2]; i < end - 4; i++)
1223 printf("%c %c%s\n", i == pos ? 'x' : ' ', solv->branches.elements[i] >= 0 ? ' ' : '-', pool_solvid2str(pool, solv->branches.elements[i] >= 0 ? solv->branches.elements[i] : -solv->branches.elements[i]));
1226 level = solv->branches.elements[end - 1];
1227 p = solv->branches.elements[pos];
1228 solv->branches.elements[pos] = -p;
1229 POOL_DEBUG(SOLV_DEBUG_SOLVER, "%s %d -> %d with %s\n", msg, solv->decisionmap[p], level, pool_solvid2str(pool, p));
1230 /* hack: set level to zero so that revert does not remove the branch */
1231 solv->branches.elements[end - 1] = 0;
1232 revert(solv, level);
1233 solv->branches.elements[end - 1] = level;
1234 /* hack: revert simply sets the count, so we can still access the reverted elements */
1235 why = -solv->decisionq_why.elements[solv->decisionq_why.count];
1237 reason = solv->decisionq_reason.elements[level + 1];
1238 return setpropagatelearn(solv, level, p, disablerules, why, reason);
1241 /*-------------------------------------------------------------------
1243 * select and install
1245 * install best package from the queue. We add an extra package, inst, if
1246 * provided. See comment in weak install section.
1248 * returns the new solver level or -1 if unsolvable
1253 selectandinstall(Solver *solv, int level, Queue *dq, int disablerules, Id ruleid, Id reason)
1255 Pool *pool = solv->pool;
1259 policy_filter_unwanted(solv, dq, POLICY_MODE_CHOOSE);
1260 /* if we're resolving rules and didn't resolve the installed packages yet,
1261 * do some special supplements ordering */
1262 if (dq->count > 1 && solv->do_extra_reordering)
1263 reorder_dq_for_future_installed(solv, level, dq);
1264 /* if we have multiple candidates we open a branch */
1266 createbranch(solv, level, dq, 0, ruleid);
1267 p = dq->elements[0];
1268 POOL_DEBUG(SOLV_DEBUG_POLICY, "installing %s\n", pool_solvid2str(pool, p));
1269 return setpropagatelearn(solv, level, p, disablerules, ruleid, reason);
1273 /********************************************************************/
1274 /* Main solver interface */
1277 /*-------------------------------------------------------------------
1280 * create solver structure
1282 * pool: all available solvables
1283 * installed: installed Solvables
1286 * Upon solving, rules are created to flag the Solvables
1287 * of the 'installed' Repo as installed.
1291 solver_create(Pool *pool)
1294 solv = (Solver *)solv_calloc(1, sizeof(Solver));
1296 solv->installed = pool->installed;
1298 solv->allownamechange = 1;
1300 solv->dup_allowdowngrade = 1;
1301 solv->dup_allownamechange = 1;
1302 solv->dup_allowarchchange = 1;
1303 solv->dup_allowvendorchange = 1;
1305 solv->keepexplicitobsoletes = pool->noobsoletesmultiversion ? 0 : 1;
1307 queue_init(&solv->ruletojob);
1308 queue_init(&solv->decisionq);
1309 queue_init(&solv->decisionq_why);
1310 queue_init(&solv->decisionq_reason);
1311 queue_init(&solv->problems);
1312 queue_init(&solv->orphaned);
1313 queue_init(&solv->learnt_why);
1314 queue_init(&solv->learnt_pool);
1315 queue_init(&solv->branches);
1316 queue_init(&solv->weakruleq);
1317 queue_init(&solv->ruleassertions);
1318 queue_init(&solv->addedmap_deduceq);
1320 queue_push(&solv->learnt_pool, 0); /* so that 0 does not describe a proof */
1322 map_init(&solv->recommendsmap, pool->nsolvables);
1323 map_init(&solv->suggestsmap, pool->nsolvables);
1324 map_init(&solv->noupdate, solv->installed ? solv->installed->end - solv->installed->start : 0);
1325 solv->recommends_index = 0;
1327 solv->decisionmap = (Id *)solv_calloc(pool->nsolvables, sizeof(Id));
1329 solv->rules = solv_extend_resize(solv->rules, solv->nrules, sizeof(Rule), RULES_BLOCK);
1330 memset(solv->rules, 0, sizeof(Rule));
1337 /*-------------------------------------------------------------------
1343 queuep_free(Queue **qp)
1348 *qp = solv_free(*qp);
1352 map_zerosize(Map *m)
1362 solver_free(Solver *solv)
1364 queue_free(&solv->job);
1365 queue_free(&solv->ruletojob);
1366 queue_free(&solv->decisionq);
1367 queue_free(&solv->decisionq_why);
1368 queue_free(&solv->decisionq_reason);
1369 queue_free(&solv->learnt_why);
1370 queue_free(&solv->learnt_pool);
1371 queue_free(&solv->problems);
1372 queue_free(&solv->solutions);
1373 queue_free(&solv->orphaned);
1374 queue_free(&solv->branches);
1375 queue_free(&solv->weakruleq);
1376 queue_free(&solv->ruleassertions);
1377 queue_free(&solv->addedmap_deduceq);
1378 queuep_free(&solv->cleandeps_updatepkgs);
1379 queuep_free(&solv->cleandeps_mistakes);
1380 queuep_free(&solv->update_targets);
1381 queuep_free(&solv->installsuppdepq);
1382 queuep_free(&solv->recommendscplxq);
1383 queuep_free(&solv->suggestscplxq);
1384 queuep_free(&solv->brokenorphanrules);
1385 queuep_free(&solv->recommendsruleq);
1387 map_free(&solv->recommendsmap);
1388 map_free(&solv->suggestsmap);
1389 map_free(&solv->noupdate);
1390 map_free(&solv->weakrulemap);
1391 map_free(&solv->multiversion);
1393 map_free(&solv->updatemap);
1394 map_free(&solv->bestupdatemap);
1395 map_free(&solv->fixmap);
1396 map_free(&solv->dupmap);
1397 map_free(&solv->dupinvolvedmap);
1398 map_free(&solv->droporphanedmap);
1399 map_free(&solv->cleandepsmap);
1400 map_free(&solv->allowuninstallmap);
1402 solv_free(solv->favormap);
1403 solv_free(solv->decisionmap);
1404 solv_free(solv->rules);
1405 solv_free(solv->watches);
1406 solv_free(solv->obsoletes);
1407 solv_free(solv->obsoletes_data);
1408 solv_free(solv->specialupdaters);
1409 solv_free(solv->choicerules_info);
1410 solv_free(solv->bestrules_info);
1411 solv_free(solv->yumobsrules_info);
1412 solv_free(solv->recommendsrules_info);
1413 solv_free(solv->instbuddy);
1418 solver_get_flag(Solver *solv, int flag)
1422 case SOLVER_FLAG_ALLOW_DOWNGRADE:
1423 return solv->allowdowngrade;
1424 case SOLVER_FLAG_ALLOW_NAMECHANGE:
1425 return solv->allownamechange;
1426 case SOLVER_FLAG_ALLOW_ARCHCHANGE:
1427 return solv->allowarchchange;
1428 case SOLVER_FLAG_ALLOW_VENDORCHANGE:
1429 return solv->allowvendorchange;
1430 case SOLVER_FLAG_ALLOW_UNINSTALL:
1431 return solv->allowuninstall;
1432 case SOLVER_FLAG_NO_UPDATEPROVIDE:
1433 return solv->noupdateprovide;
1434 case SOLVER_FLAG_SPLITPROVIDES:
1435 return solv->dosplitprovides;
1436 case SOLVER_FLAG_IGNORE_RECOMMENDED:
1437 return solv->dontinstallrecommended;
1438 case SOLVER_FLAG_ADD_ALREADY_RECOMMENDED:
1439 return solv->addalreadyrecommended;
1440 case SOLVER_FLAG_NO_INFARCHCHECK:
1441 return solv->noinfarchcheck;
1442 case SOLVER_FLAG_KEEP_EXPLICIT_OBSOLETES:
1443 return solv->keepexplicitobsoletes;
1444 case SOLVER_FLAG_BEST_OBEY_POLICY:
1445 return solv->bestobeypolicy;
1446 case SOLVER_FLAG_NO_AUTOTARGET:
1447 return solv->noautotarget;
1448 case SOLVER_FLAG_DUP_ALLOW_DOWNGRADE:
1449 return solv->dup_allowdowngrade;
1450 case SOLVER_FLAG_DUP_ALLOW_NAMECHANGE:
1451 return solv->dup_allownamechange;
1452 case SOLVER_FLAG_DUP_ALLOW_ARCHCHANGE:
1453 return solv->dup_allowarchchange;
1454 case SOLVER_FLAG_DUP_ALLOW_VENDORCHANGE:
1455 return solv->dup_allowvendorchange;
1456 case SOLVER_FLAG_KEEP_ORPHANS:
1457 return solv->keep_orphans;
1458 case SOLVER_FLAG_BREAK_ORPHANS:
1459 return solv->break_orphans;
1460 case SOLVER_FLAG_FOCUS_INSTALLED:
1461 return solv->focus_installed;
1462 case SOLVER_FLAG_FOCUS_BEST:
1463 return solv->focus_best;
1464 case SOLVER_FLAG_YUM_OBSOLETES:
1465 return solv->do_yum_obsoletes;
1466 case SOLVER_FLAG_NEED_UPDATEPROVIDE:
1467 return solv->needupdateprovide;
1468 case SOLVER_FLAG_URPM_REORDER:
1469 return solv->urpmreorder;
1470 case SOLVER_FLAG_STRONG_RECOMMENDS:
1471 return solv->strongrecommends;
1472 case SOLVER_FLAG_INSTALL_ALSO_UPDATES:
1473 return solv->install_also_updates;
1474 case SOLVER_FLAG_ONLY_NAMESPACE_RECOMMENDED:
1475 return solv->only_namespace_recommended;
1483 solver_set_flag(Solver *solv, int flag, int value)
1485 int old = solver_get_flag(solv, flag);
1488 case SOLVER_FLAG_ALLOW_DOWNGRADE:
1489 solv->allowdowngrade = value;
1491 case SOLVER_FLAG_ALLOW_NAMECHANGE:
1492 solv->allownamechange = value;
1494 case SOLVER_FLAG_ALLOW_ARCHCHANGE:
1495 solv->allowarchchange = value;
1497 case SOLVER_FLAG_ALLOW_VENDORCHANGE:
1498 solv->allowvendorchange = value;
1500 case SOLVER_FLAG_ALLOW_UNINSTALL:
1501 solv->allowuninstall = value;
1503 case SOLVER_FLAG_NO_UPDATEPROVIDE:
1504 solv->noupdateprovide = value;
1506 case SOLVER_FLAG_SPLITPROVIDES:
1507 solv->dosplitprovides = value;
1509 case SOLVER_FLAG_IGNORE_RECOMMENDED:
1510 solv->dontinstallrecommended = value;
1512 case SOLVER_FLAG_ADD_ALREADY_RECOMMENDED:
1513 solv->addalreadyrecommended = value;
1515 case SOLVER_FLAG_NO_INFARCHCHECK:
1516 solv->noinfarchcheck = value;
1518 case SOLVER_FLAG_KEEP_EXPLICIT_OBSOLETES:
1519 solv->keepexplicitobsoletes = value;
1521 case SOLVER_FLAG_BEST_OBEY_POLICY:
1522 solv->bestobeypolicy = value;
1524 case SOLVER_FLAG_NO_AUTOTARGET:
1525 solv->noautotarget = value;
1527 case SOLVER_FLAG_DUP_ALLOW_DOWNGRADE:
1528 solv->dup_allowdowngrade = value;
1530 case SOLVER_FLAG_DUP_ALLOW_NAMECHANGE:
1531 solv->dup_allownamechange = value;
1533 case SOLVER_FLAG_DUP_ALLOW_ARCHCHANGE:
1534 solv->dup_allowarchchange = value;
1536 case SOLVER_FLAG_DUP_ALLOW_VENDORCHANGE:
1537 solv->dup_allowvendorchange = value;
1539 case SOLVER_FLAG_KEEP_ORPHANS:
1540 solv->keep_orphans = value;
1542 case SOLVER_FLAG_BREAK_ORPHANS:
1543 solv->break_orphans = value;
1545 case SOLVER_FLAG_FOCUS_INSTALLED:
1546 solv->focus_installed = value;
1548 case SOLVER_FLAG_FOCUS_BEST:
1549 solv->focus_best = value;
1551 case SOLVER_FLAG_YUM_OBSOLETES:
1552 solv->do_yum_obsoletes = value;
1554 case SOLVER_FLAG_NEED_UPDATEPROVIDE:
1555 solv->needupdateprovide = value;
1557 case SOLVER_FLAG_URPM_REORDER:
1558 solv->urpmreorder = value;
1560 case SOLVER_FLAG_STRONG_RECOMMENDS:
1561 solv->strongrecommends = value;
1563 case SOLVER_FLAG_INSTALL_ALSO_UPDATES:
1564 solv->install_also_updates = value;
1566 case SOLVER_FLAG_ONLY_NAMESPACE_RECOMMENDED:
1567 solv->only_namespace_recommended = value;
1576 resolve_jobrules(Solver *solv, int level, int disablerules, Queue *dq)
1578 Pool *pool = solv->pool;
1579 int oldlevel = level;
1583 POOL_DEBUG(SOLV_DEBUG_SOLVER, "resolving job rules\n");
1584 for (i = solv->jobrules, r = solv->rules + i; i < solv->jobrules_end; i++, r++)
1587 if (r->d < 0) /* ignore disabled rules */
1590 FOR_RULELITERALS(l, pp, r)
1594 if (solv->decisionmap[-l] <= 0)
1599 if (solv->decisionmap[l] > 0)
1601 if (solv->decisionmap[l] == 0)
1605 if (l || !dq->count)
1607 /* prune to installed if not updating */
1608 if (dq->count > 1 && solv->installed && !solv->updatemap_all &&
1609 !solv->install_also_updates &&
1610 !(solv->job.elements[solv->ruletojob.elements[i - solv->jobrules]] & SOLVER_ORUPDATE))
1612 int j = dq->count, k;
1613 if (solv->updatemap.size)
1615 /* do not prune if an installed package wants to be updated */
1616 for (j = 0; j < dq->count; j++)
1617 if (pool->solvables[dq->elements[j]].repo == solv->installed
1618 && MAPTST(&solv->updatemap, dq->elements[j] - solv->installed->start))
1623 for (j = k = 0; j < dq->count; j++)
1624 if (pool->solvables[dq->elements[j]].repo == solv->installed)
1625 dq->elements[k++] = dq->elements[j];
1631 level = selectandinstall(solv, level, dq, disablerules, i, SOLVER_REASON_RESOLVE_JOB);
1632 if (level <= olevel)
1634 if (level == olevel)
1638 continue; /* try something else */
1640 if (level < oldlevel)
1642 /* redo from start of jobrules */
1643 i = solv->jobrules - 1;
1644 r = solv->rules + i;
1651 prune_to_update_targets(Solver *solv, Id *cp, Queue *q)
1655 for (i = j = 0; i < q->count; i++)
1658 for (cp2 = cp; *cp2; cp2++)
1661 q->elements[j++] = p;
1665 queue_truncate(q, j);
1669 resolve_installed(Solver *solv, int level, int disablerules, Queue *dq)
1671 Pool *pool = solv->pool;
1672 Repo *installed = solv->installed;
1674 int installedpos = solv->installedpos;
1677 int olevel, origlevel = level;
1679 POOL_DEBUG(SOLV_DEBUG_SOLVER, "resolving installed packages\n");
1681 installedpos = installed->start;
1682 /* we use two passes if we need to update packages
1683 * to create a better user experience */
1684 for (pass = solv->updatemap.size ? 0 : 1; pass < 2; )
1686 int passlevel = level;
1687 Id *specialupdaters = solv->specialupdaters;
1688 /* start with installedpos, the position that gave us problems the last time */
1689 for (i = installedpos, n = installed->start; n < installed->end; i++, n++)
1694 if (i == installed->end)
1695 i = installed->start;
1696 s = pool->solvables + i;
1697 if (s->repo != installed)
1700 if (solv->decisionmap[i] > 0 && (!specialupdaters || !specialupdaters[i - installed->start]))
1701 continue; /* already decided */
1702 if (!pass && solv->updatemap.size && !MAPTST(&solv->updatemap, i - installed->start))
1703 continue; /* updates first */
1704 r = solv->rules + solv->updaterules + (i - installed->start);
1706 if (!rr->p || rr->d < 0) /* disabled -> look at feature rule */
1707 rr -= solv->installed->end - solv->installed->start;
1708 if (!rr->p) /* identical to update rule? */
1711 continue; /* orpaned package or pseudo package */
1713 /* check if we should update this package to the latest version
1714 * noupdate is set for erase jobs, in that case we want to deinstall
1715 * the installed package and not replace it with a newer version
1716 * rr->p != i is for dup jobs where the installed package cannot be kept */
1719 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)))
1721 if (specialupdaters && (d = specialupdaters[i - installed->start]) != 0)
1723 /* special multiversion handling, make sure best version is chosen */
1724 if (rr->p == i && solv->decisionmap[i] >= 0)
1726 while ((p = pool->whatprovidesdata[d++]) != 0)
1727 if (solv->decisionmap[p] >= 0)
1729 if (dq->count && solv->update_targets && solv->update_targets->elements[i - installed->start])
1730 prune_to_update_targets(solv, solv->update_targets->elements + solv->update_targets->elements[i - installed->start], dq);
1733 policy_filter_unwanted(solv, dq, POLICY_MODE_CHOOSE);
1734 p = dq->elements[0];
1735 if (p != i && solv->decisionmap[p] == 0)
1737 rr = solv->rules + solv->featurerules + (i - solv->installed->start);
1738 if (!rr->p) /* update rule == feature rule? */
1739 rr = rr - solv->featurerules + solv->updaterules;
1748 /* update to best package of the update rule */
1749 FOR_RULELITERALS(p, pp, rr)
1751 if (solv->decisionmap[p] > 0)
1753 dq->count = 0; /* already fulfilled */
1756 if (!solv->decisionmap[p])
1761 if (dq->count && solv->update_targets && solv->update_targets->elements[i - installed->start])
1762 prune_to_update_targets(solv, solv->update_targets->elements + solv->update_targets->elements[i - installed->start], dq);
1763 /* install best version */
1767 level = selectandinstall(solv, level, dq, disablerules, rr - solv->rules, SOLVER_REASON_UPDATE_INSTALLED);
1768 if (level <= olevel)
1770 if (level < passlevel)
1771 break; /* trouble */
1773 n = installed->start; /* redo all */
1779 /* if still undecided keep package */
1780 if (solv->decisionmap[i] == 0)
1783 if (solv->cleandepsmap.size && MAPTST(&solv->cleandepsmap, i - installed->start))
1786 POOL_DEBUG(SOLV_DEBUG_POLICY, "cleandeps erasing %s\n", pool_solvid2str(pool, i));
1787 level = setpropagatelearn(solv, level, -i, disablerules, 0, SOLVER_REASON_CLEANDEPS_ERASE);
1794 POOL_DEBUG(SOLV_DEBUG_POLICY, "keeping %s\n", pool_solvid2str(pool, i));
1795 level = setpropagatelearn(solv, level, i, disablerules, r - solv->rules, SOLVER_REASON_KEEP_INSTALLED);
1797 if (level <= olevel)
1799 if (level < passlevel)
1800 break; /* trouble */
1802 n = installed->start; /* redo all */
1805 continue; /* retry with learnt rule */
1809 if (n < installed->end)
1811 installedpos = i; /* retry problem solvable next time */
1812 if (level < origlevel)
1813 break; /* ran into trouble */
1814 /* re-run all passes */
1815 pass = solv->updatemap.size ? 0 : 1;
1818 /* reset installedpos, advance to next pass */
1819 installedpos = installed->start;
1822 solv->installedpos = installedpos;
1826 /* one or more installed cleandeps packages in dq that are to be updated */
1827 /* we need to emulate the code in resolve_installed */
1829 do_cleandeps_update_filter(Solver *solv, Queue *dq)
1831 Pool *pool = solv->pool;
1832 Repo *installed = solv->installed;
1833 Id *specialupdaters = solv->specialupdaters;
1839 for (i = 0; i < dq->count; i++)
1841 Id p = dq->elements[i];
1844 if (pool->solvables[p].repo != installed || !MAPTST(&solv->cleandepsmap, p - installed->start))
1848 if (specialupdaters && (d = specialupdaters[p - installed->start]) != 0)
1850 while ((p2 = pool->whatprovidesdata[d++]) != 0)
1851 if (solv->decisionmap[p2] >= 0)
1856 Rule *r = solv->rules + solv->updaterules + (p - installed->start);
1859 FOR_RULELITERALS(p2, pp, r)
1860 if (solv->decisionmap[p2] >= 0)
1864 if (q.count && solv->update_targets && solv->update_targets->elements[p - installed->start])
1865 prune_to_update_targets(solv, solv->update_targets->elements + solv->update_targets->elements[p - installed->start], &q);
1866 /* mark all elements in dq that are in the updaters list */
1867 dq->elements[i] = -p;
1868 for (j = 0; j < dq->count; j++)
1870 p = dq->elements[j];
1873 for (k = 0; k < q.count; k++)
1874 if (q.elements[k] == p)
1876 dq->elements[j] = -p;
1881 /* now prune to marked elements */
1882 for (i = j = 0; i < dq->count; i++)
1883 if ((p = dq->elements[i]) < 0)
1884 dq->elements[j++] = -p;
1890 resolve_dependencies(Solver *solv, int level, int disablerules, Queue *dq)
1892 Pool *pool = solv->pool;
1896 int origlevel = level;
1902 POOL_DEBUG(SOLV_DEBUG_POLICY, "deciding unresolved rules\n");
1904 for (i = 1, n = 1; ; i++, n++)
1906 if (n >= solv->nrules)
1914 if (i == solv->nrules)
1916 if (solv->focus_best && solv->do_extra_reordering && i >= solv->featurerules)
1918 r = solv->rules + i;
1919 if (r->d < 0) /* ignore disabled rules */
1921 if (r->p < 0) /* most common cases first */
1923 if (r->d == 0 || solv->decisionmap[-r->p] <= 0)
1930 /* binary or unary rule */
1931 /* need two positive undecided literals, r->p already checked above */
1934 if (solv->decisionmap[r->p] || solv->decisionmap[r->w2])
1936 queue_push(dq, r->p);
1937 queue_push(dq, r->w2);
1942 * all negative literals are installed
1943 * no positive literal is installed
1944 * i.e. the rule is not fulfilled and we
1945 * just need to decide on the positive literals
1946 * (decisionmap[-r->p] for the r->p < 0 case is already checked above)
1950 if (solv->decisionmap[r->p] > 0)
1952 if (solv->decisionmap[r->p] == 0)
1953 queue_push(dq, r->p);
1955 dp = pool->whatprovidesdata + r->d;
1956 while ((p = *dp++) != 0)
1960 if (solv->decisionmap[-p] <= 0)
1965 if (solv->decisionmap[p] > 0)
1967 if (solv->decisionmap[p] == 0)
1974 IF_POOLDEBUG (SOLV_DEBUG_PROPAGATE)
1976 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "unfulfilled ");
1977 solver_printruleclass(solv, SOLV_DEBUG_PROPAGATE, r);
1979 /* dq->count < 2 cannot happen as this means that
1980 * the rule is unit */
1981 assert(dq->count > 1);
1983 /* prune to cleandeps packages */
1984 if (solv->cleandepsmap.size && solv->installed)
1986 int cleandeps_update = 0;
1987 Repo *installed = solv->installed;
1988 for (j = 0; j < dq->count; j++)
1989 if (pool->solvables[dq->elements[j]].repo == installed && MAPTST(&solv->cleandepsmap, dq->elements[j] - installed->start))
1991 if (solv->updatemap_all || (solv->updatemap.size && MAPTST(&solv->updatemap, dq->elements[j] - installed->start)))
1993 cleandeps_update = 1; /* cleandeps package is marked for update */
2000 dq->elements[0] = dq->elements[j];
2001 queue_truncate(dq, 1);
2003 else if (cleandeps_update)
2004 do_cleandeps_update_filter(solv, dq); /* special update filter */
2007 if (dq->count > 1 && postponed >= 0)
2009 policy_filter_unwanted(solv, dq, POLICY_MODE_CHOOSE_NOREORDER);
2018 level = selectandinstall(solv, level, dq, disablerules, r - solv->rules, SOLVER_REASON_RESOLVE);
2019 if (level < origlevel)
2020 break; /* trouble */
2021 /* something changed, so look at all rules again */
2028 #ifdef ENABLE_COMPLEX_DEPS
2031 add_complex_recommends(Solver *solv, Id rec, Queue *dq, Map *dqmap)
2033 Pool *pool = solv->pool;
2034 int oldcnt = dq->count;
2040 printf("ADD_COMPLEX_RECOMMENDS %s\n", pool_dep2str(pool, rec));
2042 i = pool_normalize_complex_dep(pool, rec, dq, CPLXDEPS_EXPAND);
2043 if (i == 0 || i == 1)
2046 for (i = oldcnt; i < cutcnt; i++)
2049 for (; (p = dq->elements[i]) != 0; i++)
2053 if (solv->decisionmap[-p] <= 0)
2057 if (solv->decisionmap[p] > 0)
2059 queue_truncate(dq, blkcnt);
2064 if (!MAPTST(dqmap, p))
2069 if (solv->decisionmap[p] < 0)
2071 if (solv->process_orphans && solv->installed && pool->solvables[p].repo == solv->installed && (solv->droporphanedmap_all || (solv->droporphanedmap.size && MAPTST(&solv->droporphanedmap, p - solv->installed->start))))
2076 while (dq->elements[i])
2079 queue_deleten(dq, oldcnt, cutcnt - oldcnt);
2081 if (dq->count != oldcnt)
2083 for (j = oldcnt; j < dq->count; j++)
2085 p = dq->elements[j];
2086 for (i = 0; i < j; i++)
2087 if (dq->elements[i] == p)
2089 dq->elements[j] = 0;
2093 for (i = j = oldcnt; j < dq->count; j++)
2094 if (dq->elements[j])
2095 dq->elements[i++] = dq->elements[j];
2096 queue_truncate(dq, i);
2099 printf("RETURN:\n");
2100 for (i = oldcnt; i < dq->count; i++)
2101 printf(" - %s\n", pool_solvid2str(pool, dq->elements[i]));
2106 do_complex_recommendations(Solver *solv, Id rec, Map *m, int noselected)
2108 Pool *pool = solv->pool;
2114 printf("DO_COMPLEX_RECOMMENDATIONS %s\n", pool_dep2str(pool, rec));
2117 i = pool_normalize_complex_dep(pool, rec, &dq, CPLXDEPS_EXPAND);
2118 if (i == 0 || i == 1)
2123 for (i = 0; i < dq.count; i++)
2126 for (; (p = dq.elements[i]) != 0; i++)
2130 if (solv->decisionmap[-p] <= 0)
2134 if (solv->decisionmap[p] > 0)
2139 for (i++; (p = dq.elements[i]) != 0; i++)
2140 if (p > 0 && solv->decisionmap[p] > 0)
2148 for (i = blk; (p = dq.elements[i]) != 0; i++)
2152 while (dq.elements[i])
2161 prune_disfavored(Solver *solv, Queue *plist)
2164 for (i = j = 0; i < plist->count; i++)
2166 Id p = plist->elements[i];
2167 if (solv->favormap[p] >= 0)
2168 plist->elements[j++] = p;
2171 queue_truncate(plist, j);
2175 resolve_weak(Solver *solv, int level, int disablerules, Queue *dq, Queue *dqs, int *rerunp)
2177 Pool *pool = solv->pool;
2185 POOL_DEBUG(SOLV_DEBUG_POLICY, "installing recommended packages\n");
2187 queue_empty(dq); /* recommended packages */
2189 queue_empty(dqs); /* supplemented packages */
2190 for (i = 1; i < pool->nsolvables; i++)
2192 if (solv->decisionmap[i] < 0)
2194 s = pool->solvables + i;
2195 if (solv->decisionmap[i] > 0)
2197 /* installed, check for recommends */
2198 Id *recp, rec, pp, p;
2199 if (!solv->addalreadyrecommended && s->repo == solv->installed)
2203 recp = s->repo->idarraydata + s->recommends;
2204 while ((rec = *recp++) != 0)
2206 /* cheat: we just look if there is REL_NAMESPACE in the dep */
2207 if (solv->only_namespace_recommended && !solver_is_namespace_dep(solv, rec))
2209 #ifdef ENABLE_COMPLEX_DEPS
2210 if (pool_is_complex_dep(pool, rec))
2212 add_complex_recommends(solv, rec, dq, 0);
2217 FOR_PROVIDES(p, pp, rec)
2219 if (solv->decisionmap[p] > 0)
2224 else if (solv->decisionmap[p] == 0)
2226 if (solv->process_orphans && solv->installed && pool->solvables[p].repo == solv->installed && (solv->droporphanedmap_all || (solv->droporphanedmap.size && MAPTST(&solv->droporphanedmap, p - solv->installed->start))))
2228 queue_pushunique(dq, p);
2236 /* not yet installed, check if supplemented */
2237 if (!s->supplements)
2239 if (!pool_installable(pool, s))
2241 if (!solver_is_supplementing(solv, s))
2243 if (solv->process_orphans && solv->installed && s->repo == solv->installed && (solv->droporphanedmap_all || (solv->droporphanedmap.size && MAPTST(&solv->droporphanedmap, i - solv->installed->start))))
2245 if (solv->havedisfavored && solv->favormap[i] < 0)
2246 continue; /* disfavored supplements, do not install */
2251 /* filter out disfavored recommended packages */
2252 if (dq->count && solv->havedisfavored)
2253 prune_disfavored(solv, dq);
2255 /* filter out all packages obsoleted by installed packages */
2256 /* this is no longer needed if we have (and trust) reverse obsoletes */
2257 if ((dqs->count || dq->count) && solv->installed)
2260 Id obs, *obsp, po, ppo;
2262 map_init(&obsmap, pool->nsolvables);
2263 for (p = solv->installed->start; p < solv->installed->end; p++)
2265 s = pool->solvables + p;
2266 if (s->repo != solv->installed || !s->obsoletes)
2268 if (solv->decisionmap[p] <= 0)
2270 if (!solv->keepexplicitobsoletes && solv->multiversion.size && MAPTST(&solv->multiversion, p))
2272 obsp = s->repo->idarraydata + s->obsoletes;
2273 /* foreach obsoletes */
2274 while ((obs = *obsp++) != 0)
2275 FOR_PROVIDES(po, ppo, obs)
2277 Solvable *pos = pool->solvables + po;
2278 if (!pool->obsoleteusesprovides && !pool_match_nevr(pool, pos, obs))
2280 if (pool->obsoleteusescolors && !pool_colormatch(pool, s, pos))
2282 MAPSET(&obsmap, po);
2285 for (i = j = 0; i < dqs->count; i++)
2286 if (!MAPTST(&obsmap, dqs->elements[i]))
2287 dqs->elements[j++] = dqs->elements[i];
2289 for (i = j = 0; i < dq->count; i++)
2290 if (!MAPTST(&obsmap, dq->elements[i]))
2291 dq->elements[j++] = dq->elements[i];
2296 /* filter out all already supplemented packages if requested */
2297 if ((!solv->addalreadyrecommended || solv->only_namespace_recommended) && dqs->count)
2299 /* filter out old supplements */
2300 for (i = j = 0; i < dqs->count; i++)
2302 p = dqs->elements[i];
2303 s = pool->solvables + p;
2304 if (s->supplements && solver_is_supplementing_alreadyinstalled(solv, s))
2305 dqs->elements[j++] = p;
2310 /* multiversion doesn't mix well with supplements.
2311 * filter supplemented packages where we already decided
2312 * to install a different version (see bnc#501088) */
2313 if (dqs->count && solv->multiversion.size)
2315 for (i = j = 0; i < dqs->count; i++)
2317 p = dqs->elements[i];
2318 if (MAPTST(&solv->multiversion, p))
2321 s = pool->solvables + p;
2322 FOR_PROVIDES(p2, pp2, s->name)
2323 if (solv->decisionmap[p2] > 0 && pool->solvables[p2].name == s->name)
2326 continue; /* ignore this package */
2328 dqs->elements[j++] = p;
2333 /* implicitobsoleteusescolors doesn't mix well with supplements.
2334 * filter supplemented packages where we already decided
2335 * to install a different architecture */
2336 if (dqs->count && pool->implicitobsoleteusescolors)
2338 for (i = j = 0; i < dqs->count; i++)
2341 p = dqs->elements[i];
2342 s = pool->solvables + p;
2343 FOR_PROVIDES(p2, pp2, s->name)
2344 if (solv->decisionmap[p2] > 0 && pool->solvables[p2].name == s->name && pool->solvables[p2].arch != s->arch)
2347 continue; /* ignore this package */
2348 dqs->elements[j++] = p;
2353 /* make dq contain both recommended and supplemented pkgs */
2356 for (i = 0; i < dqs->count; i++)
2357 queue_pushunique(dq, dqs->elements[i]);
2366 /* simple case, just one package. no need to choose to best version */
2367 p = dq->elements[0];
2369 POOL_DEBUG(SOLV_DEBUG_POLICY, "installing supplemented %s\n", pool_solvid2str(pool, p));
2371 POOL_DEBUG(SOLV_DEBUG_POLICY, "installing recommended %s\n", pool_solvid2str(pool, p));
2372 return setpropagatelearn(solv, level, p, 0, 0, SOLVER_REASON_WEAKDEP);
2375 /* filter packages, this gives us the best versions */
2376 policy_filter_unwanted(solv, dq, POLICY_MODE_RECOMMEND);
2378 /* create map of result */
2379 map_init(&dqmap, pool->nsolvables);
2380 for (i = 0; i < dq->count; i++)
2381 MAPSET(&dqmap, dq->elements[i]);
2383 /* prune dqs so that it only contains the best versions */
2384 for (i = j = 0; i < dqs->count; i++)
2386 p = dqs->elements[i];
2387 if (MAPTST(&dqmap, p))
2388 dqs->elements[j++] = p;
2392 /* install all supplemented packages, but order first */
2394 policy_filter_unwanted(solv, dqs, POLICY_MODE_SUPPLEMENT);
2395 decisioncount = solv->decisionq.count;
2396 for (i = 0; i < dqs->count; i++)
2398 p = dqs->elements[i];
2399 if (solv->decisionmap[p])
2401 POOL_DEBUG(SOLV_DEBUG_POLICY, "installing supplemented %s\n", pool_solvid2str(pool, p));
2403 level = setpropagatelearn(solv, level, p, 0, 0, SOLVER_REASON_WEAKDEP);
2404 if (level <= olevel)
2407 if (i < dqs->count || solv->decisionq.count < decisioncount)
2413 /* install all recommended packages */
2414 /* more work as we want to created branches if multiple
2415 * choices are valid */
2416 for (i = 0; i < decisioncount; i++)
2419 p = solv->decisionq.elements[i];
2422 s = pool->solvables + p;
2423 if (!s->repo || (!solv->addalreadyrecommended && s->repo == solv->installed))
2427 recp = s->repo->idarraydata + s->recommends;
2428 while ((rec = *recp++) != 0)
2431 #ifdef ENABLE_COMPLEX_DEPS
2432 if (pool_is_complex_dep(pool, rec))
2433 add_complex_recommends(solv, rec, dq, &dqmap);
2436 FOR_PROVIDES(p, pp, rec)
2438 if (solv->decisionmap[p] > 0)
2443 else if (solv->decisionmap[p] == 0 && MAPTST(&dqmap, p))
2449 policy_filter_unwanted(solv, dq, POLICY_MODE_CHOOSE);
2450 /* if we have multiple candidates we open a branch */
2452 createbranch(solv, level, dq, s - pool->solvables, rec);
2453 p = dq->elements[0];
2454 POOL_DEBUG(SOLV_DEBUG_POLICY, "installing recommended %s\n", pool_solvid2str(pool, p));
2456 level = setpropagatelearn(solv, level, p, 0, 0, SOLVER_REASON_WEAKDEP);
2457 if (level <= olevel || solv->decisionq.count < decisioncount)
2458 break; /* we had to revert some decisions */
2461 break; /* had a problem above, quit loop */
2468 resolve_cleandeps(Solver *solv, int level, int disablerules, int *rerunp)
2470 Pool *pool = solv->pool;
2471 Repo *installed = solv->installed;
2476 if (!installed || !solv->cleandepsmap.size)
2478 POOL_DEBUG(SOLV_DEBUG_SOLVER, "deciding cleandeps packages\n");
2479 for (p = installed->start; p < installed->end; p++)
2481 s = pool->solvables + p;
2482 if (s->repo != installed)
2484 if (solv->decisionmap[p] != 0 || !MAPTST(&solv->cleandepsmap, p - installed->start))
2486 POOL_DEBUG(SOLV_DEBUG_POLICY, "cleandeps erasing %s\n", pool_solvid2str(pool, p));
2488 level = setpropagatelearn(solv, level, -p, 0, 0, SOLVER_REASON_CLEANDEPS_ERASE);
2492 if (p < installed->end)
2498 resolve_orphaned(Solver *solv, int level, int disablerules, Queue *dq, int *rerunp)
2500 Pool *pool = solv->pool;
2503 int installedone = 0;
2506 /* let's see if we can install some unsupported package */
2507 POOL_DEBUG(SOLV_DEBUG_SOLVER, "deciding orphaned packages\n");
2508 for (i = 0; i < solv->orphaned.count; i++)
2510 p = solv->orphaned.elements[i];
2511 if (solv->decisionmap[p])
2512 continue; /* already decided */
2513 if (solv->droporphanedmap_all)
2515 if (solv->droporphanedmap.size && MAPTST(&solv->droporphanedmap, p - solv->installed->start))
2517 POOL_DEBUG(SOLV_DEBUG_SOLVER, "keeping orphaned %s\n", pool_solvid2str(pool, p));
2519 level = setpropagatelearn(solv, level, p, 0, 0, SOLVER_REASON_RESOLVE_ORPHAN);
2524 if (installedone || i < solv->orphaned.count)
2529 for (i = 0; i < solv->orphaned.count; i++)
2531 p = solv->orphaned.elements[i];
2532 if (solv->decisionmap[p])
2533 continue; /* already decided */
2534 POOL_DEBUG(SOLV_DEBUG_SOLVER, "removing orphaned %s\n", pool_solvid2str(pool, p));
2536 level = setpropagatelearn(solv, level, -p, 0, 0, SOLVER_REASON_RESOLVE_ORPHAN);
2543 if (solv->brokenorphanrules)
2545 solver_check_brokenorphanrules(solv, dq);
2548 policy_filter_unwanted(solv, dq, POLICY_MODE_CHOOSE);
2549 for (i = 0; i < dq->count; i++)
2551 p = dq->elements[i];
2552 POOL_DEBUG(SOLV_DEBUG_POLICY, "installing orphaned dep %s\n", pool_solvid2str(pool, p));
2554 level = setpropagatelearn(solv, level, p, 0, 0, SOLVER_REASON_RESOLVE_ORPHAN);
2565 /*-------------------------------------------------------------------
2569 * all rules have been set up, now actually run the solver
2574 solver_run_sat(Solver *solv, int disablerules, int doweak)
2576 Queue dq; /* local decisionqueue */
2577 Queue dqs; /* local decisionqueue for supplements */
2583 Pool *pool = solv->pool;
2585 int minimizationsteps;
2587 IF_POOLDEBUG (SOLV_DEBUG_RULE_CREATION)
2589 POOL_DEBUG (SOLV_DEBUG_RULE_CREATION, "number of rules: %d\n", solv->nrules);
2590 for (i = 1; i < solv->nrules; i++)
2591 solver_printruleclass(solv, SOLV_DEBUG_RULE_CREATION, solv->rules + i);
2594 /* start SAT algorithm */
2596 systemlevel = level + 1;
2597 POOL_DEBUG(SOLV_DEBUG_SOLVER, "solving...\n");
2601 solv->installedpos = 0;
2602 solv->do_extra_reordering = 0;
2605 * here's the main loop:
2606 * 1) decide assertion rules and propagate
2608 * 3) try to keep installed packages
2609 * 4) fulfill all unresolved rules
2610 * 5) install recommended packages
2611 * 6) minimalize solution if we had choices
2612 * if we encounter a problem, we rewind to a safe level and restart
2616 minimizationsteps = 0;
2620 * initial propagation of the assertions
2626 level = makeruledecisions(solv, disablerules);
2629 POOL_DEBUG(SOLV_DEBUG_PROPAGATE, "initial propagate (propagate_index: %d; size decisionq: %d)...\n", solv->propagate_index, solv->decisionq.count);
2630 if ((r = propagate(solv, level)) != 0)
2632 level = analyze_unsolvable(solv, r, disablerules);
2635 systemlevel = level + 1;
2639 * resolve jobs first (unless focus_installed is set)
2641 if (level < systemlevel && !solv->focus_installed)
2643 if (solv->installed && solv->installed->nsolvables && !solv->installed->disabled)
2644 solv->do_extra_reordering = 1;
2646 level = resolve_jobrules(solv, level, disablerules, &dq);
2647 solv->do_extra_reordering = 0;
2650 systemlevel = level + 1;
2653 /* resolve job dependencies in the focus_best case */
2654 if (level < systemlevel && solv->focus_best && !solv->focus_installed && solv->installed && solv->installed->nsolvables && !solv->installed->disabled)
2656 solv->do_extra_reordering = 1;
2658 level = resolve_dependencies(solv, level, disablerules, &dq);
2659 solv->do_extra_reordering = 0;
2661 continue; /* start over */
2662 systemlevel = level + 1;
2666 * installed packages
2668 if (level < systemlevel && solv->installed && solv->installed->nsolvables && !solv->installed->disabled)
2671 level = resolve_installed(solv, level, disablerules, &dq);
2674 systemlevel = level + 1;
2677 /* resolve jobs in focus_installed case */
2678 if (level < systemlevel && solv->focus_installed)
2681 level = resolve_jobrules(solv, level, disablerules, &dq);
2684 systemlevel = level + 1;
2687 if (level < systemlevel)
2688 systemlevel = level;
2690 /* resolve all dependencies */
2692 level = resolve_dependencies(solv, level, disablerules, &dq);
2694 continue; /* start over */
2696 /* decide leftover cleandeps packages */
2697 if (solv->cleandepsmap.size && solv->installed)
2700 level = resolve_cleandeps(solv, level, disablerules, &rerun);
2705 /* at this point we have a consistent system. now do the extras... */
2710 level = resolve_weak(solv, level, disablerules, &dq, &dqs, &rerun);
2715 if (solv->installed && (solv->orphaned.count || solv->brokenorphanrules))
2718 level = resolve_orphaned(solv, level, disablerules, &dq, &rerun);
2723 /* one final pass to make sure we decided all installed packages */
2724 if (solv->installed)
2726 for (p = solv->installed->start; p < solv->installed->end; p++)
2728 if (solv->decisionmap[p])
2729 continue; /* already decided */
2730 s = pool->solvables + p;
2731 if (s->repo != solv->installed)
2733 POOL_DEBUG(SOLV_DEBUG_SOLVER, "removing unwanted %s\n", pool_solvid2str(pool, p));
2735 level = setpropagatelearn(solv, level, -p, 0, 0, SOLVER_REASON_CLEANDEPS_ERASE);
2739 if (p < solv->installed->end)
2740 continue; /* back to main loop */
2743 if (solv->installed && solv->cleandepsmap.size && solver_check_cleandeps_mistakes(solv))
2746 level = 0; /* restart from scratch */
2750 if (solv->solution_callback)
2752 solv->solution_callback(solv, solv->solution_callback_data);
2753 if (solv->branches.count)
2757 for (i = solv->branches.count - 1; i >= 0; i--)
2759 p = solv->branches.elements[i];
2764 i -= 3; /* skip: p data count */
2773 while (i > 0 && solv->branches.elements[i - 1] > 0)
2775 level = takebranch(solv, i, endi, "branching", disablerules);
2779 /* all branches done, we're finally finished */
2783 /* auto-minimization step */
2784 if (solv->branches.count)
2786 int endi, lasti = -1, lastiend = -1;
2787 if (solv->recommends_index < solv->decisionq.count)
2788 policy_update_recommendsmap(solv);
2789 for (endi = solv->branches.count; endi > 0;)
2791 int l, lastsi = -1, starti = endi - solv->branches.elements[endi - 2];
2792 l = solv->branches.elements[endi - 1];
2793 for (i = starti; i < endi - 4; i++)
2795 p = solv->branches.elements[i];
2798 if (solv->decisionmap[p] > l)
2805 if (solv->havedisfavored && solv->favormap[p] < 0)
2807 if (lastsi < 0 && (MAPTST(&solv->recommendsmap, p) || solver_is_supplementing(solv, pool->solvables + p)))
2812 /* we have a recommended package that could not be installed */
2813 /* find current selection and take new one if it is not recommended */
2814 for (i = starti; i < endi - 4; i++)
2816 p = -solv->branches.elements[i];
2817 if (p <= 0 || solv->decisionmap[p] != l + 1)
2819 if (solv->favormap && solv->favormap[p] > solv->favormap[solv->branches.elements[lastsi]])
2820 continue; /* current selection is more favored */
2821 if (!(MAPTST(&solv->recommendsmap, p) || solver_is_supplementing(solv, pool->solvables + p)))
2833 minimizationsteps++;
2834 level = takebranch(solv, lasti, lastiend, "minimizing", disablerules);
2835 continue; /* back to main loop */
2838 /* no minimization found, we're finally finished! */
2841 assert(level == -1 || level + 1 == solv->decisionq_reason.count);
2843 POOL_DEBUG(SOLV_DEBUG_STATS, "solver statistics: %d learned rules, %d unsolvable, %d minimization steps\n", solv->stats_learned, solv->stats_unsolvable, minimizationsteps);
2845 POOL_DEBUG(SOLV_DEBUG_STATS, "done solving.\n\n");
2849 solver_printdecisionq(solv, SOLV_DEBUG_RESULT);
2854 /*-------------------------------------------------------------------
2856 * remove disabled conflicts
2858 * purpose: update the decisionmap after some rules were disabled.
2859 * this is used to calculate the suggested/recommended package list.
2860 * Also returns a "removed" list to undo the discisionmap changes.
2864 removedisabledconflicts(Solver *solv, Queue *removed)
2866 Pool *pool = solv->pool;
2871 Id *decisionmap = solv->decisionmap;
2873 queue_empty(removed);
2874 for (i = 0; i < solv->decisionq.count; i++)
2876 p = solv->decisionq.elements[i];
2878 continue; /* conflicts only, please */
2879 why = solv->decisionq_why.elements[i];
2882 /* no rule involved, must be a orphan package drop */
2885 /* we never do conflicts on free decisions, so there
2886 * must have been an unit rule */
2888 r = solv->rules + why;
2889 if (r->d < 0 && decisionmap[-p])
2891 /* rule is now disabled, remove from decisionmap */
2892 POOL_DEBUG(SOLV_DEBUG_SOLVER, "removing conflict for package %s[%d]\n", pool_solvid2str(pool, -p), -p);
2893 queue_push(removed, -p);
2894 queue_push(removed, decisionmap[-p]);
2895 decisionmap[-p] = 0;
2898 if (!removed->count)
2900 /* we removed some confliced packages. some of them might still
2901 * be in conflict, so search for unit rules and re-conflict */
2903 for (i = n = 1, r = solv->rules + i; n < solv->nrules; i++, r++, n++)
2905 if (i == solv->nrules)
2908 r = solv->rules + i;
2914 if (r->p < 0 && !decisionmap[-r->p])
2920 if (r->p < 0 && decisionmap[-r->p] == 0 && DECISIONMAP_FALSE(r->w2))
2922 else if (r->w2 < 0 && decisionmap[-r->w2] == 0 && DECISIONMAP_FALSE(r->p))
2927 if (r->p < 0 && decisionmap[-r->p] == 0)
2929 if (new || DECISIONMAP_FALSE(r->p))
2931 dp = pool->whatprovidesdata + r->d;
2932 while ((p = *dp++) != 0)
2934 if (new && p == new)
2936 if (p < 0 && decisionmap[-p] == 0)
2945 else if (!DECISIONMAP_FALSE(p))
2955 POOL_DEBUG(SOLV_DEBUG_SOLVER, "re-conflicting package %s[%d]\n", pool_solvid2str(pool, -new), -new);
2956 decisionmap[-new] = -1;
2958 n = 0; /* redo all rules */
2964 undo_removedisabledconflicts(Solver *solv, Queue *removed)
2967 for (i = 0; i < removed->count; i += 2)
2968 solv->decisionmap[removed->elements[i]] = removed->elements[i + 1];
2972 /*-------------------------------------------------------------------
2974 * weaken solvable dependencies
2978 weaken_solvable_deps(Solver *solv, Id p)
2983 for (i = 1, r = solv->rules + i; i < solv->pkgrules_end; i++, r++)
2987 if ((r->d == 0 || r->d == -1) && r->w2 < 0)
2988 continue; /* conflict */
2989 queue_push(&solv->weakruleq, i);
2994 /********************************************************************/
2999 solver_calculate_multiversionmap(Pool *pool, Queue *job, Map *multiversionmap)
3002 Id how, what, select;
3004 for (i = 0; i < job->count; i += 2)
3006 how = job->elements[i];
3007 if ((how & SOLVER_JOBMASK) != SOLVER_MULTIVERSION)
3009 what = job->elements[i + 1];
3010 select = how & SOLVER_SELECTMASK;
3011 if (!multiversionmap->size)
3012 map_grow(multiversionmap, pool->nsolvables);
3013 if (select == SOLVER_SOLVABLE_ALL)
3015 FOR_POOL_SOLVABLES(p)
3016 MAPSET(multiversionmap, p);
3018 else if (select == SOLVER_SOLVABLE_REPO)
3021 Repo *repo = pool_id2repo(pool, what);
3024 FOR_REPO_SOLVABLES(repo, p, s)
3025 MAPSET(multiversionmap, p);
3028 FOR_JOB_SELECT(p, pp, select, what)
3029 MAPSET(multiversionmap, p);
3034 solver_calculate_noobsmap(Pool *pool, Queue *job, Map *multiversionmap)
3036 solver_calculate_multiversionmap(pool, job, multiversionmap);
3040 * add a rule created by a job, record job number and weak flag
3043 solver_addjobrule(Solver *solv, Id p, Id p2, Id d, Id job, int weak)
3045 solver_addrule(solv, p, p2, d);
3046 queue_push(&solv->ruletojob, job);
3048 queue_push(&solv->weakruleq, solv->nrules - 1);
3052 add_cleandeps_updatepkg(Solver *solv, Id p)
3054 if (!solv->cleandeps_updatepkgs)
3056 solv->cleandeps_updatepkgs = solv_calloc(1, sizeof(Queue));
3057 queue_init(solv->cleandeps_updatepkgs);
3059 queue_pushunique(solv->cleandeps_updatepkgs, p);
3063 add_update_target(Solver *solv, Id p, Id how)
3065 Pool *pool = solv->pool;
3066 Solvable *s = pool->solvables + p;
3067 Repo *installed = solv->installed;
3068 Id pi, pip, identicalp;
3069 int startcnt, endcnt;
3071 if (!solv->update_targets)
3073 solv->update_targets = solv_calloc(1, sizeof(Queue));
3074 queue_init(solv->update_targets);
3076 if (s->repo == installed)
3078 queue_push2(solv->update_targets, p, p);
3082 startcnt = solv->update_targets->count;
3083 FOR_PROVIDES(pi, pip, s->name)
3085 Solvable *si = pool->solvables + pi;
3086 if (si->repo != installed || si->name != s->name)
3088 if (how & SOLVER_FORCEBEST)
3090 if (!solv->bestupdatemap.size)
3091 map_grow(&solv->bestupdatemap, installed->end - installed->start);
3092 MAPSET(&solv->bestupdatemap, pi - installed->start);
3094 if (how & SOLVER_CLEANDEPS)
3095 add_cleandeps_updatepkg(solv, pi);
3096 queue_push2(solv->update_targets, pi, p);
3097 /* remember an installed package that is identical to p */
3098 if (s->evr == si->evr && solvable_identical(s, si))
3103 Id obs, *obsp = s->repo->idarraydata + s->obsoletes;
3104 while ((obs = *obsp++) != 0)
3106 FOR_PROVIDES(pi, pip, obs)
3108 Solvable *si = pool->solvables + pi;
3109 if (si->repo != installed)
3111 if (si->name == s->name)
3112 continue; /* already handled above */
3113 if (!pool->obsoleteusesprovides && !pool_match_nevr(pool, si, obs))
3115 if (pool->obsoleteusescolors && !pool_colormatch(pool, s, si))
3117 if (how & SOLVER_FORCEBEST)
3119 if (!solv->bestupdatemap.size)
3120 map_grow(&solv->bestupdatemap, installed->end - installed->start);
3121 MAPSET(&solv->bestupdatemap, pi - installed->start);
3123 if (how & SOLVER_CLEANDEPS)
3124 add_cleandeps_updatepkg(solv, pi);
3125 queue_push2(solv->update_targets, pi, p);
3129 /* also allow upgrading to an identical installed package */
3132 for (endcnt = solv->update_targets->count; startcnt < endcnt; startcnt += 2)
3133 queue_push2(solv->update_targets, solv->update_targets->elements[startcnt], identicalp);
3138 transform_update_targets_sortfn(const void *ap, const void *bp, void *dp)
3148 transform_update_targets(Solver *solv)
3150 Repo *installed = solv->installed;
3151 Queue *update_targets = solv->update_targets;
3153 Id p, q, lastp, lastq;
3155 if (!update_targets->count)
3157 queue_free(update_targets);
3158 solv->update_targets = solv_free(update_targets);
3161 if (update_targets->count > 2)
3162 solv_sort(update_targets->elements, update_targets->count >> 1, 2 * sizeof(Id), transform_update_targets_sortfn, solv);
3163 queue_insertn(update_targets, 0, installed->end - installed->start, 0);
3165 for (i = j = installed->end - installed->start; i < update_targets->count; i += 2)
3167 if ((p = update_targets->elements[i]) != lastp)
3169 if (!solv->updatemap.size)
3170 map_grow(&solv->updatemap, installed->end - installed->start);
3171 MAPSET(&solv->updatemap, p - installed->start);
3172 update_targets->elements[j++] = 0; /* finish old set */
3173 update_targets->elements[p - installed->start] = j; /* start new set */
3177 if ((q = update_targets->elements[i + 1]) != lastq)
3179 update_targets->elements[j++] = q;
3183 queue_truncate(update_targets, j);
3184 queue_push(update_targets, 0); /* finish last set */
3189 addedmap2deduceq(Solver *solv, Map *addedmap)
3191 Pool *pool = solv->pool;
3196 queue_empty(&solv->addedmap_deduceq);
3197 for (i = 2, j = solv->pkgrules_end - 1; i < pool->nsolvables && j > 0; j--)
3199 r = solv->rules + j;
3202 if ((r->d == 0 || r->d == -1) && r->w2 < 0)
3205 if (!MAPTST(addedmap, p))
3207 /* should never happen, but... */
3208 if (!solv->addedmap_deduceq.count || solv->addedmap_deduceq.elements[solv->addedmap_deduceq.count - 1] != -p)
3209 queue_push(&solv->addedmap_deduceq, -p);
3213 if (MAPTST(addedmap, i))
3214 queue_push(&solv->addedmap_deduceq, i);
3218 for (; i < pool->nsolvables; i++)
3219 if (MAPTST(addedmap, i))
3220 queue_push(&solv->addedmap_deduceq, i);
3224 deduceq2addedmap(Solver *solv, Map *addedmap)
3229 for (j = solv->pkgrules_end - 1; j > 0; j--)
3231 r = solv->rules + j;
3232 if (r->d < 0 && r->p)
3233 solver_enablerule(solv, r);
3236 if ((r->d == 0 || r->d == -1) && r->w2 < 0)
3239 MAPSET(addedmap, p);
3241 for (j = 0; j < solv->addedmap_deduceq.count; j++)
3243 p = solv->addedmap_deduceq.elements[j];
3245 MAPSET(addedmap, p);
3247 MAPCLR(addedmap, p);
3251 #ifdef ENABLE_COMPLEX_DEPS
3253 add_complex_jobrules(Solver *solv, Id dep, int flags, int jobidx, int weak)
3255 Pool *pool = solv->pool;
3260 i = pool_normalize_complex_dep(pool, dep, &bq, flags | CPLXDEPS_EXPAND);
3261 if (i == 0 || i == 1)
3265 solver_addjobrule(solv, -SYSTEMSOLVABLE, 0, 0, jobidx, weak);
3268 for (i = 0; i < bq.count; i++)
3270 if (!bq.elements[i])
3272 for (j = 0; bq.elements[i + j + 1]; j++)
3275 solver_addjobrule(solv, bq.elements[i], 0, pool_ids2whatprovides(pool, bq.elements + i + 1, j), jobidx, weak);
3277 solver_addjobrule(solv, bq.elements[i], bq.elements[i + 1], 0, jobidx, weak);
3286 setup_favormap(Solver *solv)
3288 Queue *job = &solv->job;
3289 Pool *pool = solv->pool;
3291 Id p, pp, how, what, select;
3293 solv_free(solv->favormap);
3294 solv->favormap = solv_calloc(pool->nsolvables, sizeof(Id));
3295 for (i = 0; i < job->count; i += 2)
3297 how = job->elements[i];
3298 if ((how & SOLVER_JOBMASK) != SOLVER_FAVOR && (how & SOLVER_JOBMASK) != SOLVER_DISFAVOR)
3300 what = job->elements[i + 1];
3301 select = how & SOLVER_SELECTMASK;
3302 idx = (how & SOLVER_JOBMASK) == SOLVER_FAVOR ? i + 1 : -(i + 1);
3303 if (select == SOLVER_SOLVABLE_REPO)
3305 Repo *repo = pool_id2repo(pool, what);
3309 FOR_REPO_SOLVABLES(repo, p, s)
3311 solv->favormap[p] = idx;
3313 solv->havedisfavored = 1;
3317 FOR_JOB_SELECT(p, pp, select, what)
3319 solv->favormap[p] = idx;
3321 solv->havedisfavored = 1;
3333 solver_solve(Solver *solv, Queue *job)
3335 Pool *pool = solv->pool;
3336 Repo *installed = solv->installed;
3338 int oldnrules, initialnrules;
3339 Map addedmap; /* '1' == have pkg-rules for solvable */
3340 Map installcandidatemap;
3341 Id how, what, select, name, weak, p, pp, d;
3343 Solvable *s, *name_s;
3345 int now, solve_start;
3346 int needduprules = 0;
3347 int hasbestinstalljob = 0;
3348 int hasfavorjob = 0;
3351 solve_start = solv_timems(0);
3353 /* log solver options */
3354 POOL_DEBUG(SOLV_DEBUG_STATS, "solver started\n");
3355 POOL_DEBUG(SOLV_DEBUG_STATS, "dosplitprovides=%d, noupdateprovide=%d, noinfarchcheck=%d\n", solv->dosplitprovides, solv->noupdateprovide, solv->noinfarchcheck);
3356 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);
3357 POOL_DEBUG(SOLV_DEBUG_STATS, "dupallowdowngrade=%d, dupallownamechange=%d, dupallowarchchange=%d, dupallowvendorchange=%d\n", solv->dup_allowdowngrade, solv->dup_allownamechange, solv->dup_allowarchchange, solv->dup_allowvendorchange);
3358 POOL_DEBUG(SOLV_DEBUG_STATS, "promoteepoch=%d, forbidselfconflicts=%d\n", pool->promoteepoch, pool->forbidselfconflicts);
3359 POOL_DEBUG(SOLV_DEBUG_STATS, "obsoleteusesprovides=%d, implicitobsoleteusesprovides=%d, obsoleteusescolors=%d, implicitobsoleteusescolors=%d\n", pool->obsoleteusesprovides, pool->implicitobsoleteusesprovides, pool->obsoleteusescolors, pool->implicitobsoleteusescolors);
3360 POOL_DEBUG(SOLV_DEBUG_STATS, "dontinstallrecommended=%d, addalreadyrecommended=%d onlynamespacerecommended=%d\n", solv->dontinstallrecommended, solv->addalreadyrecommended, solv->only_namespace_recommended);
3362 /* create whatprovides if not already there */
3363 if (!pool->whatprovides)
3364 pool_createwhatprovides(pool);
3366 /* create obsolete index */
3367 policy_create_obsolete_index(solv);
3370 queue_free(&solv->job);
3371 queue_init_clone(&solv->job, job);
3372 solv->pooljobcnt = pool->pooljobs.count;
3373 if (pool->pooljobs.count)
3374 queue_insertn(&solv->job, 0, pool->pooljobs.count, pool->pooljobs.elements);
3377 /* free old stuff in case we re-run a solver */
3378 queuep_free(&solv->update_targets);
3379 queuep_free(&solv->cleandeps_updatepkgs);
3380 queue_empty(&solv->ruleassertions);
3381 solv->bestrules_info = solv_free(solv->bestrules_info);
3382 solv->yumobsrules_info = solv_free(solv->yumobsrules_info);
3383 solv->recommendsrules_info = solv_free(solv->recommendsrules_info);
3384 solv->choicerules_info = solv_free(solv->choicerules_info);
3385 if (solv->noupdate.size)
3386 map_empty(&solv->noupdate);
3387 map_zerosize(&solv->multiversion);
3388 solv->updatemap_all = 0;
3389 map_zerosize(&solv->updatemap);
3390 solv->bestupdatemap_all = 0;
3391 map_zerosize(&solv->bestupdatemap);
3392 solv->fixmap_all = 0;
3393 map_zerosize(&solv->fixmap);
3394 map_zerosize(&solv->dupmap);
3395 map_zerosize(&solv->dupinvolvedmap);
3396 solv->process_orphans = 0;
3397 solv->droporphanedmap_all = 0;
3398 map_zerosize(&solv->droporphanedmap);
3399 solv->allowuninstall_all = 0;
3400 map_zerosize(&solv->allowuninstallmap);
3401 map_zerosize(&solv->cleandepsmap);
3402 map_zerosize(&solv->weakrulemap);
3403 solv->favormap = solv_free(solv->favormap);
3404 queue_empty(&solv->weakruleq);
3405 solv->watches = solv_free(solv->watches);
3406 queue_empty(&solv->ruletojob);
3407 if (solv->decisionq.count)
3408 memset(solv->decisionmap, 0, pool->nsolvables * sizeof(Id));
3409 queue_empty(&solv->decisionq);
3410 queue_empty(&solv->decisionq_why);
3411 queue_empty(&solv->decisionq_reason);
3412 queue_empty(&solv->learnt_why);
3413 queue_empty(&solv->learnt_pool);
3414 queue_empty(&solv->branches);
3415 solv->propagate_index = 0;
3416 queue_empty(&solv->problems);
3417 queue_empty(&solv->solutions);
3418 queue_empty(&solv->orphaned);
3419 solv->stats_learned = solv->stats_unsolvable = 0;
3420 if (solv->recommends_index)
3422 map_empty(&solv->recommendsmap);
3423 map_empty(&solv->suggestsmap);
3424 queuep_free(&solv->recommendscplxq);
3425 queuep_free(&solv->suggestscplxq);
3426 solv->recommends_index = 0;
3428 queuep_free(&solv->brokenorphanrules);
3429 solv->specialupdaters = solv_free(solv->specialupdaters);
3433 * create basic rule set of all involved packages
3434 * use addedmap bitmap to make sure we don't create rules twice
3437 /* create multiversion map if needed */
3438 solver_calculate_multiversionmap(pool, job, &solv->multiversion);
3440 map_init(&addedmap, pool->nsolvables);
3441 MAPSET(&addedmap, SYSTEMSOLVABLE);
3443 map_init(&installcandidatemap, pool->nsolvables);
3446 now = solv_timems(0);
3448 * create rules for all package that could be involved with the solving
3449 * so called: pkg rules
3452 initialnrules = solv->pkgrules_end ? solv->pkgrules_end : 1;
3453 if (initialnrules > 1)
3454 deduceq2addedmap(solv, &addedmap); /* also enables all pkg rules */
3455 if (solv->nrules != initialnrules)
3456 solver_shrinkrules(solv, initialnrules); /* shrink to just pkg rules */
3457 solv->lastpkgrule = 0;
3458 solv->pkgrules_end = 0;
3462 /* check for update/verify jobs as they need to be known early */
3463 /* also setup the droporphaned map, we need it when creating update rules */
3464 for (i = 0; i < job->count; i += 2)
3466 how = job->elements[i];
3467 what = job->elements[i + 1];
3468 select = how & SOLVER_SELECTMASK;
3469 switch (how & SOLVER_JOBMASK)
3472 if (select == SOLVER_SOLVABLE_ALL || (select == SOLVER_SOLVABLE_REPO && installed && what == installed->repoid))
3473 solv->fixmap_all = 1;
3474 FOR_JOB_SELECT(p, pp, select, what)
3476 s = pool->solvables + p;
3477 if (s->repo != installed)
3479 if (!solv->fixmap.size)
3480 map_grow(&solv->fixmap, installed->end - installed->start);
3481 MAPSET(&solv->fixmap, p - installed->start);
3485 if (select == SOLVER_SOLVABLE_ALL)
3487 solv->updatemap_all = 1;
3488 if (how & SOLVER_FORCEBEST)
3489 solv->bestupdatemap_all = 1;
3490 if (how & SOLVER_CLEANDEPS)
3492 FOR_REPO_SOLVABLES(installed, p, s)
3493 add_cleandeps_updatepkg(solv, p);
3496 else if (select == SOLVER_SOLVABLE_REPO)
3498 Repo *repo = pool_id2repo(pool, what);
3501 if (repo == installed && !(how & SOLVER_TARGETED))
3503 solv->updatemap_all = 1;
3504 if (how & SOLVER_FORCEBEST)
3505 solv->bestupdatemap_all = 1;
3506 if (how & SOLVER_CLEANDEPS)
3508 FOR_REPO_SOLVABLES(installed, p, s)
3509 add_cleandeps_updatepkg(solv, p);
3513 if (solv->noautotarget && !(how & SOLVER_TARGETED))
3515 /* targeted update */
3516 FOR_REPO_SOLVABLES(repo, p, s)
3517 add_update_target(solv, p, how);
3521 if (!(how & SOLVER_TARGETED))
3524 FOR_JOB_SELECT(p, pp, select, what)
3526 s = pool->solvables + p;
3527 if (s->repo != installed)
3529 if (!solv->updatemap.size)
3530 map_grow(&solv->updatemap, installed->end - installed->start);
3531 MAPSET(&solv->updatemap, p - installed->start);
3532 if (how & SOLVER_FORCEBEST)
3534 if (!solv->bestupdatemap.size)
3535 map_grow(&solv->bestupdatemap, installed->end - installed->start);
3536 MAPSET(&solv->bestupdatemap, p - installed->start);
3538 if (how & SOLVER_CLEANDEPS)
3539 add_cleandeps_updatepkg(solv, p);
3542 if (!targeted || solv->noautotarget)
3545 FOR_JOB_SELECT(p, pp, select, what)
3546 add_update_target(solv, p, how);
3549 case SOLVER_DROP_ORPHANED:
3550 if (select == SOLVER_SOLVABLE_ALL || (select == SOLVER_SOLVABLE_REPO && installed && what == installed->repoid))
3551 solv->droporphanedmap_all = 1;
3552 FOR_JOB_SELECT(p, pp, select, what)
3554 s = pool->solvables + p;
3555 if (s->repo != installed)
3557 if (!solv->droporphanedmap.size)
3558 map_grow(&solv->droporphanedmap, installed->end - installed->start);
3559 MAPSET(&solv->droporphanedmap, p - installed->start);
3562 case SOLVER_ALLOWUNINSTALL:
3563 if (select == SOLVER_SOLVABLE_ALL || (select == SOLVER_SOLVABLE_REPO && installed && what == installed->repoid))
3564 solv->allowuninstall_all = 1;
3565 FOR_JOB_SELECT(p, pp, select, what)
3567 s = pool->solvables + p;
3568 if (s->repo != installed)
3570 if (!solv->allowuninstallmap.size)
3571 map_grow(&solv->allowuninstallmap, installed->end - installed->start);
3572 MAPSET(&solv->allowuninstallmap, p - installed->start);
3580 if (solv->update_targets)
3581 transform_update_targets(solv);
3583 oldnrules = solv->nrules;
3584 FOR_REPO_SOLVABLES(installed, p, s)
3585 solver_addpkgrulesforsolvable(solv, s, &addedmap);
3586 POOL_DEBUG(SOLV_DEBUG_STATS, "added %d pkg rules for installed solvables\n", solv->nrules - oldnrules);
3587 oldnrules = solv->nrules;
3588 FOR_REPO_SOLVABLES(installed, p, s)
3589 solver_addpkgrulesforupdaters(solv, s, &addedmap, 1);
3590 POOL_DEBUG(SOLV_DEBUG_STATS, "added %d pkg rules for updaters of installed solvables\n", solv->nrules - oldnrules);
3594 * create rules for all packages involved in the job
3595 * (to be installed or removed)
3598 oldnrules = solv->nrules;
3599 for (i = 0; i < job->count; i += 2)
3601 how = job->elements[i];
3602 what = job->elements[i + 1];
3603 select = how & SOLVER_SELECTMASK;
3605 switch (how & SOLVER_JOBMASK)
3607 case SOLVER_INSTALL:
3608 FOR_JOB_SELECT(p, pp, select, what)
3610 MAPSET(&installcandidatemap, p);
3611 solver_addpkgrulesforsolvable(solv, pool->solvables + p, &addedmap);
3614 case SOLVER_DISTUPGRADE:
3616 if (select == SOLVER_SOLVABLE_ALL)
3617 solv->process_orphans = 1;
3623 POOL_DEBUG(SOLV_DEBUG_STATS, "added %d pkg rules for packages involved in a job\n", solv->nrules - oldnrules);
3627 * add rules for suggests, enhances
3629 oldnrules = solv->nrules;
3630 solver_addpkgrulesforweak(solv, &addedmap);
3631 POOL_DEBUG(SOLV_DEBUG_STATS, "added %d pkg rules because of weak dependencies\n", solv->nrules - oldnrules);
3633 #ifdef ENABLE_LINKED_PKGS
3634 oldnrules = solv->nrules;
3635 solver_addpkgrulesforlinked(solv, &addedmap);
3636 POOL_DEBUG(SOLV_DEBUG_STATS, "added %d pkg rules because of linked packages\n", solv->nrules - oldnrules);
3640 * first pass done, we now have all the pkg rules we need.
3641 * unify existing rules before going over all job rules and
3643 * at this point the system is always solvable,
3644 * as an empty system (remove all packages) is a valid solution
3647 IF_POOLDEBUG (SOLV_DEBUG_STATS)
3649 int possible = 0, installable = 0;
3650 for (i = 1; i < pool->nsolvables; i++)
3652 if (pool_installable(pool, pool->solvables + i))
3654 if (MAPTST(&addedmap, i))
3657 POOL_DEBUG(SOLV_DEBUG_STATS, "%d of %d installable solvables considered for solving\n", possible, installable);
3660 if (solv->nrules > initialnrules)
3661 solver_unifyrules(solv); /* remove duplicate pkg rules */
3662 solv->pkgrules_end = solv->nrules; /* mark end of pkg rules */
3663 solv->lastpkgrule = 0;
3665 if (solv->nrules > initialnrules)
3666 addedmap2deduceq(solv, &addedmap); /* so that we can recreate the addedmap */
3668 POOL_DEBUG(SOLV_DEBUG_STATS, "pkg rule memory used: %d K\n", solv->nrules * (int)sizeof(Rule) / 1024);
3669 POOL_DEBUG(SOLV_DEBUG_STATS, "pkg rule creation took %d ms\n", solv_timems(now));
3671 /* create dup maps if needed. We need the maps early to create our
3674 solver_createdupmaps(solv);
3677 * create feature rules
3679 * foreach installed:
3680 * create assertion (keep installed, if no update available)
3682 * create update rule (A|update1(A)|update2(A)|...)
3684 * those are used later on to keep a version of the installed packages in
3688 solv->featurerules = solv->nrules; /* mark start of feature rules */
3691 /* foreach possibly installed solvable */
3692 for (i = installed->start, s = pool->solvables + i; i < installed->end; i++, s++)
3694 if (s->repo != installed)
3696 solver_addrule(solv, 0, 0, 0); /* create dummy rule */
3699 solver_addfeaturerule(solv, s);
3701 /* make sure we accounted for all rules */
3702 assert(solv->nrules - solv->featurerules == installed->end - installed->start);
3704 solv->featurerules_end = solv->nrules;
3707 * Add update rules for installed solvables
3709 * almost identical to feature rules
3710 * except that downgrades/archchanges/vendorchanges are not allowed
3713 solv->updaterules = solv->nrules;
3716 { /* foreach installed solvables */
3717 /* we create all update rules, but disable some later on depending on the job */
3718 for (i = installed->start, s = pool->solvables + i; i < installed->end; i++, s++)
3722 if (s->repo != installed)
3724 solver_addrule(solv, 0, 0, 0); /* create dummy rule */
3727 solver_addupdaterule(solv, s);
3729 * check for and remove duplicate
3731 r = solv->rules + solv->nrules - 1; /* r: update rule */
3732 sr = r - (installed->end - installed->start); /* sr: feature rule */
3736 memset(sr, 0, sizeof(*sr)); /* no feature rules without update rules */
3739 /* it's also orphaned if the feature rule consists just of the installed package */
3740 if (!solv->process_orphans && sr->p == i && !sr->d && !sr->w2)
3741 queue_push(&solv->orphaned, i);
3743 if (!solver_rulecmp(solv, r, sr))
3744 memset(sr, 0, sizeof(*sr)); /* delete unneeded feature rule */
3746 solver_disablerule(solv, sr); /* disable feature rule for now */
3748 /* consistency check: we added a rule for _every_ installed solvable */
3749 assert(solv->nrules - solv->updaterules == installed->end - installed->start);
3751 solv->updaterules_end = solv->nrules;
3755 * now add all job rules
3758 solv->jobrules = solv->nrules;
3759 for (i = 0; i < job->count; i += 2)
3761 oldnrules = solv->nrules;
3763 if (i && i == solv->pooljobcnt)
3764 POOL_DEBUG(SOLV_DEBUG_JOB, "end of pool jobs\n");
3765 how = job->elements[i];
3766 what = job->elements[i + 1];
3767 weak = how & SOLVER_WEAK;
3768 select = how & SOLVER_SELECTMASK;
3769 switch (how & SOLVER_JOBMASK)
3771 case SOLVER_INSTALL:
3772 POOL_DEBUG(SOLV_DEBUG_JOB, "job: %sinstall %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
3773 if ((how & SOLVER_CLEANDEPS) != 0 && !solv->cleandepsmap.size && installed)
3774 map_grow(&solv->cleandepsmap, installed->end - installed->start);
3775 if (select == SOLVER_SOLVABLE)
3780 #ifdef ENABLE_COMPLEX_DEPS
3781 else if ((select == SOLVER_SOLVABLE_PROVIDES || select == SOLVER_SOLVABLE_NAME) && pool_is_complex_dep(pool, what))
3783 if (add_complex_jobrules(solv, what, select == SOLVER_SOLVABLE_NAME ? CPLXDEPS_NAME : 0, i, weak))
3784 if (how & SOLVER_FORCEBEST)
3785 hasbestinstalljob = 1;
3792 FOR_JOB_SELECT(p, pp, select, what)
3796 if (select == SOLVER_SOLVABLE_ONE_OF)
3797 break; /* ignore empty installs */
3798 /* no candidate found or unsupported, make this an impossible rule */
3799 queue_push(&q, -SYSTEMSOLVABLE);
3801 p = queue_shift(&q); /* get first candidate */
3802 d = !q.count ? 0 : pool_queuetowhatprovides(pool, &q); /* internalize */
3804 /* force install of namespace supplements hack */
3805 if (select == SOLVER_SOLVABLE_PROVIDES && !d && (p == SYSTEMSOLVABLE || p == -SYSTEMSOLVABLE) && ISRELDEP(what))
3807 Reldep *rd = GETRELDEP(pool, what);
3808 if (rd->flags == REL_NAMESPACE)
3811 if (!solv->installsuppdepq)
3813 solv->installsuppdepq = solv_calloc(1, sizeof(Queue));
3814 queue_init(solv->installsuppdepq);
3816 queue_pushunique(solv->installsuppdepq, rd->evr == 0 ? rd->name : what);
3819 solver_addjobrule(solv, p, 0, d, i, weak);
3820 if (how & SOLVER_FORCEBEST)
3821 hasbestinstalljob = 1;
3824 POOL_DEBUG(SOLV_DEBUG_JOB, "job: %s%serase %s\n", weak ? "weak " : "", how & SOLVER_CLEANDEPS ? "clean deps " : "", solver_select2str(pool, select, what));
3825 if ((how & SOLVER_CLEANDEPS) != 0 && !solv->cleandepsmap.size && installed)
3826 map_grow(&solv->cleandepsmap, installed->end - installed->start);
3827 /* specific solvable: by id or by nevra */
3828 name = (select == SOLVER_SOLVABLE || (select == SOLVER_SOLVABLE_NAME && ISRELDEP(what))) ? 0 : -1;
3830 if (select == SOLVER_SOLVABLE_ALL) /* hmmm ;) */
3832 FOR_POOL_SOLVABLES(p)
3833 solver_addjobrule(solv, -p, 0, 0, i, weak);
3835 else if (select == SOLVER_SOLVABLE_REPO)
3837 Repo *repo = pool_id2repo(pool, what);
3840 FOR_REPO_SOLVABLES(repo, p, s)
3841 solver_addjobrule(solv, -p, 0, 0, i, weak);
3844 #ifdef ENABLE_COMPLEX_DEPS
3845 else if ((select == SOLVER_SOLVABLE_PROVIDES || select == SOLVER_SOLVABLE_NAME) && pool_is_complex_dep(pool, what))
3847 /* no special "erase a specific solvable" handling? */
3848 add_complex_jobrules(solv, what, select == SOLVER_SOLVABLE_NAME ? (CPLXDEPS_NAME | CPLXDEPS_TODNF | CPLXDEPS_INVERT) : (CPLXDEPS_TODNF | CPLXDEPS_INVERT), i, weak);
3852 FOR_JOB_SELECT(p, pp, select, what)
3854 s = pool->solvables + p;
3855 if (installed && s->repo == installed)
3857 name = !name ? s->name : -1;
3860 solver_addjobrule(solv, -p, 0, 0, i, weak);
3862 /* special case for "erase a specific solvable": we also
3863 * erase all other solvables with that name, so that they
3864 * don't get picked up as replacement.
3865 * name is > 0 if exactly one installed solvable matched.
3867 /* XXX: look also at packages that obsolete this package? */
3872 FOR_PROVIDES(p, pp, name)
3874 s = pool->solvables + p;
3875 if (s->name != name)
3877 /* keep other versions installed */
3878 if (s->repo == installed)
3880 /* keep installcandidates of other jobs */
3881 if (MAPTST(&installcandidatemap, p))
3883 if (pool->implicitobsoleteusescolors && !pool_colormatch(pool, name_s, s))
3885 /* don't add the same rule twice */
3886 for (j = oldnrules; j < k; j++)
3887 if (solv->rules[j].p == -p)
3890 solver_addjobrule(solv, -p, 0, 0, i, weak); /* remove by id */
3896 POOL_DEBUG(SOLV_DEBUG_JOB, "job: %supdate %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
3899 POOL_DEBUG(SOLV_DEBUG_JOB, "job: %sverify %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
3901 case SOLVER_WEAKENDEPS:
3902 POOL_DEBUG(SOLV_DEBUG_JOB, "job: %sweaken deps %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
3903 if (select != SOLVER_SOLVABLE)
3905 s = pool->solvables + what;
3906 weaken_solvable_deps(solv, what);
3908 case SOLVER_MULTIVERSION:
3909 POOL_DEBUG(SOLV_DEBUG_JOB, "job: %smultiversion %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
3912 POOL_DEBUG(SOLV_DEBUG_JOB, "job: %slock %s\n", weak ? "weak " : "", solver_select2str(pool, select, what));
3913 if (select == SOLVER_SOLVABLE_ALL)
3915 FOR_POOL_SOLVABLES(p)
3916 solver_addjobrule(solv, installed && pool->solvables[p].repo == installed ? p : -p, 0, 0, i, weak);
3918 else if (select == SOLVER_SOLVABLE_REPO)
3920 Repo *repo = pool_id2repo(pool, what);
3923 FOR_REPO_SOLVABLES(repo, p, s)
3924 solver_addjobrule(solv, installed && pool->solvables[p].repo == installed ? p : -p, 0, 0, i, weak);
3927 FOR_JOB_SELECT(p, pp, select, what)
3928 solver_addjobrule(solv, installed && pool->solvables[p].repo == installed ? p : -p, 0, 0, i, weak);
3929 if (solv->nrules != oldnrules)
3932 case SOLVER_DISTUPGRADE:
3933 POOL_DEBUG(SOLV_DEBUG_JOB, "job: distupgrade %s\n", solver_select2str(pool, select, what));
3935 case SOLVER_DROP_ORPHANED:
3936 POOL_DEBUG(SOLV_DEBUG_JOB, "job: drop orphaned %s\n", solver_select2str(pool, select, what));
3938 case SOLVER_USERINSTALLED:
3939 POOL_DEBUG(SOLV_DEBUG_JOB, "job: user installed %s\n", solver_select2str(pool, select, what));
3941 case SOLVER_ALLOWUNINSTALL:
3942 POOL_DEBUG(SOLV_DEBUG_JOB, "job: allowuninstall %s\n", solver_select2str(pool, select, what));
3945 case SOLVER_DISFAVOR:
3946 POOL_DEBUG(SOLV_DEBUG_JOB, "job: %s %s\n", (how & SOLVER_JOBMASK) == SOLVER_FAVOR ? "favor" : "disfavor", solver_select2str(pool, select, what));
3950 POOL_DEBUG(SOLV_DEBUG_JOB, "job: unknown job\n");
3954 IF_POOLDEBUG (SOLV_DEBUG_JOB)
3957 if (solv->nrules == oldnrules)
3958 POOL_DEBUG(SOLV_DEBUG_JOB, " - no rule created\n");
3959 for (j = oldnrules; j < solv->nrules; j++)
3961 POOL_DEBUG(SOLV_DEBUG_JOB, " - job ");
3962 solver_printrule(solv, SOLV_DEBUG_JOB, solv->rules + j);
3966 assert(solv->ruletojob.count == solv->nrules - solv->jobrules);
3967 solv->jobrules_end = solv->nrules;
3969 /* create favormap if we have favor jobs */
3971 setup_favormap(solv);
3973 /* now create infarch and dup rules */
3974 if (!solv->noinfarchcheck)
3975 solver_addinfarchrules(solv, &addedmap);
3977 solv->infarchrules = solv->infarchrules_end = solv->nrules;
3979 if (solv->dupinvolvedmap_all || solv->dupinvolvedmap.size)
3980 solver_addduprules(solv, &addedmap);
3982 solv->duprules = solv->duprules_end = solv->nrules;
3984 #ifdef ENABLE_LINKED_PKGS
3985 if (solv->instbuddy && solv->updatemap.size)
3986 extend_updatemap_to_buddies(solv);
3989 if (solv->bestupdatemap_all || solv->bestupdatemap.size || hasbestinstalljob)
3990 solver_addbestrules(solv, hasbestinstalljob, haslockjob);
3992 solv->bestrules = solv->bestrules_end = solv->bestrules_up = solv->nrules;
3995 solver_freedupmaps(solv); /* no longer needed */
3997 if (solv->do_yum_obsoletes)
3998 solver_addyumobsrules(solv);
4000 solv->yumobsrules = solv->yumobsrules_end = solv->nrules;
4002 if (solv->havedisfavored && solv->strongrecommends && solv->recommendsruleq)
4003 solver_addrecommendsrules(solv);
4005 solv->recommendsrules = solv->recommendsrules_end = solv->nrules;
4008 solver_addchoicerules(solv);
4010 solv->choicerules = solv->choicerules_end = solv->nrules;
4012 /* all rules created
4013 * --------------------------------------------------------------
4014 * prepare for solving
4017 /* free unneeded memory */
4018 map_free(&addedmap);
4019 map_free(&installcandidatemap);
4022 POOL_DEBUG(SOLV_DEBUG_STATS, "%d pkg rules, 2 * %d update rules, %d job rules, %d infarch rules, %d dup rules, %d choice rules, %d best rules, %d yumobs rules\n", solv->pkgrules_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, solv->yumobsrules_end - solv->yumobsrules);
4023 POOL_DEBUG(SOLV_DEBUG_STATS, "overall rule memory used: %d K\n", solv->nrules * (int)sizeof(Rule) / 1024);
4025 /* create weak map */
4026 if (solv->weakruleq.count || solv->recommendsruleq)
4028 map_grow(&solv->weakrulemap, solv->nrules);
4029 for (i = 0; i < solv->weakruleq.count; i++)
4031 p = solv->weakruleq.elements[i];
4032 MAPSET(&solv->weakrulemap, p);
4034 if (solv->recommendsruleq)
4036 for (i = 0; i < solv->recommendsruleq->count; i++)
4038 p = solv->recommendsruleq->elements[i];
4039 MAPSET(&solv->weakrulemap, p);
4044 /* enable cleandepsmap creation if we have updatepkgs */
4045 if (solv->cleandeps_updatepkgs && !solv->cleandepsmap.size)
4046 map_grow(&solv->cleandepsmap, installed->end - installed->start);
4048 if (solv->cleandeps_mistakes)
4050 queue_free(solv->cleandeps_mistakes);
4051 solv->cleandeps_mistakes = solv_free(solv->cleandeps_mistakes);
4054 /* all new rules are learnt after this point */
4055 solv->learntrules = solv->nrules;
4057 /* create watches chains */
4060 /* create assertion index. it is only used to speed up
4061 * makeruledecsions() a bit */
4062 for (i = 1, r = solv->rules + i; i < solv->nrules; i++, r++)
4063 if (r->p && !r->w2 && (r->d == 0 || r->d == -1))
4064 queue_push(&solv->ruleassertions, i);
4066 /* disable update rules that conflict with our job */
4067 solver_disablepolicyrules(solv);
4069 /* break orphans if requested */
4070 if (solv->process_orphans && solv->orphaned.count && solv->break_orphans)
4071 solver_breakorphans(solv);
4074 * ********************************************
4076 * ********************************************
4079 now = solv_timems(0);
4080 solver_run_sat(solv, 1, solv->dontinstallrecommended ? 0 : 1);
4081 POOL_DEBUG(SOLV_DEBUG_STATS, "solver took %d ms\n", solv_timems(now));
4084 * prepare solution queue if there were problems
4086 solver_prepare_solutions(solv);
4088 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);
4089 POOL_DEBUG(SOLV_DEBUG_STATS, "solver_solve took %d ms\n", solv_timems(solve_start));
4091 /* return number of problems */
4092 return solv->problems.count ? solv->problems.count / 2 : 0;
4096 solver_create_transaction(Solver *solv)
4098 return transaction_create_decisionq(solv->pool, &solv->decisionq, &solv->multiversion);
4101 void solver_get_orphaned(Solver *solv, Queue *orphanedq)
4103 queue_free(orphanedq);
4104 queue_init_clone(orphanedq, &solv->orphaned);
4107 void solver_get_cleandeps(Solver *solv, Queue *cleandepsq)
4109 Pool *pool = solv->pool;
4110 Repo *installed = solv->installed;
4115 queue_empty(cleandepsq);
4116 if (!installed || !solv->cleandepsmap.size)
4118 FOR_REPO_SOLVABLES(installed, p, s)
4120 if (!MAPTST(&solv->cleandepsmap, p - installed->start) || solv->decisionmap[p] >= 0)
4122 /* now check the update rule */
4123 r = solv->rules + solv->updaterules + (p - solv->installed->start);
4126 FOR_RULELITERALS(pr, pp, r)
4127 if (solv->decisionmap[pr] > 0)
4132 queue_push(cleandepsq, p);
4136 void solver_get_recommendations(Solver *solv, Queue *recommendationsq, Queue *suggestionsq, int noselected)
4138 Pool *pool = solv->pool;
4139 Queue redoq, disabledq;
4145 if (!recommendationsq && !suggestionsq)
4148 map_init(&obsmap, pool->nsolvables);
4149 if (solv->installed)
4151 Id obs, *obsp, p, po, ppo;
4152 for (p = solv->installed->start; p < solv->installed->end; p++)
4154 s = pool->solvables + p;
4155 if (s->repo != solv->installed || !s->obsoletes)
4157 if (solv->decisionmap[p] <= 0)
4159 if (solv->multiversion.size && MAPTST(&solv->multiversion, p))
4161 obsp = s->repo->idarraydata + s->obsoletes;
4162 /* foreach obsoletes */
4163 while ((obs = *obsp++) != 0)
4164 FOR_PROVIDES(po, ppo, obs)
4165 MAPSET(&obsmap, po);
4170 queue_init(&disabledq);
4172 /* disable all erase jobs (including weak "keep uninstalled" rules) */
4173 for (i = solv->jobrules, r = solv->rules + i; i < solv->jobrules_end; i++, r++)
4175 if (r->d < 0) /* disabled ? */
4177 if (r->p >= 0) /* install job? */
4179 queue_push(&disabledq, i);
4180 solver_disablerule(solv, r);
4186 enabledisablelearntrules(solv);
4187 removedisabledconflicts(solv, &redoq);
4191 * find recommended packages
4193 if (recommendationsq)
4195 Id rec, *recp, p, pp;
4197 queue_empty(recommendationsq);
4198 /* create map of all recommened packages */
4199 solv->recommends_index = -1;
4200 MAPZERO(&solv->recommendsmap);
4202 /* put all packages the solver already chose in the map */
4203 for (i = 1; i < solv->decisionq.count; i++)
4204 if ((p = solv->decisionq.elements[i]) > 0 && solv->decisionq_why.elements[i] == 0)
4206 if (solv->decisionq_reason.elements[solv->decisionmap[p]] == SOLVER_REASON_WEAKDEP)
4207 MAPSET(&solv->recommendsmap, p);
4210 for (i = 0; i < solv->decisionq.count; i++)
4212 p = solv->decisionq.elements[i];
4215 s = pool->solvables + p;
4218 recp = s->repo->idarraydata + s->recommends;
4219 while ((rec = *recp++) != 0)
4221 #ifdef ENABLE_COMPLEX_DEPS
4222 if (pool_is_complex_dep(pool, rec))
4224 do_complex_recommendations(solv, rec, &solv->recommendsmap, noselected);
4228 FOR_PROVIDES(p, pp, rec)
4229 if (solv->decisionmap[p] > 0)
4235 FOR_PROVIDES(p, pp, rec)
4236 if (solv->decisionmap[p] > 0)
4237 MAPSET(&solv->recommendsmap, p);
4239 continue; /* p != 0: already fulfilled */
4241 FOR_PROVIDES(p, pp, rec)
4242 MAPSET(&solv->recommendsmap, p);
4246 for (i = 1; i < pool->nsolvables; i++)
4248 if (solv->decisionmap[i] < 0)
4250 if (solv->decisionmap[i] > 0 && noselected)
4252 if (MAPTST(&obsmap, i))
4254 s = pool->solvables + i;
4255 if (!MAPTST(&solv->recommendsmap, i))
4257 if (!s->supplements)
4259 if (!pool_installable(pool, s))
4261 if (!solver_is_supplementing(solv, s))
4264 queue_push(recommendationsq, i);
4266 /* we use MODE_SUGGEST here so that repo prio is ignored */
4267 policy_filter_unwanted(solv, recommendationsq, POLICY_MODE_SUGGEST);
4271 * find suggested packages
4276 Id sug, *sugp, p, pp;
4278 queue_empty(suggestionsq);
4279 /* create map of all suggests that are still open */
4280 solv->recommends_index = -1;
4281 MAPZERO(&solv->suggestsmap);
4282 for (i = 0; i < solv->decisionq.count; i++)
4284 p = solv->decisionq.elements[i];
4287 s = pool->solvables + p;
4290 sugp = s->repo->idarraydata + s->suggests;
4291 while ((sug = *sugp++) != 0)
4293 #ifdef ENABLE_COMPLEX_DEPS
4294 if (pool_is_complex_dep(pool, sug))
4296 do_complex_recommendations(solv, sug, &solv->suggestsmap, noselected);
4300 FOR_PROVIDES(p, pp, sug)
4301 if (solv->decisionmap[p] > 0)
4307 FOR_PROVIDES(p, pp, sug)
4308 if (solv->decisionmap[p] > 0)
4309 MAPSET(&solv->suggestsmap, p);
4311 continue; /* already fulfilled */
4313 FOR_PROVIDES(p, pp, sug)
4314 MAPSET(&solv->suggestsmap, p);
4318 for (i = 1; i < pool->nsolvables; i++)
4320 if (solv->decisionmap[i] < 0)
4322 if (solv->decisionmap[i] > 0 && noselected)
4324 if (MAPTST(&obsmap, i))
4326 s = pool->solvables + i;
4327 if (!MAPTST(&solv->suggestsmap, i))
4331 if (!pool_installable(pool, s))
4333 if (!solver_is_enhancing(solv, s))
4336 queue_push(suggestionsq, i);
4338 policy_filter_unwanted(solv, suggestionsq, POLICY_MODE_SUGGEST);
4341 /* undo removedisabledconflicts */
4343 undo_removedisabledconflicts(solv, &redoq);
4346 /* undo job rule disabling */
4347 for (i = 0; i < disabledq.count; i++)
4348 solver_enablerule(solv, solv->rules + disabledq.elements[i]);
4349 queue_free(&disabledq);
4354 /***********************************************************************/
4355 /* disk usage computations */
4357 /*-------------------------------------------------------------------
4359 * calculate DU changes
4363 solver_calc_duchanges(Solver *solv, DUChanges *mps, int nmps)
4367 solver_create_state_maps(solv, &installedmap, 0);
4368 pool_calc_duchanges(solv->pool, &installedmap, mps, nmps);
4369 map_free(&installedmap);
4373 /*-------------------------------------------------------------------
4375 * calculate changes in install size
4379 solver_calc_installsizechange(Solver *solv)
4384 solver_create_state_maps(solv, &installedmap, 0);
4385 change = pool_calc_installsizechange(solv->pool, &installedmap);
4386 map_free(&installedmap);
4391 solver_create_state_maps(Solver *solv, Map *installedmap, Map *conflictsmap)
4393 pool_create_state_maps(solv->pool, &solv->decisionq, installedmap, conflictsmap);
4396 /*-------------------------------------------------------------------
4398 * decision introspection
4402 solver_get_decisionlevel(Solver *solv, Id p)
4404 return solv->decisionmap[p];
4408 solver_get_decisionqueue(Solver *solv, Queue *decisionq)
4410 queue_free(decisionq);
4411 queue_init_clone(decisionq, &solv->decisionq);
4415 solver_get_lastdecisionblocklevel(Solver *solv)
4418 if (solv->decisionq.count == 0)
4420 p = solv->decisionq.elements[solv->decisionq.count - 1];
4423 return solv->decisionmap[p] < 0 ? -solv->decisionmap[p] : solv->decisionmap[p];
4427 solver_get_decisionblock(Solver *solv, int level, Queue *decisionq)
4432 queue_empty(decisionq);
4433 for (i = 0; i < solv->decisionq.count; i++)
4435 p = solv->decisionq.elements[i];
4438 if (solv->decisionmap[p] == level || solv->decisionmap[p] == -level)
4441 if (i == solv->decisionq.count)
4443 for (i = 0; i < solv->decisionq.count; i++)
4445 p = solv->decisionq.elements[i];
4448 if (solv->decisionmap[p] == level || solv->decisionmap[p] == -level)
4449 queue_push(decisionq, p);
4456 solver_describe_decision(Solver *solv, Id p, Id *infop)
4463 if (!solv->decisionmap[p])
4464 return SOLVER_REASON_UNRELATED;
4465 pp = solv->decisionmap[p] < 0 ? -p : p;
4466 for (i = 0; i < solv->decisionq.count; i++)
4467 if (solv->decisionq.elements[i] == pp)
4469 if (i == solv->decisionq.count) /* just in case... */
4470 return SOLVER_REASON_UNRELATED;
4471 why = solv->decisionq_why.elements[i];
4473 *infop = why > 0 ? why : -why;
4475 return SOLVER_REASON_UNIT_RULE;
4476 i = solv->decisionmap[p] >= 0 ? solv->decisionmap[p] : -solv->decisionmap[p];
4477 return solv->decisionq_reason.elements[i];
4482 solver_describe_weakdep_decision(Solver *solv, Id p, Queue *whyq)
4484 Pool *pool = solv->pool;
4486 int level = solv->decisionmap[p];
4493 for (decisionno = 0; decisionno < solv->decisionq.count; decisionno++)
4494 if (solv->decisionq.elements[decisionno] == p)
4496 if (decisionno == solv->decisionq.count)
4498 i = solv->decisionmap[p] >= 0 ? solv->decisionmap[p] : -solv->decisionmap[p];
4499 if (solv->decisionq_reason.elements[i] != SOLVER_REASON_WEAKDEP)
4502 /* 1) list all packages that recommend us */
4503 for (i = 1; i < pool->nsolvables; i++)
4505 Id *recp, rec, pp2, p2;
4506 if (solv->decisionmap[i] <= 0 || solv->decisionmap[i] >= level)
4508 s = pool->solvables + i;
4511 if (!solv->addalreadyrecommended && s->repo == solv->installed)
4513 recp = s->repo->idarraydata + s->recommends;
4514 while ((rec = *recp++) != 0)
4517 FOR_PROVIDES(p2, pp2, rec)
4523 /* if p2 is already installed, this recommends is ignored */
4524 if (solv->decisionmap[p2] > 0 && solv->decisionmap[p2] < level)
4530 queue_push(whyq, SOLVER_REASON_RECOMMENDED);
4531 queue_push2(whyq, i, rec);
4535 /* 2) list all supplements */
4536 s = pool->solvables + p;
4537 if (s->supplements && level > 0)
4539 Id *supp, sup, pp2, p2;
4540 /* this is a hack. to use solver_dep_fulfilled we temporarily clear
4541 * everything above our level in the decisionmap */
4542 for (i = decisionno; i < solv->decisionq.count; i++ )
4544 p2 = solv->decisionq.elements[i];
4546 solv->decisionmap[p2] = -solv->decisionmap[p2];
4548 supp = s->repo->idarraydata + s->supplements;
4549 while ((sup = *supp++) != 0)
4550 if (solver_dep_fulfilled(solv, sup))
4553 /* let's see if this is an easy supp */
4554 FOR_PROVIDES(p2, pp2, sup)
4556 if (!solv->addalreadyrecommended && solv->installed)
4558 if (pool->solvables[p2].repo == solv->installed)
4561 if (solv->decisionmap[p2] > 0 && solv->decisionmap[p2] < level)
4563 queue_push(whyq, SOLVER_REASON_SUPPLEMENTED);
4564 queue_push2(whyq, p2, sup);
4570 /* hard case, just note dependency with no package */
4571 queue_push(whyq, SOLVER_REASON_SUPPLEMENTED);
4572 queue_push2(whyq, 0, sup);
4575 for (i = decisionno; i < solv->decisionq.count; i++)
4577 p2 = solv->decisionq.elements[i];
4579 solv->decisionmap[p2] = -solv->decisionmap[p2];
4585 pool_job2solvables(Pool *pool, Queue *pkgs, Id how, Id what)
4588 how &= SOLVER_SELECTMASK;
4590 if (how == SOLVER_SOLVABLE_ALL)
4592 FOR_POOL_SOLVABLES(p)
4593 queue_push(pkgs, p);
4595 else if (how == SOLVER_SOLVABLE_REPO)
4597 Repo *repo = pool_id2repo(pool, what);
4601 FOR_REPO_SOLVABLES(repo, p, s)
4602 queue_push(pkgs, p);
4607 FOR_JOB_SELECT(p, pp, how, what)
4608 queue_push(pkgs, p);
4613 pool_isemptyupdatejob(Pool *pool, Id how, Id what)
4616 Id select = how & SOLVER_SELECTMASK;
4617 if ((how & SOLVER_JOBMASK) != SOLVER_UPDATE)
4619 if (select == SOLVER_SOLVABLE_ALL || select == SOLVER_SOLVABLE_REPO)
4621 if (!pool->installed)
4623 FOR_JOB_SELECT(p, pp, select, what)
4624 if (pool->solvables[p].repo == pool->installed)
4627 FOR_JOB_SELECT(p, pp, select, what)
4629 Solvable *s = pool->solvables + p;
4630 FOR_PROVIDES(pi, pip, s->name)
4632 Solvable *si = pool->solvables + pi;
4633 if (si->repo != pool->installed || si->name != s->name)
4639 Id obs, *obsp = s->repo->idarraydata + s->obsoletes;
4640 while ((obs = *obsp++) != 0)
4642 FOR_PROVIDES(pi, pip, obs)
4644 Solvable *si = pool->solvables + pi;
4645 if (si->repo != pool->installed)
4647 if (!pool->obsoleteusesprovides && !pool_match_nevr(pool, si, obs))
4649 if (pool->obsoleteusescolors && !pool_colormatch(pool, s, si))
4660 solver_alternatives_count(Solver *solv)
4662 Id *elements = solv->branches.elements;
4664 for (res = 0, count = solv->branches.count; count; res++)
4665 count -= elements[count - 2];
4670 solver_get_alternative(Solver *solv, Id alternative, Id *idp, Id *fromp, Id *chosenp, Queue *choices, int *levelp)
4672 int cnt = solver_alternatives_count(solv);
4673 int count = solv->branches.count;
4674 Id *elements = solv->branches.elements;
4676 queue_empty(choices);
4677 if (alternative <= 0 || alternative > cnt)
4680 for (; cnt > alternative; cnt--)
4681 elements -= elements[-2];
4683 *levelp = elements[-1];
4685 *fromp = elements[-4];
4687 *idp = elements[-3];
4692 for (i = elements[-2]; i > 4; i--)
4694 Id p = -elements[-i];
4695 if (p > 0 && solv->decisionmap[p] == elements[-1] + 1)
4703 queue_insertn(choices, 0, elements[-2] - 4, elements - elements[-2]);
4704 return elements[-4] ? SOLVER_ALTERNATIVE_TYPE_RECOMMENDS : SOLVER_ALTERNATIVE_TYPE_RULE;
4708 solver_select2str(Pool *pool, Id select, Id what)
4712 select &= SOLVER_SELECTMASK;
4713 if (select == SOLVER_SOLVABLE)
4714 return pool_solvid2str(pool, what);
4715 if (select == SOLVER_SOLVABLE_NAME)
4716 return pool_dep2str(pool, what);
4717 if (select == SOLVER_SOLVABLE_PROVIDES)
4719 s = pool_dep2str(pool, what);
4720 b = pool_alloctmpspace(pool, 11 + strlen(s));
4721 sprintf(b, "providing %s", s);
4724 if (select == SOLVER_SOLVABLE_ONE_OF)
4728 while ((p = pool->whatprovidesdata[what++]) != 0)
4730 s = pool_solvid2str(pool, p);
4732 b = pool_tmpappend(pool, b, ", ", s);
4734 b = pool_tmpjoin(pool, s, 0, 0);
4735 pool_freetmpspace(pool, s);
4737 return b ? b : "nothing";
4739 if (select == SOLVER_SOLVABLE_REPO)
4741 b = pool_alloctmpspace(pool, 20);
4742 sprintf(b, "repo #%d", what);
4745 if (select == SOLVER_SOLVABLE_ALL)
4746 return "all packages";
4747 return "unknown job select";
4751 pool_job2str(Pool *pool, Id how, Id what, Id flagmask)
4753 Id select = how & SOLVER_SELECTMASK;
4754 const char *strstart = 0, *strend = 0;
4758 switch (how & SOLVER_JOBMASK)
4761 return "do nothing";
4762 case SOLVER_INSTALL:
4763 if (select == SOLVER_SOLVABLE && pool->installed && pool->solvables[what].repo == pool->installed)
4764 strstart = "keep ", strend = " installed";
4765 else if (select == SOLVER_SOLVABLE || select == SOLVER_SOLVABLE_NAME)
4766 strstart = "install ";
4767 else if (select == SOLVER_SOLVABLE_PROVIDES)
4768 strstart = "install a package ";
4770 strstart = "install one of ";
4773 if (select == SOLVER_SOLVABLE && !(pool->installed && pool->solvables[what].repo == pool->installed))
4774 strstart = "keep ", strend = " uninstalled";
4775 else if (select == SOLVER_SOLVABLE_PROVIDES)
4776 strstart = "deinstall all packages ";
4778 strstart = "deinstall ";
4781 strstart = "update ";
4783 case SOLVER_WEAKENDEPS:
4784 strstart = "weaken deps of ";
4786 case SOLVER_MULTIVERSION:
4787 strstart = "multi version ";
4792 case SOLVER_DISTUPGRADE:
4793 strstart = "dist upgrade ";
4796 strstart = "verify ";
4798 case SOLVER_DROP_ORPHANED:
4799 strstart = "deinstall ", strend = " if orphaned";
4801 case SOLVER_USERINSTALLED:
4802 strstart = "regard ", strend = " as userinstalled";
4804 case SOLVER_ALLOWUNINSTALL:
4805 strstart = "allow deinstallation of ";
4808 strstart = "favor ";
4810 case SOLVER_DISFAVOR:
4811 strstart = "disfavor ";
4814 strstart = "unknown job ";
4817 s = pool_tmpjoin(pool, strstart, solver_select2str(pool, select, what), strend);
4819 if ((how & ~(SOLVER_SELECTMASK|SOLVER_JOBMASK)) == 0)
4822 s = pool_tmpappend(pool, s, " ", 0);
4823 if (how & SOLVER_WEAK)
4824 s = pool_tmpappend(pool, s, ",weak", 0);
4825 if (how & SOLVER_ESSENTIAL)
4826 s = pool_tmpappend(pool, s, ",essential", 0);
4827 if (how & SOLVER_CLEANDEPS)
4828 s = pool_tmpappend(pool, s, ",cleandeps", 0);
4829 if (how & SOLVER_ORUPDATE)
4830 s = pool_tmpappend(pool, s, ",orupdate", 0);
4831 if (how & SOLVER_FORCEBEST)
4832 s = pool_tmpappend(pool, s, ",forcebest", 0);
4833 if (how & SOLVER_TARGETED)
4834 s = pool_tmpappend(pool, s, ",targeted", 0);
4835 if (how & SOLVER_SETEV)
4836 s = pool_tmpappend(pool, s, ",setev", 0);
4837 if (how & SOLVER_SETEVR)
4838 s = pool_tmpappend(pool, s, ",setevr", 0);
4839 if (how & SOLVER_SETARCH)
4840 s = pool_tmpappend(pool, s, ",setarch", 0);
4841 if (how & SOLVER_SETVENDOR)
4842 s = pool_tmpappend(pool, s, ",setvendor", 0);
4843 if (how & SOLVER_SETREPO)
4844 s = pool_tmpappend(pool, s, ",setrepo", 0);
4845 if (how & SOLVER_SETNAME)
4846 s = pool_tmpappend(pool, s, ",setname", 0);
4847 if (how & SOLVER_NOAUTOSET)
4848 s = pool_tmpappend(pool, s, ",noautoset", 0);
4849 if (s[o + 1] != ',')
4850 s = pool_tmpappend(pool, s, ",?", 0);
4852 return pool_tmpappend(pool, s, "]", 0);
4856 solver_alternative2str(Solver *solv, int type, Id id, Id from)
4858 Pool *pool = solv->pool;
4859 if (type == SOLVER_ALTERNATIVE_TYPE_RECOMMENDS)
4861 const char *s = pool_dep2str(pool, id);
4862 return pool_tmpappend(pool, s, ", recommended by ", pool_solvid2str(pool, from));
4864 if (type == SOLVER_ALTERNATIVE_TYPE_RULE)
4867 Id depfrom, depto, dep;
4869 if (solver_ruleclass(solv, id) == SOLVER_RULE_CHOICE)
4870 id = solver_rule2pkgrule(solv, id);
4871 if (solver_ruleclass(solv, id) == SOLVER_RULE_RECOMMENDS)
4872 id = solver_rule2pkgrule(solv, id);
4873 rtype = solver_ruleinfo(solv, id, &depfrom, &depto, &dep);
4874 if ((rtype & SOLVER_RULE_TYPEMASK) == SOLVER_RULE_JOB)
4876 if ((depto & SOLVER_SELECTMASK) == SOLVER_SOLVABLE_PROVIDES)
4877 return pool_dep2str(pool, dep);
4878 return solver_select2str(pool, depto & SOLVER_SELECTMASK, dep);
4880 if (rtype == SOLVER_RULE_PKG_REQUIRES)
4882 const char *s = pool_dep2str(pool, dep);
4883 return pool_tmpappend(pool, s, ", required by ", pool_solvid2str(pool, depfrom));
4885 sprintf(buf, "Rule #%d", id);
4886 return pool_tmpjoin(pool, buf, 0, 0);
4888 return "unknown alternative type";