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