2 * Copyright (c) 2007-2009, Novell Inc.
4 * This program is licensed under the BSD license, read LICENSE.BSD
5 * for further information
20 #include "solver_private.h"
25 #include "solverdebug.h"
28 /**********************************************************************************/
30 /* a problem is an item on the solver's problem list. It can either be >0, in that
31 * case it is a update/infarch/dup rule, or it can be <0, which makes it refer to a job
32 * consisting of multiple job rules.
36 solver_disableproblem(Solver *solv, Id v)
44 if (v >= solv->infarchrules && v < solv->infarchrules_end)
46 Pool *pool = solv->pool;
47 Id name = pool->solvables[-solv->rules[v].p].name;
48 while (v > solv->infarchrules && pool->solvables[-solv->rules[v - 1].p].name == name)
50 for (; v < solv->infarchrules_end && pool->solvables[-solv->rules[v].p].name == name; v++)
51 solver_disablerule(solv, solv->rules + v);
54 if (v >= solv->duprules && v < solv->duprules_end)
56 Pool *pool = solv->pool;
57 Id name = pool->solvables[-solv->rules[v].p].name;
58 while (v > solv->duprules && pool->solvables[-solv->rules[v - 1].p].name == name)
60 for (; v < solv->duprules_end && pool->solvables[-solv->rules[v].p].name == name; v++)
61 solver_disablerule(solv, solv->rules + v);
64 solver_disablerule(solv, solv->rules + v);
66 /* XXX: doesn't work */
67 if (v >= solv->updaterules && v < solv->updaterules_end)
69 /* enable feature rule if we disabled the update rule */
70 r = solv->rules + (v - solv->updaterules + solv->featurerules);
72 solver_enablerule(solv, r);
78 jp = solv->ruletojob.elements;
79 for (i = solv->jobrules, r = solv->rules + i; i < solv->jobrules_end; i++, r++, jp++)
81 solver_disablerule(solv, r);
84 /*-------------------------------------------------------------------
89 solver_enableproblem(Solver *solv, Id v)
97 if (v >= solv->infarchrules && v < solv->infarchrules_end)
99 Pool *pool = solv->pool;
100 Id name = pool->solvables[-solv->rules[v].p].name;
101 while (v > solv->infarchrules && pool->solvables[-solv->rules[v - 1].p].name == name)
103 for (; v < solv->infarchrules_end && pool->solvables[-solv->rules[v].p].name == name; v++)
104 solver_enablerule(solv, solv->rules + v);
107 if (v >= solv->duprules && v < solv->duprules_end)
109 Pool *pool = solv->pool;
110 Id name = pool->solvables[-solv->rules[v].p].name;
111 while (v > solv->duprules && pool->solvables[-solv->rules[v - 1].p].name == name)
113 for (; v < solv->duprules_end && pool->solvables[-solv->rules[v].p].name == name; v++)
114 solver_enablerule(solv, solv->rules + v);
117 if (v >= solv->featurerules && v < solv->featurerules_end)
119 /* do not enable feature rule if update rule is enabled */
120 r = solv->rules + (v - solv->featurerules + solv->updaterules);
124 solver_enablerule(solv, solv->rules + v);
125 if (v >= solv->updaterules && v < solv->updaterules_end)
127 /* disable feature rule when enabling update rule */
128 r = solv->rules + (v - solv->updaterules + solv->featurerules);
130 solver_disablerule(solv, r);
135 jp = solv->ruletojob.elements;
136 for (i = solv->jobrules, r = solv->rules + i; i < solv->jobrules_end; i++, r++, jp++)
138 solver_enablerule(solv, r);
142 /*-------------------------------------------------------------------
145 * Reenable all disabled weak rules (marked in weakrulemap)
150 enableweakrules(Solver *solv)
155 for (i = 1, r = solv->rules + i; i < solv->learntrules; i++, r++)
157 if (r->d >= 0) /* already enabled? */
159 if (!MAPTST(&solv->weakrulemap, i))
161 solver_enablerule(solv, r);
166 /*-------------------------------------------------------------------
170 * at this point, all rules that led to conflicts are disabled.
171 * we re-enable all rules of a problem set but rule "sug", then
172 * continue to disable more rules until there as again a solution.
175 /* FIXME: think about conflicting assertions */
178 refine_suggestion(Solver *solv, Id *problem, Id sug, Queue *refined, int essentialok)
180 Pool *pool = solv->pool;
186 IF_POOLDEBUG (SOLV_DEBUG_SOLUTIONS)
188 POOL_DEBUG(SOLV_DEBUG_SOLUTIONS, "refine_suggestion start\n");
189 for (i = 0; problem[i]; i++)
191 if (problem[i] == sug)
192 POOL_DEBUG(SOLV_DEBUG_SOLUTIONS, "=> ");
193 solver_printproblem(solv, problem[i]);
196 queue_empty(refined);
197 if (!essentialok && sug < 0 && (solv->job.elements[-sug - 1] & SOLVER_ESSENTIAL) != 0)
199 queue_init(&disabled);
200 queue_push(refined, sug);
202 /* re-enable all problem rules with the exception of "sug"(gestion) */
205 for (i = 0; problem[i]; i++)
206 if (problem[i] != sug)
207 solver_enableproblem(solv, problem[i]);
210 solver_reenablepolicyrules(solv, -sug);
211 else if (sug >= solv->updaterules && sug < solv->updaterules_end)
213 /* enable feature rule */
214 Rule *r = solv->rules + solv->featurerules + (sug - solv->updaterules);
216 solver_enablerule(solv, r);
219 enableweakrules(solv);
223 int njob, nfeature, nupdate, pass;
224 queue_empty(&solv->problems);
227 if (!solv->problems.count)
228 solver_run_sat(solv, 0, 0);
230 if (!solv->problems.count)
232 POOL_DEBUG(SOLV_DEBUG_SOLUTIONS, "no more problems!\n");
233 break; /* great, no more problems */
235 disabledcnt = disabled.count;
236 /* start with 1 to skip over proof index */
237 njob = nfeature = nupdate = 0;
238 for (pass = 0; pass < 2; pass++)
240 for (i = 1; i < solv->problems.count - 1; i++)
242 /* ignore solutions in refined */
243 v = solv->problems.elements[i];
245 break; /* end of problem reached */
248 /* check if v is in the given problems list
249 * we allow disabling all problem rules *after* sug in
250 * pass 2, to prevent getting the same solution twice */
251 for (j = 0; problem[j]; j++)
252 if (problem[j] == v || (pass && problem[j] == sug))
257 if (v >= solv->featurerules && v < solv->featurerules_end)
263 if (!essentialok && (solv->job.elements[-v - 1] & SOLVER_ESSENTIAL) != 0)
264 continue; /* not that one! */
267 queue_push(&disabled, v);
269 if (disabled.count != disabledcnt)
272 if (disabled.count == disabledcnt)
274 /* no solution found, this was an invalid suggestion! */
275 POOL_DEBUG(SOLV_DEBUG_SOLUTIONS, "no solution found!\n");
279 if (!njob && nupdate && nfeature)
281 /* got only update rules, filter out feature rules */
282 POOL_DEBUG(SOLV_DEBUG_SOLUTIONS, "throwing away feature rules\n");
283 for (i = j = disabledcnt; i < disabled.count; i++)
285 v = disabled.elements[i];
286 if (v < solv->featurerules || v >= solv->featurerules_end)
287 disabled.elements[j++] = v;
292 if (disabled.count == disabledcnt + 1)
294 /* just one suggestion, add it to refined list */
295 v = disabled.elements[disabledcnt];
296 if (!nfeature && v != sug)
297 queue_push(refined, v); /* do not record feature rules */
298 solver_disableproblem(solv, v);
299 if (v >= solv->updaterules && v < solv->updaterules_end)
301 Rule *r = solv->rules + (v - solv->updaterules + solv->featurerules);
303 solver_enablerule(solv, r); /* enable corresponding feature rule */
306 solver_reenablepolicyrules(solv, -v);
310 /* more than one solution, disable all */
311 /* do not push anything on refine list, as we do not know which solution to choose */
312 /* thus, the user will get another problem if he selects this solution, where he
313 * can choose the right one */
314 IF_POOLDEBUG (SOLV_DEBUG_SOLUTIONS)
316 POOL_DEBUG(SOLV_DEBUG_SOLUTIONS, "more than one solution found:\n");
317 for (i = disabledcnt; i < disabled.count; i++)
318 solver_printproblem(solv, disabled.elements[i]);
320 for (i = disabledcnt; i < disabled.count; i++)
322 v = disabled.elements[i];
323 solver_disableproblem(solv, v);
324 if (v >= solv->updaterules && v < solv->updaterules_end)
326 Rule *r = solv->rules + (v - solv->updaterules + solv->featurerules);
328 solver_enablerule(solv, r);
333 /* all done, get us back into the same state as before */
334 /* enable refined rules again */
335 for (i = 0; i < disabled.count; i++)
336 solver_enableproblem(solv, disabled.elements[i]);
337 queue_free(&disabled);
338 /* reset policy rules */
339 for (i = 0; problem[i]; i++)
340 solver_enableproblem(solv, problem[i]);
341 solver_disablepolicyrules(solv);
342 /* disable problem rules again */
343 for (i = 0; problem[i]; i++)
344 solver_disableproblem(solv, problem[i]);
345 POOL_DEBUG(SOLV_DEBUG_SOLUTIONS, "refine_suggestion end\n");
349 /*-------------------------------------------------------------------
350 * sorting helper for problems
352 * bring update rules before job rules
353 * make essential job rules last
357 problems_sortcmp(const void *ap, const void *bp, void *dp)
360 Id a = *(Id *)ap, b = *(Id *)bp;
367 int af = job->elements[-a - 1] & SOLVER_ESSENTIAL;
368 int bf = job->elements[-b - 1] & SOLVER_ESSENTIAL;
377 * convert a solution rule into a job modifier
380 convertsolution(Solver *solv, Id why, Queue *solutionq)
382 Pool *pool = solv->pool;
386 if (why < solv->pooljobcnt)
388 queue_push(solutionq, SOLVER_SOLUTION_POOLJOB);
389 queue_push(solutionq, why);
393 queue_push(solutionq, SOLVER_SOLUTION_JOB);
394 queue_push(solutionq, why - solv->pooljobcnt);
398 if (why >= solv->infarchrules && why < solv->infarchrules_end)
401 /* infarch rule, find replacement */
402 assert(solv->rules[why].p < 0);
403 name = pool->solvables[-solv->rules[why].p].name;
404 while (why > solv->infarchrules && pool->solvables[-solv->rules[why - 1].p].name == name)
407 for (; why < solv->infarchrules_end && pool->solvables[-solv->rules[why].p].name == name; why++)
408 if (solv->decisionmap[-solv->rules[why].p] > 0)
410 p = -solv->rules[why].p;
414 return; /* false alarm */
415 queue_push(solutionq, SOLVER_SOLUTION_INFARCH);
416 queue_push(solutionq, p);
419 if (why >= solv->duprules && why < solv->duprules_end)
422 /* dist upgrade rule, find replacement */
423 assert(solv->rules[why].p < 0);
424 name = pool->solvables[-solv->rules[why].p].name;
425 while (why > solv->duprules && pool->solvables[-solv->rules[why - 1].p].name == name)
428 for (; why < solv->duprules_end && pool->solvables[-solv->rules[why].p].name == name; why++)
429 if (solv->decisionmap[-solv->rules[why].p] > 0)
431 p = -solv->rules[why].p;
435 return; /* false alarm */
436 queue_push(solutionq, SOLVER_SOLUTION_DISTUPGRADE);
437 queue_push(solutionq, p);
440 if (why >= solv->updaterules && why < solv->updaterules_end)
442 /* update rule, find replacement package */
446 /* check if this is a false positive, i.e. the update rule is fulfilled */
447 rr = solv->rules + why;
448 FOR_RULELITERALS(p, pp, rr)
449 if (p > 0 && solv->decisionmap[p] > 0)
450 return; /* false alarm */
452 p = solv->installed->start + (why - solv->updaterules);
453 if (solv->dupmap_all && solv->rules[why].p != p && solv->decisionmap[p] > 0)
455 /* distupgrade case, allow to keep old package */
456 queue_push(solutionq, SOLVER_SOLUTION_DISTUPGRADE);
457 queue_push(solutionq, p);
460 if (solv->decisionmap[p] > 0)
461 return; /* false alarm, turned out we can keep the package */
462 rr = solv->rules + solv->featurerules + (why - solv->updaterules);
464 rr = solv->rules + why;
467 int mvrp = 0; /* multi-version replacement */
468 FOR_RULELITERALS(rp, pp, rr)
470 if (rp > 0 && solv->decisionmap[rp] > 0 && pool->solvables[rp].repo != solv->installed)
473 if (!(solv->multiversion.size && MAPTST(&solv->multiversion, rp)))
479 /* found only multi-version replacements */
480 /* have to split solution into two parts */
481 queue_push(solutionq, p);
482 queue_push(solutionq, mvrp);
485 queue_push(solutionq, p);
486 queue_push(solutionq, rp);
489 if (why >= solv->bestrules && why < solv->bestrules_end)
494 /* check false positive */
495 rr = solv->rules + why;
496 FOR_RULELITERALS(p, pp, rr)
497 if (p > 0 && solv->decisionmap[p] > 0)
498 return; /* false alarm */
499 /* check update/feature rule */
500 p = solv->bestrules_pkg[why - solv->bestrules];
504 queue_push(solutionq, 0);
505 queue_push(solutionq, solv->ruletojob.elements[-p - solv->jobrules] + 1);
508 if (solv->decisionmap[p] > 0)
510 /* disable best rule by keeping the old package */
511 queue_push(solutionq, SOLVER_SOLUTION_BEST);
512 queue_push(solutionq, p);
515 rr = solv->rules + solv->featurerules + (p - solv->installed->start);
517 rr = solv->rules + solv->updaterules + (p - solv->installed->start);
518 mvrp = 0; /* multi-version replacement */
519 FOR_RULELITERALS(rp, pp, rr)
520 if (rp > 0 && solv->decisionmap[rp] > 0 && pool->solvables[rp].repo != solv->installed)
523 if (!(solv->multiversion.size && MAPTST(&solv->multiversion, rp)))
528 queue_push(solutionq, SOLVER_SOLUTION_BEST); /* split, see above */
529 queue_push(solutionq, mvrp);
530 queue_push(solutionq, p);
531 queue_push(solutionq, 0);
536 queue_push(solutionq, SOLVER_SOLUTION_BEST);
537 queue_push(solutionq, rp);
544 * convert problem data into a form usable for refining.
545 * Returns the number of problems.
548 solver_prepare_solutions(Solver *solv)
552 if (!solv->problems.count)
554 queue_empty(&solv->solutions);
555 queue_push(&solv->solutions, 0); /* dummy so idx is always nonzero */
556 idx = solv->solutions.count;
557 queue_push(&solv->solutions, -1); /* unrefined */
558 /* proofidx stays in position, thus we start with 1 */
559 for (i = 1; i < solv->problems.count; i++)
561 Id p = solv->problems.elements[i];
562 queue_push(&solv->solutions, p);
565 /* end of problem reached */
566 solv->problems.elements[j++] = idx;
567 if (i + 1 >= solv->problems.count)
569 /* start another problem */
570 solv->problems.elements[j++] = solv->problems.elements[++i]; /* copy proofidx */
571 idx = solv->solutions.count;
572 queue_push(&solv->solutions, -1); /* unrefined */
574 solv->problems.count = j;
579 * refine the simple solution rule list provided by
580 * the solver into multiple lists of job modifiers.
583 create_solutions(Solver *solv, int probnr, int solidx)
585 Pool *pool = solv->pool;
587 Queue problem, solution, problems_save;
591 int oldmistakes = solv->cleandeps_mistakes ? solv->cleandeps_mistakes->count : 0;
593 int decisioncnt_update;
594 int decisioncnt_keep;
595 int decisioncnt_resolve;
596 int decisioncnt_weak;
597 int decisioncnt_orphan;
599 now = solv_timems(0);
601 /* save decisionq, decisionq_why, decisionmap, and decisioncnt */
602 for (i = 0; i < solv->decisionq.count; i++)
604 Id p = solv->decisionq.elements[i];
605 queue_push(&redoq, p);
606 queue_push(&redoq, solv->decisionq_why.elements[i]);
607 queue_push(&redoq, solv->decisionmap[p > 0 ? p : -p]);
609 decisioncnt_update = solv->decisioncnt_update;
610 decisioncnt_keep = solv->decisioncnt_keep;
611 decisioncnt_resolve = solv->decisioncnt_resolve;
612 decisioncnt_weak = solv->decisioncnt_weak;
613 decisioncnt_orphan = solv->decisioncnt_orphan;
615 /* save problems queue */
616 problems_save = solv->problems;
617 memset(&solv->problems, 0, sizeof(solv->problems));
619 /* extract problem from queue */
620 queue_init(&problem);
621 for (i = solidx + 1; i < solv->solutions.count; i++)
623 Id v = solv->solutions.elements[i];
626 queue_push(&problem, v);
628 extraflags &= solv->job.elements[-v - 1];
630 if (extraflags == -1)
632 if (problem.count > 1)
633 solv_sort(problem.elements, problem.count, sizeof(Id), problems_sortcmp, &solv->job);
634 queue_push(&problem, 0); /* mark end for refine_suggestion */
637 for (i = 0; i < problem.count; i++)
638 printf("PP %d %d\n", i, problem.elements[i]);
641 /* refine each solution element */
644 queue_init(&solution);
645 for (i = 0; i < problem.count; i++)
647 int solstart = solv->solutions.count;
648 refine_suggestion(solv, problem.elements, problem.elements[i], &solution, essentialok);
649 queue_push(&solv->solutions, 0); /* reserve room for number of elements */
650 for (j = 0; j < solution.count; j++)
651 convertsolution(solv, solution.elements[j], &solv->solutions);
652 if (solv->solutions.count == solstart + 1)
654 solv->solutions.count--; /* this one did not work out */
655 if (nsol || i + 1 < problem.count)
656 continue; /* got one or still hope */
659 /* nothing found, start over */
660 POOL_DEBUG(SOLV_DEBUG_SOLUTIONS, "nothing found, re-run with essentialok = 1\n");
665 /* this is bad, we found no solution */
666 /* for now just offer a rule */
667 POOL_DEBUG(SOLV_DEBUG_SOLUTIONS, "nothing found, already did essentialok, fake it\n");
668 queue_push(&solv->solutions, 0);
669 for (j = 0; j < problem.count; j++)
671 convertsolution(solv, problem.elements[j], &solv->solutions);
672 if (solv->solutions.count > solstart + 1)
675 if (solv->solutions.count == solstart + 1)
677 solv->solutions.count--;
678 continue; /* sorry */
681 /* patch in number of solution elements */
682 solv->solutions.elements[solstart] = (solv->solutions.count - (solstart + 1)) / 2;
683 queue_push(&solv->solutions, 0); /* add end marker */
684 queue_push(&solv->solutions, 0); /* add end marker */
685 queue_push(&solv->solutions, problem.elements[i]); /* just for bookkeeping */
686 queue_push(&solv->solutions, extraflags & SOLVER_CLEANDEPS); /* our extraflags */
687 solv->solutions.elements[solidx + 1 + nsol++] = solstart;
689 solv->solutions.elements[solidx + 1 + nsol] = 0; /* end marker */
690 solv->solutions.elements[solidx] = nsol;
691 queue_free(&problem);
692 queue_free(&solution);
694 /* restore decisions */
695 memset(solv->decisionmap, 0, pool->nsolvables * sizeof(Id));
696 queue_empty(&solv->decisionq);
697 queue_empty(&solv->decisionq_why);
698 for (i = 0; i < redoq.count; i += 3)
700 Id p = redoq.elements[i];
701 queue_push(&solv->decisionq, p);
702 queue_push(&solv->decisionq_why, redoq.elements[i + 1]);
703 solv->decisionmap[p > 0 ? p : -p] = redoq.elements[i + 2];
706 solv->decisioncnt_update = decisioncnt_update;
707 solv->decisioncnt_keep = decisioncnt_keep;
708 solv->decisioncnt_resolve = decisioncnt_resolve;
709 solv->decisioncnt_weak = decisioncnt_weak;
710 solv->decisioncnt_orphan = decisioncnt_orphan;
712 /* restore problems */
713 queue_free(&solv->problems);
714 solv->problems = problems_save;
716 if (solv->cleandeps_mistakes)
719 queue_truncate(solv->cleandeps_mistakes, oldmistakes);
722 queue_free(solv->cleandeps_mistakes);
723 solv->cleandeps_mistakes = solv_free(solv->cleandeps_mistakes);
727 POOL_DEBUG(SOLV_DEBUG_STATS, "create_solutions for problem #%d took %d ms\n", probnr, solv_timems(now));
731 /**************************************************************************/
734 solver_problem_count(Solver *solv)
736 return solv->problems.count / 2;
740 solver_next_problem(Solver *solv, Id problem)
743 return solv->problems.count ? 1 : 0;
744 return (problem + 1) * 2 - 1 < solv->problems.count ? problem + 1 : 0;
748 solver_solution_count(Solver *solv, Id problem)
750 Id solidx = solv->problems.elements[problem * 2 - 1];
751 if (solv->solutions.elements[solidx] < 0)
752 create_solutions(solv, problem, solidx);
753 return solv->solutions.elements[solidx];
757 solver_next_solution(Solver *solv, Id problem, Id solution)
759 Id solidx = solv->problems.elements[problem * 2 - 1];
760 if (solv->solutions.elements[solidx] < 0)
761 create_solutions(solv, problem, solidx);
762 return solv->solutions.elements[solidx + solution + 1] ? solution + 1 : 0;
766 solver_solutionelement_count(Solver *solv, Id problem, Id solution)
768 Id solidx = solv->problems.elements[problem * 2 - 1];
769 solidx = solv->solutions.elements[solidx + solution];
770 return solv->solutions.elements[solidx];
774 solver_solutionelement_internalid(Solver *solv, Id problem, Id solution)
776 Id solidx = solv->problems.elements[problem * 2 - 1];
777 solidx = solv->solutions.elements[solidx + solution];
778 return solv->solutions.elements[solidx + 2 * solv->solutions.elements[solidx] + 3];
782 solver_solutionelement_extrajobflags(Solver *solv, Id problem, Id solution)
784 Id solidx = solv->problems.elements[problem * 2 - 1];
785 solidx = solv->solutions.elements[solidx + solution];
786 return solv->solutions.elements[solidx + 2 * solv->solutions.elements[solidx] + 4];
791 * return the next item of the proposed solution
792 * here are the possibilities for p / rp and what
793 * the solver expects the application to do:
795 * -------------------------------------------------------
796 * SOLVER_SOLUTION_INFARCH pkgid
797 * -> add (SOLVER_INSTALL|SOLVER_SOLVABLE, rp) to the job
798 * SOLVER_SOLUTION_DISTUPGRADE pkgid
799 * -> add (SOLVER_INSTALL|SOLVER_SOLVABLE, rp) to the job
800 * SOLVER_SOLUTION_BEST pkgid
801 * -> add (SOLVER_INSTALL|SOLVER_SOLVABLE, rp) to the job
802 * SOLVER_SOLUTION_JOB jobidx
803 * -> remove job (jobidx - 1, jobidx) from job queue
804 * SOLVER_SOLUTION_POOLJOB jobidx
805 * -> remove job (jobidx - 1, jobidx) from pool job queue
807 * -> add (SOLVER_ERASE|SOLVER_SOLVABLE, p) to the job
808 * pkgid (> 0) pkgid (> 0)
809 * -> add (SOLVER_INSTALL|SOLVER_SOLVABLE, rp) to the job
810 * (this will replace package p)
812 * Thus, the solver will either ask the application to remove
813 * a specific job from the job queue, or ask to add an install/erase
819 solver_next_solutionelement(Solver *solv, Id problem, Id solution, Id element, Id *p, Id *rp)
821 Id solidx = solv->problems.elements[problem * 2 - 1];
822 solidx = solv->solutions.elements[solidx + solution];
825 solidx += 1 + element * 2;
826 if (!solv->solutions.elements[solidx] && !solv->solutions.elements[solidx + 1])
828 *p = solv->solutions.elements[solidx];
829 *rp = solv->solutions.elements[solidx + 1];
834 solver_take_solutionelement(Solver *solv, Id p, Id rp, Id extrajobflags, Queue *job)
838 if (p == SOLVER_SOLUTION_POOLJOB)
840 solv->pool->pooljobs.elements[rp - 1] = SOLVER_NOOP;
841 solv->pool->pooljobs.elements[rp] = 0;
844 if (p == SOLVER_SOLUTION_JOB)
846 job->elements[rp - 1] = SOLVER_NOOP;
847 job->elements[rp] = 0;
850 if (rp <= 0 && p <= 0)
851 return; /* just in case */
853 p = SOLVER_INSTALL|SOLVER_SOLVABLE|extrajobflags;
857 p = SOLVER_ERASE|SOLVER_SOLVABLE|extrajobflags;
859 for (i = 0; i < job->count; i += 2)
860 if (job->elements[i] == p && job->elements[i + 1] == rp)
862 queue_push2(job, p, rp);
866 solver_take_solution(Solver *solv, Id problem, Id solution, Queue *job)
868 Id p, rp, element = 0;
869 Id extrajobflags = solver_solutionelement_extrajobflags(solv, problem, solution);
870 while ((element = solver_next_solutionelement(solv, problem, solution, element, &p, &rp)) != 0)
871 solver_take_solutionelement(solv, p, rp, extrajobflags, job);
875 /*-------------------------------------------------------------------
881 findproblemrule_internal(Solver *solv, Id idx, Id *reqrp, Id *conrp, Id *sysrp, Id *jobrp, Map *rseen)
884 Id lreqr, lconr, lsysr, ljobr;
887 int i, reqset = 0; /* 0: unset, 1: installed, 2: jobassert, 3: assert */
888 int conset = 0; /* 0: unset, 1: installed */
890 /* find us a jobassert rule */
891 for (i = idx; (rid = solv->learnt_pool.elements[i]) != 0; i++)
893 if (rid < solv->jobrules || rid >= solv->jobrules_end)
895 r = solv->rules + rid;
896 d = r->d < 0 ? -r->d - 1 : r->d;
897 if (!d && r->w2 == 0 && r->p > 0)
904 /* the problem rules are somewhat ordered from "near to the problem" to
905 * "near to the job" */
906 lreqr = lconr = lsysr = ljobr = 0;
907 while ((rid = solv->learnt_pool.elements[idx++]) != 0)
910 if (rid >= solv->learntrules)
912 if (MAPTST(rseen, rid - solv->learntrules))
914 MAPSET(rseen, rid - solv->learntrules);
915 findproblemrule_internal(solv, solv->learnt_why.elements[rid - solv->learntrules], &lreqr, &lconr, &lsysr, &ljobr, rseen);
917 else if ((rid >= solv->jobrules && rid < solv->jobrules_end) || (rid >= solv->infarchrules && rid < solv->infarchrules_end) || (rid >= solv->duprules && rid < solv->duprules_end) || (rid >= solv->bestrules && rid < solv->bestrules_end))
922 else if (rid >= solv->updaterules && rid < solv->updaterules_end)
929 assert(rid < solv->rpmrules_end);
930 r = solv->rules + rid;
931 d = r->d < 0 ? -r->d - 1 : r->d;
934 /* prefer conflicts of installed packages */
935 if (solv->installed && !conset)
937 if (r->p < 0 && (solv->pool->solvables[-r->p].repo == solv->installed ||
938 solv->pool->solvables[-r->w2].repo == solv->installed))
949 if (!d && r->w2 == 0 && reqset < 3)
951 if (*reqrp > 0 && r->p < -1)
953 Id op = -solv->rules[*reqrp].p;
954 if (op > 1 && solv->pool->solvables[op].arch != solv->pool->solvables[-r->p].arch)
955 continue; /* different arch, skip */
957 /* prefer assertions */
961 else if (jobassert && r->p == -jobassert)
963 /* prefer rules of job assertions */
967 else if (solv->installed && r->p < 0 && solv->pool->solvables[-r->p].repo == solv->installed && reqset <= 1)
969 /* prefer rules of job installed package so that the user doesn't get confused by strange packages */
978 if (!*reqrp && lreqr)
980 if (!*conrp && lconr)
982 if (!*jobrp && ljobr)
984 if (!*sysrp && lsysr)
991 * search for a rule that describes the problem to the
992 * user. Actually a pretty hopeless task that may leave the user
993 * puzzled. To get all of the needed information use
994 * solver_findallproblemrules() instead.
998 solver_findproblemrule(Solver *solv, Id problem)
1000 Id reqr, conr, sysr, jobr;
1001 Id idx = solv->problems.elements[2 * problem - 2];
1003 reqr = conr = sysr = jobr = 0;
1004 map_init(&rseen, solv->learntrules ? solv->nrules - solv->learntrules : 0);
1005 findproblemrule_internal(solv, idx, &reqr, &conr, &sysr, &jobr, &rseen);
1007 /* check if the request is about a not-installed package requiring a installed
1008 * package conflicting with the non-installed package. In that case return the conflict */
1009 if (reqr && conr && solv->installed && solv->rules[reqr].p < 0 && solv->rules[conr].p < 0 && solv->rules[conr].w2 < 0)
1011 Pool *pool = solv->pool;
1012 Solvable *s = pool->solvables - solv->rules[reqr].p;
1013 Solvable *s1 = pool->solvables - solv->rules[conr].p;
1014 Solvable *s2 = pool->solvables - solv->rules[conr].w2;
1016 if (s == s1 && s2->repo == solv->installed)
1017 cp = -solv->rules[conr].w2;
1018 else if (s == s2 && s1->repo == solv->installed)
1019 cp = -solv->rules[conr].p;
1020 if (cp && s1->name != s2->name && s->repo != solv->installed)
1023 Rule *r = solv->rules + reqr;
1024 FOR_RULELITERALS(p, pp, r)
1030 return reqr; /* some requires */
1032 return conr; /* some conflict */
1034 return sysr; /* an update rule */
1036 return jobr; /* a user request */
1041 /*-------------------------------------------------------------------*/
1044 findallproblemrules_internal(Solver *solv, Id idx, Queue *rules, Map *rseen)
1047 while ((rid = solv->learnt_pool.elements[idx++]) != 0)
1049 if (rid >= solv->learntrules)
1051 if (MAPTST(rseen, rid - solv->learntrules))
1053 MAPSET(rseen, rid - solv->learntrules);
1054 findallproblemrules_internal(solv, solv->learnt_why.elements[rid - solv->learntrules], rules, rseen);
1057 queue_pushunique(rules, rid);
1062 * find all problem rule
1064 * return all rules that lead to the problem. This gives the user
1065 * all of the information to understand the problem, but the result
1066 * can be a large number of rules.
1070 solver_findallproblemrules(Solver *solv, Id problem, Queue *rules)
1074 map_init(&rseen, solv->learntrules ? solv->nrules - solv->learntrules : 0);
1075 findallproblemrules_internal(solv, solv->problems.elements[2 * problem - 2], rules, &rseen);
1080 solver_problemruleinfo2str(Solver *solv, SolverRuleinfo type, Id source, Id target, Id dep)
1082 Pool *pool = solv->pool;
1086 case SOLVER_RULE_DISTUPGRADE:
1087 return pool_tmpjoin(pool, pool_solvid2str(pool, source), " does not belong to a distupgrade repository", 0);
1088 case SOLVER_RULE_INFARCH:
1089 return pool_tmpjoin(pool, pool_solvid2str(pool, source), " has inferior architecture", 0);
1090 case SOLVER_RULE_UPDATE:
1091 return pool_tmpjoin(pool, "problem with installed package ", pool_solvid2str(pool, source), 0);
1092 case SOLVER_RULE_JOB:
1093 return "conflicting requests";
1094 case SOLVER_RULE_JOB_UNSUPPORTED:
1095 return "unsupported request";
1096 case SOLVER_RULE_JOB_NOTHING_PROVIDES_DEP:
1097 return pool_tmpjoin(pool, "nothing provides requested ", pool_dep2str(pool, dep), 0);
1098 case SOLVER_RULE_JOB_UNKNOWN_PACKAGE:
1099 return pool_tmpjoin(pool, "package ", pool_dep2str(pool, dep), " does not exist");
1100 case SOLVER_RULE_JOB_PROVIDED_BY_SYSTEM:
1101 return pool_tmpjoin(pool, pool_dep2str(pool, dep), " is provided by the system", 0);
1102 case SOLVER_RULE_RPM:
1103 return "some dependency problem";
1104 case SOLVER_RULE_RPM_NOT_INSTALLABLE:
1105 return pool_tmpjoin(pool, "package ", pool_solvid2str(pool, source), " is not installable");
1106 case SOLVER_RULE_RPM_NOTHING_PROVIDES_DEP:
1107 s = pool_tmpjoin(pool, "nothing provides ", pool_dep2str(pool, dep), 0);
1108 return pool_tmpappend(pool, s, " needed by ", pool_solvid2str(pool, source));
1109 case SOLVER_RULE_RPM_SAME_NAME:
1110 s = pool_tmpjoin(pool, "cannot install both ", pool_solvid2str(pool, source), 0);
1111 return pool_tmpappend(pool, s, " and ", pool_solvid2str(pool, target));
1112 case SOLVER_RULE_RPM_PACKAGE_CONFLICT:
1113 s = pool_tmpjoin(pool, "package ", pool_solvid2str(pool, source), 0);
1114 s = pool_tmpappend(pool, s, " conflicts with ", pool_dep2str(pool, dep));
1115 return pool_tmpappend(pool, s, " provided by ", pool_solvid2str(pool, target));
1116 case SOLVER_RULE_RPM_PACKAGE_OBSOLETES:
1117 s = pool_tmpjoin(pool, "package ", pool_solvid2str(pool, source), 0);
1118 s = pool_tmpappend(pool, s, " obsoletes ", pool_dep2str(pool, dep));
1119 return pool_tmpappend(pool, s, " provided by ", pool_solvid2str(pool, target));
1120 case SOLVER_RULE_RPM_INSTALLEDPKG_OBSOLETES:
1121 s = pool_tmpjoin(pool, "installed package ", pool_solvid2str(pool, source), 0);
1122 s = pool_tmpappend(pool, s, " obsoletes ", pool_dep2str(pool, dep));
1123 return pool_tmpappend(pool, s, " provided by ", pool_solvid2str(pool, target));
1124 case SOLVER_RULE_RPM_IMPLICIT_OBSOLETES:
1125 s = pool_tmpjoin(pool, "package ", pool_solvid2str(pool, source), 0);
1126 s = pool_tmpappend(pool, s, " implicitly obsoletes ", pool_dep2str(pool, dep));
1127 return pool_tmpappend(pool, s, " provided by ", pool_solvid2str(pool, target));
1128 case SOLVER_RULE_RPM_PACKAGE_REQUIRES:
1129 s = pool_tmpjoin(pool, "package ", pool_solvid2str(pool, source), " requires ");
1130 return pool_tmpappend(pool, s, pool_dep2str(pool, dep), ", but none of the providers can be installed");
1131 case SOLVER_RULE_RPM_SELF_CONFLICT:
1132 s = pool_tmpjoin(pool, "package ", pool_solvid2str(pool, source), " conflicts with ");
1133 return pool_tmpappend(pool, s, pool_dep2str(pool, dep), " provided by itself");
1135 return "bad problem rule type";
1139 /* convenience function */
1141 solver_problem2str(Solver *solv, Id problem)
1143 Id type, source, target, dep;
1144 Id r = solver_findproblemrule(solv, problem);
1146 return "no problem rule?";
1147 type = solver_ruleinfo(solv, r, &source, &target, &dep);
1148 return solver_problemruleinfo2str(solv, type, source, target, dep);
1152 solver_solutionelement2str(Solver *solv, Id p, Id rp)
1154 Pool *pool = solv->pool;
1155 if (p == SOLVER_SOLUTION_JOB || p == SOLVER_SOLUTION_POOLJOB)
1158 if (p == SOLVER_SOLUTION_JOB)
1159 rp += solv->pooljobcnt;
1160 how = solv->job.elements[rp - 1];
1161 what = solv->job.elements[rp];
1162 return pool_tmpjoin(pool, "do not ask to ", pool_job2str(pool, how, what, 0), 0);
1164 else if (p == SOLVER_SOLUTION_INFARCH)
1166 Solvable *s = pool->solvables + rp;
1167 if (solv->installed && s->repo == solv->installed)
1168 return pool_tmpjoin(pool, "keep ", pool_solvable2str(pool, s), " despite the inferior architecture");
1170 return pool_tmpjoin(pool, "install ", pool_solvable2str(pool, s), " despite the inferior architecture");
1172 else if (p == SOLVER_SOLUTION_DISTUPGRADE)
1174 Solvable *s = pool->solvables + rp;
1175 if (solv->installed && s->repo == solv->installed)
1176 return pool_tmpjoin(pool, "keep obsolete ", pool_solvable2str(pool, s), 0);
1178 return pool_tmpjoin(pool, "install ", pool_solvable2str(pool, s), " from excluded repository");
1180 else if (p == SOLVER_SOLUTION_BEST)
1182 Solvable *s = pool->solvables + rp;
1183 if (solv->installed && s->repo == solv->installed)
1184 return pool_tmpjoin(pool, "keep old ", pool_solvable2str(pool, s), 0);
1186 return pool_tmpjoin(pool, "install ", pool_solvable2str(pool, s), " despite the old version");
1188 else if (p > 0 && rp == 0)
1189 return pool_tmpjoin(pool, "allow deinstallation of ", pool_solvid2str(pool, p), 0);
1190 else if (p > 0 && rp > 0)
1192 const char *sp = pool_solvid2str(pool, p);
1193 const char *srp = pool_solvid2str(pool, rp);
1194 const char *str = pool_tmpjoin(pool, "allow replacement of ", sp, 0);
1195 return pool_tmpappend(pool, str, " with ", srp);
1198 return "bad solution element";