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