parse appdata in solv example
[platform/upstream/libsolv.git] / src / transaction.c
1 /*
2  * Copyright (c) 2007-2009, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 /*
9  * transaction.c
10  *
11  * Transaction handling
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 "transaction.h"
21 #include "solver.h"
22 #include "bitmap.h"
23 #include "pool.h"
24 #include "poolarch.h"
25 #include "evr.h"
26 #include "util.h"
27
28 static int
29 obsq_sortcmp(const void *ap, const void *bp, void *dp)
30 {
31   Id a, b, oa, ob;
32   Pool *pool = dp;
33   Solvable *s, *oas, *obs;
34   int r;
35
36   a = ((Id *)ap)[0];
37   oa = ((Id *)ap)[1];
38   b = ((Id *)bp)[0];
39   ob = ((Id *)bp)[1];
40   if (a != b)
41     return a - b;
42   if (oa == ob)
43     return 0;
44   s = pool->solvables + a;
45   oas = pool->solvables + oa;
46   obs = pool->solvables + ob;
47   if (oas->name != obs->name)
48     {
49       /* bring "same name" obsoleters (i.e. upgraders) to front */
50       if (oas->name == s->name)
51         return -1;
52       if (obs->name == s->name)
53         return 1;
54       return strcmp(pool_id2str(pool, oas->name), pool_id2str(pool, obs->name));
55     }
56   r = pool_evrcmp(pool, oas->evr, obs->evr, EVRCMP_COMPARE);
57   if (r)
58     return -r;  /* highest version first */
59   return oa - ob;
60 }
61
62 void
63 transaction_all_obs_pkgs(Transaction *trans, Id p, Queue *pkgs)
64 {
65   Pool *pool = trans->pool;
66   Solvable *s = pool->solvables + p;
67   Queue *ti = &trans->transaction_info;
68   Id q;
69   int i;
70
71   queue_empty(pkgs);
72   if (p <= 0 || !s->repo)
73     return;
74   if (s->repo == pool->installed)
75     {
76       q = trans->transaction_installed[p - pool->installed->start];
77       if (!q)
78         return;
79       if (q > 0)
80         {
81           /* only a single obsoleting package */
82           queue_push(pkgs, q);
83           return;
84         }
85       /* find which packages obsolete us */
86       for (i = 0; i < ti->count; i += 2)
87         if (ti->elements[i + 1] == p)
88           queue_push2(pkgs, p, ti->elements[i]);
89       /* sort obsoleters */
90       if (pkgs->count > 2)
91         solv_sort(pkgs->elements, pkgs->count / 2, 2 * sizeof(Id), obsq_sortcmp, pool);
92       for (i = 0; i < pkgs->count; i += 2)
93         pkgs->elements[i / 2] = pkgs->elements[i + 1];
94       queue_truncate(pkgs, pkgs->count / 2);
95     }
96   else
97     {
98       /* find the packages we obsolete */
99       for (i = 0; i < ti->count; i += 2)
100         {
101           if (ti->elements[i] == p)
102             queue_push(pkgs, ti->elements[i + 1]);
103           else if (pkgs->count)
104             break;
105         }
106     }
107 }
108
109 Id
110 transaction_obs_pkg(Transaction *trans, Id p)
111 {
112   Pool *pool = trans->pool;
113   Solvable *s = pool->solvables + p;
114   Queue *ti;
115   int i;
116
117   if (p <= 0 || !s->repo)
118     return 0;
119   if (s->repo == pool->installed)
120     {
121       p = trans->transaction_installed[p - pool->installed->start];
122       return p < 0 ? -p : p;
123     }
124   ti = &trans->transaction_info;
125   for (i = 0; i < ti->count; i += 2)
126     if (ti->elements[i] == p)
127       return ti->elements[i + 1];
128   return 0;
129 }
130
131
132 /*
133  * calculate base type of transaction element
134  */
135
136 static Id
137 transaction_base_type(Transaction *trans, Id p)
138 {
139   Pool *pool = trans->pool;
140   Solvable *s, *s2;
141   int r;
142   Id p2;
143
144   if (!MAPTST(&trans->transactsmap, p))
145     return SOLVER_TRANSACTION_IGNORE;
146   p2 = transaction_obs_pkg(trans, p);
147   if (pool->installed && pool->solvables[p].repo == pool->installed)
148     {
149       /* erase */
150       if (!p2)
151         return SOLVER_TRANSACTION_ERASE;
152       s = pool->solvables + p;
153       s2 = pool->solvables + p2;
154       if (s->name == s2->name)
155         {
156           if (s->evr == s2->evr && solvable_identical(s, s2))
157             return SOLVER_TRANSACTION_REINSTALLED;
158           r = pool_evrcmp(pool, s->evr, s2->evr, EVRCMP_COMPARE);
159           if (r < 0)
160             return SOLVER_TRANSACTION_UPGRADED;
161           else if (r > 0)
162             return SOLVER_TRANSACTION_DOWNGRADED;
163           return SOLVER_TRANSACTION_CHANGED;
164         }
165       return SOLVER_TRANSACTION_OBSOLETED;
166     }
167   else
168     {
169       /* install or multiinstall */
170       int multi = trans->multiversionmap.size && MAPTST(&trans->multiversionmap, p);
171       if (multi)
172         {
173           if (p2)
174             {
175               s = pool->solvables + p;
176               s2 = pool->solvables + p2;
177               if (s->name == s2->name && s->arch == s2->arch && s->evr == s2->evr)
178                 return SOLVER_TRANSACTION_MULTIREINSTALL;
179             }
180           return SOLVER_TRANSACTION_MULTIINSTALL;
181         }
182       if (!p2)
183         return SOLVER_TRANSACTION_INSTALL;
184       s = pool->solvables + p;
185       s2 = pool->solvables + p2;
186       if (s->name == s2->name)
187         {
188           if (s->evr == s2->evr && solvable_identical(s, s2))
189             return SOLVER_TRANSACTION_REINSTALL;
190           r = pool_evrcmp(pool, s->evr, s2->evr, EVRCMP_COMPARE);
191           if (r > 0)
192             return SOLVER_TRANSACTION_UPGRADE;
193           else if (r < 0)
194             return SOLVER_TRANSACTION_DOWNGRADE;
195           else
196             return SOLVER_TRANSACTION_CHANGE;
197         }
198       return SOLVER_TRANSACTION_OBSOLETES;
199     }
200 }
201
202 static inline int
203 is_pseudo_package(Pool *pool, Solvable *s)
204 {
205   const char *n = pool_id2str(pool, s->name);
206   if (!strncmp(n, "patch:", 6))
207     return 1;
208   if (!strncmp(n, "pattern:", 8))
209     return 1;
210   return 0;
211 }
212
213 static int
214 obsoleted_by_pseudos_only(Transaction *trans, Id p)
215 {
216   Pool *pool = trans->pool;
217   Queue q;
218   Id op;
219   int i;
220
221   op = transaction_obs_pkg(trans, p);
222   if (op && !is_pseudo_package(pool, pool->solvables + op))
223     return 0;
224   queue_init(&q);
225   transaction_all_obs_pkgs(trans, p, &q);
226   for (i = 0; i < q.count; i++)
227     if (!is_pseudo_package(pool, pool->solvables + q.elements[i]))
228       break;
229   i = !q.count || i < q.count ? 0 : 1;
230   queue_free(&q);
231   return i;
232 }
233
234 /*
235  * return type of transaction element
236  *
237  * filtering is needed if either not all packages are shown
238  * or replaces are not shown, as otherwise parts of the
239  * transaction might not be shown to the user */
240
241 Id
242 transaction_type(Transaction *trans, Id p, int mode)
243 {
244   Pool *pool = trans->pool;
245   Solvable *s = pool->solvables + p;
246   Queue oq, rq;
247   Id type, q;
248   int i, j, ref = 0;
249
250   if (!s->repo)
251     return SOLVER_TRANSACTION_IGNORE;
252
253   /* XXX: SUSE only? */
254   if (!(mode & SOLVER_TRANSACTION_KEEP_PSEUDO) && is_pseudo_package(pool, s))
255     return SOLVER_TRANSACTION_IGNORE;
256
257   type = transaction_base_type(trans, p);
258
259   if (type == SOLVER_TRANSACTION_IGNORE)
260     return SOLVER_TRANSACTION_IGNORE;   /* not part of the transaction */
261
262   if ((mode & SOLVER_TRANSACTION_RPM_ONLY) != 0)
263     {
264       /* application wants to know what to feed to rpm */
265       if (type == SOLVER_TRANSACTION_ERASE || type == SOLVER_TRANSACTION_INSTALL || type == SOLVER_TRANSACTION_MULTIINSTALL)
266         return type;
267       if (s->repo == pool->installed)
268         {
269           /* check if we're obsoleted by pseudos only */
270           if (obsoleted_by_pseudos_only(trans, s - pool->solvables))
271             return SOLVER_TRANSACTION_ERASE;
272           return SOLVER_TRANSACTION_IGNORE;     /* ignore as we're being obsoleted */
273         }
274       if (type == SOLVER_TRANSACTION_MULTIREINSTALL)
275         return SOLVER_TRANSACTION_MULTIINSTALL;
276       return SOLVER_TRANSACTION_INSTALL;
277     }
278
279   if ((mode & SOLVER_TRANSACTION_SHOW_MULTIINSTALL) == 0)
280     {
281       /* application wants to make no difference between install
282        * and multiinstall */
283       if (type == SOLVER_TRANSACTION_MULTIINSTALL)
284         type = SOLVER_TRANSACTION_INSTALL;
285       if (type == SOLVER_TRANSACTION_MULTIREINSTALL)
286         type = SOLVER_TRANSACTION_REINSTALL;
287     }
288
289   if ((mode & SOLVER_TRANSACTION_CHANGE_IS_REINSTALL) != 0)
290     {
291       /* application wants to make no difference between change
292        * and reinstall */
293       if (type == SOLVER_TRANSACTION_CHANGED)
294         type = SOLVER_TRANSACTION_REINSTALLED;
295       else if (type == SOLVER_TRANSACTION_CHANGE)
296         type = SOLVER_TRANSACTION_REINSTALL;
297     }
298
299   if (type == SOLVER_TRANSACTION_ERASE || type == SOLVER_TRANSACTION_INSTALL || type == SOLVER_TRANSACTION_MULTIINSTALL)
300     return type;
301
302   if (s->repo == pool->installed && (mode & SOLVER_TRANSACTION_SHOW_ACTIVE) == 0)
303     {
304       /* erase element and we're showing the passive side */
305       if (type == SOLVER_TRANSACTION_OBSOLETED && (mode & SOLVER_TRANSACTION_SHOW_OBSOLETES) == 0)
306         type = SOLVER_TRANSACTION_ERASE;
307       if (type == SOLVER_TRANSACTION_OBSOLETED && (mode & SOLVER_TRANSACTION_OBSOLETE_IS_UPGRADE) != 0)
308         type = SOLVER_TRANSACTION_UPGRADED;
309       return type;
310     }
311   if (s->repo != pool->installed && (mode & SOLVER_TRANSACTION_SHOW_ACTIVE) != 0)
312     {
313       /* install element and we're showing the active side */
314       if (type == SOLVER_TRANSACTION_OBSOLETES && (mode & SOLVER_TRANSACTION_SHOW_OBSOLETES) == 0)
315         type = SOLVER_TRANSACTION_INSTALL;
316       if (type == SOLVER_TRANSACTION_OBSOLETES && (mode & SOLVER_TRANSACTION_OBSOLETE_IS_UPGRADE) != 0)
317         type = SOLVER_TRANSACTION_UPGRADE;
318       return type;
319     }
320
321   /* the element doesn't match the show mode */
322
323   /* if we're showing all references, we can ignore this package */
324   if ((mode & (SOLVER_TRANSACTION_SHOW_ALL|SOLVER_TRANSACTION_SHOW_OBSOLETES)) == (SOLVER_TRANSACTION_SHOW_ALL|SOLVER_TRANSACTION_SHOW_OBSOLETES))
325     return SOLVER_TRANSACTION_IGNORE;
326
327   /* we're not showing all refs. check if some other package
328    * references us. If yes, it's safe to ignore this package,
329    * otherwise we need to map the type */
330
331   /* most of the time there's only one reference, so check it first */
332   q = transaction_obs_pkg(trans, p);
333
334   if ((mode & SOLVER_TRANSACTION_SHOW_OBSOLETES) == 0)
335     {
336       Solvable *sq = pool->solvables + q;
337       if (sq->name != s->name)
338         {
339           /* it's a replace but we're not showing replaces. map type. */
340           if (s->repo == pool->installed)
341             return SOLVER_TRANSACTION_ERASE;
342           else if (type == SOLVER_TRANSACTION_MULTIREINSTALL)
343             return SOLVER_TRANSACTION_MULTIINSTALL;
344           else
345             return SOLVER_TRANSACTION_INSTALL;
346         }
347     }
348   
349   /* if there's a match, p will be shown when q
350    * is processed */
351   if (transaction_obs_pkg(trans, q) == p)
352     return SOLVER_TRANSACTION_IGNORE;
353
354   /* too bad, a miss. check em all */
355   queue_init(&oq);
356   queue_init(&rq);
357   transaction_all_obs_pkgs(trans, p, &oq);
358   for (i = 0; i < oq.count; i++)
359     {
360       q = oq.elements[i];
361       if ((mode & SOLVER_TRANSACTION_SHOW_OBSOLETES) == 0)
362         {
363           Solvable *sq = pool->solvables + q;
364           if (sq->name != s->name)
365             continue;
366         }
367       /* check if we are referenced? */
368       if ((mode & SOLVER_TRANSACTION_SHOW_ALL) != 0)
369         {
370           transaction_all_obs_pkgs(trans, q, &rq);
371           for (j = 0; j < rq.count; j++)
372             if (rq.elements[j] == p)
373               {
374                 ref = 1;
375                 break;
376               }
377           if (ref)
378             break;
379         }
380       else if (transaction_obs_pkg(trans, q) == p)
381         {
382           ref = 1;
383           break;
384         }
385     }
386   queue_free(&oq);
387   queue_free(&rq);
388
389   if (!ref)
390     {
391       /* we're not referenced. map type */
392       if (s->repo == pool->installed)
393         return SOLVER_TRANSACTION_ERASE;
394       else if (type == SOLVER_TRANSACTION_MULTIREINSTALL)
395         return SOLVER_TRANSACTION_MULTIINSTALL;
396       else
397         return SOLVER_TRANSACTION_INSTALL;
398     }
399   /* there was a ref, so p is shown with some other package */
400   return SOLVER_TRANSACTION_IGNORE;
401 }
402
403
404
405 static int
406 classify_cmp(const void *ap, const void *bp, void *dp)
407 {
408   Transaction *trans = dp;
409   Pool *pool = trans->pool;
410   const Id *a = ap;
411   const Id *b = bp;
412   int r;
413
414   r = a[0] - b[0];
415   if (r)
416     return r;
417   r = a[2] - b[2];
418   if (r)
419     return a[2] && b[2] ? strcmp(pool_id2str(pool, a[2]), pool_id2str(pool, b[2])) : r;
420   r = a[3] - b[3];
421   if (r)
422     return a[3] && b[3] ? strcmp(pool_id2str(pool, a[3]), pool_id2str(pool, b[3])) : r;
423   return 0;
424 }
425
426 static int
427 classify_cmp_pkgs(const void *ap, const void *bp, void *dp)
428 {
429   Transaction *trans = dp;
430   Pool *pool = trans->pool;
431   Id a = *(Id *)ap;
432   Id b = *(Id *)bp;
433   Solvable *sa, *sb;
434
435   sa = pool->solvables + a;
436   sb = pool->solvables + b;
437   if (sa->name != sb->name)
438     return strcmp(pool_id2str(pool, sa->name), pool_id2str(pool, sb->name));
439   if (sa->evr != sb->evr)
440     {
441       int r = pool_evrcmp(pool, sa->evr, sb->evr, EVRCMP_COMPARE);
442       if (r)
443         return r;
444     }
445   return a - b;
446 }
447
448 void
449 transaction_classify(Transaction *trans, int mode, Queue *classes)
450 {
451   Pool *pool = trans->pool;
452   int ntypes[SOLVER_TRANSACTION_MAXTYPE + 1];
453   Solvable *s, *sq;
454   Id v, vq, type, p, q;
455   int i, j;
456
457   queue_empty(classes);
458   memset(ntypes, 0, sizeof(ntypes));
459   /* go through transaction and classify each step */
460   for (i = 0; i < trans->steps.count; i++)
461     {
462       p = trans->steps.elements[i];
463       s = pool->solvables + p;
464       type = transaction_type(trans, p, mode);
465       ntypes[type]++;
466       if (!pool->installed || s->repo != pool->installed)
467         continue;
468       /* don't report vendor/arch changes if we were mapped to erase. */
469       if (type == SOLVER_TRANSACTION_ERASE)
470         continue;
471       /* look at arch/vendor changes */
472       q = transaction_obs_pkg(trans, p);
473       if (!q)
474         continue;
475       sq = pool->solvables + q;
476
477       v = s->arch;
478       vq = sq->arch;
479       if (v != vq)
480         {
481           if ((mode & SOLVER_TRANSACTION_MERGE_ARCHCHANGES) != 0)
482             v = vq = 0;
483           for (j = 0; j < classes->count; j += 4)
484             if (classes->elements[j] == SOLVER_TRANSACTION_ARCHCHANGE && classes->elements[j + 2] == v && classes->elements[j + 3] == vq)
485               break;
486           if (j == classes->count)
487             {
488               queue_push(classes, SOLVER_TRANSACTION_ARCHCHANGE);
489               queue_push(classes, 1);
490               queue_push(classes, v);
491               queue_push(classes, vq);
492             }
493           else
494             classes->elements[j + 1]++;
495         }
496
497       v = s->vendor ? s->vendor : 1;
498       vq = sq->vendor ? sq->vendor : 1;
499       if (v != vq)
500         {
501           if ((mode & SOLVER_TRANSACTION_MERGE_VENDORCHANGES) != 0)
502             v = vq = 0;
503           for (j = 0; j < classes->count; j += 4)
504             if (classes->elements[j] == SOLVER_TRANSACTION_VENDORCHANGE && classes->elements[j + 2] == v && classes->elements[j + 3] == vq)
505               break;
506           if (j == classes->count)
507             {
508               queue_push(classes, SOLVER_TRANSACTION_VENDORCHANGE);
509               queue_push(classes, 1);
510               queue_push(classes, v);
511               queue_push(classes, vq);
512             }
513           else
514             classes->elements[j + 1]++;
515         }
516     }
517   /* now sort all vendor/arch changes */
518   if (classes->count > 4)
519     solv_sort(classes->elements, classes->count / 4, 4 * sizeof(Id), classify_cmp, trans);
520   /* finally add all classes. put erases last */
521   i = SOLVER_TRANSACTION_ERASE;
522   if (ntypes[i])
523     {
524       queue_unshift(classes, 0);
525       queue_unshift(classes, 0);
526       queue_unshift(classes, ntypes[i]);
527       queue_unshift(classes, i);
528     }
529   for (i = SOLVER_TRANSACTION_MAXTYPE; i > 0; i--)
530     {
531       if (!ntypes[i])
532         continue;
533       if (i == SOLVER_TRANSACTION_ERASE)
534         continue;
535       queue_unshift(classes, 0);
536       queue_unshift(classes, 0);
537       queue_unshift(classes, ntypes[i]);
538       queue_unshift(classes, i);
539     }
540 }
541
542 void
543 transaction_classify_pkgs(Transaction *trans, int mode, Id class, Id from, Id to, Queue *pkgs)
544 {
545   Pool *pool = trans->pool;
546   int i;
547   Id type, p, q;
548   Solvable *s, *sq;
549
550   queue_empty(pkgs);
551   for (i = 0; i < trans->steps.count; i++)
552     {
553       p = trans->steps.elements[i];
554       s = pool->solvables + p;
555       if (class <= SOLVER_TRANSACTION_MAXTYPE)
556         {
557           type = transaction_type(trans, p, mode);
558           if (type == class)
559             queue_push(pkgs, p);
560           continue;
561         }
562       if (!pool->installed || s->repo != pool->installed)
563         continue;
564       q = transaction_obs_pkg(trans, p);
565       if (!q)
566         continue;
567       sq = pool->solvables + q;
568       if (class == SOLVER_TRANSACTION_ARCHCHANGE)
569         {
570           if ((!from && !to) || (s->arch == from && sq->arch == to))
571             queue_push(pkgs, p);
572           continue;
573         }
574       if (class == SOLVER_TRANSACTION_VENDORCHANGE)
575         {
576           Id v = s->vendor ? s->vendor : 1;
577           Id vq = sq->vendor ? sq->vendor : 1;
578           if ((!from && !to) || (v == from && vq == to))
579             queue_push(pkgs, p);
580           continue;
581         }
582     }
583   if (pkgs->count > 1)
584     solv_sort(pkgs->elements, pkgs->count, sizeof(Id), classify_cmp_pkgs, trans);
585 }
586
587 static void
588 create_transaction_info(Transaction *trans, Queue *decisionq)
589 {
590   Pool *pool = trans->pool;
591   Queue *ti = &trans->transaction_info;
592   Repo *installed = pool->installed;
593   int i, j, multi;
594   Id p, p2, pp2;
595   Solvable *s, *s2;
596
597   queue_empty(ti);
598   trans->transaction_installed = solv_free(trans->transaction_installed);
599   if (!installed)
600     return;     /* no info needed */
601   for (i = 0; i < decisionq->count; i++)
602     {
603       p = decisionq->elements[i];
604       if (p <= 0 || p == SYSTEMSOLVABLE)
605         continue;
606       s = pool->solvables + p;
607       if (!s->repo || s->repo == installed)
608         continue;
609       multi = trans->multiversionmap.size && MAPTST(&trans->multiversionmap, p);
610       FOR_PROVIDES(p2, pp2, s->name)
611         {
612           if (!MAPTST(&trans->transactsmap, p2))
613             continue;
614           s2 = pool->solvables + p2;
615           if (s2->repo != installed)
616             continue;
617           if (multi && (s->name != s2->name || s->evr != s2->evr || s->arch != s2->arch))
618             continue;
619           if (!pool->implicitobsoleteusesprovides && s->name != s2->name)
620             continue;
621           if (pool->implicitobsoleteusescolors && !pool_colormatch(pool, s, s2))
622             continue;
623           queue_push2(ti, p, p2);
624         }
625       if (s->obsoletes && (!multi || !pool->noobsoletesmultiversion))
626         {
627           Id obs, *obsp = s->repo->idarraydata + s->obsoletes;
628           while ((obs = *obsp++) != 0)
629             {
630               FOR_PROVIDES(p2, pp2, obs)
631                 {
632                   if (!MAPTST(&trans->transactsmap, p2))
633                     continue;
634                   s2 = pool->solvables + p2;
635                   if (s2->repo != installed)
636                     continue;
637                   if (!pool->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p2, obs))
638                     continue;
639                   if (pool->obsoleteusescolors && !pool_colormatch(pool, s, s2))
640                     continue;
641                   queue_push2(ti, p, p2);
642                 }
643             }
644         }
645     }
646   if (ti->count > 2)
647     {
648       /* sort and unify */
649       solv_sort(ti->elements, ti->count / 2, 2 * sizeof(Id), obsq_sortcmp, pool);
650       for (i = j = 2; i < ti->count; i += 2)
651         {
652           if (ti->elements[i] == ti->elements[j - 2] && ti->elements[i + 1] == ti->elements[j - 1])
653             continue;
654           ti->elements[j++] = ti->elements[i];
655           ti->elements[j++] = ti->elements[i + 1];
656         }
657       queue_truncate(ti, j);
658     }
659
660   /* create transaction_installed helper */
661   /*   entry > 0: exactly one obsoleter, entry < 0: multiple obsoleters, -entry is "best" */
662   trans->transaction_installed = solv_calloc(installed->end - installed->start, sizeof(Id));
663   for (i = 0; i < ti->count; i += 2)
664     {
665       j = ti->elements[i + 1] - installed->start;
666       if (!trans->transaction_installed[j])
667         trans->transaction_installed[j] = ti->elements[i];
668       else
669         {
670           /* more than one package obsoletes us. compare to find "best" */
671           Id q[4];
672           if (trans->transaction_installed[j] > 0)
673             trans->transaction_installed[j] = -trans->transaction_installed[j];
674           q[0] = q[2] = ti->elements[i + 1];
675           q[1] = ti->elements[i];
676           q[3] = -trans->transaction_installed[j];
677           if (obsq_sortcmp(q, q + 2, pool) < 0)
678             trans->transaction_installed[j] = -ti->elements[i];
679         }
680     }
681 }
682
683
684 Transaction *
685 transaction_create_decisionq(Pool *pool, Queue *decisionq, Map *multiversionmap)
686 {
687   Repo *installed = pool->installed;
688   int i, needmulti;
689   Id p;
690   Solvable *s;
691   Transaction *trans;
692
693   trans = transaction_create(pool);
694   if (multiversionmap && !multiversionmap->size)
695     multiversionmap = 0;        /* ignore empty map */
696   queue_empty(&trans->steps);
697   map_init(&trans->transactsmap, pool->nsolvables);
698   needmulti = 0;
699   for (i = 0; i < decisionq->count; i++)
700     {
701       p = decisionq->elements[i];
702       s = pool->solvables + (p > 0 ? p : -p);
703       if (!s->repo)
704         continue;
705       if (installed && s->repo == installed && p < 0)
706         MAPSET(&trans->transactsmap, -p);
707       if ((!installed || s->repo != installed) && p > 0)
708         {
709 #if 0
710           const char *n = pool_id2str(pool, s->name);
711           if (!strncmp(n, "patch:", 6))
712             continue;
713           if (!strncmp(n, "pattern:", 8))
714             continue;
715 #endif
716           MAPSET(&trans->transactsmap, p);
717           if (multiversionmap && MAPTST(multiversionmap, p))
718             needmulti = 1;
719         }
720     }
721   MAPCLR(&trans->transactsmap, SYSTEMSOLVABLE);
722   if (needmulti)
723     map_init_clone(&trans->multiversionmap, multiversionmap);
724
725   create_transaction_info(trans, decisionq);
726
727   if (installed)
728     {
729       FOR_REPO_SOLVABLES(installed, p, s)
730         {
731           if (MAPTST(&trans->transactsmap, p))
732             queue_push(&trans->steps, p);
733         }
734     }
735   for (i = 0; i < decisionq->count; i++)
736     {
737       p = decisionq->elements[i];
738       if (p > 0 && MAPTST(&trans->transactsmap, p))
739         queue_push(&trans->steps, p);
740     }
741   return trans;
742 }
743
744 int
745 transaction_installedresult(Transaction *trans, Queue *installedq)
746 {
747   Pool *pool = trans->pool;
748   Repo *installed = pool->installed;
749   Solvable *s;
750   int i, cutoff;
751   Id p;
752
753   queue_empty(installedq);
754   /* first the new installs, than the kept packages */
755   for (i = 0; i < trans->steps.count; i++)
756     {
757       p = trans->steps.elements[i];
758       s = pool->solvables + p;
759       if (installed && s->repo == installed)
760         continue;
761       queue_push(installedq, p);
762     }
763   cutoff = installedq->count;
764   if (installed)
765     {
766       FOR_REPO_SOLVABLES(installed, p, s)
767         if (!MAPTST(&trans->transactsmap, p))
768           queue_push(installedq, p);
769     }
770   return cutoff;
771 }
772
773 static void
774 transaction_create_installedmap(Transaction *trans, Map *installedmap)
775 {
776   Pool *pool = trans->pool;
777   Repo *installed = pool->installed;
778   Solvable *s;
779   Id p;
780   int i;
781
782   map_init(installedmap, pool->nsolvables);
783   for (i = 0; i < trans->steps.count; i++)
784     {
785       p = trans->steps.elements[i];
786       s = pool->solvables + p;
787       if (!installed || s->repo != installed)
788         MAPSET(installedmap, p);
789     }
790   if (installed)
791     {
792       FOR_REPO_SOLVABLES(installed, p, s)
793         if (!MAPTST(&trans->transactsmap, p))
794           MAPSET(installedmap, p);
795     }
796 }
797
798 int
799 transaction_calc_installsizechange(Transaction *trans)
800 {
801   Map installedmap;
802   int change;
803
804   transaction_create_installedmap(trans, &installedmap);
805   change = pool_calc_installsizechange(trans->pool, &installedmap);
806   map_free(&installedmap);
807   return change;
808 }
809
810 void
811 transaction_calc_duchanges(Transaction *trans, DUChanges *mps, int nmps)
812 {
813   Map installedmap;
814
815   transaction_create_installedmap(trans, &installedmap);
816   pool_calc_duchanges(trans->pool, &installedmap, mps, nmps);
817   map_free(&installedmap);
818 }
819
820 struct _TransactionElement {
821   Id p;         /* solvable id */
822   Id edges;     /* pointer into edges data */
823   Id mark;
824 };
825
826 struct _TransactionOrderdata {
827   struct _TransactionElement *tes;
828   int ntes;
829   Id *invedgedata;
830   int ninvedgedata;
831 };
832
833 #define TYPE_BROKEN     (1<<0)
834 #define TYPE_CON        (1<<1)
835
836 #define TYPE_REQ_P      (1<<2)
837 #define TYPE_PREREQ_P   (1<<3)
838
839 #define TYPE_REQ        (1<<4)
840 #define TYPE_PREREQ     (1<<5)
841
842 #define TYPE_CYCLETAIL  (1<<16)
843 #define TYPE_CYCLEHEAD  (1<<17)
844
845 #define EDGEDATA_BLOCK  127
846
847 Transaction *
848 transaction_create(Pool *pool)
849 {
850   Transaction *trans = solv_calloc(1, sizeof(*trans));
851   trans->pool = pool;
852   return trans;
853 }
854
855 Transaction *
856 transaction_create_clone(Transaction *srctrans)
857 {
858   Transaction *trans = transaction_create(srctrans->pool);
859   queue_init_clone(&trans->steps, &srctrans->steps);
860   queue_init_clone(&trans->transaction_info, &srctrans->transaction_info);
861   if (srctrans->transaction_installed)
862     {
863       Repo *installed = srctrans->pool->installed;
864       trans->transaction_installed = solv_memdup2(srctrans->transaction_installed, installed->end - installed->start, sizeof(Id));
865     }
866   map_init_clone(&trans->transactsmap, &srctrans->transactsmap);
867   map_init_clone(&trans->multiversionmap, &srctrans->multiversionmap);
868   if (srctrans->orderdata)
869     {
870       struct _TransactionOrderdata *od = srctrans->orderdata;
871       trans->orderdata = solv_calloc(1, sizeof(*trans->orderdata));
872       trans->orderdata->tes = solv_memdup2(od->tes, od->ntes, sizeof(*od->tes));
873       trans->orderdata->ntes = od->ntes;
874       trans->orderdata->invedgedata = solv_memdup2(od->invedgedata, od->ninvedgedata, sizeof(Id));
875       trans->orderdata->ninvedgedata = od->ninvedgedata;
876     }
877   return trans;
878 }
879
880 void
881 transaction_free(Transaction *trans)
882 {
883   queue_free(&trans->steps);
884   queue_free(&trans->transaction_info);
885   trans->transaction_installed = solv_free(trans->transaction_installed);
886   map_free(&trans->transactsmap);
887   map_free(&trans->multiversionmap);
888   transaction_free_orderdata(trans);
889   free(trans);
890 }
891
892 void
893 transaction_free_orderdata(Transaction *trans)
894 {
895   if (trans->orderdata)
896     {
897       struct _TransactionOrderdata *od = trans->orderdata;
898       od->tes = solv_free(od->tes);
899       od->invedgedata = solv_free(od->invedgedata);
900       trans->orderdata = solv_free(trans->orderdata);
901     }
902 }
903
904 struct orderdata {
905   Transaction *trans;
906   struct _TransactionElement *tes;
907   int ntes;
908   Id *edgedata;
909   int nedgedata;
910   Id *invedgedata;
911
912   Queue cycles;
913   Queue cyclesdata;
914   int ncycles;
915 };
916
917 static int
918 addteedge(struct orderdata *od, int from, int to, int type)
919 {
920   int i;
921   struct _TransactionElement *te;
922
923   if (from == to)
924     return 0;
925
926   /* printf("edge %d(%s) -> %d(%s) type %x\n", from, pool_solvid2str(pool, od->tes[from].p), to, pool_solvid2str(pool, od->tes[to].p), type); */
927
928   te = od->tes + from;
929   for (i = te->edges; od->edgedata[i]; i += 2)
930     if (od->edgedata[i] == to)
931       break;
932   /* test of brokenness */
933   if (type == TYPE_BROKEN)
934     return od->edgedata[i] && (od->edgedata[i + 1] & TYPE_BROKEN) != 0 ? 1 : 0;
935   if (od->edgedata[i])
936     {
937       od->edgedata[i + 1] |= type;
938       return 0;
939     }
940   if (i + 1 == od->nedgedata)
941     {
942       /* printf("tail add %d\n", i - te->edges); */
943       if (!i)
944         te->edges = ++i;
945       od->edgedata = solv_extend(od->edgedata, od->nedgedata, 3, sizeof(Id), EDGEDATA_BLOCK);
946     }
947   else
948     {
949       /* printf("extend %d\n", i - te->edges); */
950       od->edgedata = solv_extend(od->edgedata, od->nedgedata, 3 + (i - te->edges), sizeof(Id), EDGEDATA_BLOCK);
951       if (i > te->edges)
952         memcpy(od->edgedata + od->nedgedata, od->edgedata + te->edges, sizeof(Id) * (i - te->edges));
953       i = od->nedgedata + (i - te->edges);
954       te->edges = od->nedgedata;
955     }
956   od->edgedata[i] = to;
957   od->edgedata[i + 1] = type;
958   od->edgedata[i + 2] = 0;      /* end marker */
959   od->nedgedata = i + 3;
960   return 0;
961 }
962
963 static int
964 addedge(struct orderdata *od, Id from, Id to, int type)
965 {
966   Transaction *trans = od->trans;
967   Pool *pool = trans->pool;
968   Solvable *s;
969   struct _TransactionElement *te;
970   int i;
971
972   /* printf("addedge %d %d type %d\n", from, to, type); */
973   s = pool->solvables + from;
974   if (s->repo == pool->installed && trans->transaction_installed[from - pool->installed->start])
975     {
976       /* obsolete, map to install */
977       if (trans->transaction_installed[from - pool->installed->start] > 0)
978         from = trans->transaction_installed[from - pool->installed->start];
979       else
980         {
981           int ret = 0;
982           Queue ti;
983           Id tibuf[5];
984
985           queue_init_buffer(&ti, tibuf, sizeof(tibuf)/sizeof(*tibuf));
986           transaction_all_obs_pkgs(trans, from, &ti);
987           for (i = 0; i < ti.count; i++)
988             ret |= addedge(od, ti.elements[i], to, type);
989           queue_free(&ti);
990           return ret;
991         }
992     }
993   s = pool->solvables + to;
994   if (s->repo == pool->installed && trans->transaction_installed[to - pool->installed->start])
995     {
996       /* obsolete, map to install */
997       if (trans->transaction_installed[to - pool->installed->start] > 0)
998         to = trans->transaction_installed[to - pool->installed->start];
999       else
1000         {
1001           int ret = 0;
1002           Queue ti;
1003           Id tibuf[5];
1004
1005           queue_init_buffer(&ti, tibuf, sizeof(tibuf)/sizeof(*tibuf));
1006           transaction_all_obs_pkgs(trans, to, &ti);
1007           for (i = 0; i < ti.count; i++)
1008             ret |= addedge(od, from, ti.elements[i], type);
1009           queue_free(&ti);
1010           return ret;
1011         }
1012     }
1013
1014   /* map from/to to te numbers */
1015   for (i = 1, te = od->tes + i; i < od->ntes; i++, te++)
1016     if (te->p == to)
1017       break;
1018   if (i == od->ntes)
1019     return 0;
1020   to = i;
1021
1022   for (i = 1, te = od->tes + i; i < od->ntes; i++, te++)
1023     if (te->p == from)
1024       break;
1025   if (i == od->ntes)
1026     return 0;
1027
1028   return addteedge(od, i, to, type);
1029 }
1030
1031 #if 1
1032 static int
1033 havechoice(struct orderdata *od, Id p, Id q1, Id q2)
1034 {
1035   Transaction *trans = od->trans;
1036   Pool *pool = trans->pool;
1037   Id ti1buf[5], ti2buf[5];
1038   Queue ti1, ti2;
1039   int i, j;
1040
1041   /* both q1 and q2 are uninstalls. check if their TEs intersect */
1042   /* common case: just one TE for both packages */
1043 #if 0
1044   printf("havechoice %d %d %d\n", p, q1, q2);
1045 #endif
1046   if (trans->transaction_installed[q1 - pool->installed->start] == 0)
1047     return 1;
1048   if (trans->transaction_installed[q2 - pool->installed->start] == 0)
1049     return 1;
1050   if (trans->transaction_installed[q1 - pool->installed->start] == trans->transaction_installed[q2 - pool->installed->start])
1051     return 0;
1052   if (trans->transaction_installed[q1 - pool->installed->start] > 0 && trans->transaction_installed[q2 - pool->installed->start] > 0)
1053     return 1;
1054   queue_init_buffer(&ti1, ti1buf, sizeof(ti1buf)/sizeof(*ti1buf));
1055   transaction_all_obs_pkgs(trans, q1, &ti1);
1056   queue_init_buffer(&ti2, ti2buf, sizeof(ti2buf)/sizeof(*ti2buf));
1057   transaction_all_obs_pkgs(trans, q2, &ti2);
1058   for (i = 0; i < ti1.count; i++)
1059     for (j = 0; j < ti2.count; j++)
1060       if (ti1.elements[i] == ti2.elements[j])
1061         {
1062           /* found a common edge */
1063           queue_free(&ti1);
1064           queue_free(&ti2);
1065           return 0;
1066         }
1067   queue_free(&ti1);
1068   queue_free(&ti2);
1069   return 1;
1070 }
1071 #endif
1072
1073 static inline int
1074 havescripts(Pool *pool, Id solvid)
1075 {
1076   Solvable *s = pool->solvables + solvid;
1077   const char *dep;
1078   if (s->requires)
1079     {
1080       Id req, *reqp;
1081       int inpre = 0;
1082       reqp = s->repo->idarraydata + s->requires;
1083       while ((req = *reqp++) != 0)
1084         {
1085           if (req == SOLVABLE_PREREQMARKER)
1086             {
1087               inpre = 1;
1088               continue;
1089             }
1090           if (!inpre)
1091             continue;
1092           dep = pool_id2str(pool, req);
1093           if (*dep == '/' && strcmp(dep, "/sbin/ldconfig") != 0)
1094             return 1;
1095         }
1096     }
1097   return 0;
1098 }
1099
1100 static void
1101 addsolvableedges(struct orderdata *od, Solvable *s)
1102 {
1103   Transaction *trans = od->trans;
1104   Pool *pool = trans->pool;
1105   Id req, *reqp, con, *conp;
1106   Id p, p2, pp2;
1107   int i, j, pre, numins;
1108   Repo *installed = pool->installed;
1109   Solvable *s2;
1110   Queue reqq;
1111   int provbyinst;
1112
1113 #if 0
1114   printf("addsolvableedges %s\n", pool_solvable2str(pool, s));
1115 #endif
1116   p = s - pool->solvables;
1117   queue_init(&reqq);
1118   if (s->requires)
1119     {
1120       reqp = s->repo->idarraydata + s->requires;
1121       pre = TYPE_REQ;
1122       while ((req = *reqp++) != 0)
1123         {
1124           if (req == SOLVABLE_PREREQMARKER)
1125             {
1126               pre = TYPE_PREREQ;
1127               continue;
1128             }
1129 #if 0
1130           if (pre != TYPE_PREREQ && installed && s->repo == installed)
1131             {
1132               /* ignore normal requires if we're getting obsoleted */
1133               if (trans->transaction_installed[p - pool->installed->start])
1134                 continue;
1135             }
1136 #endif
1137           queue_empty(&reqq);
1138           numins = 0;   /* number of packages to be installed providing it */
1139           provbyinst = 0;       /* provided by kept package */
1140           FOR_PROVIDES(p2, pp2, req)
1141             {
1142               s2 = pool->solvables + p2;
1143               if (p2 == p)
1144                 {
1145                   reqq.count = 0;       /* self provides */
1146                   break;
1147                 }
1148               if (s2->repo == installed && !MAPTST(&trans->transactsmap, p2))
1149                 {
1150                   provbyinst = 1;
1151 #if 0
1152                   printf("IGNORE inst provides %s by %s\n", pool_dep2str(pool, req), pool_solvable2str(pool, s2));
1153                   reqq.count = 0;       /* provided by package that stays installed */
1154                   break;
1155 #else
1156                   continue;
1157 #endif
1158                 }
1159               if (s2->repo != installed && !MAPTST(&trans->transactsmap, p2))
1160                 continue;               /* package stays uninstalled */
1161               
1162               if (s->repo == installed)
1163                 {
1164                   /* s gets uninstalled */
1165                   queue_pushunique(&reqq, p2);
1166                   if (s2->repo != installed)
1167                     numins++;
1168                 }
1169               else
1170                 {
1171                   if (s2->repo == installed)
1172                     continue;   /* s2 gets uninstalled */
1173                   queue_pushunique(&reqq, p2);
1174                 }
1175             }
1176           if (provbyinst)
1177             {
1178               /* prune to harmless ->inst edges */
1179               for (i = j = 0; i < reqq.count; i++)
1180                 if (pool->solvables[reqq.elements[i]].repo != installed)
1181                   reqq.elements[j++] = reqq.elements[i];
1182               reqq.count = j;
1183             }
1184
1185           if (numins && reqq.count)
1186             {
1187               if (s->repo == installed)
1188                 {
1189                   for (i = 0; i < reqq.count; i++)
1190                     {
1191                       if (pool->solvables[reqq.elements[i]].repo == installed)
1192                         {
1193                           for (j = 0; j < reqq.count; j++)
1194                             {
1195                               if (pool->solvables[reqq.elements[j]].repo != installed)
1196                                 {
1197                                   if (trans->transaction_installed[reqq.elements[i] - pool->installed->start] == reqq.elements[j])
1198                                     continue;   /* no self edge */
1199 #if 0
1200                                   printf("add interrreq uninst->inst edge (%s -> %s -> %s)\n", pool_solvid2str(pool, reqq.elements[i]), pool_dep2str(pool, req), pool_solvid2str(pool, reqq.elements[j]));
1201 #endif
1202                                   addedge(od, reqq.elements[i], reqq.elements[j], pre == TYPE_PREREQ ? TYPE_PREREQ_P : TYPE_REQ_P);
1203                                 }
1204                             }
1205                         }
1206                     }
1207                 }
1208               /* no mixed types, remove all deps on uninstalls */
1209               for (i = j = 0; i < reqq.count; i++)
1210                 if (pool->solvables[reqq.elements[i]].repo != installed)
1211                   reqq.elements[j++] = reqq.elements[i];
1212               reqq.count = j;
1213             }
1214           if (!reqq.count)
1215             continue;
1216           for (i = 0; i < reqq.count; i++)
1217             {
1218               int choice = 0;
1219               p2 = reqq.elements[i];
1220               if (pool->solvables[p2].repo != installed)
1221                 {
1222                   /* all elements of reqq are installs, thus have different TEs */
1223                   choice = reqq.count - 1;
1224                   if (pool->solvables[p].repo != installed)
1225                     {
1226 #if 0
1227                       printf("add inst->inst edge choice %d (%s -> %s -> %s)\n", choice, pool_solvid2str(pool, p), pool_dep2str(pool, req), pool_solvid2str(pool, p2));
1228 #endif
1229                       addedge(od, p, p2, pre);
1230                     }
1231                   else
1232                     {
1233 #if 0
1234                       printf("add uninst->inst edge choice %d (%s -> %s -> %s)\n", choice, pool_solvid2str(pool, p), pool_dep2str(pool, req), pool_solvid2str(pool, p2));
1235 #endif
1236                       addedge(od, p, p2, pre == TYPE_PREREQ ? TYPE_PREREQ_P : TYPE_REQ_P);
1237                     }
1238                 }
1239               else
1240                 {
1241                   if (s->repo != installed)
1242                     continue;   /* no inst->uninst edges, please! */
1243
1244                   /* uninst -> uninst edge. Those make trouble. Only add if we must */
1245                   if (trans->transaction_installed[p - installed->start] && !havescripts(pool, p))
1246                     {
1247                       /* p is obsoleted by another package and has no scripts */
1248                       /* we assume that the obsoletor is good enough to replace p */
1249                       continue;
1250                     }
1251 #if 1
1252                   choice = 0;
1253                   for (j = 0; j < reqq.count; j++)
1254                     {
1255                       if (i == j)
1256                         continue;
1257                       if (havechoice(od, p, reqq.elements[i], reqq.elements[j]))
1258                         choice++;
1259                     }
1260 #endif
1261 #if 0
1262                   printf("add uninst->uninst edge choice %d (%s -> %s -> %s)\n", choice, pool_solvid2str(pool, p), pool_dep2str(pool, req), pool_solvid2str(pool, p2));
1263 #endif
1264                   addedge(od, p2, p, pre == TYPE_PREREQ ? TYPE_PREREQ_P : TYPE_REQ_P);
1265                 }
1266             }
1267         }
1268     }
1269   if (s->conflicts)
1270     {
1271       conp = s->repo->idarraydata + s->conflicts;
1272       while ((con = *conp++) != 0)
1273         {
1274           FOR_PROVIDES(p2, pp2, con)
1275             {
1276               if (p2 == p)
1277                 continue;
1278               s2 = pool->solvables + p2;
1279               if (!s2->repo)
1280                 continue;
1281               if (s->repo == installed)
1282                 {
1283                   if (s2->repo != installed && MAPTST(&trans->transactsmap, p2))
1284                     {
1285                       /* deinstall p before installing p2 */
1286 #if 0
1287                       printf("add conflict uninst->inst edge (%s -> %s -> %s)\n", pool_solvid2str(pool, p2), pool_dep2str(pool, con), pool_solvid2str(pool, p));
1288 #endif
1289                       addedge(od, p2, p, TYPE_CON);
1290                     }
1291                 }
1292               else
1293                 {
1294                   if (s2->repo == installed && MAPTST(&trans->transactsmap, p2))
1295                     {
1296                       /* deinstall p2 before installing p */
1297 #if 0
1298                       printf("add conflict uninst->inst edge (%s -> %s -> %s)\n", pool_solvid2str(pool, p), pool_dep2str(pool, con), pool_solvid2str(pool, p2));
1299 #endif
1300                       addedge(od, p, p2, TYPE_CON);
1301                     }
1302                 }
1303
1304             }
1305         }
1306     }
1307   if (s->repo == installed && solvable_lookup_idarray(s, SOLVABLE_TRIGGERS, &reqq) && reqq.count)
1308     {
1309       /* we're getting deinstalled/updated. Try to do this before our
1310        * triggers are hit */
1311       for (i = 0; i < reqq.count; i++)
1312         {
1313           Id tri = reqq.elements[i];
1314           FOR_PROVIDES(p2, pp2, tri)
1315             {
1316               if (p2 == p)
1317                 continue;
1318               s2 = pool->solvables + p2;
1319               if (!s2->repo)
1320                 continue;
1321               if (s2->name == s->name)
1322                 continue;       /* obsoleted anyway */
1323               if (s2->repo != installed && MAPTST(&trans->transactsmap, p2))
1324                 {
1325                   /* deinstall/update p before installing p2 */
1326 #if 0
1327                   printf("add trigger uninst->inst edge (%s -> %s -> %s)\n", pool_solvid2str(pool, p2), pool_dep2str(pool, tri), pool_solvid2str(pool, p));
1328 #endif
1329                   addedge(od, p2, p, TYPE_CON);
1330                 }
1331             }
1332         }
1333     }
1334   queue_free(&reqq);
1335 }
1336
1337
1338 /* break an edge in a cycle */
1339 static void
1340 breakcycle(struct orderdata *od, Id *cycle)
1341 {
1342   Pool *pool = od->trans->pool;
1343   Id ddegmin, ddegmax, ddeg;
1344   int k, l;
1345   struct _TransactionElement *te;
1346
1347   l = 0;
1348   ddegmin = ddegmax = 0;
1349   for (k = 0; cycle[k + 1]; k += 2)
1350     {
1351       ddeg = od->edgedata[cycle[k + 1] + 1];
1352       if (ddeg > ddegmax)
1353         ddegmax = ddeg;
1354       if (!k || ddeg < ddegmin)
1355         {
1356           l = k;
1357           ddegmin = ddeg;
1358           continue;
1359         }
1360       if (ddeg == ddegmin)
1361         {
1362           if (havescripts(pool, od->tes[cycle[l]].p) && !havescripts(pool, od->tes[cycle[k]].p))
1363             {
1364               /* prefer k, as l comes from a package with contains scriptlets */
1365               l = k;
1366               ddegmin = ddeg;
1367               continue;
1368             }
1369           /* same edge value, check for prereq */
1370         }
1371     }
1372
1373   /* record brkoen cycle starting with the tail */
1374   queue_push(&od->cycles, od->cyclesdata.count);                /* offset into data */
1375   queue_push(&od->cycles, k / 2);                               /* cycle elements */
1376   queue_push(&od->cycles, od->edgedata[cycle[l + 1] + 1]);      /* broken edge */
1377   od->ncycles++;
1378   for (k = l;;)
1379     {
1380       k += 2;
1381       if (!cycle[k + 1])
1382         k = 0;
1383       queue_push(&od->cyclesdata, cycle[k]);
1384       if (k == l)
1385         break;
1386     }
1387   queue_push(&od->cyclesdata, 0);       /* mark end */
1388
1389   /* break that edge */
1390   od->edgedata[cycle[l + 1] + 1] |= TYPE_BROKEN;
1391
1392 #if 1
1393   if (ddegmin < TYPE_REQ)
1394     return;
1395 #endif
1396
1397   /* cycle recorded, print it */
1398   if (ddegmin >= TYPE_REQ && (ddegmax & TYPE_PREREQ) != 0)
1399     POOL_DEBUG(SOLV_DEBUG_STATS, "CRITICAL ");
1400   POOL_DEBUG(SOLV_DEBUG_STATS, "cycle: --> ");
1401   for (k = 0; cycle[k + 1]; k += 2)
1402     {
1403       te = od->tes +  cycle[k];
1404       if ((od->edgedata[cycle[k + 1] + 1] & TYPE_BROKEN) != 0)
1405         POOL_DEBUG(SOLV_DEBUG_STATS, "%s ##%x##> ", pool_solvid2str(pool, te->p), od->edgedata[cycle[k + 1] + 1]);
1406       else
1407         POOL_DEBUG(SOLV_DEBUG_STATS, "%s --%x--> ", pool_solvid2str(pool, te->p), od->edgedata[cycle[k + 1] + 1]);
1408     }
1409   POOL_DEBUG(SOLV_DEBUG_STATS, "\n");
1410 }
1411
1412 static inline void
1413 dump_tes(struct orderdata *od)
1414 {
1415   Pool *pool = od->trans->pool;
1416   int i, j;
1417   Queue obsq;
1418   struct _TransactionElement *te, *te2;
1419
1420   queue_init(&obsq);
1421   for (i = 1, te = od->tes + i; i < od->ntes; i++, te++)
1422     {
1423       Solvable *s = pool->solvables + te->p;
1424       POOL_DEBUG(SOLV_DEBUG_RESULT, "TE %4d: %c%s\n", i, s->repo == pool->installed ? '-' : '+', pool_solvable2str(pool, s));
1425       if (s->repo != pool->installed)
1426         {
1427           queue_empty(&obsq);
1428           transaction_all_obs_pkgs(od->trans, te->p, &obsq);
1429           for (j = 0; j < obsq.count; j++)
1430             POOL_DEBUG(SOLV_DEBUG_RESULT, "         -%s\n", pool_solvid2str(pool, obsq.elements[j]));
1431         }
1432       for (j = te->edges; od->edgedata[j]; j += 2)
1433         {
1434           te2 = od->tes + od->edgedata[j];
1435           if ((od->edgedata[j + 1] & TYPE_BROKEN) == 0)
1436             POOL_DEBUG(SOLV_DEBUG_RESULT, "       --%x--> TE %4d: %s\n", od->edgedata[j + 1], od->edgedata[j], pool_solvid2str(pool, te2->p));
1437           else
1438             POOL_DEBUG(SOLV_DEBUG_RESULT, "       ##%x##> TE %4d: %s\n", od->edgedata[j + 1], od->edgedata[j], pool_solvid2str(pool, te2->p));
1439         }
1440     }
1441 }
1442
1443 #if 1
1444 static void
1445 reachable(struct orderdata *od, Id i)
1446 {
1447   struct _TransactionElement *te = od->tes + i;
1448   int j, k;
1449
1450   if (te->mark != 0)
1451     return;
1452   te->mark = 1;
1453   for (j = te->edges; (k = od->edgedata[j]) != 0; j += 2)
1454     {
1455       if ((od->edgedata[j + 1] & TYPE_BROKEN) != 0)
1456         continue;
1457       if (!od->tes[k].mark)
1458         reachable(od, k);
1459       if (od->tes[k].mark == 2)
1460         {
1461           te->mark = 2;
1462           return;
1463         }
1464     }
1465   te->mark = -1;
1466 }
1467 #endif
1468
1469 static void
1470 addcycleedges(struct orderdata *od, Id *cycle, Queue *todo)
1471 {
1472 #if 0
1473   Transaction *trans = od->trans;
1474   Pool *pool = trans->pool;
1475 #endif
1476   struct _TransactionElement *te;
1477   int i, j, k, tail;
1478 #if 1
1479   int head;
1480 #endif
1481
1482 #if 0
1483   printf("addcycleedges\n");
1484   for (i = 0; (j = cycle[i]) != 0; i++)
1485     printf("cycle %s\n", pool_solvid2str(pool, od->tes[j].p));
1486 #endif
1487
1488   /* first add all the tail cycle edges */
1489
1490   /* see what we can reach from the cycle */
1491   queue_empty(todo);
1492   for (i = 1, te = od->tes + i; i < od->ntes; i++, te++)
1493     te->mark = 0;
1494   for (i = 0; (j = cycle[i]) != 0; i++)
1495     {
1496       od->tes[j].mark = -1;
1497       queue_push(todo, j);
1498     }
1499   while (todo->count)
1500     {
1501       i = queue_pop(todo);
1502       te = od->tes + i;
1503       if (te->mark > 0)
1504         continue;
1505       te->mark = te->mark < 0 ? 2 : 1;
1506       for (j = te->edges; (k = od->edgedata[j]) != 0; j += 2)
1507         {
1508           if ((od->edgedata[j + 1] & TYPE_BROKEN) != 0)
1509             continue;
1510           if (od->tes[k].mark > 0)
1511             continue;   /* no need to visit again */
1512           queue_push(todo, k);
1513         }
1514     }
1515   /* now all cycle TEs are marked with 2, all TEs reachable
1516    * from the cycle are marked with 1 */
1517   tail = cycle[0];
1518   od->tes[tail].mark = 1;       /* no need to add edges */
1519
1520   for (i = 1, te = od->tes + i; i < od->ntes; i++, te++)
1521     {
1522       if (te->mark)
1523         continue;       /* reachable from cycle */
1524       for (j = te->edges; (k = od->edgedata[j]) != 0; j += 2)
1525         {
1526           if ((od->edgedata[j + 1] & TYPE_BROKEN) != 0)
1527             continue;
1528           if (od->tes[k].mark != 2)
1529             continue;
1530           /* We found an edge to the cycle. Add an extra edge to the tail */
1531           /* the TE was not reachable, so we're not creating a new cycle! */
1532 #if 0
1533           printf("adding TO TAIL cycle edge %d->%d %s->%s!\n", i, tail, pool_solvid2str(pool, od->tes[i].p), pool_solvid2str(pool, od->tes[tail].p));
1534 #endif
1535           j -= te->edges;       /* in case we move */
1536           addteedge(od, i, tail, TYPE_CYCLETAIL);
1537           j += te->edges;
1538           break;        /* one edge is enough */
1539         }
1540     }
1541
1542 #if 1
1543   /* now add all head cycle edges */
1544
1545   /* reset marks */
1546   for (i = 1, te = od->tes + i; i < od->ntes; i++, te++)
1547     te->mark = 0;
1548   head = 0;
1549   for (i = 0; (j = cycle[i]) != 0; i++)
1550     {
1551       head = j;
1552       od->tes[j].mark = 2;
1553     }
1554   /* first the head to save some time */
1555   te = od->tes + head;
1556   for (j = te->edges; (k = od->edgedata[j]) != 0; j += 2)
1557     {
1558       if ((od->edgedata[j + 1] & TYPE_BROKEN) != 0)
1559         continue;
1560       if (!od->tes[k].mark)
1561         reachable(od, k);
1562       if (od->tes[k].mark == -1)
1563         od->tes[k].mark = -2;   /* no need for another edge */
1564     }
1565   for (i = 0; cycle[i] != 0; i++)
1566     {
1567       if (cycle[i] == head)
1568         break;
1569       te = od->tes + cycle[i];
1570       for (j = te->edges; (k = od->edgedata[j]) != 0; j += 2)
1571         {
1572           if ((od->edgedata[j + 1] & TYPE_BROKEN) != 0)
1573             continue;
1574           /* see if we can reach a cycle TE from k */
1575           if (!od->tes[k].mark)
1576             reachable(od, k);
1577           if (od->tes[k].mark == -1)
1578             {
1579 #if 0
1580               printf("adding FROM HEAD cycle edge %d->%d %s->%s [%s]!\n", head, k, pool_solvid2str(pool, od->tes[head].p), pool_solvid2str(pool, od->tes[k].p), pool_solvid2str(pool, od->tes[cycle[i]].p));
1581 #endif
1582               addteedge(od, head, k, TYPE_CYCLEHEAD);
1583               od->tes[k].mark = -2;     /* no need to add that one again */
1584             }
1585         }
1586     }
1587 #endif
1588 }
1589
1590 void
1591 transaction_order(Transaction *trans, int flags)
1592 {
1593   Pool *pool = trans->pool;
1594   Queue *tr = &trans->steps;
1595   Repo *installed = pool->installed;
1596   Id p;
1597   Solvable *s;
1598   int i, j, k, numte, numedge;
1599   struct orderdata od;
1600   struct _TransactionElement *te;
1601   Queue todo, obsq, samerepoq, uninstq;
1602   int cycstart, cycel;
1603   Id *cycle;
1604   int oldcount;
1605   int start, now;
1606   Repo *lastrepo;
1607   int lastmedia;
1608   Id *temedianr;
1609
1610   start = now = solv_timems(0);
1611   POOL_DEBUG(SOLV_DEBUG_STATS, "ordering transaction\n");
1612   /* free old data if present */
1613   if (trans->orderdata)
1614     {
1615       struct _TransactionOrderdata *od = trans->orderdata;
1616       od->tes = solv_free(od->tes);
1617       od->invedgedata = solv_free(od->invedgedata);
1618       trans->orderdata = solv_free(trans->orderdata);
1619     }
1620
1621   /* create a transaction element for every active component */
1622   numte = 0;
1623   for (i = 0; i < tr->count; i++)
1624     {
1625       p = tr->elements[i];
1626       s = pool->solvables + p;
1627       if (installed && s->repo == installed && trans->transaction_installed[p - installed->start])
1628         continue;
1629       numte++;
1630     }
1631   POOL_DEBUG(SOLV_DEBUG_STATS, "transaction elements: %d\n", numte);
1632   if (!numte)
1633     return;     /* nothing to do... */
1634
1635   numte++;      /* leave first one zero */
1636   memset(&od, 0, sizeof(od));
1637   od.trans = trans;
1638   od.ntes = numte;
1639   od.tes = solv_calloc(numte, sizeof(*od.tes));
1640   od.edgedata = solv_extend(0, 0, 1, sizeof(Id), EDGEDATA_BLOCK);
1641   od.edgedata[0] = 0;
1642   od.nedgedata = 1;
1643   queue_init(&od.cycles);
1644
1645   /* initialize TEs */
1646   for (i = 0, te = od.tes + 1; i < tr->count; i++)
1647     {
1648       p = tr->elements[i];
1649       s = pool->solvables + p;
1650       if (installed && s->repo == installed && trans->transaction_installed[p - installed->start])
1651         continue;
1652       te->p = p;
1653       te++;
1654     }
1655
1656   /* create dependency graph */
1657   for (i = 0; i < tr->count; i++)
1658     addsolvableedges(&od, pool->solvables + tr->elements[i]);
1659
1660   /* count edges */
1661   numedge = 0;
1662   for (i = 1, te = od.tes + i; i < numte; i++, te++)
1663     for (j = te->edges; od.edgedata[j]; j += 2)
1664       numedge++;
1665   POOL_DEBUG(SOLV_DEBUG_STATS, "edges: %d, edge space: %d\n", numedge, od.nedgedata / 2);
1666   POOL_DEBUG(SOLV_DEBUG_STATS, "edge creation took %d ms\n", solv_timems(now));
1667
1668 #if 0
1669   dump_tes(&od);
1670 #endif
1671   
1672   now = solv_timems(0);
1673   /* kill all cycles */
1674   queue_init(&todo);
1675   for (i = numte - 1; i > 0; i--)
1676     queue_push(&todo, i);
1677
1678   while (todo.count)
1679     {
1680       i = queue_pop(&todo);
1681       /* printf("- look at TE %d\n", i); */
1682       if (i < 0)
1683         {
1684           i = -i;
1685           od.tes[i].mark = 2;   /* done with that one */
1686           continue;
1687         }
1688       te = od.tes + i;
1689       if (te->mark == 2)
1690         continue;               /* already finished before */
1691       if (te->mark == 0)
1692         {
1693           int edgestovisit = 0;
1694           /* new node, visit edges */
1695           for (j = te->edges; (k = od.edgedata[j]) != 0; j += 2)
1696             {
1697               if ((od.edgedata[j + 1] & TYPE_BROKEN) != 0)
1698                 continue;
1699               if (od.tes[k].mark == 2)
1700                 continue;       /* no need to visit again */
1701               if (!edgestovisit++)
1702                 queue_push(&todo, -i);  /* end of edges marker */
1703               queue_push(&todo, k);
1704             }
1705           if (!edgestovisit)
1706             te->mark = 2;       /* no edges, done with that one */
1707           else
1708             te->mark = 1;       /* under investigation */
1709           continue;
1710         }
1711       /* oh no, we found a cycle */
1712       /* find start of cycle node (<0) */
1713       for (j = todo.count - 1; j >= 0; j--)
1714         if (todo.elements[j] == -i)
1715           break;
1716       assert(j >= 0);
1717       cycstart = j;
1718       /* build te/edge chain */
1719       k = cycstart;
1720       for (j = k; j < todo.count; j++)
1721         if (todo.elements[j] < 0)
1722           todo.elements[k++] = -todo.elements[j];
1723       cycel = k - cycstart;
1724       assert(cycel > 1);
1725       /* make room for edges, two extra element for cycle loop + terminating 0 */
1726       while (todo.count < cycstart + 2 * cycel + 2)
1727         queue_push(&todo, 0);
1728       cycle = todo.elements + cycstart;
1729       cycle[cycel] = i;         /* close the loop */
1730       cycle[2 * cycel + 1] = 0; /* terminator */
1731       for (k = cycel; k > 0; k--)
1732         {
1733           cycle[k * 2] = cycle[k];
1734           te = od.tes + cycle[k - 1];
1735           assert(te->mark == 1);
1736           te->mark = 0; /* reset investigation marker */
1737           /* printf("searching for edge from %d to %d\n", cycle[k - 1], cycle[k]); */
1738           for (j = te->edges; od.edgedata[j]; j += 2)
1739             if (od.edgedata[j] == cycle[k])
1740               break;
1741           assert(od.edgedata[j]);
1742           cycle[k * 2 - 1] = j;
1743         }
1744       /* now cycle looks like this: */
1745       /* te1 edge te2 edge te3 ... teN edge te1 0 */
1746       breakcycle(&od, cycle);
1747       /* restart with start of cycle */
1748       todo.count = cycstart + 1;
1749     }
1750   POOL_DEBUG(SOLV_DEBUG_STATS, "cycles broken: %d\n", od.ncycles);
1751   POOL_DEBUG(SOLV_DEBUG_STATS, "cycle breaking took %d ms\n", solv_timems(now));
1752
1753   now = solv_timems(0);
1754   /* now go through all broken cycles and create cycle edges to help
1755      the ordering */
1756    for (i = od.cycles.count - 3; i >= 0; i -= 3)
1757      {
1758        if (od.cycles.elements[i + 2] >= TYPE_REQ)
1759          addcycleedges(&od, od.cyclesdata.elements + od.cycles.elements[i], &todo);
1760      }
1761    for (i = od.cycles.count - 3; i >= 0; i -= 3)
1762      {
1763        if (od.cycles.elements[i + 2] < TYPE_REQ)
1764          addcycleedges(&od, od.cyclesdata.elements + od.cycles.elements[i], &todo);
1765      }
1766   POOL_DEBUG(SOLV_DEBUG_STATS, "cycle edge creation took %d ms\n", solv_timems(now));
1767
1768 #if 0
1769   dump_tes(&od);
1770 #endif
1771   /* all edges are finally set up and there are no cycles, now the easy part.
1772    * Create an ordered transaction */
1773   now = solv_timems(0);
1774   /* first invert all edges */
1775   for (i = 1, te = od.tes + i; i < numte; i++, te++)
1776     te->mark = 1;       /* term 0 */
1777   for (i = 1, te = od.tes + i; i < numte; i++, te++)
1778     {
1779       for (j = te->edges; od.edgedata[j]; j += 2)
1780         {
1781           if ((od.edgedata[j + 1] & TYPE_BROKEN) != 0)
1782             continue;
1783           od.tes[od.edgedata[j]].mark++;
1784         }
1785     }
1786   j = 1;
1787   for (i = 1, te = od.tes + i; i < numte; i++, te++)
1788     {
1789       te->mark += j;
1790       j = te->mark;
1791     }
1792   POOL_DEBUG(SOLV_DEBUG_STATS, "invedge space: %d\n", j + 1);
1793   od.invedgedata = solv_calloc(j + 1, sizeof(Id));
1794   for (i = 1, te = od.tes + i; i < numte; i++, te++)
1795     {
1796       for (j = te->edges; od.edgedata[j]; j += 2)
1797         {
1798           if ((od.edgedata[j + 1] & TYPE_BROKEN) != 0)
1799             continue;
1800           od.invedgedata[--od.tes[od.edgedata[j]].mark] = i;
1801         }
1802     }
1803   for (i = 1, te = od.tes + i; i < numte; i++, te++)
1804     te->edges = te->mark;       /* edges now points into invedgedata */
1805   od.edgedata = solv_free(od.edgedata);
1806   od.nedgedata = j + 1;
1807
1808   /* now the final ordering */
1809   for (i = 1, te = od.tes + i; i < numte; i++, te++)
1810     te->mark = 0;
1811   for (i = 1, te = od.tes + i; i < numte; i++, te++)
1812     for (j = te->edges; od.invedgedata[j]; j++)
1813       od.tes[od.invedgedata[j]].mark++;
1814
1815   queue_init(&samerepoq);
1816   queue_init(&uninstq);
1817   queue_empty(&todo);
1818   for (i = 1, te = od.tes + i; i < numte; i++, te++)
1819     if (te->mark == 0)
1820       {
1821         if (installed && pool->solvables[te->p].repo == installed)
1822           queue_push(&uninstq, i);
1823         else
1824           queue_push(&todo, i);
1825       }
1826   assert(todo.count > 0 || uninstq.count > 0);
1827   oldcount = tr->count;
1828   queue_empty(tr);
1829
1830   queue_init(&obsq);
1831   
1832   lastrepo = 0;
1833   lastmedia = 0;
1834   temedianr = solv_calloc(numte, sizeof(Id));
1835   for (i = 1; i < numte; i++)
1836     {
1837       Solvable *s = pool->solvables + od.tes[i].p;
1838       if (installed && s->repo == installed)
1839         j = 1;
1840       else
1841         j = solvable_lookup_num(s, SOLVABLE_MEDIANR, 1);
1842       temedianr[i] = j;
1843     }
1844   for (;;)
1845     {
1846       /* select an TE i */
1847       if (uninstq.count)
1848         i = queue_shift(&uninstq);
1849       else if (samerepoq.count)
1850         i = queue_shift(&samerepoq);
1851       else if (todo.count)
1852         {
1853           /* find next repo/media */
1854           for (j = 0; j < todo.count; j++)
1855             {
1856               if (!j || temedianr[todo.elements[j]] < lastmedia)
1857                 {
1858                   i = j;
1859                   lastmedia = temedianr[todo.elements[j]];
1860                 }
1861             }
1862           lastrepo = pool->solvables[od.tes[todo.elements[i]].p].repo;
1863
1864           /* move all matching TEs to samerepoq */
1865           for (i = j = 0; j < todo.count; j++)
1866             {
1867               int k = todo.elements[j];
1868               if (temedianr[k] == lastmedia && pool->solvables[od.tes[k].p].repo == lastrepo)
1869                 queue_push(&samerepoq, k);
1870               else
1871                 todo.elements[i++] = k;
1872             }
1873           todo.count = i;
1874
1875           assert(samerepoq.count);
1876           i = queue_shift(&samerepoq);
1877         }
1878       else
1879         break;
1880
1881       te = od.tes + i;
1882       queue_push(tr, te->p);
1883 #if 0
1884 printf("do %s [%d]\n", pool_solvid2str(pool, te->p), temedianr[i]);
1885 #endif
1886       s = pool->solvables + te->p;
1887       for (j = te->edges; od.invedgedata[j]; j++)
1888         {
1889           struct _TransactionElement *te2 = od.tes + od.invedgedata[j];
1890           assert(te2->mark > 0);
1891           if (--te2->mark == 0)
1892             {
1893               Solvable *s = pool->solvables + te2->p;
1894 #if 0
1895 printf("free %s [%d]\n", pool_solvid2str(pool, te2->p), temedianr[od.invedgedata[j]]);
1896 #endif
1897               if (installed && s->repo == installed)
1898                 queue_push(&uninstq, od.invedgedata[j]);
1899               else if (s->repo == lastrepo && temedianr[od.invedgedata[j]] == lastmedia)
1900                 queue_push(&samerepoq, od.invedgedata[j]);
1901               else
1902                 queue_push(&todo, od.invedgedata[j]);
1903             }
1904         }
1905     }
1906   solv_free(temedianr);
1907   queue_free(&todo);
1908   queue_free(&samerepoq);
1909   queue_free(&uninstq);
1910   queue_free(&obsq);
1911   for (i = 1, te = od.tes + i; i < numte; i++, te++)
1912     assert(te->mark == 0);
1913
1914   /* add back obsoleted packages */
1915   transaction_add_obsoleted(trans);
1916   assert(tr->count == oldcount);
1917
1918   POOL_DEBUG(SOLV_DEBUG_STATS, "creating new transaction took %d ms\n", solv_timems(now));
1919   POOL_DEBUG(SOLV_DEBUG_STATS, "transaction ordering took %d ms\n", solv_timems(start));
1920
1921   if ((flags & SOLVER_TRANSACTION_KEEP_ORDERDATA) != 0)
1922     {
1923       trans->orderdata = solv_calloc(1, sizeof(*trans->orderdata));
1924       trans->orderdata->tes = od.tes;
1925       trans->orderdata->ntes = numte;
1926       trans->orderdata->invedgedata = od.invedgedata;
1927       trans->orderdata->ninvedgedata = od.nedgedata;
1928     }
1929   else
1930     {
1931       solv_free(od.tes);
1932       solv_free(od.invedgedata);
1933     }
1934   queue_free(&od.cycles);
1935   queue_free(&od.cyclesdata);
1936 }
1937
1938
1939 int
1940 transaction_order_add_choices(Transaction *trans, Id chosen, Queue *choices)
1941 {
1942   int i, j;
1943   struct _TransactionOrderdata *od = trans->orderdata;
1944   struct _TransactionElement *te;
1945
1946   if (!od)
1947      return choices->count;
1948   if (!chosen)
1949     {
1950       /* initialization step */
1951       for (i = 1, te = od->tes + i; i < od->ntes; i++, te++)
1952         te->mark = 0;
1953       for (i = 1, te = od->tes + i; i < od->ntes; i++, te++)
1954         {
1955           for (j = te->edges; od->invedgedata[j]; j++)
1956             od->tes[od->invedgedata[j]].mark++;
1957         }
1958       for (i = 1, te = od->tes + i; i < od->ntes; i++, te++)
1959         if (!te->mark)
1960           queue_push(choices, te->p);
1961       return choices->count;
1962     }
1963   for (i = 1, te = od->tes + i; i < od->ntes; i++, te++)
1964     if (te->p == chosen)
1965       break;
1966   if (i == od->ntes)
1967     return choices->count;
1968   if (te->mark > 0)
1969     {
1970       /* hey! out-of-order installation! */
1971       te->mark = -1;
1972     }
1973   for (j = te->edges; od->invedgedata[j]; j++)
1974     {
1975       te = od->tes + od->invedgedata[j];
1976       assert(te->mark > 0 || te->mark == -1);
1977       if (te->mark > 0 && --te->mark == 0)
1978         queue_push(choices, te->p);
1979     }
1980   return choices->count;
1981 }
1982
1983 void
1984 transaction_add_obsoleted(Transaction *trans)
1985 {
1986   Pool *pool = trans->pool;
1987   Repo *installed = pool->installed;
1988   Id p;
1989   Solvable *s;
1990   int i, j, k, max;
1991   Map done;
1992   Queue obsq, *steps;
1993
1994   if (!installed || !trans->steps.count)
1995     return;
1996   /* calculate upper bound */
1997   max = 0;
1998   FOR_REPO_SOLVABLES(installed, p, s)
1999     if (MAPTST(&trans->transactsmap, p))
2000       max++;
2001   if (!max)
2002     return;
2003   /* make room */
2004   steps = &trans->steps;
2005   queue_insertn(steps, 0, max, 0);
2006
2007   /* now add em */
2008   map_init(&done, installed->end - installed->start);
2009   queue_init(&obsq);
2010   for (j = 0, i = max; i < steps->count; i++)
2011     {
2012       p = trans->steps.elements[i];
2013       if (pool->solvables[p].repo == installed)
2014         {
2015           if (!trans->transaction_installed[p - pool->installed->start])
2016             trans->steps.elements[j++] = p;
2017           continue;
2018         }
2019       trans->steps.elements[j++] = p;
2020       queue_empty(&obsq);
2021       transaction_all_obs_pkgs(trans, p, &obsq);
2022       for (k = 0; k < obsq.count; k++)
2023         {
2024           p = obsq.elements[k];
2025           assert(p >= installed->start && p < installed->end);
2026           if (!MAPTST(&trans->transactsmap, p)) /* just in case */
2027             continue;
2028           if (MAPTST(&done, p - installed->start))
2029             continue;
2030           MAPSET(&done, p - installed->start);
2031           trans->steps.elements[j++] = p;
2032         }
2033     }
2034
2035   /* free unneeded space */
2036   queue_truncate(steps, j);
2037   map_free(&done);
2038   queue_free(&obsq);
2039 }
2040
2041 static void
2042 transaction_check_pkg(Transaction *trans, Id tepkg, Id pkg, Map *ins, Map *seen, int onlyprereq, Id noconfpkg, int depth)
2043 {
2044   Pool *pool = trans->pool;
2045   Id p, pp;
2046   Solvable *s;
2047   int good;
2048
2049   if (MAPTST(seen, pkg))
2050     return;
2051   MAPSET(seen, pkg);
2052   s = pool->solvables + pkg;
2053 #if 0
2054   printf("- %*s%c%s\n", depth * 2, "", s->repo == pool->installed ? '-' : '+', pool_solvable2str(pool, s));
2055 #endif
2056   if (s->requires)
2057     {
2058       Id req, *reqp;
2059       int inpre = 0;
2060       reqp = s->repo->idarraydata + s->requires;
2061       while ((req = *reqp++) != 0)
2062         {
2063           if (req == SOLVABLE_PREREQMARKER)
2064             {
2065               inpre = 1;
2066               continue;
2067             }
2068           if (onlyprereq && !inpre)
2069             continue;
2070           if (!strncmp(pool_id2str(pool, req), "rpmlib(", 7))
2071             continue;
2072           good = 0;
2073           /* first check kept packages, then freshly installed, then not yet uninstalled */
2074           FOR_PROVIDES(p, pp, req)
2075             {
2076               if (!MAPTST(ins, p))
2077                 continue;
2078               if (MAPTST(&trans->transactsmap, p))
2079                 continue;
2080               good++;
2081               transaction_check_pkg(trans, tepkg, p, ins, seen, 0, noconfpkg, depth + 1);
2082             }
2083           if (!good)
2084             {
2085               FOR_PROVIDES(p, pp, req)
2086                 {
2087                   if (!MAPTST(ins, p))
2088                     continue;
2089                   if (pool->solvables[p].repo == pool->installed)
2090                     continue;
2091                   good++;
2092                   transaction_check_pkg(trans, tepkg, p, ins, seen, 0, noconfpkg, depth + 1);
2093                 }
2094             }
2095           if (!good)
2096             {
2097               FOR_PROVIDES(p, pp, req)
2098                 {
2099                   if (!MAPTST(ins, p))
2100                     continue;
2101                   good++;
2102                   transaction_check_pkg(trans, tepkg, p, ins, seen, 0, noconfpkg, depth + 1);
2103                 }
2104             }
2105           if (!good)
2106             {
2107               POOL_DEBUG(SOLV_DEBUG_RESULT, "  %c%s: nothing provides %s needed by %c%s\n", pool->solvables[tepkg].repo == pool->installed ? '-' : '+', pool_solvid2str(pool, tepkg), pool_dep2str(pool, req), s->repo == pool->installed ? '-' : '+', pool_solvable2str(pool, s));
2108             }
2109         }
2110     }
2111 }
2112
2113 void
2114 transaction_check_order(Transaction *trans)
2115 {
2116   Pool *pool = trans->pool;
2117   Solvable *s;
2118   Id p, lastins;
2119   Map ins, seen;
2120   int i;
2121
2122   POOL_DEBUG(SOLV_DEBUG_RESULT, "\nchecking transaction order...\n");
2123   map_init(&ins, pool->nsolvables);
2124   map_init(&seen, pool->nsolvables);
2125   if (pool->installed)
2126     FOR_REPO_SOLVABLES(pool->installed, p, s)
2127       MAPSET(&ins, p);
2128   lastins = 0;
2129   for (i = 0; i < trans->steps.count; i++)
2130     {
2131       p = trans->steps.elements[i];
2132       s = pool->solvables + p;
2133       if (s->repo != pool->installed)
2134         lastins = p;
2135       if (s->repo != pool->installed)
2136         MAPSET(&ins, p);
2137       if (havescripts(pool, p))
2138         {
2139           MAPZERO(&seen);
2140           transaction_check_pkg(trans, p, p, &ins, &seen, 1, lastins, 0);
2141         }
2142       if (s->repo == pool->installed)
2143         MAPCLR(&ins, p);
2144     }
2145   map_free(&seen);
2146   map_free(&ins);
2147   POOL_DEBUG(SOLV_DEBUG_RESULT, "transaction order check done.\n");
2148 }