- replace old solver_problemruleinfo with new solver_ruleinfo function
[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 *)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, "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)));
360   POOL_DEBUG(SAT_DEBUG_STATS, "createwhatprovides took %d ms\n", sat_timems(now));
361 }
362
363 /*
364  * free all of our whatprovides data
365  * be careful, everything internalized with pool_queuetowhatprovides is
366  * gone, too
367  */
368 void
369 pool_freewhatprovides(Pool *pool)
370 {
371   pool->whatprovides = sat_free(pool->whatprovides);
372   pool->whatprovides_rel = sat_free(pool->whatprovides_rel);
373   pool->whatprovidesdata = sat_free(pool->whatprovidesdata);
374   pool->whatprovidesdataoff = 0;
375   pool->whatprovidesdataleft = 0;
376 }
377
378
379 /******************************************************************************/
380
381 /*
382  * pool_queuetowhatprovides  - add queue contents to whatprovidesdata
383  * 
384  * on-demand filling of provider information
385  * move queue data into whatprovidesdata
386  * q: queue of Ids
387  * returns: Offset into whatprovides
388  *
389  */
390 Id
391 pool_queuetowhatprovides(Pool *pool, Queue *q)
392 {
393   Offset off;
394   int count = q->count;
395
396   if (count == 0)                      /* queue empty -> 1 */
397     return 1;
398
399   /* extend whatprovidesdata if needed, +1 for ID_NULL-termination */
400   if (pool->whatprovidesdataleft < count + 1)
401     {
402       POOL_DEBUG(SAT_DEBUG_STATS, "growing provides hash data...\n");
403       pool->whatprovidesdata = sat_realloc(pool->whatprovidesdata, (pool->whatprovidesdataoff + count + 4096) * sizeof(Id));
404       pool->whatprovidesdataleft = count + 4096;
405     }
406
407   /* copy queue to next free slot */
408   off = pool->whatprovidesdataoff;
409   memcpy(pool->whatprovidesdata + pool->whatprovidesdataoff, q->elements, count * sizeof(Id));
410
411   /* adapt count and ID_NULL-terminate */
412   pool->whatprovidesdataoff += count;
413   pool->whatprovidesdata[pool->whatprovidesdataoff++] = ID_NULL;
414   pool->whatprovidesdataleft -= count + 1;
415
416   return (Id)off;
417 }
418
419
420 /*************************************************************************/
421
422 /* check if a package's nevr matches a dependency */
423
424 int
425 pool_match_nevr_rel(Pool *pool, Solvable *s, Id d)
426 {
427   Reldep *rd = GETRELDEP(pool, d);
428   Id name = rd->name;
429   Id evr = rd->evr;
430   int flags = rd->flags;
431
432   if (flags > 7)
433     {
434       switch (flags)
435         {
436         case REL_ARCH:
437           if (s->arch != evr)
438             return 0;
439           return pool_match_nevr(pool, s, name);
440         case REL_OR:
441           if (pool_match_nevr(pool, s, name))
442             return 1;
443           return pool_match_nevr(pool, s, evr);
444         case REL_AND:
445         case REL_WITH:
446           if (!pool_match_nevr(pool, s, name))
447             return 0;
448           return pool_match_nevr(pool, s, evr);
449         default:
450           return 0;
451         }
452     }
453   if (!pool_match_nevr(pool, s, name))
454     return 0;
455   if (evr == s->evr)
456     return flags & 2 ? 1 : 0;
457   if (!flags)
458     return 0;
459   if (flags == 7)
460     return 1;
461   if (flags != 2 && flags != 5)
462     flags ^= 5;
463   if ((flags & (1 << (1 + evrcmp(pool, s->evr, evr, EVRCMP_MATCH_RELEASE)))) != 0)
464     return 1;
465   return 0;
466 }
467
468 /*
469  * addrelproviders
470  * 
471  * add packages fulfilling the relation to whatprovides array
472  * no exact providers, do range match
473  * 
474  */
475
476 Id
477 pool_addrelproviders(Pool *pool, Id d)
478 {
479   Reldep *rd = GETRELDEP(pool, d);
480   Reldep *prd;
481   Queue plist;
482   Id buf[16];
483   Id name = rd->name;
484   Id evr = rd->evr;
485   int flags = rd->flags;
486   Id pid, *pidp;
487   Id p, wp, *pp, *pp2, *pp3;
488
489   d = GETRELID(d);
490   queue_init_buffer(&plist, buf, sizeof(buf)/sizeof(*buf));
491   switch (flags)
492     {
493     case REL_AND:
494     case REL_WITH:
495       pp = pool_whatprovides_ptr(pool, name);
496       pp2 = pool_whatprovides_ptr(pool, evr);
497       while ((p = *pp++) != 0)
498         {
499           for (pp3 = pp2; *pp3;)
500             if (*pp3++ == p)
501               {
502                 queue_push(&plist, p);
503                 break;
504               }
505         }
506       break;
507     case REL_OR:
508       pp = pool_whatprovides_ptr(pool, name);
509       while ((p = *pp++) != 0)
510         queue_push(&plist, p);
511       pp = pool_whatprovides_ptr(pool, evr);
512       while ((p = *pp++) != 0)
513         queue_pushunique(&plist, p);
514       break;
515     case REL_NAMESPACE:
516       if (name == NAMESPACE_OTHERPROVIDERS)
517         {
518           wp = pool_whatprovides(pool, evr);
519           pool->whatprovides_rel[d] = wp;
520           return wp;
521         }
522       if (pool->nscallback)
523         {
524           /* ask callback which packages provide the dependency
525            * 0:  none
526            * 1:  the system (aka SYSTEMSOLVABLE)
527            * >1: a set of packages, stored as offset on whatprovidesdata
528            */
529           p = pool->nscallback(pool, pool->nscallbackdata, name, evr);
530           if (p > 1)
531             {
532               queue_free(&plist);
533               pool->whatprovides_rel[d] = p;
534               return p;
535             }
536           if (p == 1)
537             queue_push(&plist, SYSTEMSOLVABLE);
538         }
539       break;
540     case REL_ARCH:
541       /* small hack: make it possible to match <pkg>.src
542        * we have to iterate over the solvables as src packages do not
543        * provide anything, thus they are not indexed in our
544        * whatprovides hash */
545       if (evr == ARCH_SRC)
546         {
547           Solvable *s;
548           for (p = 1, s = pool->solvables + p; p < pool->nsolvables; p++, s++)
549             {
550               if (s->arch != ARCH_SRC && s->arch != ARCH_NOSRC)
551                 continue;
552               if (pool_match_nevr(pool, s, name))
553                 queue_push(&plist, p);
554             }
555           break;
556         }
557       wp = pool_whatprovides(pool, name);
558       pp = pool->whatprovidesdata + wp;
559       while ((p = *pp++) != 0)
560         {
561           Solvable *s = pool->solvables + p;
562           if (s->arch == evr)
563             queue_push(&plist, p);
564           else
565             wp = 0;
566         }
567       if (wp)
568         {
569           pool->whatprovides_rel[d] = wp;
570           return wp;
571         }
572       break;
573     default:
574       break;
575     }
576
577   /* convert to whatprovides id */
578 #if 0
579   POOL_DEBUG(SAT_DEBUG_STATS, "addrelproviders: what provides %s?\n", dep2str(pool, name));
580 #endif
581   if (flags && flags < 8)
582     {
583       pp = pool_whatprovides_ptr(pool, name);
584       while (ISRELDEP(name))
585         {
586           rd = GETRELDEP(pool, name);
587           name = rd->name;
588         }
589       while ((p = *pp++) != 0)
590         {
591           Solvable *s = pool->solvables + p;
592 #if 0
593           POOL_DEBUG(DEBUG_1, "addrelproviders: checking package %s\n", id2str(pool, s->name));
594 #endif
595           if (!s->provides)
596             {
597               /* no provides - check nevr */
598               if (pool_match_nevr_rel(pool, s, MAKERELDEP(d)))
599                 queue_push(&plist, p);
600               continue;
601             }
602           /* solvable p provides name in some rels */
603           pidp = s->repo->idarraydata + s->provides;
604           while ((pid = *pidp++) != 0)
605             {
606               int pflags;
607               Id pevr;
608
609               if (pid == name)
610                 {
611 #ifdef DEBIAN_SEMANTICS
612                   continue;             /* unversioned provides can
613                                          * never match versioned deps */
614 #else
615                   break;                /* yes, provides all versions */
616 #endif
617                 }
618               if (!ISRELDEP(pid))
619                 continue;               /* wrong provides name */
620               prd = GETRELDEP(pool, pid);
621               if (prd->name != name)
622                 continue;               /* wrong provides name */
623               /* right package, both deps are rels */
624               pflags = prd->flags;
625               if (!pflags)
626                 continue;
627               if (flags == 7 || pflags == 7)
628                 break; /* included */
629               if ((pflags & flags & 5) != 0)
630                 break; /* same direction, match */
631               pevr = prd->evr;
632               if (pevr == evr)
633                 {
634                   if ((pflags & flags & 2) != 0)
635                     break; /* both have =, match */
636                 }
637               else
638                 {
639                   int f = flags == 5 ? 5 : flags == 2 ? pflags : (flags ^ 5) & (pflags | 5);
640 #ifdef DEBIAN_SEMANTICS
641                   if ((f & (1 << (1 + evrcmp(pool, pevr, evr, EVRCMP_COMPARE)))) != 0)
642                     break;
643 #else
644                   if ((f & (1 << (1 + evrcmp(pool, pevr, evr, EVRCMP_MATCH_RELEASE)))) != 0)
645                     break;
646 #endif
647                 }
648             }
649           if (!pid)
650             continue;   /* no rel match */
651           queue_push(&plist, p);
652         }
653       /* make our system solvable provide all unknown rpmlib() stuff */
654       if (plist.count == 0 && !strncmp(id2str(pool, name), "rpmlib(", 7))
655         queue_push(&plist, SYSTEMSOLVABLE);
656     }
657   /* add providers to whatprovides */
658 #if 0
659   POOL_DEBUG(SAT_DEBUG_STATS, "addrelproviders: adding %d packages to %d\n", plist.count, d);
660 #endif
661   pool->whatprovides_rel[d] = pool_queuetowhatprovides(pool, &plist);
662   queue_free(&plist);
663
664   return pool->whatprovides_rel[d];
665 }
666
667 /*************************************************************************/
668
669 void
670 pool_debug(Pool *pool, int type, const char *format, ...)
671 {
672   va_list args;
673   char buf[1024];
674
675   if ((type & (SAT_FATAL|SAT_ERROR)) == 0)
676     {
677       if ((pool->debugmask & type) == 0)
678         return;
679     }
680   va_start(args, format);
681   if (!pool->debugcallback)
682     {
683       if ((type & (SAT_FATAL|SAT_ERROR)) == 0)
684         vprintf(format, args);
685       else
686         vfprintf(stderr, format, args);
687       return;
688     }
689   vsnprintf(buf, sizeof(buf), format, args);
690   pool->debugcallback(pool, pool->debugcallbackdata, type, buf);
691 }
692
693 void
694 pool_setdebuglevel(Pool *pool, int level)
695 {
696   int mask = SAT_DEBUG_RESULT;
697   if (level > 0)
698     mask |= SAT_DEBUG_STATS|SAT_DEBUG_ANALYZE|SAT_DEBUG_UNSOLVABLE;
699   if (level > 1)
700     mask |= SAT_DEBUG_JOB|SAT_DEBUG_SOLUTIONS|SAT_DEBUG_POLICY;
701   if (level > 2)
702     mask |= SAT_DEBUG_PROPAGATE;
703   if (level > 3)
704     mask |= SAT_DEBUG_RULE_CREATION;
705   if (level > 4)
706     mask |= SAT_DEBUG_SCHUBI;
707   pool->debugmask = mask;
708 }
709
710 /*************************************************************************/
711
712 struct searchfiles {
713   Id *ids;
714   char **dirs;
715   char **names;
716   int nfiles;
717   Map seen;
718 };
719
720 #define SEARCHFILES_BLOCK 127
721
722 static void
723 pool_addfileprovides_dep(Pool *pool, Id *ida, struct searchfiles *sf, struct searchfiles *isf)
724 {
725   Id dep, sid;
726   const char *s, *sr;
727   struct searchfiles *csf;
728
729   while ((dep = *ida++) != 0)
730     {
731       csf = sf;
732       while (ISRELDEP(dep))
733         {
734           Reldep *rd;
735           sid = pool->ss.nstrings + GETRELID(dep);
736           if (MAPTST(&csf->seen, sid))
737             {
738               dep = 0;
739               break;
740             }
741           MAPSET(&csf->seen, sid);
742           rd = GETRELDEP(pool, dep);
743           if (rd->flags < 8)
744             dep = rd->name;
745           else if (rd->flags == REL_NAMESPACE)
746             {
747               if (rd->name == NAMESPACE_INSTALLED || rd->name == NAMESPACE_SPLITPROVIDES)
748                 {
749                   csf = isf;
750                   if (!csf || MAPTST(&csf->seen, sid))
751                     {
752                       dep = 0;
753                       break;
754                     }
755                   MAPSET(&csf->seen, sid);
756                 }
757               dep = rd->evr;
758             }
759           else
760             {
761               Id ids[2];
762               ids[0] = rd->name;
763               ids[1] = 0;
764               pool_addfileprovides_dep(pool, ids, csf, isf);
765               dep = rd->evr;
766             }
767         }
768       if (!dep)
769         continue;
770       if (MAPTST(&csf->seen, dep))
771         continue;
772       MAPSET(&csf->seen, dep);
773       s = id2str(pool, dep);
774       if (*s != '/')
775         continue;
776       csf->ids = sat_extend(csf->ids, csf->nfiles, 1, sizeof(Id), SEARCHFILES_BLOCK);
777       csf->dirs = sat_extend(csf->dirs, csf->nfiles, 1, sizeof(const char *), SEARCHFILES_BLOCK);
778       csf->names = sat_extend(csf->names, csf->nfiles, 1, sizeof(const char *), SEARCHFILES_BLOCK);
779       csf->ids[csf->nfiles] = dep;
780       sr = strrchr(s, '/');
781       csf->names[csf->nfiles] = strdup(sr + 1);
782       csf->dirs[csf->nfiles] = sat_malloc(sr - s + 1);
783       if (sr != s)
784         strncpy(csf->dirs[csf->nfiles], s, sr - s);
785       csf->dirs[csf->nfiles][sr - s] = 0;
786       csf->nfiles++;
787     }
788 }
789
790 struct addfileprovides_cbdata {
791   int nfiles;
792   Id *ids;
793   char **dirs;
794   char **names;
795
796   Repodata *olddata;
797   Id *dids;
798   Map useddirs;
799 };
800
801 static int
802 addfileprovides_cb(void *cbdata, Solvable *s, Repodata *data, Repokey *key, KeyValue *value)
803 {
804   struct addfileprovides_cbdata *cbd = cbdata;
805   int i;
806
807   if (data != cbd->olddata)
808     {
809       map_free(&cbd->useddirs);
810       map_init(&cbd->useddirs, data->dirpool.ndirs);
811       for (i = 0; i < cbd->nfiles; i++)
812         {
813           Id did = repodata_str2dir(data, cbd->dirs[i], 0);
814           cbd->dids[i] = did;
815           if (did)
816             MAPSET(&cbd->useddirs, did);
817         }
818       cbd->olddata = data;
819     }
820   if (!MAPTST(&cbd->useddirs, value->id))
821     return 0;
822   for (i = 0; i < cbd->nfiles; i++)
823     {
824       if (cbd->dids[i] != value->id)
825         continue;
826       if (!strcmp(cbd->names[i], value->str))
827         break;
828     }
829   if (i == cbd->nfiles)
830     return 0;
831   s->provides = repo_addid_dep(s->repo, s->provides, cbd->ids[i], SOLVABLE_FILEMARKER);
832   return 0;
833 }
834
835 static int
836 addfileprovides_setid_cb(void *cbdata, Solvable *s, Repodata *data, Repokey *key, KeyValue *kv)
837 {
838   Map *provideids = cbdata;
839   if (key->type != REPOKEY_TYPE_IDARRAY)
840     return 0;
841   MAPSET(provideids, kv->id);
842   return kv->eof ? SEARCH_NEXT_SOLVABLE : 0;
843 }
844
845
846 static void
847 pool_addfileprovides_search(Pool *pool, struct addfileprovides_cbdata *cbd, struct searchfiles *sf, Repo *repoonly)
848 {
849   Id p, start, end;
850   Solvable *s;
851   Repodata *data = 0, *nextdata;
852   Repo *oldrepo = 0;
853   int dataincludes = 0;
854   int i, j;
855   Map providedids;
856
857   cbd->nfiles = sf->nfiles;
858   cbd->ids = sf->ids;
859   cbd->dirs = sf->dirs;
860   cbd->names = sf->names;
861   cbd->olddata = 0;
862   cbd->dids = sat_realloc2(cbd->dids, sf->nfiles, sizeof(Id));
863   if (repoonly)
864     {
865       start = repoonly->start;
866       end = repoonly->end;
867     }
868   else
869     {
870       start = 2;        /* skip system solvable */
871       end = pool->nsolvables;
872     }
873   for (p = start, s = pool->solvables + p; p < end; p++, s++)
874     {
875       if (!s->repo || (repoonly && s->repo != repoonly))
876         continue;
877       /* check if p is in (oldrepo,data) */
878       if (s->repo != oldrepo || (data && p >= data->end))
879         {
880           data = 0;
881           oldrepo = 0;
882         }
883       if (oldrepo == 0)
884         {
885           /* nope, find new repo/repodata */
886           /* if we don't find a match, set data to the next repodata */
887           nextdata = 0;
888           for (i = 0, data = s->repo->repodata; i < s->repo->nrepodata; i++, data++)
889             {
890               if (p >= data->end)
891                 continue;
892               if (data->state != REPODATA_AVAILABLE)
893                 continue;
894               for (j = 1; j < data->nkeys; j++)
895                 if (data->keys[j].name == REPOSITORY_ADDEDFILEPROVIDES && data->keys[j].type == REPOKEY_TYPE_IDARRAY)
896                   break;
897               if (j == data->nkeys)
898                 continue;
899               /* great, this repodata contains addedfileprovides */
900               if (!nextdata || nextdata->start > data->start)
901                 nextdata = data;
902               if (p >= data->start)
903                 break;
904             }
905           if (i == s->repo->nrepodata)
906             data = nextdata;    /* no direct hit, use next repodata */
907           if (data)
908             {
909               map_init(&providedids, pool->ss.nstrings);
910               repodata_search(data, SOLVID_META, REPOSITORY_ADDEDFILEPROVIDES, 0, addfileprovides_setid_cb, &providedids);
911               for (i = 0; i < cbd->nfiles; i++)
912                 if (!MAPTST(&providedids, cbd->ids[i]))
913                   break;
914               map_free(&providedids);
915               dataincludes = i == cbd->nfiles;
916             }
917           oldrepo = s->repo;
918         }
919       if (data && p >= data->start && dataincludes)
920         continue;
921       repo_search(s->repo, p, SOLVABLE_FILELIST, 0, 0, addfileprovides_cb, cbd);
922     }
923 }
924
925 void
926 pool_addfileprovides_ids(Pool *pool, Repo *installed, Id **idp)
927 {
928   Solvable *s;
929   Repo *repo;
930   struct searchfiles sf, isf, *isfp;
931   struct addfileprovides_cbdata cbd;
932   int i;
933
934   memset(&sf, 0, sizeof(sf));
935   map_init(&sf.seen, pool->ss.nstrings + pool->nrels);
936   memset(&isf, 0, sizeof(isf));
937   map_init(&isf.seen, pool->ss.nstrings + pool->nrels);
938
939   isfp = installed ? &isf : 0;
940   for (i = 1, s = pool->solvables + i; i < pool->nsolvables; i++, s++)
941     {
942       repo = s->repo;
943       if (!repo)
944         continue;
945       if (s->obsoletes)
946         pool_addfileprovides_dep(pool, repo->idarraydata + s->obsoletes, &sf, isfp);
947       if (s->conflicts)
948         pool_addfileprovides_dep(pool, repo->idarraydata + s->conflicts, &sf, isfp);
949       if (s->requires)
950         pool_addfileprovides_dep(pool, repo->idarraydata + s->requires, &sf, isfp);
951       if (s->recommends)
952         pool_addfileprovides_dep(pool, repo->idarraydata + s->recommends, &sf, isfp);
953       if (s->suggests)
954         pool_addfileprovides_dep(pool, repo->idarraydata + s->suggests, &sf, isfp);
955       if (s->supplements)
956         pool_addfileprovides_dep(pool, repo->idarraydata + s->supplements, &sf, isfp);
957       if (s->enhances)
958         pool_addfileprovides_dep(pool, repo->idarraydata + s->enhances, &sf, isfp);
959     }
960   map_free(&sf.seen);
961   map_free(&isf.seen);
962   POOL_DEBUG(SAT_DEBUG_STATS, "found %d file dependencies\n", sf.nfiles);
963   POOL_DEBUG(SAT_DEBUG_STATS, "found %d installed file dependencies\n", isf.nfiles);
964   cbd.dids = 0;
965   map_init(&cbd.useddirs, 1);
966   if (idp)
967     *idp = 0;
968   if (sf.nfiles)
969     {
970 #if 0
971       for (i = 0; i < sf.nfiles; i++)
972         POOL_DEBUG(SAT_DEBUG_STATS, "looking up %s in filelist\n", id2str(pool, sf.ids[i]));
973 #endif
974       pool_addfileprovides_search(pool, &cbd, &sf, 0);
975       if (idp)
976         {
977           sf.ids = sat_extend(sf.ids, sf.nfiles, 1, sizeof(Id), SEARCHFILES_BLOCK);
978           sf.ids[sf.nfiles] = 0;
979           *idp = sf.ids;
980           sf.ids = 0;
981         }
982       sat_free(sf.ids);
983       for (i = 0; i < sf.nfiles; i++)
984         {
985           sat_free(sf.dirs[i]);
986           sat_free(sf.names[i]);
987         }
988       sat_free(sf.dirs);
989       sat_free(sf.names);
990     }
991   if (isf.nfiles)
992     {
993 #if 0
994       for (i = 0; i < isf.nfiles; i++)
995         POOL_DEBUG(SAT_DEBUG_STATS, "looking up %s in installed filelist\n", id2str(pool, isf.ids[i]));
996 #endif
997       if (installed)
998         pool_addfileprovides_search(pool, &cbd, &isf, installed);
999       sat_free(isf.ids);
1000       for (i = 0; i < isf.nfiles; i++)
1001         {
1002           sat_free(isf.dirs[i]);
1003           sat_free(isf.names[i]);
1004         }
1005       sat_free(isf.dirs);
1006       sat_free(isf.names);
1007     }
1008   map_free(&cbd.useddirs);
1009   sat_free(cbd.dids);
1010   pool_freewhatprovides(pool);  /* as we have added provides */
1011 }
1012
1013 void
1014 pool_addfileprovides(Pool *pool)
1015 {
1016   pool_addfileprovides_ids(pool, pool->installed, 0);
1017 }
1018
1019 void
1020 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)
1021 {
1022   if (p)
1023     {
1024       if (pool->solvables[p].repo)
1025         repo_search(pool->solvables[p].repo, p, key, match, flags, callback, cbdata);
1026       return;
1027     }
1028   /* FIXME: obey callback return value! */
1029   for (p = 1; p < pool->nsolvables; p++)
1030     if (pool->solvables[p].repo)
1031       repo_search(pool->solvables[p].repo, p, key, match, flags, callback, cbdata);
1032 }
1033
1034 void
1035 pool_clear_pos(Pool *pool)
1036 {
1037   memset(&pool->pos, 0, sizeof(pool->pos));
1038 }
1039
1040
1041 void
1042 pool_set_languages(Pool *pool, const char **languages, int nlanguages)
1043 {
1044   int i;
1045
1046   pool->languagecache = sat_free(pool->languagecache);
1047   pool->languagecacheother = 0;
1048   if (pool->nlanguages)
1049     {
1050       for (i = 0; i < pool->nlanguages; i++)
1051         free((char *)pool->languages[i]);
1052       free(pool->languages);
1053     }
1054   pool->nlanguages = nlanguages;
1055   if (!nlanguages)
1056     return;
1057   pool->languages = sat_calloc(nlanguages, sizeof(const char **));
1058   for (i = 0; i < pool->nlanguages; i++)
1059     pool->languages[i] = strdup(languages[i]);
1060 }
1061
1062 Id
1063 pool_id2langid(Pool *pool, Id id, const char *lang, int create)
1064 {
1065   const char *n;
1066   char buf[256], *p;
1067   int l;
1068
1069   if (!lang)
1070     return id;
1071   n = id2str(pool, id);
1072   l = strlen(n) + strlen(lang) + 2;
1073   if (l > sizeof(buf))
1074     p = sat_malloc(strlen(n) + strlen(lang) + 2);
1075   else
1076     p = buf;
1077   sprintf(p, "%s:%s", n, lang);
1078   id = str2id(pool, p, create);
1079   if (p != buf)
1080     free(p);
1081   return id;
1082 }
1083
1084 char *
1085 pool_alloctmpspace(Pool *pool, int len)
1086 {
1087   int n = pool->tmpspacen;
1088   if (!len)
1089     return 0;
1090   if (len > pool->tmpspacelen[n])
1091     {
1092       pool->tmpspacebuf[n] = sat_realloc(pool->tmpspacebuf[n], len + 32);
1093       pool->tmpspacelen[n] = len + 32;
1094     }
1095   pool->tmpspacen = (n + 1) % POOL_TMPSPACEBUF;
1096   return pool->tmpspacebuf[n];
1097 }
1098
1099 /*******************************************************************/
1100
1101 struct mptree {
1102   Id sibling;
1103   Id child;
1104   const char *comp;
1105   int compl;
1106   Id mountpoint;
1107 };
1108
1109 struct ducbdata {
1110   DUChanges *mps;
1111   struct mptree *mptree;
1112   int addsub;
1113   int hasdu;
1114
1115   Id *dirmap;
1116   int nmap;
1117   Repodata *olddata;
1118 };
1119
1120
1121 static int
1122 solver_fill_DU_cb(void *cbdata, Solvable *s, Repodata *data, Repokey *key, KeyValue *value)
1123 {
1124   struct ducbdata *cbd = cbdata;
1125   Id mp;
1126
1127   if (data != cbd->olddata)
1128     {
1129       Id dn, mp, comp, *dirmap, *dirs;
1130       int i, compl;
1131       const char *compstr;
1132       struct mptree *mptree;
1133
1134       /* create map from dir to mptree */
1135       cbd->dirmap = sat_free(cbd->dirmap);
1136       cbd->nmap = 0;
1137       dirmap = sat_calloc(data->dirpool.ndirs, sizeof(Id));
1138       mptree = cbd->mptree;
1139       mp = 0;
1140       for (dn = 2, dirs = data->dirpool.dirs + dn; dn < data->dirpool.ndirs; dn++)
1141         {
1142           comp = *dirs++;
1143           if (comp <= 0)
1144             {
1145               mp = dirmap[-comp];
1146               continue;
1147             }
1148           if (mp < 0)
1149             {
1150               /* unconnected */
1151               dirmap[dn] = mp;
1152               continue;
1153             }
1154           if (!mptree[mp].child)
1155             {
1156               dirmap[dn] = -mp;
1157               continue;
1158             }
1159           if (data->localpool)
1160             compstr = stringpool_id2str(&data->spool, comp);
1161           else
1162             compstr = id2str(data->repo->pool, comp);
1163           compl = strlen(compstr);
1164           for (i = mptree[mp].child; i; i = mptree[i].sibling)
1165             if (mptree[i].compl == compl && !strncmp(mptree[i].comp, compstr, compl))
1166               break;
1167           dirmap[dn] = i ? i : -mp;
1168         }
1169       /* change dirmap to point to mountpoint instead of mptree */
1170       for (dn = 0; dn < data->dirpool.ndirs; dn++)
1171         {
1172           mp = dirmap[dn];
1173           dirmap[dn] = mptree[mp > 0 ? mp : -mp].mountpoint;
1174         }
1175       cbd->dirmap = dirmap;
1176       cbd->nmap = data->dirpool.ndirs;
1177       cbd->olddata = data;
1178     }
1179   cbd->hasdu = 1;
1180   if (value->id < 0 || value->id >= cbd->nmap)
1181     return 0;
1182   mp = cbd->dirmap[value->id];
1183   if (mp < 0)
1184     return 0;
1185   if (cbd->addsub > 0)
1186     {
1187       cbd->mps[mp].kbytes += value->num;
1188       cbd->mps[mp].files += value->num2;
1189     }
1190   else
1191     {
1192       cbd->mps[mp].kbytes -= value->num;
1193       cbd->mps[mp].files -= value->num2;
1194     }
1195   return 0;
1196 }
1197
1198 static void
1199 propagate_mountpoints(struct mptree *mptree, int pos, Id mountpoint)
1200 {
1201   int i;
1202   if (mptree[pos].mountpoint == -1)
1203     mptree[pos].mountpoint = mountpoint;
1204   else
1205     mountpoint = mptree[pos].mountpoint;
1206   for (i = mptree[pos].child; i; i = mptree[i].sibling)
1207     propagate_mountpoints(mptree, i, mountpoint);
1208 }
1209
1210 #define MPTREE_BLOCK 15
1211
1212 void
1213 pool_calc_duchanges(Pool *pool, Map *installedmap, DUChanges *mps, int nmps)
1214 {
1215   char *p;
1216   const char *path, *compstr;
1217   struct mptree *mptree;
1218   int i, nmptree;
1219   int pos, compl;
1220   int mp;
1221   struct ducbdata cbd;
1222   Solvable *s;
1223   Id sp;
1224   Map ignoredu;
1225   Repo *oldinstalled = pool->installed;
1226
1227   memset(&ignoredu, 0, sizeof(ignoredu));
1228   cbd.mps = mps;
1229   cbd.addsub = 0;
1230   cbd.dirmap = 0;
1231   cbd.nmap = 0;
1232   cbd.olddata = 0;
1233
1234   mptree = sat_extend_resize(0, 1, sizeof(struct mptree), MPTREE_BLOCK);
1235
1236   /* our root node */
1237   mptree[0].sibling = 0;
1238   mptree[0].child = 0;
1239   mptree[0].comp = 0;
1240   mptree[0].compl = 0;
1241   mptree[0].mountpoint = -1;
1242   nmptree = 1;
1243   
1244   /* create component tree */
1245   for (mp = 0; mp < nmps; mp++)
1246     {
1247       mps[mp].kbytes = 0;
1248       mps[mp].files = 0;
1249       pos = 0;
1250       path = mps[mp].path;
1251       while(*path == '/')
1252         path++;
1253       while (*path)
1254         {
1255           if ((p = strchr(path, '/')) == 0)
1256             {
1257               compstr = path;
1258               compl = strlen(compstr);
1259               path += compl;
1260             }
1261           else
1262             {
1263               compstr = path;
1264               compl = p - path;
1265               path = p + 1;
1266               while(*path == '/')
1267                 path++;
1268             }
1269           for (i = mptree[pos].child; i; i = mptree[i].sibling)
1270             if (mptree[i].compl == compl && !strncmp(mptree[i].comp, compstr, compl))
1271               break;
1272           if (!i)
1273             {
1274               /* create new node */
1275               mptree = sat_extend(mptree, nmptree, 1, sizeof(struct mptree), MPTREE_BLOCK);
1276               i = nmptree++;
1277               mptree[i].sibling = mptree[pos].child;
1278               mptree[i].child = 0;
1279               mptree[i].comp = compstr;
1280               mptree[i].compl = compl;
1281               mptree[i].mountpoint = -1;
1282               mptree[pos].child = i;
1283             }
1284           pos = i;
1285         }
1286       mptree[pos].mountpoint = mp;
1287     }
1288
1289   propagate_mountpoints(mptree, 0, mptree[0].mountpoint);
1290
1291 #if 0
1292   for (i = 0; i < nmptree; i++)
1293     {
1294       printf("#%d sibling: %d\n", i, mptree[i].sibling);
1295       printf("#%d child: %d\n", i, mptree[i].child);
1296       printf("#%d comp: %s\n", i, mptree[i].comp);
1297       printf("#%d compl: %d\n", i, mptree[i].compl);
1298       printf("#%d mountpont: %d\n", i, mptree[i].mountpoint);
1299     }
1300 #endif
1301
1302   cbd.mptree = mptree;
1303   cbd.addsub = 1;
1304   for (sp = 1, s = pool->solvables + sp; sp < pool->nsolvables; sp++, s++)
1305     {
1306       if (!s->repo || (oldinstalled && s->repo == oldinstalled))
1307         continue;
1308       if (!MAPTST(installedmap, sp))
1309         continue;
1310       cbd.hasdu = 0;
1311       repo_search(s->repo, sp, SOLVABLE_DISKUSAGE, 0, 0, solver_fill_DU_cb, &cbd);
1312       if (!cbd.hasdu && oldinstalled)
1313         {
1314           Id op, opp;
1315           /* no du data available, ignore data of all installed solvables we obsolete */
1316           if (!ignoredu.map)
1317             map_init(&ignoredu, oldinstalled->end - oldinstalled->start);
1318           if (s->obsoletes)
1319             {
1320               Id obs, *obsp = s->repo->idarraydata + s->obsoletes;
1321               while ((obs = *obsp++) != 0)
1322                 FOR_PROVIDES(op, opp, obs)
1323                   if (op >= oldinstalled->start && op < oldinstalled->end)
1324                     MAPSET(&ignoredu, op - oldinstalled->start);
1325             }
1326           FOR_PROVIDES(op, opp, s->name)
1327             if (pool->solvables[op].name == s->name)
1328               if (op >= oldinstalled->start && op < oldinstalled->end)
1329                 MAPSET(&ignoredu, op - oldinstalled->start);
1330         }
1331     }
1332   cbd.addsub = -1;
1333   if (oldinstalled)
1334     {
1335       /* assumes we allways have du data for installed solvables */
1336       FOR_REPO_SOLVABLES(oldinstalled, sp, s)
1337         {
1338           if (MAPTST(installedmap, sp))
1339             continue;
1340           if (ignoredu.map && MAPTST(&ignoredu, sp - oldinstalled->start))
1341             continue;
1342           repo_search(oldinstalled, sp, SOLVABLE_DISKUSAGE, 0, 0, solver_fill_DU_cb, &cbd);
1343         }
1344     }
1345   if (ignoredu.map)
1346     map_free(&ignoredu);
1347   sat_free(cbd.dirmap);
1348   sat_free(mptree);
1349 }
1350
1351 int
1352 pool_calc_installsizechange(Pool *pool, Map *installedmap)
1353 {
1354   Id sp;
1355   Solvable *s;
1356   int change = 0;
1357   Repo *oldinstalled = pool->installed;
1358
1359   for (sp = 1, s = pool->solvables + sp; sp < pool->nsolvables; sp++, s++)
1360     {
1361       if (!s->repo || (oldinstalled && s->repo == oldinstalled))
1362         continue;
1363       if (!MAPTST(installedmap, sp))
1364         continue;
1365       change += solvable_lookup_num(s, SOLVABLE_INSTALLSIZE, 0);
1366     }
1367   if (oldinstalled)
1368     {
1369       FOR_REPO_SOLVABLES(oldinstalled, sp, s)
1370         {
1371           if (MAPTST(installedmap, sp))
1372             continue;
1373           change -= solvable_lookup_num(s, SOLVABLE_INSTALLSIZE, 0);
1374         }
1375     }
1376   return change;
1377 }
1378
1379 /* map:
1380  *  1: installed
1381  *  2: conflicts with installed
1382  *  8: interesting (only true if installed)
1383  * 16: undecided
1384  */
1385  
1386 static inline Id dep2name(Pool *pool, Id dep)
1387 {
1388   while (ISRELDEP(dep))
1389     {
1390       Reldep *rd = rd = GETRELDEP(pool, dep);
1391       dep = rd->name;
1392     }
1393   return dep;
1394 }
1395
1396 static int providedbyinstalled_multiversion(Pool *pool, unsigned char *map, Id n, Id dep) 
1397 {
1398   Id p, pp;
1399   Solvable *sn = pool->solvables + n; 
1400
1401   FOR_PROVIDES(p, pp, sn->name)
1402     {    
1403       Solvable *s = pool->solvables + p; 
1404       if (s->name != sn->name || s->arch != sn->arch)
1405         continue;
1406       if ((map[p] & 9) == 9)
1407         return 1;
1408     }    
1409   return 0;
1410 }
1411
1412 static inline int providedbyinstalled(Pool *pool, unsigned char *map, Id dep, int ispatch, Map *noobsoletesmap)
1413 {
1414   Id p, pp;
1415   int r = 0;
1416   FOR_PROVIDES(p, pp, dep)
1417     {
1418       if (p == SYSTEMSOLVABLE)
1419         return 1;       /* always boring, as never constraining */
1420       if (ispatch && !pool_match_nevr(pool, pool->solvables + p, dep))
1421         continue;
1422       if (ispatch && noobsoletesmap && noobsoletesmap->size && MAPTST(noobsoletesmap, p) && ISRELDEP(dep))
1423         if (providedbyinstalled_multiversion(pool, map, p, dep))
1424           continue;
1425       if ((map[p] & 9) == 9)
1426         return 9;
1427       r |= map[p] & 17;
1428     }
1429   return r;
1430 }
1431
1432 /*
1433  * pool_trivial_installable - calculate if a set of solvables is
1434  * trivial installable without any other installs/deinstalls of
1435  * packages not belonging to the set.
1436  *
1437  * the state is returned in the result queue:
1438  * 1:  solvable is installable without any other package changes
1439  * 0:  solvable is not installable
1440  * -1: solvable is installable, but doesn't constrain any installed packages
1441  */
1442
1443 void
1444 pool_trivial_installable_noobsoletesmap(Pool *pool, Map *installedmap, Queue *pkgs, Queue *res, Map *noobsoletesmap)
1445 {
1446   int i, r, m, did;
1447   Id p, *dp, con, *conp, req, *reqp;
1448   unsigned char *map;
1449   Solvable *s;
1450
1451   map = sat_calloc(pool->nsolvables, 1);
1452   for (p = 1; p < pool->nsolvables; p++)
1453     {
1454       if (!MAPTST(installedmap, p))
1455         continue;
1456       map[p] |= 9;
1457       s = pool->solvables + p;
1458       if (!s->conflicts)
1459         continue;
1460       conp = s->repo->idarraydata + s->conflicts;
1461       while ((con = *conp++) != 0)
1462         {
1463           dp = pool_whatprovides_ptr(pool, con);
1464           for (; *dp; dp++)
1465             map[p] |= 2;        /* XXX: self conflict ? */
1466         }
1467     }
1468   for (i = 0; i < pkgs->count; i++)
1469     map[pkgs->elements[i]] = 16;
1470
1471   for (i = 0, did = 0; did < pkgs->count; i++, did++)
1472     {
1473       if (i == pkgs->count)
1474         i = 0;
1475       p = pkgs->elements[i];
1476       if ((map[p] & 16) == 0)
1477         continue;
1478       if ((map[p] & 2) != 0)
1479         {
1480           map[p] = 2;
1481           continue;
1482         }
1483       s = pool->solvables + p;
1484       m = 1;
1485       if (s->requires)
1486         {
1487           reqp = s->repo->idarraydata + s->requires;
1488           while ((req = *reqp++) != 0)
1489             {
1490               if (req == SOLVABLE_PREREQMARKER)
1491                 continue;
1492               r = providedbyinstalled(pool, map, req, 0, 0);
1493               if (!r)
1494                 {
1495                   /* decided and miss */
1496                   map[p] = 2;
1497                   break;
1498                 }
1499               m |= r;   /* 1 | 9 | 16 | 17 */
1500             }
1501           if (req)
1502             continue;
1503           if ((m & 9) == 9)
1504             m = 9;
1505         }
1506       if (s->conflicts)
1507         {
1508           int ispatch = 0;      /* see solver.c patch handling */
1509
1510           if (!strncmp("patch:", id2str(pool, s->name), 6))
1511             ispatch = 1;
1512           conp = s->repo->idarraydata + s->conflicts;
1513           while ((con = *conp++) != 0)
1514             {
1515               if ((providedbyinstalled(pool, map, con, ispatch, noobsoletesmap) & 1) != 0)
1516                 {
1517                   map[p] = 2;
1518                   break;
1519                 }
1520               if ((m == 1 || m == 17) && ISRELDEP(con))
1521                 {
1522                   con = dep2name(pool, con);
1523                   if ((providedbyinstalled(pool, map, con, ispatch, noobsoletesmap) & 1) != 0)
1524                     m = 9;
1525                 }
1526             }
1527           if (con)
1528             continue;   /* found a conflict */
1529         }
1530 #if 0
1531       if (s->repo && s->repo != oldinstalled)
1532         {
1533           Id p2, obs, *obsp, *pp;
1534           Solvable *s2;
1535           if (s->obsoletes)
1536             {
1537               obsp = s->repo->idarraydata + s->obsoletes;
1538               while ((obs = *obsp++) != 0)
1539                 {
1540                   if ((providedbyinstalled(pool, map, obs, 0, 0) & 1) != 0)
1541                     {
1542                       map[p] = 2;
1543                       break;
1544                     }
1545                 }
1546               if (obs)
1547                 continue;
1548             }
1549           FOR_PROVIDES(p2, pp, s->name)
1550             {
1551               s2 = pool->solvables + p2;
1552               if (s2->name == s->name && (map[p2] & 1) != 0)
1553                 {
1554                   map[p] = 2;
1555                   break;
1556                 }
1557             }
1558           if (p2)
1559             continue;
1560         }
1561 #endif
1562       if (m != map[p])
1563         {
1564           map[p] = m;
1565           did = 0;
1566         }
1567     }
1568   queue_free(res);
1569   queue_clone(res, pkgs);
1570   for (i = 0; i < pkgs->count; i++)
1571     {
1572       m = map[pkgs->elements[i]];
1573       if ((m & 9) == 9)
1574         r = 1;
1575       else if (m & 1)
1576         r = -1;
1577       else
1578         r = 0;
1579       res->elements[i] = r;
1580     }
1581   free(map);
1582 }
1583
1584 void
1585 pool_trivial_installable(Pool *pool, Map *installedmap, Queue *pkgs, Queue *res)
1586 {
1587   pool_trivial_installable_noobsoletesmap(pool, installedmap, pkgs, res, 0);
1588 }
1589
1590 // EOF