- bring back dataiterator_match for now (to be removed again)
[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 repodataid;
49   Id schema;
50   Id dp; 
51 } Repopos;
52
53 struct _Pool {
54   struct _Stringpool ss;
55
56   Reldep *rels;               // table of rels: Id -> Reldep
57   int nrels;                  // number of unique rels
58   Hashtable relhashtbl;       // hash table: (name,evr,op ->) Hash -> Id
59   Hashmask relhashmask;
60
61   struct _Repo **repos;
62   int nrepos;
63
64   Solvable *solvables;
65   int nsolvables;
66
67   const char **languages;
68   int nlanguages;
69   Id *languagecache;
70   int languagecacheother;
71
72   int promoteepoch;             /* 0/1  */
73
74   Id *id2arch;                  /* map arch ids to scores */
75   Id lastarch;                  /* last valid entry in id2arch */
76   Queue vendormap;              /* map vendor to vendorclasses mask */
77
78   /* providers data, as two-step indirect list
79    * whatprovides[Id] -> Offset into whatprovidesdata for name
80    * whatprovidesdata[Offset] -> ID_NULL-terminated list of solvables providing Id
81    */
82   Offset *whatprovides;         /* Offset to providers of a specific name, Id -> Offset  */
83   Offset *whatprovides_rel;     /* Offset to providers of a specific relation, Id -> Offset  */
84
85   Id *whatprovidesdata;         /* Ids of solvable providing Id */
86   Offset whatprovidesdataoff;   /* next free slot within whatprovidesdata */
87   int whatprovidesdataleft;     /* number of 'free slots' within whatprovidesdata */
88
89   /* If nonzero, then consider only the solvables with Ids set in this
90      bitmap for solving.  If zero, consider all solvables.  */
91   Map *considered;
92
93   Id (*nscallback)(struct _Pool *, void *data, Id name, Id evr);
94   void *nscallbackdata;
95
96   /* our tmp space string space */
97   char *tmpspacebuf[POOL_TMPSPACEBUF];
98   int   tmpspacelen[POOL_TMPSPACEBUF];
99   int   tmpspacen;
100
101   /* debug mask and callback */
102   int  debugmask;
103   void (*debugcallback)(struct _Pool *, void *data, int type, const char *str);
104   void *debugcallbackdata;
105
106   /* load callback */
107   FILE * (*loadcallback)(struct _Pool *, struct _Repodata *, void *);
108   void *loadcallbackdata;
109
110   /* search position */
111   Repopos pos;
112 };
113
114 #define SAT_FATAL                       (1<<0)
115 #define SAT_ERROR                       (1<<1)
116 #define SAT_WARN                        (1<<2)
117 #define SAT_DEBUG_STATS                 (1<<3)
118 #define SAT_DEBUG_RULE_CREATION         (1<<4)
119 #define SAT_DEBUG_PROPAGATE             (1<<5)
120 #define SAT_DEBUG_ANALYZE               (1<<6)
121 #define SAT_DEBUG_UNSOLVABLE            (1<<7)
122 #define SAT_DEBUG_SOLUTIONS             (1<<8)
123 #define SAT_DEBUG_POLICY                (1<<9)
124 #define SAT_DEBUG_RESULT                (1<<10)
125 #define SAT_DEBUG_JOB                   (1<<11)
126 #define SAT_DEBUG_SCHUBI                (1<<12)
127
128 //-----------------------------------------------
129
130
131 /* mark dependencies with relation by setting bit31 */
132
133 #define MAKERELDEP(id) ((id) | 0x80000000)
134 #define ISRELDEP(id) (((id) & 0x80000000) != 0)
135 #define GETRELID(id) ((id) ^ 0x80000000)                                /* returns Id */
136 #define GETRELDEP(pool, id) ((pool)->rels + ((id) ^ 0x80000000))        /* returns Reldep* */
137
138 #define REL_GT          1
139 #define REL_EQ          2
140 #define REL_LT          4
141
142 #define REL_AND         16
143 #define REL_OR          17
144 #define REL_WITH        18
145 #define REL_NAMESPACE   19
146 #define REL_ARCH        20
147
148 #if !defined(__GNUC__) && !defined(__attribute__)
149 # define __attribute__(x)
150 #endif
151
152 /**
153  * Creates a new pool
154  */
155 extern Pool *pool_create(void);
156 /**
157  * Delete a pool
158  */
159 extern void pool_free(Pool *pool);
160
161 extern void pool_debug(Pool *pool, int type, const char *format, ...) __attribute__((format(printf, 3, 4)));
162
163 extern char *pool_alloctmpspace(Pool *pool, int len);
164
165 /**
166  * Solvable management
167  */
168 extern Id pool_add_solvable(Pool *pool);
169 extern Id pool_add_solvable_block(Pool *pool, int count);
170
171 extern void pool_free_solvable_block(Pool *pool, Id start, int count, int reuseids);
172 static inline Solvable *pool_id2solvable(Pool *pool, Id p)
173 {
174   return pool->solvables + p;
175 }
176 extern const char *solvable2str(Pool *pool, Solvable *s);
177
178 void pool_set_languages(Pool *pool, const char **languages, int nlanguages);
179 Id pool_id2langid(Pool *pool, Id id, const char *lang, int create);
180
181 Id solvable_lookup_id(Solvable *s, Id keyname);
182 unsigned int solvable_lookup_num(Solvable *s, Id keyname, unsigned int notfound);
183 const char *solvable_lookup_str(Solvable *s, Id keyname);
184 const char *solvable_lookup_str_poollang(Solvable *s, Id keyname);
185 const char *solvable_lookup_str_lang(Solvable *s, Id keyname, const char *lang);
186 int solvable_lookup_bool(Solvable *s, Id keyname);
187 int solvable_lookup_void(Solvable *s, Id keyname);
188 char * solvable_get_location(Solvable *s, unsigned int *medianrp);
189 const unsigned char *solvable_lookup_bin_checksum(Solvable *s, Id keyname, Id *typep);
190 const char *solvable_lookup_checksum(Solvable *s, Id keyname, Id *typep);
191 int solvable_identical(Pool *pool, Solvable *s1, Solvable *s2);
192
193 int solvable_trivial_installable_map(Solvable *s, Map *installedmap, Map *conflictsmap);
194 int solvable_trivial_installable_repo(Solvable *s, struct _Repo *installed);
195 int solvable_trivial_installable_queue(Solvable *s, Queue *installed);
196
197 void pool_create_state_maps(Pool *pool, Queue *installed, Map *installedmap, Map *conflictsmap);
198
199 int pool_match_nevr_rel(Pool *pool, Solvable *s, Id d);
200
201 static inline int pool_match_nevr(Pool *pool, Solvable *s, Id d)
202 {
203   if (!ISRELDEP(d))
204     return d == s->name;
205   else
206     return pool_match_nevr_rel(pool, s, d);
207 }
208
209
210 /**
211  * Prepares a pool for solving
212  */
213 extern void pool_createwhatprovides(Pool *pool);
214 extern void pool_addfileprovides(Pool *pool, struct _Repo *installed);
215 extern void pool_addfileprovides_ids(Pool *pool, struct _Repo *installed, Id **idp);
216 extern void pool_freewhatprovides(Pool *pool);
217 extern Id pool_queuetowhatprovides(Pool *pool, Queue *q);
218
219 static inline int pool_installable(Pool *pool, Solvable *s)
220 {
221   if (!s->arch || s->arch == ARCH_SRC || s->arch == ARCH_NOSRC)
222     return 0;
223   if (pool->id2arch && (s->arch > pool->lastarch || !pool->id2arch[s->arch]))
224     return 0;
225   if (pool->considered)
226     { 
227       Id id = s - pool->solvables;
228       if (!MAPTST(pool->considered, id))
229         return 0;
230     }
231   return 1;
232 }
233
234 extern Id pool_addrelproviders(Pool *pool, Id d);
235
236 static inline Id pool_whatprovides(Pool *pool, Id d)
237 {
238   Id v;
239   if (!ISRELDEP(d))
240     return pool->whatprovides[d];
241   v = GETRELID(d);
242   if (pool->whatprovides_rel[v])
243     return pool->whatprovides_rel[v];
244   return pool_addrelproviders(pool, d);
245 }
246
247 extern void pool_setdebuglevel(Pool *pool, int level);
248
249 static inline void pool_setdebugcallback(Pool *pool, void (*debugcallback)(struct _Pool *, void *data, int type, const char *str), void *debugcallbackdata)
250 {
251   pool->debugcallback = debugcallback;
252   pool->debugcallbackdata = debugcallbackdata;
253 }
254
255 static inline void pool_setdebugmask(Pool *pool, int mask)
256 {
257   pool->debugmask = mask;
258 }
259
260 static inline void pool_setloadcallback(Pool *pool, FILE *(*cb)(struct _Pool *, struct _Repodata *, void *), void *loadcbdata)
261 {
262   pool->loadcallback = cb;
263   pool->loadcallbackdata = loadcbdata;
264 }
265
266 /* search the pool. the following filters are available:
267  *   p     - search just this solvable
268  *   key   - search only this key
269  *   match - key must match this string
270  */
271 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);
272
273 typedef struct _duchanges {
274   const char *path;
275   int kbytes;
276   int files;
277 } DUChanges;
278
279 void pool_calc_duchanges(Pool *pool, struct _Repo *oldinstalled, Map *installedmap, DUChanges *mps, int nmps);
280 int pool_calc_installsizechange(Pool *pool, struct _Repo *oldinstalled, Map *installedmap);
281 void pool_trivial_installable(Pool *pool, struct _Repo *oldinstalled, Map *installedmap, Queue *pkgs, Queue *res);
282
283
284 /* loop over all providers of d */
285 #define FOR_PROVIDES(v, vp, d)                                          \
286   for (vp = pool_whatprovides(pool, d) ; (v = pool->whatprovidesdata[vp++]) != 0; )
287
288 #define POOL_DEBUG(type, ...) do {if ((pool->debugmask & (type)) != 0) pool_debug(pool, (type), __VA_ARGS__);} while (0)
289 #define IF_POOLDEBUG(type) if ((pool->debugmask & (type)) != 0)
290
291 #ifdef __cplusplus
292 }
293 #endif
294
295
296 #endif /* SATSOLVER_POOL_H */