fix .src matching .src and .nosrc packages
[platform/upstream/libsolv.git] / src / pool.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  * 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 *)solv_calloc(1, sizeof(*pool));
44
45   stringpool_init (&pool->ss, initpool_data);
46
47   /* alloc space for RelDep 0 */
48   pool->rels = solv_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 = solv_extend_resize(0, 2, sizeof(Solvable), SOLVABLE_BLOCK);
54   pool->nsolvables = 2;
55   memset(pool->solvables, 0, 2 * sizeof(Solvable));
56
57   queue_init(&pool->vendormap);
58
59 #if defined(DEBIAN)
60   pool->disttype = DISTTYPE_DEB;
61   pool->noarchid = ARCH_ALL;
62 #elif defined(ARCHLINUX)
63   pool->disttype = DISTTYPE_ARCH;
64   pool->noarchid = ARCH_ANY;
65 #else
66   pool->disttype = DISTTYPE_RPM;
67   pool->noarchid = ARCH_NOARCH;
68 #endif
69
70   /* initialize the system solvable */
71   s = pool->solvables + SYSTEMSOLVABLE;
72   s->name = SYSTEM_SYSTEM;
73   s->arch = pool->noarchid;
74   s->evr = ID_EMPTY;
75
76   pool->debugmask = SOLV_DEBUG_RESULT;  /* FIXME */
77 #ifdef FEDORA
78   pool->obsoleteusescolors = 1;
79 #endif
80 #ifdef RPM5
81   pool->forbidselfconflicts = 1;
82   pool->obsoleteusesprovides = 1;
83   pool->implicitobsoleteusesprovides = 1;
84   pool->havedistepoch = 1;
85 #endif
86   return pool;
87 }
88
89
90 /* free all the resources of our pool */
91 void
92 pool_free(Pool *pool)
93 {
94   int i;
95
96   pool_freewhatprovides(pool);
97   pool_freeidhashes(pool);
98   pool_freeallrepos(pool, 1);
99   solv_free(pool->id2arch);
100   solv_free(pool->id2color);
101   solv_free(pool->solvables);
102   stringpool_free(&pool->ss);
103   solv_free(pool->rels);
104   pool_setvendorclasses(pool, 0);
105   queue_free(&pool->vendormap);
106   for (i = 0; i < POOL_TMPSPACEBUF; i++)
107     solv_free(pool->tmpspace.buf[i]);
108   for (i = 0; i < pool->nlanguages; i++)
109     free((char *)pool->languages[i]);
110   solv_free(pool->languages);
111   solv_free(pool->languagecache);
112   solv_free(pool->errstr);
113   solv_free(pool->rootdir);
114   solv_free(pool);
115 }
116
117 void
118 pool_freeallrepos(Pool *pool, int reuseids)
119 {
120   int i;
121
122   pool_freewhatprovides(pool);
123   for (i = 1; i < pool->nrepos; i++) 
124     if (pool->repos[i])
125       repo_freedata(pool->repos[i]);
126   pool->repos = solv_free(pool->repos);
127   pool->nrepos = 0; 
128   pool->urepos = 0; 
129   /* the first two solvables don't belong to a repo */
130   pool_free_solvable_block(pool, 2, pool->nsolvables - 2, reuseids);
131 }
132
133 #ifdef MULTI_SEMANTICS
134 void
135 pool_setdisttype(Pool *pool, int disttype)
136 {
137   pool->disttype = disttype;
138   if (disttype == DISTTYPE_RPM)
139     pool->noarchid = ARCH_NOARCH;
140   if (disttype == DISTTYPE_DEB)
141     pool->noarchid = ARCH_ALL;
142   if (disttype == DISTTYPE_ARCH)
143     pool->noarchid = ARCH_ANY;
144   pool->solvables[SYSTEMSOLVABLE].arch = pool->noarchid;
145 }
146 #endif
147
148 int
149 pool_get_flag(Pool *pool, int flag)
150 {
151   switch (flag)
152     {
153     case POOL_FLAG_PROMOTEEPOCH:
154       return pool->promoteepoch;
155     case POOL_FLAG_FORBIDSELFCONFLICTS:
156       return pool->forbidselfconflicts;
157     case POOL_FLAG_OBSOLETEUSESPROVIDES:
158       return pool->obsoleteusesprovides;
159     case POOL_FLAG_IMPLICITOBSOLETEUSESPROVIDES:
160       return pool->implicitobsoleteusesprovides;
161     case POOL_FLAG_OBSOLETEUSESCOLORS:
162       return pool->obsoleteusescolors;
163     case POOL_FLAG_NOINSTALLEDOBSOLETES:
164       return pool->noinstalledobsoletes;
165     case POOL_FLAG_HAVEDISTEPOCH:
166       return pool->havedistepoch;
167     default:
168       break;
169     }
170   return -1;
171 }
172
173 int
174 pool_set_flag(Pool *pool, int flag, int value)
175 {
176   int old = pool_get_flag(pool, flag);
177   switch (flag)
178     {
179     case POOL_FLAG_PROMOTEEPOCH:
180       pool->promoteepoch = value;
181       break;
182     case POOL_FLAG_FORBIDSELFCONFLICTS:
183       pool->forbidselfconflicts = value;
184       break;
185     case POOL_FLAG_OBSOLETEUSESPROVIDES:
186       pool->obsoleteusesprovides = value;
187       break;
188     case POOL_FLAG_IMPLICITOBSOLETEUSESPROVIDES:
189       pool->implicitobsoleteusesprovides = value;
190       break;
191     case POOL_FLAG_OBSOLETEUSESCOLORS:
192       pool->obsoleteusescolors = value;
193       break;
194     case POOL_FLAG_NOINSTALLEDOBSOLETES:
195       pool->noinstalledobsoletes = value;
196       break;
197     case POOL_FLAG_HAVEDISTEPOCH:
198       pool->havedistepoch = value;
199       break;
200     default:
201       break;
202     }
203   return old;
204 }
205
206
207 Id
208 pool_add_solvable(Pool *pool)
209 {
210   pool->solvables = solv_extend(pool->solvables, pool->nsolvables, 1, sizeof(Solvable), SOLVABLE_BLOCK);
211   memset(pool->solvables + pool->nsolvables, 0, sizeof(Solvable));
212   return pool->nsolvables++;
213 }
214
215 Id
216 pool_add_solvable_block(Pool *pool, int count)
217 {
218   Id nsolvables = pool->nsolvables;
219   if (!count)
220     return nsolvables;
221   pool->solvables = solv_extend(pool->solvables, pool->nsolvables, count, sizeof(Solvable), SOLVABLE_BLOCK);
222   memset(pool->solvables + nsolvables, 0, sizeof(Solvable) * count);
223   pool->nsolvables += count;
224   return nsolvables;
225 }
226
227 void
228 pool_free_solvable_block(Pool *pool, Id start, int count, int reuseids)
229 {
230   if (!count)
231     return;
232   if (reuseids && start + count == pool->nsolvables)
233     {
234       /* might want to shrink solvable array */
235       pool->nsolvables = start;
236       return;
237     }
238   memset(pool->solvables + start, 0, sizeof(Solvable) * count);
239 }
240
241
242 void
243 pool_set_installed(Pool *pool, Repo *installed)
244 {
245   if (pool->installed == installed)
246     return;
247   pool->installed = installed;
248   pool_freewhatprovides(pool);
249 }
250
251 static int
252 pool_shrink_whatprovides_sortcmp(const void *ap, const void *bp, void *dp)
253 {
254   int r;
255   Pool *pool = dp;
256   Id oa, ob, *da, *db;
257   oa = pool->whatprovides[*(Id *)ap];
258   ob = pool->whatprovides[*(Id *)bp];
259   if (oa == ob)
260     return *(Id *)ap - *(Id *)bp;
261   da = pool->whatprovidesdata + oa;
262   db = pool->whatprovidesdata + ob;
263   while (*db)
264     if ((r = (*da++ - *db++)) != 0)
265       return r;
266   if (*da)
267     return *da;
268   return *(Id *)ap - *(Id *)bp;
269 }
270
271 /*
272  * pool_shrink_whatprovides  - unify whatprovides data
273  *
274  * whatprovides_rel must be empty for this to work!
275  *
276  */
277 static void
278 pool_shrink_whatprovides(Pool *pool)
279 {
280   Id i, n, id;
281   Id *sorted;
282   Id lastid, *last, *dp, *lp;
283   Offset o;
284   int r;
285
286   if (pool->ss.nstrings < 3)
287     return;
288   sorted = solv_malloc2(pool->ss.nstrings, sizeof(Id));
289   for (i = id = 0; id < pool->ss.nstrings; id++)
290     if (pool->whatprovides[id] && pool->whatprovides[id] != 1)
291       sorted[i++] = id;
292   n = i;
293   solv_sort(sorted, n, sizeof(Id), pool_shrink_whatprovides_sortcmp, pool);
294   last = 0;
295   lastid = 0;
296   for (i = 0; i < n; i++)
297     {
298       id = sorted[i];
299       o = pool->whatprovides[id];
300       dp = pool->whatprovidesdata + o;
301       if (last)
302         {
303           lp = last;
304           while (*dp)   
305             if (*dp++ != *lp++)
306               {
307                 last = 0;
308                 break;
309               }
310           if (last && *lp)
311             last = 0;
312           if (last)
313             {
314               pool->whatprovides[id] = -lastid;
315               continue;
316             }
317         }
318       last = pool->whatprovidesdata + o;
319       lastid = id;
320     }
321   solv_free(sorted);
322   dp = pool->whatprovidesdata + 2;
323   for (id = 1; id < pool->ss.nstrings; id++)
324     {
325       o = pool->whatprovides[id];
326       if (o == 0 || o == 1)
327         continue;
328       if ((Id)o < 0)
329         {
330           i = -(Id)o;
331           if (i >= id)
332             abort();
333           pool->whatprovides[id] = pool->whatprovides[i];
334           continue;
335         }
336       lp = pool->whatprovidesdata + o;
337       if (lp < dp)
338         abort();
339       pool->whatprovides[id] = dp - pool->whatprovidesdata;
340       while ((*dp++ = *lp++) != 0)
341         ;
342     }
343   o = dp - pool->whatprovidesdata;
344   POOL_DEBUG(SOLV_DEBUG_STATS, "shrunk whatprovidesdata from %d to %d\n", pool->whatprovidesdataoff, o);
345   if (pool->whatprovidesdataoff == o)
346     return;
347   r = pool->whatprovidesdataoff - o;
348   pool->whatprovidesdataoff = o;
349   pool->whatprovidesdata = solv_realloc(pool->whatprovidesdata, (o + pool->whatprovidesdataleft) * sizeof(Id));
350   if (r > pool->whatprovidesdataleft)
351     r = pool->whatprovidesdataleft;
352   memset(pool->whatprovidesdata + o, 0, r * sizeof(Id));
353 }
354
355
356 /*
357  * pool_createwhatprovides()
358  * 
359  * create hashes over pool of solvables to ease provide lookups
360  * 
361  */
362 void
363 pool_createwhatprovides(Pool *pool)
364 {
365   int i, num, np, extra;
366   Offset off;
367   Solvable *s;
368   Id id;
369   Offset *idp, n;
370   Offset *whatprovides;
371   Id *whatprovidesdata, *d;
372   Repo *installed = pool->installed;
373   unsigned int now;
374
375   now = solv_timems(0);
376   POOL_DEBUG(SOLV_DEBUG_STATS, "number of solvables: %d, memory used: %d K\n", pool->nsolvables, pool->nsolvables * (int)sizeof(Solvable) / 1024);
377   POOL_DEBUG(SOLV_DEBUG_STATS, "number of ids: %d + %d\n", pool->ss.nstrings, pool->nrels);
378   POOL_DEBUG(SOLV_DEBUG_STATS, "string memory used: %d K array + %d K data,  rel memory used: %d K array\n", pool->ss.nstrings / (1024 / (int)sizeof(Id)), pool->ss.sstrings / 1024, pool->nrels * (int)sizeof(Reldep) / 1024);
379   if (pool->ss.stringhashmask || pool->relhashmask)
380     POOL_DEBUG(SOLV_DEBUG_STATS, "string hash memory: %d K, rel hash memory : %d K\n", (pool->ss.stringhashmask + 1) / (int)(1024/sizeof(Id)), (pool->relhashmask + 1) / (int)(1024/sizeof(Id)));
381
382   pool_freeidhashes(pool);      /* XXX: should not be here! */
383   pool_freewhatprovides(pool);
384   num = pool->ss.nstrings;
385   pool->whatprovides = whatprovides = solv_calloc_block(num, sizeof(Offset), WHATPROVIDES_BLOCK);
386   pool->whatprovides_rel = solv_calloc_block(pool->nrels, sizeof(Offset), WHATPROVIDES_BLOCK);
387
388   /* count providers for each name */
389   for (i = pool->nsolvables - 1; i > 0; i--)
390     {
391       Id *pp;
392       s = pool->solvables + i;
393       if (!s->provides || !s->repo || s->repo->disabled)
394         continue;
395       /* we always need the installed solvable in the whatprovides data,
396          otherwise obsoletes/conflicts on them won't work */
397       if (s->repo != installed && !pool_installable(pool, s))
398         continue;
399       pp = s->repo->idarraydata + s->provides;
400       while ((id = *pp++) != 0)
401         {
402           while (ISRELDEP(id))
403             {
404               Reldep *rd = GETRELDEP(pool, id);
405               id = rd->name;
406             }
407           whatprovides[id]++;          /* inc count of providers */
408         }
409     }
410
411   off = 2;      /* first entry is undef, second is empty list */
412   np = 0;                              /* number of names provided */
413   for (i = 0, idp = whatprovides; i < num; i++, idp++)
414     {
415       n = *idp;
416       if (!n)                          /* no providers */
417         continue;
418       off += n;                        /* make space for all providers */
419       *idp = off++;                    /* now idp points to terminating zero */
420       np++;                            /* inc # of provider 'slots' for stats */
421     }
422
423   POOL_DEBUG(SOLV_DEBUG_STATS, "provide ids: %d\n", np);
424
425   /* reserve some space for relation data */
426   extra = 2 * pool->nrels;
427   if (extra < 256)
428     extra = 256;
429
430   POOL_DEBUG(SOLV_DEBUG_STATS, "provide space needed: %d + %d\n", off, extra);
431
432   /* alloc space for all providers + extra */
433   whatprovidesdata = solv_calloc(off + extra, sizeof(Id));
434
435   /* now fill data for all provides */
436   for (i = pool->nsolvables - 1; i > 0; i--)
437     {
438       Id *pp;
439       s = pool->solvables + i;
440       if (!s->provides || !s->repo || s->repo->disabled)
441         continue;
442       if (s->repo != installed && !pool_installable(pool, s))
443         continue;
444
445       /* for all provides of this solvable */
446       pp = s->repo->idarraydata + s->provides;
447       while ((id = *pp++) != 0)
448         {
449           while (ISRELDEP(id))
450             {
451               Reldep *rd = GETRELDEP(pool, id);
452               id = rd->name;
453             }
454           d = whatprovidesdata + whatprovides[id];   /* offset into whatprovidesdata */
455           if (*d != i)          /* don't add same solvable twice */
456             {
457               d[-1] = i;
458               whatprovides[id]--;
459             }
460         }
461     }
462   pool->whatprovidesdata = whatprovidesdata;
463   pool->whatprovidesdataoff = off;
464   pool->whatprovidesdataleft = extra;
465   pool_shrink_whatprovides(pool);
466   POOL_DEBUG(SOLV_DEBUG_STATS, "whatprovides memory used: %d K id array, %d K data\n", (pool->ss.nstrings + pool->nrels + WHATPROVIDES_BLOCK) / (int)(1024/sizeof(Id)), (pool->whatprovidesdataoff + pool->whatprovidesdataleft) / (int)(1024/sizeof(Id)));
467   POOL_DEBUG(SOLV_DEBUG_STATS, "createwhatprovides took %d ms\n", solv_timems(now));
468 }
469
470 /*
471  * free all of our whatprovides data
472  * be careful, everything internalized with pool_queuetowhatprovides is
473  * gone, too
474  */
475 void
476 pool_freewhatprovides(Pool *pool)
477 {
478   pool->whatprovides = solv_free(pool->whatprovides);
479   pool->whatprovides_rel = solv_free(pool->whatprovides_rel);
480   pool->whatprovidesdata = solv_free(pool->whatprovidesdata);
481   pool->whatprovidesdataoff = 0;
482   pool->whatprovidesdataleft = 0;
483 }
484
485
486 /******************************************************************************/
487
488 /*
489  * pool_queuetowhatprovides  - add queue contents to whatprovidesdata
490  * 
491  * on-demand filling of provider information
492  * move queue data into whatprovidesdata
493  * q: queue of Ids
494  * returns: Offset into whatprovides
495  *
496  */
497 Id
498 pool_queuetowhatprovides(Pool *pool, Queue *q)
499 {
500   Offset off;
501   int count = q->count;
502
503   if (count == 0)                      /* queue empty -> 1 */
504     return 1;
505
506   /* extend whatprovidesdata if needed, +1 for ID_NULL-termination */
507   if (pool->whatprovidesdataleft < count + 1)
508     {
509       POOL_DEBUG(SOLV_DEBUG_STATS, "growing provides hash data...\n");
510       pool->whatprovidesdata = solv_realloc(pool->whatprovidesdata, (pool->whatprovidesdataoff + count + 4096) * sizeof(Id));
511       pool->whatprovidesdataleft = count + 4096;
512     }
513
514   /* copy queue to next free slot */
515   off = pool->whatprovidesdataoff;
516   memcpy(pool->whatprovidesdata + pool->whatprovidesdataoff, q->elements, count * sizeof(Id));
517
518   /* adapt count and ID_NULL-terminate */
519   pool->whatprovidesdataoff += count;
520   pool->whatprovidesdata[pool->whatprovidesdataoff++] = ID_NULL;
521   pool->whatprovidesdataleft -= count + 1;
522
523   return (Id)off;
524 }
525
526
527 /*************************************************************************/
528
529 #if defined(MULTI_SEMANTICS)
530 # define EVRCMP_DEPCMP (pool->disttype == DISTTYPE_DEB ? EVRCMP_COMPARE : EVRCMP_MATCH_RELEASE)
531 #elif defined(DEBIAN)
532 # define EVRCMP_DEPCMP EVRCMP_COMPARE
533 #else
534 # define EVRCMP_DEPCMP EVRCMP_MATCH_RELEASE
535 #endif
536
537 /* check if a package's nevr matches a dependency */
538
539 int
540 pool_match_nevr_rel(Pool *pool, Solvable *s, Id d)
541 {
542   Reldep *rd = GETRELDEP(pool, d);
543   Id name = rd->name;
544   Id evr = rd->evr;
545   int flags = rd->flags;
546
547   if (flags > 7)
548     {
549       switch (flags)
550         {
551         case REL_ARCH:
552           if (s->arch != evr)
553             {
554               if (evr != ARCH_SRC || s->arch != ARCH_NOSRC)
555                 return 0;
556             }
557           return pool_match_nevr(pool, s, name);
558         case REL_OR:
559           if (pool_match_nevr(pool, s, name))
560             return 1;
561           return pool_match_nevr(pool, s, evr);
562         case REL_AND:
563         case REL_WITH:
564           if (!pool_match_nevr(pool, s, name))
565             return 0;
566           return pool_match_nevr(pool, s, evr);
567         default:
568           return 0;
569         }
570     }
571   if (!pool_match_nevr(pool, s, name))
572     return 0;
573   if (evr == s->evr)
574     return (flags & REL_EQ) ? 1 : 0;
575   if (!flags)
576     return 0;
577   if (flags == 7)
578     return 1;
579   switch (pool_evrcmp(pool, s->evr, evr, EVRCMP_DEPCMP))
580     {
581     case -2:
582       return 1;
583     case -1:
584       return (flags & REL_LT) ? 1 : 0;
585     case 0:
586       return (flags & REL_EQ) ? 1 : 0;
587     case 1:
588       return (flags & REL_GT) ? 1 : 0;
589     case 2:
590       return (flags & REL_EQ) ? 1 : 0;
591     default:
592       break;
593     }
594   return 0;
595 }
596
597 /* match (flags, evr) against provider (pflags, pevr) */
598 static inline int
599 pool_match_flags_evr(Pool *pool, int pflags, Id pevr, int flags, int evr)
600 {
601   if (!pflags || !flags || pflags >= 8 || flags >= 8)
602     return 0;
603   if (flags == 7 || pflags == 7)
604     return 1;           /* rel provides every version */
605   if ((pflags & flags & (REL_LT | REL_GT)) != 0)
606     return 1;           /* both rels show in the same direction */
607   if (pevr == evr)
608     return (flags & pflags & REL_EQ) ? 1 : 0;
609   switch (pool_evrcmp(pool, pevr, evr, EVRCMP_DEPCMP))
610     {
611     case -2:
612       return (pflags & REL_EQ) ? 1 : 0;
613     case -1:
614       return (flags & REL_LT) || (pflags & REL_GT) ? 1 : 0;
615     case 0:
616       return (flags & pflags & REL_EQ) ? 1 : 0;
617     case 1:
618       return (flags & REL_GT) || (pflags & REL_LT) ? 1 : 0;
619     case 2:
620       return (flags & REL_EQ) ? 1 : 0;
621     default:
622       break;
623     }
624   return 0;
625 }
626
627 /* match two dependencies (d1 = provider) */
628
629 int
630 pool_match_dep(Pool *pool, Id d1, Id d2)
631 {
632   Reldep *rd1, *rd2;
633
634   if (d1 == d2)
635     return 1;
636   if (!ISRELDEP(d1))
637     {
638       if (!ISRELDEP(d2))
639         return 0;
640       rd2 = GETRELDEP(pool, d2);
641       return pool_match_dep(pool, d1, rd2->name);
642     }
643   rd1 = GETRELDEP(pool, d1);
644   if (!ISRELDEP(d2))
645     {
646       return pool_match_dep(pool, rd1->name, d2);
647     }
648   rd2 = GETRELDEP(pool, d2);
649   /* first match name */
650   if (!pool_match_dep(pool, rd1->name, rd2->name))
651     return 0;
652   /* name matches, check flags and evr */
653   return pool_match_flags_evr(pool, rd1->flags, rd1->evr, rd2->flags, rd2->evr);
654 }
655
656 /*
657  * addrelproviders
658  * 
659  * add packages fulfilling the relation to whatprovides array
660  * no exact providers, do range match
661  * 
662  */
663
664 Id
665 pool_addrelproviders(Pool *pool, Id d)
666 {
667   Reldep *rd = GETRELDEP(pool, d);
668   Reldep *prd;
669   Queue plist;
670   Id buf[16];
671   Id name = rd->name;
672   Id evr = rd->evr;
673   int flags = rd->flags;
674   Id pid, *pidp;
675   Id p, *pp;
676
677   d = GETRELID(d);
678   queue_init_buffer(&plist, buf, sizeof(buf)/sizeof(*buf));
679
680   if (flags >= 8)
681     {
682       /* special relation */
683       Id wp = 0;
684       Id *pp2, *pp3;
685
686       switch (flags)
687         {
688         case REL_AND:
689         case REL_WITH:
690           wp = pool_whatprovides(pool, name);
691           pp2 = pool_whatprovides_ptr(pool, evr);
692           pp = pool->whatprovidesdata + wp;
693           while ((p = *pp++) != 0)
694             {
695               for (pp3 = pp2; *pp3; pp3++)
696                 if (*pp3 == p)
697                   break;
698               if (*pp3)
699                 queue_push(&plist, p);  /* found it */
700               else
701                 wp = 0;
702             }
703           break;
704         case REL_OR:
705           wp = pool_whatprovides(pool, name);
706           pp = pool->whatprovidesdata + wp;
707           if (!*pp)
708             wp = pool_whatprovides(pool, evr);
709           else
710             {
711               int cnt;
712               while ((p = *pp++) != 0)
713                 queue_push(&plist, p);
714               cnt = plist.count;
715               pp = pool_whatprovides_ptr(pool, evr);
716               while ((p = *pp++) != 0)
717                 queue_pushunique(&plist, p);
718               if (plist.count != cnt)
719                 wp = 0;
720             }
721           break;
722         case REL_NAMESPACE:
723           if (name == NAMESPACE_OTHERPROVIDERS)
724             {
725               wp = pool_whatprovides(pool, evr);
726               break;
727             }
728           if (pool->nscallback)
729             {
730               /* ask callback which packages provide the dependency
731                * 0:  none
732                * 1:  the system (aka SYSTEMSOLVABLE)
733                * >1: set of packages, stored as offset on whatprovidesdata
734                */
735               p = pool->nscallback(pool, pool->nscallbackdata, name, evr);
736               if (p > 1)
737                 wp = p;
738               if (p == 1)
739                 queue_push(&plist, SYSTEMSOLVABLE);
740             }
741           break;
742         case REL_ARCH:
743           /* small hack: make it possible to match <pkg>.src
744            * we have to iterate over the solvables as src packages do not
745            * provide anything, thus they are not indexed in our
746            * whatprovides hash */
747           if (evr == ARCH_SRC || evr == ARCH_NOSRC)
748             {
749               Solvable *s;
750               for (p = 1, s = pool->solvables + p; p < pool->nsolvables; p++, s++)
751                 {
752                   if (!s->repo)
753                     continue;
754                   if (s->arch != evr && s->arch != ARCH_NOSRC)
755                     continue;
756                   if (pool_match_nevr(pool, s, name))
757                     queue_push(&plist, p);
758                 }
759               break;
760             }
761           wp = pool_whatprovides(pool, name);
762           pp = pool->whatprovidesdata + wp;
763           while ((p = *pp++) != 0)
764             {
765               Solvable *s = pool->solvables + p;
766               if (s->arch == evr)
767                 queue_push(&plist, p);
768               else
769                 wp = 0;
770             }
771           break;
772         case REL_FILECONFLICT:
773           pp = pool_whatprovides_ptr(pool, name);
774           while ((p = *pp++) != 0)
775             {
776               Id origd = MAKERELDEP(d);
777               Solvable *s = pool->solvables + p;
778               if (!s->provides)
779                 continue;
780               pidp = s->repo->idarraydata + s->provides;
781               while ((pid = *pidp++) != 0)
782                 if (pid == origd)
783                   break;
784               if (pid)
785                 queue_push(&plist, p);
786             }
787           break;
788         default:
789           break;
790         }
791       if (wp)
792         {
793           /* we can reuse an existing entry */
794           queue_free(&plist);
795           pool->whatprovides_rel[d] = wp;
796           return wp;
797         }
798     }
799   else if (flags)
800     {
801       /* simple version comparison relation */
802 #if 0
803       POOL_DEBUG(SOLV_DEBUG_STATS, "addrelproviders: what provides %s?\n", pool_dep2str(pool, name));
804 #endif
805       pp = pool_whatprovides_ptr(pool, name);
806       while (ISRELDEP(name))
807         {
808           rd = GETRELDEP(pool, name);
809           name = rd->name;
810         }
811       while ((p = *pp++) != 0)
812         {
813           Solvable *s = pool->solvables + p;
814           if (!s->provides)
815             {
816               /* no provides - check nevr */
817               if (pool_match_nevr_rel(pool, s, MAKERELDEP(d)))
818                 queue_push(&plist, p);
819               continue;
820             }
821           /* solvable p provides name in some rels */
822           pidp = s->repo->idarraydata + s->provides;
823           while ((pid = *pidp++) != 0)
824             {
825               if (!ISRELDEP(pid))
826                 {
827                   if (pid != name)
828                     continue;           /* wrong provides name */
829                   if (pool->disttype == DISTTYPE_DEB)
830                     continue;           /* unversioned provides can never match versioned deps */
831                   break;
832                 }
833               prd = GETRELDEP(pool, pid);
834               if (prd->name != name)
835                 continue;               /* wrong provides name */
836               /* right package, both deps are rels. check flags/evr */
837               if (pool_match_flags_evr(pool, prd->flags, prd->evr, flags, evr))
838                 break;  /* matches */
839             }
840           if (!pid)
841             continue;   /* none of the providers matched */
842           queue_push(&plist, p);
843         }
844       /* make our system solvable provide all unknown rpmlib() stuff */
845       if (plist.count == 0 && !strncmp(pool_id2str(pool, name), "rpmlib(", 7))
846         queue_push(&plist, SYSTEMSOLVABLE);
847     }
848   /* add providers to whatprovides */
849 #if 0
850   POOL_DEBUG(SOLV_DEBUG_STATS, "addrelproviders: adding %d packages to %d\n", plist.count, d);
851 #endif
852   pool->whatprovides_rel[d] = pool_queuetowhatprovides(pool, &plist);
853   queue_free(&plist);
854
855   return pool->whatprovides_rel[d];
856 }
857
858 /*************************************************************************/
859
860 void
861 pool_debug(Pool *pool, int type, const char *format, ...)
862 {
863   va_list args;
864   char buf[1024];
865
866   if ((type & (SOLV_FATAL|SOLV_ERROR)) == 0)
867     {
868       if ((pool->debugmask & type) == 0)
869         return;
870     }
871   va_start(args, format);
872   if (!pool->debugcallback)
873     {
874       if ((type & (SOLV_FATAL|SOLV_ERROR)) == 0 && !(pool->debugmask & SOLV_DEBUG_TO_STDERR))
875         vprintf(format, args);
876       else
877         vfprintf(stderr, format, args);
878       return;
879     }
880   vsnprintf(buf, sizeof(buf), format, args);
881   va_end(args);
882   pool->debugcallback(pool, pool->debugcallbackdata, type, buf);
883 }
884
885 int
886 pool_error(Pool *pool, int ret, const char *format, ...)
887 {
888   va_list args;
889   int l;
890   va_start(args, format);
891   if (!pool->errstr)
892     {
893       pool->errstra = 1024;
894       pool->errstr = solv_malloc(pool->errstra);
895     }
896   if (!*format)
897     {
898       *pool->errstr = 0;
899       l = 0;
900     }
901   else
902     l = vsnprintf(pool->errstr, pool->errstra, format, args);
903   va_end(args);
904   if (l >= 0 && l + 1 > pool->errstra)
905     {
906       pool->errstra = l + 256;
907       pool->errstr = solv_realloc(pool->errstr, pool->errstra);
908       va_start(args, format);
909       l = vsnprintf(pool->errstr, pool->errstra, format, args);
910       va_end(args);
911     }
912   if (l < 0)
913     strcpy(pool->errstr, "unknown error");
914   if (pool->debugmask & SOLV_ERROR)
915     pool_debug(pool, SOLV_ERROR, "%s\n", pool->errstr);
916   return ret;
917 }
918
919 char *
920 pool_errstr(Pool *pool)
921 {
922   return pool->errstr ? pool->errstr : "no error";
923 }
924
925 void
926 pool_setdebuglevel(Pool *pool, int level)
927 {
928   int mask = SOLV_DEBUG_RESULT;
929   if (level > 0)
930     mask |= SOLV_DEBUG_STATS|SOLV_DEBUG_ANALYZE|SOLV_DEBUG_UNSOLVABLE|SOLV_DEBUG_SOLVER|SOLV_DEBUG_TRANSACTION|SOLV_ERROR;
931   if (level > 1)
932     mask |= SOLV_DEBUG_JOB|SOLV_DEBUG_SOLUTIONS|SOLV_DEBUG_POLICY;
933   if (level > 2)
934     mask |= SOLV_DEBUG_PROPAGATE;
935   if (level > 3)
936     mask |= SOLV_DEBUG_RULE_CREATION;
937   mask |= pool->debugmask & SOLV_DEBUG_TO_STDERR;       /* keep bit */
938   pool->debugmask = mask;
939 }
940
941 void pool_setdebugcallback(Pool *pool, void (*debugcallback)(struct _Pool *, void *data, int type, const char *str), void *debugcallbackdata)
942 {
943   pool->debugcallback = debugcallback;
944   pool->debugcallbackdata = debugcallbackdata;
945 }
946
947 void pool_setdebugmask(Pool *pool, int mask)
948 {
949   pool->debugmask = mask;
950 }
951
952 void pool_setloadcallback(Pool *pool, int (*cb)(struct _Pool *, struct _Repodata *, void *), void *loadcbdata)
953 {
954   pool->loadcallback = cb;
955   pool->loadcallbackdata = loadcbdata;
956 }
957
958 /*************************************************************************/
959
960 struct searchfiles {
961   Id *ids;
962   char **dirs;
963   char **names;
964   int nfiles;
965   Map seen;
966 };
967
968 #define SEARCHFILES_BLOCK 127
969
970 static void
971 pool_addfileprovides_dep(Pool *pool, Id *ida, struct searchfiles *sf, struct searchfiles *isf)
972 {
973   Id dep, sid;
974   const char *s, *sr;
975   struct searchfiles *csf;
976
977   while ((dep = *ida++) != 0)
978     {
979       csf = sf;
980       while (ISRELDEP(dep))
981         {
982           Reldep *rd;
983           sid = pool->ss.nstrings + GETRELID(dep);
984           if (MAPTST(&csf->seen, sid))
985             {
986               dep = 0;
987               break;
988             }
989           MAPSET(&csf->seen, sid);
990           rd = GETRELDEP(pool, dep);
991           if (rd->flags < 8)
992             dep = rd->name;
993           else if (rd->flags == REL_NAMESPACE)
994             {
995               if (rd->name == NAMESPACE_INSTALLED || rd->name == NAMESPACE_SPLITPROVIDES)
996                 {
997                   csf = isf;
998                   if (!csf || MAPTST(&csf->seen, sid))
999                     {
1000                       dep = 0;
1001                       break;
1002                     }
1003                   MAPSET(&csf->seen, sid);
1004                 }
1005               dep = rd->evr;
1006             }
1007           else if (rd->flags == REL_FILECONFLICT)
1008             {
1009               dep = 0;
1010               break;
1011             }
1012           else
1013             {
1014               Id ids[2];
1015               ids[0] = rd->name;
1016               ids[1] = 0;
1017               pool_addfileprovides_dep(pool, ids, csf, isf);
1018               dep = rd->evr;
1019             }
1020         }
1021       if (!dep)
1022         continue;
1023       if (MAPTST(&csf->seen, dep))
1024         continue;
1025       MAPSET(&csf->seen, dep);
1026       s = pool_id2str(pool, dep);
1027       if (*s != '/')
1028         continue;
1029       csf->ids = solv_extend(csf->ids, csf->nfiles, 1, sizeof(Id), SEARCHFILES_BLOCK);
1030       csf->dirs = solv_extend(csf->dirs, csf->nfiles, 1, sizeof(const char *), SEARCHFILES_BLOCK);
1031       csf->names = solv_extend(csf->names, csf->nfiles, 1, sizeof(const char *), SEARCHFILES_BLOCK);
1032       csf->ids[csf->nfiles] = dep;
1033       sr = strrchr(s, '/');
1034       csf->names[csf->nfiles] = solv_strdup(sr + 1);
1035       csf->dirs[csf->nfiles] = solv_malloc(sr - s + 1);
1036       if (sr != s)
1037         strncpy(csf->dirs[csf->nfiles], s, sr - s);
1038       csf->dirs[csf->nfiles][sr - s] = 0;
1039       csf->nfiles++;
1040     }
1041 }
1042
1043 struct addfileprovides_cbdata {
1044   int nfiles;
1045   Id *ids;
1046   char **dirs;
1047   char **names;
1048
1049   Id *dids;
1050
1051   Map providedids;
1052
1053   Map useddirs;
1054 };
1055
1056 static int
1057 addfileprovides_cb(void *cbdata, Solvable *s, Repodata *data, Repokey *key, KeyValue *value)
1058 {
1059   struct addfileprovides_cbdata *cbd = cbdata;
1060   int i;
1061
1062   if (!cbd->useddirs.size)
1063     {
1064       map_init(&cbd->useddirs, data->dirpool.ndirs + 1);
1065       for (i = 0; i < cbd->nfiles; i++)
1066         {
1067           Id did;
1068           if (MAPTST(&cbd->providedids, cbd->ids[i]))
1069             {
1070               cbd->dids[i] = 0;
1071               continue;
1072             }
1073           did = repodata_str2dir(data, cbd->dirs[i], 0);
1074           cbd->dids[i] = did;
1075           if (did)
1076             MAPSET(&cbd->useddirs, did);
1077         }
1078       repodata_free_dircache(data);
1079     }
1080   if (value->id >= data->dirpool.ndirs || !MAPTST(&cbd->useddirs, value->id))
1081     return 0;
1082   for (i = 0; i < cbd->nfiles; i++)
1083     {
1084       if (cbd->dids[i] != value->id)
1085         continue;
1086       if (!strcmp(cbd->names[i], value->str))
1087         break;
1088     }
1089   if (i == cbd->nfiles)
1090     return 0;
1091   s->provides = repo_addid_dep(s->repo, s->provides, cbd->ids[i], SOLVABLE_FILEMARKER);
1092   return 0;
1093 }
1094
1095 static void
1096 pool_addfileprovides_search(Pool *pool, struct addfileprovides_cbdata *cbd, struct searchfiles *sf, Repo *repoonly)
1097 {
1098   Id p;
1099   Repodata *data;
1100   Repo *repo;
1101   Queue fileprovidesq;
1102   int i, j, repoid, repodataid;
1103   int provstart, provend;
1104   Map donemap;
1105   int ndone, incomplete;
1106
1107   if (!pool->urepos)
1108     return;
1109
1110   cbd->nfiles = sf->nfiles;
1111   cbd->ids = sf->ids;
1112   cbd->dirs = sf->dirs;
1113   cbd->names = sf->names;
1114   cbd->dids = solv_realloc2(cbd->dids, sf->nfiles, sizeof(Id));
1115   map_init(&cbd->providedids, pool->ss.nstrings);
1116
1117   repoid = 1;
1118   repo = repoonly ? repoonly : pool->repos[repoid];
1119   map_init(&donemap, pool->nsolvables);
1120   queue_init(&fileprovidesq);
1121   provstart = provend = 0;
1122   for (;;)
1123     {
1124       if (!repo || repo->disabled)
1125         {
1126           if (repoonly || ++repoid == pool->nrepos)
1127             break;
1128           repo = pool->repos[repoid];
1129           continue;
1130         }
1131       ndone = 0;
1132       FOR_REPODATAS(repo, repodataid, data)
1133         {
1134           if (ndone >= repo->nsolvables)
1135             break;
1136
1137           if (repodata_lookup_idarray(data, SOLVID_META, REPOSITORY_ADDEDFILEPROVIDES, &fileprovidesq))
1138             {
1139               map_empty(&cbd->providedids);
1140               for (i = 0; i < fileprovidesq.count; i++)
1141                 MAPSET(&cbd->providedids, fileprovidesq.elements[i]);
1142               provstart = data->start;
1143               provend = data->end;
1144               for (i = 0; i < cbd->nfiles; i++)
1145                 if (!MAPTST(&cbd->providedids, cbd->ids[i]))
1146                   break;
1147               if (i == cbd->nfiles)
1148                 {
1149                   /* great! no need to search files */
1150                   for (p = data->start; p < data->end; p++)
1151                     if (pool->solvables[p].repo == repo)
1152                       {
1153                         if (MAPTST(&donemap, p))
1154                           continue;
1155                         MAPSET(&donemap, p);
1156                         ndone++;
1157                       }
1158                   continue;
1159                 }
1160             }
1161
1162           if (!repodata_has_keyname(data, SOLVABLE_FILELIST))
1163             continue;
1164
1165           if (data->start < provstart || data->end > provend)
1166             {
1167               map_empty(&cbd->providedids);
1168               provstart = provend = 0;
1169             }
1170
1171           /* check if the data is incomplete */
1172           incomplete = 0;
1173           if (data->state == REPODATA_AVAILABLE)
1174             {
1175               for (j = 1; j < data->nkeys; j++)
1176                 if (data->keys[j].name != REPOSITORY_SOLVABLES && data->keys[j].name != SOLVABLE_FILELIST)
1177                   break;
1178               if (j < data->nkeys)
1179                 {
1180 #if 0
1181                   for (i = 0; i < cbd->nfiles; i++)
1182                     if (!MAPTST(&cbd->providedids, cbd->ids[i]) && !repodata_filelistfilter_matches(data, pool_id2str(pool, cbd->ids[i])))
1183                       printf("need complete filelist because of %s\n", pool_id2str(pool, cbd->ids[i]));
1184 #endif
1185                   for (i = 0; i < cbd->nfiles; i++)
1186                     if (!MAPTST(&cbd->providedids, cbd->ids[i]) && !repodata_filelistfilter_matches(data, pool_id2str(pool, cbd->ids[i])))
1187                       break;
1188                   if (i < cbd->nfiles)
1189                     incomplete = 1;
1190                 }
1191             }
1192
1193           /* do the search */
1194           map_init(&cbd->useddirs, 0);
1195           for (p = data->start; p < data->end; p++)
1196             if (pool->solvables[p].repo == repo)
1197               {
1198                 if (MAPTST(&donemap, p))
1199                   continue;
1200                 repodata_search(data, p, SOLVABLE_FILELIST, 0, addfileprovides_cb, cbd);
1201                 if (!incomplete)
1202                   {
1203                     MAPSET(&donemap, p);
1204                     ndone++;
1205                   }
1206               }
1207           map_free(&cbd->useddirs);
1208         }
1209
1210       if (repoonly || ++repoid == pool->nrepos)
1211         break;
1212       repo = pool->repos[repoid];
1213     }
1214   map_free(&donemap);
1215   queue_free(&fileprovidesq);
1216   map_free(&cbd->providedids);
1217 }
1218
1219 void
1220 pool_addfileprovides_queue(Pool *pool, Queue *idq, Queue *idqinst)
1221 {
1222   Solvable *s;
1223   Repo *installed, *repo;
1224   struct searchfiles sf, isf, *isfp;
1225   struct addfileprovides_cbdata cbd;
1226   int i;
1227   unsigned int now;
1228
1229   installed = pool->installed;
1230   now = solv_timems(0);
1231   memset(&sf, 0, sizeof(sf));
1232   map_init(&sf.seen, pool->ss.nstrings + pool->nrels);
1233   memset(&isf, 0, sizeof(isf));
1234   map_init(&isf.seen, pool->ss.nstrings + pool->nrels);
1235
1236   if (idq)
1237     queue_empty(idq);
1238   if (idqinst)
1239     queue_empty(idqinst);
1240   isfp = installed ? &isf : 0;
1241   for (i = 1, s = pool->solvables + i; i < pool->nsolvables; i++, s++)
1242     {
1243       repo = s->repo;
1244       if (!repo)
1245         continue;
1246       if (s->obsoletes)
1247         pool_addfileprovides_dep(pool, repo->idarraydata + s->obsoletes, &sf, isfp);
1248       if (s->conflicts)
1249         pool_addfileprovides_dep(pool, repo->idarraydata + s->conflicts, &sf, isfp);
1250       if (s->requires)
1251         pool_addfileprovides_dep(pool, repo->idarraydata + s->requires, &sf, isfp);
1252       if (s->recommends)
1253         pool_addfileprovides_dep(pool, repo->idarraydata + s->recommends, &sf, isfp);
1254       if (s->suggests)
1255         pool_addfileprovides_dep(pool, repo->idarraydata + s->suggests, &sf, isfp);
1256       if (s->supplements)
1257         pool_addfileprovides_dep(pool, repo->idarraydata + s->supplements, &sf, isfp);
1258       if (s->enhances)
1259         pool_addfileprovides_dep(pool, repo->idarraydata + s->enhances, &sf, isfp);
1260     }
1261   map_free(&sf.seen);
1262   map_free(&isf.seen);
1263   POOL_DEBUG(SOLV_DEBUG_STATS, "found %d file dependencies, %d installed file dependencies\n", sf.nfiles, isf.nfiles);
1264   cbd.dids = 0;
1265   if (sf.nfiles)
1266     {
1267 #if 0
1268       for (i = 0; i < sf.nfiles; i++)
1269         POOL_DEBUG(SOLV_DEBUG_STATS, "looking up %s in filelist\n", pool_id2str(pool, sf.ids[i]));
1270 #endif
1271       pool_addfileprovides_search(pool, &cbd, &sf, 0);
1272       if (idq)
1273         for (i = 0; i < sf.nfiles; i++)
1274           queue_push(idq, sf.ids[i]);
1275       if (idqinst)
1276         for (i = 0; i < sf.nfiles; i++)
1277           queue_push(idqinst, sf.ids[i]);
1278       solv_free(sf.ids);
1279       for (i = 0; i < sf.nfiles; i++)
1280         {
1281           solv_free(sf.dirs[i]);
1282           solv_free(sf.names[i]);
1283         }
1284       solv_free(sf.dirs);
1285       solv_free(sf.names);
1286     }
1287   if (isf.nfiles)
1288     {
1289 #if 0
1290       for (i = 0; i < isf.nfiles; i++)
1291         POOL_DEBUG(SOLV_DEBUG_STATS, "looking up %s in installed filelist\n", pool_id2str(pool, isf.ids[i]));
1292 #endif
1293       if (installed)
1294         pool_addfileprovides_search(pool, &cbd, &isf, installed);
1295       if (installed && idqinst)
1296         for (i = 0; i < isf.nfiles; i++)
1297           queue_pushunique(idqinst, isf.ids[i]);
1298       solv_free(isf.ids);
1299       for (i = 0; i < isf.nfiles; i++)
1300         {
1301           solv_free(isf.dirs[i]);
1302           solv_free(isf.names[i]);
1303         }
1304       solv_free(isf.dirs);
1305       solv_free(isf.names);
1306     }
1307   solv_free(cbd.dids);
1308   pool_freewhatprovides(pool);  /* as we have added provides */
1309   POOL_DEBUG(SOLV_DEBUG_STATS, "addfileprovides took %d ms\n", solv_timems(now));
1310 }
1311
1312 void
1313 pool_addfileprovides(Pool *pool)
1314 {
1315   pool_addfileprovides_queue(pool, 0, 0);
1316 }
1317
1318 void
1319 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)
1320 {
1321   if (p)
1322     {
1323       if (pool->solvables[p].repo)
1324         repo_search(pool->solvables[p].repo, p, key, match, flags, callback, cbdata);
1325       return;
1326     }
1327   /* FIXME: obey callback return value! */
1328   for (p = 1; p < pool->nsolvables; p++)
1329     if (pool->solvables[p].repo)
1330       repo_search(pool->solvables[p].repo, p, key, match, flags, callback, cbdata);
1331 }
1332
1333 void
1334 pool_clear_pos(Pool *pool)
1335 {
1336   memset(&pool->pos, 0, sizeof(pool->pos));
1337 }
1338
1339
1340 void
1341 pool_set_languages(Pool *pool, const char **languages, int nlanguages)
1342 {
1343   int i;
1344
1345   pool->languagecache = solv_free(pool->languagecache);
1346   pool->languagecacheother = 0;
1347   if (pool->nlanguages)
1348     {
1349       for (i = 0; i < pool->nlanguages; i++)
1350         free((char *)pool->languages[i]);
1351       free(pool->languages);
1352     }
1353   pool->nlanguages = nlanguages;
1354   if (!nlanguages)
1355     return;
1356   pool->languages = solv_calloc(nlanguages, sizeof(const char **));
1357   for (i = 0; i < pool->nlanguages; i++)
1358     pool->languages[i] = solv_strdup(languages[i]);
1359 }
1360
1361 Id
1362 pool_id2langid(Pool *pool, Id id, const char *lang, int create)
1363 {
1364   const char *n;
1365   char buf[256], *p;
1366   int l;
1367
1368   if (!lang || !*lang)
1369     return id;
1370   n = pool_id2str(pool, id);
1371   l = strlen(n) + strlen(lang) + 2;
1372   if (l > sizeof(buf))
1373     p = solv_malloc(strlen(n) + strlen(lang) + 2);
1374   else
1375     p = buf;
1376   sprintf(p, "%s:%s", n, lang);
1377   id = pool_str2id(pool, p, create);
1378   if (p != buf)
1379     free(p);
1380   return id;
1381 }
1382
1383 char *
1384 pool_alloctmpspace(Pool *pool, int len)
1385 {
1386   int n = pool->tmpspace.n;
1387   if (!len)
1388     return 0;
1389   if (len > pool->tmpspace.len[n])
1390     {
1391       pool->tmpspace.buf[n] = solv_realloc(pool->tmpspace.buf[n], len + 32);
1392       pool->tmpspace.len[n] = len + 32;
1393     }
1394   pool->tmpspace.n = (n + 1) % POOL_TMPSPACEBUF;
1395   return pool->tmpspace.buf[n];
1396 }
1397
1398 static char *
1399 pool_alloctmpspace_free(Pool *pool, const char *space, int len)
1400 {
1401   if (space)
1402     {
1403       int n, oldn;
1404       n = oldn = pool->tmpspace.n;
1405       for (;;)
1406         {
1407           if (!n--)
1408             n = POOL_TMPSPACEBUF - 1;
1409           if (n == oldn)
1410             break;
1411           if (pool->tmpspace.buf[n] != space)
1412             continue;
1413           if (len > pool->tmpspace.len[n])
1414             {
1415               pool->tmpspace.buf[n] = solv_realloc(pool->tmpspace.buf[n], len + 32);
1416               pool->tmpspace.len[n] = len + 32;
1417             }
1418           return pool->tmpspace.buf[n];
1419         }
1420     }
1421   return 0;
1422 }
1423
1424 void
1425 pool_freetmpspace(Pool *pool, const char *space)
1426 {
1427   int n = pool->tmpspace.n;
1428   if (!space)
1429     return;
1430   n = (n + (POOL_TMPSPACEBUF - 1)) % POOL_TMPSPACEBUF;
1431   if (pool->tmpspace.buf[n] == space)
1432     pool->tmpspace.n = n;
1433 }
1434
1435 char *
1436 pool_tmpjoin(Pool *pool, const char *str1, const char *str2, const char *str3)
1437 {
1438   int l1, l2, l3;
1439   char *s, *str;
1440   l1 = str1 ? strlen(str1) : 0;
1441   l2 = str2 ? strlen(str2) : 0;
1442   l3 = str3 ? strlen(str3) : 0;
1443   s = str = pool_alloctmpspace(pool, l1 + l2 + l3 + 1);
1444   if (l1)
1445     {
1446       strcpy(s, str1);
1447       s += l1;
1448     }
1449   if (l2)
1450     {
1451       strcpy(s, str2);
1452       s += l2;
1453     }
1454   if (l3)
1455     {
1456       strcpy(s, str3);
1457       s += l3;
1458     }
1459   *s = 0;
1460   return str;
1461 }
1462
1463 char *
1464 pool_tmpappend(Pool *pool, const char *str1, const char *str2, const char *str3)
1465 {
1466   int l1, l2, l3;
1467   char *s, *str;
1468
1469   l1 = str1 ? strlen(str1) : 0;
1470   l2 = str2 ? strlen(str2) : 0;
1471   l3 = str3 ? strlen(str3) : 0;
1472   str = pool_alloctmpspace_free(pool, str1, l1 + l2 + l3 + 1);
1473   if (str)
1474     str1 = str;
1475   else
1476     str = pool_alloctmpspace(pool, l1 + l2 + l3 + 1);
1477   s = str;
1478   if (l1)
1479     {
1480       if (s != str1)
1481         strcpy(s, str1);
1482       s += l1;
1483     }
1484   if (l2)
1485     {
1486       strcpy(s, str2);
1487       s += l2;
1488     }
1489   if (l3)
1490     {
1491       strcpy(s, str3);
1492       s += l3;
1493     }
1494   *s = 0;
1495   return str;
1496 }
1497
1498 const char *
1499 pool_bin2hex(Pool *pool, const unsigned char *buf, int len)
1500 {
1501   char *s;
1502   if (!len)
1503     return "";
1504   s = pool_alloctmpspace(pool, 2 * len + 1);
1505   solv_bin2hex(buf, len, s);
1506   return s;
1507 }
1508
1509 /*******************************************************************/
1510
1511 struct mptree {
1512   Id sibling;
1513   Id child;
1514   const char *comp;
1515   int compl;
1516   Id mountpoint;
1517 };
1518
1519 struct ducbdata {
1520   DUChanges *mps;
1521   struct mptree *mptree;
1522   int addsub;
1523   int hasdu;
1524
1525   Id *dirmap;
1526   int nmap;
1527   Repodata *olddata;
1528 };
1529
1530
1531 static int
1532 solver_fill_DU_cb(void *cbdata, Solvable *s, Repodata *data, Repokey *key, KeyValue *value)
1533 {
1534   struct ducbdata *cbd = cbdata;
1535   Id mp;
1536
1537   if (data != cbd->olddata)
1538     {
1539       Id dn, mp, comp, *dirmap, *dirs;
1540       int i, compl;
1541       const char *compstr;
1542       struct mptree *mptree;
1543
1544       /* create map from dir to mptree */
1545       cbd->dirmap = solv_free(cbd->dirmap);
1546       cbd->nmap = 0;
1547       dirmap = solv_calloc(data->dirpool.ndirs, sizeof(Id));
1548       mptree = cbd->mptree;
1549       mp = 0;
1550       for (dn = 2, dirs = data->dirpool.dirs + dn; dn < data->dirpool.ndirs; dn++)
1551         {
1552           comp = *dirs++;
1553           if (comp <= 0)
1554             {
1555               mp = dirmap[-comp];
1556               continue;
1557             }
1558           if (mp < 0)
1559             {
1560               /* unconnected */
1561               dirmap[dn] = mp;
1562               continue;
1563             }
1564           if (!mptree[mp].child)
1565             {
1566               dirmap[dn] = -mp;
1567               continue;
1568             }
1569           if (data->localpool)
1570             compstr = stringpool_id2str(&data->spool, comp);
1571           else
1572             compstr = pool_id2str(data->repo->pool, comp);
1573           compl = strlen(compstr);
1574           for (i = mptree[mp].child; i; i = mptree[i].sibling)
1575             if (mptree[i].compl == compl && !strncmp(mptree[i].comp, compstr, compl))
1576               break;
1577           dirmap[dn] = i ? i : -mp;
1578         }
1579       /* change dirmap to point to mountpoint instead of mptree */
1580       for (dn = 0; dn < data->dirpool.ndirs; dn++)
1581         {
1582           mp = dirmap[dn];
1583           dirmap[dn] = mptree[mp > 0 ? mp : -mp].mountpoint;
1584         }
1585       cbd->dirmap = dirmap;
1586       cbd->nmap = data->dirpool.ndirs;
1587       cbd->olddata = data;
1588     }
1589   cbd->hasdu = 1;
1590   if (value->id < 0 || value->id >= cbd->nmap)
1591     return 0;
1592   mp = cbd->dirmap[value->id];
1593   if (mp < 0)
1594     return 0;
1595   if (cbd->addsub > 0)
1596     {
1597       cbd->mps[mp].kbytes += value->num;
1598       cbd->mps[mp].files += value->num2;
1599     }
1600   else
1601     {
1602       cbd->mps[mp].kbytes -= value->num;
1603       cbd->mps[mp].files -= value->num2;
1604     }
1605   return 0;
1606 }
1607
1608 static void
1609 propagate_mountpoints(struct mptree *mptree, int pos, Id mountpoint)
1610 {
1611   int i;
1612   if (mptree[pos].mountpoint == -1)
1613     mptree[pos].mountpoint = mountpoint;
1614   else
1615     mountpoint = mptree[pos].mountpoint;
1616   for (i = mptree[pos].child; i; i = mptree[i].sibling)
1617     propagate_mountpoints(mptree, i, mountpoint);
1618 }
1619
1620 #define MPTREE_BLOCK 15
1621
1622 void
1623 pool_calc_duchanges(Pool *pool, Map *installedmap, DUChanges *mps, int nmps)
1624 {
1625   char *p;
1626   const char *path, *compstr;
1627   struct mptree *mptree;
1628   int i, nmptree;
1629   int pos, compl;
1630   int mp;
1631   struct ducbdata cbd;
1632   Solvable *s;
1633   Id sp;
1634   Map ignoredu;
1635   Repo *oldinstalled = pool->installed;
1636
1637   memset(&ignoredu, 0, sizeof(ignoredu));
1638   cbd.mps = mps;
1639   cbd.addsub = 0;
1640   cbd.dirmap = 0;
1641   cbd.nmap = 0;
1642   cbd.olddata = 0;
1643
1644   mptree = solv_extend_resize(0, 1, sizeof(struct mptree), MPTREE_BLOCK);
1645
1646   /* our root node */
1647   mptree[0].sibling = 0;
1648   mptree[0].child = 0;
1649   mptree[0].comp = 0;
1650   mptree[0].compl = 0;
1651   mptree[0].mountpoint = -1;
1652   nmptree = 1;
1653   
1654   /* create component tree */
1655   for (mp = 0; mp < nmps; mp++)
1656     {
1657       mps[mp].kbytes = 0;
1658       mps[mp].files = 0;
1659       pos = 0;
1660       path = mps[mp].path;
1661       while(*path == '/')
1662         path++;
1663       while (*path)
1664         {
1665           if ((p = strchr(path, '/')) == 0)
1666             {
1667               compstr = path;
1668               compl = strlen(compstr);
1669               path += compl;
1670             }
1671           else
1672             {
1673               compstr = path;
1674               compl = p - path;
1675               path = p + 1;
1676               while(*path == '/')
1677                 path++;
1678             }
1679           for (i = mptree[pos].child; i; i = mptree[i].sibling)
1680             if (mptree[i].compl == compl && !strncmp(mptree[i].comp, compstr, compl))
1681               break;
1682           if (!i)
1683             {
1684               /* create new node */
1685               mptree = solv_extend(mptree, nmptree, 1, sizeof(struct mptree), MPTREE_BLOCK);
1686               i = nmptree++;
1687               mptree[i].sibling = mptree[pos].child;
1688               mptree[i].child = 0;
1689               mptree[i].comp = compstr;
1690               mptree[i].compl = compl;
1691               mptree[i].mountpoint = -1;
1692               mptree[pos].child = i;
1693             }
1694           pos = i;
1695         }
1696       mptree[pos].mountpoint = mp;
1697     }
1698
1699   propagate_mountpoints(mptree, 0, mptree[0].mountpoint);
1700
1701 #if 0
1702   for (i = 0; i < nmptree; i++)
1703     {
1704       printf("#%d sibling: %d\n", i, mptree[i].sibling);
1705       printf("#%d child: %d\n", i, mptree[i].child);
1706       printf("#%d comp: %s\n", i, mptree[i].comp);
1707       printf("#%d compl: %d\n", i, mptree[i].compl);
1708       printf("#%d mountpont: %d\n", i, mptree[i].mountpoint);
1709     }
1710 #endif
1711
1712   cbd.mptree = mptree;
1713   cbd.addsub = 1;
1714   for (sp = 1, s = pool->solvables + sp; sp < pool->nsolvables; sp++, s++)
1715     {
1716       if (!s->repo || (oldinstalled && s->repo == oldinstalled))
1717         continue;
1718       if (!MAPTST(installedmap, sp))
1719         continue;
1720       cbd.hasdu = 0;
1721       repo_search(s->repo, sp, SOLVABLE_DISKUSAGE, 0, 0, solver_fill_DU_cb, &cbd);
1722       if (!cbd.hasdu && oldinstalled)
1723         {
1724           Id op, opp;
1725           /* no du data available, ignore data of all installed solvables we obsolete */
1726           if (!ignoredu.map)
1727             map_init(&ignoredu, oldinstalled->end - oldinstalled->start);
1728           if (s->obsoletes)
1729             {
1730               Id obs, *obsp = s->repo->idarraydata + s->obsoletes;
1731               while ((obs = *obsp++) != 0)
1732                 FOR_PROVIDES(op, opp, obs)
1733                   if (op >= oldinstalled->start && op < oldinstalled->end)
1734                     MAPSET(&ignoredu, op - oldinstalled->start);
1735             }
1736           FOR_PROVIDES(op, opp, s->name)
1737             if (pool->solvables[op].name == s->name)
1738               if (op >= oldinstalled->start && op < oldinstalled->end)
1739                 MAPSET(&ignoredu, op - oldinstalled->start);
1740         }
1741     }
1742   cbd.addsub = -1;
1743   if (oldinstalled)
1744     {
1745       /* assumes we allways have du data for installed solvables */
1746       FOR_REPO_SOLVABLES(oldinstalled, sp, s)
1747         {
1748           if (MAPTST(installedmap, sp))
1749             continue;
1750           if (ignoredu.map && MAPTST(&ignoredu, sp - oldinstalled->start))
1751             continue;
1752           repo_search(oldinstalled, sp, SOLVABLE_DISKUSAGE, 0, 0, solver_fill_DU_cb, &cbd);
1753         }
1754     }
1755   if (ignoredu.map)
1756     map_free(&ignoredu);
1757   solv_free(cbd.dirmap);
1758   solv_free(mptree);
1759 }
1760
1761 int
1762 pool_calc_installsizechange(Pool *pool, Map *installedmap)
1763 {
1764   Id sp;
1765   Solvable *s;
1766   int change = 0;
1767   Repo *oldinstalled = pool->installed;
1768
1769   for (sp = 1, s = pool->solvables + sp; sp < pool->nsolvables; sp++, s++)
1770     {
1771       if (!s->repo || (oldinstalled && s->repo == oldinstalled))
1772         continue;
1773       if (!MAPTST(installedmap, sp))
1774         continue;
1775       change += solvable_lookup_sizek(s, SOLVABLE_INSTALLSIZE, 0);
1776     }
1777   if (oldinstalled)
1778     {
1779       FOR_REPO_SOLVABLES(oldinstalled, sp, s)
1780         {
1781           if (MAPTST(installedmap, sp))
1782             continue;
1783           change -= solvable_lookup_sizek(s, SOLVABLE_INSTALLSIZE, 0);
1784         }
1785     }
1786   return change;
1787 }
1788
1789 /* map:
1790  *  1: installed
1791  *  2: conflicts with installed
1792  *  8: interesting (only true if installed)
1793  * 16: undecided
1794  */
1795  
1796 static inline Id dep2name(Pool *pool, Id dep)
1797 {
1798   while (ISRELDEP(dep))
1799     {
1800       Reldep *rd = rd = GETRELDEP(pool, dep);
1801       dep = rd->name;
1802     }
1803   return dep;
1804 }
1805
1806 static int providedbyinstalled_multiversion(Pool *pool, unsigned char *map, Id n, Id con) 
1807 {
1808   Id p, pp;
1809   Solvable *sn = pool->solvables + n; 
1810
1811   FOR_PROVIDES(p, pp, sn->name)
1812     {    
1813       Solvable *s = pool->solvables + p; 
1814       if (s->name != sn->name || s->arch != sn->arch)
1815         continue;
1816       if ((map[p] & 9) != 9)
1817         continue;
1818       if (pool_match_nevr(pool, pool->solvables + p, con))
1819         continue;
1820       return 1;         /* found installed package that doesn't conflict */
1821     }
1822   return 0;
1823 }
1824
1825 static inline int providedbyinstalled(Pool *pool, unsigned char *map, Id dep, int ispatch, Map *noobsoletesmap)
1826 {
1827   Id p, pp;
1828   int r = 0;
1829   FOR_PROVIDES(p, pp, dep)
1830     {
1831       if (p == SYSTEMSOLVABLE)
1832         return 1;       /* always boring, as never constraining */
1833       if (ispatch && !pool_match_nevr(pool, pool->solvables + p, dep))
1834         continue;
1835       if (ispatch && noobsoletesmap && noobsoletesmap->size && MAPTST(noobsoletesmap, p) && ISRELDEP(dep))
1836         if (providedbyinstalled_multiversion(pool, map, p, dep))
1837           continue;
1838       if ((map[p] & 9) == 9)
1839         return 9;
1840       r |= map[p] & 17;
1841     }
1842   return r;
1843 }
1844
1845 /*
1846  * pool_trivial_installable - calculate if a set of solvables is
1847  * trivial installable without any other installs/deinstalls of
1848  * packages not belonging to the set.
1849  *
1850  * the state is returned in the result queue:
1851  * 1:  solvable is installable without any other package changes
1852  * 0:  solvable is not installable
1853  * -1: solvable is installable, but doesn't constrain any installed packages
1854  */
1855
1856 void
1857 pool_trivial_installable_noobsoletesmap(Pool *pool, Map *installedmap, Queue *pkgs, Queue *res, Map *noobsoletesmap)
1858 {
1859   int i, r, m, did;
1860   Id p, *dp, con, *conp, req, *reqp;
1861   unsigned char *map;
1862   Solvable *s;
1863
1864   map = solv_calloc(pool->nsolvables, 1);
1865   for (p = 1; p < pool->nsolvables; p++)
1866     {
1867       if (!MAPTST(installedmap, p))
1868         continue;
1869       map[p] |= 9;
1870       s = pool->solvables + p;
1871       if (!s->conflicts)
1872         continue;
1873       conp = s->repo->idarraydata + s->conflicts;
1874       while ((con = *conp++) != 0)
1875         {
1876           dp = pool_whatprovides_ptr(pool, con);
1877           for (; *dp; dp++)
1878             map[p] |= 2;        /* XXX: self conflict ? */
1879         }
1880     }
1881   for (i = 0; i < pkgs->count; i++)
1882     map[pkgs->elements[i]] = 16;
1883
1884   for (i = 0, did = 0; did < pkgs->count; i++, did++)
1885     {
1886       if (i == pkgs->count)
1887         i = 0;
1888       p = pkgs->elements[i];
1889       if ((map[p] & 16) == 0)
1890         continue;
1891       if ((map[p] & 2) != 0)
1892         {
1893           map[p] = 2;
1894           continue;
1895         }
1896       s = pool->solvables + p;
1897       m = 1;
1898       if (s->requires)
1899         {
1900           reqp = s->repo->idarraydata + s->requires;
1901           while ((req = *reqp++) != 0)
1902             {
1903               if (req == SOLVABLE_PREREQMARKER)
1904                 continue;
1905               r = providedbyinstalled(pool, map, req, 0, 0);
1906               if (!r)
1907                 {
1908                   /* decided and miss */
1909                   map[p] = 2;
1910                   break;
1911                 }
1912               m |= r;   /* 1 | 9 | 16 | 17 */
1913             }
1914           if (req)
1915             continue;
1916           if ((m & 9) == 9)
1917             m = 9;
1918         }
1919       if (s->conflicts)
1920         {
1921           int ispatch = 0;      /* see solver.c patch handling */
1922
1923           if (!strncmp("patch:", pool_id2str(pool, s->name), 6))
1924             ispatch = 1;
1925           conp = s->repo->idarraydata + s->conflicts;
1926           while ((con = *conp++) != 0)
1927             {
1928               if ((providedbyinstalled(pool, map, con, ispatch, noobsoletesmap) & 1) != 0)
1929                 {
1930                   map[p] = 2;
1931                   break;
1932                 }
1933               if ((m == 1 || m == 17) && ISRELDEP(con))
1934                 {
1935                   con = dep2name(pool, con);
1936                   if ((providedbyinstalled(pool, map, con, ispatch, noobsoletesmap) & 1) != 0)
1937                     m = 9;
1938                 }
1939             }
1940           if (con)
1941             continue;   /* found a conflict */
1942         }
1943 #if 0
1944       if (s->repo && s->repo != oldinstalled)
1945         {
1946           Id p2, obs, *obsp, *pp;
1947           Solvable *s2;
1948           if (s->obsoletes)
1949             {
1950               obsp = s->repo->idarraydata + s->obsoletes;
1951               while ((obs = *obsp++) != 0)
1952                 {
1953                   if ((providedbyinstalled(pool, map, obs, 0, 0) & 1) != 0)
1954                     {
1955                       map[p] = 2;
1956                       break;
1957                     }
1958                 }
1959               if (obs)
1960                 continue;
1961             }
1962           FOR_PROVIDES(p2, pp, s->name)
1963             {
1964               s2 = pool->solvables + p2;
1965               if (s2->name == s->name && (map[p2] & 1) != 0)
1966                 {
1967                   map[p] = 2;
1968                   break;
1969                 }
1970             }
1971           if (p2)
1972             continue;
1973         }
1974 #endif
1975       if (m != map[p])
1976         {
1977           map[p] = m;
1978           did = 0;
1979         }
1980     }
1981   queue_free(res);
1982   queue_init_clone(res, pkgs);
1983   for (i = 0; i < pkgs->count; i++)
1984     {
1985       m = map[pkgs->elements[i]];
1986       if ((m & 9) == 9)
1987         r = 1;
1988       else if (m & 1)
1989         r = -1;
1990       else
1991         r = 0;
1992       res->elements[i] = r;
1993     }
1994   free(map);
1995 }
1996
1997 void
1998 pool_trivial_installable(Pool *pool, Map *installedmap, Queue *pkgs, Queue *res)
1999 {
2000   pool_trivial_installable_noobsoletesmap(pool, installedmap, pkgs, res, 0);
2001 }
2002
2003 const char *
2004 pool_lookup_str(Pool *pool, Id entry, Id keyname)
2005 {
2006   if (entry == SOLVID_POS && pool->pos.repo)
2007     return repodata_lookup_str(pool->pos.repo->repodata + pool->pos.repodataid, SOLVID_POS, keyname);
2008   if (entry <= 0)
2009     return 0;
2010   return solvable_lookup_str(pool->solvables + entry, keyname);
2011 }
2012
2013 Id
2014 pool_lookup_id(Pool *pool, Id entry, Id keyname)
2015 {
2016   if (entry == SOLVID_POS && pool->pos.repo)
2017     {
2018       Repodata *data = pool->pos.repo->repodata + pool->pos.repodataid;
2019       Id id = repodata_lookup_id(data, SOLVID_POS, keyname);
2020       return data->localpool ? repodata_globalize_id(data, id, 1) : id;
2021     }
2022   if (entry <= 0)
2023     return 0;
2024   return solvable_lookup_id(pool->solvables + entry, keyname);
2025 }
2026
2027 unsigned long long
2028 pool_lookup_num(Pool *pool, Id entry, Id keyname, unsigned long long notfound)
2029 {
2030   if (entry == SOLVID_POS && pool->pos.repo)
2031     {
2032       unsigned long long value;
2033       if (repodata_lookup_num(pool->pos.repo->repodata + pool->pos.repodataid, SOLVID_POS, keyname, &value))
2034         return value;
2035       return notfound;
2036     }
2037   if (entry <= 0)
2038     return notfound;
2039   return solvable_lookup_num(pool->solvables + entry, keyname, notfound);
2040 }
2041
2042 int
2043 pool_lookup_void(Pool *pool, Id entry, Id keyname)
2044 {
2045   if (entry == SOLVID_POS && pool->pos.repo)
2046     return repodata_lookup_void(pool->pos.repo->repodata + pool->pos.repodataid, SOLVID_POS, keyname);
2047   if (entry <= 0)
2048     return 0;
2049   return solvable_lookup_void(pool->solvables + entry, keyname);
2050 }
2051
2052 const unsigned char *
2053 pool_lookup_bin_checksum(Pool *pool, Id entry, Id keyname, Id *typep)
2054 {
2055   if (entry == SOLVID_POS && pool->pos.repo)
2056     return repodata_lookup_bin_checksum(pool->pos.repo->repodata + pool->pos.repodataid, SOLVID_POS, keyname, typep);
2057   if (entry <= 0)
2058     return 0;
2059   return solvable_lookup_bin_checksum(pool->solvables + entry, keyname, typep);
2060 }
2061
2062 const char *
2063 pool_lookup_checksum(Pool *pool, Id entry, Id keyname, Id *typep)
2064 {
2065   if (entry == SOLVID_POS && pool->pos.repo)
2066     {
2067       const unsigned char *chk = repodata_lookup_bin_checksum(pool->pos.repo->repodata + pool->pos.repodataid, SOLVID_POS, keyname, typep);
2068       return chk ? repodata_chk2str(pool->pos.repo->repodata + pool->pos.repodataid, *typep, chk) : 0;
2069     }
2070   if (entry <= 0)
2071     return 0;
2072   return solvable_lookup_checksum(pool->solvables + entry, keyname, typep);
2073 }
2074
2075 void
2076 pool_add_fileconflicts_deps(Pool *pool, Queue *conflicts)
2077 {
2078   int hadhashes = pool->relhashtbl ? 1 : 0;
2079   Solvable *s;
2080   Id fn, p, q, md5;
2081   Id id;
2082   int i;
2083
2084   if (!conflicts->count)
2085     return;
2086   pool_freewhatprovides(pool);
2087   for (i = 0; i < conflicts->count; i += 5)
2088     {
2089       fn = conflicts->elements[i];
2090       p = conflicts->elements[i + 1];
2091       md5 = conflicts->elements[i + 2];
2092       q = conflicts->elements[i + 3];
2093       id = pool_rel2id(pool, fn, md5, REL_FILECONFLICT, 1);
2094       s = pool->solvables + p;
2095       if (!s->repo)
2096         continue;
2097       s->provides = repo_addid_dep(s->repo, s->provides, id, SOLVABLE_FILEMARKER);
2098       s = pool->solvables + q;
2099       if (!s->repo)
2100         continue;
2101       s->conflicts = repo_addid_dep(s->repo, s->conflicts, id, 0);
2102     }
2103   if (!hadhashes)
2104     pool_freeidhashes(pool);
2105 }
2106
2107 char *
2108 pool_prepend_rootdir(Pool *pool, const char *path)
2109 {
2110   if (!path)
2111     return 0;
2112   if (!pool->rootdir)
2113     return solv_strdup(path);
2114   return solv_dupjoin(pool->rootdir, "/", *path == '/' ? path + 1 : path);
2115 }
2116
2117 const char *
2118 pool_prepend_rootdir_tmp(Pool *pool, const char *path)
2119 {
2120   if (!path)
2121     return 0;
2122   if (!pool->rootdir)
2123     return path;
2124   return pool_tmpjoin(pool, pool->rootdir, "/", *path == '/' ? path + 1 : path);
2125 }
2126
2127 void
2128 pool_set_rootdir(Pool *pool, const char *rootdir)
2129 {
2130   solv_free(pool->rootdir);
2131   pool->rootdir = solv_strdup(rootdir);
2132 }
2133
2134 const char *
2135 pool_get_rootdir(Pool *pool)
2136 {
2137   return pool->rootdir;
2138 }
2139
2140 /* EOF */