- add pool_error and pool_errstr. get rid of lots of exit() calls.
[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
69   struct _Repo **repos;
70   int nrepos;                   /* repos allocated */
71   int urepos;                   /* repos in use */
72
73   struct _Repo *installed;      /* packages considered installed */
74
75   Solvable *solvables;
76   int nsolvables;               /* solvables allocated */
77
78   const char **languages;
79   int nlanguages;
80
81   /* package manager type, deb/rpm */
82   int disttype;
83
84   Id *id2arch;                  /* map arch ids to scores */
85   unsigned char *id2color;      /* map arch ids to colors */
86   Id lastarch;                  /* last valid entry in id2arch/id2color */
87
88   Queue vendormap;              /* map vendor to vendorclasses mask */
89   const char **vendorclasses;   /* vendor equivalence classes */
90
91   /* providers data, as two-step indirect list
92    * whatprovides[Id] -> Offset into whatprovidesdata for name
93    * whatprovidesdata[Offset] -> 0-terminated list of solvables providing Id
94    */
95   Offset *whatprovides;         /* Offset to providers of a specific name, Id -> Offset  */
96   Offset *whatprovides_rel;     /* Offset to providers of a specific relation, Id -> Offset  */
97
98   Id *whatprovidesdata;         /* Ids of solvable providing Id */
99   Offset whatprovidesdataoff;   /* next free slot within whatprovidesdata */
100   int whatprovidesdataleft;     /* number of 'free slots' within whatprovidesdata */
101
102   /* If nonzero, then consider only the solvables with Ids set in this
103      bitmap for solving.  If zero, consider all solvables.  */
104   Map *considered;
105
106   /* callback for REL_NAMESPACE dependencies handled by the application  */
107   Id (*nscallback)(struct _Pool *, void *data, Id name, Id evr);
108   void *nscallbackdata;
109
110   /* debug mask and callback */
111   int  debugmask;
112   void (*debugcallback)(struct _Pool *, void *data, int type, const char *str);
113   void *debugcallbackdata;
114
115   /* load callback */
116   int (*loadcallback)(struct _Pool *, struct _Repodata *, void *);
117   void *loadcallbackdata;
118
119   /* search position */
120   Datapos pos;
121
122 #ifdef LIBSOLV_INTERNAL
123   /* flags to tell the library how the installed package manager works */
124   int promoteepoch;             /* true: missing epoch is replaced by epoch of dependency   */
125   int havedistepoch;            /* true: thr release part in the evr may contain a distepoch suffix */
126   int obsoleteusesprovides;     /* true: obsoletes are matched against provides, not names */
127   int implicitobsoleteusesprovides;     /* true: implicit obsoletes due to same name are matched against provides, not names */
128   int obsoleteusescolors;       /* true: obsoletes check arch color */
129   int noinstalledobsoletes;     /* true: ignore obsoletes of installed packages */
130   int forbidselfconflicts;      /* true: packages which conflict with itself are not installable */
131
132   Id noarchid;                  /* ARCH_NOARCH, ARCH_ALL, ARCH_ANY, ... */
133
134   /* hash for rel unification */
135   Hashtable relhashtbl;         /* hashtable: (name,evr,op)Hash -> Id */
136   Hashmask relhashmask;
137
138   Id *languagecache;
139   int languagecacheother;
140
141   /* our tmp space string space */
142   struct _Pool_tmpspace tmpspace;
143
144   char *errstr;                 /* last error string */
145   int errstra;                  /* allocated space for errstr */
146 #endif
147
148 };
149
150 #define DISTTYPE_RPM    0
151 #define DISTTYPE_DEB    1
152 #define DISTTYPE_ARCH   2
153
154 #define SOLV_FATAL                      (1<<0)
155 #define SOLV_ERROR                      (1<<1)
156 #define SOLV_WARN                       (1<<2)
157 #define SOLV_DEBUG_STATS                (1<<3)
158 #define SOLV_DEBUG_RULE_CREATION        (1<<4)
159 #define SOLV_DEBUG_PROPAGATE            (1<<5)
160 #define SOLV_DEBUG_ANALYZE              (1<<6)
161 #define SOLV_DEBUG_UNSOLVABLE           (1<<7)
162 #define SOLV_DEBUG_SOLUTIONS            (1<<8)
163 #define SOLV_DEBUG_POLICY               (1<<9)
164 #define SOLV_DEBUG_RESULT               (1<<10)
165 #define SOLV_DEBUG_JOB                  (1<<11)
166 #define SOLV_DEBUG_SOLVER               (1<<12)
167 #define SOLV_DEBUG_TRANSACTION          (1<<13)
168
169 #define SOLV_DEBUG_TO_STDERR            (1<<30)
170
171 #define POOL_FLAG_PROMOTEEPOCH                          1
172 #define POOL_FLAG_FORBIDSELFCONFLICTS                   2
173 #define POOL_FLAG_OBSOLETEUSESPROVIDES                  3
174 #define POOL_FLAG_IMPLICITOBSOLETEUSESPROVIDES          4
175 #define POOL_FLAG_OBSOLETEUSESCOLORS                    5
176 #define POOL_FLAG_NOINSTALLEDOBSOLETES                  6
177 #define POOL_FLAG_HAVEDISTEPOCH                         7
178
179 /* ----------------------------------------------- */
180
181
182 /* mark dependencies with relation by setting bit31 */
183
184 #define MAKERELDEP(id) ((id) | 0x80000000)
185 #define ISRELDEP(id) (((id) & 0x80000000) != 0)
186 #define GETRELID(id) ((id) ^ 0x80000000)                                /* returns Id */
187 #define GETRELDEP(pool, id) ((pool)->rels + ((id) ^ 0x80000000))        /* returns Reldep* */
188
189 #define REL_GT          1
190 #define REL_EQ          2
191 #define REL_LT          4
192
193 #define REL_AND         16
194 #define REL_OR          17
195 #define REL_WITH        18
196 #define REL_NAMESPACE   19
197 #define REL_ARCH        20
198 #define REL_FILECONFLICT        21
199 #define REL_COND        22
200
201 #if !defined(__GNUC__) && !defined(__attribute__)
202 # define __attribute__(x)
203 #endif
204
205 extern Pool *pool_create(void);
206 extern void pool_free(Pool *pool);
207 extern void pool_freeallrepos(Pool *pool, int reuseids);
208
209 extern void pool_setdebuglevel(Pool *pool, int level);
210 #ifdef MULTI_SEMANTICS
211 extern void pool_setdisttype(Pool *pool, int disttype);
212 #endif
213 extern int  pool_set_flag(Pool *pool, int flag, int value);
214 extern int  pool_get_flag(Pool *pool, int flag);
215 extern void pool_setvendorclasses(Pool *pool, const char **vendorclasses);
216
217 extern void pool_debug(Pool *pool, int type, const char *format, ...) __attribute__((format(printf, 3, 4)));
218 extern void pool_setdebugcallback(Pool *pool, void (*debugcallback)(struct _Pool *, void *data, int type, const char *str), void *debugcallbackdata);
219 extern void pool_setdebugmask(Pool *pool, int mask);
220 extern void pool_setloadcallback(Pool *pool, int (*cb)(struct _Pool *, struct _Repodata *, void *), void *loadcbdata);
221
222
223 extern char *pool_alloctmpspace(Pool *pool, int len);
224 extern void  pool_freetmpspace(Pool *pool, const char *space);
225 extern char *pool_tmpjoin(Pool *pool, const char *str1, const char *str2, const char *str3);
226 extern char *pool_tmpappend(Pool *pool, const char *str1, const char *str2, const char *str3);
227 extern const char *pool_bin2hex(Pool *pool, const unsigned char *buf, int len);
228
229 extern void pool_set_installed(Pool *pool, struct _Repo *repo);
230
231 extern int  pool_error(Pool *pool, int ret, const char *format, ...) __attribute__((format(printf, 3, 4)));
232 extern char *pool_errstr(Pool *pool);
233
234 /**
235  * Solvable management
236  */
237 extern Id pool_add_solvable(Pool *pool);
238 extern Id pool_add_solvable_block(Pool *pool, int count);
239
240 extern void pool_free_solvable_block(Pool *pool, Id start, int count, int reuseids);
241 static inline Solvable *pool_id2solvable(const Pool *pool, Id p)
242 {
243   return pool->solvables + p;
244 }
245
246 extern const char *pool_solvable2str(Pool *pool, Solvable *s);
247 static inline const char *pool_solvid2str(Pool *pool, Id p)
248 {
249   return pool_solvable2str(pool, pool->solvables + p);
250 }
251
252 void pool_set_languages(Pool *pool, const char **languages, int nlanguages);
253 Id pool_id2langid(Pool *pool, Id id, const char *lang, int create);
254
255 int solvable_trivial_installable_map(Solvable *s, Map *installedmap, Map *conflictsmap, Map *noobsoletesmap);
256 int solvable_trivial_installable_repo(Solvable *s, struct _Repo *installed, Map *noobsoletesmap);
257 int solvable_trivial_installable_queue(Solvable *s, Queue *installed, Map *noobsoletesmap);
258
259 void pool_create_state_maps(Pool *pool, Queue *installed, Map *installedmap, Map *conflictsmap);
260
261 int pool_match_nevr_rel(Pool *pool, Solvable *s, Id d);
262 int pool_match_dep(Pool *pool, Id d1, Id d2);
263
264 static inline int pool_match_nevr(Pool *pool, Solvable *s, Id d)
265 {
266   if (!ISRELDEP(d))
267     return d == s->name;
268   else
269     return pool_match_nevr_rel(pool, s, d);
270 }
271
272
273 /**
274  * Prepares a pool for solving
275  */
276 extern void pool_createwhatprovides(Pool *pool);
277 extern void pool_addfileprovides(Pool *pool);
278 extern void pool_addfileprovides_queue(Pool *pool, Queue *idq, Queue *idqinst);
279 extern void pool_freewhatprovides(Pool *pool);
280 extern Id pool_queuetowhatprovides(Pool *pool, Queue *q);
281
282 extern Id pool_addrelproviders(Pool *pool, Id d);
283
284 static inline Id pool_whatprovides(Pool *pool, Id d)
285 {
286   Id v;
287   if (!ISRELDEP(d))
288     return pool->whatprovides[d];
289   v = GETRELID(d);
290   if (pool->whatprovides_rel[v])
291     return pool->whatprovides_rel[v];
292   return pool_addrelproviders(pool, d);
293 }
294
295 static inline Id *pool_whatprovides_ptr(Pool *pool, Id d)
296 {
297   Id off = pool_whatprovides(pool, d);
298   return pool->whatprovidesdata + off;
299 }
300
301 /* search the pool. the following filters are available:
302  *   p     - search just this solvable
303  *   key   - search only this key
304  *   match - key must match this string
305  */
306 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);
307
308 void pool_clear_pos(Pool *pool);
309
310
311 typedef struct _DUChanges {
312   const char *path;
313   int kbytes;
314   int files;
315 } DUChanges;
316
317 void pool_calc_duchanges(Pool *pool, Map *installedmap, DUChanges *mps, int nmps);
318 int pool_calc_installsizechange(Pool *pool, Map *installedmap);
319 void pool_trivial_installable(Pool *pool, Map *installedmap, Queue *pkgs, Queue *res);
320 void pool_trivial_installable_noobsoletesmap(Pool *pool, Map *installedmap, Queue *pkgs, Queue *res, Map *noobsoletesmap);
321
322 const char *pool_lookup_str(Pool *pool, Id entry, Id keyname);
323 Id pool_lookup_id(Pool *pool, Id entry, Id keyname);
324 unsigned long long pool_lookup_num(Pool *pool, Id entry, Id keyname, unsigned long long notfound);
325 int pool_lookup_void(Pool *pool, Id entry, Id keyname);
326 const unsigned char *pool_lookup_bin_checksum(Pool *pool, Id entry, Id keyname, Id *typep);
327 const char *pool_lookup_checksum(Pool *pool, Id entry, Id keyname, Id *typep);
328
329 void pool_add_fileconflicts_deps(Pool *pool, Queue *conflicts);
330
331
332
333 /* loop over all providers of d */
334 #define FOR_PROVIDES(v, vp, d)                                          \
335   for (vp = pool_whatprovides(pool, d) ; (v = pool->whatprovidesdata[vp++]) != 0; )
336
337 /* loop over all repositories */
338 #define FOR_REPOS(repoid, r)                                            \
339   for (repoid = 1; repoid < pool->nrepos; repoid++)                             \
340     if ((r = pool->repos[repoid]) != 0)
341     
342
343 #ifdef ENABLE_COMPS
344 #define ISCONDDEP(id) (ISRELDEP(id) && (GETRELDEP(pool, id))->flags == REL_COND)
345 #define MODIFYCONDDEP(id, tst) do { Reldep *condrd = GETRELDEP(pool, id); Id condp, condpp; FOR_PROVIDES(condrd->evr, condp, condpp) if (tst) break; id = condp ? condrd->name : 0;} while(0)
346 #endif
347
348 #define POOL_DEBUG(type, ...) do {if ((pool->debugmask & (type)) != 0) pool_debug(pool, (type), __VA_ARGS__);} while (0)
349 #define IF_POOLDEBUG(type) if ((pool->debugmask & (type)) != 0)
350
351 #ifdef __cplusplus
352 }
353 #endif
354
355
356 #endif /* LIBSOLV_POOL_H */