- add support for REL_FILECONFLICT
[platform/upstream/libsolv.git] / src / pool.h
1 /*
2  * Copyright (c) 2007, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 /*
9  * pool.h
10  * 
11  */
12
13 #ifndef SATSOLVER_POOL_H
14 #define SATSOLVER_POOL_H
15
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19
20 #include <stdio.h>
21
22 #include "pooltypes.h"
23 #include "poolid.h"
24 #include "solvable.h"
25 #include "bitmap.h"
26 #include "queue.h"
27 #include "strpool.h"
28
29 /* well known ids */
30 #include "knownid.h"
31
32 /* well known solvable */
33 #define SYSTEMSOLVABLE          1
34
35
36 /* how many strings to maintain (round robin) */
37 #define POOL_TMPSPACEBUF 16
38
39 //-----------------------------------------------
40
41 struct _Repo;
42 struct _Repodata;
43 struct _Repokey;
44 struct _KeyValue;
45
46 typedef struct _Repopos {
47   struct _Repo *repo;
48   Id solvid;
49   Id repodataid;
50   Id schema;
51   Id dp; 
52 } Repopos;
53
54 struct _Pool {
55   struct _Stringpool ss;
56
57   Reldep *rels;                 /* table of rels: Id -> Reldep */
58   int nrels;                    /* number of unique rels */
59   Hashtable relhashtbl;         /* hashtable: (name,evr,op)Hash -> Id */
60   Hashmask relhashmask;
61
62   struct _Repo **repos;
63   int nrepos;
64
65   struct _Repo *installed;      /* packages considered installed */
66
67   Solvable *solvables;
68   int nsolvables;
69
70   const char **languages;
71   int nlanguages;
72   Id *languagecache;
73   int languagecacheother;
74
75   /* flags to tell the library how the installed rpm works */
76   int promoteepoch;             /* true: missing epoch is replaced by epoch of dependency   */
77   int obsoleteusesprovides;     /* true: obsoletes are matched against provides, not names */
78   int implicitobsoleteusesprovides;     /* true: implicit obsoletes due to same name are matched against provides, not names */
79   int novirtualconflicts;       /* true: conflicts on names, not on provides */
80   int allowselfconflicts;       /* true: packages which conflict with itself are installable */
81
82   Id *id2arch;                  /* map arch ids to scores */
83   Id lastarch;                  /* last valid entry in id2arch */
84   Queue vendormap;              /* map vendor to vendorclasses mask */
85
86   /* providers data, as two-step indirect list
87    * whatprovides[Id] -> Offset into whatprovidesdata for name
88    * whatprovidesdata[Offset] -> ID_NULL-terminated list of solvables providing Id
89    */
90   Offset *whatprovides;         /* Offset to providers of a specific name, Id -> Offset  */
91   Offset *whatprovides_rel;     /* Offset to providers of a specific relation, Id -> Offset  */
92
93   Id *whatprovidesdata;         /* Ids of solvable providing Id */
94   Offset whatprovidesdataoff;   /* next free slot within whatprovidesdata */
95   int whatprovidesdataleft;     /* number of 'free slots' within whatprovidesdata */
96
97   /* If nonzero, then consider only the solvables with Ids set in this
98      bitmap for solving.  If zero, consider all solvables.  */
99   Map *considered;
100
101   Id (*nscallback)(struct _Pool *, void *data, Id name, Id evr);
102   void *nscallbackdata;
103
104   /* our tmp space string space */
105   char *tmpspacebuf[POOL_TMPSPACEBUF];
106   int   tmpspacelen[POOL_TMPSPACEBUF];
107   int   tmpspacen;
108
109   /* debug mask and callback */
110   int  debugmask;
111   void (*debugcallback)(struct _Pool *, void *data, int type, const char *str);
112   void *debugcallbackdata;
113
114   /* load callback */
115   FILE * (*loadcallback)(struct _Pool *, struct _Repodata *, void *);
116   void *loadcallbackdata;
117
118   /* search position */
119   Repopos pos;
120 };
121
122 #define SAT_FATAL                       (1<<0)
123 #define SAT_ERROR                       (1<<1)
124 #define SAT_WARN                        (1<<2)
125 #define SAT_DEBUG_STATS                 (1<<3)
126 #define SAT_DEBUG_RULE_CREATION         (1<<4)
127 #define SAT_DEBUG_PROPAGATE             (1<<5)
128 #define SAT_DEBUG_ANALYZE               (1<<6)
129 #define SAT_DEBUG_UNSOLVABLE            (1<<7)
130 #define SAT_DEBUG_SOLUTIONS             (1<<8)
131 #define SAT_DEBUG_POLICY                (1<<9)
132 #define SAT_DEBUG_RESULT                (1<<10)
133 #define SAT_DEBUG_JOB                   (1<<11)
134 #define SAT_DEBUG_SCHUBI                (1<<12)
135 #define SAT_DEBUG_SOLVER                (1<<13)
136 #define SAT_DEBUG_TRANSACTION           (1<<14)
137
138 //-----------------------------------------------
139
140
141 /* mark dependencies with relation by setting bit31 */
142
143 #define MAKERELDEP(id) ((id) | 0x80000000)
144 #define ISRELDEP(id) (((id) & 0x80000000) != 0)
145 #define GETRELID(id) ((id) ^ 0x80000000)                                /* returns Id */
146 #define GETRELDEP(pool, id) ((pool)->rels + ((id) ^ 0x80000000))        /* returns Reldep* */
147
148 #define REL_GT          1
149 #define REL_EQ          2
150 #define REL_LT          4
151
152 #define REL_AND         16
153 #define REL_OR          17
154 #define REL_WITH        18
155 #define REL_NAMESPACE   19
156 #define REL_ARCH        20
157 #define REL_FILECONFLICT        21
158
159 #if !defined(__GNUC__) && !defined(__attribute__)
160 # define __attribute__(x)
161 #endif
162
163 /**
164  * Creates a new pool
165  */
166 extern Pool *pool_create(void);
167 /**
168  * Delete a pool
169  */
170 extern void pool_free(Pool *pool);
171
172 extern void pool_debug(Pool *pool, int type, const char *format, ...) __attribute__((format(printf, 3, 4)));
173
174 extern char *pool_alloctmpspace(Pool *pool, int len);
175
176 extern void pool_set_installed(Pool *pool, struct _Repo *repo);
177
178 /**
179  * Solvable management
180  */
181 extern Id pool_add_solvable(Pool *pool);
182 extern Id pool_add_solvable_block(Pool *pool, int count);
183
184 extern void pool_free_solvable_block(Pool *pool, Id start, int count, int reuseids);
185 static inline Solvable *pool_id2solvable(Pool *pool, Id p)
186 {
187   return pool->solvables + p;
188 }
189
190 extern const char *solvable2str(Pool *pool, Solvable *s);
191 static inline const char *solvid2str(Pool *pool, Id p)
192 {
193   return solvable2str(pool, pool->solvables + p);
194 }
195
196 void pool_set_languages(Pool *pool, const char **languages, int nlanguages);
197 Id pool_id2langid(Pool *pool, Id id, const char *lang, int create);
198
199 Id solvable_lookup_id(Solvable *s, Id keyname);
200 unsigned int solvable_lookup_num(Solvable *s, Id keyname, unsigned int notfound);
201 const char *solvable_lookup_str(Solvable *s, Id keyname);
202 const char *solvable_lookup_str_poollang(Solvable *s, Id keyname);
203 const char *solvable_lookup_str_lang(Solvable *s, Id keyname, const char *lang);
204 int solvable_lookup_bool(Solvable *s, Id keyname);
205 int solvable_lookup_void(Solvable *s, Id keyname);
206 char * solvable_get_location(Solvable *s, unsigned int *medianrp);
207 const unsigned char *solvable_lookup_bin_checksum(Solvable *s, Id keyname, Id *typep);
208 const char *solvable_lookup_checksum(Solvable *s, Id keyname, Id *typep);
209 int solvable_identical(Solvable *s1, Solvable *s2);
210 Id solvable_selfprovidedep(Solvable *s);
211
212 int solvable_trivial_installable_map(Solvable *s, Map *installedmap, Map *conflictsmap);
213 int solvable_trivial_installable_repo(Solvable *s, struct _Repo *installed);
214 int solvable_trivial_installable_queue(Solvable *s, Queue *installed);
215
216 void pool_create_state_maps(Pool *pool, Queue *installed, Map *installedmap, Map *conflictsmap);
217
218 int pool_match_nevr_rel(Pool *pool, Solvable *s, Id d);
219 int pool_match_dep(Pool *pool, Id d1, Id d2);
220
221 static inline int pool_match_nevr(Pool *pool, Solvable *s, Id d)
222 {
223   if (!ISRELDEP(d))
224     return d == s->name;
225   else
226     return pool_match_nevr_rel(pool, s, d);
227 }
228
229
230 /**
231  * Prepares a pool for solving
232  */
233 extern void pool_createwhatprovides(Pool *pool);
234 extern void pool_addfileprovides(Pool *pool);
235 extern void pool_addfileprovides_ids(Pool *pool, struct _Repo *installed, Id **idp);
236 extern void pool_freewhatprovides(Pool *pool);
237 extern Id pool_queuetowhatprovides(Pool *pool, Queue *q);
238
239 static inline int pool_installable(Pool *pool, Solvable *s)
240 {
241   if (!s->arch || s->arch == ARCH_SRC || s->arch == ARCH_NOSRC)
242     return 0;
243   if (pool->id2arch && (s->arch > pool->lastarch || !pool->id2arch[s->arch]))
244     return 0;
245   if (pool->considered)
246     { 
247       Id id = s - pool->solvables;
248       if (!MAPTST(pool->considered, id))
249         return 0;
250     }
251   return 1;
252 }
253
254 extern Id pool_addrelproviders(Pool *pool, Id d);
255
256 static inline Id pool_whatprovides(Pool *pool, Id d)
257 {
258   Id v;
259   if (!ISRELDEP(d))
260     return pool->whatprovides[d];
261   v = GETRELID(d);
262   if (pool->whatprovides_rel[v])
263     return pool->whatprovides_rel[v];
264   return pool_addrelproviders(pool, d);
265 }
266
267 static inline Id *pool_whatprovides_ptr(Pool *pool, Id d)
268 {
269   Id off = pool_whatprovides(pool, d);
270   return pool->whatprovidesdata + off;
271 }
272
273 extern void pool_setdebuglevel(Pool *pool, int level);
274
275 static inline void pool_setdebugcallback(Pool *pool, void (*debugcallback)(struct _Pool *, void *data, int type, const char *str), void *debugcallbackdata)
276 {
277   pool->debugcallback = debugcallback;
278   pool->debugcallbackdata = debugcallbackdata;
279 }
280
281 static inline void pool_setdebugmask(Pool *pool, int mask)
282 {
283   pool->debugmask = mask;
284 }
285
286 static inline void pool_setloadcallback(Pool *pool, FILE *(*cb)(struct _Pool *, struct _Repodata *, void *), void *loadcbdata)
287 {
288   pool->loadcallback = cb;
289   pool->loadcallbackdata = loadcbdata;
290 }
291
292 /* search the pool. the following filters are available:
293  *   p     - search just this solvable
294  *   key   - search only this key
295  *   match - key must match this string
296  */
297 void 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);
298
299 void pool_clear_pos(Pool *pool);
300
301
302 typedef struct _duchanges {
303   const char *path;
304   int kbytes;
305   int files;
306 } DUChanges;
307
308 void pool_calc_duchanges(Pool *pool, Map *installedmap, DUChanges *mps, int nmps);
309 int pool_calc_installsizechange(Pool *pool, Map *installedmap);
310 void pool_trivial_installable(Pool *pool, Map *installedmap, Queue *pkgs, Queue *res);
311 void pool_trivial_installable_noobsoletesmap(Pool *pool, Map *installedmap, Queue *pkgs, Queue *res, Map *noobsoletesmap);
312
313 const char *pool_lookup_str(Pool *pool, Id entry, Id keyname);
314 Id pool_lookup_id(Pool *pool, Id entry, Id keyname);
315 unsigned int pool_lookup_num(Pool *pool, Id entry, Id keyname, unsigned int notfound);
316 int pool_lookup_void(Pool *pool, Id entry, Id keyname);
317 const unsigned char *pool_lookup_bin_checksum(Pool *pool, Id entry, Id keyname, Id *typep);
318 const char *pool_lookup_checksum(Pool *pool, Id entry, Id keyname, Id *typep);
319
320 void pool_add_fileconflicts_deps(Pool *pool, Queue *conflicts);
321
322
323
324 /* loop over all providers of d */
325 #define FOR_PROVIDES(v, vp, d)                                          \
326   for (vp = pool_whatprovides(pool, d) ; (v = pool->whatprovidesdata[vp++]) != 0; )
327
328 /* loop over all repositories */
329 /* note that idx is not the repoid */
330 #define FOR_REPOS(idx, r)                                               \
331   for (idx = 0; idx < pool->nrepos; idx++)                              \
332     if ((r = pool->repos[idx]) != 0)
333     
334
335 #define POOL_DEBUG(type, ...) do {if ((pool->debugmask & (type)) != 0) pool_debug(pool, (type), __VA_ARGS__);} while (0)
336 #define IF_POOLDEBUG(type) if ((pool->debugmask & (type)) != 0)
337
338 #ifdef __cplusplus
339 }
340 #endif
341
342
343 #endif /* SATSOLVER_POOL_H */