- real fix for #450226
[platform/upstream/libsolv.git] / src / solver.c
1 /*
2  * Copyright (c) 2007-2008, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 /*
9  * solver.c
10  *
11  * SAT based dependency solver
12  */
13
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <unistd.h>
17 #include <string.h>
18 #include <assert.h>
19
20 #include "solver.h"
21 #include "bitmap.h"
22 #include "pool.h"
23 #include "util.h"
24 #include "evr.h"
25 #include "policy.h"
26 #include "solverdebug.h"
27
28 #define RULES_BLOCK 63
29
30 /********************************************************************
31  *
32  * dependency check helpers
33  *
34  */
35
36 /*-------------------------------------------------------------------
37  * handle split provides
38  */
39
40 int
41 solver_splitprovides(Solver *solv, Id dep)
42 {
43   Pool *pool = solv->pool;
44   Id p, pp;
45   Reldep *rd;
46   Solvable *s;
47
48   if (!solv->dosplitprovides || !solv->installed)
49     return 0;
50   if (!ISRELDEP(dep))
51     return 0;
52   rd = GETRELDEP(pool, dep);
53   if (rd->flags != REL_WITH)
54     return 0;
55   FOR_PROVIDES(p, pp, dep)
56     {
57       s = pool->solvables + p;
58       if (s->repo == solv->installed && s->name == rd->name)
59         return 1;
60     }
61   return 0;
62 }
63
64
65 /*-------------------------------------------------------------------
66  * solver_dep_installed
67  */
68
69 int
70 solver_dep_installed(Solver *solv, Id dep)
71 {
72 #if 0
73   Pool *pool = solv->pool;
74   Id p, pp;
75
76   if (ISRELDEP(dep))
77     {
78       Reldep *rd = GETRELDEP(pool, dep);
79       if (rd->flags == REL_AND)
80         {
81           if (!solver_dep_installed(solv, rd->name))
82             return 0;
83           return solver_dep_installed(solv, rd->evr);
84         }
85       if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_INSTALLED)
86         return solver_dep_installed(solv, rd->evr);
87     }
88   FOR_PROVIDES(p, pp, dep)
89     {
90       if (p == SYSTEMSOLVABLE || (solv->installed && pool->solvables[p].repo == solv->installed))
91         return 1;
92     }
93 #endif
94   return 0;
95 }
96
97
98 /*-------------------------------------------------------------------
99  * Check if dependenc is possible
100  * 
101  * this mirrors solver_dep_fulfilled
102  * but uses map m instead of the decisionmap
103  */
104
105 static inline int
106 dep_possible(Solver *solv, Id dep, Map *m)
107 {
108   Pool *pool = solv->pool;
109   Id p, pp;
110
111   if (ISRELDEP(dep))
112     {
113       Reldep *rd = GETRELDEP(pool, dep);
114       if (rd->flags == REL_AND)
115         {
116           if (!dep_possible(solv, rd->name, m))
117             return 0;
118           return dep_possible(solv, rd->evr, m);
119         }
120       if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_SPLITPROVIDES)
121         return solver_splitprovides(solv, rd->evr);
122       if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_INSTALLED)
123         return solver_dep_installed(solv, rd->evr);
124     }
125   FOR_PROVIDES(p, pp, dep)
126     {
127       if (MAPTST(m, p))
128         return 1;
129     }
130   return 0;
131 }
132
133 /********************************************************************
134  *
135  * Rule handling
136  *
137  * - unify rules, remove duplicates
138  */
139
140 static Pool *unifyrules_sortcmp_data;
141
142 /*-------------------------------------------------------------------
143  *
144  * compare rules for unification sort
145  *
146  */
147
148 static int
149 unifyrules_sortcmp(const void *ap, const void *bp)
150 {
151   Pool *pool = unifyrules_sortcmp_data;
152   Rule *a = (Rule *)ap;
153   Rule *b = (Rule *)bp;
154   Id *ad, *bd;
155   int x;
156
157   x = a->p - b->p;
158   if (x)
159     return x;                          /* p differs */
160
161   /* identical p */
162   if (a->d == 0 && b->d == 0)
163     return a->w2 - b->w2;              /* assertion: return w2 diff */
164
165   if (a->d == 0)                       /* a is assertion, b not */
166     {
167       x = a->w2 - pool->whatprovidesdata[b->d];
168       return x ? x : -1;
169     }
170
171   if (b->d == 0)                       /* b is assertion, a not */
172     {
173       x = pool->whatprovidesdata[a->d] - b->w2;
174       return x ? x : 1;
175     }
176
177   /* compare whatprovidesdata */
178   ad = pool->whatprovidesdata + a->d;
179   bd = pool->whatprovidesdata + b->d;
180   while (*bd)
181     if ((x = *ad++ - *bd++) != 0)
182       return x;
183   return *ad;
184 }
185
186
187 /*-------------------------------------------------------------------
188  *
189  * unify rules
190  * go over all rules and remove duplicates
191  */
192
193 static void
194 unifyrules(Solver *solv)
195 {
196   Pool *pool = solv->pool;
197   int i, j;
198   Rule *ir, *jr;
199
200   if (solv->nrules <= 1)               /* nothing to unify */
201     return;
202
203   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- unifyrules -----\n");
204
205   /* sort rules first */
206   unifyrules_sortcmp_data = solv->pool;
207   qsort(solv->rules + 1, solv->nrules - 1, sizeof(Rule), unifyrules_sortcmp);
208
209   /* prune rules
210    * i = unpruned
211    * j = pruned
212    */
213   jr = 0;
214   for (i = j = 1, ir = solv->rules + i; i < solv->nrules; i++, ir++)
215     {
216       if (jr && !unifyrules_sortcmp(ir, jr))
217         continue;                      /* prune! */
218       jr = solv->rules + j++;          /* keep! */
219       if (ir != jr)
220         *jr = *ir;
221     }
222
223   /* reduced count from nrules to j rules */
224   POOL_DEBUG(SAT_DEBUG_STATS, "pruned rules from %d to %d\n", solv->nrules, j);
225
226   /* adapt rule buffer */
227   solv->nrules = j;
228   solv->rules = sat_extend_resize(solv->rules, solv->nrules, sizeof(Rule), RULES_BLOCK);
229     /*
230      * debug: statistics
231      */
232   IF_POOLDEBUG (SAT_DEBUG_STATS)
233     {
234       int binr = 0;
235       int lits = 0;
236       Id *dp;
237       Rule *r;
238
239       for (i = 1; i < solv->nrules; i++)
240         {
241           r = solv->rules + i;
242           if (r->d == 0)
243             binr++;
244           else
245             {
246               dp = solv->pool->whatprovidesdata + r->d;
247               while (*dp++)
248                 lits++;
249             }
250         }
251       POOL_DEBUG(SAT_DEBUG_STATS, "  binary: %d\n", binr);
252       POOL_DEBUG(SAT_DEBUG_STATS, "  normal: %d, %d literals\n", solv->nrules - 1 - binr, lits);
253     }
254   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- unifyrules end -----\n");
255 }
256
257 #if 0
258
259 /*
260  * hash rule
261  */
262
263 static Hashval
264 hashrule(Solver *solv, Id p, Id d, int n)
265 {
266   unsigned int x = (unsigned int)p;
267   int *dp;
268
269   if (n <= 1)
270     return (x * 37) ^ (unsigned int)d;
271   dp = solv->pool->whatprovidesdata + d;
272   while (*dp)
273     x = (x * 37) ^ (unsigned int)*dp++;
274   return x;
275 }
276 #endif
277
278
279 /*-------------------------------------------------------------------
280  * 
281  */
282
283 /*
284  * add rule
285  *  p = direct literal; always < 0 for installed rpm rules
286  *  d, if < 0 direct literal, if > 0 offset into whatprovides, if == 0 rule is assertion (look at p only)
287  *
288  *
289  * A requires b, b provided by B1,B2,B3 => (-A|B1|B2|B3)
290  *
291  * p < 0 : pkg id of A
292  * d > 0 : Offset in whatprovidesdata (list of providers of b)
293  *
294  * A conflicts b, b provided by B1,B2,B3 => (-A|-B1), (-A|-B2), (-A|-B3)
295  * p < 0 : pkg id of A
296  * d < 0 : Id of solvable (e.g. B1)
297  *
298  * d == 0: unary rule, assertion => (A) or (-A)
299  *
300  *   Install:    p > 0, d = 0   (A)             user requested install
301  *   Remove:     p < 0, d = 0   (-A)            user requested remove
302  *   Requires:   p < 0, d > 0   (-A|B1|B2|...)  d: <list of providers for requirement of p>
303  *   Updates:    p > 0, d > 0   (A|B1|B2|...)   d: <list of updates for solvable p>
304  *   Conflicts:  p < 0, d < 0   (-A|-B)         either p (conflict issuer) or d (conflict provider) (binary rule)
305  *   ?           p > 0, d < 0   (A|-B)
306  *   No-op ?:    p = 0, d = 0   (null)          (used as policy rule placeholder)
307  *
308  *   resulting watches:
309  *   ------------------
310  *   Direct assertion (no watch needed)( if d <0 ) --> d = 0, w1 = p, w2 = 0
311  *   Binary rule: p = first literal, d = 0, w2 = second literal, w1 = p
312  *   every other : w1 = p, w2 = whatprovidesdata[d];
313  *   Disabled rule: w1 = 0
314  *
315  *   always returns a rule for non-rpm rules
316  */
317
318 static Rule *
319 addrule(Solver *solv, Id p, Id d)
320 {
321   Pool *pool = solv->pool;
322   Rule *r = 0;
323   Id *dp = 0;
324
325   int n = 0;                           /* number of literals in rule - 1
326                                           0 = direct assertion (single literal)
327                                           1 = binary rule
328                                           >1 = 
329                                         */
330
331   /* it often happenes that requires lead to adding the same rpm rule
332    * multiple times, so we prune those duplicates right away to make
333    * the work for unifyrules a bit easier */
334
335   if (solv->nrules                      /* we already have rules */
336       && !solv->rpmrules_end)           /* but are not done with rpm rules */
337     {
338       r = solv->rules + solv->nrules - 1;   /* get the last added rule */
339       if (r->p == p && r->d == d && d != 0)   /* identical and not user requested */
340         return r;
341     }
342
343     /*
344      * compute number of literals (n) in rule
345      */
346     
347   if (d < 0)
348     {
349       /* always a binary rule */
350       if (p == d)
351         return 0;                      /* ignore self conflict */
352       n = 1;
353     }
354   else if (d > 0)
355     {
356       for (dp = pool->whatprovidesdata + d; *dp; dp++, n++)
357         if (*dp == -p)
358           return 0;                     /* rule is self-fulfilling */
359         
360       if (n == 1)   /* have single provider */
361         d = dp[-1];                     /* take single literal */
362     }
363
364 #if 0
365   if (n == 0 && !solv->rpmrules_end)
366     {
367       /* this is a rpm rule assertion, we do not have to allocate it */
368       /* it can be identified by a level of 1 and a zero reason */
369       /* we must not drop those rules from the decisionq when rewinding! */
370       assert(p < 0);
371       assert(solv->decisionmap[-p] == 0 || solv->decisionmap[-p] == -1);
372       if (solv->decisionmap[-p])
373         return 0;       /* already got that one */
374       queue_push(&solv->decisionq, p);
375       queue_push(&solv->decisionq_why, 0);
376       solv->decisionmap[-p] = -1;
377       return 0;
378     }
379 #endif
380
381   if (n == 1 && p > d && !solv->rpmrules_end)
382     {
383       /* smallest literal first so we can find dups */
384       n = p; p = d; d = n;             /* p <-> d */
385       n = 1;                           /* re-set n, was used as temp var */
386     }
387
388     /*
389      * check for duplicate
390      */
391     
392   /* check if the last added rule (r) is exactly the same as what we're looking for. */
393   if (r && n == 1 && !r->d && r->p == p && r->w2 == d)
394     return r;  /* binary rule */
395
396     /* have n-ary rule with same first literal, check other literals */
397   if (r && n > 1 && r->d && r->p == p)
398     {
399       /* Rule where d is an offset in whatprovidesdata */
400       Id *dp2;
401       if (d == r->d)
402         return r;
403       dp2 = pool->whatprovidesdata + r->d;
404       for (dp = pool->whatprovidesdata + d; *dp; dp++, dp2++)
405         if (*dp != *dp2)
406           break;
407       if (*dp == *dp2)
408         return r;
409    }
410
411     /*
412      * allocate new rule
413      */
414
415   /* extend rule buffer */
416   solv->rules = sat_extend(solv->rules, solv->nrules, 1, sizeof(Rule), RULES_BLOCK);
417   r = solv->rules + solv->nrules++;    /* point to rule space */
418
419     /*
420      * r = new rule
421      */
422     
423   r->p = p;
424   if (n == 0)
425     {
426       /* direct assertion, no watch needed */
427       r->d = 0;
428       r->w1 = p;
429       r->w2 = 0;
430     }
431   else if (n == 1)
432     {
433       /* binary rule */
434       r->d = 0;
435       r->w1 = p;
436       r->w2 = d;
437     }
438   else
439     {
440       r->d = d;
441       r->w1 = p;
442       r->w2 = pool->whatprovidesdata[d];
443     }
444   r->n1 = 0;
445   r->n2 = 0;
446
447   IF_POOLDEBUG (SAT_DEBUG_RULE_CREATION)
448     {
449       POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "  Add rule: ");
450       solver_printrule(solv, SAT_DEBUG_RULE_CREATION, r);
451     }
452
453   return r;
454 }
455
456 /*-------------------------------------------------------------------
457  * disable rule
458  */
459
460 static inline void
461 disablerule(Solver *solv, Rule *r)
462 {
463   if (r->d >= 0)
464     r->d = -r->d - 1;
465 }
466
467 /*-------------------------------------------------------------------
468  * enable rule
469  */
470
471 static inline void
472 enablerule(Solver *solv, Rule *r)
473 {
474   if (r->d < 0)
475     r->d = -r->d - 1;
476 }
477
478
479 /**********************************************************************************/
480
481 /* a problem is an item on the solver's problem list. It can either be >0, in that
482  * case it is a update rule, or it can be <0, which makes it refer to a job
483  * consisting of multiple job rules.
484  */
485
486 static void
487 disableproblem(Solver *solv, Id v)
488 {
489   Rule *r;
490   int i;
491   Id *jp;
492
493   if (v > 0)
494     {
495       disablerule(solv, solv->rules + v);
496       return;
497     }
498   v = -(v + 1);
499   jp = solv->ruletojob.elements;
500   for (i = solv->jobrules, r = solv->rules + i; i < solv->jobrules_end; i++, r++, jp++)
501     if (*jp == v)
502       disablerule(solv, r);
503 }
504
505 /*-------------------------------------------------------------------
506  * enableproblem
507  */
508
509 static void
510 enableproblem(Solver *solv, Id v)
511 {
512   Rule *r;
513   int i;
514   Id *jp;
515
516   if (v > 0)
517     {
518       if (v >= solv->featurerules && v < solv->featurerules_end)
519         {
520           /* do not enable feature rule if update rule is enabled */
521           r = solv->rules + (v - solv->featurerules + solv->updaterules);
522           if (r->d >= 0)
523             return;
524         }
525       enablerule(solv, solv->rules + v);
526       if (v >= solv->updaterules && v < solv->updaterules_end)
527         {
528           /* disable feature rule when enabling update rule */
529           r = solv->rules + (v - solv->updaterules + solv->featurerules);
530           if (r->p)
531             disablerule(solv, r);
532         }
533       return;
534     }
535   v = -(v + 1);
536   jp = solv->ruletojob.elements;
537   for (i = solv->jobrules, r = solv->rules + i; i < solv->jobrules_end; i++, r++, jp++)
538     if (*jp == v)
539       enablerule(solv, r);
540 }
541
542
543 /************************************************************************/
544
545 /*
546  * make assertion rules into decisions
547  * 
548  * go through update and job rules and add direct assertions
549  * to the decisionqueue. If we find a conflict, disable rules and
550  * add them to problem queue.
551  */
552
553 static void
554 makeruledecisions(Solver *solv)
555 {
556   Pool *pool = solv->pool;
557   int i, ri, ii;
558   Rule *r, *rr;
559   Id v, vv;
560   int decisionstart;
561
562   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- makeruledecisions ; size decisionq: %d -----\n",solv->decisionq.count);
563
564   decisionstart = solv->decisionq.count;
565   for (ii = 0; ii < solv->ruleassertions.count; ii++)
566     {
567       ri = solv->ruleassertions.elements[ii];
568       r = solv->rules + ri;
569         
570       if (r->d < 0 || !r->p || r->w2)   /* disabled, dummy or no assertion */
571         continue;
572       /* do weak rules in phase 2 */
573       if (ri < solv->learntrules && MAPTST(&solv->weakrulemap, ri))
574         continue;
575         
576       v = r->p;
577       vv = v > 0 ? v : -v;
578         
579       if (!solv->decisionmap[vv])          /* if not yet decided */
580         {
581             /*
582              * decide !
583              */
584           queue_push(&solv->decisionq, v);
585           queue_push(&solv->decisionq_why, r - solv->rules);
586           solv->decisionmap[vv] = v > 0 ? 1 : -1;
587           IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
588             {
589               Solvable *s = solv->pool->solvables + vv;
590               if (v < 0)
591                 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "conflicting %s (assertion)\n", solvable2str(solv->pool, s));
592               else
593                 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "installing  %s (assertion)\n", solvable2str(solv->pool, s));
594             }
595           continue;
596         }
597         /*
598          * check previous decision: is it sane ?
599          */
600         
601       if (v > 0 && solv->decisionmap[vv] > 0)    /* ok to install */
602         continue;
603       if (v < 0 && solv->decisionmap[vv] < 0)    /* ok to remove */
604         continue;
605         
606         /*
607          * found a conflict!
608          * 
609          * The rule (r) we're currently processing says something
610          * different (v = r->p) than a previous decision (decisionmap[abs(v)])
611          * on this literal
612          */
613         
614       if (ri >= solv->learntrules)
615         {
616           /* conflict with a learnt rule */
617           /* can happen when packages cannot be installed for
618            * multiple reasons. */
619           /* we disable the learnt rule in this case */
620           disablerule(solv, r);
621           continue;
622         }
623         
624         /*
625          * find the decision which is the "opposite" of the rule
626          */
627         
628       for (i = 0; i < solv->decisionq.count; i++)
629         if (solv->decisionq.elements[i] == -v)
630           break;
631       assert(i < solv->decisionq.count);         /* assert that we found it */
632         
633         /*
634          * conflict with system solvable ?
635          */
636         
637       if (v == -SYSTEMSOLVABLE) {
638         /* conflict with system solvable */
639         queue_push(&solv->problems, solv->learnt_pool.count);
640         queue_push(&solv->learnt_pool, ri);
641         queue_push(&solv->learnt_pool, 0);
642         POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "conflict with system solvable, disabling rule #%d\n", ri);
643         if  (ri >= solv->jobrules && ri < solv->jobrules_end)
644           v = -(solv->ruletojob.elements[ri - solv->jobrules] + 1);
645         else
646           v = ri;
647         queue_push(&solv->problems, v);
648         queue_push(&solv->problems, 0);
649         disableproblem(solv, v);
650         continue;
651       }
652
653       assert(solv->decisionq_why.elements[i]);
654         
655         /*
656          * conflict with an rpm rule ?
657          */
658         
659       if (solv->decisionq_why.elements[i] < solv->rpmrules_end)
660         {
661           /* conflict with rpm rule assertion */
662           queue_push(&solv->problems, solv->learnt_pool.count);
663           queue_push(&solv->learnt_pool, ri);
664           queue_push(&solv->learnt_pool, solv->decisionq_why.elements[i]);
665           queue_push(&solv->learnt_pool, 0);
666           assert(v > 0 || v == -SYSTEMSOLVABLE);
667           POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "conflict with rpm rule, disabling rule #%d\n", ri);
668           if (ri >= solv->jobrules && ri < solv->jobrules_end)
669             v = -(solv->ruletojob.elements[ri - solv->jobrules] + 1);
670           else
671             v = ri;
672           queue_push(&solv->problems, v);
673           queue_push(&solv->problems, 0);
674           disableproblem(solv, v);
675           continue;
676         }
677
678         /*
679          * conflict with another job or update/feature rule
680          */
681         
682       /* record proof */
683       queue_push(&solv->problems, solv->learnt_pool.count);
684       queue_push(&solv->learnt_pool, ri);
685       queue_push(&solv->learnt_pool, solv->decisionq_why.elements[i]);
686       queue_push(&solv->learnt_pool, 0);
687
688       POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "conflicting update/job assertions over literal %d\n", vv);
689
690         /*
691          * push all of our rules (can only be feature or job rules)
692          * asserting this literal on the problem stack
693          */
694         
695       for (i = solv->featurerules, rr = solv->rules + i; i < solv->learntrules; i++, rr++)
696         {
697           if (rr->d < 0                          /* disabled */
698               || rr->w2)                         /*  or no assertion */
699             continue;
700           if (rr->p != vv                        /* not affecting the literal */
701               && rr->p != -vv)
702             continue;
703           if (MAPTST(&solv->weakrulemap, i))     /* weak: silently ignore */
704             continue;
705             
706           POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, " - disabling rule #%d\n", i);
707             
708           solver_printruleclass(solv, SAT_DEBUG_UNSOLVABLE, solv->rules + i);
709             
710           v = i;
711             /* is is a job rule ? */
712           if (i >= solv->jobrules && i < solv->jobrules_end)
713             v = -(solv->ruletojob.elements[i - solv->jobrules] + 1);
714             
715           queue_push(&solv->problems, v);
716           disableproblem(solv, v);
717         }
718       queue_push(&solv->problems, 0);
719
720        /*
721         * start over
722         * (back up from decisions)
723         */
724       while (solv->decisionq.count > decisionstart)
725         {
726           v = solv->decisionq.elements[--solv->decisionq.count];
727           --solv->decisionq_why.count;
728           vv = v > 0 ? v : -v;
729           solv->decisionmap[vv] = 0;
730         }
731       ii = -1; /* restarts loop at 0 */
732     }
733
734     /*
735      * phase 2: now do the weak assertions
736      */
737   for (ii = 0; ii < solv->ruleassertions.count; ii++)
738     {
739       ri = solv->ruleassertions.elements[ii];
740       r = solv->rules + ri;
741       if (r->d < 0 || r->w2)                     /* disabled or no assertion */
742         continue;
743       if (!MAPTST(&solv->weakrulemap, ri))       /* skip non-weak */
744         continue;
745       v = r->p;
746       vv = v > 0 ? v : -v;
747         /*
748          * decide !
749          * (if not yet decided)
750          */
751       if (!solv->decisionmap[vv])
752         {
753           queue_push(&solv->decisionq, v);
754           queue_push(&solv->decisionq_why, r - solv->rules);
755           solv->decisionmap[vv] = v > 0 ? 1 : -1;
756           IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
757             {
758               Solvable *s = solv->pool->solvables + vv;
759               if (v < 0)
760                 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "conflicting %s (weak assertion)\n", solvable2str(solv->pool, s));
761               else
762                 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "installing  %s (weak assertion)\n", solvable2str(solv->pool, s));
763             }
764           continue;
765         }
766         /*
767          * previously decided, sane ?
768          */
769       if (v > 0 && solv->decisionmap[vv] > 0)
770         continue;
771       if (v < 0 && solv->decisionmap[vv] < 0)
772         continue;
773         
774       POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "assertion conflict, but I am weak, disabling ");
775       solver_printrule(solv, SAT_DEBUG_UNSOLVABLE, r);
776       disablerule(solv, r);
777     }
778   
779   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- makeruledecisions end; size decisionq: %d -----\n",solv->decisionq.count);
780 }
781
782
783 /*-------------------------------------------------------------------
784  * enable/disable learnt rules 
785  *
786  * we have enabled or disabled some of our rules. We now reenable all
787  * of our learnt rules but the ones that were learnt from rules that
788  * are now disabled.
789  */
790 static void
791 enabledisablelearntrules(Solver *solv)
792 {
793   Pool *pool = solv->pool;
794   Rule *r;
795   Id why, *whyp;
796   int i;
797
798   POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "enabledisablelearntrules called\n");
799   for (i = solv->learntrules, r = solv->rules + i; i < solv->nrules; i++, r++)
800     {
801       whyp = solv->learnt_pool.elements + solv->learnt_why.elements[i - solv->learntrules];
802       while ((why = *whyp++) != 0)
803         {
804           assert(why > 0 && why < i);
805           if (solv->rules[why].d < 0)
806             break;
807         }
808       /* why != 0: we found a disabled rule, disable the learnt rule */
809       if (why && r->d >= 0)
810         {
811           IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
812             {
813               POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "disabling ");
814               solver_printruleclass(solv, SAT_DEBUG_SOLUTIONS, r);
815             }
816           disablerule(solv, r);
817         }
818       else if (!why && r->d < 0)
819         {
820           IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
821             {
822               POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "re-enabling ");
823               solver_printruleclass(solv, SAT_DEBUG_SOLUTIONS, r);
824             }
825           enablerule(solv, r);
826         }
827     }
828 }
829
830
831 /*-------------------------------------------------------------------
832  * enable weak rules
833  * 
834  * Enable all rules, except learnt rules, which are
835  * - disabled and weak (set in weakrulemap)
836  * 
837  */
838
839 static void
840 enableweakrules(Solver *solv)
841 {
842   int i;
843   Rule *r;
844
845   for (i = 1, r = solv->rules + i; i < solv->learntrules; i++, r++)
846     {
847       if (r->d >= 0) /* skip non-direct literals */
848         continue;
849       if (!MAPTST(&solv->weakrulemap, i))
850         continue;
851       enablerule(solv, r);
852     }
853 }
854
855
856 /* FIXME: bad code ahead, replace as soon as possible */
857 /* FIXME: should probably look at SOLVER_INSTALL|SOLVABLE_ONE_OF */
858
859 /*-------------------------------------------------------------------
860  * disable update rules
861  */
862
863 static void
864 disableupdaterules(Solver *solv, Queue *job, int jobidx)
865 {
866   Pool *pool = solv->pool;
867   int i, j;
868   Id how, select, what, p, pp;
869   Solvable *s;
870   Repo *installed;
871   Rule *r;
872   Id lastjob = -1;
873
874   installed = solv->installed;
875   if (!installed)
876     return;
877
878   if (jobidx != -1)
879     {
880       how = job->elements[jobidx];
881       select = how & SOLVER_SELECTMASK;
882       switch (how & SOLVER_JOBMASK)
883         {
884         case SOLVER_ERASE:
885           break;
886         case SOLVER_INSTALL:
887           if (select != SOLVER_SOLVABLE)
888             return;
889           break;
890         default:
891           return;
892         }
893     }
894   /* go through all enabled job rules */
895   MAPZERO(&solv->noupdate);
896   for (i = solv->jobrules; i < solv->jobrules_end; i++)
897     {
898       r = solv->rules + i;
899       if (r->d < 0)     /* disabled? */
900         continue;
901       j = solv->ruletojob.elements[i - solv->jobrules];
902       if (j == lastjob)
903         continue;
904       lastjob = j;
905       how = job->elements[j];
906       what = job->elements[j + 1];
907       select = how & SOLVER_SELECTMASK;
908       switch (how & SOLVER_JOBMASK)
909         {
910         case SOLVER_INSTALL:
911           if (select != SOLVER_SOLVABLE)
912             break;
913           s = pool->solvables + what;
914           if (solv->noobsoletes.size && MAPTST(&solv->noobsoletes, what))
915             break;
916           if (s->repo == installed)
917             {
918               MAPSET(&solv->noupdate, what - installed->start);
919               break;
920             }
921           if (s->obsoletes)
922             {
923               Id obs, *obsp;
924               obsp = s->repo->idarraydata + s->obsoletes;
925               while ((obs = *obsp++) != 0)
926                 FOR_PROVIDES(p, pp, obs)
927                   {
928                     if (pool->solvables[p].repo != installed)
929                       continue;
930                     if (!solv->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p, obs))
931                       continue;
932                     MAPSET(&solv->noupdate, p - installed->start);
933                   }
934             }
935           FOR_PROVIDES(p, pp, s->name)
936             {
937               if (!solv->implicitobsoleteusesprovides && pool->solvables[p].name != s->name)
938                 continue;
939               if (pool->solvables[p].repo == installed)
940                 MAPSET(&solv->noupdate, p - installed->start);
941             }
942           break;
943         case SOLVER_ERASE:
944           FOR_JOB_SELECT(p, pp, select, what)
945             if (pool->solvables[p].repo == installed)
946               MAPSET(&solv->noupdate, p - installed->start);
947           break;
948         default:
949           break;
950         }
951     }
952
953   /* fixup update rule status */
954   if (jobidx != -1)
955     {
956       /* we just disabled job #jobidx. enable all update rules
957        * that aren't disabled by the remaining job rules */
958       how = job->elements[jobidx];
959       what = job->elements[jobidx + 1];
960       select = how & SOLVER_SELECTMASK;
961       switch (how & SOLVER_JOBMASK)
962         {
963         case SOLVER_INSTALL:
964           if (select != SOLVER_SOLVABLE)
965             break;
966           s = pool->solvables + what;
967           if (s->repo == installed)
968             {
969               r = solv->rules + solv->updaterules + (what - installed->start);
970               if (r->d >= 0)
971                 break;
972               enablerule(solv, r);
973               IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
974                 {
975                   POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "@@@ re-enabling ");
976                   solver_printrule(solv, SAT_DEBUG_SOLUTIONS, r);
977                 }
978               break;
979             }
980           if (s->obsoletes)
981             {
982               Id obs, *obsp;
983               obsp = s->repo->idarraydata + s->obsoletes;
984               while ((obs = *obsp++) != 0)
985                 FOR_PROVIDES(p, pp, obs)
986                   {
987                     if (pool->solvables[p].repo != installed)
988                       continue;
989                     if (!solv->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p, obs))
990                       continue;
991                     if (MAPTST(&solv->noupdate, p - installed->start))
992                       continue;
993                     r = solv->rules + solv->updaterules + (p - installed->start);
994                     if (r->d >= 0)
995                       continue;
996                     enablerule(solv, r);
997                     IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
998                       {
999                         POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "@@@ re-enabling ");
1000                         solver_printrule(solv, SAT_DEBUG_SOLUTIONS, r);
1001                       }
1002                   }
1003             }
1004           FOR_PROVIDES(p, pp, s->name)
1005             {
1006               if (!solv->implicitobsoleteusesprovides && pool->solvables[p].name != s->name)
1007                 continue;
1008               if (pool->solvables[p].repo != installed)
1009                 continue;
1010               if (MAPTST(&solv->noupdate, p - installed->start))
1011                 continue;
1012               r = solv->rules + solv->updaterules + (p - installed->start);
1013               if (r->d >= 0)
1014                 continue;
1015               enablerule(solv, r);
1016               IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
1017                 {
1018                   POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "@@@ re-enabling ");
1019                   solver_printrule(solv, SAT_DEBUG_SOLUTIONS, r);
1020                 }
1021             }
1022           break;
1023         case SOLVER_ERASE:
1024           FOR_JOB_SELECT(p, pp, select, what)
1025             {
1026               if (pool->solvables[p].repo != installed)
1027                 continue;
1028               if (MAPTST(&solv->noupdate, p - installed->start))
1029                 continue;
1030               r = solv->rules + solv->updaterules + (p - installed->start);
1031               if (r->d >= 0)
1032                 continue;
1033               enablerule(solv, r);
1034               IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
1035                 {
1036                   POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "@@@ re-enabling ");
1037                   solver_printrule(solv, SAT_DEBUG_SOLUTIONS, r);
1038                 }
1039             }
1040           break;
1041         default:
1042           break;
1043         }
1044       return;
1045     }
1046
1047   for (i = 0; i < installed->nsolvables; i++)
1048     {
1049       r = solv->rules + solv->updaterules + i;
1050       if (r->d >= 0 && MAPTST(&solv->noupdate, i))
1051         disablerule(solv, r);   /* was enabled, need to disable */
1052       r = solv->rules + solv->featurerules + i;
1053       if (r->d >= 0 && MAPTST(&solv->noupdate, i))
1054         disablerule(solv, r);   /* was enabled, need to disable */
1055     }
1056 }
1057
1058
1059 /*
1060  *  special multiversion patch conflict handling:
1061  *  a patch conflict is also satisfied, if some other
1062  *  version with the same name/arch that doesn't conflict
1063  *  get's installed. The generated rule is thus:
1064  *  -patch|-cpack|opack1|opack2|...
1065  */
1066 Id
1067 makemultiversionconflict(Solver *solv, Id n, Id con)
1068 {
1069   Pool *pool = solv->pool;
1070   Solvable *s, *sn;
1071   Queue q;
1072   Id p, pp, qbuf[64];
1073
1074   sn = pool->solvables + n;
1075   queue_init_buffer(&q, qbuf, sizeof(qbuf)/sizeof(*qbuf));
1076   queue_push(&q, -n);
1077   FOR_PROVIDES(p, pp, sn->name)
1078     {
1079       s = pool->solvables + p;
1080       if (s->name != sn->name || s->arch != sn->arch)
1081         continue;
1082       if (!MAPTST(&solv->noobsoletes, p))
1083         continue;
1084       if (pool_match_nevr(pool, pool->solvables + p, con))
1085         continue;
1086       /* here we have a multiversion solvable that doesn't conflict */
1087       /* thus we're not in conflict if it is installed */
1088       queue_push(&q, p);
1089     }
1090   if (q.count == 1)
1091     return -n;  /* no other package found, generate normal conflict */
1092   return pool_queuetowhatprovides(pool, &q);
1093 }
1094
1095
1096 /*-------------------------------------------------------------------
1097  * 
1098  * add (install) rules for solvable
1099  * 
1100  * s: Solvable for which to add rules
1101  * m: m[s] = 1 for solvables which have rules, prevent rule duplication
1102  * 
1103  * Algorithm: 'visit all nodes of a graph'. The graph nodes are
1104  *  solvables, the edges their dependencies.
1105  *  Starting from an installed solvable, this will create all rules
1106  *  representing the graph created by the solvables dependencies.
1107  * 
1108  * for unfulfilled requirements, conflicts, obsoletes,....
1109  * add a negative assertion for solvables that are not installable
1110  * 
1111  * It will also create rules for all solvables referenced by 's'
1112  *  i.e. descend to all providers of requirements of 's'
1113  *
1114  */
1115
1116 static void
1117 addrpmrulesforsolvable(Solver *solv, Solvable *s, Map *m)
1118 {
1119   Pool *pool = solv->pool;
1120   Repo *installed = solv->installed;
1121
1122   /* 'work' queue. keeps Ids of solvables we still have to work on.
1123      And buffer for it. */
1124   Queue workq;
1125   Id workqbuf[64];
1126     
1127   int i;
1128     /* if to add rules for broken deps ('rpm -V' functionality)
1129      * 0 = yes, 1 = no
1130      */
1131   int dontfix;
1132     /* Id var and pointer for each dependency
1133      * (not used in parallel)
1134      */
1135   Id req, *reqp;
1136   Id con, *conp;
1137   Id obs, *obsp;
1138   Id rec, *recp;
1139   Id sug, *sugp;
1140     /* var and ptr for loops */
1141   Id p, pp;
1142     /* ptr to 'whatprovides' */
1143   Id *dp;
1144     /* Id for current solvable 's' */
1145   Id n;
1146
1147   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforsolvable -----\n");
1148
1149   queue_init_buffer(&workq, workqbuf, sizeof(workqbuf)/sizeof(*workqbuf));
1150   queue_push(&workq, s - pool->solvables);      /* push solvable Id to work queue */
1151
1152   /* loop until there's no more work left */
1153   while (workq.count)
1154     {
1155       /*
1156        * n: Id of solvable
1157        * s: Pointer to solvable
1158        */
1159
1160       n = queue_shift(&workq);             /* 'pop' next solvable to work on from queue */
1161       if (MAPTST(m, n))                    /* continue if already visited */
1162         continue;
1163
1164       MAPSET(m, n);                        /* mark as visited */
1165       s = pool->solvables + n;             /* s = Solvable in question */
1166
1167       dontfix = 0;
1168       if (installed                        /* Installed system available */
1169           && !solv->fixsystem              /* NOT repair errors in rpm dependency graph */
1170           && s->repo == installed)         /* solvable is installed? */
1171       {
1172         dontfix = 1;                       /* dont care about broken rpm deps */
1173       }
1174
1175       if (!dontfix
1176           && s->arch != ARCH_SRC
1177           && s->arch != ARCH_NOSRC
1178           && !pool_installable(pool, s))
1179         {
1180           POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "package %s [%d] is not installable\n", solvable2str(pool, s), (Id)(s - pool->solvables));
1181           addrule(solv, -n, 0);            /* uninstallable */
1182         }
1183
1184       /*-----------------------------------------
1185        * check requires of s
1186        */
1187
1188       if (s->requires)
1189         {
1190           reqp = s->repo->idarraydata + s->requires;
1191           while ((req = *reqp++) != 0)            /* go through all requires */
1192             {
1193               if (req == SOLVABLE_PREREQMARKER)   /* skip the marker */
1194                 continue;
1195
1196               /* find list of solvables providing 'req' */
1197               dp = pool->whatprovidesdata + pool_whatprovides(pool, req);
1198
1199               if (*dp == SYSTEMSOLVABLE)          /* always installed */
1200                 continue;
1201
1202               if (dontfix)
1203                 {
1204                   /* the strategy here is to not insist on dependencies
1205                    * that are already broken. so if we find one provider
1206                    * that was already installed, we know that the
1207                    * dependency was not broken before so we enforce it */
1208                  
1209                   /* check if any of the providers for 'req' is installed */
1210                   for (i = 0; (p = dp[i]) != 0; i++)
1211                     {
1212                       if (pool->solvables[p].repo == installed)
1213                         break;          /* provider was installed */
1214                     }
1215                   /* didn't find an installed provider: previously broken dependency */
1216                   if (!p)
1217                     {
1218                       POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "ignoring broken requires %s of installed package %s\n", dep2str(pool, req), solvable2str(pool, s));
1219                       continue;
1220                     }
1221                 }
1222
1223               if (!*dp)
1224                 {
1225                   /* nothing provides req! */
1226                   POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "package %s [%d] is not installable (%s)\n", solvable2str(pool, s), (Id)(s - pool->solvables), dep2str(pool, req));
1227                   addrule(solv, -n, 0); /* mark requestor as uninstallable */
1228                   continue;
1229                 }
1230
1231               IF_POOLDEBUG (SAT_DEBUG_RULE_CREATION)
1232                 {
1233                   POOL_DEBUG(SAT_DEBUG_RULE_CREATION,"  %s requires %s\n", solvable2str(pool, s), dep2str(pool, req));
1234                   for (i = 0; dp[i]; i++)
1235                     POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "   provided by %s\n", solvable2str(pool, pool->solvables + dp[i]));
1236                 }
1237
1238               /* add 'requires' dependency */
1239               /* rule: (-requestor|provider1|provider2|...|providerN) */
1240               addrule(solv, -n, dp - pool->whatprovidesdata);
1241
1242               /* descend the dependency tree
1243                  push all non-visited providers on the work queue */
1244               for (; *dp; dp++)
1245                 {
1246                   if (!MAPTST(m, *dp))
1247                     queue_push(&workq, *dp);
1248                 }
1249
1250             } /* while, requirements of n */
1251
1252         } /* if, requirements */
1253
1254       /* that's all we check for src packages */
1255       if (s->arch == ARCH_SRC || s->arch == ARCH_NOSRC)
1256         continue;
1257
1258       /*-----------------------------------------
1259        * check conflicts of s
1260        */
1261
1262       if (s->conflicts)
1263         {
1264           int ispatch = 0;
1265
1266           /* we treat conflicts in patches a bit differen:
1267            * - nevr matching
1268            * - multiversion handling
1269            * XXX: we should really handle this different, looking
1270            * at the name is a bad hack
1271            */
1272           if (!strncmp("patch:", id2str(pool, s->name), 6))
1273             ispatch = 1;
1274           conp = s->repo->idarraydata + s->conflicts;
1275           /* foreach conflicts of 's' */
1276           while ((con = *conp++) != 0)
1277             {
1278               /* foreach providers of a conflict of 's' */
1279               FOR_PROVIDES(p, pp, con)
1280                 {
1281                   if (ispatch && !pool_match_nevr(pool, pool->solvables + p, con))
1282                     continue;
1283                   /* dontfix: dont care about conflicts with already installed packs */
1284                   if (dontfix && pool->solvables[p].repo == installed)
1285                     continue;
1286                   /* p == n: self conflict */
1287                   if (p == n && !solv->allowselfconflicts)
1288                     {
1289                       if (ISRELDEP(con))
1290                         {
1291                           Reldep *rd = GETRELDEP(pool, con);
1292                           if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_OTHERPROVIDERS)
1293                             continue;
1294                         }
1295                       p = 0;    /* make it a negative assertion, aka 'uninstallable' */
1296                     }
1297                   if (p && ispatch && solv->noobsoletes.size && MAPTST(&solv->noobsoletes, p) && ISRELDEP(con))
1298                     {
1299                       /* our patch conflicts with a noobsoletes (aka multiversion) package */
1300                       p = -makemultiversionconflict(solv, p, con);
1301                     }
1302                  /* rule: -n|-p: either solvable _or_ provider of conflict */
1303                   addrule(solv, -n, -p);
1304                 }
1305             }
1306         }
1307
1308       /*-----------------------------------------
1309        * check obsoletes if not installed
1310        * (only installation will trigger the obsoletes in rpm)
1311        */
1312       if (!installed || pool->solvables[n].repo != installed)
1313         {                              /* not installed */
1314           int noobs = solv->noobsoletes.size && MAPTST(&solv->noobsoletes, n);
1315           if (s->obsoletes && !noobs)
1316             {
1317               obsp = s->repo->idarraydata + s->obsoletes;
1318               /* foreach obsoletes */
1319               while ((obs = *obsp++) != 0)
1320                 {
1321                   /* foreach provider of an obsoletes of 's' */ 
1322                   FOR_PROVIDES(p, pp, obs)
1323                     {
1324                       if (!solv->obsoleteusesprovides /* obsoletes are matched names, not provides */
1325                           && !pool_match_nevr(pool, pool->solvables + p, obs))
1326                         continue;
1327                       addrule(solv, -n, -p);
1328                     }
1329                 }
1330             }
1331           FOR_PROVIDES(p, pp, s->name)
1332             {
1333               Solvable *ps = pool->solvables + p;
1334               /* we still obsolete packages with same nevra, like rpm does */
1335               /* (actually, rpm mixes those packages. yuck...) */
1336               if (noobs && (s->name != ps->name || s->evr != ps->evr || s->arch != ps->arch))
1337                 continue;
1338               if (!solv->implicitobsoleteusesprovides && s->name != ps->name)
1339                 continue;
1340               addrule(solv, -n, -p);
1341             }
1342         }
1343
1344       /*-----------------------------------------
1345        * add recommends to the work queue
1346        */
1347       if (s->recommends)
1348         {
1349           recp = s->repo->idarraydata + s->recommends;
1350           while ((rec = *recp++) != 0)
1351             {
1352               FOR_PROVIDES(p, pp, rec)
1353                 if (!MAPTST(m, p))
1354                   queue_push(&workq, p);
1355             }
1356         }
1357       if (s->suggests)
1358         {
1359           sugp = s->repo->idarraydata + s->suggests;
1360           while ((sug = *sugp++) != 0)
1361             {
1362               FOR_PROVIDES(p, pp, sug)
1363                 if (!MAPTST(m, p))
1364                   queue_push(&workq, p);
1365             }
1366         }
1367     }
1368   queue_free(&workq);
1369   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforsolvable end -----\n");
1370 }
1371
1372
1373 /*-------------------------------------------------------------------
1374  * 
1375  * Add package rules for weak rules
1376  *
1377  * m: visited solvables
1378  */
1379
1380 static void
1381 addrpmrulesforweak(Solver *solv, Map *m)
1382 {
1383   Pool *pool = solv->pool;
1384   Solvable *s;
1385   Id sup, *supp;
1386   int i, n;
1387
1388   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforweak -----\n");
1389     /* foreach solvable in pool */
1390   for (i = n = 1; n < pool->nsolvables; i++, n++)
1391     {
1392       if (i == pool->nsolvables)                 /* wrap i */
1393         i = 1;
1394       if (MAPTST(m, i))                          /* been there */
1395         continue;
1396
1397       s = pool->solvables + i;
1398       if (!pool_installable(pool, s))            /* only look at installable ones */
1399         continue;
1400
1401       sup = 0;
1402       if (s->supplements)
1403         {
1404           /* find possible supplements */
1405           supp = s->repo->idarraydata + s->supplements;
1406           while ((sup = *supp++) != ID_NULL)
1407             if (dep_possible(solv, sup, m))
1408               break;
1409         }
1410
1411         /* if nothing found, check for enhances */
1412       if (!sup && s->enhances)
1413         {
1414           supp = s->repo->idarraydata + s->enhances;
1415           while ((sup = *supp++) != ID_NULL)
1416             if (dep_possible(solv, sup, m))
1417               break;
1418         }
1419         /* if nothing found, goto next solvables */
1420       if (!sup)
1421         continue;
1422       addrpmrulesforsolvable(solv, s, m);
1423       n = 0;
1424     }
1425   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforweak end -----\n");
1426 }
1427
1428
1429 /*-------------------------------------------------------------------
1430  * 
1431  * add package rules for possible updates
1432  * 
1433  * s: solvable
1434  * m: map of already visited solvables
1435  * allow_all: 0 = dont allow downgrades, 1 = allow all candidates
1436  */
1437
1438 static void
1439 addrpmrulesforupdaters(Solver *solv, Solvable *s, Map *m, int allow_all)
1440 {
1441   Pool *pool = solv->pool;
1442   int i;
1443     /* queue and buffer for it */
1444   Queue qs;
1445   Id qsbuf[64];
1446
1447   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforupdaters -----\n");
1448
1449   queue_init_buffer(&qs, qsbuf, sizeof(qsbuf)/sizeof(*qsbuf));
1450     /* find update candidates for 's' */
1451   policy_findupdatepackages(solv, s, &qs, allow_all);
1452     /* add rule for 's' if not already done */
1453   if (!MAPTST(m, s - pool->solvables))
1454     addrpmrulesforsolvable(solv, s, m);
1455     /* foreach update candidate, add rule if not already done */
1456   for (i = 0; i < qs.count; i++)
1457     if (!MAPTST(m, qs.elements[i]))
1458       addrpmrulesforsolvable(solv, pool->solvables + qs.elements[i], m);
1459   queue_free(&qs);
1460
1461   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforupdaters -----\n");
1462 }
1463
1464 static Id
1465 finddistupgradepackages(Solver *solv, Solvable *s, Queue *qs, int allow_all)
1466 {
1467   Pool *pool = solv->pool;
1468   int i;
1469
1470   policy_findupdatepackages(solv, s, qs, allow_all);
1471   if (!qs->count)
1472     {
1473       if (allow_all)
1474         return 0;
1475       policy_findupdatepackages(solv, s, qs, 1);
1476       if (!qs->count)
1477         return 0;       /* orphaned */
1478       qs->count = 0;
1479       return -SYSTEMSOLVABLE;
1480     }
1481   if (allow_all)
1482     return s - pool->solvables;
1483   /* check if it is ok to keep the installed package */
1484   for (i = 0; i < qs->count; i++)
1485     {
1486       Solvable *ns = pool->solvables + qs->elements[i];
1487       if (s->evr == ns->evr && solvable_identical(s, ns))
1488         return s - pool->solvables;
1489     }
1490   /* nope, it must be some other package */
1491   return -SYSTEMSOLVABLE;
1492 }
1493
1494 /*-------------------------------------------------------------------
1495  * 
1496  * add rule for update
1497  *   (A|A1|A2|A3...)  An = update candidates for A
1498  *
1499  * s = (installed) solvable
1500  */
1501
1502 static void
1503 addupdaterule(Solver *solv, Solvable *s, int allow_all)
1504 {
1505   /* installed packages get a special upgrade allowed rule */
1506   Pool *pool = solv->pool;
1507   Id p, d;
1508   Queue qs;
1509   Id qsbuf[64];
1510
1511   POOL_DEBUG(SAT_DEBUG_SCHUBI, "-----  addupdaterule -----\n");
1512   queue_init_buffer(&qs, qsbuf, sizeof(qsbuf)/sizeof(*qsbuf));
1513   p = s - pool->solvables;
1514   /* find update candidates for 's' */
1515   if (solv->distupgrade)
1516     p = finddistupgradepackages(solv, s, &qs, allow_all);
1517   else
1518     policy_findupdatepackages(solv, s, &qs, allow_all);
1519   if (!allow_all && qs.count && solv->noobsoletes.size)
1520     {
1521       int i, j;
1522
1523       d = pool_queuetowhatprovides(pool, &qs);
1524       /* filter out all noobsoletes packages as they don't update */
1525       for (i = j = 0; i < qs.count; i++)
1526         {
1527           if (MAPTST(&solv->noobsoletes, qs.elements[i]))
1528             {
1529               /* it's ok if they have same nevra */
1530               Solvable *ps = pool->solvables + qs.elements[i];
1531               if (ps->name != s->name || ps->evr != s->evr || ps->arch != s->arch)
1532                 continue;
1533             }
1534           qs.elements[j++] = qs.elements[i];
1535         }
1536       if (j == 0 && p == -SYSTEMSOLVABLE && solv->distupgrade)
1537         {
1538           queue_push(&solv->orphaned, s - pool->solvables);     /* treat as orphaned */
1539           j = qs.count;
1540         }
1541       if (j < qs.count)
1542         {
1543           if (d && solv->updatesystem && solv->installed && s->repo == solv->installed)
1544             {
1545               if (!solv->multiversionupdaters)
1546                 solv->multiversionupdaters = sat_calloc(solv->installed->end - solv->installed->start, sizeof(Id));
1547               solv->multiversionupdaters[s - pool->solvables - solv->installed->start] = d;
1548             }
1549           qs.count = j;
1550         }
1551     }
1552   if (qs.count && p == -SYSTEMSOLVABLE)
1553     p = queue_shift(&qs);
1554   d = qs.count ? pool_queuetowhatprovides(pool, &qs) : 0;
1555   queue_free(&qs);
1556   addrule(solv, p, d);  /* allow update of s */
1557   POOL_DEBUG(SAT_DEBUG_SCHUBI, "-----  addupdaterule end -----\n");
1558 }
1559
1560
1561 /********************************************************************/
1562 /* watches */
1563
1564
1565 /*-------------------------------------------------------------------
1566  * makewatches
1567  *
1568  * initial setup for all watches
1569  */
1570
1571 static void
1572 makewatches(Solver *solv)
1573 {
1574   Rule *r;
1575   int i;
1576   int nsolvables = solv->pool->nsolvables;
1577
1578   sat_free(solv->watches);
1579                                        /* lower half for removals, upper half for installs */
1580   solv->watches = sat_calloc(2 * nsolvables, sizeof(Id));
1581 #if 1
1582   /* do it reverse so rpm rules get triggered first (XXX: obsolete?) */
1583   for (i = 1, r = solv->rules + solv->nrules - 1; i < solv->nrules; i++, r--)
1584 #else
1585   for (i = 1, r = solv->rules + 1; i < solv->nrules; i++, r++)
1586 #endif
1587     {
1588       if (!r->w2)               /* assertions do not need watches */
1589         continue;
1590
1591       /* see addwatches_rule(solv, r) */
1592       r->n1 = solv->watches[nsolvables + r->w1];
1593       solv->watches[nsolvables + r->w1] = r - solv->rules;
1594
1595       r->n2 = solv->watches[nsolvables + r->w2];
1596       solv->watches[nsolvables + r->w2] = r - solv->rules;
1597     }
1598 }
1599
1600
1601 /*-------------------------------------------------------------------
1602  *
1603  * add watches (for rule)
1604  * sets up watches for a single rule
1605  * 
1606  * see also makewatches()
1607  */
1608
1609 static inline void
1610 addwatches_rule(Solver *solv, Rule *r)
1611 {
1612   int nsolvables = solv->pool->nsolvables;
1613
1614   r->n1 = solv->watches[nsolvables + r->w1];
1615   solv->watches[nsolvables + r->w1] = r - solv->rules;
1616
1617   r->n2 = solv->watches[nsolvables + r->w2];
1618   solv->watches[nsolvables + r->w2] = r - solv->rules;
1619 }
1620
1621
1622 /********************************************************************/
1623 /*
1624  * rule propagation
1625  */
1626
1627
1628 /* shortcuts to check if a literal (positive or negative) assignment
1629  * evaluates to 'true' or 'false'
1630  */
1631 #define DECISIONMAP_TRUE(p) ((p) > 0 ? (decisionmap[p] > 0) : (decisionmap[-p] < 0))
1632 #define DECISIONMAP_FALSE(p) ((p) > 0 ? (decisionmap[p] < 0) : (decisionmap[-p] > 0))
1633 #define DECISIONMAP_UNDEF(p) (decisionmap[(p) > 0 ? (p) : -(p)] == 0)
1634
1635 /*-------------------------------------------------------------------
1636  * 
1637  * propagate
1638  *
1639  * make decision and propagate to all rules
1640  * 
1641  * Evaluate each term affected by the decision (linked through watches)
1642  * If we find unit rules we make new decisions based on them
1643  * 
1644  * Everything's fixed there, it's just finding rules that are
1645  * unit.
1646  * 
1647  * return : 0 = everything is OK
1648  *          rule = conflict found in this rule
1649  */
1650
1651 static Rule *
1652 propagate(Solver *solv, int level)
1653 {
1654   Pool *pool = solv->pool;
1655   Id *rp, *next_rp;           /* rule pointer, next rule pointer in linked list */
1656   Rule *r;                    /* rule */
1657   Id p, pkg, other_watch;
1658   Id *dp;
1659   Id *decisionmap = solv->decisionmap;
1660     
1661   Id *watches = solv->watches + pool->nsolvables;   /* place ptr in middle */
1662
1663   POOL_DEBUG(SAT_DEBUG_PROPAGATE, "----- propagate -----\n");
1664
1665   /* foreach non-propagated decision */
1666   while (solv->propagate_index < solv->decisionq.count)
1667     {
1668         /*
1669          * 'pkg' was just decided
1670          * negate because our watches trigger if literal goes FALSE
1671          */
1672       pkg = -solv->decisionq.elements[solv->propagate_index++];
1673         
1674       IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
1675         {
1676           POOL_DEBUG(SAT_DEBUG_PROPAGATE, "propagate for decision %d level %d\n", -pkg, level);
1677           solver_printruleelement(solv, SAT_DEBUG_PROPAGATE, 0, -pkg);
1678         }
1679
1680       /* foreach rule where 'pkg' is now FALSE */
1681       for (rp = watches + pkg; *rp; rp = next_rp)
1682         {
1683           r = solv->rules + *rp;
1684           if (r->d < 0)
1685             {
1686               /* rule is disabled, goto next */
1687               if (pkg == r->w1)
1688                 next_rp = &r->n1;
1689               else
1690                 next_rp = &r->n2;
1691               continue;
1692             }
1693
1694           IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
1695             {
1696               POOL_DEBUG(SAT_DEBUG_PROPAGATE,"  watch triggered ");
1697               solver_printrule(solv, SAT_DEBUG_PROPAGATE, r);
1698             }
1699
1700             /* 'pkg' was just decided (was set to FALSE)
1701              * 
1702              *  now find other literal watch, check clause
1703              *   and advance on linked list
1704              */
1705           if (pkg == r->w1)
1706             {
1707               other_watch = r->w2;
1708               next_rp = &r->n1;
1709             }
1710           else
1711             {
1712               other_watch = r->w1;
1713               next_rp = &r->n2;
1714             }
1715             
1716             /* 
1717              * This term is already true (through the other literal)
1718              * so we have nothing to do
1719              */
1720           if (DECISIONMAP_TRUE(other_watch))
1721             continue;
1722
1723             /*
1724              * The other literal is FALSE or UNDEF
1725              * 
1726              */
1727             
1728           if (r->d)
1729             {
1730               /* Not a binary clause, try to move our watch.
1731                * 
1732                * Go over all literals and find one that is
1733                *   not other_watch
1734                *   and not FALSE
1735                * 
1736                * (TRUE is also ok, in that case the rule is fulfilled)
1737                */
1738               if (r->p                                /* we have a 'p' */
1739                   && r->p != other_watch              /* which is not watched */
1740                   && !DECISIONMAP_FALSE(r->p))        /* and not FALSE */
1741                 {
1742                   p = r->p;
1743                 }
1744               else                                    /* go find a 'd' to make 'true' */
1745                 {
1746                   /* foreach p in 'd'
1747                      we just iterate sequentially, doing it in another order just changes the order of decisions, not the decisions itself
1748                    */
1749                   for (dp = pool->whatprovidesdata + r->d; (p = *dp++) != 0;)
1750                     {
1751                       if (p != other_watch              /* which is not watched */
1752                           && !DECISIONMAP_FALSE(p))     /* and not FALSE */
1753                         break;
1754                     }
1755                 }
1756
1757               if (p)
1758                 {
1759                   /*
1760                    * if we found some p that is UNDEF or TRUE, move
1761                    * watch to it
1762                    */
1763                   IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
1764                     {
1765                       if (p > 0)
1766                         POOL_DEBUG(SAT_DEBUG_PROPAGATE, "    -> move w%d to %s\n", (pkg == r->w1 ? 1 : 2), solvable2str(pool, pool->solvables + p));
1767                       else
1768                         POOL_DEBUG(SAT_DEBUG_PROPAGATE,"    -> move w%d to !%s\n", (pkg == r->w1 ? 1 : 2), solvable2str(pool, pool->solvables - p));
1769                     }
1770                     
1771                   *rp = *next_rp;
1772                   next_rp = rp;
1773                     
1774                   if (pkg == r->w1)
1775                     {
1776                       r->w1 = p;
1777                       r->n1 = watches[p];
1778                     }
1779                   else
1780                     {
1781                       r->w2 = p;
1782                       r->n2 = watches[p];
1783                     }
1784                   watches[p] = r - solv->rules;
1785                   continue;
1786                 }
1787               /* search failed, thus all unwatched literals are FALSE */
1788                 
1789             } /* not binary */
1790             
1791             /*
1792              * unit clause found, set literal other_watch to TRUE
1793              */
1794
1795           if (DECISIONMAP_FALSE(other_watch))      /* check if literal is FALSE */
1796             return r;                              /* eek, a conflict! */
1797             
1798           IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
1799             {
1800               POOL_DEBUG(SAT_DEBUG_PROPAGATE, "   unit ");
1801               solver_printrule(solv, SAT_DEBUG_PROPAGATE, r);
1802             }
1803
1804           if (other_watch > 0)
1805             decisionmap[other_watch] = level;    /* install! */
1806           else
1807             decisionmap[-other_watch] = -level;  /* remove! */
1808             
1809           queue_push(&solv->decisionq, other_watch);
1810           queue_push(&solv->decisionq_why, r - solv->rules);
1811
1812           IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
1813             {
1814               Solvable *s = pool->solvables + (other_watch > 0 ? other_watch : -other_watch);
1815               if (other_watch > 0)
1816                 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "    -> decided to install %s\n", solvable2str(pool, s));
1817               else
1818                 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "    -> decided to conflict %s\n", solvable2str(pool, s));
1819             }
1820             
1821         } /* foreach rule involving 'pkg' */
1822         
1823     } /* while we have non-decided decisions */
1824     
1825   POOL_DEBUG(SAT_DEBUG_PROPAGATE, "----- propagate end-----\n");
1826
1827   return 0;     /* all is well */
1828 }
1829
1830
1831 /********************************************************************/
1832 /* Analysis */
1833
1834 /*-------------------------------------------------------------------
1835  * 
1836  * analyze
1837  *   and learn
1838  */
1839
1840 static int
1841 analyze(Solver *solv, int level, Rule *c, int *pr, int *dr, int *whyp)
1842 {
1843   Pool *pool = solv->pool;
1844   Queue r;
1845   int rlevel = 1;
1846   Map seen;             /* global? */
1847   Id d, v, vv, *dp, why;
1848   int l, i, idx;
1849   int num = 0, l1num = 0;
1850   int learnt_why = solv->learnt_pool.count;
1851   Id *decisionmap = solv->decisionmap;
1852
1853   queue_init(&r);
1854
1855   POOL_DEBUG(SAT_DEBUG_ANALYZE, "ANALYZE at %d ----------------------\n", level);
1856   map_init(&seen, pool->nsolvables);
1857   idx = solv->decisionq.count;
1858   for (;;)
1859     {
1860       IF_POOLDEBUG (SAT_DEBUG_ANALYZE)
1861         solver_printruleclass(solv, SAT_DEBUG_ANALYZE, c);
1862       queue_push(&solv->learnt_pool, c - solv->rules);
1863       d = c->d < 0 ? -c->d - 1 : c->d;
1864       dp = d ? pool->whatprovidesdata + d : 0;
1865       /* go through all literals of the rule */
1866       for (i = -1; ; i++)
1867         {
1868           if (i == -1)
1869             v = c->p;
1870           else if (d == 0)
1871             v = i ? 0 : c->w2;
1872           else
1873             v = *dp++;
1874           if (v == 0)
1875             break;
1876
1877           if (DECISIONMAP_TRUE(v))      /* the one true literal */
1878             continue;
1879           vv = v > 0 ? v : -v;
1880           if (MAPTST(&seen, vv))
1881             continue;
1882           l = solv->decisionmap[vv];
1883           if (l < 0)
1884             l = -l;
1885           MAPSET(&seen, vv);
1886           if (l == 1)
1887             l1num++;                    /* need to do this one in level1 pass */
1888           else if (l == level)
1889             num++;                      /* need to do this one as well */
1890           else
1891             {
1892               queue_push(&r, v);        /* not level1 or conflict level, add to new rule */
1893               if (l > rlevel)
1894                 rlevel = l;
1895             }
1896         }
1897 l1retry:
1898       if (!num && !--l1num)
1899         break;  /* all level 1 literals done */
1900       for (;;)
1901         {
1902           assert(idx > 0);
1903           v = solv->decisionq.elements[--idx];
1904           vv = v > 0 ? v : -v;
1905           if (MAPTST(&seen, vv))
1906             break;
1907         }
1908       MAPCLR(&seen, vv);
1909       if (num && --num == 0)
1910         {
1911           *pr = -v;     /* so that v doesn't get lost */
1912           if (!l1num)
1913             break;
1914           POOL_DEBUG(SAT_DEBUG_ANALYZE, "got %d involved level 1 decisions\n", l1num);
1915           for (i = 0; i < r.count; i++)
1916             {
1917               v = r.elements[i];
1918               MAPCLR(&seen, v > 0 ? v : -v);
1919             }
1920           /* only level 1 marks left */
1921           l1num++;
1922           goto l1retry;
1923         }
1924       why = solv->decisionq_why.elements[idx];
1925       if (!why)                 /* just in case, maybe for SYSTEMSOLVABLE */
1926         goto l1retry;
1927       c = solv->rules + why;
1928     }
1929   map_free(&seen);
1930
1931   if (r.count == 0)
1932     *dr = 0;
1933   else if (r.count == 1 && r.elements[0] < 0)
1934     *dr = r.elements[0];
1935   else
1936     *dr = pool_queuetowhatprovides(pool, &r);
1937   IF_POOLDEBUG (SAT_DEBUG_ANALYZE)
1938     {
1939       POOL_DEBUG(SAT_DEBUG_ANALYZE, "learned rule for level %d (am %d)\n", rlevel, level);
1940       solver_printruleelement(solv, SAT_DEBUG_ANALYZE, 0, *pr);
1941       for (i = 0; i < r.count; i++)
1942         solver_printruleelement(solv, SAT_DEBUG_ANALYZE, 0, r.elements[i]);
1943     }
1944   /* push end marker on learnt reasons stack */
1945   queue_push(&solv->learnt_pool, 0);
1946   if (whyp)
1947     *whyp = learnt_why;
1948   solv->stats_learned++;
1949   return rlevel;
1950 }
1951
1952
1953 /*-------------------------------------------------------------------
1954  * 
1955  * reset_solver
1956  * 
1957  * reset the solver decisions to right after the rpm rules.
1958  * called after rules have been enabled/disabled
1959  */
1960
1961 static void
1962 reset_solver(Solver *solv)
1963 {
1964   Pool *pool = solv->pool;
1965   int i;
1966   Id v;
1967
1968   /* rewind decisions to direct rpm rule assertions */
1969   for (i = solv->decisionq.count - 1; i >= solv->directdecisions; i--)
1970     {
1971       v = solv->decisionq.elements[i];
1972       solv->decisionmap[v > 0 ? v : -v] = 0;
1973     }
1974
1975   POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "decisions done reduced from %d to %d\n", solv->decisionq.count, solv->directdecisions);
1976
1977   solv->decisionq_why.count = solv->directdecisions;
1978   solv->decisionq.count = solv->directdecisions;
1979   solv->recommends_index = -1;
1980   solv->propagate_index = 0;
1981
1982   /* adapt learnt rule status to new set of enabled/disabled rules */
1983   enabledisablelearntrules(solv);
1984
1985   /* redo all job/update decisions */
1986   makeruledecisions(solv);
1987   POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "decisions so far: %d\n", solv->decisionq.count);
1988 }
1989
1990
1991 /*-------------------------------------------------------------------
1992  * 
1993  * analyze_unsolvable_rule
1994  */
1995
1996 static void
1997 analyze_unsolvable_rule(Solver *solv, Rule *r, Id *lastweakp)
1998 {
1999   Pool *pool = solv->pool;
2000   int i;
2001   Id why = r - solv->rules;
2002
2003   IF_POOLDEBUG (SAT_DEBUG_UNSOLVABLE)
2004     solver_printruleclass(solv, SAT_DEBUG_UNSOLVABLE, r);
2005   if (solv->learntrules && why >= solv->learntrules)
2006     {
2007       for (i = solv->learnt_why.elements[why - solv->learntrules]; solv->learnt_pool.elements[i]; i++)
2008         if (solv->learnt_pool.elements[i] > 0)
2009           analyze_unsolvable_rule(solv, solv->rules + solv->learnt_pool.elements[i], lastweakp);
2010       return;
2011     }
2012   if (MAPTST(&solv->weakrulemap, why))
2013     if (!*lastweakp || why > *lastweakp)
2014       *lastweakp = why;
2015   /* do not add rpm rules to problem */
2016   if (why < solv->rpmrules_end)
2017     return;
2018   /* turn rule into problem */
2019   if (why >= solv->jobrules && why < solv->jobrules_end)
2020     why = -(solv->ruletojob.elements[why - solv->jobrules] + 1);
2021   /* return if problem already countains our rule */
2022   if (solv->problems.count)
2023     {
2024       for (i = solv->problems.count - 1; i >= 0; i--)
2025         if (solv->problems.elements[i] == 0)    /* end of last problem reached? */
2026           break;
2027         else if (solv->problems.elements[i] == why)
2028           return;
2029     }
2030   queue_push(&solv->problems, why);
2031 }
2032
2033
2034 /*-------------------------------------------------------------------
2035  * 
2036  * analyze_unsolvable
2037  *
2038  * return: 1 - disabled some rules, try again
2039  *         0 - hopeless
2040  */
2041
2042 static int
2043 analyze_unsolvable(Solver *solv, Rule *cr, int disablerules)
2044 {
2045   Pool *pool = solv->pool;
2046   Rule *r;
2047   Map seen;             /* global to speed things up? */
2048   Id d, v, vv, *dp, why;
2049   int l, i, idx;
2050   Id *decisionmap = solv->decisionmap;
2051   int oldproblemcount;
2052   int oldlearntpoolcount;
2053   Id lastweak;
2054
2055   POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "ANALYZE UNSOLVABLE ----------------------\n");
2056   solv->stats_unsolvable++;
2057   oldproblemcount = solv->problems.count;
2058   oldlearntpoolcount = solv->learnt_pool.count;
2059
2060   /* make room for proof index */
2061   /* must update it later, as analyze_unsolvable_rule would confuse
2062    * it with a rule index if we put the real value in already */
2063   queue_push(&solv->problems, 0);
2064
2065   r = cr;
2066   map_init(&seen, pool->nsolvables);
2067   queue_push(&solv->learnt_pool, r - solv->rules);
2068   lastweak = 0;
2069   analyze_unsolvable_rule(solv, r, &lastweak);
2070   d = r->d < 0 ? -r->d - 1 : r->d;
2071   dp = d ? pool->whatprovidesdata + d : 0;
2072   for (i = -1; ; i++)
2073     {
2074       if (i == -1)
2075         v = r->p;
2076       else if (d == 0)
2077         v = i ? 0 : r->w2;
2078       else
2079         v = *dp++;
2080       if (v == 0)
2081         break;
2082       if (DECISIONMAP_TRUE(v))  /* the one true literal */
2083           continue;
2084       vv = v > 0 ? v : -v;
2085       l = solv->decisionmap[vv];
2086       if (l < 0)
2087         l = -l;
2088       MAPSET(&seen, vv);
2089     }
2090   idx = solv->decisionq.count;
2091   while (idx > 0)
2092     {
2093       v = solv->decisionq.elements[--idx];
2094       vv = v > 0 ? v : -v;
2095       if (!MAPTST(&seen, vv))
2096         continue;
2097       why = solv->decisionq_why.elements[idx];
2098       queue_push(&solv->learnt_pool, why);
2099       r = solv->rules + why;
2100       analyze_unsolvable_rule(solv, r, &lastweak);
2101       d = r->d < 0 ? -r->d - 1 : r->d;
2102       dp = d ? pool->whatprovidesdata + d : 0;
2103       for (i = -1; ; i++)
2104         {
2105           if (i == -1)
2106             v = r->p;
2107           else if (d == 0)
2108             v = i ? 0 : r->w2;
2109           else
2110             v = *dp++;
2111           if (v == 0)
2112             break;
2113           if (DECISIONMAP_TRUE(v))      /* the one true literal */
2114               continue;
2115           vv = v > 0 ? v : -v;
2116           l = solv->decisionmap[vv];
2117           if (l < 0)
2118             l = -l;
2119           MAPSET(&seen, vv);
2120         }
2121     }
2122   map_free(&seen);
2123   queue_push(&solv->problems, 0);       /* mark end of this problem */
2124
2125   if (lastweak)
2126     {
2127       /* disable last weak rule */
2128       solv->problems.count = oldproblemcount;
2129       solv->learnt_pool.count = oldlearntpoolcount;
2130       r = solv->rules + lastweak;
2131       POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "disabling ");
2132       solver_printruleclass(solv, SAT_DEBUG_UNSOLVABLE, r);
2133       disablerule(solv, r);
2134       reset_solver(solv);
2135       return 1;
2136     }
2137
2138   /* finish proof */
2139   queue_push(&solv->learnt_pool, 0);
2140   solv->problems.elements[oldproblemcount] = oldlearntpoolcount;
2141
2142   if (disablerules)
2143     {
2144       for (i = oldproblemcount + 1; i < solv->problems.count - 1; i++)
2145         disableproblem(solv, solv->problems.elements[i]);
2146       /* XXX: might want to enable all weak rules again */
2147       reset_solver(solv);
2148       return 1;
2149     }
2150   POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "UNSOLVABLE\n");
2151   return 0;
2152 }
2153
2154
2155 /********************************************************************/
2156 /* Decision revert */
2157
2158 /*-------------------------------------------------------------------
2159  * 
2160  * revert
2161  * revert decision at level
2162  */
2163
2164 static void
2165 revert(Solver *solv, int level)
2166 {
2167   Pool *pool = solv->pool;
2168   Id v, vv;
2169   while (solv->decisionq.count)
2170     {
2171       v = solv->decisionq.elements[solv->decisionq.count - 1];
2172       vv = v > 0 ? v : -v;
2173       if (solv->decisionmap[vv] <= level && solv->decisionmap[vv] >= -level)
2174         break;
2175       POOL_DEBUG(SAT_DEBUG_PROPAGATE, "reverting decision %d at %d\n", v, solv->decisionmap[vv]);
2176       if (v > 0 && solv->recommendations.count && v == solv->recommendations.elements[solv->recommendations.count - 1])
2177         solv->recommendations.count--;
2178       solv->decisionmap[vv] = 0;
2179       solv->decisionq.count--;
2180       solv->decisionq_why.count--;
2181       solv->propagate_index = solv->decisionq.count;
2182     }
2183   while (solv->branches.count && solv->branches.elements[solv->branches.count - 1] <= -level)
2184     {
2185       solv->branches.count--;
2186       while (solv->branches.count && solv->branches.elements[solv->branches.count - 1] >= 0)
2187         solv->branches.count--;
2188     }
2189   solv->recommends_index = -1;
2190 }
2191
2192
2193 /*-------------------------------------------------------------------
2194  * 
2195  * watch2onhighest - put watch2 on literal with highest level
2196  */
2197
2198 static inline void
2199 watch2onhighest(Solver *solv, Rule *r)
2200 {
2201   int l, wl = 0;
2202   Id d, v, *dp;
2203
2204   d = r->d < 0 ? -r->d - 1 : r->d;
2205   if (!d)
2206     return;     /* binary rule, both watches are set */
2207   dp = solv->pool->whatprovidesdata + d;
2208   while ((v = *dp++) != 0)
2209     {
2210       l = solv->decisionmap[v < 0 ? -v : v];
2211       if (l < 0)
2212         l = -l;
2213       if (l > wl)
2214         {
2215           r->w2 = dp[-1];
2216           wl = l;
2217         }
2218     }
2219 }
2220
2221
2222 /*-------------------------------------------------------------------
2223  * 
2224  * setpropagatelearn
2225  *
2226  * add free decision (solvable to install) to decisionq
2227  * increase level and propagate decision
2228  * return if no conflict.
2229  *
2230  * in conflict case, analyze conflict rule, add resulting
2231  * rule to learnt rule set, make decision from learnt
2232  * rule (always unit) and re-propagate.
2233  *
2234  * returns the new solver level or 0 if unsolvable
2235  *
2236  */
2237
2238 static int
2239 setpropagatelearn(Solver *solv, int level, Id decision, int disablerules)
2240 {
2241   Pool *pool = solv->pool;
2242   Rule *r;
2243   Id p = 0, d = 0;
2244   int l, why;
2245
2246   if (decision)
2247     {
2248       level++;
2249       if (decision > 0)
2250         solv->decisionmap[decision] = level;
2251       else
2252         solv->decisionmap[-decision] = -level;
2253       queue_push(&solv->decisionq, decision);
2254       queue_push(&solv->decisionq_why, 0);
2255     }
2256   for (;;)
2257     {
2258       r = propagate(solv, level);
2259       if (!r)
2260         break;
2261       if (level == 1)
2262         return analyze_unsolvable(solv, r, disablerules);
2263       POOL_DEBUG(SAT_DEBUG_ANALYZE, "conflict with rule #%d\n", (int)(r - solv->rules));
2264       l = analyze(solv, level, r, &p, &d, &why);        /* learnt rule in p and d */
2265       assert(l > 0 && l < level);
2266       POOL_DEBUG(SAT_DEBUG_ANALYZE, "reverting decisions (level %d -> %d)\n", level, l);
2267       level = l;
2268       revert(solv, level);
2269       r = addrule(solv, p, d);       /* p requires d */
2270       assert(r);
2271       assert(solv->learnt_why.count == (r - solv->rules) - solv->learntrules);
2272       queue_push(&solv->learnt_why, why);
2273       if (d)
2274         {
2275           /* at least 2 literals, needs watches */
2276           watch2onhighest(solv, r);
2277           addwatches_rule(solv, r);
2278         }
2279       else
2280         {
2281           /* learnt rule is an assertion */
2282           queue_push(&solv->ruleassertions, r - solv->rules);
2283         }
2284       solv->decisionmap[p > 0 ? p : -p] = p > 0 ? level : -level;
2285       queue_push(&solv->decisionq, p);
2286       queue_push(&solv->decisionq_why, r - solv->rules);
2287       IF_POOLDEBUG (SAT_DEBUG_ANALYZE)
2288         {
2289           POOL_DEBUG(SAT_DEBUG_ANALYZE, "decision: ");
2290           solver_printruleelement(solv, SAT_DEBUG_ANALYZE, 0, p);
2291           POOL_DEBUG(SAT_DEBUG_ANALYZE, "new rule: ");
2292           solver_printrule(solv, SAT_DEBUG_ANALYZE, r);
2293         }
2294     }
2295   return level;
2296 }
2297
2298
2299 /*-------------------------------------------------------------------
2300  * 
2301  * select and install
2302  * 
2303  * install best package from the queue. We add an extra package, inst, if
2304  * provided. See comment in weak install section.
2305  *
2306  * returns the new solver level or 0 if unsolvable
2307  *
2308  */
2309
2310 static int
2311 selectandinstall(Solver *solv, int level, Queue *dq, int disablerules)
2312 {
2313   Pool *pool = solv->pool;
2314   Id p;
2315   int i;
2316
2317   if (dq->count > 1)
2318     policy_filter_unwanted(solv, dq, POLICY_MODE_CHOOSE);
2319   if (dq->count > 1)
2320     {
2321       /* XXX: didn't we already do that? */
2322       /* XXX: shouldn't we prefer installed packages? */
2323       /* XXX: move to policy.c? */
2324       /* choose the supplemented one */
2325       for (i = 0; i < dq->count; i++)
2326         if (solver_is_supplementing(solv, pool->solvables + dq->elements[i]))
2327           {
2328             dq->elements[0] = dq->elements[i];
2329             dq->count = 1;
2330             break;
2331           }
2332     }
2333   if (dq->count > 1)
2334     {
2335       /* multiple candidates, open a branch */
2336       for (i = 1; i < dq->count; i++)
2337         queue_push(&solv->branches, dq->elements[i]);
2338       queue_push(&solv->branches, -level);
2339     }
2340   p = dq->elements[0];
2341
2342   POOL_DEBUG(SAT_DEBUG_POLICY, "installing %s\n", solvable2str(pool, pool->solvables + p));
2343
2344   return setpropagatelearn(solv, level, p, disablerules);
2345 }
2346
2347
2348 /********************************************************************/
2349 /* Main solver interface */
2350
2351
2352 /*-------------------------------------------------------------------
2353  * 
2354  * solver_create
2355  * create solver structure
2356  *
2357  * pool: all available solvables
2358  * installed: installed Solvables
2359  *
2360  *
2361  * Upon solving, rules are created to flag the Solvables
2362  * of the 'installed' Repo as installed.
2363  */
2364
2365 Solver *
2366 solver_create(Pool *pool)
2367 {
2368   Solver *solv;
2369   solv = (Solver *)sat_calloc(1, sizeof(Solver));
2370   solv->pool = pool;
2371   solv->installed = pool->installed;
2372
2373   queue_init(&solv->ruletojob);
2374   queue_init(&solv->decisionq);
2375   queue_init(&solv->decisionq_why);
2376   queue_init(&solv->problems);
2377   queue_init(&solv->suggestions);
2378   queue_init(&solv->recommendations);
2379   queue_init(&solv->orphaned);
2380   queue_init(&solv->learnt_why);
2381   queue_init(&solv->learnt_pool);
2382   queue_init(&solv->branches);
2383   queue_init(&solv->covenantq);
2384   queue_init(&solv->weakruleq);
2385   queue_init(&solv->ruleassertions);
2386
2387   map_init(&solv->recommendsmap, pool->nsolvables);
2388   map_init(&solv->suggestsmap, pool->nsolvables);
2389   map_init(&solv->noupdate, solv->installed ? solv->installed->end - solv->installed->start : 0);
2390   solv->recommends_index = 0;
2391
2392   solv->decisionmap = (Id *)sat_calloc(pool->nsolvables, sizeof(Id));
2393   solv->nrules = 1;
2394   solv->rules = sat_extend_resize(solv->rules, solv->nrules, sizeof(Rule), RULES_BLOCK);
2395   memset(solv->rules, 0, sizeof(Rule));
2396
2397   return solv;
2398 }
2399
2400
2401 /*-------------------------------------------------------------------
2402  * 
2403  * solver_free
2404  */
2405
2406 void
2407 solver_free(Solver *solv)
2408 {
2409   queue_free(&solv->ruletojob);
2410   queue_free(&solv->decisionq);
2411   queue_free(&solv->decisionq_why);
2412   queue_free(&solv->learnt_why);
2413   queue_free(&solv->learnt_pool);
2414   queue_free(&solv->problems);
2415   queue_free(&solv->suggestions);
2416   queue_free(&solv->recommendations);
2417   queue_free(&solv->orphaned);
2418   queue_free(&solv->branches);
2419   queue_free(&solv->covenantq);
2420   queue_free(&solv->weakruleq);
2421   queue_free(&solv->ruleassertions);
2422
2423   map_free(&solv->recommendsmap);
2424   map_free(&solv->suggestsmap);
2425   map_free(&solv->noupdate);
2426   map_free(&solv->weakrulemap);
2427   map_free(&solv->noobsoletes);
2428
2429   sat_free(solv->decisionmap);
2430   sat_free(solv->rules);
2431   sat_free(solv->watches);
2432   sat_free(solv->obsoletes);
2433   sat_free(solv->obsoletes_data);
2434   sat_free(solv->multiversionupdaters);
2435   sat_free(solv);
2436 }
2437
2438
2439 /*-------------------------------------------------------------------
2440  * 
2441  * run_solver
2442  *
2443  * all rules have been set up, now actually run the solver
2444  *
2445  */
2446
2447 static void
2448 run_solver(Solver *solv, int disablerules, int doweak)
2449 {
2450   Queue dq;             /* local decisionqueue */
2451   Queue dqs;            /* local decisionqueue for supplements */
2452   int systemlevel;
2453   int level, olevel;
2454   Rule *r;
2455   int i, j, n;
2456   Solvable *s;
2457   Pool *pool = solv->pool;
2458   Id p, *dp;
2459   int minimizationsteps;
2460
2461   IF_POOLDEBUG (SAT_DEBUG_RULE_CREATION)
2462     {
2463       POOL_DEBUG (SAT_DEBUG_RULE_CREATION, "number of rules: %d\n", solv->nrules);
2464       for (i = 1; i < solv->nrules; i++)
2465         solver_printruleclass(solv, SAT_DEBUG_RULE_CREATION, solv->rules + i);
2466     }
2467
2468   POOL_DEBUG(SAT_DEBUG_STATS, "initial decisions: %d\n", solv->decisionq.count);
2469
2470   IF_POOLDEBUG (SAT_DEBUG_SCHUBI)
2471     solver_printdecisions(solv);
2472
2473   /* start SAT algorithm */
2474   level = 1;
2475   systemlevel = level + 1;
2476   POOL_DEBUG(SAT_DEBUG_STATS, "solving...\n");
2477
2478   queue_init(&dq);
2479   queue_init(&dqs);
2480
2481   /*
2482    * here's the main loop:
2483    * 1) propagate new decisions (only needed for level 1)
2484    * 2) try to keep installed packages
2485    * 3) fulfill all unresolved rules
2486    * 4) install recommended packages
2487    * 5) minimalize solution if we had choices
2488    * if we encounter a problem, we rewind to a safe level and restart
2489    * with step 1
2490    */
2491    
2492   minimizationsteps = 0;
2493   for (;;)
2494     {
2495       /*
2496        * propagate
2497        */
2498
2499       if (level == 1)
2500         {
2501           POOL_DEBUG(SAT_DEBUG_PROPAGATE, "propagating (propagate_index: %d;  size decisionq: %d)...\n", solv->propagate_index, solv->decisionq.count);
2502           if ((r = propagate(solv, level)) != 0)
2503             {
2504               if (analyze_unsolvable(solv, r, disablerules))
2505                 continue;
2506               queue_free(&dq);
2507               queue_free(&dqs);
2508               return;
2509             }
2510         }
2511
2512      if (level < systemlevel)
2513         {
2514           POOL_DEBUG(SAT_DEBUG_STATS, "resolving job rules\n");
2515           for (i = solv->jobrules, r = solv->rules + i; i < solv->jobrules_end; i++, r++)
2516             {
2517               Id l;
2518               if (r->d < 0)             /* ignore disabled rules */
2519                 continue;
2520               queue_empty(&dq);
2521               FOR_RULELITERALS(l, dp, r)
2522                 {
2523                   if (l < 0)
2524                     {
2525                       if (solv->decisionmap[-l] <= 0)
2526                         break;
2527                     }
2528                   else
2529                     {
2530                       if (solv->decisionmap[l] > 0)
2531                         break;
2532                       if (solv->decisionmap[l] == 0)
2533                         queue_push(&dq, l);
2534                     }
2535                 }
2536               if (l || !dq.count)
2537                 continue;
2538               /* prune to installed if not updating */
2539               if (!solv->updatesystem && solv->installed && dq.count > 1)
2540                 {
2541                   int j, k;
2542                   for (j = k = 0; j < dq.count; j++)
2543                     {
2544                       Solvable *s = pool->solvables + dq.elements[j];
2545                       if (s->repo == solv->installed)
2546                         dq.elements[k++] = dq.elements[j];
2547                     }
2548                   if (k)
2549                     dq.count = k;
2550                 }
2551               olevel = level;
2552               level = selectandinstall(solv, level, &dq, disablerules);
2553               if (level == 0)
2554                 {
2555                   queue_free(&dq);
2556                   queue_free(&dqs);
2557                   return;
2558                 }
2559               if (level <= olevel)
2560                 break;
2561             }
2562           systemlevel = level + 1;
2563           if (i < solv->jobrules_end)
2564             continue;
2565         }
2566
2567
2568       /*
2569        * installed packages
2570        */
2571
2572       if (level < systemlevel && solv->installed && solv->installed->nsolvables)
2573         {
2574           if (!solv->updatesystem)
2575             {
2576               /*
2577                * Normal run (non-updating)
2578                * Keep as many packages installed as possible
2579                */
2580               POOL_DEBUG(SAT_DEBUG_STATS, "installing old packages\n");
2581                 
2582               for (i = solv->installed->start; i < solv->installed->end; i++)
2583                 {
2584                   s = pool->solvables + i;
2585                     
2586                     /* skip if not installed */
2587                   if (s->repo != solv->installed)
2588                     continue;
2589                     
2590                     /* skip if already decided */
2591                   if (solv->decisionmap[i] != 0)
2592                     continue;
2593                     
2594                   POOL_DEBUG(SAT_DEBUG_PROPAGATE, "keeping %s\n", solvable2str(pool, s));
2595                     
2596                   olevel = level;
2597                   level = setpropagatelearn(solv, level, i, disablerules);
2598
2599                   if (level == 0)                /* unsolvable */
2600                     {
2601                       queue_free(&dq);
2602                       queue_free(&dqs);
2603                       return;
2604                     }
2605                   if (level <= olevel)
2606                     break;
2607                 }
2608               systemlevel = level + 1;
2609               if (i < solv->installed->end)
2610                 continue;
2611             }
2612           else if (solv->noobsoletes.size && solv->multiversionupdaters)
2613             {
2614               /* see if we can multi-version install the newest package */
2615               for (i = solv->installed->start; i < solv->installed->end; i++)
2616                 {
2617                   Id d;
2618                   s = pool->solvables + i;
2619                   if (s->repo != solv->installed)
2620                     continue;
2621                   if (MAPTST(&solv->noupdate, i - solv->installed->start))
2622                     continue;
2623                   d = solv->multiversionupdaters[i - solv->installed->start];
2624                   if (!d)
2625                     continue;
2626                   queue_empty(&dq);
2627                   queue_push(&dq, i);
2628                   while ((p = pool->whatprovidesdata[d++]) != 0)
2629                     if (solv->decisionmap[p] >= 0)
2630                       queue_push(&dq, p);
2631                   policy_filter_unwanted(solv, &dq, POLICY_MODE_CHOOSE);
2632                   p = dq.elements[0];
2633                   if (p != i && solv->decisionmap[p] == 0)
2634                     {
2635                       olevel = level;
2636                       POOL_DEBUG(SAT_DEBUG_POLICY, "installing (multi-version) %s\n", solvable2str(pool, pool->solvables + p));
2637                       level = setpropagatelearn(solv, level, p, disablerules);
2638                       if (level == 0)
2639                         {
2640                           queue_free(&dq);
2641                           queue_free(&dqs);
2642                           return;
2643                         }
2644                       if (level <= olevel)
2645                         break;
2646                     }
2647                   p = i;
2648                   /* now that the best version is installed, try to
2649                    * keep the original one */
2650                   if (solv->decisionmap[p])     /* already decided? */
2651                    continue;
2652                   r = solv->rules + solv->updaterules + (i - solv->installed->start);
2653                   if (!r->p)            /* update rule == feature rule? */
2654                     r = r - solv->updaterules + solv->featurerules;
2655                   if (r->p == p)        /* allowed to keep package? */
2656                     {
2657                       olevel = level;
2658                       POOL_DEBUG(SAT_DEBUG_POLICY, "keeping (multi-version) %s\n", solvable2str(pool, pool->solvables + p));
2659                       level = setpropagatelearn(solv, level, p, disablerules);
2660                       if (level == 0)
2661                         {
2662                           queue_free(&dq);
2663                           queue_free(&dqs);
2664                           return;
2665                         }
2666                       if (level <= olevel)
2667                         break;
2668                     }
2669                 }
2670               systemlevel = level + 1;
2671               if (i < solv->installed->end)
2672                 continue;
2673             }
2674             
2675           POOL_DEBUG(SAT_DEBUG_STATS, "resolving update/feature rules\n");
2676             
2677           for (i = solv->installed->start, r = solv->rules + solv->updaterules; i < solv->installed->end; i++, r++)
2678             {
2679               Rule *rr;
2680               s = pool->solvables + i;
2681                 
2682                 /* skip if not installed (can't update) */
2683               if (s->repo != solv->installed)
2684                 continue;
2685                 /* skip if already decided */
2686               if (solv->decisionmap[i] > 0)
2687                 continue;
2688                 
2689                 /* noupdate is set if a job is erasing the installed solvable or installing a specific version */
2690               if (MAPTST(&solv->noupdate, i - solv->installed->start))
2691                 continue;
2692                 
2693               queue_empty(&dq);
2694
2695               rr = r;
2696               if (rr->d < 0)    /* disabled -> look at feature rule ? */
2697                 rr -= solv->installed->end - solv->installed->start;
2698               if (!rr->p)       /* identical to update rule? */
2699                 rr = r;
2700               if (rr->p <= 0)
2701                 continue;       /* no such rule or disabled */
2702         
2703               FOR_RULELITERALS(p, dp, rr)
2704                 {
2705                   if (solv->decisionmap[p] > 0)
2706                     break;
2707                   if (solv->decisionmap[p] == 0)
2708                     queue_push(&dq, p);
2709                 }
2710               if (p || !dq.count)       /* already fulfilled or empty */
2711                 continue;
2712               olevel = level;
2713               level = selectandinstall(solv, level, &dq, disablerules);
2714               if (level == 0)
2715                 {
2716                   queue_free(&dq);
2717                   queue_free(&dqs);
2718                   return;
2719                 }
2720               if (level <= olevel)
2721                 break;
2722             }
2723           systemlevel = level + 1;
2724           if (i < solv->installed->end)
2725             continue;
2726         }
2727
2728       if (level < systemlevel)
2729         systemlevel = level;
2730
2731       /*
2732        * decide
2733        */
2734
2735       POOL_DEBUG(SAT_DEBUG_POLICY, "deciding unresolved rules\n");
2736       for (i = 1, n = 1; ; i++, n++)
2737         {
2738           if (n == solv->nrules)
2739             break;
2740           if (i == solv->nrules)
2741             i = 1;
2742           r = solv->rules + i;
2743           if (r->d < 0)         /* ignore disabled rules */
2744             continue;
2745           queue_empty(&dq);
2746           if (r->d == 0)
2747             {
2748               /* binary or unary rule */
2749               /* need two positive undecided literals */
2750               if (r->p < 0 || r->w2 <= 0)
2751                 continue;
2752               if (solv->decisionmap[r->p] || solv->decisionmap[r->w2])
2753                 continue;
2754               queue_push(&dq, r->p);
2755               queue_push(&dq, r->w2);
2756             }
2757           else
2758             {
2759               /* make sure that
2760                * all negative literals are installed
2761                * no positive literal is installed
2762                * i.e. the rule is not fulfilled and we
2763                * just need to decide on the positive literals
2764                */
2765               if (r->p < 0)
2766                 {
2767                   if (solv->decisionmap[-r->p] <= 0)
2768                     continue;
2769                 }
2770               else
2771                 {
2772                   if (solv->decisionmap[r->p] > 0)
2773                     continue;
2774                   if (solv->decisionmap[r->p] == 0)
2775                     queue_push(&dq, r->p);
2776                 }
2777               dp = pool->whatprovidesdata + r->d;
2778               while ((p = *dp++) != 0)
2779                 {
2780                   if (p < 0)
2781                     {
2782                       if (solv->decisionmap[-p] <= 0)
2783                         break;
2784                     }
2785                   else
2786                     {
2787                       if (solv->decisionmap[p] > 0)
2788                         break;
2789                       if (solv->decisionmap[p] == 0)
2790                         queue_push(&dq, p);
2791                     }
2792                 }
2793               if (p)
2794                 continue;
2795             }
2796           IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
2797             {
2798               POOL_DEBUG(SAT_DEBUG_PROPAGATE, "unfulfilled ");
2799               solver_printruleclass(solv, SAT_DEBUG_PROPAGATE, r);
2800             }
2801           /* dq.count < 2 cannot happen as this means that
2802            * the rule is unit */
2803           assert(dq.count > 1);
2804
2805           olevel = level;
2806           level = selectandinstall(solv, level, &dq, disablerules);
2807           if (level == 0)
2808             {
2809               queue_free(&dq);
2810               queue_free(&dqs);
2811               return;
2812             }
2813           if (level < systemlevel)
2814             break;
2815           n = 0;
2816         } /* for(), decide */
2817
2818       if (n != solv->nrules)    /* continue if level < systemlevel */
2819         continue;
2820
2821       if (doweak)
2822         {
2823           int qcount;
2824
2825           POOL_DEBUG(SAT_DEBUG_POLICY, "installing recommended packages\n");
2826           queue_empty(&dq);     /* recommended packages */
2827           queue_empty(&dqs);    /* supplemented packages */
2828           for (i = 1; i < pool->nsolvables; i++)
2829             {
2830               if (solv->decisionmap[i] < 0)
2831                 continue;
2832               if (solv->decisionmap[i] > 0)
2833                 {
2834                   /* installed, check for recommends */
2835                   Id *recp, rec, pp, p;
2836                   s = pool->solvables + i;
2837                   if (solv->ignorealreadyrecommended && s->repo == solv->installed)
2838                     continue;
2839                   /* XXX need to special case AND ? */
2840                   if (s->recommends)
2841                     {
2842                       recp = s->repo->idarraydata + s->recommends;
2843                       while ((rec = *recp++) != 0)
2844                         {
2845                           qcount = dq.count;
2846                           FOR_PROVIDES(p, pp, rec)
2847                             {
2848                               if (solv->decisionmap[p] > 0)
2849                                 {
2850                                   dq.count = qcount;
2851                                   break;
2852                                 }
2853                               else if (solv->decisionmap[p] == 0)
2854                                 {
2855                                   queue_pushunique(&dq, p);
2856                                 }
2857                             }
2858                         }
2859                     }
2860                 }
2861               else
2862                 {
2863                   s = pool->solvables + i;
2864                   if (!s->supplements)
2865                     continue;
2866                   if (!pool_installable(pool, s))
2867                     continue;
2868                   if (!solver_is_supplementing(solv, s))
2869                     continue;
2870                   queue_push(&dqs, i);
2871                 }
2872             }
2873
2874           /* filter out all already supplemented packages if requested */
2875           if (solv->ignorealreadyrecommended && dqs.count)
2876             {
2877               /* turn off all new packages */
2878               for (i = 0; i < solv->decisionq.count; i++)
2879                 {
2880                   p = solv->decisionq.elements[i];
2881                   if (p < 0)
2882                     continue;
2883                   s = pool->solvables + p;
2884                   if (s->repo && s->repo != solv->installed)
2885                     solv->decisionmap[p] = -solv->decisionmap[p];
2886                 }
2887               /* filter out old supplements */
2888               for (i = j = 0; i < dqs.count; i++)
2889                 {
2890                   p = dqs.elements[i];
2891                   s = pool->solvables + p;
2892                   if (!s->supplements)
2893                     continue;
2894                   if (!solver_is_supplementing(solv, s))
2895                     dqs.elements[j++] = p;
2896                 }
2897               dqs.count = j;
2898               /* undo turning off */
2899               for (i = 0; i < solv->decisionq.count; i++)
2900                 {
2901                   p = solv->decisionq.elements[i];
2902                   if (p < 0)
2903                     continue;
2904                   s = pool->solvables + p;
2905                   if (s->repo && s->repo != solv->installed)
2906                     solv->decisionmap[p] = -solv->decisionmap[p];
2907                 }
2908             }
2909
2910           /* make dq contain both recommended and supplemented pkgs */
2911           if (dqs.count)
2912             {
2913               for (i = 0; i < dqs.count; i++)
2914                 queue_pushunique(&dq, dqs.elements[i]);
2915             }
2916
2917 #if 1
2918           if (dq.count)
2919             {
2920               Map dqmap;
2921               int decisioncount;
2922
2923               if (dq.count == 1)
2924                 {
2925                   /* simple case, just one package. no need to choose  */
2926                   p = dq.elements[0];
2927                   if (dqs.count)
2928                     POOL_DEBUG(SAT_DEBUG_POLICY, "installing supplemented %s\n", solvable2str(pool, pool->solvables + p));
2929                   else
2930                     POOL_DEBUG(SAT_DEBUG_POLICY, "installing recommended %s\n", solvable2str(pool, pool->solvables + p));
2931                   queue_push(&solv->recommendations, p);
2932                   level = setpropagatelearn(solv, level, p, 0);
2933                   continue;
2934                 }
2935
2936               /* filter and create a map of result */
2937               policy_filter_unwanted(solv, &dq, POLICY_MODE_RECOMMEND);
2938               map_init(&dqmap, pool->nsolvables);
2939               for (i = 0; i < dq.count; i++)
2940                 MAPSET(&dqmap, dq.elements[i]);
2941
2942               /* install all supplemented packages */
2943               for (i = 0; i < dqs.count; i++)
2944                 {
2945                   p = dqs.elements[i];
2946                   if (solv->decisionmap[p] || !MAPTST(&dqmap, p))
2947                     continue;
2948                   POOL_DEBUG(SAT_DEBUG_POLICY, "installing supplemented %s\n", solvable2str(pool, pool->solvables + p));
2949                   queue_push(&solv->recommendations, p);
2950                   olevel = level;
2951                   level = setpropagatelearn(solv, level, p, 0);
2952                   if (level <= olevel)
2953                     break;
2954                 }
2955               if (i < dqs.count)
2956                 {
2957                   map_free(&dqmap);
2958                   continue;
2959                 }
2960
2961               /* install all recommended packages */
2962               /* more work as we want to created branches if multiple
2963                * choices are valid */
2964               decisioncount = solv->decisionq.count;
2965               for (i = 0; i < decisioncount; i++)
2966                 {
2967                   Id rec, *recp, pp;
2968                   p = solv->decisionq.elements[i];
2969                   if (p < 0)
2970                     continue;
2971                   s = pool->solvables + p;
2972                   if (!s->repo || (solv->ignorealreadyrecommended && s->repo == solv->installed))
2973                     continue;
2974                   if (!s->recommends)
2975                     continue;
2976                   recp = s->repo->idarraydata + s->recommends;
2977                   while ((rec = *recp++) != 0)
2978                     {
2979                       queue_empty(&dq);
2980                       FOR_PROVIDES(p, pp, rec)
2981                         {
2982                           if (solv->decisionmap[p] > 0)
2983                             {
2984                               dq.count = 0;
2985                               break;
2986                             }
2987                           else if (solv->decisionmap[p] == 0 && MAPTST(&dqmap, p))
2988                             queue_pushunique(&dq, p);
2989                         }
2990                       if (!dq.count)
2991                         continue;
2992                       if (dq.count > 1)
2993                         {
2994                           /* multiple candidates, open a branch */
2995                           for (i = 1; i < dq.count; i++)
2996                             queue_push(&solv->branches, dq.elements[i]);
2997                           queue_push(&solv->branches, -level);
2998                         }
2999                       p = dq.elements[0];
3000                       POOL_DEBUG(SAT_DEBUG_POLICY, "installing recommended %s\n", solvable2str(pool, pool->solvables + p));
3001                       queue_push(&solv->recommendations, p);
3002                       olevel = level;
3003                       level = setpropagatelearn(solv, level, p, 0);
3004                       if (level <= olevel || solv->decisionq.count < decisioncount)
3005                         break;
3006                     }
3007                   if (rec)
3008                     break;      /* had a problem above, quit loop */
3009                 }
3010               map_free(&dqmap);
3011               continue;
3012             }
3013 #else
3014           if (dq.count)
3015             {
3016               if (dq.count > 1)
3017                 policy_filter_unwanted(solv, &dq, POLICY_MODE_RECOMMEND);
3018               p = dq.elements[0];
3019               /* prefer recommended patterns (bnc#450226) */
3020               /* real fix is to minimize recommended packages as well */
3021               for (i = 0; i < dq.count; i++)
3022                 if (!strncmp(id2str(pool, pool->solvables[dq.elements[i]].name), "pattern:", 8))
3023                   {
3024                     p = dq.elements[i];
3025                     break;
3026                   }
3027               POOL_DEBUG(SAT_DEBUG_POLICY, "installing recommended %s\n", solvable2str(pool, pool->solvables + p));
3028               queue_push(&solv->recommendations, p);
3029               level = setpropagatelearn(solv, level, p, 0);
3030               continue;
3031             }
3032 #endif
3033         }
3034
3035      if (solv->distupgrade && solv->installed)
3036         {
3037           /* let's see if we can install some unsupported package */
3038           POOL_DEBUG(SAT_DEBUG_STATS, "deciding unsupported packages\n");
3039           for (i = 0; i < solv->orphaned.count; i++)
3040             {
3041               p = solv->orphaned.elements[i];
3042               if (!solv->decisionmap[p])
3043                 break;
3044             }
3045           if (i < solv->orphaned.count)
3046             {
3047               p = solv->orphaned.elements[i];
3048               if (solv->distupgrade_removeunsupported)
3049                 {
3050                   POOL_DEBUG(SAT_DEBUG_STATS, "removing unsupported %s\n", solvable2str(pool, pool->solvables + p));
3051                   level = setpropagatelearn(solv, level, -p, 0);
3052                 }
3053               else
3054                 {
3055                   POOL_DEBUG(SAT_DEBUG_STATS, "keeping unsupported %s\n", solvable2str(pool, pool->solvables + p));
3056                   level = setpropagatelearn(solv, level, p, 0);
3057                 }
3058               continue;
3059             }
3060         }
3061
3062      if (solv->solution_callback)
3063         {
3064           solv->solution_callback(solv, solv->solution_callback_data);
3065           if (solv->branches.count)
3066             {
3067               int i = solv->branches.count - 1;
3068               int l = -solv->branches.elements[i];
3069               for (; i > 0; i--)
3070                 if (solv->branches.elements[i - 1] < 0)
3071                   break;
3072               p = solv->branches.elements[i];
3073               POOL_DEBUG(SAT_DEBUG_STATS, "branching with %s\n", solvable2str(pool, pool->solvables + p));
3074               queue_empty(&dq);
3075               for (j = i + 1; j < solv->branches.count; j++)
3076                 queue_push(&dq, solv->branches.elements[j]);
3077               solv->branches.count = i;
3078               level = l;
3079               revert(solv, level);
3080               if (dq.count > 1)
3081                 for (j = 0; j < dq.count; j++)
3082                   queue_push(&solv->branches, dq.elements[j]);
3083               olevel = level;
3084               level = setpropagatelearn(solv, level, p, disablerules);
3085               if (level == 0)
3086                 {
3087                   queue_free(&dq);
3088                   queue_free(&dqs);
3089                   return;
3090                 }
3091               continue;
3092             }
3093           /* all branches done, we're finally finished */
3094           break;
3095         }
3096
3097       /* minimization step */
3098      if (solv->branches.count)
3099         {
3100           int l = 0, lasti = -1, lastl = -1;
3101           p = 0;
3102           for (i = solv->branches.count - 1; i >= 0; i--)
3103             {
3104               p = solv->branches.elements[i];
3105               if (p < 0)
3106                 l = -p;
3107               else if (p > 0 && solv->decisionmap[p] > l + 1)
3108                 {
3109                   lasti = i;
3110                   lastl = l;
3111                 }
3112             }
3113           if (lasti >= 0)
3114             {
3115               /* kill old solvable so that we do not loop */
3116               p = solv->branches.elements[lasti];
3117               solv->branches.elements[lasti] = 0;
3118               POOL_DEBUG(SAT_DEBUG_STATS, "minimizing %d -> %d with %s\n", solv->decisionmap[p], lastl, solvable2str(pool, pool->solvables + p));
3119               minimizationsteps++;
3120
3121               level = lastl;
3122               revert(solv, level);
3123               olevel = level;
3124               level = setpropagatelearn(solv, level, p, disablerules);
3125               if (level == 0)
3126                 {
3127                   queue_free(&dq);
3128                   queue_free(&dqs);
3129                   return;
3130                 }
3131               continue;
3132             }
3133         }
3134       break;
3135     }
3136   POOL_DEBUG(SAT_DEBUG_STATS, "solver statistics: %d learned rules, %d unsolvable, %d minimization steps\n", solv->stats_learned, solv->stats_unsolvable, minimizationsteps);
3137
3138   POOL_DEBUG(SAT_DEBUG_STATS, "done solving.\n\n");
3139   queue_free(&dq);
3140   queue_free(&dqs);
3141 }
3142
3143
3144 /*-------------------------------------------------------------------
3145  * 
3146  * refine_suggestion
3147  * 
3148  * at this point, all rules that led to conflicts are disabled.
3149  * we re-enable all rules of a problem set but rule "sug", then
3150  * continue to disable more rules until there as again a solution.
3151  */
3152
3153 /* FIXME: think about conflicting assertions */
3154
3155 static void
3156 refine_suggestion(Solver *solv, Queue *job, Id *problem, Id sug, Queue *refined)
3157 {
3158   Pool *pool = solv->pool;
3159   int i, j;
3160   Id v;
3161   Queue disabled;
3162   int disabledcnt;
3163
3164   IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
3165     {
3166       POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "refine_suggestion start\n");
3167       for (i = 0; problem[i]; i++)
3168         {
3169           if (problem[i] == sug)
3170             POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "=> ");
3171           solver_printproblem(solv, problem[i]);
3172         }
3173     }
3174   queue_init(&disabled);
3175   queue_empty(refined);
3176   queue_push(refined, sug);
3177
3178   /* re-enable all problem rules with the exception of "sug"(gestion) */
3179   revert(solv, 1);
3180   reset_solver(solv);
3181
3182   for (i = 0; problem[i]; i++)
3183     if (problem[i] != sug)
3184       enableproblem(solv, problem[i]);
3185
3186   if (sug < 0)
3187     disableupdaterules(solv, job, -(sug + 1));
3188   else if (sug >= solv->updaterules && sug < solv->updaterules_end)
3189     {
3190       /* enable feature rule */
3191       Rule *r = solv->rules + solv->featurerules + (sug - solv->updaterules);
3192       if (r->p)
3193         enablerule(solv, r);
3194     }
3195
3196   enableweakrules(solv);
3197
3198   for (;;)
3199     {
3200       int njob, nfeature, nupdate;
3201       queue_empty(&solv->problems);
3202       revert(solv, 1);          /* XXX no longer needed? */
3203       reset_solver(solv);
3204
3205       if (!solv->problems.count)
3206         run_solver(solv, 0, 0);
3207
3208       if (!solv->problems.count)
3209         {
3210           POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "no more problems!\n");
3211           IF_POOLDEBUG (SAT_DEBUG_SCHUBI)
3212             solver_printdecisions(solv);
3213           break;                /* great, no more problems */
3214         }
3215       disabledcnt = disabled.count;
3216       /* start with 1 to skip over proof index */
3217       njob = nfeature = nupdate = 0;
3218       for (i = 1; i < solv->problems.count - 1; i++)
3219         {
3220           /* ignore solutions in refined */
3221           v = solv->problems.elements[i];
3222           if (v == 0)
3223             break;      /* end of problem reached */
3224           for (j = 0; problem[j]; j++)
3225             if (problem[j] != sug && problem[j] == v)
3226               break;
3227           if (problem[j])
3228             continue;
3229           if (v >= solv->featurerules && v < solv->featurerules_end)
3230             nfeature++;
3231           else if (v > 0)
3232             nupdate++;
3233           else
3234             {
3235               if ((job->elements[-v -1] & SOLVER_ESSENTIAL) != 0)
3236                 continue;       /* not that one! */
3237               njob++;
3238             }
3239           queue_push(&disabled, v);
3240         }
3241       if (disabled.count == disabledcnt)
3242         {
3243           /* no solution found, this was an invalid suggestion! */
3244           POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "no solution found!\n");
3245           refined->count = 0;
3246           break;
3247         }
3248       if (!njob && nupdate && nfeature)
3249         {
3250           /* got only update rules, filter out feature rules */
3251           POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "throwing away feature rules\n");
3252           for (i = j = disabledcnt; i < disabled.count; i++)
3253             {
3254               v = disabled.elements[i];
3255               if (v < solv->featurerules || v >= solv->featurerules_end)
3256                 disabled.elements[j++] = v;
3257             }
3258           disabled.count = j;
3259           nfeature = 0;
3260         }
3261       if (disabled.count == disabledcnt + 1)
3262         {
3263           /* just one suggestion, add it to refined list */
3264           v = disabled.elements[disabledcnt];
3265           if (!nfeature)
3266             queue_push(refined, v);     /* do not record feature rules */
3267           disableproblem(solv, v);
3268           if (v >= solv->updaterules && v < solv->updaterules_end)
3269             {
3270               Rule *r = solv->rules + (v - solv->updaterules + solv->featurerules);
3271               if (r->p)
3272                 enablerule(solv, r);    /* enable corresponding feature rule */
3273             }
3274           if (v < 0)
3275             disableupdaterules(solv, job, -(v + 1));
3276         }
3277       else
3278         {
3279           /* more than one solution, disable all */
3280           /* do not push anything on refine list, as we do not know which solution to choose */
3281           /* thus, the user will get another problem if he selects this solution, where he
3282            * can choose the right one */
3283           IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
3284             {
3285               POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "more than one solution found:\n");
3286               for (i = disabledcnt; i < disabled.count; i++)
3287                 solver_printproblem(solv, disabled.elements[i]);
3288             }
3289           for (i = disabledcnt; i < disabled.count; i++)
3290             {
3291               v = disabled.elements[i];
3292               disableproblem(solv, v);
3293               if (v >= solv->updaterules && v < solv->updaterules_end)
3294                 {
3295                   Rule *r = solv->rules + (v - solv->updaterules + solv->featurerules);
3296                   if (r->p)
3297                     enablerule(solv, r);
3298                 }
3299             }
3300         }
3301     }
3302   /* all done, get us back into the same state as before */
3303   /* enable refined rules again */
3304   for (i = 0; i < disabled.count; i++)
3305     enableproblem(solv, disabled.elements[i]);
3306   /* disable problem rules again */
3307
3308   /* FIXME! */
3309   for (i = 0; problem[i]; i++)
3310     enableproblem(solv, problem[i]);
3311   disableupdaterules(solv, job, -1);
3312
3313   /* disable problem rules again */
3314   for (i = 0; problem[i]; i++)
3315     disableproblem(solv, problem[i]);
3316   POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "refine_suggestion end\n");
3317 }
3318
3319
3320 /*-------------------------------------------------------------------
3321  * sorting helper for problems
3322  *
3323  * bring update rules before job rules
3324  * make essential job rules last
3325  */
3326
3327 Queue *problems_sort_data;
3328
3329 static int
3330 problems_sortcmp(const void *ap, const void *bp)
3331 {
3332   Id a = *(Id *)ap, b = *(Id *)bp;
3333   if (a < 0 && b > 0)
3334     return 1;
3335   if (a > 0 && b < 0)
3336     return -1;
3337   if (a < 0 && b < 0)
3338     {
3339       Queue *job = problems_sort_data;
3340       int af = job->elements[-a - 1] & SOLVER_ESSENTIAL;
3341       int bf = job->elements[-b - 1] & SOLVER_ESSENTIAL;
3342       int x = af - bf;
3343       if (x)
3344         return x;
3345     }
3346   return a - b;
3347 }
3348
3349
3350 /*-------------------------------------------------------------------
3351  * sort problems
3352  */
3353
3354 static void
3355 problems_sort(Solver *solv, Queue *job)
3356 {
3357   int i, j;
3358   if (!solv->problems.count)
3359     return;
3360   for (i = j = 1; i < solv->problems.count; i++)
3361     {
3362       if (!solv->problems.elements[i])
3363         {
3364           if (i > j + 1)
3365             {
3366               problems_sort_data = job;
3367               qsort(solv->problems.elements + j, i - j, sizeof(Id), problems_sortcmp);
3368             }
3369           if (++i == solv->problems.count)
3370             break;
3371           j = i + 1;
3372         }
3373     }
3374 }
3375
3376
3377 /*-------------------------------------------------------------------
3378  * convert problems to solutions
3379  */
3380
3381 static void
3382 problems_to_solutions(Solver *solv, Queue *job)
3383 {
3384   Pool *pool = solv->pool;
3385   Queue problems;
3386   Queue solution;
3387   Queue solutions;
3388   Id *problem;
3389   Id why;
3390   int i, j, nsol, probsolved;
3391   unsigned int now, refnow;
3392
3393   if (!solv->problems.count)
3394     return;
3395   now = sat_timems(0);
3396   problems_sort(solv, job);
3397   queue_clone(&problems, &solv->problems);
3398   queue_init(&solution);
3399   queue_init(&solutions);
3400   /* copy over proof index */
3401   queue_push(&solutions, problems.elements[0]);
3402   problem = problems.elements + 1;
3403   probsolved = 0;
3404   refnow = sat_timems(0);
3405   for (i = 1; i < problems.count; i++)
3406     {
3407       Id v = problems.elements[i];
3408       if (v == 0)
3409         {
3410           /* mark end of this problem */
3411           queue_push(&solutions, 0);
3412           queue_push(&solutions, 0);
3413           POOL_DEBUG(SAT_DEBUG_STATS, "refining took %d ms\n", sat_timems(refnow));
3414           if (i + 1 == problems.count)
3415             break;
3416           /* copy over proof of next problem */
3417           queue_push(&solutions, problems.elements[i + 1]);
3418           i++;
3419           problem = problems.elements + i + 1;
3420           refnow = sat_timems(0);
3421           probsolved = 0;
3422           continue;
3423         }
3424       if (v < 0 && (job->elements[-v - 1] & SOLVER_ESSENTIAL))
3425         {
3426           /* essential job, skip if we already have a non-essential
3427              solution */
3428           if (probsolved > 0)
3429             continue;
3430           probsolved = -1;      /* show all solutions */
3431         }
3432       refine_suggestion(solv, job, problem, v, &solution);
3433       if (!solution.count)
3434         continue;       /* this solution didn't work out */
3435
3436       nsol = 0;
3437       for (j = 0; j < solution.count; j++)
3438         {
3439           why = solution.elements[j];
3440           /* must be either job descriptor or update rule */
3441           assert(why < 0 || (why >= solv->updaterules && why < solv->updaterules_end));
3442 #if 0
3443           solver_printproblem(solv, why);
3444 #endif
3445           if (why < 0)
3446             {
3447               /* job descriptor */
3448               queue_push(&solutions, 0);
3449               queue_push(&solutions, -why);
3450             }
3451           else
3452             {
3453               /* update rule, find replacement package */
3454               Id p, *dp, rp = 0;
3455               Rule *rr;
3456               p = solv->installed->start + (why - solv->updaterules);
3457               rr = solv->rules + solv->featurerules + (why - solv->updaterules);
3458               if (!rr->p)
3459                 rr = solv->rules + why;
3460               if (solv->distupgrade && solv->rules[why].p != p && solv->decisionmap[p] > 0)
3461                 {
3462                   /* distupgrade case, allow to keep old package */
3463                   queue_push(&solutions, p);
3464                   queue_push(&solutions, p);
3465                   nsol++;
3466                   continue;
3467                 }
3468               if (solv->decisionmap[p] > 0)
3469                 continue;       /* false alarm, turned out we can keep the package */
3470               if (rr->w2)
3471                 {
3472                   int mvrp = 0;         /* multi-version replacement */
3473                   FOR_RULELITERALS(rp, dp, rr)
3474                     {
3475                       if (rp > 0 && solv->decisionmap[rp] > 0 && pool->solvables[rp].repo != solv->installed)
3476                         {
3477                           mvrp = rp;
3478                           if (!(solv->noobsoletes.size && MAPTST(&solv->noobsoletes, rp)))
3479                             break;
3480                         }
3481                     }
3482                   if (!rp && mvrp)
3483                     {
3484                       /* found only multi-version replacements */
3485                       /* have to split solution into two parts */
3486                       queue_push(&solutions, p);
3487                       queue_push(&solutions, mvrp);
3488                       nsol++;
3489                     }
3490                 }
3491               queue_push(&solutions, p);
3492               queue_push(&solutions, rp);
3493             }
3494           nsol++;
3495         }
3496       /* mark end of this solution */
3497       if (nsol)
3498         {
3499           if (!probsolved)
3500             probsolved = 1;
3501           queue_push(&solutions, 0);
3502           queue_push(&solutions, 0);
3503         }
3504       else
3505         {
3506           POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "Oops, everything was fine?\n");
3507         }
3508     }
3509   queue_free(&solution);
3510   queue_free(&problems);
3511   /* copy queue over to solutions */
3512   queue_free(&solv->problems);
3513   queue_clone(&solv->problems, &solutions);
3514
3515   /* bring solver back into problem state */
3516   revert(solv, 1);              /* XXX move to reset_solver? */
3517   reset_solver(solv);
3518
3519   assert(solv->problems.count == solutions.count);
3520   queue_free(&solutions);
3521   POOL_DEBUG(SAT_DEBUG_STATS, "problems_to_solutions took %d ms\n", sat_timems(now));
3522 }
3523
3524
3525 /*-------------------------------------------------------------------
3526  * 
3527  * problem iterator
3528  * 
3529  * advance to next problem
3530  */
3531
3532 Id
3533 solver_next_problem(Solver *solv, Id problem)
3534 {
3535   Id *pp;
3536   if (problem == 0)
3537     return solv->problems.count ? 1 : 0;
3538   pp = solv->problems.elements + problem;
3539   while (pp[0] || pp[1])
3540     {
3541       /* solution */
3542       pp += 2;
3543       while (pp[0] || pp[1])
3544         pp += 2;
3545       pp += 2;
3546     }
3547   pp += 2;
3548   problem = pp - solv->problems.elements;
3549   if (problem >= solv->problems.count)
3550     return 0;
3551   return problem + 1;
3552 }
3553
3554
3555 /*-------------------------------------------------------------------
3556  * 
3557  * solution iterator
3558  */
3559
3560 Id
3561 solver_next_solution(Solver *solv, Id problem, Id solution)
3562 {
3563   Id *pp;
3564   if (solution == 0)
3565     {
3566       solution = problem;
3567       pp = solv->problems.elements + solution;
3568       return pp[0] || pp[1] ? solution : 0;
3569     }
3570   pp = solv->problems.elements + solution;
3571   while (pp[0] || pp[1])
3572     pp += 2;
3573   pp += 2;
3574   solution = pp - solv->problems.elements;
3575   return pp[0] || pp[1] ? solution : 0;
3576 }
3577
3578
3579 /*-------------------------------------------------------------------
3580  * 
3581  * solution element iterator
3582  */
3583
3584 Id
3585 solver_next_solutionelement(Solver *solv, Id problem, Id solution, Id element, Id *p, Id *rp)
3586 {
3587   Id *pp;
3588   element = element ? element + 2 : solution;
3589   pp = solv->problems.elements + element;
3590   if (!(pp[0] || pp[1]))
3591     return 0;
3592   *p = pp[0];
3593   *rp = pp[1];
3594   return element;
3595 }
3596
3597
3598 /*-------------------------------------------------------------------
3599  * 
3600  * Retrieve information about a problematic rule
3601  *
3602  * this is basically the reverse of addrpmrulesforsolvable
3603  */
3604
3605 SolverProbleminfo
3606 solver_problemruleinfo(Solver *solv, Queue *job, Id rid, Id *depp, Id *sourcep, Id *targetp)
3607 {
3608   Pool *pool = solv->pool;
3609   Repo *installed = solv->installed;
3610   Rule *r;
3611   Solvable *s;
3612   int dontfix = 0;
3613   Id p, d, w2, pp, req, *reqp, con, *conp, obs, *obsp, *dp;
3614
3615   assert(rid > 0);
3616   if (rid >= solv->jobrules && rid < solv->jobrules_end)
3617     {
3618
3619       r = solv->rules + rid;
3620       p = solv->ruletojob.elements[rid - solv->jobrules];
3621       *depp = job->elements[p + 1];
3622       *sourcep = p;
3623       *targetp = job->elements[p];
3624       d = r->d < 0 ? -r->d - 1 : r->d;
3625       if (d == 0 && r->w2 == 0 && r->p == -SYSTEMSOLVABLE && (job->elements[p] & SOLVER_SELECTMASK) != SOLVER_SOLVABLE_ONE_OF)
3626         return SOLVER_PROBLEM_JOB_NOTHING_PROVIDES_DEP;
3627       return SOLVER_PROBLEM_JOB_RULE;
3628     }
3629   if (rid >= solv->updaterules && rid < solv->updaterules_end)
3630     {
3631       *depp = 0;
3632       *sourcep = solv->installed->start + (rid - solv->updaterules);
3633       *targetp = 0;
3634       return SOLVER_PROBLEM_UPDATE_RULE;
3635     }
3636   assert(rid < solv->rpmrules_end);
3637   r = solv->rules + rid;
3638   assert(r->p < 0);
3639   d = r->d < 0 ? -r->d - 1 : r->d;
3640   if (d == 0 && r->w2 == 0)
3641     {
3642       /* a rpm rule assertion */
3643       s = pool->solvables - r->p;
3644       if (installed && !solv->fixsystem && s->repo == installed)
3645         dontfix = 1;
3646       assert(!dontfix); /* dontfix packages never have a neg assertion */
3647       *sourcep = -r->p;
3648       *targetp = 0;
3649       /* see why the package is not installable */
3650       if (s->arch != ARCH_SRC && s->arch != ARCH_NOSRC && !pool_installable(pool, s))
3651         {
3652           *depp = 0;
3653           return SOLVER_PROBLEM_NOT_INSTALLABLE;
3654         }
3655       /* check requires */
3656       if (s->requires)
3657         {
3658           reqp = s->repo->idarraydata + s->requires;
3659           while ((req = *reqp++) != 0)
3660             {
3661               if (req == SOLVABLE_PREREQMARKER)
3662                 continue;
3663               dp = pool->whatprovidesdata + pool_whatprovides(pool, req);
3664               if (*dp == 0)
3665                 break;
3666             }
3667           if (req)
3668             {
3669               *depp = req;
3670               return SOLVER_PROBLEM_NOTHING_PROVIDES_DEP;
3671             }
3672         }
3673       if (!solv->allowselfconflicts && s->conflicts)
3674         {
3675           conp = s->repo->idarraydata + s->conflicts;
3676           while ((con = *conp++) != 0)
3677             FOR_PROVIDES(p, pp, con)
3678               if (p == -r->p)
3679                 {
3680                   *depp = con;
3681                   return SOLVER_PROBLEM_SELF_CONFLICT;
3682                 }
3683         }
3684       /* should never happen */
3685       *depp = 0;
3686       return SOLVER_PROBLEM_RPM_RULE;
3687     }
3688   s = pool->solvables - r->p;
3689   if (installed && !solv->fixsystem && s->repo == installed)
3690     dontfix = 1;
3691   w2 = r->w2;
3692   if (d && pool->whatprovidesdata[d] < 0)
3693     {
3694       /* rule looks like -p|-c|x|x|x..., we only create this for patches with multiversion */
3695       /* reduce it to -p|-c case */
3696       w2 = pool->whatprovidesdata[d];
3697     }
3698   if (d == 0 && w2 < 0)
3699     {
3700       /* a package conflict */
3701       Solvable *s2 = pool->solvables - w2;
3702       int dontfix2 = 0;
3703
3704       if (installed && !solv->fixsystem && s2->repo == installed)
3705         dontfix2 = 1;
3706
3707       /* if both packages have the same name and at least one of them
3708        * is not installed, they conflict */
3709       if (s->name == s2->name && !(installed && s->repo == installed && s2->repo == installed))
3710         {
3711           /* also check noobsoletes map */
3712           if ((s->evr == s2->evr && s->arch == s2->arch) || !solv->noobsoletes.size
3713                 || ((!installed || s->repo != installed) && !MAPTST(&solv->noobsoletes, -r->p))
3714                 || ((!installed || s2->repo != installed) && !MAPTST(&solv->noobsoletes, -w2)))
3715             {
3716               *depp = 0;
3717               *sourcep = -r->p;
3718               *targetp = -w2;
3719               return SOLVER_PROBLEM_SAME_NAME;
3720             }
3721         }
3722
3723       /* check conflicts in both directions */
3724       if (s->conflicts)
3725         {
3726           conp = s->repo->idarraydata + s->conflicts;
3727           while ((con = *conp++) != 0)
3728             {
3729               FOR_PROVIDES(p, pp, con)
3730                 {
3731                   if (dontfix && pool->solvables[p].repo == installed)
3732                     continue;
3733                   if (p != -w2)
3734                     continue;
3735                   *depp = con;
3736                   *sourcep = -r->p;
3737                   *targetp = p;
3738                   return SOLVER_PROBLEM_PACKAGE_CONFLICT;
3739                 }
3740             }
3741         }
3742       if (s2->conflicts)
3743         {
3744           conp = s2->repo->idarraydata + s2->conflicts;
3745           while ((con = *conp++) != 0)
3746             {
3747               FOR_PROVIDES(p, pp, con)
3748                 {
3749                   if (dontfix2 && pool->solvables[p].repo == installed)
3750                     continue;
3751                   if (p != -r->p)
3752                     continue;
3753                   *depp = con;
3754                   *sourcep = -w2;
3755                   *targetp = p;
3756                   return SOLVER_PROBLEM_PACKAGE_CONFLICT;
3757                 }
3758             }
3759         }
3760       /* check obsoletes in both directions */
3761       if ((!installed || s->repo != installed) && s->obsoletes && !(solv->noobsoletes.size && MAPTST(&solv->noobsoletes, -r->p)))
3762         {
3763           obsp = s->repo->idarraydata + s->obsoletes;
3764           while ((obs = *obsp++) != 0)
3765             {
3766               FOR_PROVIDES(p, pp, obs)
3767                 {
3768                   if (p != -w2)
3769                     continue;
3770                   if (!solv->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p, obs))
3771                     continue;
3772                   *depp = obs;
3773                   *sourcep = -r->p;
3774                   *targetp = p;
3775                   return SOLVER_PROBLEM_PACKAGE_OBSOLETES;
3776                 }
3777             }
3778         }
3779       if ((!installed || s2->repo != installed) && s2->obsoletes && !(solv->noobsoletes.size && MAPTST(&solv->noobsoletes, -w2)))
3780         {
3781           obsp = s2->repo->idarraydata + s2->obsoletes;
3782           while ((obs = *obsp++) != 0)
3783             {
3784               FOR_PROVIDES(p, pp, obs)
3785                 {
3786                   if (p != -r->p)
3787                     continue;
3788                   if (!solv->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p, obs))
3789                     continue;
3790                   *depp = obs;
3791                   *sourcep = -w2;
3792                   *targetp = p;
3793                   return SOLVER_PROBLEM_PACKAGE_OBSOLETES;
3794                 }
3795             }
3796         }
3797       if (solv->implicitobsoleteusesprovides && (!installed || s->repo != installed) && !(solv->noobsoletes.size && MAPTST(&solv->noobsoletes, -r->p)))
3798         {
3799           FOR_PROVIDES(p, pp, s->name)
3800             {
3801               if (p != -w2)
3802                 continue;
3803               *depp = s->name;
3804               *sourcep = -r->p;
3805               *targetp = p;
3806               return SOLVER_PROBLEM_PACKAGE_OBSOLETES;
3807             }
3808         }
3809       if (solv->implicitobsoleteusesprovides && (!installed || s2->repo != installed) && !(solv->noobsoletes.size && MAPTST(&solv->noobsoletes, -w2)))
3810         {
3811           FOR_PROVIDES(p, pp, s2->name)
3812             {
3813               if (p != -r->p)
3814                 continue;
3815               *depp = s2->name;
3816               *sourcep = -w2;
3817               *targetp = p;
3818               return SOLVER_PROBLEM_PACKAGE_OBSOLETES;
3819             }
3820         }
3821       /* all cases checked, can't happen */
3822       *depp = 0;
3823       *sourcep = -r->p;
3824       *targetp = 0;
3825       return SOLVER_PROBLEM_RPM_RULE;
3826     }
3827   /* simple requires */
3828   if (s->requires)
3829     {
3830       reqp = s->repo->idarraydata + s->requires;
3831       while ((req = *reqp++) != 0)
3832         {
3833           if (req == SOLVABLE_PREREQMARKER)
3834             continue;
3835           dp = pool->whatprovidesdata + pool_whatprovides(pool, req);
3836           if (d == 0)
3837             {
3838               if (*dp == r->w2 && dp[1] == 0)
3839                 break;
3840             }
3841           else if (dp - pool->whatprovidesdata == d)
3842             break;
3843         }
3844       if (req)
3845         {
3846           *depp = req;
3847           *sourcep = -r->p;
3848           *targetp = 0;
3849           return SOLVER_PROBLEM_DEP_PROVIDERS_NOT_INSTALLABLE;
3850         }
3851     }
3852   /* all cases checked, can't happen */
3853   *depp = 0;
3854   *sourcep = -r->p;
3855   *targetp = 0;
3856   return SOLVER_PROBLEM_RPM_RULE;
3857 }
3858
3859
3860 /*-------------------------------------------------------------------
3861  * 
3862  * find problem rule
3863  */
3864
3865 static void
3866 findproblemrule_internal(Solver *solv, Id idx, Id *reqrp, Id *conrp, Id *sysrp, Id *jobrp)
3867 {
3868   Id rid, d;
3869   Id lreqr, lconr, lsysr, ljobr;
3870   Rule *r;
3871   int reqassert = 0;
3872
3873   lreqr = lconr = lsysr = ljobr = 0;
3874   while ((rid = solv->learnt_pool.elements[idx++]) != 0)
3875     {
3876       assert(rid > 0);
3877       if (rid >= solv->learntrules)
3878         findproblemrule_internal(solv, solv->learnt_why.elements[rid - solv->learntrules], &lreqr, &lconr, &lsysr, &ljobr);
3879       else if (rid >= solv->jobrules && rid < solv->jobrules_end)
3880         {
3881           if (!*jobrp)
3882             *jobrp = rid;
3883         }
3884       else if (rid >= solv->updaterules && rid < solv->updaterules_end)
3885         {
3886           if (!*sysrp)
3887             *sysrp = rid;
3888         }
3889       else
3890         {
3891           assert(rid < solv->rpmrules_end);
3892           r = solv->rules + rid;
3893           d = r->d < 0 ? -r->d - 1 : r->d;
3894           if (!d && r->w2 < 0)
3895             {
3896               if (!*conrp)
3897                 *conrp = rid;
3898             }
3899           else
3900             {
3901               if (!d && r->w2 == 0 && !reqassert)
3902                 {
3903                   if (*reqrp > 0 && r->p < -1)
3904                     {
3905                       Id op = -solv->rules[*reqrp].p;
3906                       if (op > 1 && solv->pool->solvables[op].arch != solv->pool->solvables[-r->p].arch)
3907                         continue;       /* different arch, skip */
3908                     }
3909                   /* prefer assertions */
3910                   *reqrp = rid;
3911                   reqassert = 1;
3912                 }
3913               if (!*reqrp)
3914                 *reqrp = rid;
3915               else if (solv->installed && r->p < 0 && solv->pool->solvables[-r->p].repo == solv->installed && !reqassert)
3916                 {
3917                   /* prefer rules of installed packages */
3918                   *reqrp = rid;
3919                 }
3920             }
3921         }
3922     }
3923   if (!*reqrp && lreqr)
3924     *reqrp = lreqr;
3925   if (!*conrp && lconr)
3926     *conrp = lconr;
3927   if (!*jobrp && ljobr)
3928     *jobrp = ljobr;
3929   if (!*sysrp && lsysr)
3930     *sysrp = lsysr;
3931 }
3932
3933
3934 /*-------------------------------------------------------------------
3935  * 
3936  * find problem rule
3937  *
3938  * search for a rule that describes the problem to the
3939  * user. A pretty hopeless task, actually. We currently
3940  * prefer simple requires.
3941  */
3942
3943 Id
3944 solver_findproblemrule(Solver *solv, Id problem)
3945 {
3946   Id reqr, conr, sysr, jobr;
3947   Id idx = solv->problems.elements[problem - 1];
3948   reqr = conr = sysr = jobr = 0;
3949   findproblemrule_internal(solv, idx, &reqr, &conr, &sysr, &jobr);
3950   if (reqr)
3951     return reqr;
3952   if (conr)
3953     return conr;
3954   if (sysr)
3955     return sysr;
3956   if (jobr)
3957     return jobr;
3958   assert(0);
3959 }
3960
3961
3962 /*-------------------------------------------------------------------
3963  * 
3964  * create reverse obsoletes map for installed solvables
3965  *
3966  * for each installed solvable find which packages with *different* names
3967  * obsolete the solvable.
3968  * this index is used in policy_findupdatepackages if noupdateprovide is set.
3969  */
3970
3971 static void
3972 create_obsolete_index(Solver *solv)
3973 {
3974   Pool *pool = solv->pool;
3975   Solvable *s;
3976   Repo *installed = solv->installed;
3977   Id p, pp, obs, *obsp, *obsoletes, *obsoletes_data;
3978   int i, n;
3979
3980   if (!installed || !installed->nsolvables)
3981     return;
3982   solv->obsoletes = obsoletes = sat_calloc(installed->end - installed->start, sizeof(Id));
3983   for (i = 1; i < pool->nsolvables; i++)
3984     {
3985       s = pool->solvables + i;
3986       if (!s->obsoletes)
3987         continue;
3988       if (!pool_installable(pool, s))
3989         continue;
3990       obsp = s->repo->idarraydata + s->obsoletes;
3991       while ((obs = *obsp++) != 0)
3992         {
3993           FOR_PROVIDES(p, pp, obs)
3994             {
3995               if (pool->solvables[p].repo != installed)
3996                 continue;
3997               if (pool->solvables[p].name == s->name)
3998                 continue;
3999               if (!solv->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p, obs))
4000                 continue;
4001               obsoletes[p - installed->start]++;
4002             }
4003         }
4004     }
4005   n = 0;
4006   for (i = 0; i < installed->nsolvables; i++)
4007     if (obsoletes[i])
4008       {
4009         n += obsoletes[i] + 1;
4010         obsoletes[i] = n;
4011       }
4012   solv->obsoletes_data = obsoletes_data = sat_calloc(n + 1, sizeof(Id));
4013   POOL_DEBUG(SAT_DEBUG_STATS, "obsoletes data: %d entries\n", n + 1);
4014   for (i = pool->nsolvables - 1; i > 0; i--)
4015     {
4016       s = pool->solvables + i;
4017       if (!s->obsoletes)
4018         continue;
4019       if (!pool_installable(pool, s))
4020         continue;
4021       obsp = s->repo->idarraydata + s->obsoletes;
4022       while ((obs = *obsp++) != 0)
4023         {
4024           FOR_PROVIDES(p, pp, obs)
4025             {
4026               if (pool->solvables[p].repo != installed)
4027                 continue;
4028               if (pool->solvables[p].name == s->name)
4029                 continue;
4030               if (!solv->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p, obs))
4031                 continue;
4032               p -= installed->start;
4033               if (obsoletes_data[obsoletes[p]] != i)
4034                 obsoletes_data[--obsoletes[p]] = i;
4035             }
4036         }
4037     }
4038 }
4039
4040
4041 /*-------------------------------------------------------------------
4042  * 
4043  * remove disabled conflicts
4044  */
4045
4046 static void
4047 removedisabledconflicts(Solver *solv, Queue *removed)
4048 {
4049   Pool *pool = solv->pool;
4050   int i, n;
4051   Id p, why, *dp;
4052   Id new;
4053   Rule *r;
4054   Id *decisionmap = solv->decisionmap;
4055
4056   POOL_DEBUG(SAT_DEBUG_SCHUBI, "removedisabledconflicts\n");
4057   queue_empty(removed);
4058   for (i = 0; i < solv->decisionq.count; i++)
4059     {
4060       p = solv->decisionq.elements[i];
4061       if (p > 0)
4062         continue;
4063       /* a conflict. we never do conflicts on free decisions, so there
4064        * must have been an unit rule */
4065       why = solv->decisionq_why.elements[i];
4066       assert(why > 0);
4067       r = solv->rules + why;
4068       if (r->d < 0 && decisionmap[-p])
4069         {
4070           /* rule is now disabled, remove from decisionmap */
4071           POOL_DEBUG(SAT_DEBUG_SCHUBI, "removing conflict for package %s[%d]\n", solvable2str(pool, pool->solvables - p), -p);
4072           queue_push(removed, -p);
4073           queue_push(removed, decisionmap[-p]);
4074           decisionmap[-p] = 0;
4075         }
4076     }
4077   if (!removed->count)
4078     return;
4079   /* we removed some confliced packages. some of them might still
4080    * be in conflict, so search for unit rules and re-conflict */
4081   new = 0;
4082   for (i = n = 1, r = solv->rules + i; n < solv->nrules; i++, r++, n++)
4083     {
4084       if (i == solv->nrules)
4085         {
4086           i = 1;
4087           r = solv->rules + i;
4088         }
4089       if (r->d < 0)
4090         continue;
4091       if (!r->w2)
4092         {
4093           if (r->p < 0 && !decisionmap[-r->p])
4094             new = r->p;
4095         }
4096       else if (!r->d)
4097         {
4098           /* binary rule */
4099           if (r->p < 0 && decisionmap[-r->p] == 0 && DECISIONMAP_FALSE(r->w2))
4100             new = r->p;
4101           else if (r->w2 < 0 && decisionmap[-r->w2] == 0 && DECISIONMAP_FALSE(r->p))
4102             new = r->w2;
4103         }
4104       else
4105         {
4106           if (r->p < 0 && decisionmap[-r->p] == 0)
4107             new = r->p;
4108           if (new || DECISIONMAP_FALSE(r->p))
4109             {
4110               dp = pool->whatprovidesdata + r->d;
4111               while ((p = *dp++) != 0)
4112                 {
4113                   if (new && p == new)
4114                     continue;
4115                   if (p < 0 && decisionmap[-p] == 0)
4116                     {
4117                       if (new)
4118                         {
4119                           new = 0;
4120                           break;
4121                         }
4122                       new = p;
4123                     }
4124                   else if (!DECISIONMAP_FALSE(p))
4125                     {
4126                       new = 0;
4127                       break;
4128                     }
4129                 }
4130             }
4131         }
4132       if (new)
4133         {
4134           POOL_DEBUG(SAT_DEBUG_SCHUBI, "re-conflicting package %s[%d]\n", solvable2str(pool, pool->solvables - new), -new);
4135           decisionmap[-new] = -1;
4136           new = 0;
4137           n = 0;        /* redo all rules */
4138         }
4139     }
4140 }
4141
4142
4143 /*-------------------------------------------------------------------
4144  *
4145  * weaken solvable dependencies
4146  */
4147
4148 static void
4149 weaken_solvable_deps(Solver *solv, Id p)
4150 {
4151   int i;
4152   Rule *r;
4153
4154   for (i = 1, r = solv->rules + i; i < solv->rpmrules_end; i++, r++)
4155     {
4156       if (r->p != -p)
4157         continue;
4158       if ((r->d == 0 || r->d == -1) && r->w2 < 0)
4159         continue;       /* conflict */
4160       queue_push(&solv->weakruleq, i);
4161     }
4162 }
4163
4164 /********************************************************************/
4165 /* main() */
4166
4167 /*
4168  *
4169  * solve job queue
4170  *
4171  */
4172
4173 void
4174 solver_solve(Solver *solv, Queue *job)
4175 {
4176   Pool *pool = solv->pool;
4177   Repo *installed = solv->installed;
4178   int i;
4179   int oldnrules;
4180   Map addedmap;                /* '1' == have rpm-rules for solvable */
4181   Map installcandidatemap;
4182   Id how, what, select, name, weak, p, pp, d;
4183   Queue q, redoq;
4184   Solvable *s;
4185   int goterase;
4186   Rule *r;
4187   int now, solve_start;
4188
4189   solve_start = sat_timems(0);
4190   POOL_DEBUG(SAT_DEBUG_STATS, "solver started\n");
4191   POOL_DEBUG(SAT_DEBUG_STATS, "fixsystem=%d updatesystem=%d dosplitprovides=%d, noupdateprovide=%d\n", solv->fixsystem, solv->updatesystem, solv->dosplitprovides, solv->noupdateprovide);
4192   POOL_DEBUG(SAT_DEBUG_STATS, "distupgrade=%d distupgrade_removeunsupported=%d\n", solv->distupgrade, solv->distupgrade_removeunsupported);
4193   POOL_DEBUG(SAT_DEBUG_STATS, "allowuninstall=%d, allowdowngrade=%d, allowarchchange=%d, allowvendorchange=%d\n", solv->allowuninstall, solv->allowdowngrade, solv->allowarchchange, solv->allowvendorchange);
4194   POOL_DEBUG(SAT_DEBUG_STATS, "promoteepoch=%d, allowvirtualconflicts=%d, allowselfconflicts=%d\n", pool->promoteepoch, solv->allowvirtualconflicts, solv->allowselfconflicts);
4195   POOL_DEBUG(SAT_DEBUG_STATS, "obsoleteusesprovides=%d, implicitobsoleteusesprovides=%d\n", solv->obsoleteusesprovides, solv->implicitobsoleteusesprovides);
4196   POOL_DEBUG(SAT_DEBUG_STATS, "dontinstallrecommended=%d, ignorealreadyrecommended=%d, dontshowinstalledrecommended=%d\n", solv->dontinstallrecommended, solv->ignorealreadyrecommended, solv->dontshowinstalledrecommended);
4197   /* create whatprovides if not already there */
4198   if (!pool->whatprovides)
4199     pool_createwhatprovides(pool);
4200
4201   /* create obsolete index if needed */
4202   create_obsolete_index(solv);
4203
4204   /*
4205    * create basic rule set of all involved packages
4206    * use addedmap bitmap to make sure we don't create rules twice
4207    *
4208    */
4209
4210   /* create noobsolete map if needed */
4211   for (i = 0; i < job->count; i += 2)
4212     {
4213       how = job->elements[i] & ~SOLVER_WEAK;
4214       if ((how & SOLVER_JOBMASK) != SOLVER_NOOBSOLETES)
4215         continue;
4216       what = job->elements[i + 1];
4217       select = how & SOLVER_SELECTMASK;
4218       if (!solv->noobsoletes.size)
4219         map_init(&solv->noobsoletes, pool->nsolvables);
4220       FOR_JOB_SELECT(p, pp, select, what)
4221         MAPSET(&solv->noobsoletes, p);
4222     }
4223
4224   map_init(&addedmap, pool->nsolvables);
4225   map_init(&installcandidatemap, pool->nsolvables);
4226   queue_init(&q);
4227
4228   /*
4229    * always install our system solvable
4230    */
4231   MAPSET(&addedmap, SYSTEMSOLVABLE);
4232   queue_push(&solv->decisionq, SYSTEMSOLVABLE);
4233   queue_push(&solv->decisionq_why, 0);
4234   solv->decisionmap[SYSTEMSOLVABLE] = 1; /* installed at level '1' */
4235
4236   now = sat_timems(0);
4237   /*
4238    * create rules for all package that could be involved with the solving
4239    * so called: rpm rules
4240    *
4241    */
4242   if (installed)
4243     {
4244       oldnrules = solv->nrules;
4245       POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** create rpm rules for installed solvables ***\n");
4246       FOR_REPO_SOLVABLES(installed, p, s)
4247         addrpmrulesforsolvable(solv, s, &addedmap);
4248       POOL_DEBUG(SAT_DEBUG_STATS, "added %d rpm rules for installed solvables\n", solv->nrules - oldnrules);
4249       POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** create rpm rules for updaters of installed solvables ***\n");
4250       oldnrules = solv->nrules;
4251       FOR_REPO_SOLVABLES(installed, p, s)
4252         addrpmrulesforupdaters(solv, s, &addedmap, 1);
4253       POOL_DEBUG(SAT_DEBUG_STATS, "added %d rpm rules for updaters of installed solvables\n", solv->nrules - oldnrules);
4254     }
4255
4256   /*
4257    * create rules for all packages involved in the job
4258    * (to be installed or removed)
4259    */
4260     
4261   POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** create rpm rules for packages involved with a job ***\n");
4262   oldnrules = solv->nrules;
4263   for (i = 0; i < job->count; i += 2)
4264     {
4265       how = job->elements[i];
4266       what = job->elements[i + 1];
4267       select = how & SOLVER_SELECTMASK;
4268
4269       switch (how & SOLVER_JOBMASK)
4270         {
4271         case SOLVER_INSTALL:
4272           FOR_JOB_SELECT(p, pp, select, what)
4273             {
4274               MAPSET(&installcandidatemap, p);
4275               addrpmrulesforsolvable(solv, pool->solvables + p, &addedmap);
4276             }
4277           break;
4278         case SOLVER_UPDATE:
4279           /* FIXME: semantics? */
4280           FOR_JOB_SELECT(p, pp, select, what)
4281             addrpmrulesforupdaters(solv, pool->solvables + what, &addedmap, 0);
4282           break;
4283         }
4284     }
4285   POOL_DEBUG(SAT_DEBUG_STATS, "added %d rpm rules for packages involved in a job\n", solv->nrules - oldnrules);
4286
4287   POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** create rpm rules for recommended/suggested packages ***\n");
4288
4289   oldnrules = solv->nrules;
4290     
4291     /*
4292      * add rules for suggests, enhances
4293      */
4294   addrpmrulesforweak(solv, &addedmap);
4295   POOL_DEBUG(SAT_DEBUG_STATS, "added %d rpm rules because of weak dependencies\n", solv->nrules - oldnrules);
4296
4297   IF_POOLDEBUG (SAT_DEBUG_STATS)
4298     {
4299       int possible = 0, installable = 0;
4300       for (i = 1; i < pool->nsolvables; i++)
4301         {
4302           if (pool_installable(pool, pool->solvables + i))
4303             installable++;
4304           if (MAPTST(&addedmap, i))
4305             possible++;
4306         }
4307       POOL_DEBUG(SAT_DEBUG_STATS, "%d of %d installable solvables considered for solving\n", possible, installable);
4308     }
4309
4310   /*
4311    * first pass done, we now have all the rpm rules we need.
4312    * unify existing rules before going over all job rules and
4313    * policy rules.
4314    * at this point the system is always solvable,
4315    * as an empty system (remove all packages) is a valid solution
4316    */
4317
4318   unifyrules(solv);                               /* remove duplicate rpm rules */
4319
4320   solv->rpmrules_end = solv->nrules;              /* mark end of rpm rules */
4321
4322   solv->directdecisions = solv->decisionq.count;
4323   POOL_DEBUG(SAT_DEBUG_STATS, "rpm rule memory usage: %d K\n", solv->nrules * (int)sizeof(Rule) / 1024);
4324   POOL_DEBUG(SAT_DEBUG_STATS, "decisions so far: %d\n", solv->decisionq.count);
4325   POOL_DEBUG(SAT_DEBUG_STATS, "rpm rule creation took %d ms\n", sat_timems(now));
4326
4327   /*
4328    * create feature rules
4329    * 
4330    * foreach installed:
4331    *   create assertion (keep installed, if no update available)
4332    *   or
4333    *   create update rule (A|update1(A)|update2(A)|...)
4334    * 
4335    * those are used later on to keep a version of the installed packages in
4336    * best effort mode
4337    */
4338     
4339   POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** Add feature rules ***\n");
4340   solv->featurerules = solv->nrules;              /* mark start of feature rules */
4341   if (installed)
4342     {
4343         /* foreach possibly installed solvable */
4344       for (i = installed->start, s = pool->solvables + i; i < installed->end; i++, s++)
4345         {
4346           if (s->repo != installed)
4347             {
4348               addrule(solv, 0, 0);      /* create dummy rule */
4349               continue;
4350             }
4351           addupdaterule(solv, s, 1);    /* allow s to be updated */
4352         }
4353         /*
4354          * assert one rule per installed solvable,
4355          * either an assertion (A)
4356          * or a possible update (A|update1(A)|update2(A)|...)
4357          */
4358       assert(solv->nrules - solv->featurerules == installed->end - installed->start);
4359     }
4360   solv->featurerules_end = solv->nrules;
4361
4362     /*
4363      * Add update rules for installed solvables
4364      * 
4365      * almost identical to feature rules
4366      * except that downgrades/archchanges/vendorchanges are not allowed
4367      */
4368     
4369   POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** Add update rules ***\n");
4370   solv->updaterules = solv->nrules;
4371
4372   if (installed)
4373     { /* foreach installed solvables */
4374       /* we create all update rules, but disable some later on depending on the job */
4375       for (i = installed->start, s = pool->solvables + i; i < installed->end; i++, s++)
4376         {
4377           Rule *sr;
4378
4379           if (s->repo != installed)
4380             {
4381               addrule(solv, 0, 0);      /* create dummy rule */
4382               continue;
4383             }
4384           addupdaterule(solv, s, 0);    /* allowall = 0: downgrades not allowed */
4385             /*
4386              * check for and remove duplicate
4387              */
4388           r = solv->rules + solv->nrules - 1;           /* r: update rule */
4389           sr = r - (installed->end - installed->start); /* sr: feature rule */
4390           /* it's orphaned if there is no feature rule or the feature rule
4391            * consists just of the installed package */
4392           if (!sr->p || (sr->p == i && !sr->d && !sr->w2))
4393             queue_push(&solv->orphaned, i);
4394           if (!r->p)
4395             {
4396               assert(solv->distupgrade && !sr->p);
4397               continue;
4398             }
4399           unifyrules_sortcmp_data = pool;
4400           if (!unifyrules_sortcmp(r, sr))
4401             {
4402               /* identical rule, kill unneeded rule */
4403               if (solv->allowuninstall)
4404                 {
4405                   /* keep feature rule, make it weak */
4406                   memset(r, 0, sizeof(*r));
4407                   queue_push(&solv->weakruleq, sr - solv->rules);
4408                 }
4409               else
4410                 {
4411                   /* keep update rule */
4412                   memset(sr, 0, sizeof(*sr));
4413                 }
4414             }
4415           else if (solv->allowuninstall)
4416             {
4417               /* make both feature and update rule weak */
4418               queue_push(&solv->weakruleq, r - solv->rules);
4419               queue_push(&solv->weakruleq, sr - solv->rules);
4420             }
4421           else
4422             disablerule(solv, sr);
4423         }
4424       /* consistency check: we added a rule for _every_ installed solvable */
4425       assert(solv->nrules - solv->updaterules == installed->end - installed->start);
4426     }
4427   solv->updaterules_end = solv->nrules;
4428
4429
4430   /*
4431    * now add all job rules
4432    */
4433
4434   POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** Add JOB rules ***\n");
4435
4436   solv->jobrules = solv->nrules;
4437   for (i = 0; i < job->count; i += 2)
4438     {
4439       oldnrules = solv->nrules;
4440
4441       how = job->elements[i];
4442       what = job->elements[i + 1];
4443       weak = how & SOLVER_WEAK;
4444       select = how & SOLVER_SELECTMASK;
4445       switch (how & SOLVER_JOBMASK)
4446         {
4447         case SOLVER_INSTALL:
4448           POOL_DEBUG(SAT_DEBUG_JOB, "job: %sinstall %s\n", weak ? "weak " : "", solver_select2str(solv, select, what));
4449           if (select == SOLVER_SOLVABLE)
4450             {
4451               p = what;
4452               d = 0;
4453             }
4454           else
4455             {
4456               queue_empty(&q);
4457               FOR_JOB_SELECT(p, pp, select, what)
4458                 queue_push(&q, p);
4459               if (!q.count)
4460                 {
4461                   /* no candidate found, make this an impossible rule */
4462                   queue_push(&q, -SYSTEMSOLVABLE);
4463                 }
4464               p = queue_shift(&q);      /* get first candidate */
4465               d = !q.count ? 0 : pool_queuetowhatprovides(pool, &q);    /* internalize */
4466             }
4467           addrule(solv, p, d);          /* add install rule */
4468           queue_push(&solv->ruletojob, i);
4469           if (weak)
4470             queue_push(&solv->weakruleq, solv->nrules - 1);
4471           break;
4472         case SOLVER_ERASE:
4473           POOL_DEBUG(SAT_DEBUG_JOB, "job: %serase %s\n", weak ? "weak " : "", solver_select2str(solv, select, what));
4474           if (select == SOLVER_SOLVABLE && solv->installed && pool->solvables[what].repo == solv->installed)
4475             {
4476               /* special case for "erase a specific solvable": we also
4477                * erase all other solvables with that name, so that they
4478                * don't get picked up as replacement */
4479               name = pool->solvables[what].name;
4480               FOR_PROVIDES(p, pp, name)
4481                 {
4482                   if (p == what)
4483                     continue;
4484                   s = pool->solvables + p;
4485                   if (s->name != name)
4486                     continue;
4487                   /* keep other versions installed */
4488                   if (s->repo == solv->installed)
4489                     continue;
4490                   /* keep installcandidates of other jobs */
4491                   if (MAPTST(&installcandidatemap, p))
4492                     continue;
4493                   addrule(solv, -p, 0);                 /* remove by Id */
4494                   queue_push(&solv->ruletojob, i);
4495                   if (weak)
4496                     queue_push(&solv->weakruleq, solv->nrules - 1);
4497                 }
4498             }
4499           FOR_JOB_SELECT(p, pp, select, what)
4500             {
4501               addrule(solv, -p, 0);
4502               queue_push(&solv->ruletojob, i);
4503               if (weak)
4504                 queue_push(&solv->weakruleq, solv->nrules - 1);
4505             }
4506           break;
4507
4508         case SOLVER_UPDATE:
4509           POOL_DEBUG(SAT_DEBUG_JOB, "job: %supdate %s\n", weak ? "weak " : "", solver_select2str(solv, select, what));
4510           if (select != SOLVER_SOLVABLE)
4511             break;
4512           s = pool->solvables + what;
4513           POOL_DEBUG(SAT_DEBUG_JOB, "job: %supdate %s\n", weak ? "weak " : "", solvable2str(pool, s));
4514           addupdaterule(solv, s, 0);
4515           queue_push(&solv->ruletojob, i);
4516           if (weak)
4517             queue_push(&solv->weakruleq, solv->nrules - 1);
4518           break;
4519         case SOLVER_WEAKENDEPS:
4520           POOL_DEBUG(SAT_DEBUG_JOB, "job: %sweaken deps %s\n", weak ? "weak " : "", solver_select2str(solv, select, what));
4521           if (select != SOLVER_SOLVABLE)
4522             break;
4523           s = pool->solvables + what;
4524           weaken_solvable_deps(solv, what);
4525           break;
4526         case SOLVER_NOOBSOLETES:
4527           POOL_DEBUG(SAT_DEBUG_JOB, "job: %sno obsolete %s\n", weak ? "weak " : "", solver_select2str(solv, select, what));
4528           break;
4529         case SOLVER_LOCK:
4530           POOL_DEBUG(SAT_DEBUG_JOB, "job: %slock %s\n", weak ? "weak " : "", solver_select2str(solv, select, what));
4531           FOR_JOB_SELECT(p, pp, select, what)
4532             {
4533               s = pool->solvables + p;
4534               if (installed && s->repo == installed)
4535                 addrule(solv, p, 0);
4536               else
4537                 addrule(solv, -p, 0);
4538               queue_push(&solv->ruletojob, i);
4539               if (weak)
4540                 queue_push(&solv->weakruleq, solv->nrules - 1);
4541             }
4542           break;
4543         default:
4544           POOL_DEBUG(SAT_DEBUG_JOB, "job: unknown job\n");
4545           break;
4546         }
4547         
4548         /*
4549          * debug
4550          */
4551         
4552       IF_POOLDEBUG (SAT_DEBUG_JOB)
4553         {
4554           int j;
4555           if (solv->nrules == oldnrules)
4556             POOL_DEBUG(SAT_DEBUG_JOB, " - no rule created\n");
4557           for (j = oldnrules; j < solv->nrules; j++)
4558             {
4559               POOL_DEBUG(SAT_DEBUG_JOB, " - job ");
4560               solver_printrule(solv, SAT_DEBUG_JOB, solv->rules + j);
4561             }
4562         }
4563     }
4564   assert(solv->ruletojob.count == solv->nrules - solv->jobrules);
4565   solv->jobrules_end = solv->nrules;
4566
4567     /* all rules created
4568      * --------------------------------------------------------------
4569      * prepare for solving
4570      */
4571     
4572   /* free unneeded memory */
4573   map_free(&addedmap);
4574   map_free(&installcandidatemap);
4575   queue_free(&q);
4576
4577   /* create weak map */
4578   map_init(&solv->weakrulemap, solv->nrules);
4579   for (i = 0; i < solv->weakruleq.count; i++)
4580     {
4581       p = solv->weakruleq.elements[i];
4582       MAPSET(&solv->weakrulemap, p);
4583     }
4584
4585   /* all new rules are learnt after this point */
4586   solv->learntrules = solv->nrules;
4587
4588   /* create assertion index. it is only used to speed up
4589    * makeruledecsions() a bit */
4590   for (i = 1, r = solv->rules + i; i < solv->nrules; i++, r++)
4591     if (r->p && !r->w2 && (r->d == 0 || r->d == -1))
4592       queue_push(&solv->ruleassertions, i);
4593
4594   /* disable update rules that conflict with our job */
4595   disableupdaterules(solv, job, -1);
4596
4597   /* make decisions based on job/update assertions */
4598   makeruledecisions(solv);
4599
4600   /* create watches chains */
4601   makewatches(solv);
4602
4603   POOL_DEBUG(SAT_DEBUG_STATS, "problems so far: %d\n", solv->problems.count);
4604
4605   /*
4606    * ********************************************
4607    * solve!
4608    * ********************************************
4609    */
4610     
4611   now = sat_timems(0);
4612   run_solver(solv, 1, solv->dontinstallrecommended ? 0 : 1);
4613   POOL_DEBUG(SAT_DEBUG_STATS, "solver took %d ms\n", sat_timems(now));
4614
4615   queue_init(&redoq);
4616   goterase = 0;
4617   /* disable all erase jobs (including weak "keep uninstalled" rules) */
4618   for (i = solv->jobrules, r = solv->rules + i; i < solv->learntrules; i++, r++)
4619     {
4620       if (r->d < 0)     /* disabled ? */
4621         continue;
4622       if (r->p > 0)     /* install job? */
4623         continue;
4624       disablerule(solv, r);
4625       goterase++;
4626     }
4627   
4628   if (goterase)
4629     {
4630       enabledisablelearntrules(solv);
4631       removedisabledconflicts(solv, &redoq);
4632     }
4633
4634   /*
4635    * find recommended packages
4636    */
4637     
4638   /* if redoq.count == 0 we already found all recommended in the
4639    * solver run */
4640   if (redoq.count || solv->dontinstallrecommended || !solv->dontshowinstalledrecommended || solv->ignorealreadyrecommended)
4641     {
4642       Id rec, *recp, p, pp;
4643
4644       /* create map of all recommened packages */
4645       solv->recommends_index = -1;
4646       MAPZERO(&solv->recommendsmap);
4647       for (i = 0; i < solv->decisionq.count; i++)
4648         {
4649           p = solv->decisionq.elements[i];
4650           if (p < 0)
4651             continue;
4652           s = pool->solvables + p;
4653           if (s->recommends)
4654             {
4655               recp = s->repo->idarraydata + s->recommends;
4656               while ((rec = *recp++) != 0)
4657                 {
4658                   FOR_PROVIDES(p, pp, rec)
4659                     if (solv->decisionmap[p] > 0)
4660                       break;
4661                   if (p)
4662                     {
4663                       if (!solv->dontshowinstalledrecommended)
4664                         {
4665                           FOR_PROVIDES(p, pp, rec)
4666                             if (solv->decisionmap[p] > 0)
4667                               MAPSET(&solv->recommendsmap, p);
4668                         }
4669                       continue; /* p != 0: already fulfilled */
4670                     }
4671                   FOR_PROVIDES(p, pp, rec)
4672                     MAPSET(&solv->recommendsmap, p);
4673                 }
4674             }
4675         }
4676       for (i = 1; i < pool->nsolvables; i++)
4677         {
4678           if (solv->decisionmap[i] < 0)
4679             continue;
4680           if (solv->decisionmap[i] > 0 && solv->dontshowinstalledrecommended)
4681             continue;
4682           s = pool->solvables + i;
4683           if (!MAPTST(&solv->recommendsmap, i))
4684             {
4685               if (!s->supplements)
4686                 continue;
4687               if (!pool_installable(pool, s))
4688                 continue;
4689               if (!solver_is_supplementing(solv, s))
4690                 continue;
4691             }
4692           if (solv->dontinstallrecommended)
4693             queue_push(&solv->recommendations, i);
4694           else
4695             queue_pushunique(&solv->recommendations, i);
4696         }
4697       /* we use MODE_SUGGEST here so that repo prio is ignored */
4698       policy_filter_unwanted(solv, &solv->recommendations, POLICY_MODE_SUGGEST);
4699     }
4700
4701   /*
4702    * find suggested packages
4703    */
4704     
4705   if (1)
4706     {
4707       Id sug, *sugp, p, pp;
4708
4709       /* create map of all suggests that are still open */
4710       solv->recommends_index = -1;
4711       MAPZERO(&solv->suggestsmap);
4712       for (i = 0; i < solv->decisionq.count; i++)
4713         {
4714           p = solv->decisionq.elements[i];
4715           if (p < 0)
4716             continue;
4717           s = pool->solvables + p;
4718           if (s->suggests)
4719             {
4720               sugp = s->repo->idarraydata + s->suggests;
4721               while ((sug = *sugp++) != 0)
4722                 {
4723                   FOR_PROVIDES(p, pp, sug)
4724                     if (solv->decisionmap[p] > 0)
4725                       break;
4726                   if (p)
4727                     {
4728                       if (!solv->dontshowinstalledrecommended)
4729                         {
4730                           FOR_PROVIDES(p, pp, sug)
4731                             if (solv->decisionmap[p] > 0)
4732                               MAPSET(&solv->suggestsmap, p);
4733                         }
4734                       continue; /* already fulfilled */
4735                     }
4736                   FOR_PROVIDES(p, pp, sug)
4737                     MAPSET(&solv->suggestsmap, p);
4738                 }
4739             }
4740         }
4741       for (i = 1; i < pool->nsolvables; i++)
4742         {
4743           if (solv->decisionmap[i] < 0)
4744             continue;
4745           if (solv->decisionmap[i] > 0 && solv->dontshowinstalledrecommended)
4746             continue;
4747           s = pool->solvables + i;
4748           if (!MAPTST(&solv->suggestsmap, i))
4749             {
4750               if (!s->enhances)
4751                 continue;
4752               if (!pool_installable(pool, s))
4753                 continue;
4754               if (!solver_is_enhancing(solv, s))
4755                 continue;
4756             }
4757           queue_push(&solv->suggestions, i);
4758         }
4759       policy_filter_unwanted(solv, &solv->suggestions, POLICY_MODE_SUGGEST);
4760     }
4761
4762   if (redoq.count)
4763     {
4764       /* restore decisionmap */
4765       for (i = 0; i < redoq.count; i += 2)
4766         solv->decisionmap[redoq.elements[i]] = redoq.elements[i + 1];
4767     }
4768
4769     /*
4770      * if unsolvable, prepare solutions
4771      */
4772
4773   if (solv->problems.count)
4774     {
4775       int recocount = solv->recommendations.count;
4776       solv->recommendations.count = 0;  /* so that revert() doesn't mess with it */
4777       queue_empty(&redoq);
4778       for (i = 0; i < solv->decisionq.count; i++)
4779         {
4780           Id p = solv->decisionq.elements[i];
4781           queue_push(&redoq, p);
4782           queue_push(&redoq, solv->decisionq_why.elements[i]);
4783           queue_push(&redoq, solv->decisionmap[p > 0 ? p : -p]);
4784         }
4785       problems_to_solutions(solv, job);
4786       memset(solv->decisionmap, 0, pool->nsolvables * sizeof(Id));
4787       queue_empty(&solv->decisionq);
4788       queue_empty(&solv->decisionq_why);
4789       for (i = 0; i < redoq.count; i += 3)
4790         {
4791           Id p = redoq.elements[i];
4792           queue_push(&solv->decisionq, p);
4793           queue_push(&solv->decisionq_why, redoq.elements[i + 1]);
4794           solv->decisionmap[p > 0 ? p : -p] = redoq.elements[i + 2];
4795         }
4796       solv->recommendations.count = recocount;
4797     }
4798
4799   queue_free(&redoq);
4800   POOL_DEBUG(SAT_DEBUG_STATS, "final solver statistics: %d learned rules, %d unsolvable\n", solv->stats_learned, solv->stats_unsolvable);
4801   POOL_DEBUG(SAT_DEBUG_STATS, "solver_solve took %d ms\n", sat_timems(solve_start));
4802 }
4803
4804 /***********************************************************************/
4805 /* disk usage computations */
4806
4807 /*-------------------------------------------------------------------
4808  * 
4809  * calculate DU changes
4810  */
4811
4812 void
4813 solver_calc_duchanges(Solver *solv, DUChanges *mps, int nmps)
4814 {
4815   Map installedmap;
4816
4817   solver_create_state_maps(solv, &installedmap, 0);
4818   pool_calc_duchanges(solv->pool, &installedmap, mps, nmps);
4819   map_free(&installedmap);
4820 }
4821
4822
4823 /*-------------------------------------------------------------------
4824  * 
4825  * calculate changes in install size
4826  */
4827
4828 int
4829 solver_calc_installsizechange(Solver *solv)
4830 {
4831   Map installedmap;
4832   int change;
4833
4834   solver_create_state_maps(solv, &installedmap, 0);
4835   change = pool_calc_installsizechange(solv->pool, &installedmap);
4836   map_free(&installedmap);
4837   return change;
4838 }
4839
4840 #define FIND_INVOLVED_DEBUG 0
4841 void
4842 solver_find_involved(Solver *solv, Queue *installedq, Solvable *ts, Queue *q)
4843 {
4844   Pool *pool = solv->pool;
4845   Map im;
4846   Map installedm;
4847   Solvable *s;
4848   Queue iq;
4849   Queue installedq_internal;
4850   Id tp, ip, p, pp, req, *reqp, sup, *supp;
4851   int i, count;
4852
4853   tp = ts - pool->solvables;
4854   queue_init(&iq);
4855   queue_init(&installedq_internal);
4856   map_init(&im, pool->nsolvables);
4857   map_init(&installedm, pool->nsolvables);
4858
4859   if (!installedq)
4860     {
4861       installedq = &installedq_internal;
4862       if (solv->installed)
4863         {
4864           for (ip = solv->installed->start; ip < solv->installed->end; ip++)
4865             {
4866               s = pool->solvables + ip;
4867               if (s->repo != solv->installed)
4868                 continue;
4869               queue_push(installedq, ip);
4870             }
4871         }
4872     }
4873   for (i = 0; i < installedq->count; i++)
4874     {
4875       ip = installedq->elements[i];
4876       MAPSET(&installedm, ip);
4877       MAPSET(&im, ip);
4878     }
4879
4880   queue_push(&iq, ts - pool->solvables);
4881   while (iq.count)
4882     {
4883       ip = queue_shift(&iq);
4884       if (!MAPTST(&im, ip))
4885         continue;
4886       if (!MAPTST(&installedm, ip))
4887         continue;
4888       MAPCLR(&im, ip);
4889       s = pool->solvables + ip;
4890 #if FIND_INVOLVED_DEBUG
4891       printf("hello %s\n", solvable2str(pool, s));
4892 #endif
4893       if (s->requires)
4894         {
4895           reqp = s->repo->idarraydata + s->requires;
4896           while ((req = *reqp++) != 0)
4897             {
4898               if (req == SOLVABLE_PREREQMARKER)
4899                 continue;
4900               /* count number of installed packages that match */
4901               count = 0;
4902               FOR_PROVIDES(p, pp, req)
4903                 if (MAPTST(&installedm, p))
4904                   count++;
4905               if (count > 1)
4906                 continue;
4907               FOR_PROVIDES(p, pp, req)
4908                 {
4909                   if (MAPTST(&im, p))
4910                     {
4911 #if FIND_INVOLVED_DEBUG
4912                       printf("%s requires %s\n", solvable2str(pool, pool->solvables + ip), solvable2str(pool, pool->solvables + p));
4913 #endif
4914                       queue_push(&iq, p);
4915                     }
4916                 }
4917             }
4918         }
4919       if (s->recommends)
4920         {
4921           reqp = s->repo->idarraydata + s->recommends;
4922           while ((req = *reqp++) != 0)
4923             {
4924               count = 0;
4925               FOR_PROVIDES(p, pp, req)
4926                 if (MAPTST(&installedm, p))
4927                   count++;
4928               if (count > 1)
4929                 continue;
4930               FOR_PROVIDES(p, pp, req)
4931                 {
4932                   if (MAPTST(&im, p))
4933                     {
4934 #if FIND_INVOLVED_DEBUG
4935                       printf("%s recommends %s\n", solvable2str(pool, pool->solvables + ip), solvable2str(pool, pool->solvables + p));
4936 #endif
4937                       queue_push(&iq, p);
4938                     }
4939                 }
4940             }
4941         }
4942       if (!iq.count)
4943         {
4944           /* supplements pass */
4945           for (i = 0; i < installedq->count; i++)
4946             {
4947               ip = installedq->elements[i];
4948               s = pool->solvables + ip;
4949               if (!s->supplements)
4950                 continue;
4951               if (!MAPTST(&im, ip))
4952                 continue;
4953               supp = s->repo->idarraydata + s->supplements;
4954               while ((sup = *supp++) != 0)
4955                 if (!dep_possible(solv, sup, &im) && dep_possible(solv, sup, &installedm))
4956                   break;
4957               /* no longer supplemented, also erase */
4958               if (sup)
4959                 {
4960 #if FIND_INVOLVED_DEBUG
4961                   printf("%s supplemented\n", solvable2str(pool, pool->solvables + ip));
4962 #endif
4963                   queue_push(&iq, ip);
4964                 }
4965             }
4966         }
4967     }
4968
4969   for (i = 0; i < installedq->count; i++)
4970     {
4971       ip = installedq->elements[i];
4972       if (MAPTST(&im, ip))
4973         queue_push(&iq, ip);
4974     }
4975
4976   while (iq.count)
4977     {
4978       ip = queue_shift(&iq);
4979       if (!MAPTST(&installedm, ip))
4980         continue;
4981       s = pool->solvables + ip;
4982 #if FIND_INVOLVED_DEBUG
4983       printf("bye %s\n", solvable2str(pool, s));
4984 #endif
4985       if (s->requires)
4986         {
4987           reqp = s->repo->idarraydata + s->requires;
4988           while ((req = *reqp++) != 0)
4989             {
4990               FOR_PROVIDES(p, pp, req)
4991                 {
4992                   if (!MAPTST(&im, p))
4993                     {
4994                       if (p == tp)
4995                         continue;
4996 #if FIND_INVOLVED_DEBUG
4997                       printf("%s requires %s\n", solvable2str(pool, pool->solvables + ip), solvable2str(pool, pool->solvables + p));
4998 #endif
4999                       MAPSET(&im, p);
5000                       queue_push(&iq, p);
5001                     }
5002                 }
5003             }
5004         }
5005       if (s->recommends)
5006         {
5007           reqp = s->repo->idarraydata + s->recommends;
5008           while ((req = *reqp++) != 0)
5009             {
5010               FOR_PROVIDES(p, pp, req)
5011                 {
5012                   if (!MAPTST(&im, p))
5013                     {
5014                       if (p == tp)
5015                         continue;
5016 #if FIND_INVOLVED_DEBUG
5017                       printf("%s recommends %s\n", solvable2str(pool, pool->solvables + ip), solvable2str(pool, pool->solvables + p));
5018 #endif
5019                       MAPSET(&im, p);
5020                       queue_push(&iq, p);
5021                     }
5022                 }
5023             }
5024         }
5025       if (!iq.count)
5026         {
5027           /* supplements pass */
5028           for (i = 0; i < installedq->count; i++)
5029             {
5030               ip = installedq->elements[i];
5031               if (ip == tp)
5032                 continue;
5033               s = pool->solvables + ip;
5034               if (!s->supplements)
5035                 continue;
5036               if (MAPTST(&im, ip))
5037                 continue;
5038               supp = s->repo->idarraydata + s->supplements;
5039               while ((sup = *supp++) != 0)
5040                 if (dep_possible(solv, sup, &im))
5041                   break;
5042               if (sup)
5043                 {
5044 #if FIND_INVOLVED_DEBUG
5045                   printf("%s supplemented\n", solvable2str(pool, pool->solvables + ip));
5046 #endif
5047                   MAPSET(&im, ip);
5048                   queue_push(&iq, ip);
5049                 }
5050             }
5051         }
5052     }
5053     
5054   queue_free(&iq);
5055
5056   /* convert map into result */
5057   for (i = 0; i < installedq->count; i++)
5058     {
5059       ip = installedq->elements[i];
5060       if (MAPTST(&im, ip))
5061         continue;
5062       if (ip == ts - pool->solvables)
5063         continue;
5064       queue_push(q, ip);
5065     }
5066   map_free(&im);
5067   map_free(&installedm);
5068   queue_free(&installedq_internal);
5069 }
5070
5071 /* EOF */