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