TYPE_xxx should be enum, no ?
[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 // see initpool_data[] in pool.c
30
31 /* well known ids */
32 #define ID_NULL                 STRID_NULL
33 #define ID_EMPTY                STRID_EMPTY
34 #define SOLVABLE_NAME           2
35 #define SOLVABLE_ARCH           3
36 #define SOLVABLE_EVR            4
37 #define SOLVABLE_VENDOR         5
38 #define SOLVABLE_PROVIDES       6
39 #define SOLVABLE_OBSOLETES      7
40 #define SOLVABLE_CONFLICTS      8
41 #define SOLVABLE_REQUIRES       9
42 #define SOLVABLE_RECOMMENDS     10
43 #define SOLVABLE_SUGGESTS       11
44 #define SOLVABLE_SUPPLEMENTS    12
45 #define SOLVABLE_ENHANCES       13
46 #define SOLVABLE_FRESHENS       14
47 #define RPM_RPMDBID             15
48 #define SOLVABLE_PREREQMARKER   16              // normal requires before this, prereqs after this
49 #define SOLVABLE_FILEMARKER     17              // normal provides before this, generated file provides after this
50 #define NAMESPACE_INSTALLED     18
51 #define NAMESPACE_MODALIAS      19
52 #define NAMESPACE_SPLITPROVIDES 20
53 #define NAMESPACE_LANGUAGE      21
54 #define SYSTEM_SYSTEM           22
55 #define ARCH_SRC                23
56 #define ARCH_NOSRC              24
57 #define ARCH_NOARCH             25
58 #define REPODATA_EXTERNAL       26
59 #define REPODATA_KEYS           27
60 #define REPODATA_LOCATION       28
61
62 #define ID_NUM_INTERNAL         29
63
64
65 /* well known solvable */
66 #define SYSTEMSOLVABLE          1
67
68
69 /* how many strings to maintain (round robin) */
70 #define DEP2STRBUF 16
71
72 //-----------------------------------------------
73
74 struct _Repo;
75 struct _Repodata;
76
77 struct _Pool {
78   struct _Stringpool ss;
79
80   Reldep *rels;               // table of rels: Id -> Reldep
81   int nrels;                  // number of unique rels
82   Hashtable relhashtbl;       // hash table: (name,evr,op ->) Hash -> Id
83   Hashmask relhashmask;
84
85   struct _Repo **repos;
86   int nrepos;
87
88   Solvable *solvables;
89   int nsolvables;
90
91   int promoteepoch;             /* 0/1  */
92
93   Id *id2arch;                  /* map arch ids to scores */
94   Id lastarch;                  /* last valid entry in id2arch */
95   Queue vendormap;              /* map vendor to vendorclasses mask */
96
97   /* providers data, as two-step indirect list
98    * whatprovides[Id] -> Offset into whatprovidesdata for name
99    * whatprovidesdata[Offset] -> ID_NULL-terminated list of solvables providing Id
100    */
101   Offset *whatprovides;         /* Offset to providers of a specific name, Id -> Offset  */
102   Offset *whatprovides_rel;     /* Offset to providers of a specific relation, Id -> Offset  */
103
104   Id *whatprovidesdata;         /* Ids of solvable providing Id */
105   Offset whatprovidesdataoff;   /* next free slot within whatprovidesdata */
106   int whatprovidesdataleft;     /* number of 'free slots' within whatprovidesdata */
107
108   /* If nonzero, then consider only the solvables with Ids set in this
109      bitmap for solving.  If zero, consider all solvables.  */
110   Map *considered;
111
112   Id (*nscallback)(struct _Pool *, void *data, Id name, Id evr);
113   void *nscallbackdata;
114
115   /* our dep2str string space */
116   char *dep2strbuf[DEP2STRBUF];
117   int   dep2strlen[DEP2STRBUF];
118   int   dep2strn;
119
120   /* debug mask and callback */
121   int  debugmask;
122   void (*debugcallback)(struct _Pool *, void *data, int type, const char *str);
123   void *debugcallbackdata;
124
125   /* load callback */
126   FILE * (*loadcallback)(struct _Pool *, struct _Repodata *, void *);
127   void *loadcallbackdata;
128 };
129
130 #define SAT_FATAL                       (1<<0)
131 #define SAT_ERROR                       (1<<1)
132 #define SAT_WARN                        (1<<2)
133 #define SAT_DEBUG_STATS                 (1<<3)
134 #define SAT_DEBUG_RULE_CREATION         (1<<4)
135 #define SAT_DEBUG_PROPAGATE             (1<<5)
136 #define SAT_DEBUG_ANALYZE               (1<<6)
137 #define SAT_DEBUG_UNSOLVABLE            (1<<7)
138 #define SAT_DEBUG_SOLUTIONS             (1<<8)
139 #define SAT_DEBUG_POLICY                (1<<9)
140 #define SAT_DEBUG_RESULT                (1<<10)
141 #define SAT_DEBUG_JOB                   (1<<11)
142 #define SAT_DEBUG_SCHUBI                (1<<12)
143
144 /* The void type is usable to encode one-valued attributes, they have
145    no associated data.  This is useful to encode values which many solvables
146    have in common, and whose overall set is relatively limited.  A prime
147    example would be the media number.  The actual value is encoded in the
148    SIZE member of the key structure.  Be warned: careless use of this
149    leads to combinatoric explosion of number of schemas.  */
150
151 /* FIXME: Should be 'enum' */
152 #define TYPE_VOID               0
153 #define TYPE_ID                 1
154 #define TYPE_IDARRAY            2
155 #define TYPE_STR                3
156 #define TYPE_U32                4
157 #define TYPE_REL_IDARRAY        5
158
159 #define TYPE_ATTR_INT           6
160 #define TYPE_ATTR_CHUNK         7
161 #define TYPE_ATTR_STRING        8
162 #define TYPE_ATTR_INTLIST       9
163 #define TYPE_ATTR_LOCALIDS      10
164
165 #define TYPE_COUNT_NAMED        11
166 #define TYPE_COUNTED            12
167
168 #define TYPE_IDVALUEARRAY       13
169
170 #define TYPE_DIR                14
171 #define TYPE_DIRNUMNUMARRAY     15
172 #define TYPE_DIRSTRARRAY        16
173
174 #define TYPE_CONSTANT           17
175 #define TYPE_NUM                18
176
177 #define TYPE_ATTR_TYPE_MAX      18
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
198 #if !defined(__GNUC__) && !defined(__attribute__)
199 # define __attribute__(x)
200 #endif
201
202 /**
203  * Creates a new pool
204  */
205 extern Pool *pool_create(void);
206 /**
207  * Delete a pool
208  */
209 extern void pool_free(Pool *pool);
210
211 extern void pool_debug(Pool *pool, int type, const char *format, ...) __attribute__((format(printf, 3, 4)));
212
213 /**
214  * Solvable management
215  */
216 extern Id pool_add_solvable(Pool *pool);
217 extern Id pool_add_solvable_block(Pool *pool, int count);
218
219 extern void pool_free_solvable_block(Pool *pool, Id start, int count, int reuseids);
220 static inline Solvable *pool_id2solvable(Pool *pool, Id p)
221 {
222   return pool->solvables + p;
223 }
224 extern const char *solvable2str(Pool *pool, Solvable *s);
225
226
227 /**
228  * Prepares a pool for solving
229  */
230 extern void pool_createwhatprovides(Pool *pool);
231 extern void pool_addfileprovides(Pool *pool, struct _Repo *installed);
232 extern void pool_freewhatprovides(Pool *pool);
233 extern Id pool_queuetowhatprovides(Pool *pool, Queue *q);
234
235 static inline int pool_installable(Pool *pool, Solvable *s)
236 {
237   if (!s->arch || s->arch == ARCH_SRC || s->arch == ARCH_NOSRC)
238     return 0;
239   if (pool->id2arch && (s->arch > pool->lastarch || !pool->id2arch[s->arch]))
240     return 0;
241   if (pool->considered)
242     { 
243       Id id = s - pool->solvables;
244       if (!MAPTST(pool->considered, id))
245         return 0;
246     }
247   return 1;
248 }
249
250 extern Id *pool_addrelproviders(Pool *pool, Id d);
251
252 static inline Id *pool_whatprovides(Pool *pool, Id d)
253 {
254   Id v;
255   if (!ISRELDEP(d))
256     return pool->whatprovidesdata + pool->whatprovides[d];
257   v = GETRELID(d);
258   if (pool->whatprovides_rel[v])
259     return pool->whatprovidesdata + pool->whatprovides_rel[v];
260   return pool_addrelproviders(pool, d);
261 }
262
263 extern void pool_setdebuglevel(Pool *pool, int level);
264
265 static inline void pool_setdebugcallback(Pool *pool, void (*debugcallback)(struct _Pool *, void *data, int type, const char *str), void *debugcallbackdata)
266 {
267   pool->debugcallback = debugcallback;
268   pool->debugcallbackdata = debugcallbackdata;
269 }
270
271 static inline void pool_setdebugmask(Pool *pool, int mask)
272 {
273   pool->debugmask = mask;
274 }
275
276 static inline void pool_setloadcallback(Pool *pool, FILE *(*cb)(struct _Pool *, struct _Repodata *, void *), void *loadcbdata)
277 {
278   pool->loadcallback = cb;
279   pool->loadcallbackdata = loadcbdata;
280 }
281
282 /* loop over all providers of d */
283 #define FOR_PROVIDES(v, vp, d)                                          \
284   for (vp = pool_whatprovides(pool, d) ; (v = *vp++) != 0; )
285
286 #define POOL_DEBUG(type, ...) do {if ((pool->debugmask & (type)) != 0) pool_debug(pool, (type), __VA_ARGS__);} while (0)
287 #define IF_POOLDEBUG(type) if ((pool->debugmask & (type)) != 0)
288
289 #ifdef __cplusplus
290 }
291 #endif
292
293
294 #endif /* SATSOLVER_POOL_H */