- adapt to coding style
[platform/upstream/libsolv.git] / src / pool.c
1 /*
2  * Copyright (c) 2007, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 /*
9  * pool.c
10  * 
11  * The pool contains information about solvables
12  * stored optimized for memory consumption and fast retrieval.
13  */
14
15 #include <stdio.h>
16 #include <stdlib.h>
17 #include <stdarg.h>
18 #include <unistd.h>
19 #include <string.h>
20
21 #include "pool.h"
22 #include "repo.h"
23 #include "poolid.h"
24 #include "poolid_private.h"
25 #include "poolarch.h"
26 #include "util.h"
27 #include "bitmap.h"
28 #include "evr.h"
29
30 #define SOLVABLE_BLOCK  255
31
32 #define KNOWNID_INITIALIZE
33 #include "knownid.h"
34 #undef KNOWNID_INITIALIZE
35
36 /* create pool */
37 Pool *
38 pool_create(void)
39 {
40   Pool *pool;
41   Solvable *s;
42
43   pool = (Pool *)sat_calloc(1, sizeof(*pool));
44
45   stringpool_init (&pool->ss, initpool_data);
46
47   /* alloc space for RelDep 0 */
48   pool->rels = sat_extend_resize(0, 1, sizeof(Reldep), REL_BLOCK);
49   pool->nrels = 1;
50   memset(pool->rels, 0, sizeof(Reldep));
51
52   /* alloc space for Solvable 0 and system solvable */
53   pool->solvables = sat_extend_resize(0, 2, sizeof(Solvable), SOLVABLE_BLOCK);
54   pool->nsolvables = 2;
55   memset(pool->solvables, 0, 2 * sizeof(Solvable));
56   s = pool->solvables + SYSTEMSOLVABLE;
57   s->name = SYSTEM_SYSTEM;
58   s->arch = ARCH_NOARCH;
59   s->evr = ID_EMPTY;
60
61   queue_init(&pool->vendormap);
62
63   pool->debugmask = SAT_DEBUG_RESULT;   /* FIXME */
64   return pool;
65 }
66
67
68 /* free all the resources of our pool */
69 void
70 pool_free(Pool *pool)
71 {
72   int i;
73
74   pool_freewhatprovides(pool);
75   pool_freeidhashes(pool);
76   repo_freeallrepos(pool, 1);
77   sat_free(pool->id2arch);
78   sat_free(pool->solvables);
79   stringpool_free(&pool->ss);
80   sat_free(pool->rels);
81   queue_free(&pool->vendormap);
82   for (i = 0; i < POOL_TMPSPACEBUF; i++)
83     sat_free(pool->tmpspacebuf[i]);
84   for (i = 0; i < pool->nlanguages; i++)
85     free((char *)pool->languages[i]);
86   sat_free(pool->languages);
87   sat_free(pool->languagecache);
88   sat_free(pool);
89 }
90
91 Id
92 pool_add_solvable(Pool *pool)
93 {
94   pool->solvables = sat_extend(pool->solvables, pool->nsolvables, 1, sizeof(Solvable), SOLVABLE_BLOCK);
95   memset(pool->solvables + pool->nsolvables, 0, sizeof(Solvable));
96   return pool->nsolvables++;
97 }
98
99 Id
100 pool_add_solvable_block(Pool *pool, int count)
101 {
102   Id nsolvables = pool->nsolvables;
103   if (!count)
104     return nsolvables;
105   pool->solvables = sat_extend(pool->solvables, pool->nsolvables, count, sizeof(Solvable), SOLVABLE_BLOCK);
106   memset(pool->solvables + nsolvables, 0, sizeof(Solvable) * count);
107   pool->nsolvables += count;
108   return nsolvables;
109 }
110
111 void
112 pool_free_solvable_block(Pool *pool, Id start, int count, int reuseids)
113 {
114   if (!count)
115     return;
116   if (reuseids && start + count == pool->nsolvables)
117     {
118       /* might want to shrink solvable array */
119       pool->nsolvables = start;
120       return;
121     }
122   memset(pool->solvables + start, 0, sizeof(Solvable) * count);
123 }
124
125
126 void
127 pool_set_installed(Pool *pool, Repo *installed)
128 {
129   if (pool->installed == installed)
130     return;
131   pool->installed = installed;
132   pool_freewhatprovides(pool);
133 }
134
135 static Pool *pool_shrink_whatprovides_sortcmp_data;
136
137 static int
138 pool_shrink_whatprovides_sortcmp(const void *ap, const void *bp)
139 {
140   int r;
141   Pool *pool = pool_shrink_whatprovides_sortcmp_data;
142   Id oa, ob, *da, *db;
143   oa = pool->whatprovides[*(Id *)ap];
144   ob = pool->whatprovides[*(Id *)bp];
145   if (oa == ob)
146     return *(Id *)ap - *(Id *)bp;
147   if (!oa)
148     return -1;
149   if (!ob)
150     return 1;
151   da = pool->whatprovidesdata + oa;
152   db = pool->whatprovidesdata + ob;
153   while (*db)
154     if ((r = (*da++ - *db++)) != 0)
155       return r;
156   if (*da)
157     return *da;
158   return *(Id *)ap - *(Id *)bp;
159 }
160
161 /*
162  * pool_shrink_whatprovides  - unify whatprovides data
163  *
164  * whatprovides_rel must be empty for this to work!
165  *
166  */
167 static void
168 pool_shrink_whatprovides(Pool *pool)
169 {
170   Id i, id;
171   Id *sorted;
172   Id lastid, *last, *dp, *lp;
173   Offset o;
174   int r;
175
176   if (pool->ss.nstrings < 3)
177     return;
178   sorted = sat_malloc2(pool->ss.nstrings, sizeof(Id));
179   for (id = 0; id < pool->ss.nstrings; id++)
180     sorted[id] = id;
181   pool_shrink_whatprovides_sortcmp_data = pool;
182   qsort(sorted + 1, pool->ss.nstrings - 1, sizeof(Id), pool_shrink_whatprovides_sortcmp);
183   last = 0;
184   lastid = 0;
185   for (i = 1; i < pool->ss.nstrings; i++)
186     {
187       id = sorted[i];
188       o = pool->whatprovides[id];
189       if (o == 0 || o == 1)
190         continue;
191       dp = pool->whatprovidesdata + o;
192       if (last)
193         {
194           lp = last;
195           while (*dp)   
196             if (*dp++ != *lp++)
197               {
198                 last = 0;
199                 break;
200               }
201           if (last && *lp)
202             last = 0;
203           if (last)
204             {
205               pool->whatprovides[id] = -lastid;
206               continue;
207             }
208         }
209       last = pool->whatprovidesdata + o;
210       lastid = id;
211     }
212   sat_free(sorted);
213   dp = pool->whatprovidesdata + 2;
214   for (id = 1; id < pool->ss.nstrings; id++)
215     {
216       o = pool->whatprovides[id];
217       if (o == 0 || o == 1)
218         continue;
219       if ((Id)o < 0)
220         {
221           i = -(Id)o;
222           if (i >= id)
223             abort();
224           pool->whatprovides[id] = pool->whatprovides[i];
225           continue;
226         }
227       lp = pool->whatprovidesdata + o;
228       if (lp < dp)
229         abort();
230       pool->whatprovides[id] = dp - pool->whatprovidesdata;
231       while ((*dp++ = *lp++) != 0)
232         ;
233     }
234   o = dp - pool->whatprovidesdata;
235   POOL_DEBUG(SAT_DEBUG_STATS, "shrunk whatprovidesdata from %d to %d\n", pool->whatprovidesdataoff, o);
236   if (pool->whatprovidesdataoff == o)
237     return;
238   r = pool->whatprovidesdataoff - o;
239   pool->whatprovidesdataoff = o;
240   pool->whatprovidesdata = sat_realloc(pool->whatprovidesdata, (o + pool->whatprovidesdataleft) * sizeof(Id));
241   if (r > pool->whatprovidesdataleft)
242     r = pool->whatprovidesdataleft;
243   memset(pool->whatprovidesdata + o, 0, r * sizeof(Id));
244 }
245
246
247 /*
248  * pool_createwhatprovides()
249  * 
250  * create hashes over pool of solvables to ease provide lookups
251  * 
252  */
253 void
254 pool_createwhatprovides(Pool *pool)
255 {
256   int i, num, np, extra;
257   Offset off;
258   Solvable *s;
259   Id id;
260   Offset *idp, n;
261   Offset *whatprovides;
262   Id *whatprovidesdata, *d;
263   Repo *installed = pool->installed;
264   unsigned int now;
265
266   now = sat_timems(0);
267   POOL_DEBUG(SAT_DEBUG_STATS, "number of solvables: %d\n", pool->nsolvables);
268   POOL_DEBUG(SAT_DEBUG_STATS, "number of ids: %d + %d\n", pool->ss.nstrings, pool->nrels);
269
270   pool_freeidhashes(pool);      /* XXX: should not be here! */
271   pool_freewhatprovides(pool);
272   num = pool->ss.nstrings;
273   pool->whatprovides = whatprovides = sat_calloc_block(num, sizeof(Offset), WHATPROVIDES_BLOCK);
274   pool->whatprovides_rel = sat_calloc_block(pool->nrels, sizeof(Offset), WHATPROVIDES_BLOCK);
275
276   /* count providers for each name */
277   for (i = 1; i < pool->nsolvables; i++)
278     {
279       Id *pp;
280       s = pool->solvables + i;
281       if (!s->provides)
282         continue;
283       /* we always need the installed solvable in the whatprovides data,
284          otherwise obsoletes/conflicts on them won't work */
285       if (s->repo != installed && !pool_installable(pool, s))
286         continue;
287       pp = s->repo->idarraydata + s->provides;
288       while ((id = *pp++) != ID_NULL)
289         {
290           while (ISRELDEP(id))
291             {
292               Reldep *rd = GETRELDEP(pool, id);
293               id = rd->name;
294             }
295           whatprovides[id]++;          /* inc count of providers */
296         }
297     }
298
299   off = 2;      /* first entry is undef, second is empty list */
300   idp = whatprovides;
301   np = 0;                              /* number of names provided */
302   for (i = 0; i < num; i++, idp++)
303     {
304       n = *idp;
305       if (!n)                          /* no providers */
306         continue;
307       *idp = off;                      /* move from counts to offsets into whatprovidesdata */
308       off += n + 1;                    /* make space for all providers + terminating ID_NULL */
309       np++;                            /* inc # of provider 'slots' */
310     }
311
312   POOL_DEBUG(SAT_DEBUG_STATS, "provide ids: %d\n", np);
313
314   /* reserve some space for relation data */
315   extra = 2 * pool->nrels;
316   if (extra < 256)
317     extra = 256;
318
319   POOL_DEBUG(SAT_DEBUG_STATS, "provide space needed: %d + %d\n", off, extra);
320
321   /* alloc space for all providers + extra */
322   whatprovidesdata = sat_calloc(off + extra, sizeof(Id));
323
324   /* now fill data for all provides */
325   for (i = 1; i < pool->nsolvables; i++)
326     {
327       Id *pp;
328       s = pool->solvables + i;
329       if (!s->provides)
330         continue;
331       if (s->repo != installed && !pool_installable(pool, s))
332         continue;
333
334       /* for all provides of this solvable */
335       pp = s->repo->idarraydata + s->provides;
336       while ((id = *pp++) != 0)
337         {
338           while (ISRELDEP(id))
339             {
340               Reldep *rd = GETRELDEP(pool, id);
341               id = rd->name;
342             }
343           d = whatprovidesdata + whatprovides[id];   /* offset into whatprovidesdata */
344           if (*d)
345             {
346               d++;
347               while (*d)               /* find free slot */
348                 d++;
349               if (d[-1] == i)          /* solvable already tacked at end ? */
350                 continue;              /* Y: skip, on to next provides */
351             }
352           *d = i;                      /* put solvable Id into data */
353         }
354     }
355   pool->whatprovidesdata = whatprovidesdata;
356   pool->whatprovidesdataoff = off;
357   pool->whatprovidesdataleft = extra;
358   pool_shrink_whatprovides(pool);
359   POOL_DEBUG(SAT_DEBUG_STATS, "createwhatprovides took %d ms\n", sat_timems(now));
360 }
361
362 /*
363  * free all of our whatprovides data
364  * be careful, everything internalized with pool_queuetowhatprovides is gone, too
365  */
366 void
367 pool_freewhatprovides(Pool *pool)
368 {
369   pool->whatprovides = sat_free(pool->whatprovides);
370   pool->whatprovides_rel = sat_free(pool->whatprovides_rel);
371   pool->whatprovidesdata = sat_free(pool->whatprovidesdata);
372   pool->whatprovidesdataoff = 0;
373   pool->whatprovidesdataleft = 0;
374 }
375
376
377 /******************************************************************************/
378
379 /*
380  * pool_queuetowhatprovides  - add queue contents to whatprovidesdata
381  * 
382  * on-demand filling of provider information
383  * move queue data into whatprovidesdata
384  * q: queue of Ids
385  * returns: Offset into whatprovides
386  *
387  */
388 Id
389 pool_queuetowhatprovides(Pool *pool, Queue *q)
390 {
391   Offset off;
392   int count = q->count;
393
394   if (count == 0)                      /* queue empty -> 1 */
395     return 1;
396
397   /* extend whatprovidesdata if needed, +1 for ID_NULL-termination */
398   if (pool->whatprovidesdataleft < count + 1)
399     {
400       POOL_DEBUG(SAT_DEBUG_STATS, "growing provides hash data...\n");
401       pool->whatprovidesdata = sat_realloc(pool->whatprovidesdata, (pool->whatprovidesdataoff + count + 4096) * sizeof(Id));
402       pool->whatprovidesdataleft = count + 4096;
403     }
404
405   /* copy queue to next free slot */
406   off = pool->whatprovidesdataoff;
407   memcpy(pool->whatprovidesdata + pool->whatprovidesdataoff, q->elements, count * sizeof(Id));
408
409   /* adapt count and ID_NULL-terminate */
410   pool->whatprovidesdataoff += count;
411   pool->whatprovidesdata[pool->whatprovidesdataoff++] = ID_NULL;
412   pool->whatprovidesdataleft -= count + 1;
413
414   return (Id)off;
415 }
416
417
418 /*************************************************************************/
419
420 /* check if a package's nevr matches a dependency */
421
422 int
423 pool_match_nevr_rel(Pool *pool, Solvable *s, Id d)
424 {
425   Reldep *rd = GETRELDEP(pool, d);
426   Id name = rd->name;
427   Id evr = rd->evr;
428   int flags = rd->flags;
429
430   if (flags > 7)
431     {
432       switch (flags)
433         {
434         case REL_ARCH:
435           if (s->arch != evr)
436             return 0;
437           return pool_match_nevr(pool, s, name);
438         case REL_OR:
439           if (pool_match_nevr(pool, s, name))
440             return 1;
441           return pool_match_nevr(pool, s, evr);
442         case REL_AND:
443         case REL_WITH:
444           if (!pool_match_nevr(pool, s, name))
445             return 0;
446           return pool_match_nevr(pool, s, evr);
447         default:
448           return 0;
449         }
450     }
451   if (!pool_match_nevr(pool, s, name))
452     return 0;
453   if (evr == s->evr)
454     return flags & 2 ? 1 : 0;
455   if (!flags)
456     return 0;
457   if (flags == 7)
458     return 1;
459   if (flags != 2 && flags != 5)
460     flags ^= 5;
461   if ((flags & (1 << (1 + evrcmp(pool, s->evr, evr, EVRCMP_MATCH_RELEASE)))) != 0)
462     return 1;
463   return 0;
464 }
465
466 /*
467  * addrelproviders
468  * 
469  * add packages fulfilling the relation to whatprovides array
470  * no exact providers, do range match
471  * 
472  */
473
474 Id
475 pool_addrelproviders(Pool *pool, Id d)
476 {
477   Reldep *rd = GETRELDEP(pool, d);
478   Reldep *prd;
479   Queue plist;
480   Id buf[16];
481   Id name = rd->name;
482   Id evr = rd->evr;
483   int flags = rd->flags;
484   Id pid, *pidp;
485   Id p, wp, *pp, *pp2, *pp3;
486
487   d = GETRELID(d);
488   queue_init_buffer(&plist, buf, sizeof(buf)/sizeof(*buf));
489   switch (flags)
490     {
491     case REL_AND:
492     case REL_WITH:
493       pp = pool->whatprovidesdata + pool_whatprovides(pool, name);
494       pp2 = pool->whatprovidesdata + pool_whatprovides(pool, evr);
495       while ((p = *pp++) != 0)
496         {
497           for (pp3 = pp2; *pp3;)
498             if (*pp3++ == p)
499               {
500                 queue_push(&plist, p);
501                 break;
502               }
503         }
504       break;
505     case REL_OR:
506       pp = pool->whatprovidesdata + pool_whatprovides(pool, name);
507       while ((p = *pp++) != 0)
508         queue_push(&plist, p);
509       pp = pool->whatprovidesdata + pool_whatprovides(pool, evr);
510       while ((p = *pp++) != 0)
511         queue_pushunique(&plist, p);
512       break;
513     case REL_NAMESPACE:
514       if (name == NAMESPACE_OTHERPROVIDERS)
515         {
516           wp = pool_whatprovides(pool, evr);
517           pool->whatprovides_rel[d] = wp;
518           return wp;
519         }
520       if (pool->nscallback)
521         {
522           /* ask callback which packages provide the dependency
523            * 0:  none
524            * 1:  the system (aka SYSTEMSOLVABLE)
525            * >1: a set of packages, stored as offset on whatprovidesdata
526            */
527           p = pool->nscallback(pool, pool->nscallbackdata, name, evr);
528           if (p > 1)
529             {
530               queue_free(&plist);
531               pool->whatprovides_rel[d] = p;
532               return p;
533             }
534           if (p == 1)
535             queue_push(&plist, SYSTEMSOLVABLE);
536         }
537       break;
538     case REL_ARCH:
539       /* small hack: make it possible to match <pkg>.src
540        * we have to iterate over the solvables as src packages do not
541        * provide anything, thus they are not indexed in our
542        * whatprovides hash */
543       if (evr == ARCH_SRC)
544         {
545           Solvable *s;
546           for (p = 1, s = pool->solvables + p; p < pool->nsolvables; p++, s++)
547             {
548               if (s->arch != ARCH_SRC && s->arch != ARCH_NOSRC)
549                 continue;
550               if (pool_match_nevr(pool, s, name))
551                 queue_push(&plist, p);
552             }
553           break;
554         }
555       wp = pool_whatprovides(pool, name);
556       pp = pool->whatprovidesdata + wp;
557       while ((p = *pp++) != 0)
558         {
559           Solvable *s = pool->solvables + p;
560           if (s->arch == evr)
561             queue_push(&plist, p);
562           else
563             wp = 0;
564         }
565       if (wp)
566         {
567           pool->whatprovides_rel[d] = wp;
568           return wp;
569         }
570       break;
571     default:
572       break;
573     }
574
575   /* convert to whatprovides id */
576 #if 0
577   POOL_DEBUG(SAT_DEBUG_STATS, "addrelproviders: what provides %s?\n", dep2str(pool, name));
578 #endif
579   if (flags && flags < 8)
580     {
581       pp = pool->whatprovidesdata + pool_whatprovides(pool, name);
582       while (ISRELDEP(name))
583         {
584           rd = GETRELDEP(pool, name);
585           name = rd->name;
586         }
587       while ((p = *pp++) != 0)
588         {
589           Solvable *s = pool->solvables + p;
590 #if 0
591           POOL_DEBUG(DEBUG_1, "addrelproviders: checking package %s\n", id2str(pool, s->name));
592 #endif
593           if (!s->provides)
594             {
595               /* no provides - check nevr */
596               if (pool_match_nevr_rel(pool, s, MAKERELDEP(d)))
597                 queue_push(&plist, p);
598               continue;
599             }
600           /* solvable p provides name in some rels */
601           pidp = s->repo->idarraydata + s->provides;
602           while ((pid = *pidp++) != 0)
603             {
604               int pflags;
605               Id pevr;
606
607               if (pid == name)
608                 {
609 #ifdef DEBIAN_SEMANTICS
610                   continue;             /* unversioned provides can
611                                          * never match versioned deps */
612 #else
613                   break;                /* yes, provides all versions */
614 #endif
615                 }
616               if (!ISRELDEP(pid))
617                 continue;               /* wrong provides name */
618               prd = GETRELDEP(pool, pid);
619               if (prd->name != name)
620                 continue;               /* wrong provides name */
621               /* right package, both deps are rels */
622               pflags = prd->flags;
623               if (!pflags)
624                 continue;
625               if (flags == 7 || pflags == 7)
626                 break; /* included */
627               if ((pflags & flags & 5) != 0)
628                 break; /* same direction, match */
629               pevr = prd->evr;
630               if (pevr == evr)
631                 {
632                   if ((pflags & flags & 2) != 0)
633                     break; /* both have =, match */
634                 }
635               else
636                 {
637                   int f = flags == 5 ? 5 : flags == 2 ? pflags : (flags ^ 5) & (pflags | 5);
638                   if ((f & (1 << (1 + evrcmp(pool, pevr, evr, EVRCMP_MATCH_RELEASE)))) != 0)
639                     break;
640                 }
641             }
642           if (!pid)
643             continue;   /* no rel match */
644           queue_push(&plist, p);
645         }
646       /* make our system solvable provide all unknown rpmlib() stuff */
647       if (plist.count == 0 && !strncmp(id2str(pool, name), "rpmlib(", 7))
648         queue_push(&plist, SYSTEMSOLVABLE);
649     }
650   /* add providers to whatprovides */
651 #if 0
652   POOL_DEBUG(SAT_DEBUG_STATS, "addrelproviders: adding %d packages to %d\n", plist.count, d);
653 #endif
654   pool->whatprovides_rel[d] = pool_queuetowhatprovides(pool, &plist);
655   queue_free(&plist);
656
657   return pool->whatprovides_rel[d];
658 }
659
660 /*************************************************************************/
661
662 void
663 pool_debug(Pool *pool, int type, const char *format, ...)
664 {
665   va_list args;
666   char buf[1024];
667
668   if ((type & (SAT_FATAL|SAT_ERROR)) == 0)
669     {
670       if ((pool->debugmask & type) == 0)
671         return;
672     }
673   va_start(args, format);
674   if (!pool->debugcallback)
675     {
676       if ((type & (SAT_FATAL|SAT_ERROR)) == 0)
677         vprintf(format, args);
678       else
679         vfprintf(stderr, format, args);
680       return;
681     }
682   vsnprintf(buf, sizeof(buf), format, args);
683   pool->debugcallback(pool, pool->debugcallbackdata, type, buf);
684 }
685
686 void
687 pool_setdebuglevel(Pool *pool, int level)
688 {
689   int mask = SAT_DEBUG_RESULT;
690   if (level > 0)
691     mask |= SAT_DEBUG_STATS|SAT_DEBUG_ANALYZE|SAT_DEBUG_UNSOLVABLE;
692   if (level > 1)
693     mask |= SAT_DEBUG_JOB|SAT_DEBUG_SOLUTIONS|SAT_DEBUG_POLICY;
694   if (level > 2)
695     mask |= SAT_DEBUG_PROPAGATE;
696   if (level > 3)
697     mask |= SAT_DEBUG_RULE_CREATION;
698   if (level > 4)
699     mask |= SAT_DEBUG_SCHUBI;
700   pool->debugmask = mask;
701 }
702
703 /*************************************************************************/
704
705 struct searchfiles {
706   Id *ids;
707   char **dirs;
708   char **names;
709   int nfiles;
710   Map seen;
711 };
712
713 #define SEARCHFILES_BLOCK 127
714
715 static void
716 pool_addfileprovides_dep(Pool *pool, Id *ida, struct searchfiles *sf, struct searchfiles *isf)
717 {
718   Id dep, sid;
719   const char *s, *sr;
720   struct searchfiles *csf;
721
722   while ((dep = *ida++) != 0)
723     {
724       csf = sf;
725       while (ISRELDEP(dep))
726         {
727           Reldep *rd;
728           sid = pool->ss.nstrings + GETRELID(dep);
729           if (MAPTST(&csf->seen, sid))
730             {
731               dep = 0;
732               break;
733             }
734           MAPSET(&csf->seen, sid);
735           rd = GETRELDEP(pool, dep);
736           if (rd->flags < 8)
737             dep = rd->name;
738           else if (rd->flags == REL_NAMESPACE)
739             {
740               if (rd->name == NAMESPACE_INSTALLED || rd->name == NAMESPACE_SPLITPROVIDES)
741                 {
742                   csf = isf;
743                   if (!csf || MAPTST(&csf->seen, sid))
744                     {
745                       dep = 0;
746                       break;
747                     }
748                   MAPSET(&csf->seen, sid);
749                 }
750               dep = rd->evr;
751             }
752           else
753             {
754               Id ids[2];
755               ids[0] = rd->name;
756               ids[1] = 0;
757               pool_addfileprovides_dep(pool, ids, csf, isf);
758               dep = rd->evr;
759             }
760         }
761       if (!dep)
762         continue;
763       if (MAPTST(&csf->seen, dep))
764         continue;
765       MAPSET(&csf->seen, dep);
766       s = id2str(pool, dep);
767       if (*s != '/')
768         continue;
769       csf->ids = sat_extend(csf->ids, csf->nfiles, 1, sizeof(Id), SEARCHFILES_BLOCK);
770       csf->dirs = sat_extend(csf->dirs, csf->nfiles, 1, sizeof(const char *), SEARCHFILES_BLOCK);
771       csf->names = sat_extend(csf->names, csf->nfiles, 1, sizeof(const char *), SEARCHFILES_BLOCK);
772       csf->ids[csf->nfiles] = dep;
773       sr = strrchr(s, '/');
774       csf->names[csf->nfiles] = strdup(sr + 1);
775       csf->dirs[csf->nfiles] = sat_malloc(sr - s + 1);
776       if (sr != s)
777         strncpy(csf->dirs[csf->nfiles], s, sr - s);
778       csf->dirs[csf->nfiles][sr - s] = 0;
779       csf->nfiles++;
780     }
781 }
782
783 struct addfileprovides_cbdata {
784   int nfiles;
785   Id *ids;
786   char **dirs;
787   char **names;
788
789   Repodata *olddata;
790   Id *dids;
791   Map useddirs;
792 };
793
794 static int
795 addfileprovides_cb(void *cbdata, Solvable *s, Repodata *data, Repokey *key, KeyValue *value)
796 {
797   struct addfileprovides_cbdata *cbd = cbdata;
798   int i;
799
800   if (data != cbd->olddata)
801     {
802       map_free(&cbd->useddirs);
803       map_init(&cbd->useddirs, data->dirpool.ndirs);
804       for (i = 0; i < cbd->nfiles; i++)
805         {
806           Id did = repodata_str2dir(data, cbd->dirs[i], 0);
807           cbd->dids[i] = did;
808           if (did)
809             MAPSET(&cbd->useddirs, did);
810         }
811       cbd->olddata = data;
812     }
813   if (!MAPTST(&cbd->useddirs, value->id))
814     return 0;
815   for (i = 0; i < cbd->nfiles; i++)
816     {
817       if (cbd->dids[i] != value->id)
818         continue;
819       if (!strcmp(cbd->names[i], value->str))
820         break;
821     }
822   if (i == cbd->nfiles)
823     return 0;
824   s->provides = repo_addid_dep(s->repo, s->provides, cbd->ids[i], SOLVABLE_FILEMARKER);
825   return 0;
826 }
827
828 static int
829 addfileprovides_setid_cb(void *cbdata, Solvable *s, Repodata *data, Repokey *key, KeyValue *kv)
830 {
831   Map *provideids = cbdata;
832   if (key->type != REPOKEY_TYPE_IDARRAY)
833     return 0;
834   MAPSET(provideids, kv->id);
835   return kv->eof ? SEARCH_NEXT_SOLVABLE : 0;
836 }
837
838
839 static void
840 pool_addfileprovides_search(Pool *pool, struct addfileprovides_cbdata *cbd, struct searchfiles *sf, Repo *repoonly)
841 {
842   Id p, start, end;
843   Solvable *s;
844   Repodata *data = 0, *nextdata;
845   Repo *oldrepo = 0;
846   int dataincludes = 0;
847   int i, j;
848   Map providedids;
849
850   cbd->nfiles = sf->nfiles;
851   cbd->ids = sf->ids;
852   cbd->dirs = sf->dirs;
853   cbd->names = sf->names;
854   cbd->olddata = 0;
855   cbd->dids = sat_realloc2(cbd->dids, sf->nfiles, sizeof(Id));
856   if (repoonly)
857     {
858       start = repoonly->start;
859       end = repoonly->end;
860     }
861   else
862     {
863       start = 2;        /* skip system solvable */
864       end = pool->nsolvables;
865     }
866   for (p = start, s = pool->solvables + p; p < end; p++, s++)
867     {
868       if (!s->repo || (repoonly && s->repo != repoonly))
869         continue;
870       /* check if p is in (oldrepo,data) */
871       if (s->repo != oldrepo || (data && p >= data->end))
872         {
873           data = 0;
874           oldrepo = 0;
875         }
876       if (oldrepo == 0)
877         {
878           /* nope, find new repo/repodata */
879           /* if we don't find a match, set data to the next repodata */
880           nextdata = 0;
881           for (i = 0, data = s->repo->repodata; i < s->repo->nrepodata; i++, data++)
882             {
883               if (p >= data->end)
884                 continue;
885               if (data->state != REPODATA_AVAILABLE)
886                 continue;
887               for (j = 1; j < data->nkeys; j++)
888                 if (data->keys[j].name == REPOSITORY_ADDEDFILEPROVIDES && data->keys[j].type == REPOKEY_TYPE_IDARRAY)
889                   break;
890               if (j == data->nkeys)
891                 continue;
892               /* great, this repodata contains addedfileprovides */
893               if (!nextdata || nextdata->start > data->start)
894                 nextdata = data;
895               if (p >= data->start)
896                 break;
897             }
898           if (i == s->repo->nrepodata)
899             data = nextdata;    /* no direct hit, use next repodata */
900           if (data)
901             {
902               map_init(&providedids, pool->ss.nstrings);
903               repodata_search(data, SOLVID_META, REPOSITORY_ADDEDFILEPROVIDES, 0, addfileprovides_setid_cb, &providedids);
904               for (i = 0; i < cbd->nfiles; i++)
905                 if (!MAPTST(&providedids, cbd->ids[i]))
906                   break;
907               map_free(&providedids);
908               dataincludes = i == cbd->nfiles;
909             }
910           oldrepo = s->repo;
911         }
912       if (data && p >= data->start && dataincludes)
913         continue;
914       repo_search(s->repo, p, SOLVABLE_FILELIST, 0, 0, addfileprovides_cb, cbd);
915     }
916 }
917
918 void
919 pool_addfileprovides_ids(Pool *pool, Repo *installed, Id **idp)
920 {
921   Solvable *s;
922   Repo *repo;
923   struct searchfiles sf, isf, *isfp;
924   struct addfileprovides_cbdata cbd;
925   int i;
926
927   memset(&sf, 0, sizeof(sf));
928   map_init(&sf.seen, pool->ss.nstrings + pool->nrels);
929   memset(&isf, 0, sizeof(isf));
930   map_init(&isf.seen, pool->ss.nstrings + pool->nrels);
931
932   isfp = installed ? &isf : 0;
933   for (i = 1, s = pool->solvables + i; i < pool->nsolvables; i++, s++)
934     {
935       repo = s->repo;
936       if (!repo)
937         continue;
938       if (s->obsoletes)
939         pool_addfileprovides_dep(pool, repo->idarraydata + s->obsoletes, &sf, isfp);
940       if (s->conflicts)
941         pool_addfileprovides_dep(pool, repo->idarraydata + s->conflicts, &sf, isfp);
942       if (s->requires)
943         pool_addfileprovides_dep(pool, repo->idarraydata + s->requires, &sf, isfp);
944       if (s->recommends)
945         pool_addfileprovides_dep(pool, repo->idarraydata + s->recommends, &sf, isfp);
946       if (s->suggests)
947         pool_addfileprovides_dep(pool, repo->idarraydata + s->suggests, &sf, isfp);
948       if (s->supplements)
949         pool_addfileprovides_dep(pool, repo->idarraydata + s->supplements, &sf, isfp);
950       if (s->enhances)
951         pool_addfileprovides_dep(pool, repo->idarraydata + s->enhances, &sf, isfp);
952     }
953   map_free(&sf.seen);
954   map_free(&isf.seen);
955   POOL_DEBUG(SAT_DEBUG_STATS, "found %d file dependencies\n", sf.nfiles);
956   POOL_DEBUG(SAT_DEBUG_STATS, "found %d installed file dependencies\n", isf.nfiles);
957   cbd.dids = 0;
958   map_init(&cbd.useddirs, 1);
959   if (idp)
960     *idp = 0;
961   if (sf.nfiles)
962     {
963 #if 0
964       for (i = 0; i < sf.nfiles; i++)
965         POOL_DEBUG(SAT_DEBUG_STATS, "looking up %s in filelist\n", id2str(pool, sf.ids[i]));
966 #endif
967       pool_addfileprovides_search(pool, &cbd, &sf, 0);
968       if (idp)
969         {
970           sf.ids = sat_extend(sf.ids, sf.nfiles, 1, sizeof(Id), SEARCHFILES_BLOCK);
971           sf.ids[sf.nfiles] = 0;
972           *idp = sf.ids;
973           sf.ids = 0;
974         }
975       sat_free(sf.ids);
976       for (i = 0; i < sf.nfiles; i++)
977         {
978           sat_free(sf.dirs[i]);
979           sat_free(sf.names[i]);
980         }
981       sat_free(sf.dirs);
982       sat_free(sf.names);
983     }
984   if (isf.nfiles)
985     {
986 #if 0
987       for (i = 0; i < isf.nfiles; i++)
988         POOL_DEBUG(SAT_DEBUG_STATS, "looking up %s in installed filelist\n", id2str(pool, isf.ids[i]));
989 #endif
990       if (installed)
991         pool_addfileprovides_search(pool, &cbd, &isf, installed);
992       sat_free(isf.ids);
993       for (i = 0; i < isf.nfiles; i++)
994         {
995           sat_free(isf.dirs[i]);
996           sat_free(isf.names[i]);
997         }
998       sat_free(isf.dirs);
999       sat_free(isf.names);
1000     }
1001   map_free(&cbd.useddirs);
1002   sat_free(cbd.dids);
1003   pool_freewhatprovides(pool);  /* as we have added provides */
1004 }
1005
1006 void
1007 pool_addfileprovides(Pool *pool)
1008 {
1009   pool_addfileprovides_ids(pool, pool->installed, 0);
1010 }
1011
1012 void
1013 pool_search(Pool *pool, Id p, Id key, const char *match, int flags, int (*callback)(void *cbdata, Solvable *s, struct _Repodata *data, struct _Repokey *key, struct _KeyValue *kv), void *cbdata)
1014 {
1015   if (p)
1016     {
1017       if (pool->solvables[p].repo)
1018         repo_search(pool->solvables[p].repo, p, key, match, flags, callback, cbdata);
1019       return;
1020     }
1021   /* FIXME: obey callback return value! */
1022   for (p = 1; p < pool->nsolvables; p++)
1023     if (pool->solvables[p].repo)
1024       repo_search(pool->solvables[p].repo, p, key, match, flags, callback, cbdata);
1025 }
1026
1027 void
1028 pool_clear_pos(Pool *pool)
1029 {
1030   memset(&pool->pos, 0, sizeof(pool->pos));
1031 }
1032
1033
1034 void
1035 pool_set_languages(Pool *pool, const char **languages, int nlanguages)
1036 {
1037   int i;
1038
1039   pool->languagecache = sat_free(pool->languagecache);
1040   pool->languagecacheother = 0;
1041   if (pool->nlanguages)
1042     {
1043       for (i = 0; i < pool->nlanguages; i++)
1044         free((char *)pool->languages[i]);
1045       free(pool->languages);
1046     }
1047   pool->nlanguages = nlanguages;
1048   if (!nlanguages)
1049     return;
1050   pool->languages = sat_calloc(nlanguages, sizeof(const char **));
1051   for (i = 0; i < pool->nlanguages; i++)
1052     pool->languages[i] = strdup(languages[i]);
1053 }
1054
1055 Id
1056 pool_id2langid(Pool *pool, Id id, const char *lang, int create)
1057 {
1058   const char *n;
1059   char buf[256], *p;
1060   int l;
1061
1062   if (!lang)
1063     return id;
1064   n = id2str(pool, id);
1065   l = strlen(n) + strlen(lang) + 2;
1066   if (l > sizeof(buf))
1067     p = sat_malloc(strlen(n) + strlen(lang) + 2);
1068   else
1069     p = buf;
1070   sprintf(p, "%s:%s", n, lang);
1071   id = str2id(pool, p, create);
1072   if (p != buf)
1073     free(p);
1074   return id;
1075 }
1076
1077 char *
1078 pool_alloctmpspace(Pool *pool, int len)
1079 {
1080   int n = pool->tmpspacen;
1081   if (!len)
1082     return 0;
1083   if (len > pool->tmpspacelen[n])
1084     {
1085       pool->tmpspacebuf[n] = sat_realloc(pool->tmpspacebuf[n], len + 32);
1086       pool->tmpspacelen[n] = len + 32;
1087     }
1088   pool->tmpspacen = (n + 1) % POOL_TMPSPACEBUF;
1089   return pool->tmpspacebuf[n];
1090 }
1091
1092 /*******************************************************************/
1093
1094 struct mptree {
1095   Id sibling;
1096   Id child;
1097   const char *comp;
1098   int compl;
1099   Id mountpoint;
1100 };
1101
1102 struct ducbdata {
1103   DUChanges *mps;
1104   struct mptree *mptree;
1105   int addsub;
1106   int hasdu;
1107
1108   Id *dirmap;
1109   int nmap;
1110   Repodata *olddata;
1111 };
1112
1113
1114 static int
1115 solver_fill_DU_cb(void *cbdata, Solvable *s, Repodata *data, Repokey *key, KeyValue *value)
1116 {
1117   struct ducbdata *cbd = cbdata;
1118   Id mp;
1119
1120   if (data != cbd->olddata)
1121     {
1122       Id dn, mp, comp, *dirmap, *dirs;
1123       int i, compl;
1124       const char *compstr;
1125       struct mptree *mptree;
1126
1127       /* create map from dir to mptree */
1128       cbd->dirmap = sat_free(cbd->dirmap);
1129       cbd->nmap = 0;
1130       dirmap = sat_calloc(data->dirpool.ndirs, sizeof(Id));
1131       mptree = cbd->mptree;
1132       mp = 0;
1133       for (dn = 2, dirs = data->dirpool.dirs + dn; dn < data->dirpool.ndirs; dn++)
1134         {
1135           comp = *dirs++;
1136           if (comp <= 0)
1137             {
1138               mp = dirmap[-comp];
1139               continue;
1140             }
1141           if (mp < 0)
1142             {
1143               /* unconnected */
1144               dirmap[dn] = mp;
1145               continue;
1146             }
1147           if (!mptree[mp].child)
1148             {
1149               dirmap[dn] = -mp;
1150               continue;
1151             }
1152           if (data->localpool)
1153             compstr = stringpool_id2str(&data->spool, comp);
1154           else
1155             compstr = id2str(data->repo->pool, comp);
1156           compl = strlen(compstr);
1157           for (i = mptree[mp].child; i; i = mptree[i].sibling)
1158             if (mptree[i].compl == compl && !strncmp(mptree[i].comp, compstr, compl))
1159               break;
1160           dirmap[dn] = i ? i : -mp;
1161         }
1162       /* change dirmap to point to mountpoint instead of mptree */
1163       for (dn = 0; dn < data->dirpool.ndirs; dn++)
1164         {
1165           mp = dirmap[dn];
1166           dirmap[dn] = mptree[mp > 0 ? mp : -mp].mountpoint;
1167         }
1168       cbd->dirmap = dirmap;
1169       cbd->nmap = data->dirpool.ndirs;
1170       cbd->olddata = data;
1171     }
1172   cbd->hasdu = 1;
1173   if (value->id < 0 || value->id >= cbd->nmap)
1174     return 0;
1175   mp = cbd->dirmap[value->id];
1176   if (mp < 0)
1177     return 0;
1178   if (cbd->addsub > 0)
1179     {
1180       cbd->mps[mp].kbytes += value->num;
1181       cbd->mps[mp].files += value->num2;
1182     }
1183   else
1184     {
1185       cbd->mps[mp].kbytes -= value->num;
1186       cbd->mps[mp].files -= value->num2;
1187     }
1188   return 0;
1189 }
1190
1191 static void
1192 propagate_mountpoints(struct mptree *mptree, int pos, Id mountpoint)
1193 {
1194   int i;
1195   if (mptree[pos].mountpoint == -1)
1196     mptree[pos].mountpoint = mountpoint;
1197   else
1198     mountpoint = mptree[pos].mountpoint;
1199   for (i = mptree[pos].child; i; i = mptree[i].sibling)
1200     propagate_mountpoints(mptree, i, mountpoint);
1201 }
1202
1203 #define MPTREE_BLOCK 15
1204
1205 void
1206 pool_calc_duchanges(Pool *pool, Map *installedmap, DUChanges *mps, int nmps)
1207 {
1208   char *p;
1209   const char *path, *compstr;
1210   struct mptree *mptree;
1211   int i, nmptree;
1212   int pos, compl;
1213   int mp;
1214   struct ducbdata cbd;
1215   Solvable *s;
1216   Id sp;
1217   Map ignoredu;
1218   Repo *oldinstalled = pool->installed;
1219
1220   memset(&ignoredu, 0, sizeof(ignoredu));
1221   cbd.mps = mps;
1222   cbd.addsub = 0;
1223   cbd.dirmap = 0;
1224   cbd.nmap = 0;
1225   cbd.olddata = 0;
1226
1227   mptree = sat_extend_resize(0, 1, sizeof(struct mptree), MPTREE_BLOCK);
1228
1229   /* our root node */
1230   mptree[0].sibling = 0;
1231   mptree[0].child = 0;
1232   mptree[0].comp = 0;
1233   mptree[0].compl = 0;
1234   mptree[0].mountpoint = -1;
1235   nmptree = 1;
1236   
1237   /* create component tree */
1238   for (mp = 0; mp < nmps; mp++)
1239     {
1240       mps[mp].kbytes = 0;
1241       mps[mp].files = 0;
1242       pos = 0;
1243       path = mps[mp].path;
1244       while(*path == '/')
1245         path++;
1246       while (*path)
1247         {
1248           if ((p = strchr(path, '/')) == 0)
1249             {
1250               compstr = path;
1251               compl = strlen(compstr);
1252               path += compl;
1253             }
1254           else
1255             {
1256               compstr = path;
1257               compl = p - path;
1258               path = p + 1;
1259               while(*path == '/')
1260                 path++;
1261             }
1262           for (i = mptree[pos].child; i; i = mptree[i].sibling)
1263             if (mptree[i].compl == compl && !strncmp(mptree[i].comp, compstr, compl))
1264               break;
1265           if (!i)
1266             {
1267               /* create new node */
1268               mptree = sat_extend(mptree, nmptree, 1, sizeof(struct mptree), MPTREE_BLOCK);
1269               i = nmptree++;
1270               mptree[i].sibling = mptree[pos].child;
1271               mptree[i].child = 0;
1272               mptree[i].comp = compstr;
1273               mptree[i].compl = compl;
1274               mptree[i].mountpoint = -1;
1275               mptree[pos].child = i;
1276             }
1277           pos = i;
1278         }
1279       mptree[pos].mountpoint = mp;
1280     }
1281
1282   propagate_mountpoints(mptree, 0, mptree[0].mountpoint);
1283
1284 #if 0
1285   for (i = 0; i < nmptree; i++)
1286     {
1287       printf("#%d sibling: %d\n", i, mptree[i].sibling);
1288       printf("#%d child: %d\n", i, mptree[i].child);
1289       printf("#%d comp: %s\n", i, mptree[i].comp);
1290       printf("#%d compl: %d\n", i, mptree[i].compl);
1291       printf("#%d mountpont: %d\n", i, mptree[i].mountpoint);
1292     }
1293 #endif
1294
1295   cbd.mptree = mptree;
1296   cbd.addsub = 1;
1297   for (sp = 1, s = pool->solvables + sp; sp < pool->nsolvables; sp++, s++)
1298     {
1299       if (!s->repo || (oldinstalled && s->repo == oldinstalled))
1300         continue;
1301       if (!MAPTST(installedmap, sp))
1302         continue;
1303       cbd.hasdu = 0;
1304       repo_search(s->repo, sp, SOLVABLE_DISKUSAGE, 0, 0, solver_fill_DU_cb, &cbd);
1305       if (!cbd.hasdu && oldinstalled)
1306         {
1307           Id op, opp;
1308           /* no du data available, ignore data of all installed solvables we obsolete */
1309           if (!ignoredu.map)
1310             map_init(&ignoredu, oldinstalled->end - oldinstalled->start);
1311           if (s->obsoletes)
1312             {
1313               Id obs, *obsp = s->repo->idarraydata + s->obsoletes;
1314               while ((obs = *obsp++) != 0)
1315                 FOR_PROVIDES(op, opp, obs)
1316                   if (op >= oldinstalled->start && op < oldinstalled->end)
1317                     MAPSET(&ignoredu, op - oldinstalled->start);
1318             }
1319           FOR_PROVIDES(op, opp, s->name)
1320             if (pool->solvables[op].name == s->name)
1321               if (op >= oldinstalled->start && op < oldinstalled->end)
1322                 MAPSET(&ignoredu, op - oldinstalled->start);
1323         }
1324     }
1325   cbd.addsub = -1;
1326   if (oldinstalled)
1327     {
1328       /* assumes we allways have du data for installed solvables */
1329       FOR_REPO_SOLVABLES(oldinstalled, sp, s)
1330         {
1331           if (MAPTST(installedmap, sp))
1332             continue;
1333           if (ignoredu.map && MAPTST(&ignoredu, sp - oldinstalled->start))
1334             continue;
1335           repo_search(oldinstalled, sp, SOLVABLE_DISKUSAGE, 0, 0, solver_fill_DU_cb, &cbd);
1336         }
1337     }
1338   if (ignoredu.map)
1339     map_free(&ignoredu);
1340   sat_free(cbd.dirmap);
1341   sat_free(mptree);
1342 }
1343
1344 int
1345 pool_calc_installsizechange(Pool *pool, Map *installedmap)
1346 {
1347   Id sp;
1348   Solvable *s;
1349   int change = 0;
1350   Repo *oldinstalled = pool->installed;
1351
1352   for (sp = 1, s = pool->solvables + sp; sp < pool->nsolvables; sp++, s++)
1353     {
1354       if (!s->repo || (oldinstalled && s->repo == oldinstalled))
1355         continue;
1356       if (!MAPTST(installedmap, sp))
1357         continue;
1358       change += solvable_lookup_num(s, SOLVABLE_INSTALLSIZE, 0);
1359     }
1360   if (oldinstalled)
1361     {
1362       FOR_REPO_SOLVABLES(oldinstalled, sp, s)
1363         {
1364           if (MAPTST(installedmap, sp))
1365             continue;
1366           change -= solvable_lookup_num(s, SOLVABLE_INSTALLSIZE, 0);
1367         }
1368     }
1369   return change;
1370 }
1371
1372 /* map:
1373  *  1: installed
1374  *  2: conflicts with installed
1375  *  8: interesting (only true if installed)
1376  * 16: undecided
1377  */
1378  
1379 static inline Id dep2name(Pool *pool, Id dep)
1380 {
1381   while (ISRELDEP(dep))
1382     {
1383       Reldep *rd = rd = GETRELDEP(pool, dep);
1384       dep = rd->name;
1385     }
1386   return dep;
1387 }
1388
1389 static inline int providedbyinstalled(Pool *pool, unsigned char *map, Id dep)
1390 {
1391   Id p, pp;
1392   int r = 0;
1393   FOR_PROVIDES(p, pp, dep)
1394     {
1395       if (p == SYSTEMSOLVABLE)
1396         return 1;       /* always boring, as never constraining */
1397       if ((map[p] & 9) == 9)
1398         return 9;
1399       r |= map[p] & 17;
1400     }
1401   return r;
1402 }
1403
1404 /*
1405  * pool_trivial_installable - calculate if a set of solvables is
1406  * trivial installable without any other installs/deinstalls of
1407  * packages not belonging to the set.
1408  *
1409  * the state is returned in the result queue:
1410  * 1:  solvable is installable without any other package changes
1411  * 0:  solvable is not installable
1412  * -1: solvable is installable, but doesn't constrain any installed packages
1413  */
1414
1415 void
1416 pool_trivial_installable(Pool *pool, Map *installedmap, Queue *pkgs, Queue *res)
1417 {
1418   int i, r, m, did;
1419   Id p, *dp, con, *conp, req, *reqp;
1420   unsigned char *map;
1421   Solvable *s;
1422
1423   map = sat_calloc(pool->nsolvables, 1);
1424   for (p = 1; p < pool->nsolvables; p++)
1425     {
1426       if (!MAPTST(installedmap, p))
1427         continue;
1428       map[p] |= 9;
1429       s = pool->solvables + p;
1430       if (!s->conflicts)
1431         continue;
1432       conp = s->repo->idarraydata + s->conflicts;
1433       while ((con = *conp++) != 0)
1434         {
1435           dp = pool->whatprovidesdata + pool_whatprovides(pool, con);
1436           for (; *dp; dp++)
1437             map[p] |= 2;        /* XXX: self conflict ? */
1438         }
1439     }
1440   for (i = 0; i < pkgs->count; i++)
1441     map[pkgs->elements[i]] = 16;
1442
1443   for (i = 0, did = 0; did < pkgs->count; i++, did++)
1444     {
1445       if (i == pkgs->count)
1446         i = 0;
1447       p = pkgs->elements[i];
1448       if ((map[p] & 16) == 0)
1449         continue;
1450       if ((map[p] & 2) != 0)
1451         {
1452           map[p] = 2;
1453           continue;
1454         }
1455       s = pool->solvables + p;
1456       m = 1;
1457       if (s->requires)
1458         {
1459           reqp = s->repo->idarraydata + s->requires;
1460           while ((req = *reqp++) != 0)
1461             {
1462               if (req == SOLVABLE_PREREQMARKER)
1463                 continue;
1464               r = providedbyinstalled(pool, map, req);
1465               if (!r)
1466                 {
1467                   /* decided and miss */
1468                   map[p] = 2;
1469                   break;
1470                 }
1471               m |= r;   /* 1 | 9 | 16 | 17 */
1472             }
1473           if (req)
1474             continue;
1475           if ((m & 9) == 9)
1476             m = 9;
1477         }
1478       if (s->conflicts)
1479         {
1480           conp = s->repo->idarraydata + s->conflicts;
1481           while ((con = *conp++) != 0)
1482             {
1483               if ((providedbyinstalled(pool, map, con) & 1) != 0)
1484                 {
1485                   map[p] = 2;
1486                   break;
1487                 }
1488               if ((m == 1 || m == 17) && ISRELDEP(con))
1489                 {
1490                   con = dep2name(pool, con);
1491                   if ((providedbyinstalled(pool, map, con) & 1) != 0)
1492                     m = 9;
1493                 }
1494             }
1495           if (con)
1496             continue;   /* found a conflict */
1497         }
1498 #if 0
1499       if (s->repo && s->repo != oldinstalled)
1500         {
1501           Id p2, obs, *obsp, *pp;
1502           Solvable *s2;
1503           if (s->obsoletes)
1504             {
1505               obsp = s->repo->idarraydata + s->obsoletes;
1506               while ((obs = *obsp++) != 0)
1507                 {
1508                   if ((providedbyinstalled(pool, map, obs) & 1) != 0)
1509                     {
1510                       map[p] = 2;
1511                       break;
1512                     }
1513                 }
1514               if (obs)
1515                 continue;
1516             }
1517           FOR_PROVIDES(p2, pp, s->name)
1518             {
1519               s2 = pool->solvables + p2;
1520               if (s2->name == s->name && (map[p2] & 1) != 0)
1521                 {
1522                   map[p] = 2;
1523                   break;
1524                 }
1525             }
1526           if (p2)
1527             continue;
1528         }
1529 #endif
1530       if (m != map[p])
1531         {
1532           map[p] = m;
1533           did = 0;
1534         }
1535     }
1536   queue_free(res);
1537   queue_clone(res, pkgs);
1538   for (i = 0; i < pkgs->count; i++)
1539     {
1540       m = map[pkgs->elements[i]];
1541       if ((m & 9) == 9)
1542         r = 1;
1543       else if (m & 1)
1544         r = -1;
1545       else
1546         r = 0;
1547       res->elements[i] = r;
1548     }
1549   free(map);
1550 }
1551
1552 // EOF