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