2 * Copyright (c) 2007, Novell Inc.
4 * This program is licensed under the BSD license, read LICENSE.BSD
5 * for further information
11 * SAT based dependency solver
26 #include "solverdebug.h"
28 #define CODE10 0 /* set to '1' to enable patch atoms */
30 #define RULES_BLOCK 63
32 /********************************************************************
34 * dependency check helpers
38 /*-------------------------------------------------------------------
39 * handle split provides
43 solver_splitprovides(Solver *solv, Id dep)
45 Pool *pool = solv->pool;
50 if (!solv->dosplitprovides || !solv->installed)
54 rd = GETRELDEP(pool, dep);
55 if (rd->flags != REL_WITH)
57 FOR_PROVIDES(p, pp, dep)
59 s = pool->solvables + p;
60 if (s->repo == solv->installed && s->name == rd->name)
67 /*-------------------------------------------------------------------
68 * solver_dep_installed
72 solver_dep_installed(Solver *solv, Id dep)
75 Pool *pool = solv->pool;
80 Reldep *rd = GETRELDEP(pool, dep);
81 if (rd->flags == REL_AND)
83 if (!solver_dep_installed(solv, rd->name))
85 return solver_dep_installed(solv, rd->evr);
87 if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_INSTALLED)
88 return solver_dep_installed(solv, rd->evr);
90 FOR_PROVIDES(p, pp, dep)
92 if (p == SYSTEMSOLVABLE || (solv->installed && pool->solvables[p].repo == solv->installed))
100 /*-------------------------------------------------------------------
101 * Check if dependenc is possible
103 * this mirrors solver_dep_fulfilled
104 * but uses map m instead of the decisionmap
108 dep_possible(Solver *solv, Id dep, Map *m)
110 Pool *pool = solv->pool;
115 Reldep *rd = GETRELDEP(pool, dep);
116 if (rd->flags == REL_AND)
118 if (!dep_possible(solv, rd->name, m))
120 return dep_possible(solv, rd->evr, m);
122 if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_SPLITPROVIDES)
123 return solver_splitprovides(solv, rd->evr);
124 if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_INSTALLED)
125 return solver_dep_installed(solv, rd->evr);
127 FOR_PROVIDES(p, pp, dep)
135 /********************************************************************
139 * - unify rules, remove duplicates
142 static Pool *unifyrules_sortcmp_data;
144 /*-------------------------------------------------------------------
146 * compare rules for unification sort
151 unifyrules_sortcmp(const void *ap, const void *bp)
153 Pool *pool = unifyrules_sortcmp_data;
154 Rule *a = (Rule *)ap;
155 Rule *b = (Rule *)bp;
161 return x; /* p differs */
164 if (a->d == 0 && b->d == 0)
165 return a->w2 - b->w2; /* assertion: return w2 diff */
167 if (a->d == 0) /* a is assertion, b not */
169 x = a->w2 - pool->whatprovidesdata[b->d];
173 if (b->d == 0) /* b is assertion, a not */
175 x = pool->whatprovidesdata[a->d] - b->w2;
179 /* compare whatprovidesdata */
180 ad = pool->whatprovidesdata + a->d;
181 bd = pool->whatprovidesdata + b->d;
183 if ((x = *ad++ - *bd++) != 0)
189 /*-------------------------------------------------------------------
192 * go over all rules and remove duplicates
196 unifyrules(Solver *solv)
198 Pool *pool = solv->pool;
202 if (solv->nrules <= 1) /* nothing to unify */
205 POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- unifyrules -----\n");
207 /* sort rules first */
208 unifyrules_sortcmp_data = solv->pool;
209 qsort(solv->rules + 1, solv->nrules - 1, sizeof(Rule), unifyrules_sortcmp);
216 for (i = j = 1, ir = solv->rules + i; i < solv->nrules; i++, ir++)
218 if (jr && !unifyrules_sortcmp(ir, jr))
219 continue; /* prune! */
220 jr = solv->rules + j++; /* keep! */
225 /* reduced count from nrules to j rules */
226 POOL_DEBUG(SAT_DEBUG_STATS, "pruned rules from %d to %d\n", solv->nrules, j);
228 /* adapt rule buffer */
230 solv->rules = sat_extend_resize(solv->rules, solv->nrules, sizeof(Rule), RULES_BLOCK);
234 IF_POOLDEBUG (SAT_DEBUG_STATS)
241 for (i = 1; i < solv->nrules; i++)
248 dp = solv->pool->whatprovidesdata + r->d;
253 POOL_DEBUG(SAT_DEBUG_STATS, " binary: %d\n", binr);
254 POOL_DEBUG(SAT_DEBUG_STATS, " normal: %d, %d literals\n", solv->nrules - 1 - binr, lits);
256 POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- unifyrules end -----\n");
266 hashrule(Solver *solv, Id p, Id d, int n)
268 unsigned int x = (unsigned int)p;
272 return (x * 37) ^ (unsigned int)d;
273 dp = solv->pool->whatprovidesdata + d;
275 x = (x * 37) ^ (unsigned int)*dp++;
281 /*-------------------------------------------------------------------
287 * p = direct literal; always < 0 for installed rpm rules
288 * d, if < 0 direct literal, if > 0 offset into whatprovides, if == 0 rule is assertion (look at p only)
291 * A requires b, b provided by B1,B2,B3 => (-A|B1|B2|B3)
293 * p < 0 : pkg id of A
294 * d > 0 : Offset in whatprovidesdata (list of providers of b)
296 * A conflicts b, b provided by B1,B2,B3 => (-A|-B1), (-A|-B2), (-A|-B3)
297 * p < 0 : pkg id of A
298 * d < 0 : Id of solvable (e.g. B1)
300 * d == 0: unary rule, assertion => (A) or (-A)
302 * Install: p > 0, d = 0 (A) user requested install
303 * Remove: p < 0, d = 0 (-A) user requested remove
304 * Requires: p < 0, d > 0 (-A|B1|B2|...) d: <list of providers for requirement of p>
305 * Updates: p > 0, d > 0 (A|B1|B2|...) d: <list of updates for solvable p>
306 * Conflicts: p < 0, d < 0 (-A|-B) either p (conflict issuer) or d (conflict provider) (binary rule)
307 * ? p > 0, d < 0 (A|-B)
308 * No-op ?: p = 0, d = 0 (null) (used as policy rule placeholder)
312 * Direct assertion (no watch needed)( if d <0 ) --> d = 0, w1 = p, w2 = 0
313 * Binary rule: p = first literal, d = 0, w2 = second literal, w1 = p
314 * every other : w1 = p, w2 = whatprovidesdata[d];
315 * Disabled rule: w1 = 0
317 * always returns a rule for non-rpm rules
321 addrule(Solver *solv, Id p, Id d)
323 Pool *pool = solv->pool;
327 int n = 0; /* number of literals in rule - 1
328 0 = direct assertion (single literal)
333 /* it often happenes that requires lead to adding the same rpm rule
334 * multiple times, so we prune those duplicates right away to make
335 * the work for unifyrules a bit easier */
337 if (solv->nrules /* we already have rules */
338 && !solv->rpmrules_end) /* but are not done with rpm rules */
340 r = solv->rules + solv->nrules - 1; /* get the last added rule */
341 if (r->p == p && r->d == d && d != 0) /* identical and not user requested */
346 * compute number of literals (n) in rule
351 /* always a binary rule */
353 return 0; /* ignore self conflict */
358 for (dp = pool->whatprovidesdata + d; *dp; dp++, n++)
360 return 0; /* rule is self-fulfilling */
362 if (n == 1) /* have single provider */
363 d = dp[-1]; /* take single literal */
367 if (n == 0 && !solv->rpmrules_end)
369 /* this is a rpm rule assertion, we do not have to allocate it */
370 /* it can be identified by a level of 1 and a zero reason */
371 /* we must not drop those rules from the decisionq when rewinding! */
373 assert(solv->decisionmap[-p] == 0 || solv->decisionmap[-p] == -1);
374 if (solv->decisionmap[-p])
375 return 0; /* already got that one */
376 queue_push(&solv->decisionq, p);
377 queue_push(&solv->decisionq_why, 0);
378 solv->decisionmap[-p] = -1;
385 /* smallest literal first so we can find dups */
386 n = p; p = d; d = n; /* p <-> d */
387 n = 1; /* re-set n, was used as temp var */
391 * check for duplicate
394 /* check if the last added rule (r) is exactly the same as what we're looking for. */
395 if (r && n == 1 && !r->d && r->p == p && r->w2 == d)
396 return r; /* binary rule */
398 /* have n-ary rule with same first literal, check other literals */
399 if (r && n > 1 && r->d && r->p == p)
401 /* Rule where d is an offset in whatprovidesdata */
405 dp2 = pool->whatprovidesdata + r->d;
406 for (dp = pool->whatprovidesdata + d; *dp; dp++, dp2++)
417 /* extend rule buffer */
418 solv->rules = sat_extend(solv->rules, solv->nrules, 1, sizeof(Rule), RULES_BLOCK);
419 r = solv->rules + solv->nrules++; /* point to rule space */
428 /* direct assertion, no watch needed */
444 r->w2 = pool->whatprovidesdata[d];
449 IF_POOLDEBUG (SAT_DEBUG_RULE_CREATION)
451 POOL_DEBUG(SAT_DEBUG_RULE_CREATION, " Add rule: ");
452 solver_printrule(solv, SAT_DEBUG_RULE_CREATION, r);
458 /*-------------------------------------------------------------------
463 disablerule(Solver *solv, Rule *r)
469 /*-------------------------------------------------------------------
474 enablerule(Solver *solv, Rule *r)
481 /**********************************************************************************/
483 /* a problem is an item on the solver's problem list. It can either be >0, in that
484 * case it is a update rule, or it can be <0, which makes it refer to a job
485 * consisting of multiple job rules.
489 disableproblem(Solver *solv, Id v)
497 disablerule(solv, solv->rules + v);
501 jp = solv->ruletojob.elements;
502 for (i = solv->jobrules, r = solv->rules + i; i < solv->jobrules_end; i++, r++, jp++)
504 disablerule(solv, r);
507 /*-------------------------------------------------------------------
512 enableproblem(Solver *solv, Id v)
520 if (v >= solv->featurerules && v < solv->featurerules_end)
522 /* do not enable feature rule if update rule is enabled */
523 r = solv->rules + (v - solv->featurerules + solv->updaterules);
527 enablerule(solv, solv->rules + v);
528 if (v >= solv->updaterules && v < solv->updaterules_end)
530 /* disable feature rule when enabling update rule */
531 r = solv->rules + (v - solv->updaterules + solv->featurerules);
533 disablerule(solv, r);
538 jp = solv->ruletojob.elements;
539 for (i = solv->jobrules, r = solv->rules + i; i < solv->jobrules_end; i++, r++, jp++)
545 /************************************************************************/
548 * make assertion rules into decisions
550 * go through update and job rules and add direct assertions
551 * to the decisionqueue. If we find a conflict, disable rules and
552 * add them to problem queue.
556 makeruledecisions(Solver *solv)
558 Pool *pool = solv->pool;
564 POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- makeruledecisions ; size decisionq: %d -----\n",solv->decisionq.count);
566 decisionstart = solv->decisionq.count;
567 for (ii = 0; ii < solv->ruleassertions.count; ii++)
569 ri = solv->ruleassertions.elements[ii];
570 r = solv->rules + ri;
572 if (r->d < 0 || !r->p || r->w2) /* disabled, dummy or no assertion */
574 /* do weak rules in phase 2 */
575 if (ri < solv->learntrules && MAPTST(&solv->weakrulemap, ri))
581 if (!solv->decisionmap[vv]) /* if not yet decided */
586 queue_push(&solv->decisionq, v);
587 queue_push(&solv->decisionq_why, r - solv->rules);
588 solv->decisionmap[vv] = v > 0 ? 1 : -1;
589 IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
591 Solvable *s = solv->pool->solvables + vv;
593 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "conflicting %s (assertion)\n", solvable2str(solv->pool, s));
595 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "installing %s (assertion)\n", solvable2str(solv->pool, s));
600 * check previous decision: is it sane ?
603 if (v > 0 && solv->decisionmap[vv] > 0) /* ok to install */
605 if (v < 0 && solv->decisionmap[vv] < 0) /* ok to remove */
611 * The rule (r) we're currently processing says something
612 * different (v = r->p) than a previous decision (decisionmap[abs(v)])
616 if (ri >= solv->learntrules)
618 /* conflict with a learnt rule */
619 /* can happen when packages cannot be installed for
620 * multiple reasons. */
621 /* we disable the learnt rule in this case */
622 disablerule(solv, r);
627 * find the decision which is the "opposite" of the rule
630 for (i = 0; i < solv->decisionq.count; i++)
631 if (solv->decisionq.elements[i] == -v)
633 assert(i < solv->decisionq.count); /* assert that we found it */
636 * conflict with system solvable ?
639 if (v == -SYSTEMSOLVABLE) {
640 /* conflict with system solvable */
641 queue_push(&solv->problems, solv->learnt_pool.count);
642 queue_push(&solv->learnt_pool, ri);
643 queue_push(&solv->learnt_pool, 0);
644 POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "conflict with system solvable, disabling rule #%d\n", ri);
645 if (ri >= solv->jobrules && ri < solv->jobrules_end)
646 v = -(solv->ruletojob.elements[ri - solv->jobrules] + 1);
649 queue_push(&solv->problems, v);
650 queue_push(&solv->problems, 0);
651 disableproblem(solv, v);
655 assert(solv->decisionq_why.elements[i]);
658 * conflict with an rpm rule ?
661 if (solv->decisionq_why.elements[i] < solv->rpmrules_end)
663 /* conflict with rpm rule assertion */
664 queue_push(&solv->problems, solv->learnt_pool.count);
665 queue_push(&solv->learnt_pool, ri);
666 queue_push(&solv->learnt_pool, solv->decisionq_why.elements[i]);
667 queue_push(&solv->learnt_pool, 0);
668 assert(v > 0 || v == -SYSTEMSOLVABLE);
669 POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "conflict with rpm rule, disabling rule #%d\n", ri);
670 if (ri >= solv->jobrules && ri < solv->jobrules_end)
671 v = -(solv->ruletojob.elements[ri - solv->jobrules] + 1);
674 queue_push(&solv->problems, v);
675 queue_push(&solv->problems, 0);
676 disableproblem(solv, v);
681 * conflict with another job or update/feature rule
685 queue_push(&solv->problems, solv->learnt_pool.count);
686 queue_push(&solv->learnt_pool, ri);
687 queue_push(&solv->learnt_pool, solv->decisionq_why.elements[i]);
688 queue_push(&solv->learnt_pool, 0);
690 POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "conflicting update/job assertions over literal %d\n", vv);
693 * push all of our rules (can only be feature or job rules)
694 * asserting this literal on the problem stack
697 for (i = solv->featurerules, rr = solv->rules + i; i < solv->learntrules; i++, rr++)
699 if (rr->d < 0 /* disabled */
700 || rr->w2) /* or no assertion */
702 if (rr->p != vv /* not affecting the literal */
705 if (MAPTST(&solv->weakrulemap, i)) /* weak: silently ignore */
708 POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, " - disabling rule #%d\n", i);
710 solver_printruleclass(solv, SAT_DEBUG_UNSOLVABLE, solv->rules + i);
713 /* is is a job rule ? */
714 if (i >= solv->jobrules && i < solv->jobrules_end)
715 v = -(solv->ruletojob.elements[i - solv->jobrules] + 1);
717 queue_push(&solv->problems, v);
718 disableproblem(solv, v);
720 queue_push(&solv->problems, 0);
724 * (back up from decisions)
726 while (solv->decisionq.count > decisionstart)
728 v = solv->decisionq.elements[--solv->decisionq.count];
729 --solv->decisionq_why.count;
731 solv->decisionmap[vv] = 0;
733 ii = -1; /* restarts loop at 0 */
737 * phase 2: now do the weak assertions
739 for (ii = 0; ii < solv->ruleassertions.count; ii++)
741 ri = solv->ruleassertions.elements[ii];
742 r = solv->rules + ri;
743 if (r->d < 0 || r->w2) /* disabled or no assertion */
745 if (!MAPTST(&solv->weakrulemap, ri)) /* skip non-weak */
751 * (if not yet decided)
753 if (!solv->decisionmap[vv])
755 queue_push(&solv->decisionq, v);
756 queue_push(&solv->decisionq_why, r - solv->rules);
757 solv->decisionmap[vv] = v > 0 ? 1 : -1;
758 IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
760 Solvable *s = solv->pool->solvables + vv;
762 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "conflicting %s (weak assertion)\n", solvable2str(solv->pool, s));
764 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "installing %s (weak assertion)\n", solvable2str(solv->pool, s));
769 * previously decided, sane ?
771 if (v > 0 && solv->decisionmap[vv] > 0)
773 if (v < 0 && solv->decisionmap[vv] < 0)
776 POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "assertion conflict, but I am weak, disabling ");
777 solver_printrule(solv, SAT_DEBUG_UNSOLVABLE, r);
778 disablerule(solv, r);
781 POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- makeruledecisions end; size decisionq: %d -----\n",solv->decisionq.count);
785 /*-------------------------------------------------------------------
786 * enable/disable learnt rules
788 * we have enabled or disabled some of our rules. We now reenable all
789 * of our learnt rules but the ones that were learnt from rules that
793 enabledisablelearntrules(Solver *solv)
795 Pool *pool = solv->pool;
800 POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "enabledisablelearntrules called\n");
801 for (i = solv->learntrules, r = solv->rules + i; i < solv->nrules; i++, r++)
803 whyp = solv->learnt_pool.elements + solv->learnt_why.elements[i - solv->learntrules];
804 while ((why = *whyp++) != 0)
806 assert(why > 0 && why < i);
807 if (solv->rules[why].d < 0)
810 /* why != 0: we found a disabled rule, disable the learnt rule */
811 if (why && r->d >= 0)
813 IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
815 POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "disabling ");
816 solver_printruleclass(solv, SAT_DEBUG_SOLUTIONS, r);
818 disablerule(solv, r);
820 else if (!why && r->d < 0)
822 IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
824 POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "re-enabling ");
825 solver_printruleclass(solv, SAT_DEBUG_SOLUTIONS, r);
833 /*-------------------------------------------------------------------
836 * Enable all rules, except learnt rules, which are
837 * - disabled and weak (set in weakrulemap)
842 enableweakrules(Solver *solv)
847 for (i = 1, r = solv->rules + i; i < solv->learntrules; i++, r++)
849 if (r->d >= 0) /* skip non-direct literals */
851 if (!MAPTST(&solv->weakrulemap, i))
858 /* FIXME: bad code ahead, replace as soon as possible */
859 /* FIXME: should probably look at SOLVER_INSTALL_SOLVABLE_ONE_OF */
861 /*-------------------------------------------------------------------
862 * disable update rules
866 disableupdaterules(Solver *solv, Queue *job, int jobidx)
868 Pool *pool = solv->pool;
870 Id how, what, p, *pp;
876 installed = solv->installed;
882 how = job->elements[jobidx] & ~SOLVER_WEAK;
885 case SOLVER_INSTALL_SOLVABLE:
886 case SOLVER_ERASE_SOLVABLE:
887 case SOLVER_ERASE_SOLVABLE_NAME:
888 case SOLVER_ERASE_SOLVABLE_PROVIDES:
894 /* go through all enabled job rules */
895 MAPZERO(&solv->noupdate);
896 for (i = solv->jobrules; i < solv->jobrules_end; i++)
899 if (r->d < 0) /* disabled? */
901 j = solv->ruletojob.elements[i - solv->jobrules];
905 how = job->elements[j] & ~SOLVER_WEAK;
906 what = job->elements[j + 1];
909 case SOLVER_INSTALL_SOLVABLE: /* install specific solvable */
910 s = pool->solvables + what;
911 if (solv->noobsoletes.size && MAPTST(&solv->noobsoletes, what))
913 FOR_PROVIDES(p, pp, s->name)
915 if (pool->solvables[p].name != s->name)
917 if (pool->solvables[p].repo == installed)
918 MAPSET(&solv->noupdate, p - installed->start);
921 case SOLVER_ERASE_SOLVABLE:
922 s = pool->solvables + what;
923 if (s->repo == installed)
924 MAPSET(&solv->noupdate, what - installed->start);
926 case SOLVER_ERASE_SOLVABLE_NAME: /* remove by capability */
927 case SOLVER_ERASE_SOLVABLE_PROVIDES:
928 FOR_PROVIDES(p, pp, what)
930 if (how == SOLVER_ERASE_SOLVABLE_NAME && !pool_match_nevr(pool, pool->solvables + p, what))
932 if (pool->solvables[p].repo == installed)
933 MAPSET(&solv->noupdate, p - installed->start);
941 /* fixup update rule status */
944 /* we just disabled job #jobidx. enable all update rules
945 * that aren't disabled by the remaining job rules */
946 how = job->elements[jobidx] & ~SOLVER_WEAK;
947 what = job->elements[jobidx + 1];
950 case SOLVER_INSTALL_SOLVABLE:
951 s = pool->solvables + what;
952 FOR_PROVIDES(p, pp, s->name)
954 if (pool->solvables[p].name != s->name)
956 if (pool->solvables[p].repo != installed)
958 if (MAPTST(&solv->noupdate, p - installed->start))
960 r = solv->rules + solv->updaterules + (p - installed->start);
964 IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
966 POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "@@@ re-enabling ");
967 solver_printrule(solv, SAT_DEBUG_SOLUTIONS, r);
971 case SOLVER_ERASE_SOLVABLE:
972 s = pool->solvables + what;
973 if (s->repo != installed)
975 if (MAPTST(&solv->noupdate, what - installed->start))
977 r = solv->rules + solv->updaterules + (what - installed->start);
981 IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
983 POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "@@@ re-enabling ");
984 solver_printrule(solv, SAT_DEBUG_SOLUTIONS, r);
987 case SOLVER_ERASE_SOLVABLE_NAME: /* remove by capability */
988 case SOLVER_ERASE_SOLVABLE_PROVIDES:
989 FOR_PROVIDES(p, pp, what)
991 if (how == SOLVER_ERASE_SOLVABLE_NAME && !pool_match_nevr(pool, pool->solvables + p, what))
993 if (pool->solvables[p].repo != installed)
995 if (MAPTST(&solv->noupdate, p - installed->start))
997 r = solv->rules + solv->updaterules + (p - installed->start);
1000 enablerule(solv, r);
1001 IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
1003 POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "@@@ re-enabling ");
1004 solver_printrule(solv, SAT_DEBUG_SOLUTIONS, r);
1014 for (i = 0; i < installed->nsolvables; i++)
1016 r = solv->rules + solv->updaterules + i;
1017 if (r->d >= 0 && MAPTST(&solv->noupdate, i))
1018 disablerule(solv, r); /* was enabled, need to disable */
1019 r = solv->rules + solv->featurerules + i;
1020 if (r->d >= 0 && MAPTST(&solv->noupdate, i))
1021 disablerule(solv, r); /* was enabled, need to disable */
1026 /*-------------------------------------------------------------------
1027 * add patch atom requires
1031 addpatchatomrequires(Solver *solv, Solvable *s, Id *dp, Queue *q, Map *m)
1033 Pool *pool = solv->pool;
1034 Id fre, *frep, p, *pp, ndp;
1040 queue_init_buffer(&fq, qbuf, sizeof(qbuf)/sizeof(*qbuf));
1041 queue_push(&fq, -(s - pool->solvables));
1043 queue_push(&fq, *dp);
1044 ndp = pool_queuetowhatprovides(pool, &fq);
1045 frep = s->repo->idarraydata + s->freshens;
1046 while ((fre = *frep++) != 0)
1048 FOR_PROVIDES(p, pp, fre)
1050 ps = pool->solvables + p;
1051 addrule(solv, -p, ndp);
1059 for (i = 1; i < fq.count; i++)
1071 /*-------------------------------------------------------------------
1073 * add (install) rules for solvable
1075 * s: Solvable for which to add rules
1076 * m: m[s] = 1 for solvables which have rules, prevent rule duplication
1078 * Algorithm: 'visit all nodes of a graph'. The graph nodes are
1079 * solvables, the edges their dependencies.
1080 * Starting from an installed solvable, this will create all rules
1081 * representing the graph created by the solvables dependencies.
1083 * for unfulfilled requirements, conflicts, obsoletes,....
1084 * add a negative assertion for solvables that are not installable
1086 * It will also create rules for all solvables referenced by 's'
1087 * i.e. descend to all providers of requirements of 's'
1092 addrpmrulesforsolvable(Solver *solv, Solvable *s, Map *m)
1094 Pool *pool = solv->pool;
1095 Repo *installed = solv->installed;
1097 /* 'work' queue. keeps Ids of solvables we still have to work on.
1098 And buffer for it. */
1103 /* if to add rules for broken deps ('rpm -V' functionality)
1110 /* Id var and pointer for each dependency
1111 * (not used in parallel)
1118 /* var and ptr for loops */
1120 /* ptr to 'whatprovides' */
1122 /* Id for current solvable 's' */
1125 POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforsolvable -----\n");
1127 queue_init_buffer(&workq, workqbuf, sizeof(workqbuf)/sizeof(*workqbuf));
1128 queue_push(&workq, s - pool->solvables); /* push solvable Id to work queue */
1130 /* loop until there's no more work left */
1135 * s: Pointer to solvable
1138 n = queue_shift(&workq); /* 'pop' next solvable to work on from queue */
1139 if (MAPTST(m, n)) /* continue if already visited */
1142 MAPSET(m, n); /* mark as visited */
1143 s = pool->solvables + n; /* s = Solvable in question */
1146 if (installed /* Installed system available */
1147 && !solv->fixsystem /* NOT repair errors in rpm dependency graph */
1148 && s->repo == installed) /* solvable is installed? */
1150 dontfix = 1; /* dont care about broken rpm deps */
1154 && s->arch != ARCH_SRC
1155 && s->arch != ARCH_NOSRC
1156 && !pool_installable(pool, s))
1158 POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "package %s [%d] is not installable\n", solvable2str(pool, s), (Id)(s - pool->solvables));
1159 addrule(solv, -n, 0); /* uninstallable */
1163 if (s->freshens && !s->supplements)
1165 const char *name = id2str(pool, s->name);
1166 if (name[0] == 'a' && !strncmp(name, "atom:", 5))
1171 /*-----------------------------------------
1172 * check requires of s
1177 reqp = s->repo->idarraydata + s->requires;
1178 while ((req = *reqp++) != 0) /* go through all requires */
1180 if (req == SOLVABLE_PREREQMARKER) /* skip the marker */
1183 /* find list of solvables providing 'req' */
1184 dp = pool_whatprovides(pool, req);
1186 if (*dp == SYSTEMSOLVABLE) /* always installed */
1192 addpatchatomrequires(solv, s, dp, &workq, m);
1198 /* the strategy here is to not insist on dependencies
1199 * that are already broken. so if we find one provider
1200 * that was already installed, we know that the
1201 * dependency was not broken before so we enforce it */
1203 /* check if any of the providers for 'req' is installed */
1204 for (i = 0; (p = dp[i]) != 0; i++)
1206 if (pool->solvables[p].repo == installed)
1207 break; /* provider was installed */
1209 /* didn't find an installed provider: previously broken dependency */
1212 POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "ignoring broken requires %s of installed package %s\n", dep2str(pool, req), solvable2str(pool, s));
1219 /* nothing provides req! */
1220 POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "package %s [%d] is not installable (%s)\n", solvable2str(pool, s), (Id)(s - pool->solvables), dep2str(pool, req));
1221 addrule(solv, -n, 0); /* mark requestor as uninstallable */
1225 IF_POOLDEBUG (SAT_DEBUG_RULE_CREATION)
1227 POOL_DEBUG(SAT_DEBUG_RULE_CREATION," %s requires %s\n", solvable2str(pool, s), dep2str(pool, req));
1228 for (i = 0; dp[i]; i++)
1229 POOL_DEBUG(SAT_DEBUG_RULE_CREATION, " provided by %s\n", solvable2str(pool, pool->solvables + dp[i]));
1232 /* add 'requires' dependency */
1233 /* rule: (-requestor|provider1|provider2|...|providerN) */
1234 addrule(solv, -n, dp - pool->whatprovidesdata);
1236 /* descend the dependency tree
1237 push all non-visited providers on the work queue */
1240 if (!MAPTST(m, *dp))
1241 queue_push(&workq, *dp);
1244 } /* while, requirements of n */
1246 } /* if, requirements */
1248 /* that's all we check for src packages */
1249 if (s->arch == ARCH_SRC || s->arch == ARCH_NOSRC)
1252 /*-----------------------------------------
1253 * check conflicts of s
1258 conp = s->repo->idarraydata + s->conflicts;
1259 /* foreach conflicts of 's' */
1260 while ((con = *conp++) != 0)
1262 /* foreach providers of a conflict of 's' */
1263 FOR_PROVIDES(p, pp, con)
1265 /* dontfix: dont care about conflicts with already installed packs */
1266 if (dontfix && pool->solvables[p].repo == installed)
1268 /* p == n: self conflict */
1269 if (p == n && !solv->allowselfconflicts)
1270 p = 0; /* make it a negative assertion, aka 'uninstallable' */
1271 /* rule: -n|-p: either solvable _or_ provider of conflict */
1272 addrule(solv, -n, -p);
1277 /*-----------------------------------------
1278 * check obsoletes if not installed
1279 * (only installation will trigger the obsoletes in rpm)
1281 if (!installed || pool->solvables[n].repo != installed)
1282 { /* not installed */
1283 int noobs = solv->noobsoletes.size && MAPTST(&solv->noobsoletes, n);
1284 if (s->obsoletes && !noobs)
1286 obsp = s->repo->idarraydata + s->obsoletes;
1287 /* foreach obsoletes */
1288 while ((obs = *obsp++) != 0)
1290 /* foreach provider of an obsoletes of 's' */
1291 FOR_PROVIDES(p, pp, obs)
1293 if (!solv->obsoleteusesprovides /* obsoletes are matched names, not provides */
1294 && !pool_match_nevr(pool, pool->solvables + p, obs))
1296 addrule(solv, -n, -p);
1300 FOR_PROVIDES(p, pp, s->name)
1302 Solvable *ps = pool->solvables + p;
1303 /* we still obsolete packages with same nevra, like rpm does */
1304 /* (actually, rpm mixes those packages. yuck...) */
1305 if (noobs && (s->name != ps->name || s->evr != ps->evr || s->arch != ps->arch))
1307 if (!solv->implicitobsoleteusesprovides && s->name != ps->name)
1309 addrule(solv, -n, -p);
1313 /*-----------------------------------------
1314 * add recommends to the work queue
1318 recp = s->repo->idarraydata + s->recommends;
1319 while ((rec = *recp++) != 0)
1321 FOR_PROVIDES(p, pp, rec)
1323 queue_push(&workq, p);
1328 sugp = s->repo->idarraydata + s->suggests;
1329 while ((sug = *sugp++) != 0)
1331 FOR_PROVIDES(p, pp, sug)
1333 queue_push(&workq, p);
1338 POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforsolvable end -----\n");
1342 /*-------------------------------------------------------------------
1344 * Add package rules for weak rules
1346 * m: visited solvables
1350 addrpmrulesforweak(Solver *solv, Map *m)
1352 Pool *pool = solv->pool;
1357 POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforweak -----\n");
1358 /* foreach solvable in pool */
1359 for (i = n = 1; n < pool->nsolvables; i++, n++)
1361 if (i == pool->nsolvables) /* wrap i */
1363 if (MAPTST(m, i)) /* been there */
1366 s = pool->solvables + i;
1367 if (!pool_installable(pool, s)) /* only look at installable ones */
1373 /* find possible supplements */
1374 supp = s->repo->idarraydata + s->supplements;
1375 while ((sup = *supp++) != ID_NULL)
1376 if (dep_possible(solv, sup, m))
1380 /* if nothing found, check for freshens
1381 * (patterns use this)
1383 if (!sup && s->freshens)
1385 supp = s->repo->idarraydata + s->freshens;
1386 while ((sup = *supp++) != ID_NULL)
1387 if (dep_possible(solv, sup, m))
1391 /* if nothing found, check for enhances */
1392 if (!sup && s->enhances)
1394 supp = s->repo->idarraydata + s->enhances;
1395 while ((sup = *supp++) != ID_NULL)
1396 if (dep_possible(solv, sup, m))
1399 /* if notthing found, goto next solvables */
1402 addrpmrulesforsolvable(solv, s, m);
1405 POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforweak end -----\n");
1409 /*-------------------------------------------------------------------
1411 * add package rules for possible updates
1414 * m: map of already visited solvables
1415 * allow_all: 0 = dont allow downgrades, 1 = allow all candidates
1419 addrpmrulesforupdaters(Solver *solv, Solvable *s, Map *m, int allow_all)
1421 Pool *pool = solv->pool;
1423 /* queue and buffer for it */
1427 POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforupdaters -----\n");
1429 queue_init_buffer(&qs, qsbuf, sizeof(qsbuf)/sizeof(*qsbuf));
1430 /* find update candidates for 's' */
1431 policy_findupdatepackages(solv, s, &qs, allow_all);
1432 /* add rule for 's' if not already done */
1433 if (!MAPTST(m, s - pool->solvables))
1434 addrpmrulesforsolvable(solv, s, m);
1435 /* foreach update candidate, add rule if not already done */
1436 for (i = 0; i < qs.count; i++)
1437 if (!MAPTST(m, qs.elements[i]))
1438 addrpmrulesforsolvable(solv, pool->solvables + qs.elements[i], m);
1441 POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforupdaters -----\n");
1445 /*-------------------------------------------------------------------
1447 * add rule for update
1448 * (A|A1|A2|A3...) An = update candidates for A
1450 * s = (installed) solvable
1454 addupdaterule(Solver *solv, Solvable *s, int allow_all)
1456 /* installed packages get a special upgrade allowed rule */
1457 Pool *pool = solv->pool;
1462 POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addupdaterule -----\n");
1464 queue_init_buffer(&qs, qsbuf, sizeof(qsbuf)/sizeof(*qsbuf));
1465 /* find update candidates for 's' */
1466 policy_findupdatepackages(solv, s, &qs, allow_all);
1467 if (qs.count == 0) /* no updaters found */
1468 d = 0; /* assertion (keep installed) */
1470 d = pool_queuetowhatprovides(pool, &qs); /* intern computed queue */
1472 addrule(solv, s - pool->solvables, d); /* allow update of s */
1473 POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addupdaterule end -----\n");
1477 /********************************************************************/
1481 /*-------------------------------------------------------------------
1484 * initial setup for all watches
1488 makewatches(Solver *solv)
1492 int nsolvables = solv->pool->nsolvables;
1494 sat_free(solv->watches);
1495 /* lower half for removals, upper half for installs */
1496 solv->watches = sat_calloc(2 * nsolvables, sizeof(Id));
1498 /* do it reverse so rpm rules get triggered first (XXX: obsolete?) */
1499 for (i = 1, r = solv->rules + solv->nrules - 1; i < solv->nrules; i++, r--)
1501 for (i = 1, r = solv->rules + 1; i < solv->nrules; i++, r++)
1504 if (!r->w2) /* assertions do not need watches */
1507 /* see addwatches_rule(solv, r) */
1508 r->n1 = solv->watches[nsolvables + r->w1];
1509 solv->watches[nsolvables + r->w1] = r - solv->rules;
1511 r->n2 = solv->watches[nsolvables + r->w2];
1512 solv->watches[nsolvables + r->w2] = r - solv->rules;
1517 /*-------------------------------------------------------------------
1519 * add watches (for rule)
1520 * sets up watches for a single rule
1522 * see also makewatches()
1526 addwatches_rule(Solver *solv, Rule *r)
1528 int nsolvables = solv->pool->nsolvables;
1530 r->n1 = solv->watches[nsolvables + r->w1];
1531 solv->watches[nsolvables + r->w1] = r - solv->rules;
1533 r->n2 = solv->watches[nsolvables + r->w2];
1534 solv->watches[nsolvables + r->w2] = r - solv->rules;
1538 /********************************************************************/
1544 /* shortcuts to check if a literal (positive or negative) assignment
1545 * evaluates to 'true' or 'false'
1547 #define DECISIONMAP_TRUE(p) ((p) > 0 ? (decisionmap[p] > 0) : (decisionmap[-p] < 0))
1548 #define DECISIONMAP_FALSE(p) ((p) > 0 ? (decisionmap[p] < 0) : (decisionmap[-p] > 0))
1549 #define DECISIONMAP_UNDEF(p) (decisionmap[(p) > 0 ? (p) : -(p)] == 0)
1551 /*-------------------------------------------------------------------
1555 * make decision and propagate to all rules
1557 * Evaluate each term affected by the decision (linked through watches)
1558 * If we find unit rules we make new decisions based on them
1560 * Everything's fixed there, it's just finding rules that are
1563 * return : 0 = everything is OK
1564 * rule = conflict found in this rule
1568 propagate(Solver *solv, int level)
1570 Pool *pool = solv->pool;
1571 Id *rp, *next_rp; /* rule pointer, next rule pointer in linked list */
1573 Id p, pkg, other_watch;
1575 Id *decisionmap = solv->decisionmap;
1577 Id *watches = solv->watches + pool->nsolvables; /* place ptr in middle */
1579 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "----- propagate -----\n");
1581 /* foreach non-propagated decision */
1582 while (solv->propagate_index < solv->decisionq.count)
1585 * 'pkg' was just decided
1586 * negate because our watches trigger if literal goes FALSE
1588 pkg = -solv->decisionq.elements[solv->propagate_index++];
1590 IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
1592 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "propagate for decision %d level %d\n", -pkg, level);
1593 solver_printruleelement(solv, SAT_DEBUG_PROPAGATE, 0, -pkg);
1596 /* foreach rule where 'pkg' is now FALSE */
1597 for (rp = watches + pkg; *rp; rp = next_rp)
1599 r = solv->rules + *rp;
1602 /* rule is disabled, goto next */
1610 IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
1612 POOL_DEBUG(SAT_DEBUG_PROPAGATE," watch triggered ");
1613 solver_printrule(solv, SAT_DEBUG_PROPAGATE, r);
1616 /* 'pkg' was just decided (was set to FALSE)
1618 * now find other literal watch, check clause
1619 * and advance on linked list
1623 other_watch = r->w2;
1628 other_watch = r->w1;
1633 * This term is already true (through the other literal)
1634 * so we have nothing to do
1636 if (DECISIONMAP_TRUE(other_watch))
1640 * The other literal is FALSE or UNDEF
1646 /* Not a binary clause, try to move our watch.
1648 * Go over all literals and find one that is
1652 * (TRUE is also ok, in that case the rule is fulfilled)
1654 if (r->p /* we have a 'p' */
1655 && r->p != other_watch /* which is not watched */
1656 && !DECISIONMAP_FALSE(r->p)) /* and not FALSE */
1660 else /* go find a 'd' to make 'true' */
1663 we just iterate sequentially, doing it in another order just changes the order of decisions, not the decisions itself
1665 for (dp = pool->whatprovidesdata + r->d; (p = *dp++) != 0;)
1667 if (p != other_watch /* which is not watched */
1668 && !DECISIONMAP_FALSE(p)) /* and not FALSE */
1676 * if we found some p that is UNDEF or TRUE, move
1679 IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
1682 POOL_DEBUG(SAT_DEBUG_PROPAGATE, " -> move w%d to %s\n", (pkg == r->w1 ? 1 : 2), solvable2str(pool, pool->solvables + p));
1684 POOL_DEBUG(SAT_DEBUG_PROPAGATE," -> move w%d to !%s\n", (pkg == r->w1 ? 1 : 2), solvable2str(pool, pool->solvables - p));
1700 watches[p] = r - solv->rules;
1703 /* search failed, thus all unwatched literals are FALSE */
1708 * unit clause found, set literal other_watch to TRUE
1711 if (DECISIONMAP_FALSE(other_watch)) /* check if literal is FALSE */
1712 return r; /* eek, a conflict! */
1714 IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
1716 POOL_DEBUG(SAT_DEBUG_PROPAGATE, " unit ");
1717 solver_printrule(solv, SAT_DEBUG_PROPAGATE, r);
1720 if (other_watch > 0)
1721 decisionmap[other_watch] = level; /* install! */
1723 decisionmap[-other_watch] = -level; /* remove! */
1725 queue_push(&solv->decisionq, other_watch);
1726 queue_push(&solv->decisionq_why, r - solv->rules);
1728 IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
1730 Solvable *s = pool->solvables + (other_watch > 0 ? other_watch : -other_watch);
1731 if (other_watch > 0)
1732 POOL_DEBUG(SAT_DEBUG_PROPAGATE, " -> decided to install %s\n", solvable2str(pool, s));
1734 POOL_DEBUG(SAT_DEBUG_PROPAGATE, " -> decided to conflict %s\n", solvable2str(pool, s));
1737 } /* foreach rule involving 'pkg' */
1739 } /* while we have non-decided decisions */
1741 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "----- propagate end-----\n");
1743 return 0; /* all is well */
1747 /********************************************************************/
1750 /*-------------------------------------------------------------------
1757 analyze(Solver *solv, int level, Rule *c, int *pr, int *dr, int *whyp)
1759 Pool *pool = solv->pool;
1762 Map seen; /* global? */
1763 Id d, v, vv, *dp, why;
1765 int num = 0, l1num = 0;
1766 int learnt_why = solv->learnt_pool.count;
1767 Id *decisionmap = solv->decisionmap;
1771 POOL_DEBUG(SAT_DEBUG_ANALYZE, "ANALYZE at %d ----------------------\n", level);
1772 map_init(&seen, pool->nsolvables);
1773 idx = solv->decisionq.count;
1776 IF_POOLDEBUG (SAT_DEBUG_ANALYZE)
1777 solver_printruleclass(solv, SAT_DEBUG_ANALYZE, c);
1778 queue_push(&solv->learnt_pool, c - solv->rules);
1779 d = c->d < 0 ? -c->d - 1 : c->d;
1780 dp = d ? pool->whatprovidesdata + d : 0;
1781 /* go through all literals of the rule */
1793 if (DECISIONMAP_TRUE(v)) /* the one true literal */
1795 vv = v > 0 ? v : -v;
1796 if (MAPTST(&seen, vv))
1798 l = solv->decisionmap[vv];
1803 l1num++; /* need to do this one in level1 pass */
1804 else if (l == level)
1805 num++; /* need to do this one as well */
1808 queue_push(&r, v); /* not level1 or conflict level, add to new rule */
1814 if (!num && !--l1num)
1815 break; /* all level 1 literals done */
1819 v = solv->decisionq.elements[--idx];
1820 vv = v > 0 ? v : -v;
1821 if (MAPTST(&seen, vv))
1825 if (num && --num == 0)
1827 *pr = -v; /* so that v doesn't get lost */
1830 POOL_DEBUG(SAT_DEBUG_ANALYZE, "got %d involved level 1 decisions\n", l1num);
1831 for (i = 0; i < r.count; i++)
1834 MAPCLR(&seen, v > 0 ? v : -v);
1836 /* only level 1 marks left */
1840 why = solv->decisionq_why.elements[idx];
1841 if (!why) /* just in case, maye for SYSTEMSOLVABLE */
1843 c = solv->rules + why;
1849 else if (r.count == 1 && r.elements[0] < 0)
1850 *dr = r.elements[0];
1852 *dr = pool_queuetowhatprovides(pool, &r);
1853 IF_POOLDEBUG (SAT_DEBUG_ANALYZE)
1855 POOL_DEBUG(SAT_DEBUG_ANALYZE, "learned rule for level %d (am %d)\n", rlevel, level);
1856 solver_printruleelement(solv, SAT_DEBUG_ANALYZE, 0, *pr);
1857 for (i = 0; i < r.count; i++)
1858 solver_printruleelement(solv, SAT_DEBUG_ANALYZE, 0, r.elements[i]);
1860 /* push end marker on learnt reasons stack */
1861 queue_push(&solv->learnt_pool, 0);
1864 solv->stats_learned++;
1869 /*-------------------------------------------------------------------
1873 * reset the solver decisions to right after the rpm rules.
1874 * called after rules have been enabled/disabled
1878 reset_solver(Solver *solv)
1880 Pool *pool = solv->pool;
1884 /* rewind decisions to direct rpm rule assertions */
1885 for (i = solv->decisionq.count - 1; i >= solv->directdecisions; i--)
1887 v = solv->decisionq.elements[i];
1888 solv->decisionmap[v > 0 ? v : -v] = 0;
1891 POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "decisions done reduced from %d to %d\n", solv->decisionq.count, solv->directdecisions);
1893 solv->decisionq_why.count = solv->directdecisions;
1894 solv->decisionq.count = solv->directdecisions;
1895 solv->recommends_index = -1;
1896 solv->propagate_index = 0;
1898 /* adapt learnt rule status to new set of enabled/disabled rules */
1899 enabledisablelearntrules(solv);
1901 /* redo all job/update decisions */
1902 makeruledecisions(solv);
1903 POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "decisions so far: %d\n", solv->decisionq.count);
1907 /*-------------------------------------------------------------------
1909 * analyze_unsolvable_rule
1913 analyze_unsolvable_rule(Solver *solv, Rule *r, Id *lastweakp)
1915 Pool *pool = solv->pool;
1917 Id why = r - solv->rules;
1919 IF_POOLDEBUG (SAT_DEBUG_UNSOLVABLE)
1920 solver_printruleclass(solv, SAT_DEBUG_UNSOLVABLE, r);
1921 if (solv->learntrules && why >= solv->learntrules)
1923 for (i = solv->learnt_why.elements[why - solv->learntrules]; solv->learnt_pool.elements[i]; i++)
1924 if (solv->learnt_pool.elements[i] > 0)
1925 analyze_unsolvable_rule(solv, solv->rules + solv->learnt_pool.elements[i], lastweakp);
1928 if (MAPTST(&solv->weakrulemap, why))
1929 if (!*lastweakp || why > *lastweakp)
1931 /* do not add rpm rules to problem */
1932 if (why < solv->rpmrules_end)
1934 /* turn rule into problem */
1935 if (why >= solv->jobrules && why < solv->jobrules_end)
1936 why = -(solv->ruletojob.elements[why - solv->jobrules] + 1);
1937 /* return if problem already countains our rule */
1938 if (solv->problems.count)
1940 for (i = solv->problems.count - 1; i >= 0; i--)
1941 if (solv->problems.elements[i] == 0) /* end of last problem reached? */
1943 else if (solv->problems.elements[i] == why)
1946 queue_push(&solv->problems, why);
1950 /*-------------------------------------------------------------------
1952 * analyze_unsolvable
1954 * return: 1 - disabled some rules, try again
1959 analyze_unsolvable(Solver *solv, Rule *cr, int disablerules)
1961 Pool *pool = solv->pool;
1963 Map seen; /* global to speed things up? */
1964 Id d, v, vv, *dp, why;
1966 Id *decisionmap = solv->decisionmap;
1967 int oldproblemcount;
1968 int oldlearntpoolcount;
1971 POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "ANALYZE UNSOLVABLE ----------------------\n");
1972 solv->stats_unsolvable++;
1973 oldproblemcount = solv->problems.count;
1974 oldlearntpoolcount = solv->learnt_pool.count;
1976 /* make room for proof index */
1977 /* must update it later, as analyze_unsolvable_rule would confuse
1978 * it with a rule index if we put the real value in already */
1979 queue_push(&solv->problems, 0);
1982 map_init(&seen, pool->nsolvables);
1983 queue_push(&solv->learnt_pool, r - solv->rules);
1985 analyze_unsolvable_rule(solv, r, &lastweak);
1986 d = r->d < 0 ? -r->d - 1 : r->d;
1987 dp = d ? pool->whatprovidesdata + d : 0;
1998 if (DECISIONMAP_TRUE(v)) /* the one true literal */
2000 vv = v > 0 ? v : -v;
2001 l = solv->decisionmap[vv];
2006 idx = solv->decisionq.count;
2009 v = solv->decisionq.elements[--idx];
2010 vv = v > 0 ? v : -v;
2011 if (!MAPTST(&seen, vv))
2013 why = solv->decisionq_why.elements[idx];
2014 queue_push(&solv->learnt_pool, why);
2015 r = solv->rules + why;
2016 analyze_unsolvable_rule(solv, r, &lastweak);
2017 d = r->d < 0 ? -r->d - 1 : r->d;
2018 dp = d ? pool->whatprovidesdata + d : 0;
2029 if (DECISIONMAP_TRUE(v)) /* the one true literal */
2031 vv = v > 0 ? v : -v;
2032 l = solv->decisionmap[vv];
2039 queue_push(&solv->problems, 0); /* mark end of this problem */
2043 /* disable last weak rule */
2044 solv->problems.count = oldproblemcount;
2045 solv->learnt_pool.count = oldlearntpoolcount;
2046 r = solv->rules + lastweak;
2047 POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "disabling ");
2048 solver_printruleclass(solv, SAT_DEBUG_UNSOLVABLE, r);
2049 disablerule(solv, r);
2055 queue_push(&solv->learnt_pool, 0);
2056 solv->problems.elements[oldproblemcount] = oldlearntpoolcount;
2060 for (i = oldproblemcount + 1; i < solv->problems.count - 1; i++)
2061 disableproblem(solv, solv->problems.elements[i]);
2062 /* XXX: might want to enable all weak rules again */
2066 POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "UNSOLVABLE\n");
2071 /********************************************************************/
2072 /* Decision revert */
2074 /*-------------------------------------------------------------------
2077 * revert decision at level
2081 revert(Solver *solv, int level)
2083 Pool *pool = solv->pool;
2085 while (solv->decisionq.count)
2087 v = solv->decisionq.elements[solv->decisionq.count - 1];
2088 vv = v > 0 ? v : -v;
2089 if (solv->decisionmap[vv] <= level && solv->decisionmap[vv] >= -level)
2091 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "reverting decision %d at %d\n", v, solv->decisionmap[vv]);
2092 if (v > 0 && solv->recommendations.count && v == solv->recommendations.elements[solv->recommendations.count - 1])
2093 solv->recommendations.count--;
2094 solv->decisionmap[vv] = 0;
2095 solv->decisionq.count--;
2096 solv->decisionq_why.count--;
2097 solv->propagate_index = solv->decisionq.count;
2099 while (solv->branches.count && solv->branches.elements[solv->branches.count - 1] <= -level)
2101 solv->branches.count--;
2102 while (solv->branches.count && solv->branches.elements[solv->branches.count - 1] >= 0)
2103 solv->branches.count--;
2105 solv->recommends_index = -1;
2109 /*-------------------------------------------------------------------
2111 * watch2onhighest - put watch2 on literal with highest level
2115 watch2onhighest(Solver *solv, Rule *r)
2120 d = r->d < 0 ? -r->d - 1 : r->d;
2122 return; /* binary rule, both watches are set */
2123 dp = solv->pool->whatprovidesdata + d;
2124 while ((v = *dp++) != 0)
2126 l = solv->decisionmap[v < 0 ? -v : v];
2138 /*-------------------------------------------------------------------
2142 * add free decision (solvable to install) to decisionq
2143 * increase level and propagate decision
2144 * return if no conflict.
2146 * in conflict case, analyze conflict rule, add resulting
2147 * rule to learnt rule set, make decision from learnt
2148 * rule (always unit) and re-propagate.
2150 * returns the new solver level or 0 if unsolvable
2155 setpropagatelearn(Solver *solv, int level, Id decision, int disablerules)
2157 Pool *pool = solv->pool;
2166 solv->decisionmap[decision] = level;
2168 solv->decisionmap[-decision] = -level;
2169 queue_push(&solv->decisionq, decision);
2170 queue_push(&solv->decisionq_why, 0);
2174 r = propagate(solv, level);
2178 return analyze_unsolvable(solv, r, disablerules);
2179 POOL_DEBUG(SAT_DEBUG_ANALYZE, "conflict with rule #%d\n", (int)(r - solv->rules));
2180 l = analyze(solv, level, r, &p, &d, &why); /* learnt rule in p and d */
2181 assert(l > 0 && l < level);
2182 POOL_DEBUG(SAT_DEBUG_ANALYZE, "reverting decisions (level %d -> %d)\n", level, l);
2184 revert(solv, level);
2185 r = addrule(solv, p, d); /* p requires d */
2187 assert(solv->learnt_why.count == (r - solv->rules) - solv->learntrules);
2188 queue_push(&solv->learnt_why, why);
2191 /* at least 2 literals, needs watches */
2192 watch2onhighest(solv, r);
2193 addwatches_rule(solv, r);
2197 /* learnt rule is an assertion */
2198 queue_push(&solv->ruleassertions, r - solv->rules);
2200 solv->decisionmap[p > 0 ? p : -p] = p > 0 ? level : -level;
2201 queue_push(&solv->decisionq, p);
2202 queue_push(&solv->decisionq_why, r - solv->rules);
2203 IF_POOLDEBUG (SAT_DEBUG_ANALYZE)
2205 POOL_DEBUG(SAT_DEBUG_ANALYZE, "decision: ");
2206 solver_printruleelement(solv, SAT_DEBUG_ANALYZE, 0, p);
2207 POOL_DEBUG(SAT_DEBUG_ANALYZE, "new rule: ");
2208 solver_printrule(solv, SAT_DEBUG_ANALYZE, r);
2215 /*-------------------------------------------------------------------
2217 * select and install
2219 * install best package from the queue. We add an extra package, inst, if
2220 * provided. See comment in weak install section.
2222 * returns the new solver level or 0 if unsolvable
2227 selectandinstall(Solver *solv, int level, Queue *dq, Id inst, int disablerules)
2229 Pool *pool = solv->pool;
2233 if (dq->count > 1 || inst)
2234 policy_filter_unwanted(solv, dq, inst, POLICY_MODE_CHOOSE);
2239 /* choose the supplemented one */
2240 for (i = 0; i < dq->count; i++)
2241 if (solver_is_supplementing(solv, pool->solvables + dq->elements[i]))
2245 for (i = 1; i < dq->count; i++)
2246 queue_push(&solv->branches, dq->elements[i]);
2247 queue_push(&solv->branches, -level);
2251 p = dq->elements[i];
2253 POOL_DEBUG(SAT_DEBUG_POLICY, "installing %s\n", solvable2str(pool, pool->solvables + p));
2255 return setpropagatelearn(solv, level, p, disablerules);
2259 /********************************************************************/
2260 /* Main solver interface */
2263 /*-------------------------------------------------------------------
2266 * create solver structure
2268 * pool: all available solvables
2269 * installed: installed Solvables
2272 * Upon solving, rules are created to flag the Solvables
2273 * of the 'installed' Repo as installed.
2277 solver_create(Pool *pool, Repo *installed)
2280 solv = (Solver *)sat_calloc(1, sizeof(Solver));
2282 solv->installed = installed;
2284 queue_init(&solv->ruletojob);
2285 queue_init(&solv->decisionq);
2286 queue_init(&solv->decisionq_why);
2287 queue_init(&solv->problems);
2288 queue_init(&solv->suggestions);
2289 queue_init(&solv->recommendations);
2290 queue_init(&solv->learnt_why);
2291 queue_init(&solv->learnt_pool);
2292 queue_init(&solv->branches);
2293 queue_init(&solv->covenantq);
2294 queue_init(&solv->weakruleq);
2295 queue_init(&solv->ruleassertions);
2297 map_init(&solv->recommendsmap, pool->nsolvables);
2298 map_init(&solv->suggestsmap, pool->nsolvables);
2299 map_init(&solv->noupdate, installed ? installed->end - installed->start : 0);
2300 solv->recommends_index = 0;
2302 solv->decisionmap = (Id *)sat_calloc(pool->nsolvables, sizeof(Id));
2304 solv->rules = sat_extend_resize(solv->rules, solv->nrules, sizeof(Rule), RULES_BLOCK);
2305 memset(solv->rules, 0, sizeof(Rule));
2311 /*-------------------------------------------------------------------
2317 solver_free(Solver *solv)
2319 queue_free(&solv->ruletojob);
2320 queue_free(&solv->decisionq);
2321 queue_free(&solv->decisionq_why);
2322 queue_free(&solv->learnt_why);
2323 queue_free(&solv->learnt_pool);
2324 queue_free(&solv->problems);
2325 queue_free(&solv->suggestions);
2326 queue_free(&solv->recommendations);
2327 queue_free(&solv->branches);
2328 queue_free(&solv->covenantq);
2329 queue_free(&solv->weakruleq);
2330 queue_free(&solv->ruleassertions);
2332 map_free(&solv->recommendsmap);
2333 map_free(&solv->suggestsmap);
2334 map_free(&solv->noupdate);
2335 map_free(&solv->weakrulemap);
2336 map_free(&solv->noobsoletes);
2338 sat_free(solv->decisionmap);
2339 sat_free(solv->rules);
2340 sat_free(solv->watches);
2341 sat_free(solv->obsoletes);
2342 sat_free(solv->obsoletes_data);
2347 /*-------------------------------------------------------------------
2351 * all rules have been set up, now actually run the solver
2356 run_solver(Solver *solv, int disablerules, int doweak)
2358 Queue dq; /* local decisionqueue */
2364 Pool *pool = solv->pool;
2367 IF_POOLDEBUG (SAT_DEBUG_RULE_CREATION)
2369 POOL_DEBUG (SAT_DEBUG_RULE_CREATION, "number of rules: %d\n", solv->nrules);
2370 for (i = 1; i < solv->nrules; i++)
2371 solver_printruleclass(solv, SAT_DEBUG_RULE_CREATION, solv->rules + i);
2374 POOL_DEBUG(SAT_DEBUG_STATS, "initial decisions: %d\n", solv->decisionq.count);
2376 IF_POOLDEBUG (SAT_DEBUG_SCHUBI)
2377 solver_printdecisions(solv);
2379 /* start SAT algorithm */
2381 systemlevel = level + 1;
2382 POOL_DEBUG(SAT_DEBUG_STATS, "solving...\n");
2387 * here's the main loop:
2388 * 1) propagate new decisions (only needed for level 1)
2389 * 2) try to keep installed packages
2390 * 3) fulfill all unresolved rules
2391 * 4) install recommended packages
2392 * 5) minimalize solution if we had choices
2393 * if we encounter a problem, we rewind to a safe level and restart
2405 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "propagating (propagate_index: %d; size decisionq: %d)...\n", solv->propagate_index, solv->decisionq.count);
2406 if ((r = propagate(solv, level)) != 0)
2408 if (analyze_unsolvable(solv, r, disablerules))
2416 * installed packages
2419 if (level < systemlevel && solv->installed && solv->installed->nsolvables)
2421 if (!solv->updatesystem)
2424 * Normal run (non-updating)
2425 * Keep as many packages installed as possible
2427 POOL_DEBUG(SAT_DEBUG_STATS, "installing old packages\n");
2429 for (i = solv->installed->start; i < solv->installed->end; i++)
2431 s = pool->solvables + i;
2433 /* skip if not installed */
2434 if (s->repo != solv->installed)
2437 /* skip if already decided */
2438 if (solv->decisionmap[i] != 0)
2441 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "keeping %s\n", solvable2str(pool, s));
2444 level = setpropagatelearn(solv, level, i, disablerules);
2446 if (level == 0) /* unsolvable */
2451 if (level <= olevel)
2454 if (i < solv->installed->end)
2458 POOL_DEBUG(SAT_DEBUG_STATS, "resolving update/feature rules\n");
2460 for (i = solv->installed->start, r = solv->rules + solv->updaterules; i < solv->installed->end; i++, r++)
2464 s = pool->solvables + i;
2466 /* skip if not installed (can't update) */
2467 if (s->repo != solv->installed)
2469 /* skip if already decided */
2470 if (solv->decisionmap[i] > 0)
2473 /* noupdate is set if a job is erasing the installed solvable or installing a specific version */
2474 if (MAPTST(&solv->noupdate, i - solv->installed->start))
2479 if (rr->d < 0) /* disabled -> look at feature rule ? */
2480 rr -= solv->installed->end - solv->installed->start;
2481 if (!rr->p) /* identical to update rule? */
2483 d = (rr->d < 0) ? -rr->d - 1 : rr->d;
2486 if (!rr->w2 || solv->decisionmap[rr->w2] > 0)
2488 /* decide w2 if yet undecided */
2489 if (solv->decisionmap[rr->w2] == 0)
2490 queue_push(&dq, rr->w2);
2494 dp = pool->whatprovidesdata + d;
2495 while ((p = *dp++) != 0)
2497 if (solv->decisionmap[p] > 0)
2499 /* decide p if yet undecided */
2500 if (solv->decisionmap[p] == 0)
2506 if (!dq.count && solv->decisionmap[i] != 0)
2509 /* FIXME: it is handled a bit different because we do not want
2510 * to have it pruned just because it is not recommened.
2511 * we should not prune installed packages instead
2513 level = selectandinstall(solv, level, &dq, (solv->decisionmap[i] ? 0 : i), disablerules);
2519 if (level <= olevel)
2522 if (i < solv->installed->end)
2524 systemlevel = level;
2531 POOL_DEBUG(SAT_DEBUG_STATS, "deciding unresolved rules\n");
2532 for (i = 1, n = 1; ; i++, n++)
2534 if (n == solv->nrules)
2536 if (i == solv->nrules)
2538 r = solv->rules + i;
2539 if (r->d < 0) /* ignore disabled rules */
2544 /* binary or unary rule */
2545 /* need two positive undecided literals */
2546 if (r->p < 0 || r->w2 <= 0)
2548 if (solv->decisionmap[r->p] || solv->decisionmap[r->w2])
2550 queue_push(&dq, r->p);
2551 queue_push(&dq, r->w2);
2556 * all negative literals are installed
2557 * no positive literal is installed
2558 * i.e. the rule is not fulfilled and we
2559 * just need to decide on the positive literals
2563 if (solv->decisionmap[-r->p] <= 0)
2568 if (solv->decisionmap[r->p] > 0)
2570 if (solv->decisionmap[r->p] == 0)
2571 queue_push(&dq, r->p);
2573 dp = pool->whatprovidesdata + r->d;
2574 while ((p = *dp++) != 0)
2578 if (solv->decisionmap[-p] <= 0)
2583 if (solv->decisionmap[p] > 0)
2585 if (solv->decisionmap[p] == 0)
2592 IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
2594 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "unfulfilled ");
2595 solver_printruleclass(solv, SAT_DEBUG_PROPAGATE, r);
2597 /* dq.count < 2 cannot happen as this means that
2598 * the rule is unit */
2599 assert(dq.count > 1);
2602 level = selectandinstall(solv, level, &dq, 0, disablerules);
2608 if (level < systemlevel)
2611 } /* for(), decide */
2613 if (n != solv->nrules) /* continue if level < systemlevel */
2620 POOL_DEBUG(SAT_DEBUG_STATS, "installing recommended packages\n");
2622 for (i = 1; i < pool->nsolvables; i++)
2624 if (solv->decisionmap[i] < 0)
2626 if (solv->decisionmap[i] > 0)
2628 Id *recp, rec, *pp, p;
2629 s = pool->solvables + i;
2630 /* installed, check for recommends */
2631 /* XXX need to special case AND ? */
2634 recp = s->repo->idarraydata + s->recommends;
2635 while ((rec = *recp++) != 0)
2638 FOR_PROVIDES(p, pp, rec)
2640 if (solv->decisionmap[p] > 0)
2645 else if (solv->decisionmap[p] == 0)
2647 queue_pushunique(&dq, p);
2655 s = pool->solvables + i;
2656 if (!s->supplements && !s->freshens)
2658 if (!pool_installable(pool, s))
2660 if (solver_is_supplementing(solv, s))
2661 queue_pushunique(&dq, i);
2667 policy_filter_unwanted(solv, &dq, 0, POLICY_MODE_RECOMMEND);
2669 POOL_DEBUG(SAT_DEBUG_STATS, "installing recommended %s\n", solvable2str(pool, pool->solvables + p));
2670 queue_push(&solv->recommendations, p);
2671 level = setpropagatelearn(solv, level, p, 0);
2676 if (solv->solution_callback)
2678 solv->solution_callback(solv, solv->solution_callback_data);
2679 if (solv->branches.count)
2681 int i = solv->branches.count - 1;
2682 int l = -solv->branches.elements[i];
2684 if (solv->branches.elements[i - 1] < 0)
2686 p = solv->branches.elements[i];
2687 POOL_DEBUG(SAT_DEBUG_STATS, "branching with %s\n", solvable2str(pool, pool->solvables + p));
2689 for (j = i + 1; j < solv->branches.count; j++)
2690 queue_push(&dq, solv->branches.elements[j]);
2691 solv->branches.count = i;
2693 revert(solv, level);
2695 for (j = 0; j < dq.count; j++)
2696 queue_push(&solv->branches, dq.elements[j]);
2698 level = setpropagatelearn(solv, level, p, disablerules);
2706 /* all branches done, we're finally finished */
2710 /* minimization step */
2711 if (solv->branches.count)
2713 int l = 0, lasti = -1, lastl = -1;
2715 for (i = solv->branches.count - 1; i >= 0; i--)
2717 p = solv->branches.elements[i];
2720 else if (p > 0 && solv->decisionmap[p] > l + 1)
2728 /* kill old solvable so that we do not loop */
2729 p = solv->branches.elements[lasti];
2730 solv->branches.elements[lasti] = 0;
2731 POOL_DEBUG(SAT_DEBUG_STATS, "minimizing %d -> %d with %s\n", solv->decisionmap[p], l, solvable2str(pool, pool->solvables + p));
2734 revert(solv, level);
2736 level = setpropagatelearn(solv, level, p, disablerules);
2747 POOL_DEBUG(SAT_DEBUG_STATS, "solver statistics: %d learned rules, %d unsolvable\n", solv->stats_learned, solv->stats_unsolvable);
2749 POOL_DEBUG(SAT_DEBUG_STATS, "done solving.\n\n");
2754 /*-------------------------------------------------------------------
2758 * at this point, all rules that led to conflicts are disabled.
2759 * we re-enable all rules of a problem set but rule "sug", then
2760 * continue to disable more rules until there as again a solution.
2763 /* FIXME: think about conflicting assertions */
2766 refine_suggestion(Solver *solv, Queue *job, Id *problem, Id sug, Queue *refined)
2768 Pool *pool = solv->pool;
2774 IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
2776 POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "refine_suggestion start\n");
2777 for (i = 0; problem[i]; i++)
2779 if (problem[i] == sug)
2780 POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "=> ");
2781 solver_printproblem(solv, problem[i]);
2784 queue_init(&disabled);
2785 queue_empty(refined);
2786 queue_push(refined, sug);
2788 /* re-enable all problem rules with the exception of "sug"(gestion) */
2792 for (i = 0; problem[i]; i++)
2793 if (problem[i] != sug)
2794 enableproblem(solv, problem[i]);
2797 disableupdaterules(solv, job, -(sug + 1));
2798 else if (sug >= solv->updaterules && sug < solv->updaterules_end)
2800 /* enable feature rule */
2801 Rule *r = solv->rules + solv->featurerules + (sug - solv->updaterules);
2803 enablerule(solv, r);
2806 enableweakrules(solv);
2810 int njob, nfeature, nupdate;
2811 queue_empty(&solv->problems);
2812 revert(solv, 1); /* XXX no longer needed? */
2815 if (!solv->problems.count)
2816 run_solver(solv, 0, 0);
2818 if (!solv->problems.count)
2820 POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "no more problems!\n");
2821 IF_POOLDEBUG (SAT_DEBUG_SCHUBI)
2822 solver_printdecisions(solv);
2823 break; /* great, no more problems */
2825 disabledcnt = disabled.count;
2826 /* start with 1 to skip over proof index */
2827 njob = nfeature = nupdate = 0;
2828 for (i = 1; i < solv->problems.count - 1; i++)
2830 /* ignore solutions in refined */
2831 v = solv->problems.elements[i];
2833 break; /* end of problem reached */
2834 for (j = 0; problem[j]; j++)
2835 if (problem[j] != sug && problem[j] == v)
2839 if (v >= solv->featurerules && v < solv->featurerules_end)
2845 queue_push(&disabled, v);
2847 if (disabled.count == disabledcnt)
2849 /* no solution found, this was an invalid suggestion! */
2850 POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "no solution found!\n");
2854 if (!njob && nupdate && nfeature)
2856 /* got only update rules, filter out feature rules */
2857 POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "throwing away feature rules\n");
2858 for (i = j = disabledcnt; i < disabled.count; i++)
2860 v = disabled.elements[i];
2861 if (v < solv->featurerules || v >= solv->featurerules_end)
2862 disabled.elements[j++] = v;
2867 if (disabled.count == disabledcnt + 1)
2869 /* just one suggestion, add it to refined list */
2870 v = disabled.elements[disabledcnt];
2872 queue_push(refined, v); /* do not record feature rules */
2873 disableproblem(solv, v);
2874 if (v >= solv->updaterules && v < solv->updaterules_end)
2876 Rule *r = solv->rules + (v - solv->updaterules + solv->featurerules);
2878 enablerule(solv, r); /* enable corresponding feature rule */
2881 disableupdaterules(solv, job, -(v + 1));
2885 /* more than one solution, disable all */
2886 /* do not push anything on refine list, as we do not know which solution to choose */
2887 /* thus, the user will get another problem if he selects this solution, where he
2888 * can choose the right one */
2889 IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
2891 POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "more than one solution found:\n");
2892 for (i = disabledcnt; i < disabled.count; i++)
2893 solver_printproblem(solv, disabled.elements[i]);
2895 for (i = disabledcnt; i < disabled.count; i++)
2897 v = disabled.elements[i];
2898 disableproblem(solv, v);
2899 if (v >= solv->updaterules && v < solv->updaterules_end)
2901 Rule *r = solv->rules + (v - solv->updaterules + solv->featurerules);
2903 enablerule(solv, r);
2908 /* all done, get us back into the same state as before */
2909 /* enable refined rules again */
2910 for (i = 0; i < disabled.count; i++)
2911 enableproblem(solv, disabled.elements[i]);
2912 /* disable problem rules again */
2915 for (i = 0; problem[i]; i++)
2916 enableproblem(solv, problem[i]);
2917 disableupdaterules(solv, job, -1);
2919 /* disable problem rules again */
2920 for (i = 0; problem[i]; i++)
2921 disableproblem(solv, problem[i]);
2922 POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "refine_suggestion end\n");
2926 /*-------------------------------------------------------------------
2927 * sorting helper for problems
2931 problems_sortcmp(const void *ap, const void *bp)
2933 Id a = *(Id *)ap, b = *(Id *)bp;
2942 /*-------------------------------------------------------------------
2947 problems_sort(Solver *solv)
2950 if (!solv->problems.count)
2952 for (i = j = 1; i < solv->problems.count; i++)
2954 if (!solv->problems.elements[i])
2957 qsort(solv->problems.elements + j, i - j, sizeof(Id), problems_sortcmp);
2958 if (++i == solv->problems.count)
2966 /*-------------------------------------------------------------------
2967 * convert problems to solutions
2971 problems_to_solutions(Solver *solv, Queue *job)
2973 Pool *pool = solv->pool;
2981 if (!solv->problems.count)
2983 problems_sort(solv);
2984 queue_clone(&problems, &solv->problems);
2985 queue_init(&solution);
2986 queue_init(&solutions);
2987 /* copy over proof index */
2988 queue_push(&solutions, problems.elements[0]);
2989 problem = problems.elements + 1;
2990 for (i = 1; i < problems.count; i++)
2992 Id v = problems.elements[i];
2995 /* mark end of this problem */
2996 queue_push(&solutions, 0);
2997 queue_push(&solutions, 0);
2998 if (i + 1 == problems.count)
3000 /* copy over proof of next problem */
3001 queue_push(&solutions, problems.elements[i + 1]);
3003 problem = problems.elements + i + 1;
3006 refine_suggestion(solv, job, problem, v, &solution);
3007 if (!solution.count)
3008 continue; /* this solution didn't work out */
3011 for (j = 0; j < solution.count; j++)
3013 why = solution.elements[j];
3014 /* must be either job descriptor or update rule */
3015 assert(why < 0 || (why >= solv->updaterules && why < solv->updaterules_end));
3017 solver_printproblem(solv, why);
3021 /* job descriptor */
3022 queue_push(&solutions, 0);
3023 queue_push(&solutions, -why);
3027 /* update rule, find replacement package */
3028 Id p, d, *dp, rp = 0;
3030 p = solv->installed->start + (why - solv->updaterules);
3031 if (solv->decisionmap[p] > 0)
3032 continue; /* false alarm, turned out we can keep the package */
3033 rr = solv->rules + solv->featurerules + (why - solv->updaterules);
3035 rr = solv->rules + why;
3038 d = rr->d < 0 ? -rr->d - 1 : rr->d;
3041 if (solv->decisionmap[rr->w2] > 0 && pool->solvables[rr->w2].repo != solv->installed)
3046 for (dp = pool->whatprovidesdata + d; *dp; dp++)
3048 if (solv->decisionmap[*dp] > 0 && pool->solvables[*dp].repo != solv->installed)
3056 queue_push(&solutions, p);
3057 queue_push(&solutions, rp);
3061 /* mark end of this solution */
3064 queue_push(&solutions, 0);
3065 queue_push(&solutions, 0);
3069 POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "Oops, everything was fine?\n");
3072 queue_free(&solution);
3073 queue_free(&problems);
3074 /* copy queue over to solutions */
3075 queue_free(&solv->problems);
3076 queue_clone(&solv->problems, &solutions);
3078 /* bring solver back into problem state */
3079 revert(solv, 1); /* XXX move to reset_solver? */
3082 assert(solv->problems.count == solutions.count);
3083 queue_free(&solutions);
3087 /*-------------------------------------------------------------------
3091 * advance to next problem
3095 solver_next_problem(Solver *solv, Id problem)
3099 return solv->problems.count ? 1 : 0;
3100 pp = solv->problems.elements + problem;
3101 while (pp[0] || pp[1])
3105 while (pp[0] || pp[1])
3110 problem = pp - solv->problems.elements;
3111 if (problem >= solv->problems.count)
3117 /*-------------------------------------------------------------------
3123 solver_next_solution(Solver *solv, Id problem, Id solution)
3129 pp = solv->problems.elements + solution;
3130 return pp[0] || pp[1] ? solution : 0;
3132 pp = solv->problems.elements + solution;
3133 while (pp[0] || pp[1])
3136 solution = pp - solv->problems.elements;
3137 return pp[0] || pp[1] ? solution : 0;
3141 /*-------------------------------------------------------------------
3143 * solution element iterator
3147 solver_next_solutionelement(Solver *solv, Id problem, Id solution, Id element, Id *p, Id *rp)
3150 element = element ? element + 2 : solution;
3151 pp = solv->problems.elements + element;
3152 if (!(pp[0] || pp[1]))
3160 /*-------------------------------------------------------------------
3162 * Retrieve information about a problematic rule
3164 * this is basically the reverse of addrpmrulesforsolvable
3168 solver_problemruleinfo(Solver *solv, Queue *job, Id rid, Id *depp, Id *sourcep, Id *targetp)
3170 Pool *pool = solv->pool;
3171 Repo *installed = solv->installed;
3175 Id p, d, *pp, req, *reqp, con, *conp, obs, *obsp, *dp;
3178 if (rid >= solv->jobrules && rid < solv->jobrules_end)
3181 r = solv->rules + rid;
3182 p = solv->ruletojob.elements[rid - solv->jobrules];
3183 *depp = job->elements[p + 1];
3185 *targetp = job->elements[p];
3186 d = r->d < 0 ? -r->d - 1 : r->d;
3187 if (d == 0 && r->w2 == 0 && r->p == -SYSTEMSOLVABLE && job->elements[p] != SOLVER_INSTALL_SOLVABLE_ONE_OF)
3188 return SOLVER_PROBLEM_JOB_NOTHING_PROVIDES_DEP;
3189 return SOLVER_PROBLEM_JOB_RULE;
3191 if (rid >= solv->updaterules && rid < solv->updaterules_end)
3194 *sourcep = solv->installed->start + (rid - solv->updaterules);
3196 return SOLVER_PROBLEM_UPDATE_RULE;
3198 assert(rid < solv->rpmrules_end);
3199 r = solv->rules + rid;
3201 d = r->d < 0 ? -r->d - 1 : r->d;
3202 if (d == 0 && r->w2 == 0)
3204 /* a rpm rule assertion */
3205 s = pool->solvables - r->p;
3206 if (installed && !solv->fixsystem && s->repo == installed)
3208 assert(!dontfix); /* dontfix packages never have a neg assertion */
3211 /* see why the package is not installable */
3212 if (s->arch != ARCH_SRC && s->arch != ARCH_NOSRC && !pool_installable(pool, s))
3215 return SOLVER_PROBLEM_NOT_INSTALLABLE;
3217 /* check requires */
3220 reqp = s->repo->idarraydata + s->requires;
3221 while ((req = *reqp++) != 0)
3223 if (req == SOLVABLE_PREREQMARKER)
3225 dp = pool_whatprovides(pool, req);
3232 return SOLVER_PROBLEM_NOTHING_PROVIDES_DEP;
3235 if (!solv->allowselfconflicts && s->conflicts)
3237 conp = s->repo->idarraydata + s->conflicts;
3238 while ((con = *conp++) != 0)
3239 FOR_PROVIDES(p, pp, con)
3243 return SOLVER_PROBLEM_SELF_CONFLICT;
3246 /* should never happen */
3248 return SOLVER_PROBLEM_RPM_RULE;
3250 s = pool->solvables - r->p;
3251 if (installed && !solv->fixsystem && s->repo == installed)
3253 if (d == 0 && r->w2 < 0)
3255 /* a package conflict */
3256 Solvable *s2 = pool->solvables - r->w2;
3259 if (installed && !solv->fixsystem && s2->repo == installed)
3262 /* if both packages have the same name and at least one of them
3263 * is not installed, they conflict */
3264 if (s->name == s2->name && !(installed && s->repo == installed && s2->repo == installed))
3266 /* also check noobsoletes map */
3267 if ((s->evr == s2->evr && s->arch == s2->arch) || !solv->noobsoletes.size
3268 || ((!installed || s->repo != installed) && !MAPTST(&solv->noobsoletes, -r->p))
3269 || ((!installed || s2->repo != installed) && !MAPTST(&solv->noobsoletes, -r->w2)))
3274 return SOLVER_PROBLEM_SAME_NAME;
3278 /* check conflicts in both directions */
3281 conp = s->repo->idarraydata + s->conflicts;
3282 while ((con = *conp++) != 0)
3284 FOR_PROVIDES(p, pp, con)
3286 if (dontfix && pool->solvables[p].repo == installed)
3293 return SOLVER_PROBLEM_PACKAGE_CONFLICT;
3299 conp = s2->repo->idarraydata + s2->conflicts;
3300 while ((con = *conp++) != 0)
3302 FOR_PROVIDES(p, pp, con)
3304 if (dontfix2 && pool->solvables[p].repo == installed)
3311 return SOLVER_PROBLEM_PACKAGE_CONFLICT;
3315 /* check obsoletes in both directions */
3316 if ((!installed || s->repo != installed) && s->obsoletes && !(solv->noobsoletes.size && MAPTST(&solv->noobsoletes, -r->p)))
3318 obsp = s->repo->idarraydata + s->obsoletes;
3319 while ((obs = *obsp++) != 0)
3321 FOR_PROVIDES(p, pp, obs)
3325 if (!solv->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p, obs))
3330 return SOLVER_PROBLEM_PACKAGE_OBSOLETES;
3334 if ((!installed || s2->repo != installed) && s2->obsoletes && !(solv->noobsoletes.size && MAPTST(&solv->noobsoletes, -r->w2)))
3336 obsp = s2->repo->idarraydata + s2->obsoletes;
3337 while ((obs = *obsp++) != 0)
3339 FOR_PROVIDES(p, pp, obs)
3343 if (!solv->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p, obs))
3348 return SOLVER_PROBLEM_PACKAGE_OBSOLETES;
3352 if (solv->implicitobsoleteusesprovides && (!installed || s->repo != installed) && !(solv->noobsoletes.size && MAPTST(&solv->noobsoletes, -r->p)))
3354 FOR_PROVIDES(p, pp, s->name)
3361 return SOLVER_PROBLEM_PACKAGE_OBSOLETES;
3364 if (solv->implicitobsoleteusesprovides && (!installed || s2->repo != installed) && !(solv->noobsoletes.size && MAPTST(&solv->noobsoletes, -r->w2)))
3366 FOR_PROVIDES(p, pp, s2->name)
3373 return SOLVER_PROBLEM_PACKAGE_OBSOLETES;
3376 /* all cases checked, can't happen */
3380 return SOLVER_PROBLEM_RPM_RULE;
3382 /* simple requires */
3385 reqp = s->repo->idarraydata + s->requires;
3386 while ((req = *reqp++) != 0)
3388 if (req == SOLVABLE_PREREQMARKER)
3390 dp = pool_whatprovides(pool, req);
3393 if (*dp == r->w2 && dp[1] == 0)
3396 else if (dp - pool->whatprovidesdata == d)
3404 return SOLVER_PROBLEM_DEP_PROVIDERS_NOT_INSTALLABLE;
3407 /* all cases checked, can't happen */
3411 return SOLVER_PROBLEM_RPM_RULE;
3415 /*-------------------------------------------------------------------
3421 findproblemrule_internal(Solver *solv, Id idx, Id *reqrp, Id *conrp, Id *sysrp, Id *jobrp)
3424 Id lreqr, lconr, lsysr, ljobr;
3428 lreqr = lconr = lsysr = ljobr = 0;
3429 while ((rid = solv->learnt_pool.elements[idx++]) != 0)
3432 if (rid >= solv->learntrules)
3433 findproblemrule_internal(solv, solv->learnt_why.elements[rid - solv->learntrules], &lreqr, &lconr, &lsysr, &ljobr);
3434 else if (rid >= solv->jobrules && rid < solv->jobrules_end)
3439 else if (rid >= solv->updaterules && rid < solv->updaterules_end)
3446 assert(rid < solv->rpmrules_end);
3447 r = solv->rules + rid;
3448 d = r->d < 0 ? -r->d - 1 : r->d;
3449 if (!d && r->w2 < 0)
3456 if (!d && r->w2 == 0 && !reqassert)
3458 /* prefer assertions (XXX: bad idea?) */
3464 else if (solv->installed && r->p < 0 && solv->pool->solvables[-r->p].repo == solv->installed)
3466 /* prefer rules of installed packages */
3467 Id op = *reqrp >= 0 ? solv->rules[*reqrp].p : -*reqrp;
3468 if (op <= 0 || solv->pool->solvables[op].repo != solv->installed)
3474 if (!*reqrp && lreqr)
3476 if (!*conrp && lconr)
3478 if (!*jobrp && ljobr)
3480 if (!*sysrp && lsysr)
3485 /*-------------------------------------------------------------------
3489 * search for a rule that describes the problem to the
3490 * user. A pretty hopeless task, actually. We currently
3491 * prefer simple requires.
3495 solver_findproblemrule(Solver *solv, Id problem)
3497 Id reqr, conr, sysr, jobr;
3498 Id idx = solv->problems.elements[problem - 1];
3499 reqr = conr = sysr = jobr = 0;
3500 findproblemrule_internal(solv, idx, &reqr, &conr, &sysr, &jobr);
3513 /*-------------------------------------------------------------------
3515 * create reverse obsoletes map for installed solvables
3517 * for each installed solvable find which packages with *different* names
3518 * obsolete the solvable.
3519 * this index is used in policy_findupdatepackages if noupdateprovide is set.
3523 create_obsolete_index(Solver *solv)
3525 Pool *pool = solv->pool;
3527 Repo *installed = solv->installed;
3528 Id p, *pp, obs, *obsp, *obsoletes, *obsoletes_data;
3531 if (!installed || !installed->nsolvables)
3533 solv->obsoletes = obsoletes = sat_calloc(installed->end - installed->start, sizeof(Id));
3534 for (i = 1; i < pool->nsolvables; i++)
3536 s = pool->solvables + i;
3539 if (!pool_installable(pool, s))
3541 obsp = s->repo->idarraydata + s->obsoletes;
3542 while ((obs = *obsp++) != 0)
3544 FOR_PROVIDES(p, pp, obs)
3546 if (pool->solvables[p].repo != installed)
3548 if (pool->solvables[p].name == s->name)
3550 if (!solv->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p, obs))
3552 obsoletes[p - installed->start]++;
3557 for (i = 0; i < installed->nsolvables; i++)
3560 n += obsoletes[i] + 1;
3563 solv->obsoletes_data = obsoletes_data = sat_calloc(n + 1, sizeof(Id));
3564 POOL_DEBUG(SAT_DEBUG_STATS, "obsoletes data: %d entries\n", n + 1);
3565 for (i = pool->nsolvables - 1; i > 0; i--)
3567 s = pool->solvables + i;
3570 if (!pool_installable(pool, s))
3572 obsp = s->repo->idarraydata + s->obsoletes;
3573 while ((obs = *obsp++) != 0)
3575 FOR_PROVIDES(p, pp, obs)
3577 if (pool->solvables[p].repo != installed)
3579 if (pool->solvables[p].name == s->name)
3581 if (!solv->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p, obs))
3583 p -= installed->start;
3584 if (obsoletes_data[obsoletes[p]] != i)
3585 obsoletes_data[--obsoletes[p]] = i;
3592 /*-------------------------------------------------------------------
3594 * remove disabled conflicts
3598 removedisabledconflicts(Solver *solv, Queue *removed)
3600 Pool *pool = solv->pool;
3605 Id *decisionmap = solv->decisionmap;
3607 POOL_DEBUG(SAT_DEBUG_STATS, "removedisabledconflicts\n");
3608 queue_empty(removed);
3609 for (i = 0; i < solv->decisionq.count; i++)
3611 p = solv->decisionq.elements[i];
3614 /* a conflict. we never do conflicts on free decisions, so there
3615 * must have been an unit rule */
3616 why = solv->decisionq_why.elements[i];
3618 r = solv->rules + why;
3619 if (r->d < 0 && decisionmap[-p])
3621 /* rule is now disabled, remove from decisionmap */
3622 POOL_DEBUG(SAT_DEBUG_STATS, "removing conflict for package %s[%d]\n", solvable2str(pool, pool->solvables - p), -p);
3623 queue_push(removed, -p);
3624 queue_push(removed, decisionmap[-p]);
3625 decisionmap[-p] = 0;
3628 if (!removed->count)
3630 /* we removed some confliced packages. some of them might still
3631 * be in conflict, so search for unit rules and re-conflict */
3633 for (i = n = 1, r = solv->rules + i; n < solv->nrules; i++, r++, n++)
3635 if (i == solv->nrules)
3638 r = solv->rules + i;
3644 if (r->p < 0 && !decisionmap[-r->p])
3650 if (r->p < 0 && decisionmap[-r->p] == 0 && DECISIONMAP_FALSE(r->w2))
3652 else if (r->w2 < 0 && decisionmap[-r->w2] == 0 && DECISIONMAP_FALSE(r->p))
3657 if (r->p < 0 && decisionmap[-r->p] == 0)
3659 if (new || DECISIONMAP_FALSE(r->p))
3661 dp = pool->whatprovidesdata + r->d;
3662 while ((p = *dp++) != 0)
3664 if (new && p == new)
3666 if (p < 0 && decisionmap[-p] == 0)
3675 else if (!DECISIONMAP_FALSE(p))
3685 POOL_DEBUG(SAT_DEBUG_STATS, "re-conflicting package %s[%d]\n", solvable2str(pool, pool->solvables - new), -new);
3686 decisionmap[-new] = -1;
3688 n = 0; /* redo all rules */
3694 /*-------------------------------------------------------------------
3696 * weaken solvable dependencies
3700 weaken_solvable_deps(Solver *solv, Id p)
3705 for (i = 1, r = solv->rules + i; i < solv->featurerules; i++, r++)
3709 if ((r->d == 0 || r->d == -1) && r->w2 < 0)
3710 continue; /* conflict */
3711 queue_push(&solv->weakruleq, i);
3715 /********************************************************************/
3725 solver_solve(Solver *solv, Queue *job)
3727 Pool *pool = solv->pool;
3728 Repo *installed = solv->installed;
3731 Map addedmap; /* '1' == have rpm-rules for solvable */
3732 Id how, what, weak, p, *pp, d;
3738 /* create whatprovides if not already there */
3739 if (!pool->whatprovides)
3740 pool_createwhatprovides(pool);
3742 /* create obsolete index if needed */
3743 if (solv->noupdateprovide)
3744 create_obsolete_index(solv);
3747 * create basic rule set of all involved packages
3748 * use addedmap bitmap to make sure we don't create rules twice
3752 /* create noobsolete map if needed */
3753 for (i = 0; i < job->count; i += 2)
3755 how = job->elements[i] & ~SOLVER_WEAK;
3756 what = job->elements[i + 1];
3759 case SOLVER_NOOBSOLETES_SOLVABLE:
3760 case SOLVER_NOOBSOLETES_SOLVABLE_NAME:
3761 case SOLVER_NOOBSOLETES_SOLVABLE_PROVIDES:
3762 if (!solv->noobsoletes.size)
3763 map_init(&solv->noobsoletes, pool->nsolvables);
3764 if (how == SOLVER_NOOBSOLETES_SOLVABLE)
3766 MAPSET(&solv->noobsoletes, what);
3769 FOR_PROVIDES(p, pp, what)
3771 if (how == SOLVER_NOOBSOLETES_SOLVABLE_NAME && !pool_match_nevr(pool, pool->solvables + p, what))
3773 MAPSET(&solv->noobsoletes, p);
3781 map_init(&addedmap, pool->nsolvables);
3785 * always install our system solvable
3787 MAPSET(&addedmap, SYSTEMSOLVABLE);
3788 queue_push(&solv->decisionq, SYSTEMSOLVABLE);
3789 queue_push(&solv->decisionq_why, 0);
3790 solv->decisionmap[SYSTEMSOLVABLE] = 1; /* installed at level '1' */
3793 * create rules for all package that could be involved with the solving
3794 * so called: rpm rules
3799 oldnrules = solv->nrules;
3800 POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** create rpm rules for installed solvables ***\n");
3801 FOR_REPO_SOLVABLES(installed, p, s)
3802 addrpmrulesforsolvable(solv, s, &addedmap);
3803 POOL_DEBUG(SAT_DEBUG_STATS, "added %d rpm rules for installed solvables\n", solv->nrules - oldnrules);
3804 POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** create rpm rules for updaters of installed solvables ***\n");
3805 oldnrules = solv->nrules;
3806 FOR_REPO_SOLVABLES(installed, p, s)
3807 addrpmrulesforupdaters(solv, s, &addedmap, 1);
3808 POOL_DEBUG(SAT_DEBUG_STATS, "added %d rpm rules for updaters of installed solvables\n", solv->nrules - oldnrules);
3812 * create rules for all packages involved in the job
3813 * (to be installed or removed)
3816 POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** create rpm rules for packages involved with a job ***\n");
3817 oldnrules = solv->nrules;
3818 for (i = 0; i < job->count; i += 2)
3820 how = job->elements[i] & ~SOLVER_WEAK;
3821 what = job->elements[i + 1];
3825 case SOLVER_INSTALL_SOLVABLE:
3826 addrpmrulesforsolvable(solv, pool->solvables + what, &addedmap);
3828 case SOLVER_INSTALL_SOLVABLE_NAME:
3829 case SOLVER_INSTALL_SOLVABLE_PROVIDES:
3830 FOR_PROVIDES(p, pp, what)
3832 /* if by name, ensure that the name matches */
3833 if (how == SOLVER_INSTALL_SOLVABLE_NAME && !pool_match_nevr(pool, pool->solvables + p, what))
3835 addrpmrulesforsolvable(solv, pool->solvables + p, &addedmap);
3838 case SOLVER_INSTALL_SOLVABLE_UPDATE:
3839 /* dont allow downgrade */
3840 addrpmrulesforupdaters(solv, pool->solvables + what, &addedmap, 0);
3842 case SOLVER_INSTALL_SOLVABLE_ONE_OF:
3843 pp = pool->whatprovidesdata + what;
3844 while ((p = *pp++) != 0)
3845 addrpmrulesforsolvable(solv, pool->solvables + p, &addedmap);
3849 POOL_DEBUG(SAT_DEBUG_STATS, "added %d rpm rules for packages involved in a job\n", solv->nrules - oldnrules);
3851 POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** create rpm rules for recommended/suggested packages ***\n");
3853 oldnrules = solv->nrules;
3856 * add rules for suggests, [freshens,] enhances
3858 addrpmrulesforweak(solv, &addedmap);
3859 POOL_DEBUG(SAT_DEBUG_STATS, "added %d rpm rules because of weak dependencies\n", solv->nrules - oldnrules);
3861 IF_POOLDEBUG (SAT_DEBUG_STATS)
3863 int possible = 0, installable = 0;
3864 for (i = 1; i < pool->nsolvables; i++)
3866 if (pool_installable(pool, pool->solvables + i))
3868 if (MAPTST(&addedmap, i))
3871 POOL_DEBUG(SAT_DEBUG_STATS, "%d of %d installable solvables considered for solving\n", possible, installable);
3875 * first pass done, we now have all the rpm rules we need.
3876 * unify existing rules before going over all job rules and
3878 * at this point the system is always solvable,
3879 * as an empty system (remove all packages) is a valid solution
3882 unifyrules(solv); /* remove duplicate rpm rules */
3884 solv->rpmrules_end = solv->nrules; /* mark end of rpm rules */
3886 solv->directdecisions = solv->decisionq.count;
3887 POOL_DEBUG(SAT_DEBUG_STATS, "decisions so far: %d\n", solv->decisionq.count);
3890 * create feature rules
3892 * foreach installed:
3893 * create assertion (keep installed, if no update available)
3895 * create update rule (A|update1(A)|update2(A)|...)
3897 * those are used later on to keep a version of the installed packages in
3901 POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** Add feature rules ***\n");
3902 solv->featurerules = solv->nrules; /* mark start of feature rules */
3905 /* foreach possibly installed solvable */
3906 for (i = installed->start, s = pool->solvables + i; i < installed->end; i++, s++)
3908 if (s->repo != installed)
3910 addrule(solv, 0, 0); /* create dummy rule */
3914 if (s->freshens && !s->supplements)
3916 const char *name = id2str(pool, s->name);
3917 if (name[0] == 'a' && !strncmp(name, "atom:", 5))
3919 addrule(solv, 0, 0);
3924 addupdaterule(solv, s, 1); /* allow s to be updated */
3927 * assert one rule per installed solvable,
3928 * either an assertion (A)
3929 * or a possible update (A|update1(A)|update2(A)|...)
3931 assert(solv->nrules - solv->featurerules == installed->end - installed->start);
3933 solv->featurerules_end = solv->nrules;
3936 * Add update rules for installed solvables
3938 * almost identical to feature rules
3939 * except that downgrades are allowed
3942 POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** Add update rules ***\n");
3943 solv->updaterules = solv->nrules;
3946 { /* foreach installed solvables */
3947 /* we create all update rules, but disable some later on depending on the job */
3948 for (i = installed->start, s = pool->solvables + i; i < installed->end; i++, s++)
3952 if (s->repo != installed)
3954 addrule(solv, 0, 0); /* create dummy rule */
3959 /* no update rules for patch atoms */
3960 if (s->freshens && !s->supplements)
3962 const char *name = id2str(pool, s->name);
3963 if (name[0] == 'a' && !strncmp(name, "atom:", 5))
3965 addrule(solv, 0, 0);
3970 addupdaterule(solv, s, 0); /* allowall = 0: downgrades allowed */
3973 * check for and remove duplicate
3976 r = solv->rules + solv->nrules - 1; /* r: update rule */
3977 sr = r - (installed->end - installed->start); /* sr: feature rule */
3978 unifyrules_sortcmp_data = pool;
3979 if (!unifyrules_sortcmp(r, sr))
3981 /* identical rule, kill unneeded rule */
3982 if (solv->allowuninstall)
3984 /* keep feature rule */
3985 memset(r, 0, sizeof(*r));
3986 queue_push(&solv->weakruleq, sr - solv->rules);
3990 /* keep update rule */
3991 memset(sr, 0, sizeof(*sr));
3994 else if (solv->allowuninstall)
3996 /* make both feature and update rule weak */
3997 queue_push(&solv->weakruleq, r - solv->rules);
3998 queue_push(&solv->weakruleq, sr - solv->rules);
4001 disablerule(solv, sr);
4003 /* consistency check: we added a rule for _every_ installed solvable */
4004 assert(solv->nrules - solv->updaterules == installed->end - installed->start);
4006 solv->updaterules_end = solv->nrules;
4010 * now add all job rules
4013 POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** Add JOB rules ***\n");
4015 solv->jobrules = solv->nrules;
4016 for (i = 0; i < job->count; i += 2)
4018 oldnrules = solv->nrules;
4020 how = job->elements[i] & ~SOLVER_WEAK;
4021 weak = job->elements[i] & SOLVER_WEAK;
4022 what = job->elements[i + 1];
4025 case SOLVER_INSTALL_SOLVABLE: /* install specific solvable */
4026 s = pool->solvables + what;
4027 POOL_DEBUG(SAT_DEBUG_JOB, "job: %sinstall solvable %s\n", weak ? "weak " : "", solvable2str(pool, s));
4028 addrule(solv, what, 0); /* install by Id */
4029 queue_push(&solv->ruletojob, i);
4031 queue_push(&solv->weakruleq, solv->nrules - 1);
4033 case SOLVER_ERASE_SOLVABLE:
4034 s = pool->solvables + what;
4035 POOL_DEBUG(SAT_DEBUG_JOB, "job: %serase solvable %s\n", weak ? "weak " : "", solvable2str(pool, s));
4036 addrule(solv, -what, 0); /* remove by Id */
4037 queue_push(&solv->ruletojob, i);
4039 queue_push(&solv->weakruleq, solv->nrules - 1);
4041 case SOLVER_INSTALL_SOLVABLE_NAME: /* install by capability */
4042 case SOLVER_INSTALL_SOLVABLE_PROVIDES:
4043 if (how == SOLVER_INSTALL_SOLVABLE_NAME)
4044 POOL_DEBUG(SAT_DEBUG_JOB, "job: %sinstall name %s\n", weak ? "weak " : "", dep2str(pool, what));
4045 if (how == SOLVER_INSTALL_SOLVABLE_PROVIDES)
4046 POOL_DEBUG(SAT_DEBUG_JOB, "job: %sinstall provides %s\n", weak ? "weak " : "", dep2str(pool, what));
4048 FOR_PROVIDES(p, pp, what)
4050 /* if by name, ensure that the name matches */
4051 if (how == SOLVER_INSTALL_SOLVABLE_NAME && !pool_match_nevr(pool, pool->solvables + p, what))
4057 /* no provider, make this an impossible rule */
4058 queue_push(&q, -SYSTEMSOLVABLE);
4061 p = queue_shift(&q); /* get first provider */
4063 d = 0; /* single provider ? -> make assertion */
4065 d = pool_queuetowhatprovides(pool, &q); /* get all providers */
4066 addrule(solv, p, d); /* add 'requires' rule */
4067 queue_push(&solv->ruletojob, i);
4069 queue_push(&solv->weakruleq, solv->nrules - 1);
4071 case SOLVER_ERASE_SOLVABLE_NAME: /* remove by capability */
4072 case SOLVER_ERASE_SOLVABLE_PROVIDES:
4073 if (how == SOLVER_ERASE_SOLVABLE_NAME)
4074 POOL_DEBUG(SAT_DEBUG_JOB, "job: %serase name %s\n", weak ? "weak " : "", dep2str(pool, what));
4075 if (how == SOLVER_ERASE_SOLVABLE_PROVIDES)
4076 POOL_DEBUG(SAT_DEBUG_JOB, "job: %serase provides %s\n", weak ? "weak " : "", dep2str(pool, what));
4077 FOR_PROVIDES(p, pp, what)
4079 /* if by name, ensure that the name matches */
4080 if (how == SOLVER_ERASE_SOLVABLE_NAME && !pool_match_nevr(pool, pool->solvables + p, what))
4082 addrule(solv, -p, 0); /* add 'remove' rule */
4083 queue_push(&solv->ruletojob, i);
4085 queue_push(&solv->weakruleq, solv->nrules - 1);
4088 case SOLVER_INSTALL_SOLVABLE_UPDATE: /* find update for solvable */
4089 s = pool->solvables + what;
4090 POOL_DEBUG(SAT_DEBUG_JOB, "job: %supdate %s\n", weak ? "weak " : "", solvable2str(pool, s));
4091 addupdaterule(solv, s, 0);
4092 queue_push(&solv->ruletojob, i);
4094 queue_push(&solv->weakruleq, solv->nrules - 1);
4096 case SOLVER_INSTALL_SOLVABLE_ONE_OF:
4097 POOL_DEBUG(SAT_DEBUG_JOB, "job: %sone of\n", weak ? "weak " : "");
4098 for (pp = pool->whatprovidesdata + what; *pp; pp++)
4099 POOL_DEBUG(SAT_DEBUG_JOB, " %s\n", solvable2str(pool, pool->solvables + *pp));
4100 addrule(solv, -SYSTEMSOLVABLE, what);
4101 queue_push(&solv->ruletojob, i);
4103 queue_push(&solv->weakruleq, solv->nrules - 1);
4105 case SOLVER_WEAKEN_SOLVABLE_DEPS:
4106 s = pool->solvables + what;
4107 POOL_DEBUG(SAT_DEBUG_JOB, "job: weaken deps %s\n", solvable2str(pool, s));
4108 weaken_solvable_deps(solv, what);
4110 case SOLVER_NOOBSOLETES_SOLVABLE:
4111 POOL_DEBUG(SAT_DEBUG_JOB, "job: no obsolete %s\n", solvable2str(pool, pool->solvables + what));
4113 case SOLVER_NOOBSOLETES_SOLVABLE_NAME:
4114 POOL_DEBUG(SAT_DEBUG_JOB, "job: no obsolete name %s\n", dep2str(pool, what));
4116 case SOLVER_NOOBSOLETES_SOLVABLE_PROVIDES:
4117 POOL_DEBUG(SAT_DEBUG_JOB, "job: no obsolete provides %s\n", dep2str(pool, what));
4125 IF_POOLDEBUG (SAT_DEBUG_JOB)
4128 if (solv->nrules == oldnrules)
4129 POOL_DEBUG(SAT_DEBUG_JOB, " - no rule created\n");
4130 for (j = oldnrules; j < solv->nrules; j++)
4132 POOL_DEBUG(SAT_DEBUG_JOB, " - job ");
4133 solver_printrule(solv, SAT_DEBUG_JOB, solv->rules + j);
4137 assert(solv->ruletojob.count == solv->nrules - solv->jobrules);
4138 solv->jobrules_end = solv->nrules;
4140 /* all rules created
4141 * --------------------------------------------------------------
4142 * prepare for solving
4145 /* free unneeded memory */
4146 map_free(&addedmap);
4149 /* create weak map */
4150 map_init(&solv->weakrulemap, solv->nrules);
4151 for (i = 0; i < solv->weakruleq.count; i++)
4153 p = solv->weakruleq.elements[i];
4154 MAPSET(&solv->weakrulemap, p);
4157 /* all new rules are learnt after this point */
4158 solv->learntrules = solv->nrules;
4160 /* create assertion index. it is only used to speed up
4161 * makeruledecsions() a bit */
4162 for (i = 1, r = solv->rules + i; i < solv->nrules; i++, r++)
4163 if (r->p && !r->w2 && (r->d == 0 || r->d == -1))
4164 queue_push(&solv->ruleassertions, i);
4166 /* disable update rules that conflict with our job */
4167 disableupdaterules(solv, job, -1);
4169 /* make decisions based on job/update assertions */
4170 makeruledecisions(solv);
4172 /* create watches chains */
4175 POOL_DEBUG(SAT_DEBUG_STATS, "problems so far: %d\n", solv->problems.count);
4178 * ********************************************
4180 * ********************************************
4183 run_solver(solv, 1, solv->dontinstallrecommended ? 0 : 1);
4187 /* disable all erase jobs (including weak "keep uninstalled" rules) */
4188 for (i = solv->jobrules, r = solv->rules + i; i < solv->learntrules; i++, r++)
4190 if (r->d < 0) /* disabled ? */
4192 if (r->p > 0) /* install job? */
4194 disablerule(solv, r);
4200 enabledisablelearntrules(solv);
4201 removedisabledconflicts(solv, &redoq);
4205 * find recommended packages
4208 /* if redoq.count == 0 we already found all recommended in the
4210 if (redoq.count || solv->dontinstallrecommended || !solv->dontshowinstalledrecommended)
4212 Id rec, *recp, p, *pp;
4214 /* create map of all recommened packages */
4215 solv->recommends_index = -1;
4216 MAPZERO(&solv->recommendsmap);
4217 for (i = 0; i < solv->decisionq.count; i++)
4219 p = solv->decisionq.elements[i];
4222 s = pool->solvables + p;
4225 recp = s->repo->idarraydata + s->recommends;
4226 while ((rec = *recp++) != 0)
4228 FOR_PROVIDES(p, pp, rec)
4229 if (solv->decisionmap[p] > 0)
4233 if (!solv->dontshowinstalledrecommended)
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 && solv->dontshowinstalledrecommended)
4252 s = pool->solvables + i;
4253 if (!MAPTST(&solv->recommendsmap, i))
4255 if (!s->supplements)
4257 if (!pool_installable(pool, s))
4259 if (!solver_is_supplementing(solv, s))
4262 if (solv->dontinstallrecommended)
4263 queue_push(&solv->recommendations, i);
4265 queue_pushunique(&solv->recommendations, i);
4267 /* we use MODE_SUGGEST here so that repo prio is ignored */
4268 policy_filter_unwanted(solv, &solv->recommendations, 0, POLICY_MODE_SUGGEST);
4272 * find suggested packages
4277 Id sug, *sugp, p, *pp;
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 FOR_PROVIDES(p, pp, sug)
4294 if (solv->decisionmap[p] > 0)
4298 if (!solv->dontshowinstalledrecommended)
4300 FOR_PROVIDES(p, pp, sug)
4301 if (solv->decisionmap[p] > 0)
4302 MAPSET(&solv->suggestsmap, p);
4304 continue; /* already fulfilled */
4306 FOR_PROVIDES(p, pp, sug)
4307 MAPSET(&solv->suggestsmap, p);
4311 for (i = 1; i < pool->nsolvables; i++)
4313 if (solv->decisionmap[i] < 0)
4315 if (solv->decisionmap[i] > 0 && solv->dontshowinstalledrecommended)
4317 s = pool->solvables + i;
4318 if (!MAPTST(&solv->suggestsmap, i))
4322 if (!pool_installable(pool, s))
4324 if (!solver_is_enhancing(solv, s))
4327 queue_push(&solv->suggestions, i);
4329 policy_filter_unwanted(solv, &solv->suggestions, 0, POLICY_MODE_SUGGEST);
4334 /* restore decisionmap */
4335 for (i = 0; i < redoq.count; i += 2)
4336 solv->decisionmap[redoq.elements[i]] = redoq.elements[i + 1];
4340 * if unsolvable, prepare solutions
4343 if (solv->problems.count)
4345 int recocount = solv->recommendations.count;
4346 solv->recommendations.count = 0; /* so that revert() doesn't mess with it */
4347 queue_empty(&redoq);
4348 for (i = 0; i < solv->decisionq.count; i++)
4350 Id p = solv->decisionq.elements[i];
4351 queue_push(&redoq, p);
4352 queue_push(&redoq, solv->decisionq_why.elements[i]);
4353 queue_push(&redoq, solv->decisionmap[p > 0 ? p : -p]);
4355 problems_to_solutions(solv, job);
4356 memset(solv->decisionmap, 0, pool->nsolvables * sizeof(Id));
4357 queue_empty(&solv->decisionq);
4358 queue_empty(&solv->decisionq_why);
4359 for (i = 0; i < redoq.count; i += 3)
4361 Id p = redoq.elements[i];
4362 queue_push(&solv->decisionq, p);
4363 queue_push(&solv->decisionq_why, redoq.elements[i + 1]);
4364 solv->decisionmap[p > 0 ? p : -p] = redoq.elements[i + 2];
4366 solv->recommendations.count = recocount;
4369 POOL_DEBUG(SAT_DEBUG_STATS, "final solver statistics: %d learned rules, %d unsolvable\n", solv->stats_learned, solv->stats_unsolvable);
4373 /***********************************************************************/
4374 /* disk usage computations */
4376 /*-------------------------------------------------------------------
4378 * calculate DU changes
4382 solver_calc_duchanges(Solver *solv, DUChanges *mps, int nmps)
4386 solver_create_state_maps(solv, &installedmap, 0);
4387 pool_calc_duchanges(solv->pool, solv->installed, &installedmap, mps, nmps);
4388 map_free(&installedmap);
4392 /*-------------------------------------------------------------------
4394 * calculate changes in install size
4398 solver_calc_installsizechange(Solver *solv)
4403 solver_create_state_maps(solv, &installedmap, 0);
4404 change = pool_calc_installsizechange(solv->pool, solv->installed, &installedmap);
4405 map_free(&installedmap);