4 * SAT based dependency solver
18 #define RULES_BLOCK 63
20 static Pool *prune_best_version_arch_sortcmp_data;
22 /*-----------------------------------------------------------------*/
25 * prep for prune_best_version_arch
30 prune_best_version_arch_sortcmp(const void *ap, const void *bp)
32 Pool *pool = prune_best_version_arch_sortcmp_data;
35 return pool->solvables[a].name - pool->solvables[b].name;
41 replaces_system(Solver *solv, Id id)
43 Pool *pool = solv->pool;
44 Source *system = solv->system;
45 Id *name = pool->solvables[id].name;
47 FOR_PROVIDES(p, pp, id)
49 s = pool->solvables + p;
52 if (p >= system->start && p < system->start + system->nsolvables)
59 dep_installed(Solver *solv, Id dep)
61 Pool *pool = solv->pool;
66 Reldep *rd = GETRELDEP(pool, dep);
67 if (rd->flags == REL_AND)
69 if (!dep_installed(solv, rd->name))
71 return dep_installed(solv, rd->evr);
73 if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_INSTALLED)
74 return dep_installed(solv, rd->evr);
76 FOR_PROVIDES(p, pp, dep)
78 if (p >= solv->system->start && p < solv->system->start + solv->system->nsolvables)
85 dep_fulfilled(Solver *solv, Id dep)
87 Pool *pool = solv->pool;
92 Reldep *rd = GETRELDEP(pool, dep);
93 if (rd->flags == REL_AND)
95 if (!dep_fulfilled(solv, rd->name))
97 return dep_fulfilled(solv, rd->evr);
99 if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_INSTALLED)
100 return dep_installed(solv, rd->evr);
102 FOR_PROVIDES(p, pp, dep)
104 if (solv->decisionmap[p] > 0)
111 * prune_to_recommended
115 prune_to_recommended(Solver *solv, Queue *plist)
117 Pool *pool = solv->pool;
122 for (i = j = 0; i < plist->count; i++)
124 s = pool->solvables + plist->elements[i];
125 if (!s->supplements && !s->freshens)
127 if ((supp = s->supplements) != 0)
129 while ((sup = *supp++) != 0)
130 if (dep_fulfilled(solv, sup))
135 if ((supp = s->freshens) != 0)
137 while ((sup = *supp++) != 0)
138 if (dep_fulfilled(solv, sup))
143 plist->elements[j++] = s - pool->solvables;
150 * prune_best_version_arch
152 * sort list of packages (given through plist) by name and evr
153 * return result through plist
157 /* FIXME: must also look at update packages */
160 prune_best_version_arch(Pool *pool, Queue *plist)
167 if (plist->count < 2) /* no need to prune for a single entry */
169 if (pool->verbose) printf("prune_best_version_arch %d\n", plist->count);
171 /* prune to best architecture */
175 for (i = 0; i < plist->count; i++)
177 s = pool->solvables + plist->elements[i];
179 if (a > pool->lastarch)
181 a = pool->id2arch[a];
182 if (!bestscore || (a & 0xffff0000) < bestscore)
183 bestscore = a & 0xffff0000;
185 for (i = j = 0; i < plist->count; i++)
187 s = pool->solvables + plist->elements[i];
189 if (a > pool->lastarch)
191 a = pool->id2arch[a];
192 /* a == 1 -> noarch */
193 if (a != 1 && (a & 0xffff0000) != bestscore)
195 plist->elements[j++] = plist->elements[i];
202 prune_best_version_arch_sortcmp_data = pool;
203 /* sort by name first */
204 qsort(plist->elements, plist->count, sizeof(Id), prune_best_version_arch_sortcmp);
206 /* now find best 'per name' */
207 for (i = j = 0; i < plist->count; i++)
209 s = pool->solvables + plist->elements[i];
210 if (s->arch == ARCH_SRC || s->arch == ARCH_NOSRC)
213 if (pool->verbose) printf("- %s-%s.%s\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
215 if (!best) /* if no best yet, the current is best */
217 best = plist->elements[i];
221 /* name switch: re-init */
222 if (pool->solvables[best].name != s->name) /* new name */
224 if (pool->verbose) printf("BEST: %s-%s.%s\n", id2str(pool, pool->solvables[best].name), id2str(pool, pool->solvables[best].evr), id2str(pool, pool->solvables[best].arch));
225 plist->elements[j++] = best; /* move old best to front */
226 best = plist->elements[i]; /* take current as new best */
230 if (pool->solvables[best].evr != s->evr) /* compare evr */
232 if (evrcmp(pool, pool->solvables[best].evr, s->evr) < 0)
233 best = plist->elements[i];
238 best = plist->elements[0];
240 /* XXX also check obsoletes! */
241 if (pool->verbose) printf("BEST: %s-%s.%s\n", id2str(pool, pool->solvables[best].name), id2str(pool, pool->solvables[best].evr), id2str(pool, pool->solvables[best].arch));
243 plist->elements[j++] = best;
248 /*-----------------------------------------------------------------*/
255 printruleelement(Solver *solv, Rule *r, Id v)
257 Pool *pool = solv->pool;
261 s = pool->solvables + -v;
262 printf(" !%s-%s.%s [%d]", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch), -v);
266 s = pool->solvables + v;
267 printf(" %s-%s.%s [%d]", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch), v);
276 if (solv->decisionmap[s - pool->solvables] > 0)
277 printf(" I.%d", solv->decisionmap[s - pool->solvables]);
278 if (solv->decisionmap[s - pool->solvables] < 0)
279 printf(" C.%d", -solv->decisionmap[s - pool->solvables]);
289 printrule(Solver *solv, Rule *r)
294 if (r >= solv->rules && r < solv->rules + solv->nrules) /* r is a solver rule */
295 printf("Rule #%d:\n", (int)(r - solv->rules));
297 printf("Rule:\n"); /* r is any rule */
302 else if (r->d == ID_NULL)
309 v = solv->pool->whatprovidesdata[r->d + i - 1];
312 printruleelement(solv, r, v);
314 printf(" next: %d %d\n", r->n1, r->n2);
318 /*-----------------------------------------------------------------*/
324 static Pool *unifyrules_sortcmp_data;
327 * compare rules for unification sort
331 unifyrules_sortcmp(const void *ap, const void *bp)
333 Pool *pool = unifyrules_sortcmp_data;
334 Rule *a = (Rule *)ap;
335 Rule *b = (Rule *)bp;
341 return x; /* p differs */
344 if (a->d == 0 && b->d == 0)
345 return a->w2 - b->w2; /* assertion: return w2 diff */
347 if (a->d == 0) /* a is assertion, b not */
349 x = a->w2 - pool->whatprovidesdata[b->d];
353 if (b->d == 0) /* b is assertion, a not */
355 x = pool->whatprovidesdata[a->d] - b->w2;
359 /* compare whatprovidesdata */
360 ad = pool->whatprovidesdata + a->d;
361 bd = pool->whatprovidesdata + b->d;
362 for (; *ad && *ad == *bd; ad++, bd++)
373 unifyrules(Solver *solv)
378 if (solv->nrules <= 1) /* nothing to unify */
381 /* sort rules first */
382 unifyrules_sortcmp_data = solv->pool;
383 qsort(solv->rules + 1, solv->nrules - 1, sizeof(Rule), unifyrules_sortcmp);
390 for (i = j = 1, ir = solv->rules + 1; i < solv->nrules; i++, ir++)
392 if (jr && !unifyrules_sortcmp(ir, jr))
393 continue; /* prune! */
394 jr = solv->rules + j++; /* keep! */
399 /* reduced count from nrules to j rules */
400 if (solv->pool->verbose) printf("pruned rules from %d to %d\n", solv->nrules, j);
402 /* adapt rule buffer */
403 solv->rules = (Rule *)xrealloc(solv->rules, ((solv->nrules + RULES_BLOCK) & ~RULES_BLOCK) * sizeof(Rule));
412 for (i = 1; i < solv->nrules; i++)
415 if (r->d == 0) /* assertion */
420 dp = solv->pool->whatprovidesdata + r->d;
424 if (solv->pool->verbose)
426 printf(" binary: %d\n", binr);
427 printf(" normal: %d\n", solv->nrules - 1 - binr);
428 printf(" normal lits: %d\n", dc);
441 hashrule(Solver *solv, Id p, Id d, int n)
443 unsigned int x = (unsigned int)p;
447 return (x * 37) ^ (unsigned int)d;
448 dp = solv->pool->whatprovidesdata + d;
450 x = (x * 37) ^ (unsigned int)*dp++;
458 * p = direct literal; > 0 for learnt, < 0 for installed pkg (rpm)
459 * d, if < 0 direct literal, if > 0 offset into whatprovides, if == 0 rule is assertion (look at p only)
462 * A requires b, b provided by B1,B2,B3 => (-A|B1|B2|B3)
464 * p < 0 : rule from rpm (installed pkg)
465 * d > 0 : Offset in whatprovidesdata (list of providers)
467 * A conflicts b, b provided by B1,B2,B3 => (-A|-B1), (-A|-B2), (-A|-B3)
468 * d < 0: Id of solvable (e.g. B1)
470 * d == 0: unary rule, assertion => (A) or (-A)
472 * Install: p > 0, d = 0 (A) user requested install
473 * Remove: p < 0, d = 0 (-A) user requested remove
474 * Requires: p < 0, d > 0 (-A|B1|B2|...) d: <list of providers for requirement of p>
475 * Updates: p > 0, d > 0 (A|B1|B2|...) d: <list of updates for solvable p>
476 * Conflicts: p < 0, d < 0 (-A|-B) either p (conflict issuer) or d (conflict provider)
477 * ? p > 0, d < 0 (A|-B)
478 * No-op ?: p = 0, d = 0 (null) (used as policy rule placeholder)
482 addrule(Solver *solv, Id p, Id d)
487 int n = 0; /* number of literals in rule - 1
488 0 = direct assertion (single literal)
492 /* it often happenes that requires lead to adding the same rpm rule
493 * multiple times, so we prune those duplicates right away to make
494 * the work for unifyrules a bit easier */
496 if (solv->nrules && !solv->jobrules)
498 r = solv->rules + solv->nrules - 1; /* get the last added rule */
499 if (r->p == p && r->d == d && d != 0) /* identical and not user requested */
506 return NULL; /* ignore self conflict */
509 else if (d == 0) /* user requested */
513 for (dp = solv->pool->whatprovidesdata + d; *dp; dp++, n++)
515 return NULL; /* rule is self-fulfilling */
520 if (n == 0) /* direct assertion */
524 /* this is a rpm rule assertion, we do not have to allocate it */
525 /* we can identify it by looking at the decision level, it will be 1 */
528 if (solv->decisionmap[-p] > 0) /* */
530 if (solv->decisionmap[-p]) /* */
532 queuepush(&solv->decisionq, p);
533 queuepush(&solv->decisionq_why, 0);
534 solv->decisionmap[-p] = -1;
539 else if (n == 1 && p > d)
541 /* smallest literal first so we can find dups */
545 n = 1; /* re-set n, was used as temp var */
561 Id *dp2 = solv->pool->whatprovidesdata + r->d;
562 for (dp = solv->pool->whatprovidesdata + d; *dp; dp++, dp2++)
575 /* check and extend rule buffer */
576 if ((solv->nrules & RULES_BLOCK) == 0)
578 solv->rules = (Rule *)xrealloc(solv->rules, (solv->nrules + (RULES_BLOCK + 1)) * sizeof(Rule));
581 r = solv->rules + solv->nrules++; /* point to rule space */
586 /* direct assertion, no watch needed */
602 r->w2 = solv->pool->whatprovidesdata[d];
607 /* we don't add the decision for learnt rules, as the code does that
608 * right after calling addrule anyway */
611 && !solv->learntrules)
613 /* must be system or job rule, as there are only negative unary rpm rules */
614 Id vv = p > 0 ? p : -p;
615 if (solv->decisionmap[vv])
618 if (solv->decisionmap[vv] > 0 && p > 0)
620 if (solv->decisionmap[vv] < 0 && p < 0)
622 /* direct conflict! */
623 for (i = 0; i < solv->decisionq.count; i++)
625 if (solv->decisionq.elements[i] == -p)
628 if (i == solv->decisionq.count)
630 if (solv->decisionq_why.elements[i] == 0)
632 /* conflict with rpm rule */
633 queuepush(&solv->problems, r - solv->rules);
634 queuepush(&solv->problems, 0);
635 r->w1 = 0; /* disable */
638 /* conflict with other job or system rule */
639 queuepush(&solv->problems, solv->decisionq_why.elements[i]);
640 queuepush(&solv->problems, r - solv->rules);
641 queuepush(&solv->problems, 0);
642 r->w1 = 0; /* disable */
643 /* also disable conflicting rule */
644 solv->rules[solv->decisionq_why.elements[i]].w1 = 0;
645 /* XXX: remove from decisionq! */
646 printf("XXX remove from decisionq\n");
649 queuepush(&solv->decisionq, p);
650 queuepush(&solv->decisionq_why, r - solv->rules);
651 solv->decisionmap[p > 0 ? p : -p] = p > 0 ? 1 : -1;
658 * add (install) rules for solvable
663 addrulesforsolvable(Solver *solv, Solvable *s, Map *m)
665 Pool *pool = solv->pool;
666 Source *system = solv->system;
679 queueinit_buffer(&q, qbuf, sizeof(qbuf)/sizeof(*qbuf));
680 queuepush(&q, s - pool->solvables); /* push solvable Id */
686 * s: Pointer to solvable
690 if (MAPTST(m, n)) /* continue if already set in map */
694 s = pool->solvables + n; /* s = Solvable in question */
697 if (system /* have rpm */
699 && n >= system->start /* its an rpm rule */
700 && n < system->start + system->nsolvables)
702 dontfix = 1; /* dont care about broken rpm deps */
705 /*-----------------------------------------
706 * check requires of s
709 if ((reqp = s->requires) != ID_NULL)
711 while ((req = *reqp++) != ID_NULL)
713 if (req == SOLVABLE_PREREQMARKER) /* skip the marker */
716 dp = GET_PROVIDESP(req, p); /* get providers of req */
718 if (!*dp /* dont care if noone provides rpmlib() */
719 && !strncmp(id2str(pool, req), "rpmlib(", 7))
724 if (dontfix) /* rpm rule, dont care about breakage */
726 for (i = 0; dp[i]; i++)/* for all providers */
728 if (dp[i] >= system->start && dp[i] < system->start + system->nsolvables)
729 break; /* provider is installed */
731 if (!dp[i]) /* no provider found */
733 if (pool->verbose) printf("ignoring broken requires %s of system package %s-%s.%s\n", dep2str(pool, req), id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
740 /* nothing provides req! */
742 if (pool->verbose) printf("package %s-%s.%s is not installable (%s)\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch), dep2str(pool, req));
744 addrule(solv, -n, 0); /* mark requestor as uninstallable */
746 printf(">!> !unflag %s-%s.%s[%s]\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch), source_name(pool_source(pool, s)));
750 printf("addrule %s-%s.%s %s %d %d\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch), dep2str(pool, req), -n, dp - pool->whatprovidesdata);
751 for (i = 0; dp[i]; i++)
752 printf(" %s-%s.%s\n", id2str(pool, pool->solvables[dp[i]].name), id2str(pool, pool->solvables[dp[i]].evr), id2str(pool, pool->solvables[dp[i]].arch));
754 /* add 'requires' dependency */
755 addrule(solv, -n, dp - pool->whatprovidesdata); /* rule: (-requestor|provider1|provider2|...|providerN) */
757 /* descend the dependency tree */
758 for (; *dp != ID_NULL; dp++) /* loop through all providers */
764 } /* while, requirements of n */
766 } /* if, requirements */
769 /*-----------------------------------------
770 * check conflicts of s
773 if ((conp = s->conflicts) != ID_NULL)
775 while ((con = *conp++) != ID_NULL)
777 FOR_PROVIDES(p, pp, con) /* loop through all providers of this conflict */
779 /* dontfix: dont care about conflicts with already installed packs */
780 if (dontfix && p >= system->start && p < system->start + system->nsolvables)
782 addrule(solv, -n, -p); /* rule: -n|-p: either solvable _or_ provider of conflict */
787 /*-----------------------------------------
788 * check obsoletes if not installed
790 if (!system || n < system->start || n >= (system->start + system->nsolvables))
791 { /* not installed */
792 if ((obsp = s->obsoletes) != ID_NULL)
794 while ((obs = *obsp++) != ID_NULL)
796 FOR_PROVIDES(p, pp, obs)
797 addrule(solv, -n, -p);
800 FOR_PROVIDES(p, pp, s->name)
802 if (s->name == pool->solvables[p].name)
803 addrule(solv, -n, -p);
807 /*-----------------------------------------
808 * add recommends to the rule list
810 if ((recp = s->recommends) != ID_NULL)
811 while ((rec = *recp++) != ID_NULL)
813 FOR_PROVIDES(p, pp, rec)
822 addrulesforsupplements(Solver *solv, Map *m)
824 Pool *pool = solv->pool;
830 if (pool->verbose) printf("addrulesforsupplements... (%d)\n", solv->nrules);
831 for (i = n = 1; n < pool->nsolvables; i++, n++)
833 if (i == pool->nsolvables)
837 s = pool->solvables + i;
838 if (s->arch == ARCH_SRC || s->arch == ARCH_NOSRC)
840 if (pool->id2arch && (s->arch > pool->lastarch || !pool->id2arch[s->arch]))
843 if ((supp = s->supplements) != 0)
845 while ((sup = *supp++) != ID_NULL)
847 FOR_PROVIDES(p, pp, sup)
854 if (!sup && (supp = s->freshens) != 0)
856 while ((sup = *supp++) != ID_NULL)
858 FOR_PROVIDES(p, pp, sup)
867 addrulesforsolvable(solv, s, m);
870 if (pool->verbose) printf("done. (%d)\n", solv->nrules);
875 archchanges(Pool *pool, Solvable *s1, Solvable *s2)
877 Id a1 = s1->arch, a2 = s2->arch;
879 /* we allow changes to/from noarch */
880 if (a1 == a2 || a1 == ARCH_NOARCH || a2 == ARCH_NOARCH)
884 a1 = a1 <= pool->lastarch ? pool->id2arch[a1] : 0;
885 a2 = a2 <= pool->lastarch ? pool->id2arch[a2] : 0;
886 if (((a1 ^ a2) & 0xffff0000) != 0)
893 findupdatepackages(Solver *solv, Solvable *s, Queue *qs, Map *m, int allowdowngrade, int allowarchchange)
895 /* system packages get a special upgrade allowed rule */
896 Pool *pool = solv->pool;
897 Id p, *pp, n, p2, *pp2;
905 n = s - pool->solvables;
906 if (m && !MAPTST(m, n)) /* add rule for s if not already done */
907 addrulesforsolvable(solv, s, m);
910 * look for updates for s
912 FOR_PROVIDES(p, pp, s->name) /* every provider of s' name */
914 if (p == n) /* skip itself */
917 if (s->name == pool->solvables[p].name) /* name match */
919 if (!allowdowngrade /* consider downgrades ? */
920 && evrcmp(pool, s->evr, pool->solvables[p].evr) > 0)
923 if (!allowarchchange && archchanges(pool, s, pool->solvables + p))
926 else if ((obsp = pool->solvables[p].obsoletes) != 0) /* provides/obsoletes combination ? */
928 while ((obs = *obsp++) != 0) /* for all obsoletes */
930 FOR_PROVIDES(p2, pp2, obs) /* and all matching providers of the obsoletes */
932 if (p2 == n) /* match ! */
938 if (!obs) /* continue if no match */
940 /* here we have 'p' with a matching provides/obsoletes combination
941 * thus flagging p as a valid update candidate for s
946 if (m && !MAPTST(m, p)) /* mark p for install if not already done */
947 addrulesforsolvable(solv, pool->solvables + p, m);
952 * add rule for update
953 * (A|A1|A2|A3...) An = update candidates for A
955 * s = (installed) solvable
956 * m = 'addedmap', bit set if 'install' rule for solvable exists
960 addupdaterule(Solver *solv, Solvable *s, Map *m, int allowdowngrade, int allowarchchange, int dontaddrule)
962 /* system packages get a special upgrade allowed rule */
963 Pool *pool = solv->pool;
969 queueinit_buffer(&qs, qsbuf, sizeof(qsbuf)/sizeof(*qsbuf));
970 findupdatepackages(solv, s, &qs, m, allowdowngrade, allowarchchange);
971 p = s - pool->solvables;
972 if (dontaddrule) /* we consider update candidates but dont force them */
978 if (qs.count == 0) /* no updates found */
981 printf("new update rule: must keep %s-%s.%s\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
983 addrule(solv, p, 0); /* request 'install' of s */
988 d = pool_queuetowhatprovides(pool, &qs); /* intern computed provider queue */
990 r = addrule(solv, p, d); /* allow update of s */
992 printf("new update rule ");
999 /*-----------------------------------------------------------------*/
1006 * initial setup for all watches
1010 makewatches(Solver *solv)
1014 int nsolvables = solv->pool->nsolvables;
1016 xfree(solv->watches);
1017 /* lower half for removals, upper half for installs */
1018 solv->watches = (Id *)xcalloc(2 * nsolvables, sizeof(Id));
1020 /* do it reverse so rpm rules get triggered first */
1021 for (i = 1, r = solv->rules + solv->nrules - 1; i < solv->nrules; i++, r--)
1023 for (i = 1, r = solv->rules + 1; i < solv->nrules; i++, r++)
1026 if (!r->w1 /* rule is disabled */
1027 || !r->w2) /* rule is assertion */
1030 /* see addwatches(solv, r) */
1031 r->n1 = solv->watches[nsolvables + r->w1];
1032 solv->watches[nsolvables + r->w1] = r - solv->rules;
1034 r->n2 = solv->watches[nsolvables + r->w2];
1035 solv->watches[nsolvables + r->w2] = r - solv->rules;
1041 * add watches (for rule)
1045 addwatches(Solver *solv, Rule *r)
1047 int nsolvables = solv->pool->nsolvables;
1049 r->n1 = solv->watches[nsolvables + r->w1];
1050 solv->watches[nsolvables + r->w1] = r - solv->rules;
1052 r->n2 = solv->watches[nsolvables + r->w2];
1053 solv->watches[nsolvables + r->w2] = r - solv->rules;
1057 /*-----------------------------------------------------------------*/
1058 /* rule propagation */
1060 #define DECISIONMAP_TRUE(p) ((p) > 0 ? (decisionmap[p] > 0) : (decisionmap[-p] < 0))
1065 * propagate decision to all rules
1069 propagate(Solver *solv, int level)
1071 Pool *pool = solv->pool;
1076 Id *decisionmap = solv->decisionmap;
1077 Id *watches = solv->watches + pool->nsolvables;
1079 while (solv->propagate_index < solv->decisionq.count)
1081 /* negative because our watches trigger if literal goes FALSE */
1082 pkg = -solv->decisionq.elements[solv->propagate_index++];
1084 printf("popagate for decision %d level %d\n", -pkg, level);
1085 printruleelement(solv, 0, -pkg);
1087 for (rp = watches + pkg; *rp; rp = nrp)
1089 r = solv->rules + *rp;
1091 printf(" watch triggered ");
1104 /* if clause is TRUE, nothing to do */
1105 if (DECISIONMAP_TRUE(ow))
1110 /* not a binary clause, check if we need to move our watch */
1111 if (r->p && r->p != ow && !DECISIONMAP_TRUE(-r->p))
1114 for (dp = pool->whatprovidesdata + r->d; (p = *dp++) != 0;)
1115 if (p != ow && !DECISIONMAP_TRUE(-p))
1119 /* p is free to watch, move watch to p */
1122 printf(" -> move w%d to %s-%s.%s\n", (pkg == r->w1 ? 1 : 2), id2str(pool, pool->solvables[p].name), id2str(pool, pool->solvables[p].evr), id2str(pool, pool->solvables[p].arch));
1124 printf(" -> move w%d to !%s-%s.%s\n", (pkg == r->w1 ? 1 : 2), id2str(pool, pool->solvables[-p].name), id2str(pool, pool->solvables[-p].evr), id2str(pool, pool->solvables[-p].arch));
1138 watches[p] = r - solv->rules;
1142 /* unit clause found, set other watch to TRUE */
1143 if (DECISIONMAP_TRUE(-ow))
1144 return r; /* eek, a conflict! */
1150 decisionmap[ow] = level;
1152 decisionmap[-ow] = -level;
1153 queuepush(&solv->decisionq, ow);
1154 queuepush(&solv->decisionq_why, r - solv->rules);
1157 Solvable *s = pool->solvables + (ow > 0 ? ow : -ow);
1159 printf(" -> decided to install %s-%s.%s\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
1161 printf(" -> decided to conflict %s-%s.%s\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
1166 return 0; /* all is well */
1170 /*-----------------------------------------------------------------*/
1179 analyze(Solver *solv, int level, Rule *c, int *pr, int *dr, int *why)
1181 Pool *pool = solv->pool;
1184 Map seen; /* global? */
1188 int learnt_why = solv->learnt_pool.count;
1189 Id *decisionmap = solv->decisionmap;
1193 if (pool->verbose) printf("ANALYZE at %d ----------------------\n", level);
1194 mapinit(&seen, pool->nsolvables);
1195 idx = solv->decisionq.count;
1199 queuepush(&solv->learnt_pool, c - solv->rules);
1200 dp = c->d ? pool->whatprovidesdata + c->d : 0;
1211 if (DECISIONMAP_TRUE(v)) /* the one true literal */
1213 vv = v > 0 ? v : -v;
1214 if (MAPTST(&seen, vv))
1216 l = solv->decisionmap[vv];
1223 for (j = 0; j < solv->decisionq.count; j++)
1224 if (solv->decisionq.elements[j] == v)
1226 if (j == solv->decisionq.count)
1228 queuepush(&rulq, -(j + 1));
1230 continue; /* initial setting */
1234 num++; /* need to do this one as well */
1239 printf("PUSH %d ", v);
1240 printruleelement(solv, 0, v);
1247 printf("num = %d\n", num);
1253 v = solv->decisionq.elements[--idx];
1254 vv = v > 0 ? v : -v;
1255 if (MAPTST(&seen, vv))
1258 c = solv->rules + solv->decisionq_why.elements[idx];
1266 else if (r.count == 1 && r.elements[0] < 0)
1267 *dr = r.elements[0];
1269 *dr = pool_queuetowhatprovides(pool, &r);
1272 printf("learned rule for level %d (am %d)\n", rlevel, level);
1273 printruleelement(solv, 0, -v);
1274 for (i = 0; i < r.count; i++)
1277 printruleelement(solv, 0, v);
1281 queuepush(&solv->learnt_pool, 0);
1283 for (i = learnt_why; solv->learnt_pool.elements[i]; i++)
1285 printf("learnt_why ");
1286 printrule(solv, solv->rules + solv->learnt_pool.elements[i]);
1297 * reset the solver decisions to right after the rpm rules
1301 reset_solver(Solver *solv)
1307 /* delete all learnt rules */
1308 solv->nrules = solv->learntrules;
1309 QUEUEEMPTY(&solv->learnt_why);
1310 QUEUEEMPTY(&solv->learnt_pool);
1312 /* redo all direct decision without the disabled rules */
1313 for (i = 0; i < solv->decisionq.count; i++)
1315 v = solv->decisionq.elements[i];
1316 solv->decisionmap[v > 0 ? v : -v] = 0;
1318 for (i = 0; i < solv->decisionq_why.count; i++)
1319 if (solv->decisionq_why.elements[i])
1323 v = solv->decisionq.elements[i];
1324 solv->decisionmap[v > 0 ? v : -v] = v > 0 ? 1 : -1;
1327 if (solv->pool->verbose)
1328 printf("decisions done reduced from %d to %d\n", solv->decisionq.count, i);
1330 solv->decisionq_why.count = i;
1331 solv->decisionq.count = i;
1332 if (i < solv->propagate_index)
1333 solv->propagate_index = i;
1334 /* make direct decisions from enabled unary rules */
1335 for (i = solv->jobrules, r = solv->rules + solv->jobrules; i < solv->nrules; i++, r++)
1337 if (!r->w1 || r->w2)
1343 queuepush(&solv->decisionq, v);
1344 queuepush(&solv->decisionq_why, r - solv->rules);
1345 solv->decisionmap[v > 0 ? v : -v] = v > 0 ? 1 : -1;
1347 if (solv->pool->verbose)
1348 printf("decisions after adding job and system rules: %d\n", solv->decisionq.count);
1349 /* recreate watches */
1355 * analyze_unsolvable_rule
1359 analyze_unsolvable_rule(Solver *solv, Rule *c, int disablerules)
1364 why = c - solv->rules;
1366 if (why >= solv->jobrules && why < solv->systemrules)
1368 if (why >= solv->systemrules && why < solv->learntrules)
1369 printf("SYSTEM %d ", why - solv->systemrules);
1370 if (solv->learntrules && why >= solv->learntrules)
1374 if (solv->learntrules && why >= solv->learntrules)
1376 for (i = solv->learnt_why.elements[why - solv->learntrules]; solv->learnt_pool.elements[i]; i++)
1377 analyze_unsolvable_rule(solv, solv->rules + solv->learnt_pool.elements[i], disablerules);
1380 if (why >= solv->jobrules && why < solv->learntrules)
1384 /* turn off rule for further analysis */
1388 if (solv->problems.count)
1390 for (i = solv->problems.count - 1; i >= 0; i--)
1391 if (solv->problems.elements[i] == 0)
1393 else if (solv->problems.elements[i] == why)
1396 queuepush(&solv->problems, why);
1402 * analyze_unsolvable
1406 analyze_unsolvable(Solver *solv, Rule *c, int disablerules)
1408 Pool *pool = solv->pool;
1409 Map seen; /* global? */
1412 Id *decisionmap = solv->decisionmap;
1415 printf("ANALYZE UNSOLVABLE ----------------------\n");
1417 mapinit(&seen, pool->nsolvables);
1418 analyze_unsolvable_rule(solv, c, disablerules);
1419 dp = c->d ? pool->whatprovidesdata + c->d : 0;
1430 if (DECISIONMAP_TRUE(v)) /* the one true literal */
1432 vv = v > 0 ? v : -v;
1433 l = solv->decisionmap[vv];
1438 idx = solv->decisionq.count;
1441 v = solv->decisionq.elements[--idx];
1442 vv = v > 0 ? v : -v;
1443 if (!MAPTST(&seen, vv))
1445 why = solv->decisionq_why.elements[idx];
1450 printruleelement(solv, 0, v);
1454 c = solv->rules + why;
1455 analyze_unsolvable_rule(solv, c, disablerules);
1456 dp = c->d ? pool->whatprovidesdata + c->d : 0;
1467 if (DECISIONMAP_TRUE(v)) /* the one true literal */
1469 vv = v > 0 ? v : -v;
1470 l = solv->decisionmap[vv];
1477 queuepush(&solv->problems, 0); /* mark end of this problem */
1481 printf("analyze_unsolvables done\n");
1486 /*-----------------------------------------------------------------*/
1487 /* Decision revert */
1491 * revert decision at level
1495 revert(Solver *solv, int level)
1498 while (solv->decisionq.count)
1500 v = solv->decisionq.elements[solv->decisionq.count - 1];
1501 vv = v > 0 ? v : -v;
1502 if (solv->decisionmap[vv] <= level && solv->decisionmap[vv] >= -level)
1505 printf("reverting decision %d at %d\n", v, solv->decisionmap[vv]);
1507 solv->decisionmap[vv] = 0;
1508 solv->decisionq.count--;
1509 solv->decisionq_why.count--;
1510 solv->propagate_index = solv->decisionq.count;
1520 watch2onhighest(Solver *solv, Rule *r)
1526 return; /* binary rule, both watches are set */
1527 dp = solv->pool->whatprovidesdata + r->d;
1528 while ((v = *dp++) != 0)
1530 l = solv->decisionmap[v < 0 ? -v : v];
1547 setpropagatelearn(Solver *solv, int level, Id decision, int disablerules)
1557 solv->decisionmap[decision] = level;
1559 solv->decisionmap[-decision] = -level;
1560 queuepush(&solv->decisionq, decision);
1561 queuepush(&solv->decisionq_why, 0);
1565 r = propagate(solv, level);
1570 analyze_unsolvable(solv, r, disablerules);
1575 printf("conflict with rule #%d\n", (int)(r - solv->rules));
1576 l = analyze(solv, level, r, &p, &d, &why);
1577 if (l >= level || l <= 0)
1579 printf("reverting decisions (level %d -> %d)\n", level, l);
1581 revert(solv, level);
1582 r = addrule(solv, p, d); /* p requires d */
1585 if (solv->learnt_why.count != (r - solv->rules) - solv->learntrules)
1587 printf("%d %d\n", solv->learnt_why.count, (int)(r - solv->rules) - solv->learntrules);
1590 queuepush(&solv->learnt_why, why);
1593 /* at least 2 literals, needs watches */
1594 watch2onhighest(solv, r);
1595 addwatches(solv, r);
1597 solv->decisionmap[p > 0 ? p : -p] = p > 0 ? level : -level;
1598 queuepush(&solv->decisionq, p);
1599 queuepush(&solv->decisionq_why, r - solv->rules);
1600 printf("decision: ");
1601 printruleelement(solv, 0, p);
1602 printf("new rule: ");
1608 /*-----------------------------------------------------------------*/
1609 /* Main solver interface */
1614 * create solver structure
1616 * pool: all available solvables
1617 * system: installed Solvables
1620 * Upon solving, rules are created to flag the Solvables
1621 * of the 'system' Source as installed.
1625 solver_create(Pool *pool, Source *system)
1628 solv = (Solver *)xcalloc(1, sizeof(Solver));
1630 solv->system = system;
1633 queueinit(&solv->decisionq);
1634 queueinit(&solv->decisionq_why);
1635 queueinit(&solv->problems);
1636 queueinit(&solv->learnt_why);
1637 queueinit(&solv->learnt_pool);
1639 solv->decisionmap = (Id *)xcalloc(pool->nsolvables, sizeof(Id));
1640 solv->rules = (Rule *)xmalloc((solv->nrules + (RULES_BLOCK + 1)) * sizeof(Rule));
1641 memset(solv->rules, 0, sizeof(Rule));
1653 solver_free(Solver *solv)
1655 queuefree(&solv->decisionq);
1656 queuefree(&solv->decisionq_why);
1657 queuefree(&solv->learnt_why);
1658 queuefree(&solv->learnt_pool);
1659 xfree(solv->decisionmap);
1661 xfree(solv->watches);
1662 xfree(solv->weaksystemrules);
1670 * r->w1 was set to 0, now find proper value for w1
1674 reenablerule(Solver *solv, Rule *r)
1679 if (!r->w2) /* not a rule, but an assertion */
1689 r->w2 = r->d; /* mls: shouldn't this be r->w1 ? */
1693 /* put it on the first not-false literal */
1699 v = solv->pool->whatprovidesdata[r->d + i];
1707 l = solv->decisionmap[v > 0 ? v : -v];
1708 if (!l || (v < 0 && l < 0) || (v > 0 && l > 0))
1715 /*-------------------------------------------------------*/
1720 * all rules have been set up, not actually run the solver
1725 run_solver(Solver *solv, int disablerules, int doweak)
1733 Pool *pool = solv->pool;
1737 printf("number of rules: %d\n", solv->nrules);
1740 for (i = 0; i < solv->nrules; i++)
1742 printrule(solv, solv->rules + i);
1747 /* all new rules are learnt after this point */
1748 solv->learntrules = solv->nrules;
1749 /* crate watches lists */
1752 if (pool->verbose) printf("initial decisions: %d\n", solv->decisionq.count);
1754 /* start SAT algorithm */
1756 systemlevel = level + 1;
1757 if (pool->verbose) printf("solving...\n");
1768 if (pool->verbose) printf("propagating (%d %d)...\n", solv->propagate_index, solv->decisionq.count);
1769 if ((r = propagate(solv, level)) != 0)
1771 analyze_unsolvable(solv, r, disablerules);
1774 printf("UNSOLVABLE\n");
1784 if (level < systemlevel && solv->system->nsolvables)
1786 if (!solv->updatesystem)
1788 /* try to keep as many packages as possible */
1789 if (pool->verbose) printf("installing system packages\n");
1790 for (i = solv->system->start, n = 0; ; i++, n++)
1792 if (n == solv->system->nsolvables)
1794 if (i == solv->system->start + solv->system->nsolvables)
1795 i = solv->system->start;
1796 s = pool->solvables + i;
1797 if (solv->decisionmap[i] != 0)
1800 printf("system installing %s-%s.%s\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
1803 level = setpropagatelearn(solv, level, i, disablerules);
1806 printf("UNSOLVABLE\n");
1810 if (level <= olevel)
1814 if (solv->weaksystemrules)
1816 if (pool->verbose) printf("installing weak system packages\n");
1817 for (i = solv->system->start, n = 0; ; i++, n++)
1819 if (n == solv->system->nsolvables)
1821 if (solv->decisionmap[i] > 0 || (solv->decisionmap[i] < 0 && solv->weaksystemrules[i - solv->system->start] == 0))
1824 if (solv->decisionmap[i] == 0)
1826 if (solv->weaksystemrules[i - solv->system->start])
1828 dp = pool->whatprovidesdata + solv->weaksystemrules[i - solv->system->start];
1829 while ((p = *dp++) != 0)
1831 if (solv->decisionmap[p] > 0)
1833 if (solv->decisionmap[p] == 0)
1837 continue; /* rule is already true */
1843 prune_to_recommended(solv, &dq);
1845 prune_best_version_arch(pool, &dq);
1847 s = pool->solvables + dq.elements[0];
1848 printf("weak system installing %s-%s.%s\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
1851 level = setpropagatelearn(solv, level, dq.elements[0], disablerules);
1854 printf("UNSOLVABLE\n");
1858 if (level <= olevel)
1864 if (n != solv->system->nsolvables)
1867 systemlevel = level;
1874 if (pool->verbose) printf("deciding unresolved rules\n");
1875 for (i = 1, n = 1; ; i++, n++)
1877 if (n == solv->nrules)
1879 if (i == solv->nrules)
1881 r = solv->rules + i;
1887 /* binary or unary rule */
1888 /* need two positive undecided literals */
1889 if (r->p < 0 || r->w2 <= 0)
1891 if (solv->decisionmap[r->p] || solv->decisionmap[r->w2])
1893 queuepush(&dq, r->p);
1894 queuepush(&dq, r->w2);
1899 * all negative literals are installed
1900 * no positive literal is installed
1901 * i.e. the rule is not fulfilled and we
1902 * just need to decide on the positive literals
1906 if (solv->decisionmap[-r->p] <= 0)
1911 if (solv->decisionmap[r->p] > 0)
1913 if (solv->decisionmap[r->p] == 0)
1914 queuepush(&dq, r->p);
1916 dp = pool->whatprovidesdata + r->d;
1917 while ((p = *dp++) != 0)
1921 if (solv->decisionmap[-p] <= 0)
1926 if (solv->decisionmap[p] > 0)
1928 if (solv->decisionmap[p] == 0)
1937 /* cannot happen as this means that
1938 * the rule is unit */
1942 prune_to_recommended(solv, &dq);
1944 prune_best_version_arch(pool, &dq);
1945 p = dq.elements[dq.count - 1];
1946 s = pool->solvables + p;
1948 printf("installing %s-%s.%s\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
1951 level = setpropagatelearn(solv, level, p, disablerules);
1954 printf("UNSOLVABLE\n");
1958 if (level < systemlevel)
1960 if (level <= olevel)
1962 } /* for(), decide */
1964 if (n != solv->nrules) /* continue if level < systemlevel */
1967 if (doweak && !solv->problems.count)
1971 if (pool->verbose) printf("installing recommended packages\n");
1973 for (i = 1; i < pool->nsolvables; i++)
1975 if (solv->decisionmap[i] < 0)
1977 if (solv->decisionmap[i] > 0)
1979 Id *recp, rec, *pp, p;
1980 s = pool->solvables + i;
1981 /* installed, check for recommends */
1982 /* XXX need to special case AND ? */
1983 if ((recp = s->recommends) != 0)
1985 while ((rec = *recp++) != 0)
1988 FOR_PROVIDES(p, pp, rec)
1990 if (solv->decisionmap[p] > 0)
1995 else if (solv->decisionmap[p] == 0)
1996 queuepushunique(&dq, p);
2004 s = pool->solvables + i;
2005 if (!s->supplements && !s->freshens)
2007 if (s->arch == ARCH_SRC || s->arch == ARCH_NOSRC)
2009 if (pool->id2arch && (s->arch > pool->lastarch || !pool->id2arch[s->arch]))
2011 if ((supp = s->supplements) != 0)
2013 while ((sup = *supp++) != 0)
2014 if (dep_fulfilled(solv, sup))
2019 if ((supp = s->freshens) != 0)
2021 while ((sup = *supp++) != 0)
2022 if (dep_fulfilled(solv, sup))
2027 queuepushunique(&dq, i);
2032 prune_best_version_arch(pool, &dq);
2033 p = dq.elements[dq.count - 1];
2034 s = pool->solvables + p;
2036 printf("installing recommended %s-%s.%s\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
2038 level = setpropagatelearn(solv, level, p, 0);
2053 refine_suggestion(Solver *solv, Id *problem, Id sug, Queue *refined)
2061 printf("refine_suggestion start\n");
2062 queueinit(&disabled);
2063 QUEUEEMPTY(refined);
2064 queuepush(refined, sug);
2066 /* re-enable all rules but rule "sug" of the problem */
2067 for (i = 0; problem[i]; i++)
2069 if (problem[i] == sug)
2071 r = solv->rules + problem[i];
2076 reenablerule(solv, r);
2080 revert(solv, 1); /* XXX move to reset_solver? */
2082 QUEUEEMPTY(&solv->problems);
2083 run_solver(solv, 0, 0);
2084 if (!solv->problems.count)
2086 printf("no more problems!\n");
2088 printdecisions(solv);
2090 break; /* great, no more problems */
2092 disabledcnt = disabled.count;
2093 for (i = 0; i < solv->problems.elements[i]; i++)
2095 /* ignore solutions in refined */
2096 v = solv->problems.elements[i];
2097 for (j = 0; problem[j]; j++)
2098 if (problem[j] != sug && problem[j] == v)
2102 queuepush(&disabled, v);
2104 if (disabled.count == disabledcnt)
2106 /* no solution found, this was an invalid suggestion! */
2107 printf("no solution found!\n");
2108 for (i = 0; i < refined->count; i++)
2109 reenablerule(solv, solv->rules + refined->elements[i]);
2113 if (disabled.count == disabledcnt + 1)
2115 /* just one solution, add it to refined list */
2116 queuepush(refined, disabled.elements[disabledcnt]);
2120 printf("############################################## more than one solution found.\n");
2122 for (i = 0; i < solv->problems.elements[i]; i++)
2124 printrule(solv, solv->rules + solv->problems.elements[i]);
2126 printf("##############################################\n");
2128 /* more than one solution */
2129 /* for now return */
2131 for (i = disabledcnt; i < disabled.count; i++)
2133 r = solv->rules + disabled.elements[i];;
2142 /* enable refined rules again */
2143 for (i = 0; i < disabled.count; i++)
2144 reenablerule(solv, solv->rules + disabled.elements[i]);
2145 /* disable problem rules again so that we are in the same state as before */
2146 for (i = 0; problem[i]; i++)
2148 r = solv->rules + problem[i];
2151 printf("refine_suggestion end\n");
2160 id2rc(Solver *solv, Id id)
2163 if (solv->rc_output != 2)
2165 evr = id2str(solv->pool, id);
2166 if (*evr < '0' || *evr > '9')
2168 while (*evr >= '0' && *evr <= '9')
2176 printdecisions(Solver *solv)
2178 Pool *pool = solv->pool;
2179 Id p, *obsoletesmap;
2183 obsoletesmap = (Id *)xcalloc(pool->nsolvables, sizeof(Id));
2184 for (i = 0; i < solv->decisionq.count; i++)
2189 n = solv->decisionq.elements[i];
2192 if (n >= solv->system->start && n < solv->system->start + solv->system->nsolvables)
2194 s = pool->solvables + n;
2195 if ((obsp = s->obsoletes) != 0)
2196 while ((obs = *obsp++) != 0)
2197 FOR_PROVIDES(p, pp, obs)
2199 if (p >= solv->system->start && p < solv->system->start + solv->system->nsolvables)
2201 obsoletesmap[p] = n;
2205 FOR_PROVIDES(p, pp, s->name)
2206 if (s->name == pool->solvables[p].name)
2208 if (p >= solv->system->start && p < solv->system->start + solv->system->nsolvables)
2210 obsoletesmap[p] = n;
2216 if (solv->rc_output)
2217 printf(">!> Solution #1:\n");
2219 int installs = 0, uninstalls = 0, upgrades = 0;
2221 /* print solvables to be erased */
2223 for (i = solv->system->start; i < solv->system->start + solv->system->nsolvables; i++)
2225 if (solv->decisionmap[i] > 0)
2227 if (obsoletesmap[i])
2229 s = pool->solvables + i;
2230 if (solv->rc_output == 2)
2231 printf(">!> remove %s-%s%s\n", id2str(pool, s->name), id2rc(solv, s->evr), id2str(pool, s->evr));
2232 else if (solv->rc_output)
2233 printf(">!> remove %s-%s.%s\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
2235 printf("erase %s-%s.%s\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
2239 /* print solvables to be installed */
2241 for (i = 0; i < solv->decisionq.count; i++)
2244 p = solv->decisionq.elements[i];
2247 if (p >= solv->system->start && p < solv->system->start + solv->system->nsolvables)
2249 s = pool->solvables + p;
2251 if (!obsoletesmap[p])
2253 if (solv->rc_output)
2255 printf("install %s-%s%s", id2str(pool, s->name), id2rc(solv, s->evr), id2str(pool, s->evr));
2256 if (solv->rc_output != 2)
2257 printf(".%s", id2str(pool, s->arch));
2260 else if (!solv->rc_output)
2262 printf("update %s-%s.%s (obsoletes", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
2263 for (j = solv->system->start; j < solv->system->start + solv->system->nsolvables; j++)
2265 if (obsoletesmap[j] != p)
2267 s = pool->solvables + j;
2268 printf(" %s-%s.%s", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
2275 Solvable *f, *fn = 0;
2276 for (j = solv->system->start; j < solv->system->start + solv->system->nsolvables; j++)
2278 if (obsoletesmap[j] != p)
2280 f = pool->solvables + j;
2281 if (fn || f->name != s->name)
2283 if (solv->rc_output == 2)
2284 printf(">!> remove %s-%s%s\n", id2str(pool, s->name), id2rc(solv, s->evr), id2str(pool, s->evr));
2285 else if (solv->rc_output)
2286 printf(">!> remove %s-%s.%s\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
2294 printf(">!> install %s-%s%s", id2str(pool, s->name), id2rc(solv, s->evr), id2str(pool, s->evr));
2295 if (solv->rc_output != 2)
2296 printf(".%s", id2str(pool, s->arch));
2301 if (solv->rc_output == 2)
2302 printf(">!> upgrade %s-%s => %s-%s%s", id2str(pool, fn->name), id2str(pool, fn->evr), id2str(pool, s->name), id2rc(solv, s->evr), id2str(pool, s->evr));
2304 printf(">!> upgrade %s-%s.%s => %s-%s.%s", id2str(pool, fn->name), id2str(pool, fn->evr), id2str(pool, fn->arch), id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
2308 if (solv->rc_output)
2310 Source *source = pool_source(pool, s);
2312 printf("[%s]", source_name(source));
2317 if (solv->rc_output)
2318 printf(">!> installs=%d, upgrades=%d, uninstalls=%d\n", installs, upgrades, uninstalls);
2320 xfree(obsoletesmap);
2324 /*-----------------------------------------------------------------*/
2334 solve(Solver *solv, Queue *job)
2336 Pool *pool = solv->pool;
2338 Map addedmap; /* '1' == have rule for solvable */
2339 Map noupdaterule; /* '1' == don't update (scheduled for removal) */
2340 Id how, what, p, *pp, d;
2346 * create basic rule set of all involved packages
2351 mapinit(&addedmap, pool->nsolvables);
2352 mapinit(&noupdaterule, pool->nsolvables);
2357 * create rules for installed solvables -> keep them installed
2358 * so called: rpm rules
2362 for (i = solv->system->start; i < solv->system->start + solv->system->nsolvables; i++)
2363 addrulesforsolvable(solv, pool->solvables + i, &addedmap);
2366 * create install rules
2368 * two passes, as we want to keep the rpm rules distinct from the job rules
2374 * process job rules for solvables
2377 for (i = 0; i < job->count; i += 2)
2379 how = job->elements[i];
2380 what = job->elements[i + 1];
2384 case SOLVER_INSTALL_SOLVABLE:
2385 addrulesforsolvable(solv, pool->solvables + what, &addedmap);
2387 case SOLVER_INSTALL_SOLVABLE_NAME:
2388 case SOLVER_INSTALL_SOLVABLE_PROVIDES:
2390 FOR_PROVIDES(p, pp, what)
2392 /* if by name, ensure that the name matches */
2393 if (how == SOLVER_INSTALL_SOLVABLE_NAME && pool->solvables[p].name != what)
2395 addrulesforsolvable(solv, pool->solvables + p, &addedmap);
2398 case SOLVER_INSTALL_SOLVABLE_UPDATE:
2399 /* dont allow downgrade */
2400 addupdaterule(solv, pool->solvables + what, &addedmap, 0, 0, 1);
2406 * if unstalls are disallowed, add update rules for every
2407 * installed solvables in the hope to circumvent uninstall
2413 if (!solv->allowuninstall)
2415 /* add update rule for every installed package */
2416 for (i = solv->system->start; i < solv->system->start + solv->system->nsolvables; i++)
2417 addupdaterule(solv, pool->solvables + i, &addedmap, solv->allowdowngrade, solv->allowarchchange, 1);
2419 #else /* this is just to add the needed rpm rules to our set */
2420 for (i = solv->system->start; i < solv->system->start + solv->system->nsolvables; i++)
2421 addupdaterule(solv, pool->solvables + i, &addedmap, 1, 1, 1);
2424 addrulesforsupplements(solv, &addedmap);
2429 * unify existing rules before going over all job rules
2433 unifyrules(solv); /* remove duplicate rpm rules */
2436 * at this point the system is always solvable,
2437 * as an empty system (remove all packages) is a valid solution
2439 if (pool->verbose) printf("decisions based on rpms: %d\n", solv->decisionq.count);
2442 * now add all job rules
2445 solv->jobrules = solv->nrules;
2447 for (i = 0; i < job->count; i += 2)
2449 how = job->elements[i];
2450 what = job->elements[i + 1];
2453 case SOLVER_INSTALL_SOLVABLE: /* install specific solvable */
2454 if (solv->rc_output) {
2455 Solvable *s = pool->solvables + what;
2456 printf(">!> Installing %s from channel %s\n", id2str(pool, s->name), source_name(pool_source(pool, s)));
2458 addrule(solv, what, 0); /* install by Id */
2460 case SOLVER_ERASE_SOLVABLE:
2461 addrule(solv, -what, 0); /* remove by Id */
2462 MAPSET(&noupdaterule, what);
2464 case SOLVER_INSTALL_SOLVABLE_NAME: /* install by capability */
2465 case SOLVER_INSTALL_SOLVABLE_PROVIDES:
2467 FOR_PROVIDES(p, pp, what) /* check all providers */
2469 /* if by name, ensure that the name matches */
2470 if (how == SOLVER_INSTALL_SOLVABLE_NAME && pool->solvables[p].name != what)
2474 if (!q.count) { /* no provider found -> abort */
2475 fprintf(stderr, "Nothing provides '%s'\n", id2str(pool, what));
2476 /* XXX make this a problem! */
2481 p = queueshift(&q); /* get first provider */
2483 d = 0; /* single provider ? -> make assertion */
2485 d = pool_queuetowhatprovides(pool, &q); /* get all providers */
2486 addrule(solv, p, d); /* add 'requires' rule */
2488 case SOLVER_ERASE_SOLVABLE_NAME: /* remove by capability */
2489 case SOLVER_ERASE_SOLVABLE_PROVIDES:
2490 FOR_PROVIDES(p, pp, what)
2492 /* if by name, ensure that the name matches */
2493 if (how == SOLVER_ERASE_SOLVABLE_NAME && pool->solvables[p].name != what)
2496 addrule(solv, -p, 0); /* add 'remove' rule */
2497 MAPSET(&noupdaterule, p);
2500 case SOLVER_INSTALL_SOLVABLE_UPDATE: /* find update for solvable */
2501 addupdaterule(solv, pool->solvables + what, &addedmap, 0, 0, 0);
2506 if (pool->verbose) printf("problems so far: %d\n", solv->problems.count);
2509 * now add policy rules
2513 solv->systemrules = solv->nrules;
2516 * create rules for updating installed solvables
2522 if (!solv->allowuninstall)
2523 { /* loop over all installed solvables */
2524 for (i = solv->system->start; i < solv->system->start + solv->system->nsolvables; i++)
2526 if (!MAPTST(&noupdaterule, i)) /* if not marked as 'noupdate' */
2527 addupdaterule(solv, pool->solvables + i, &addedmap, solv->allowdowngrade, solv->allowarchchange, 0);
2529 addrule(solv, 0, 0); /* place holder */
2531 /* consistency check: we added a rule for _every_ system solvable */
2532 if (solv->nrules - solv->systemrules != solv->system->nsolvables)
2536 if (pool->verbose) printf("problems so far: %d\n", solv->problems.count);
2538 /* create special weak system rules */
2539 if (solv->system->nsolvables)
2541 solv->weaksystemrules = xcalloc(solv->system->nsolvables, sizeof(Id));
2542 for (i = 0; i < solv->system->nsolvables; i++)
2544 findupdatepackages(solv, pool->solvables + solv->system->start + i, &q, (Map *)0, 1, 1);
2546 solv->weaksystemrules[i] = pool_queuetowhatprovides(pool, &q);
2550 /* free unneeded memory */
2552 mapfree(&noupdaterule);
2560 run_solver(solv, 1, 1);
2564 * print solver result
2568 if (pool->verbose) printf("-------------------------------------------------------------\n");
2570 if (solv->problems.count)
2580 clonequeue(&problems, &solv->problems);
2581 queueinit(&solution);
2582 printf("Encountered problems! Here are the solutions:\n");
2583 problem = problems.elements;
2584 for (i = 0; i < problems.count; i++)
2586 Id v = problems.elements[i];
2589 printf("====================================\n");
2590 problem = problems.elements + i + 1;
2593 refine_suggestion(solv, problem, v, &solution);
2594 for (j = 0; j < solution.count; j++)
2596 r = solv->rules + solution.elements[j];
2597 why = solution.elements[j];
2601 if (why >= solv->jobrules && why < solv->systemrules)
2603 /* do a sloppy job of analyzing the job rule */
2606 s = pool->solvables + r->p;
2607 printf("- do not install %s-%s.%s\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
2611 s = pool->solvables - r->p;
2612 printf("- do not erase %s-%s.%s\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
2615 else if (why >= solv->systemrules && why < solv->learntrules)
2618 s = pool->solvables + solv->system->start + (why - solv->systemrules);
2619 if (solv->weaksystemrules && solv->weaksystemrules[why - solv->systemrules])
2621 Id *dp = pool->whatprovidesdata + solv->weaksystemrules[why - solv->systemrules];
2623 if (solv->decisionmap[*dp] > 0)
2625 sd = pool->solvables + *dp;
2631 printf("- allow downgrade of %s-%s.%s to %s-%s.%s\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch), id2str(pool, sd->name), id2str(pool, sd->evr), id2str(pool, sd->arch));
2635 printf("- allow deinstallation of %s-%s.%s\n", id2str(pool, s->name), id2str(pool, s->evr), id2str(pool, s->arch));
2643 printf("------------------------------------\n");
2648 printdecisions(solv);